diff --git a/assets.json b/assets.json index 65cde3c..5a27fd4 100644 --- a/assets.json +++ b/assets.json @@ -1,3 +1,3 @@ { - "version": 1704463500604 + "version": 1704969922254 } \ No newline at end of file diff --git a/assets/scripts/app.js b/assets/scripts/app.js index efb00da..2ec121d 100644 --- a/assets/scripts/app.js +++ b/assets/scripts/app.js @@ -1,25 +1,66 @@ import modular from 'modujs'; import * as modules from './modules'; import globals from './globals'; -import { debounce } from './utils/tickers' +import { debounce } from './utils/tickers'; import { $html } from './utils/dom'; import { ENV, FONT, CUSTOM_EVENT, CSS_CLASS } from './config' import { isFontLoadingAPIAvailable, loadFonts } from './utils/fonts'; const app = new modular({ - modules: modules, + modules, }); -window.addEventListener('load', (event) => { +const setViewportSizes = () => { + + // Document styles + const documentStyles = document.documentElement.style; + + // Viewport width + const vw = document.body.clientWidth * 0.01; + documentStyles.setProperty('--vw', `${vw}px`); + + // Return if browser supports vh, svh, dvh, & lvh + if (ENV.SUPPORTS_VH) { + return + } + + // Viewport height + const height = window.innerHeight; + const svh = document.documentElement.clientHeight * 0.01; + documentStyles.setProperty('--svh', `${svh}px`); + const dvh = height * 0.01; + documentStyles.setProperty('--dvh', `${dvh}px`); + + if (document.body) { + const fixed = document.createElement('div'); + fixed.style.width = '1px'; + fixed.style.height = '100vh'; + fixed.style.position = 'fixed'; + fixed.style.left = '0'; + fixed.style.top = '0'; + fixed.style.bottom = '0'; + fixed.style.visibility = 'hidden'; + + document.body.appendChild(fixed); + + var fixedHeight = fixed.clientHeight; + + fixed.remove(); + + const lvh = fixedHeight * 0.01; + + documentStyles.setProperty('--lvh', `${lvh}px`); + } +} + +window.addEventListener('load', () => { const $style = document.getElementById('main-css'); if ($style) { if ($style.isLoaded) { init(); } else { - $style.addEventListener('load', (event) => { - init(); - }); + $style.addEventListener('load', init); } } else { console.warn('The "main-css" stylesheet not found'); @@ -28,6 +69,7 @@ window.addEventListener('load', (event) => { function init() { globals(); + setViewportSizes(); app.init(app); @@ -36,14 +78,18 @@ function init() { $html.classList.remove(CSS_CLASS.LOADING); // Bind window resize event with default vars - const resizeEndEvent = new CustomEvent(CUSTOM_EVENT.RESIZE_END) + const resizeEndEvent = new CustomEvent(CUSTOM_EVENT.RESIZE_END); window.addEventListener('resize', () => { - $html.style.setProperty('--vw', `${document.documentElement.clientWidth * 0.01}px`) + setViewportSizes(); debounce(() => { - window.dispatchEvent(resizeEndEvent) + window.dispatchEvent(resizeEndEvent); }, 200, false) }) + window.addEventListener('orientationchange', () => { + setViewportSizes(); + }) + /** * Eagerly load the following fonts. */ @@ -53,12 +99,12 @@ function init() { if (ENV.IS_DEV) { console.group('Eager fonts loaded!', eagerFonts.length, '/', document.fonts.size); - console.group('State of eager fonts:') - eagerFonts.forEach((font) => console.log(font.family, font.style, font.weight, font.status/*, font*/)) - console.groupEnd() - console.group('State of all fonts:') - document.fonts.forEach((font) => console.log(font.family, font.style, font.weight, font.status/*, font*/)) - console.groupEnd() + console.group('State of eager fonts:'); + eagerFonts.forEach(font => console.log(font.family, font.style, font.weight, font.status)); + console.groupEnd(); + console.group('State of all fonts:'); + document.fonts.forEach(font => console.log(font.family, font.style, font.weight, font.status)); + console.groupEnd(); } }); } diff --git a/assets/scripts/config.js b/assets/scripts/config.js index 002f79f..9e1f911 100644 --- a/assets/scripts/config.js +++ b/assets/scripts/config.js @@ -21,6 +21,15 @@ const ENV = Object.freeze({ // Device IS_MOBILE, IS_DESKTOP: !IS_MOBILE, + + // Supports + SUPPORTS_VH: ( + 'CSS' in window + && 'supports' in window.CSS + && window.CSS.supports('height: 100svh') + && window.CSS.supports('height: 100dvh') + && window.CSS.supports('height: 100lvh') + ) }) // Main CSS classes used within the project diff --git a/assets/styles/tools/_functions.scss b/assets/styles/tools/_functions.scss index 06cbf41..d962919 100644 --- a/assets/styles/tools/_functions.scss +++ b/assets/styles/tools/_functions.scss @@ -132,18 +132,46 @@ $context: 'frontend' !default; @return calc(#{$percentage} * (100vw - 2 * var(--grid-margin, 0px)) - (1 - #{$percentage}) * var(--grid-gutter, 0px) + #{$inset} * var(--grid-gutter, 0px)); } -// Returns calculation of a percentage of the viewport height. +// Returns calculation of a percentage of the viewport small height. // // ```scss // .c-box { -// height: vh(100); +// height: svh(100); // } // ``` // // @param {number} $number - The percentage number -// @return {function} in vh -@function vh($number) { - @return calc(#{$number} * var(--vh, 1vh)); +// @return {function} in svh +@function svh($number) { + @return calc(#{$number} * var(--svh, 1svh)); +} + +// Returns calculation of a percentage of the viewport large height. +// +// ```scss +// .c-box { +// height: lvh(100); +// } +// ``` +// +// @param {number} $number - The percentage number +// @return {function} in lvh +@function lvh($number) { + @return calc(#{$number} * var(--lvh, 1lvh)); +} + +// Returns calculation of a percentage of the viewport dynamic height. +// +// ```scss +// .c-box { +// height: dvh(100); +// } +// ``` +// +// @param {number} $number - The percentage number +// @return {function} in dvh +@function dvh($number) { + @return calc(#{$number} * var(--dvh, 1dvh)); } // Returns calculation of a percentage of the viewport width. diff --git a/www/assets/scripts/app.js b/www/assets/scripts/app.js index c1b7c79..cccbe82 100644 --- a/www/assets/scripts/app.js +++ b/www/assets/scripts/app.js @@ -1,7 +1,7 @@ -(()=>{var Gt=Object.create;var D=Object.defineProperty;var Yt=Object.getOwnPropertyDescriptor;var Xt=Object.getOwnPropertyNames,P=Object.getOwnPropertySymbols,Zt=Object.getPrototypeOf,Z=Object.prototype.hasOwnProperty,ut=Object.prototype.propertyIsEnumerable;var ct=(s,e,t)=>e in s?D(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,dt=(s,e)=>{for(var t in e||(e={}))Z.call(e,t)&&ct(s,t,e[t]);if(P)for(var t of P(e))ut.call(e,t)&&ct(s,t,e[t]);return s};var ft=(s,e)=>{var t={};for(var i in s)Z.call(s,i)&&e.indexOf(i)<0&&(t[i]=s[i]);if(s!=null&&P)for(var i of P(s))e.indexOf(i)<0&&ut.call(s,i)&&(t[i]=s[i]);return t};var Kt=(s,e)=>()=>(s&&(e=s(s=0)),e);var Jt=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),mt=(s,e)=>{for(var t in e)D(s,t,{get:e[t],enumerable:!0})},Qt=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Xt(e))!Z.call(s,n)&&n!==t&&D(s,n,{get:()=>e[n],enumerable:!(i=Yt(e,n))||i.enumerable});return s};var te=(s,e,t)=>(t=s!=null?Gt(Zt(s)):{},Qt(e||!s||!s.__esModule?D(t,"default",{value:s,enumerable:!0}):t,s));var w=(s,e,t)=>new Promise((i,n)=>{var r=a=>{try{l(t.next(a))}catch(h){n(h)}},o=a=>{try{l(t.throw(a))}catch(h){n(h)}},l=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,o);l((t=t.apply(s,e)).next())});var xt=Jt((Ft,Y)=>{(function(s,e){typeof define=="function"&&define.amd?define([],function(){return s.svg4everybody=e()}):typeof Y=="object"&&Y.exports?Y.exports=e():s.svg4everybody=e()})(Ft,function(){function s(n,r,o){if(o){var l=document.createDocumentFragment(),a=!r.hasAttribute("viewBox")&&o.getAttribute("viewBox");a&&r.setAttribute("viewBox",a);for(var h=o.cloneNode(!0);h.childNodes.length;)l.appendChild(h.firstChild);n.appendChild(l)}}function e(n){n.onreadystatechange=function(){if(n.readyState===4){var r=n._cachedDocument;r||(r=n._cachedDocument=document.implementation.createHTMLDocument(""),r.body.innerHTML=n.responseText,n._cachedTarget={}),n._embeds.splice(0).map(function(o){var l=n._cachedTarget[o.id];l||(l=n._cachedTarget[o.id]=r.getElementById(o.id)),s(o.parent,o.svg,l)})}},n.onreadystatechange()}function t(n){function r(){for(var _=0;_0)&&p(r,67)}var o,l=Object(n),a=/\bTrident\/[567]\b|\bMSIE (?:9|10)\.0\b/,h=/\bAppleWebKit\/(\d+)\b/,c=/\bEdge\/12\.(\d+)\b/,u=/\bEdge\/.(\d+)\b/,d=window.top!==window.self;o="polyfill"in l?l.polyfill:a.test(navigator.userAgent)||(navigator.userAgent.match(c)||[])[1]<10547||(navigator.userAgent.match(h)||[])[1]<537||u.test(navigator.userAgent)&&d;var f={},p=window.requestAnimationFrame||setTimeout,y=document.getElementsByTagName("use"),L=0;o&&r()}function i(n){for(var r=n;r.nodeName.toLowerCase()!=="svg"&&(r=r.parentNode););return r}return t})});var Ut={};mt(Ut,{gridHelper:()=>Ae});function Ae({gutterCssVar:s=Oe,marginCssVar:e=Ie,rgbaColor:t=Te}={}){let i=document.createElement("div");document.body.append(i),$t(i,t),Me(i,s,e),Re(i,t)}function Me(s,e,t){let i=s.style;i.zIndex="10000",i.position="fixed",i.top="0",i.left="0",i.display="flex",i.width="100%",i.height="100%",i.columnGap=`var(${e}, 0)`,i.paddingLeft=`var(${t}, 0)`,i.paddingRight=`var(${t}, 0)`,i.pointerEvents="none",i.visibility="hidden"}function $t(s,e){s.innerHTML="";let t=Number(window.getComputedStyle(s).getPropertyValue("--grid-columns")),i;for(var n=0;n{n.key=="Control"?t=!0:t&&n.key=="g"&&(i?s.style.visibility="hidden":s.style.visibility="visible",i=!i)}),document.addEventListener("keyup",n=>{n.key=="Control"&&(t=!1)})}var Oe,Ie,Te,Nt=Kt(()=>{Oe="--grid-gutter",Ie="--grid-margin",Te="rgba(255, 0, 0, .1)"});function x(s){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?x=function(e){return typeof e}:x=function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},x(s)}function gt(s,e){if(!(s instanceof e))throw new TypeError("Cannot call a class as a function")}function pt(s,e){for(var t=0;ts.length)&&(e=s.length);for(var t=0,i=new Array(e);tN,Load:()=>j,Scroll:()=>G});var J="production",wt=window.matchMedia("(any-pointer:coarse)").matches,k=Object.freeze({NAME:J,IS_PROD:J==="production",IS_DEV:J==="development",IS_MOBILE:wt,IS_DESKTOP:!wt}),S=Object.freeze({LOADING:"is-loading",LOADED:"is-loaded",READY:"is-ready",FONTS_LOADED:"fonts-loaded",LAZY_CONTAINER:"c-lazy",LAZY_LOADED:"-lazy-loaded"}),St=Object.freeze({RESIZE_END:"loco.resizeEnd"}),$=Object.freeze({EAGER:[{family:"Source Sans",style:"normal",weight:400},{family:"Source Sans",style:"normal",weight:700}]});var _t="fonts"in document;function he(s,e){for(let[t,i]of Object.entries(e))switch(t){case"family":{if(U(s[t])!==i)return!1;break}case"weight":{if(s[t]!=i)return!1;break}default:{if(s[t]!==i)return!1;break}}return!0}function ce(s,e){let t=U(s.family);return U(t)===e||e.endsWith(U(t))&&(e.match(s.weight)||e.match(s.style)),!0}function ue(s){let e=[];for(let t of document.fonts)he(t,s)&&e.push(t);return e}function de(s){let e=[];for(let t of document.fonts)ce(t,s)&&e.push(t);return e}function Ot(s){Array.isArray(s)||(s=[s]);let e=new Set;return s.forEach(t=>{if(t)switch(typeof t){case"string":e.add(...de(t));return;case"object":e.add(...ue(t));return}throw new TypeError("Expected font query to be font shorthand or font reference")}),[...e]}function It(s,e=!1){return w(this,null,function*(){var t;if(((t=s.size)!=null?t:s.length)===0)throw new TypeError("Expected at least one font");return yield fe([...s],e)})}function Ct(s){return w(this,null,function*(){return yield(s.status==="unloaded"?s.load():s.loaded).then(e=>e,e=>s)})}function fe(s,e=!1){return w(this,null,function*(){e&&console.group("[loadFonts:API]",s.length,"/",document.fonts.size);let t=[];for(let i of s)i instanceof FontFace?(document.fonts.has(i)||document.fonts.add(i),t.push(Ct(i))):t.push(...Ot(i).map(n=>Ct(n)));return e&&console.groupEnd(),yield Promise.all(t)})}function U(s){return s.replace(/['"]+/g,"")}function Tt(s){return w(this,null,function*(){let e=Ot(s);return yield Promise.all(e.map(t=>t.loaded))})}var N=class extends A{constructor(s){super(s)}init(){Tt($.EAGER).then(s=>this.onFontsLoaded(s))}onFontsLoaded(s){console.log("Example: Eager Fonts Loaded!",s)}};function me(s,e){if(!(s instanceof e))throw new TypeError("Cannot call a class as a function")}function At(s,e){for(var t=0;ts.length)&&(e=s.length);for(var t=0,i=new Array(e);t-1||(this.reset(),this.getStateOptions())}},{key:"reset",value:function(){this.isLoading&&(this.controller.abort(),this.isLoading=!1,this.controller=new AbortController),window.clearTimeout(this.enterTimeout),this.isInserted&&this.removeContainer(),this.classContainer=this.html,Object.assign(this,this.defaults,this.options)}},{key:"getClickOptions",value:function(t){this.transition=t.getAttribute("data-"+this.name),this.isUrl=t.getAttribute("data-"+this.name+"-url");var i=t.getAttribute("href"),n=t.getAttribute("target");if(n=="_blank"){window.open(i,"_blank");return}if(this.transition=="false"){window.location=i;return}this.setOptions(i,!0)}},{key:"getStateOptions",value:function(){this.transitionsHistory?this.transition=history.state:this.transition=!1;var t=window.location.href;this.setOptions(t)}},{key:"goTo",value:function(t,i,n){this.reset(),this.transition=i,this.isUrl=n,this.setOptions(t,!0)}},{key:"setOptions",value:function(t,i){var n="["+this.container+"]",r;this.transition&&this.transition!="true"&&(this.transitionContainer="["+this.container+'="'+this.transition+'"]',this.loadingClass=this.transitions[this.transition].loadingClass||this.loadingClass,this.loadedClass=this.transitions[this.transition].loadedClass||this.loadedClass,this.readyClass=this.transitions[this.transition].readyClass||this.readyClass,this.transitionsPrefix=this.transitions[this.transition].transitionsPrefix||this.transitionsPrefix,this.enterDelay=this.transitions[this.transition].enterDelay||this.enterDelay,this.exitDelay=this.transitions[this.transition].exitDelay||this.exitDelay,this.loadedDelay=this.transitions[this.transition].loadedDelay||this.loadedDelay,r=document.querySelector(this.transitionContainer)),r?(n=this.transitionContainer,this.oldContainer=r,this.classContainer=this.oldContainer.parentNode,this.subContainer||history.replaceState(this.transition,null,this.href),this.subContainer=!0):(this.oldContainer=document.querySelector(n),this.subContainer&&history.replaceState(this.prevTransition,null,this.href),this.subContainer=!1),this.href=t,this.parentContainer=this.oldContainer.parentNode,this.isUrl===""||this.isUrl!=null&&this.isUrl!="false"&&this.isUrl!=!1?history.pushState(this.transition,null,t):(this.oldContainer.classList.add("is-old"),this.setLoading(),this.startEnterDelay(),this.loadHref(t,n,i))}},{key:"setLoading",value:function(){this.classContainer.classList.remove(this.loadedClass,this.readyClass),this.classContainer.classList.add(this.loadingClass),this.classContainer.classList.remove(this.transitionsPrefix+this.prevTransition),this.transition&&this.classContainer.classList.add(this.transitionsPrefix+this.transition),this.subContainer||(this.prevTransition=this.transition);var t=new Event(this.namespace+"loading");window.dispatchEvent(t)}},{key:"startEnterDelay",value:function(){var t=this;this.enterTimeout=window.setTimeout(function(){t.isEntered=!0,t.isLoaded&&t.transitionContainers()},this.enterDelay)}},{key:"loadHref",value:function(t,i,n){var r=this;this.isLoading=!0;var o=this.controller.signal;fetch(t,{signal:o}).then(function(l){return l.text()}).then(function(l){n&&history.pushState(r.transition,null,t);var a=new DOMParser;r.data=a.parseFromString(l,"text/html"),r.newContainer=r.data.querySelector(i),r.newContainer.classList.add("is-new"),r.parentNewContainer=r.newContainer.parentNode,r.hideContainer(),r.parentContainer.insertBefore(r.newContainer,r.oldContainer),r.isInserted=!0,r.setSvgs(),r.isLoaded=!0,r.isEntered&&r.transitionContainers(),r.loadEls(r.newContainer),r.isLoading=!1}).catch(function(l){window.location=t})}},{key:"transitionContainers",value:function(){var t=this;this.setAttributes(),this.showContainer(),this.setLoaded(),setTimeout(function(){t.removeContainer(),t.setReady()},this.exitDelay)}},{key:"setSvgs",value:function(){if(this.isChrome){var t=this.newContainer.querySelectorAll("use");t.length&&t.forEach(function(i){var n=i.getAttribute("xlink:href");if(n)i.parentNode.innerHTML='';else{var r=i.getAttribute("href");r&&(i.parentNode.innerHTML='')}})}}},{key:"setAttributes",value:function(){var t=this,i=this.data.getElementsByTagName("title")[0],n=this.data.head.querySelector('meta[name="description"]'),r=document.head.querySelector('meta[name="description"]'),o,l;this.subContainer?(l=this.parentNewContainer,o=document.querySelector(this.transitionContainer).parentNode):(l=this.data.querySelector("html"),o=document.querySelector("html"));var a=Object.assign({},l.dataset);i&&(document.title=i.innerText),r&&n&&r.setAttribute("content",n.getAttribute("content")),a&&Object.entries(a).forEach(function(h){var c=ve(h,2),u=c[0],d=c[1];o.setAttribute("data-"+t.toDash(u),d)})}},{key:"toDash",value:function(t){return t.split(/(?=[A-Z])/).join("-").toLowerCase()}},{key:"hideContainer",value:function(){this.newContainer.style.visibility="hidden",this.newContainer.style.height=0,this.newContainer.style.overflow="hidden"}},{key:"showContainer",value:function(){this.newContainer.style.visibility="",this.newContainer.style.height="",this.newContainer.style.overflow=""}},{key:"loadEls",value:function(t){var i=this,n=[];this.loadAttributes.forEach(function(r){var o="data-"+i.name+"-"+r,l=t.querySelectorAll("["+o+"]");l.length&&l.forEach(function(a){var h=a.getAttribute(o);if(a.setAttribute(r,h),r=="src"||r=="srcset"){var c=new Promise(function(u){a.onload=function(){return u(a)}});n.push(c)}})}),Promise.all(n).then(function(r){var o=new Event(i.namespace+"images");window.dispatchEvent(o)})}},{key:"setLoaded",value:function(){var t=this;this.classContainer.classList.remove(this.loadingClass),setTimeout(function(){t.classContainer.classList.add(t.loadedClass)},this.loadedDelay);var i=new Event(this.namespace+"loaded");window.dispatchEvent(i)}},{key:"removeContainer",value:function(){this.parentContainer.removeChild(this.oldContainer),this.newContainer.classList.remove("is-new"),this.isInserted=!1}},{key:"setReady",value:function(){this.classContainer.classList.add(this.readyClass);var t=new Event(this.namespace+"ready");window.dispatchEvent(t)}},{key:"on",value:function(t,i){var n=this;window.addEventListener(this.namespace+t,function(){switch(t){case"loading":return i(n.transition,n.oldContainer);case"loaded":return i(n.transition,n.oldContainer,n.newContainer);case"ready":return i(n.transition,n.newContainer);default:return i()}},!1)}}]),s}(),Rt=we;var j=class extends A{constructor(s){super(s)}init(){new Rt({enterDelay:0,transitions:{customTransition:{}}}).on("loaded",(e,t,i)=>{this.call("destroy",t,"app"),this.call("update",i,"app")})}};var Se=s=>({url:s.src,width:s.naturalWidth,height:s.naturalHeight,ratio:s.naturalWidth/s.naturalHeight}),Ce=(s,e={})=>new Promise((t,i)=>{let n=new Image;e.crossOrigin&&(n.crossOrigin=e.crossOrigin);let r=()=>{t(dt({element:n},Se(n)))};n.decode?(n.src=s,n.decode().then(r).catch(o=>{i(o)})):(n.onload=r,n.onerror=o=>{i(o)},n.src=s)}),kt=[],Lt=(s,e,t)=>w(void 0,null,function*(){let i=e||s.dataset.src,n=kt.find(r=>r.url===i);if(!n){if(n=yield Ce(i),!n.url)return;kt.push(n)}s.src!==i&&(s.tagName==="IMG"?s.src=n.url:s.style.backgroundImage=`url(${n.url})`,requestAnimationFrame(()=>{let r=s.closest(`.${S.LAZY_CONTAINER}`);r&&(r.classList.add(S.LAZY_LOADED),r.style.backgroundImage=""),s.classList.add(S.LAZY_LOADED),t==null||t()}))});function Q(){return Q=Object.assign?Object.assign.bind():function(s){for(var e=1;e=1;let a=i?1:this.easing(l);this.value=this.from+(this.to-this.from)*a}var n,r,o;(t=this.onUpdate)==null||t.call(this,this.value,i),i&&this.stop()}stop(){this.isRunning=!1}fromTo(e,t,{lerp:i=.1,duration:n=1,easing:r=a=>a,onStart:o,onUpdate:l}){this.from=this.value=e,this.to=t,this.lerp=i,this.duration=n,this.easing=r,this.currentTime=0,this.isRunning=!0,o==null||o(),this.onUpdate=l}},et=class{constructor({wrapper:e,content:t,autoResize:i=!0}={}){if(this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth},this.wrapper=e,this.content=t,i){let n=function(r,o){let l;return function(){let a=arguments,h=this;clearTimeout(l),l=setTimeout(function(){r.apply(h,a)},250)}}(this.resize);this.wrapper!==window&&(this.wrapperResizeObserver=new ResizeObserver(n),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(n),this.contentResizeObserver.observe(this.content)}this.resize()}destroy(){var e,t;(e=this.wrapperResizeObserver)==null||e.disconnect(),(t=this.contentResizeObserver)==null||t.disconnect()}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},H=class{constructor(){this.events={}}emit(e,...t){let i=this.events[e]||[];for(let n=0,r=i.length;n{var n;this.events[e]=(n=this.events[e])==null?void 0:n.filter(r=>t!==r)}}off(e,t){var i;this.events[e]=(i=this.events[e])==null?void 0:i.filter(n=>t!==n)}destroy(){this.events={}}},it=class{constructor(e,{wheelMultiplier:t=1,touchMultiplier:i=2,normalizeWheel:n=!1}){this.onTouchStart=r=>{let{clientX:o,clientY:l}=r.targetTouches?r.targetTouches[0]:r;this.touchStart.x=o,this.touchStart.y=l,this.lastDelta={x:0,y:0}},this.onTouchMove=r=>{let{clientX:o,clientY:l}=r.targetTouches?r.targetTouches[0]:r,a=-(o-this.touchStart.x)*this.touchMultiplier,h=-(l-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=o,this.touchStart.y=l,this.lastDelta={x:a,y:h},this.emitter.emit("scroll",{deltaX:a,deltaY:h,event:r})},this.onTouchEnd=r=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:r})},this.onWheel=r=>{let{deltaX:o,deltaY:l}=r;this.normalizeWheel&&(o=W(-100,o,100),l=W(-100,l,100)),o*=this.wheelMultiplier,l*=this.wheelMultiplier,this.emitter.emit("scroll",{deltaX:o,deltaY:l,event:r})},this.element=e,this.wheelMultiplier=t,this.touchMultiplier=i,this.normalizeWheel=n,this.touchStart={x:null,y:null},this.emitter=new H,this.element.addEventListener("wheel",this.onWheel,{passive:!1}),this.element.addEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.addEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.addEventListener("touchend",this.onTouchEnd,{passive:!1})}on(e,t){return this.emitter.on(e,t)}destroy(){this.emitter.destroy(),this.element.removeEventListener("wheel",this.onWheel,{passive:!1}),this.element.removeEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.removeEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.removeEventListener("touchend",this.onTouchEnd,{passive:!1})}},B=class{constructor({wrapper:e=window,content:t=document.documentElement,wheelEventsTarget:i=e,eventsTarget:n=i,smoothWheel:r=!0,smoothTouch:o=!1,syncTouch:l=!1,syncTouchLerp:a=.1,__iosNoInertiaSyncTouchLerp:h=.4,touchInertiaMultiplier:c=35,duration:u,easing:d=m=>Math.min(1,1.001-Math.pow(2,-10*m)),lerp:f=!u&&.1,infinite:p=!1,orientation:y="vertical",gestureOrientation:L="vertical",touchMultiplier:_=1,wheelMultiplier:b=1,normalizeWheel:O=!1,autoResize:I=!0}={}){this.onVirtualScroll=({deltaX:m,deltaY:E,event:v})=>{if(v.ctrlKey)return;let C=v.type.includes("touch"),g=v.type.includes("wheel");if(this.options.gestureOrientation==="both"&&m===0&&E===0||this.options.gestureOrientation==="vertical"&&E===0||this.options.gestureOrientation==="horizontal"&&m===0||C&&this.options.gestureOrientation==="vertical"&&this.scroll===0&&!this.options.infinite&&E<=0)return;let z=v.composedPath();if(z=z.slice(0,z.indexOf(this.rootElement)),z.find(T=>{var ht;return(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent"))||C&&(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent-touch"))||g&&(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent-wheel"))||((ht=T.classList)==null?void 0:ht.contains("lenis"))}))return;if(this.isStopped||this.isLocked)return void v.preventDefault();if(this.isSmooth=(this.options.smoothTouch||this.options.syncTouch)&&C||this.options.smoothWheel&&g,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();v.preventDefault();let R=E;this.options.gestureOrientation==="both"?R=Math.abs(E)>Math.abs(m)?E:m:this.options.gestureOrientation==="horizontal"&&(R=m);let qt=C&&this.options.syncTouch,at=C&&v.type==="touchend"&&Math.abs(R)>1;at&&(R=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+R,Q({programmatic:!1},qt&&{lerp:at?this.syncTouchLerp:this.options.__iosNoInertiaSyncTouchLerp}))},this.onScroll=()=>{if(!this.isScrolling){let m=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-m),this.emit()}},window.lenisVersion="1.0.27",e!==document.documentElement&&e!==document.body||(e=window),this.options={wrapper:e,content:t,wheelEventsTarget:i,eventsTarget:n,smoothWheel:r,smoothTouch:o,syncTouch:l,syncTouchLerp:a,__iosNoInertiaSyncTouchLerp:h,touchInertiaMultiplier:c,duration:u,easing:d,lerp:f,infinite:p,gestureOrientation:L,orientation:y,touchMultiplier:_,wheelMultiplier:b,normalizeWheel:O,autoResize:I},this.animate=new tt,this.emitter=new H,this.dimensions=new et({wrapper:e,content:t,autoResize:I}),this.toggleClass("lenis",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=l||r||o,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onScroll,{passive:!1}),this.virtualScroll=new it(n,{touchMultiplier:_,wheelMultiplier:b,normalizeWheel:O}),this.virtualScroll.on("scroll",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onScroll,{passive:!1}),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClass("lenis",!1),this.toggleClass("lenis-smooth",!1),this.toggleClass("lenis-scrolling",!1),this.toggleClass("lenis-stopped",!1),this.toggleClass("lenis-locked",!1)}on(e,t){return this.emitter.on(e,t)}off(e,t){return this.emitter.off(e,t)}setScroll(e){this.isHorizontal?this.rootElement.scrollLeft=e:this.rootElement.scrollTop=e}resize(){this.dimensions.resize()}emit(){this.emitter.emit("scroll",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.velocity=0,this.animate.stop()}start(){this.isStopped=!1,this.reset()}stop(){this.isStopped=!0,this.animate.stop(),this.reset()}raf(e){let t=e-(this.time||e);this.time=e,this.animate.advance(.001*t)}scrollTo(e,{offset:t=0,immediate:i=!1,lock:n=!1,duration:r=this.options.duration,easing:o=this.options.easing,lerp:l=!r&&this.options.lerp,onComplete:a=null,force:h=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||h){if(["top","left","start"].includes(e))e=0;else if(["bottom","right","end"].includes(e))e=this.limit;else{var u;let d;if(typeof e=="string"?d=document.querySelector(e):(u=e)!=null&&u.nodeType&&(d=e),d){if(this.options.wrapper!==window){let p=this.options.wrapper.getBoundingClientRect();t-=this.isHorizontal?p.left:p.top}let f=d.getBoundingClientRect();e=(this.isHorizontal?f.left:f.top)+this.animatedScroll}}if(typeof e=="number"){if(e+=t,e=Math.round(e),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):e=W(0,e,this.limit),i)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),void(a==null||a(this));if(!c){if(e===this.targetScroll)return;this.targetScroll=e}this.animate.fromTo(this.animatedScroll,e,{duration:r,easing:o,lerp:l,onStart:()=>{n&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(d,f)=>{this.isScrolling=!0,this.velocity=d-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=d,this.setScroll(this.scroll),c&&(this.targetScroll=d),f||this.emit(),f&&requestAnimationFrame(()=>{this.reset(),this.emit(),a==null||a(this)})}})}}}get rootElement(){return this.options.wrapper===window?this.options.content:this.options.wrapper}get limit(){return this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return this.options.orientation==="horizontal"}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(this.animatedScroll%(e=this.limit)+e)%e:this.animatedScroll;var e}get progress(){return this.limit===0?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(e){this.__isSmooth!==e&&(this.__isSmooth=e,this.toggleClass("lenis-smooth",e))}get isScrolling(){return this.__isScrolling}set isScrolling(e){this.__isScrolling!==e&&(this.__isScrolling=e,this.toggleClass("lenis-scrolling",e))}get isStopped(){return this.__isStopped}set isStopped(e){this.__isStopped!==e&&(this.__isStopped=e,this.toggleClass("lenis-stopped",e))}get isLocked(){return this.__isLocked}set isLocked(e){this.__isLocked!==e&&(this.__isLocked=e,this.toggleClass("lenis-locked",e))}get className(){let e="lenis";return this.isStopped&&(e+=" lenis-stopped"),this.isLocked&&(e+=" lenis-locked"),this.isScrolling&&(e+=" lenis-scrolling"),this.isSmooth&&(e+=" lenis-smooth"),e}toggleClass(e,t){this.rootElement.classList.toggle(e,t),this.emitter.emit("className change",this)}};function st(){return st=Object.assign?Object.assign.bind():function(s){for(var e=1;e{e.forEach(t=>{let i=this.scrollElements.find(n=>n.$el===t.target);t.isIntersecting?(i&&(i.isAlreadyIntersected=!0),this._setInview(t)):i&&i.isAlreadyIntersected&&this._setOutOfView(t)})},{rootMargin:this.rootMargin});for(let e of this.scrollElements)this.observe(e.$el)}destroy(){this.observer.disconnect()}observe(e){e&&this.observer.observe(e)}unobserve(e){e&&this.observer.unobserve(e)}_setInview(e){let t=this.scrollElements.find(i=>i.$el===e.target);this.IORaf&&(t==null||t.setInteractivityOn()),!this.IORaf&&(t==null||t.setInview())}_setOutOfView(e){let t=this.scrollElements.find(i=>i.$el===e.target);this.IORaf&&(t==null||t.setInteractivityOff()),!this.IORaf&&(t==null||t.setOutOfView()),t!=null&&t.attributes.scrollRepeat||this.IORaf||this.unobserve(e.target)}};function zt(s,e,t,i,n){return t+((n-s)/(e-s)*(i-t)||0)}function Pt(s,e){return s.reduce((t,i)=>Math.abs(i-e)1?1:i;var i;if(this.progress=t,t!=this.lastProgress){if(this.lastProgress=t,this.attributes.scrollCssProgress&&this._setCssProgress(t),this.attributes.scrollEventProgress&&this._setCustomEventProgress(t),this.attributes.scrollModuleProgress)for(let n of this.progressModularModules)this.modularInstance&&this.modularInstance.call("onScrollProgress",t,n.moduleName,n.moduleId);t>0&&t<1&&this.setInview(),t===0&&this.setOutOfView(),t===1&&this.setOutOfView()}}_setCssProgress(e=0){this.$el.style.setProperty("--progress",e.toString())}_setCustomEventProgress(e=0){let t=this.attributes.scrollEventProgress;if(!t)return;let i=new CustomEvent(t,{detail:{target:this.$el,progress:e}});window.dispatchEvent(i)}_getProgressModularModules(){if(!this.modularInstance)return;let e=Object.keys(this.$el.dataset).filter(i=>i.includes("module")),t=Object.entries(this.modularInstance.modules);if(e.length)for(let i of e){let n=this.$el.dataset[i];if(!n)return;for(let r of t){let[o,l]=r;n in l&&this.progressModularModules.push({moduleName:o,moduleId:n})}}}_getScrollCallFrom(){let e=Pt([this.intersection.start,this.intersection.end],this.currentScroll);return this.intersection.start===e?"start":"end"}_dispatchCall(e,t){var i,n;let r=(i=this.attributes.scrollCall)==null?void 0:i.split(","),o=(n=this.attributes)==null?void 0:n.scrollCallSelf;if(r&&r.length>1){var l;let[a,h,c]=r,u;u=o?this.$el.dataset[`module${h.trim()}`]:c,this.modularInstance&&this.modularInstance.call(a.trim(),{target:this.$el,way:e,from:t},h.trim(),(l=u)==null?void 0:l.trim())}else if(r){let[a]=r,h=new CustomEvent(a,{detail:{target:this.$el,way:e,from:t}});window.dispatchEvent(h)}}},_e=["scrollOffset","scrollPosition","scrollModuleProgress","scrollCssProgress","scrollEventProgress","scrollSpeed"],rt=class{constructor({$el:e,modularInstance:t,triggerRootMargin:i,rafRootMargin:n,scrollOrientation:r}){this.$scrollContainer=void 0,this.modularInstance=void 0,this.triggerRootMargin=void 0,this.rafRootMargin=void 0,this.scrollElements=void 0,this.triggeredScrollElements=void 0,this.RAFScrollElements=void 0,this.scrollElementsToUpdate=void 0,this.IOTriggerInstance=void 0,this.IORafInstance=void 0,this.scrollOrientation=void 0,e?(this.$scrollContainer=e,this.modularInstance=t,this.scrollOrientation=r,this.triggerRootMargin=i!=null?i:"-1px -1px -1px -1px",this.rafRootMargin=n!=null?n:"100% 100% 100% 100%",this.scrollElements=[],this.triggeredScrollElements=[],this.RAFScrollElements=[],this.scrollElementsToUpdate=[],this._init()):console.error("Please provide a DOM Element as scrollContainer")}_init(){let e=this.$scrollContainer.querySelectorAll("[data-scroll]"),t=Array.from(e);this._subscribeScrollElements(t),this.IOTriggerInstance=new V({scrollElements:[...this.triggeredScrollElements],rootMargin:this.triggerRootMargin,IORaf:!1}),this.IORafInstance=new V({scrollElements:[...this.RAFScrollElements],rootMargin:this.rafRootMargin,IORaf:!0})}destroy(){this.IOTriggerInstance.destroy(),this.IORafInstance.destroy(),this._unsubscribeAllScrollElements()}onResize({currentScroll:e}){for(let t of this.RAFScrollElements)t.onResize({currentScroll:e})}onRender({currentScroll:e,smooth:t}){for(let i of this.scrollElementsToUpdate)i.onRender({currentScroll:e,smooth:t})}removeScrollElements(e){let t=e.querySelectorAll("[data-scroll]");if(t.length){for(let i=0;i-1&&(this.IOTriggerInstance.unobserve(n.$el),this.triggeredScrollElements.splice(i,1))}for(let i=0;i-1&&(this.IORafInstance.unobserve(n.$el),this.RAFScrollElements.splice(i,1))}t.forEach(i=>{let n=this.scrollElementsToUpdate.find(o=>o.$el===i),r=this.scrollElements.find(o=>o.$el===i);n&&this._unsubscribeElementUpdate(n),r&&(this.scrollElements=this.scrollElements.filter(o=>o.id!=r.id))})}}addScrollElements(e){let t=e.querySelectorAll("[data-scroll]"),i=[];this.scrollElements.forEach(o=>{i.push(o.id)});let n=Math.max(...i)+1,r=Array.from(t);this._subscribeScrollElements(r,n,!0)}_subscribeScrollElements(e,t=0,i=!1){for(let n=0;nt.id!=e.id)}_checkRafNeeded(e){let t=[..._e],i=n=>{t=t.filter(r=>r!=n)};if(e.dataset.scrollOffset){if(e.dataset.scrollOffset.split(",").map(n=>n.replace("%","").trim()).join(",")!="0,0")return!0;i("scrollOffset")}else i("scrollOffset");if(e.dataset.scrollPosition){if(e.dataset.scrollPosition.trim()!="top,bottom")return!0;i("scrollPosition")}else i("scrollPosition");if(e.dataset.scrollSpeed&&!isNaN(parseFloat(e.dataset.scrollSpeed)))return!0;i("scrollSpeed");for(let n of t)if(n in e.dataset)return!0;return!1}},ot=class{constructor({resizeElements:e,resizeCallback:t=()=>{}}){this.$resizeElements=void 0,this.isFirstObserve=void 0,this.observer=void 0,this.resizeCallback=void 0,this.$resizeElements=e,this.resizeCallback=t,this.isFirstObserve=!0,this._init()}_init(){this.observer=new ResizeObserver(e=>{var t;!this.isFirstObserve&&((t=this.resizeCallback)==null||t.call(this)),this.isFirstObserve=!1});for(let e of this.$resizeElements)this.observer.observe(e)}destroy(){this.observer.disconnect()}},Dt={wrapper:window,content:document.documentElement,eventsTarget:window,lerp:.1,duration:.75,orientation:"vertical",gestureOrientation:"vertical",smoothWheel:!0,smoothTouch:!1,syncTouch:!1,syncTouchLerp:.1,touchInertiaMultiplier:35,wheelMultiplier:1,touchMultiplier:2,normalizeWheel:!1,autoResize:!0,easing:s=>Math.min(1,1.001-Math.pow(2,-10*s))},q=class{constructor({lenisOptions:e={},modularInstance:t,triggerRootMargin:i,rafRootMargin:n,autoResize:r=!0,autoStart:o=!0,scrollCallback:l=()=>{},initCustomTicker:a,destroyCustomTicker:h}={}){this.rafPlaying=void 0,this.lenisInstance=void 0,this.coreInstance=void 0,this.lenisOptions=void 0,this.modularInstance=void 0,this.triggerRootMargin=void 0,this.rafRootMargin=void 0,this.rafInstance=void 0,this.autoResize=void 0,this.autoStart=void 0,this.ROInstance=void 0,this.initCustomTicker=void 0,this.destroyCustomTicker=void 0,this._onRenderBind=void 0,this._onResizeBind=void 0,this._onScrollToBind=void 0,this.lenisOptions=st({},Dt,e),Object.assign(this,{lenisOptions:e,modularInstance:t,triggerRootMargin:i,rafRootMargin:n,autoResize:r,autoStart:o,scrollCallback:l,initCustomTicker:a,destroyCustomTicker:h}),this._onRenderBind=this._onRender.bind(this),this._onScrollToBind=this._onScrollTo.bind(this),this._onResizeBind=this._onResize.bind(this),this.rafPlaying=!1,this._init()}_init(){var e;this.lenisInstance=new B({wrapper:this.lenisOptions.wrapper,content:this.lenisOptions.content,eventsTarget:this.lenisOptions.eventsTarget,lerp:this.lenisOptions.lerp,duration:this.lenisOptions.duration,orientation:this.lenisOptions.orientation,gestureOrientation:this.lenisOptions.gestureOrientation,smoothWheel:this.lenisOptions.smoothWheel,smoothTouch:this.lenisOptions.smoothTouch,syncTouch:this.lenisOptions.syncTouch,syncTouchLerp:this.lenisOptions.syncTouchLerp,touchInertiaMultiplier:this.lenisOptions.touchInertiaMultiplier,wheelMultiplier:this.lenisOptions.wheelMultiplier,touchMultiplier:this.lenisOptions.touchMultiplier,normalizeWheel:this.lenisOptions.normalizeWheel,easing:this.lenisOptions.easing}),(e=this.lenisInstance)==null||e.on("scroll",this.scrollCallback),document.documentElement.setAttribute("data-scroll-orientation",this.lenisInstance.options.orientation),requestAnimationFrame(()=>{this.coreInstance=new rt({$el:this.lenisInstance.rootElement,modularInstance:this.modularInstance,triggerRootMargin:this.triggerRootMargin,rafRootMargin:this.rafRootMargin,scrollOrientation:this.lenisInstance.options.orientation}),this._bindEvents(),this.initCustomTicker&&!this.destroyCustomTicker?console.warn("initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble."):!this.initCustomTicker&&this.destroyCustomTicker&&console.warn("destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble."),this.autoStart&&this.start()})}destroy(){this.stop(),this._unbindEvents(),this.lenisInstance.destroy(),this.coreInstance.destroy()}_bindEvents(){this._bindScrollToEvents(),this.autoResize&&("ResizeObserver"in window?this.ROInstance=new ot({resizeElements:[document.body],resizeCallback:this._onResizeBind}):window.addEventListener("resize",this._onResizeBind))}_unbindEvents(){this._unbindScrollToEvents(),this.autoResize&&("ResizeObserver"in window?this.ROInstance&&this.ROInstance.destroy():window.removeEventListener("resize",this._onResizeBind))}_bindScrollToEvents(e){let t=e||this.lenisInstance.rootElement,i=t==null?void 0:t.querySelectorAll("[data-scroll-to]");i!=null&&i.length&&i.forEach(n=>{n.addEventListener("click",this._onScrollToBind,!1)})}_unbindScrollToEvents(e){let t=e||this.lenisInstance.rootElement,i=t==null?void 0:t.querySelectorAll("[data-scroll-to]");i!=null&&i.length&&i.forEach(n=>{n.removeEventListener("click",this._onScrollToBind,!1)})}_onResize(){requestAnimationFrame(()=>{var e;(e=this.coreInstance)==null||e.onResize({currentScroll:this.lenisInstance.scroll})})}_onRender(){var e,t;(e=this.lenisInstance)==null||e.raf(Date.now()),(t=this.coreInstance)==null||t.onRender({currentScroll:this.lenisInstance.scroll,smooth:this.lenisInstance.isSmooth})}_onScrollTo(e){var t;e.preventDefault();let i=(t=e.currentTarget)!=null?t:null;if(!i)return;let n=i.getAttribute("data-scroll-to-href")||i.getAttribute("href"),r=i.getAttribute("data-scroll-to-offset")||0,o=i.getAttribute("data-scroll-to-duration")||this.lenisOptions.duration||Dt.duration;n&&this.scrollTo(n,{offset:typeof r=="string"?parseInt(r):r,duration:typeof o=="string"?parseInt(o):o})}start(){var e;this.rafPlaying||((e=this.lenisInstance)==null||e.start(),this.rafPlaying=!0,this.initCustomTicker?this.initCustomTicker(this._onRenderBind):this._raf())}stop(){var e;this.rafPlaying&&((e=this.lenisInstance)==null||e.stop(),this.rafPlaying=!1,this.destroyCustomTicker?this.destroyCustomTicker(this._onRenderBind):this.rafInstance&&cancelAnimationFrame(this.rafInstance))}removeScrollElements(e){var t;e?(this._unbindScrollToEvents(e),(t=this.coreInstance)==null||t.removeScrollElements(e)):console.error("Please provide a DOM Element as $oldContainer")}addScrollElements(e){var t;e?((t=this.coreInstance)==null||t.addScrollElements(e),requestAnimationFrame(()=>{this._bindScrollToEvents(e)})):console.error("Please provide a DOM Element as $newContainer")}resize(){this._onResizeBind()}scrollTo(e,t){var i;(i=this.lenisInstance)==null||i.scrollTo(e,{offset:t==null?void 0:t.offset,lerp:t==null?void 0:t.lerp,duration:t==null?void 0:t.duration,immediate:t==null?void 0:t.immediate,lock:t==null?void 0:t.lock,force:t==null?void 0:t.force,easing:t==null?void 0:t.easing,onComplete:t==null?void 0:t.onComplete})}_raf(){this._onRenderBind(),this.rafInstance=requestAnimationFrame(()=>this._raf())}};var G=class extends A{constructor(s){super(s)}init(){this.scroll=new q({modularInstance:this})}lazyLoad(s){Lt(s.target,null,()=>{})}scrollTo(s){var n;let i=s,{target:e}=i,t=ft(i,["target"]);t=Object.assign({duration:1},t),(n=this.scroll)==null||n.scrollTo(e,t)}destroy(){this.scroll.destroy()}};var jt=te(xt(),1);var X;w(void 0,null,function*(){if(k.IS_DEV){let s=yield Promise.resolve().then(()=>(Nt(),Ut));X=s==null?void 0:s.gridHelper}});function Wt(){(0,jt.default)(),X==null||X()}var Ht=(s,e,t=!1)=>{let i=null;return(...n)=>{clearTimeout(i);let r=()=>{i=null,t||s(...n)};t&&!i&&s(...n),i=setTimeout(r,e)}};var M=document.documentElement,ui=document.body;var Bt=new Et({modules:lt});window.addEventListener("load",s=>{let e=document.getElementById("main-css");e?e.isLoaded?Vt():e.addEventListener("load",t=>{Vt()}):console.warn('The "main-css" stylesheet not found')});function Vt(){Wt(),Bt.init(Bt),M.classList.add(S.LOADED),M.classList.add(S.READY),M.classList.remove(S.LOADING);let s=new CustomEvent(St.RESIZE_END);window.addEventListener("resize",()=>{M.style.setProperty("--vw",`${document.documentElement.clientWidth*.01}px`),Ht(()=>{window.dispatchEvent(s)},200,!1)}),_t&&It($.EAGER,k.IS_DEV).then(e=>{M.classList.add(S.FONTS_LOADED),k.IS_DEV&&(console.group("Eager fonts loaded!",e.length,"/",document.fonts.size),console.group("State of eager fonts:"),e.forEach(t=>console.log(t.family,t.style,t.weight,t.status)),console.groupEnd(),console.group("State of all fonts:"),document.fonts.forEach(t=>console.log(t.family,t.style,t.weight,t.status)),console.groupEnd())})}})(); +(()=>{var Yt=Object.create;var D=Object.defineProperty;var Xt=Object.getOwnPropertyDescriptor;var Zt=Object.getOwnPropertyNames,P=Object.getOwnPropertySymbols,Kt=Object.getPrototypeOf,Z=Object.prototype.hasOwnProperty,dt=Object.prototype.propertyIsEnumerable;var ut=(s,e,t)=>e in s?D(s,e,{enumerable:!0,configurable:!0,writable:!0,value:t}):s[e]=t,ft=(s,e)=>{for(var t in e||(e={}))Z.call(e,t)&&ut(s,t,e[t]);if(P)for(var t of P(e))dt.call(e,t)&&ut(s,t,e[t]);return s};var mt=(s,e)=>{var t={};for(var i in s)Z.call(s,i)&&e.indexOf(i)<0&&(t[i]=s[i]);if(s!=null&&P)for(var i of P(s))e.indexOf(i)<0&&dt.call(s,i)&&(t[i]=s[i]);return t};var Jt=(s,e)=>()=>(s&&(e=s(s=0)),e);var Qt=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),pt=(s,e)=>{for(var t in e)D(s,t,{get:e[t],enumerable:!0})},te=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let n of Zt(e))!Z.call(s,n)&&n!==t&&D(s,n,{get:()=>e[n],enumerable:!(i=Xt(e,n))||i.enumerable});return s};var ee=(s,e,t)=>(t=s!=null?Yt(Kt(s)):{},te(e||!s||!s.__esModule?D(t,"default",{value:s,enumerable:!0}):t,s));var E=(s,e,t)=>new Promise((i,n)=>{var r=a=>{try{l(t.next(a))}catch(h){n(h)}},o=a=>{try{l(t.throw(a))}catch(h){n(h)}},l=a=>a.done?i(a.value):Promise.resolve(a.value).then(r,o);l((t=t.apply(s,e)).next())});var $t=Qt((Ft,Y)=>{(function(s,e){typeof define=="function"&&define.amd?define([],function(){return s.svg4everybody=e()}):typeof Y=="object"&&Y.exports?Y.exports=e():s.svg4everybody=e()})(Ft,function(){function s(n,r,o){if(o){var l=document.createDocumentFragment(),a=!r.hasAttribute("viewBox")&&o.getAttribute("viewBox");a&&r.setAttribute("viewBox",a);for(var h=o.cloneNode(!0);h.childNodes.length;)l.appendChild(h.firstChild);n.appendChild(l)}}function e(n){n.onreadystatechange=function(){if(n.readyState===4){var r=n._cachedDocument;r||(r=n._cachedDocument=document.implementation.createHTMLDocument(""),r.body.innerHTML=n.responseText,n._cachedTarget={}),n._embeds.splice(0).map(function(o){var l=n._cachedTarget[o.id];l||(l=n._cachedTarget[o.id]=r.getElementById(o.id)),s(o.parent,o.svg,l)})}},n.onreadystatechange()}function t(n){function r(){for(var _=0;_0)&&p(r,67)}var o,l=Object(n),a=/\bTrident\/[567]\b|\bMSIE (?:9|10)\.0\b/,h=/\bAppleWebKit\/(\d+)\b/,c=/\bEdge\/12\.(\d+)\b/,u=/\bEdge\/.(\d+)\b/,d=window.top!==window.self;o="polyfill"in l?l.polyfill:a.test(navigator.userAgent)||(navigator.userAgent.match(c)||[])[1]<10547||(navigator.userAgent.match(h)||[])[1]<537||u.test(navigator.userAgent)&&d;var f={},p=window.requestAnimationFrame||setTimeout,y=document.getElementsByTagName("use"),L=0;o&&r()}function i(n){for(var r=n;r.nodeName.toLowerCase()!=="svg"&&(r=r.parentNode););return r}return t})});var Nt={};pt(Nt,{gridHelper:()=>Me});function Me({gutterCssVar:s=Ie,marginCssVar:e=Te,rgbaColor:t=Ae}={}){let i=document.createElement("div");document.body.append(i),Ut(i,t),Re(i,s,e),ke(i,t)}function Re(s,e,t){let i=s.style;i.zIndex="10000",i.position="fixed",i.top="0",i.left="0",i.display="flex",i.width="100%",i.height="100%",i.columnGap=`var(${e}, 0)`,i.paddingLeft=`var(${t}, 0)`,i.paddingRight=`var(${t}, 0)`,i.pointerEvents="none",i.visibility="hidden"}function Ut(s,e){s.innerHTML="";let t=Number(window.getComputedStyle(s).getPropertyValue("--grid-columns")),i;for(var n=0;n{n.key=="Control"?t=!0:t&&n.key=="g"&&(i?s.style.visibility="hidden":s.style.visibility="visible",i=!i)}),document.addEventListener("keyup",n=>{n.key=="Control"&&(t=!1)})}var Ie,Te,Ae,jt=Jt(()=>{Ie="--grid-gutter",Te="--grid-margin",Ae="rgba(255, 0, 0, .1)"});function F(s){return typeof Symbol=="function"&&typeof Symbol.iterator=="symbol"?F=function(e){return typeof e}:F=function(e){return e&&typeof Symbol=="function"&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},F(s)}function yt(s,e){if(!(s instanceof e))throw new TypeError("Cannot call a class as a function")}function vt(s,e){for(var t=0;ts.length)&&(e=s.length);for(var t=0,i=new Array(e);tN,Load:()=>j,Scroll:()=>G});var J="production",St=window.matchMedia("(any-pointer:coarse)").matches,M=Object.freeze({NAME:J,IS_PROD:J==="production",IS_DEV:J==="development",IS_MOBILE:St,IS_DESKTOP:!St,SUPPORTS_VH:"CSS"in window&&"supports"in window.CSS&&window.CSS.supports("height: 100svh")&&window.CSS.supports("height: 100dvh")&&window.CSS.supports("height: 100lvh")}),S=Object.freeze({LOADING:"is-loading",LOADED:"is-loaded",READY:"is-ready",FONTS_LOADED:"fonts-loaded",LAZY_CONTAINER:"c-lazy",LAZY_LOADED:"-lazy-loaded"}),Ct=Object.freeze({RESIZE_END:"loco.resizeEnd"}),$=Object.freeze({EAGER:[{family:"Source Sans",style:"normal",weight:400},{family:"Source Sans",style:"normal",weight:700}]});var Ot="fonts"in document;function ce(s,e){for(let[t,i]of Object.entries(e))switch(t){case"family":{if(U(s[t])!==i)return!1;break}case"weight":{if(s[t]!=i)return!1;break}default:{if(s[t]!==i)return!1;break}}return!0}function ue(s,e){let t=U(s.family);return U(t)===e||e.endsWith(U(t))&&(e.match(s.weight)||e.match(s.style)),!0}function de(s){let e=[];for(let t of document.fonts)ce(t,s)&&e.push(t);return e}function fe(s){let e=[];for(let t of document.fonts)ue(t,s)&&e.push(t);return e}function It(s){Array.isArray(s)||(s=[s]);let e=new Set;return s.forEach(t=>{if(t)switch(typeof t){case"string":e.add(...fe(t));return;case"object":e.add(...de(t));return}throw new TypeError("Expected font query to be font shorthand or font reference")}),[...e]}function Tt(s,e=!1){return E(this,null,function*(){var t;if(((t=s.size)!=null?t:s.length)===0)throw new TypeError("Expected at least one font");return yield me([...s],e)})}function _t(s){return E(this,null,function*(){return yield(s.status==="unloaded"?s.load():s.loaded).then(e=>e,e=>s)})}function me(s,e=!1){return E(this,null,function*(){e&&console.group("[loadFonts:API]",s.length,"/",document.fonts.size);let t=[];for(let i of s)i instanceof FontFace?(document.fonts.has(i)||document.fonts.add(i),t.push(_t(i))):t.push(...It(i).map(n=>_t(n)));return e&&console.groupEnd(),yield Promise.all(t)})}function U(s){return s.replace(/['"]+/g,"")}function At(s){return E(this,null,function*(){let e=It(s);return yield Promise.all(e.map(t=>t.loaded))})}var N=class extends A{constructor(s){super(s)}init(){At($.EAGER).then(s=>this.onFontsLoaded(s))}onFontsLoaded(s){console.log("Example: Eager Fonts Loaded!",s)}};function pe(s,e){if(!(s instanceof e))throw new TypeError("Cannot call a class as a function")}function Mt(s,e){for(var t=0;ts.length)&&(e=s.length);for(var t=0,i=new Array(e);t-1||(this.reset(),this.getStateOptions())}},{key:"reset",value:function(){this.isLoading&&(this.controller.abort(),this.isLoading=!1,this.controller=new AbortController),window.clearTimeout(this.enterTimeout),this.isInserted&&this.removeContainer(),this.classContainer=this.html,Object.assign(this,this.defaults,this.options)}},{key:"getClickOptions",value:function(t){this.transition=t.getAttribute("data-"+this.name),this.isUrl=t.getAttribute("data-"+this.name+"-url");var i=t.getAttribute("href"),n=t.getAttribute("target");if(n=="_blank"){window.open(i,"_blank");return}if(this.transition=="false"){window.location=i;return}this.setOptions(i,!0)}},{key:"getStateOptions",value:function(){this.transitionsHistory?this.transition=history.state:this.transition=!1;var t=window.location.href;this.setOptions(t)}},{key:"goTo",value:function(t,i,n){this.reset(),this.transition=i,this.isUrl=n,this.setOptions(t,!0)}},{key:"setOptions",value:function(t,i){var n="["+this.container+"]",r;this.transition&&this.transition!="true"&&(this.transitionContainer="["+this.container+'="'+this.transition+'"]',this.loadingClass=this.transitions[this.transition].loadingClass||this.loadingClass,this.loadedClass=this.transitions[this.transition].loadedClass||this.loadedClass,this.readyClass=this.transitions[this.transition].readyClass||this.readyClass,this.transitionsPrefix=this.transitions[this.transition].transitionsPrefix||this.transitionsPrefix,this.enterDelay=this.transitions[this.transition].enterDelay||this.enterDelay,this.exitDelay=this.transitions[this.transition].exitDelay||this.exitDelay,this.loadedDelay=this.transitions[this.transition].loadedDelay||this.loadedDelay,r=document.querySelector(this.transitionContainer)),r?(n=this.transitionContainer,this.oldContainer=r,this.classContainer=this.oldContainer.parentNode,this.subContainer||history.replaceState(this.transition,null,this.href),this.subContainer=!0):(this.oldContainer=document.querySelector(n),this.subContainer&&history.replaceState(this.prevTransition,null,this.href),this.subContainer=!1),this.href=t,this.parentContainer=this.oldContainer.parentNode,this.isUrl===""||this.isUrl!=null&&this.isUrl!="false"&&this.isUrl!=!1?history.pushState(this.transition,null,t):(this.oldContainer.classList.add("is-old"),this.setLoading(),this.startEnterDelay(),this.loadHref(t,n,i))}},{key:"setLoading",value:function(){this.classContainer.classList.remove(this.loadedClass,this.readyClass),this.classContainer.classList.add(this.loadingClass),this.classContainer.classList.remove(this.transitionsPrefix+this.prevTransition),this.transition&&this.classContainer.classList.add(this.transitionsPrefix+this.transition),this.subContainer||(this.prevTransition=this.transition);var t=new Event(this.namespace+"loading");window.dispatchEvent(t)}},{key:"startEnterDelay",value:function(){var t=this;this.enterTimeout=window.setTimeout(function(){t.isEntered=!0,t.isLoaded&&t.transitionContainers()},this.enterDelay)}},{key:"loadHref",value:function(t,i,n){var r=this;this.isLoading=!0;var o=this.controller.signal;fetch(t,{signal:o}).then(function(l){return l.text()}).then(function(l){n&&history.pushState(r.transition,null,t);var a=new DOMParser;r.data=a.parseFromString(l,"text/html"),r.newContainer=r.data.querySelector(i),r.newContainer.classList.add("is-new"),r.parentNewContainer=r.newContainer.parentNode,r.hideContainer(),r.parentContainer.insertBefore(r.newContainer,r.oldContainer),r.isInserted=!0,r.setSvgs(),r.isLoaded=!0,r.isEntered&&r.transitionContainers(),r.loadEls(r.newContainer),r.isLoading=!1}).catch(function(l){window.location=t})}},{key:"transitionContainers",value:function(){var t=this;this.setAttributes(),this.showContainer(),this.setLoaded(),setTimeout(function(){t.removeContainer(),t.setReady()},this.exitDelay)}},{key:"setSvgs",value:function(){if(this.isChrome){var t=this.newContainer.querySelectorAll("use");t.length&&t.forEach(function(i){var n=i.getAttribute("xlink:href");if(n)i.parentNode.innerHTML='';else{var r=i.getAttribute("href");r&&(i.parentNode.innerHTML='')}})}}},{key:"setAttributes",value:function(){var t=this,i=this.data.getElementsByTagName("title")[0],n=this.data.head.querySelector('meta[name="description"]'),r=document.head.querySelector('meta[name="description"]'),o,l;this.subContainer?(l=this.parentNewContainer,o=document.querySelector(this.transitionContainer).parentNode):(l=this.data.querySelector("html"),o=document.querySelector("html"));var a=Object.assign({},l.dataset);i&&(document.title=i.innerText),r&&n&&r.setAttribute("content",n.getAttribute("content")),a&&Object.entries(a).forEach(function(h){var c=ge(h,2),u=c[0],d=c[1];o.setAttribute("data-"+t.toDash(u),d)})}},{key:"toDash",value:function(t){return t.split(/(?=[A-Z])/).join("-").toLowerCase()}},{key:"hideContainer",value:function(){this.newContainer.style.visibility="hidden",this.newContainer.style.height=0,this.newContainer.style.overflow="hidden"}},{key:"showContainer",value:function(){this.newContainer.style.visibility="",this.newContainer.style.height="",this.newContainer.style.overflow=""}},{key:"loadEls",value:function(t){var i=this,n=[];this.loadAttributes.forEach(function(r){var o="data-"+i.name+"-"+r,l=t.querySelectorAll("["+o+"]");l.length&&l.forEach(function(a){var h=a.getAttribute(o);if(a.setAttribute(r,h),r=="src"||r=="srcset"){var c=new Promise(function(u){a.onload=function(){return u(a)}});n.push(c)}})}),Promise.all(n).then(function(r){var o=new Event(i.namespace+"images");window.dispatchEvent(o)})}},{key:"setLoaded",value:function(){var t=this;this.classContainer.classList.remove(this.loadingClass),setTimeout(function(){t.classContainer.classList.add(t.loadedClass)},this.loadedDelay);var i=new Event(this.namespace+"loaded");window.dispatchEvent(i)}},{key:"removeContainer",value:function(){this.parentContainer.removeChild(this.oldContainer),this.newContainer.classList.remove("is-new"),this.isInserted=!1}},{key:"setReady",value:function(){this.classContainer.classList.add(this.readyClass);var t=new Event(this.namespace+"ready");window.dispatchEvent(t)}},{key:"on",value:function(t,i){var n=this;window.addEventListener(this.namespace+t,function(){switch(t){case"loading":return i(n.transition,n.oldContainer);case"loaded":return i(n.transition,n.oldContainer,n.newContainer);case"ready":return i(n.transition,n.newContainer);default:return i()}},!1)}}]),s}(),kt=Se;var j=class extends A{constructor(s){super(s)}init(){new kt({enterDelay:0,transitions:{customTransition:{}}}).on("loaded",(e,t,i)=>{this.call("destroy",t,"app"),this.call("update",i,"app")})}};var Ce=s=>({url:s.src,width:s.naturalWidth,height:s.naturalHeight,ratio:s.naturalWidth/s.naturalHeight}),_e=(s,e={})=>new Promise((t,i)=>{let n=new Image;e.crossOrigin&&(n.crossOrigin=e.crossOrigin);let r=()=>{t(ft({element:n},Ce(n)))};n.decode?(n.src=s,n.decode().then(r).catch(o=>{i(o)})):(n.onload=r,n.onerror=o=>{i(o)},n.src=s)}),Lt=[],zt=(s,e,t)=>E(void 0,null,function*(){let i=e||s.dataset.src,n=Lt.find(r=>r.url===i);if(!n){if(n=yield _e(i),!n.url)return;Lt.push(n)}s.src!==i&&(s.tagName==="IMG"?s.src=n.url:s.style.backgroundImage=`url(${n.url})`,requestAnimationFrame(()=>{let r=s.closest(`.${S.LAZY_CONTAINER}`);r&&(r.classList.add(S.LAZY_LOADED),r.style.backgroundImage=""),s.classList.add(S.LAZY_LOADED),t==null||t()}))});function Q(){return Q=Object.assign?Object.assign.bind():function(s){for(var e=1;e=1;let a=i?1:this.easing(l);this.value=this.from+(this.to-this.from)*a}var n,r,o;(t=this.onUpdate)==null||t.call(this,this.value,i),i&&this.stop()}stop(){this.isRunning=!1}fromTo(e,t,{lerp:i=.1,duration:n=1,easing:r=a=>a,onStart:o,onUpdate:l}){this.from=this.value=e,this.to=t,this.lerp=i,this.duration=n,this.easing=r,this.currentTime=0,this.isRunning=!0,o==null||o(),this.onUpdate=l}},et=class{constructor({wrapper:e,content:t,autoResize:i=!0}={}){if(this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth},this.wrapper=e,this.content=t,i){let n=function(r,o){let l;return function(){let a=arguments,h=this;clearTimeout(l),l=setTimeout(function(){r.apply(h,a)},250)}}(this.resize);this.wrapper!==window&&(this.wrapperResizeObserver=new ResizeObserver(n),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(n),this.contentResizeObserver.observe(this.content)}this.resize()}destroy(){var e,t;(e=this.wrapperResizeObserver)==null||e.disconnect(),(t=this.contentResizeObserver)==null||t.disconnect()}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}},H=class{constructor(){this.events={}}emit(e,...t){let i=this.events[e]||[];for(let n=0,r=i.length;n{var n;this.events[e]=(n=this.events[e])==null?void 0:n.filter(r=>t!==r)}}off(e,t){var i;this.events[e]=(i=this.events[e])==null?void 0:i.filter(n=>t!==n)}destroy(){this.events={}}},it=class{constructor(e,{wheelMultiplier:t=1,touchMultiplier:i=2,normalizeWheel:n=!1}){this.onTouchStart=r=>{let{clientX:o,clientY:l}=r.targetTouches?r.targetTouches[0]:r;this.touchStart.x=o,this.touchStart.y=l,this.lastDelta={x:0,y:0}},this.onTouchMove=r=>{let{clientX:o,clientY:l}=r.targetTouches?r.targetTouches[0]:r,a=-(o-this.touchStart.x)*this.touchMultiplier,h=-(l-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=o,this.touchStart.y=l,this.lastDelta={x:a,y:h},this.emitter.emit("scroll",{deltaX:a,deltaY:h,event:r})},this.onTouchEnd=r=>{this.emitter.emit("scroll",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:r})},this.onWheel=r=>{let{deltaX:o,deltaY:l}=r;this.normalizeWheel&&(o=W(-100,o,100),l=W(-100,l,100)),o*=this.wheelMultiplier,l*=this.wheelMultiplier,this.emitter.emit("scroll",{deltaX:o,deltaY:l,event:r})},this.element=e,this.wheelMultiplier=t,this.touchMultiplier=i,this.normalizeWheel=n,this.touchStart={x:null,y:null},this.emitter=new H,this.element.addEventListener("wheel",this.onWheel,{passive:!1}),this.element.addEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.addEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.addEventListener("touchend",this.onTouchEnd,{passive:!1})}on(e,t){return this.emitter.on(e,t)}destroy(){this.emitter.destroy(),this.element.removeEventListener("wheel",this.onWheel,{passive:!1}),this.element.removeEventListener("touchstart",this.onTouchStart,{passive:!1}),this.element.removeEventListener("touchmove",this.onTouchMove,{passive:!1}),this.element.removeEventListener("touchend",this.onTouchEnd,{passive:!1})}},V=class{constructor({wrapper:e=window,content:t=document.documentElement,wheelEventsTarget:i=e,eventsTarget:n=i,smoothWheel:r=!0,smoothTouch:o=!1,syncTouch:l=!1,syncTouchLerp:a=.1,__iosNoInertiaSyncTouchLerp:h=.4,touchInertiaMultiplier:c=35,duration:u,easing:d=m=>Math.min(1,1.001-Math.pow(2,-10*m)),lerp:f=!u&&.1,infinite:p=!1,orientation:y="vertical",gestureOrientation:L="vertical",touchMultiplier:_=1,wheelMultiplier:b=1,normalizeWheel:O=!1,autoResize:I=!0}={}){this.onVirtualScroll=({deltaX:m,deltaY:w,event:v})=>{if(v.ctrlKey)return;let C=v.type.includes("touch"),g=v.type.includes("wheel");if(this.options.gestureOrientation==="both"&&m===0&&w===0||this.options.gestureOrientation==="vertical"&&w===0||this.options.gestureOrientation==="horizontal"&&m===0||C&&this.options.gestureOrientation==="vertical"&&this.scroll===0&&!this.options.infinite&&w<=0)return;let z=v.composedPath();if(z=z.slice(0,z.indexOf(this.rootElement)),z.find(T=>{var ct;return(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent"))||C&&(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent-touch"))||g&&(T.hasAttribute==null?void 0:T.hasAttribute("data-lenis-prevent-wheel"))||((ct=T.classList)==null?void 0:ct.contains("lenis"))}))return;if(this.isStopped||this.isLocked)return void v.preventDefault();if(this.isSmooth=(this.options.smoothTouch||this.options.syncTouch)&&C||this.options.smoothWheel&&g,!this.isSmooth)return this.isScrolling=!1,void this.animate.stop();v.preventDefault();let R=w;this.options.gestureOrientation==="both"?R=Math.abs(w)>Math.abs(m)?w:m:this.options.gestureOrientation==="horizontal"&&(R=m);let Gt=C&&this.options.syncTouch,ht=C&&v.type==="touchend"&&Math.abs(R)>1;ht&&(R=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+R,Q({programmatic:!1},Gt&&{lerp:ht?this.syncTouchLerp:this.options.__iosNoInertiaSyncTouchLerp}))},this.onScroll=()=>{if(!this.isScrolling){let m=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.velocity=0,this.direction=Math.sign(this.animatedScroll-m),this.emit()}},window.lenisVersion="1.0.27",e!==document.documentElement&&e!==document.body||(e=window),this.options={wrapper:e,content:t,wheelEventsTarget:i,eventsTarget:n,smoothWheel:r,smoothTouch:o,syncTouch:l,syncTouchLerp:a,__iosNoInertiaSyncTouchLerp:h,touchInertiaMultiplier:c,duration:u,easing:d,lerp:f,infinite:p,gestureOrientation:L,orientation:y,touchMultiplier:_,wheelMultiplier:b,normalizeWheel:O,autoResize:I},this.animate=new tt,this.emitter=new H,this.dimensions=new et({wrapper:e,content:t,autoResize:I}),this.toggleClass("lenis",!0),this.velocity=0,this.isLocked=!1,this.isStopped=!1,this.isSmooth=l||r||o,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener("scroll",this.onScroll,{passive:!1}),this.virtualScroll=new it(n,{touchMultiplier:_,wheelMultiplier:b,normalizeWheel:O}),this.virtualScroll.on("scroll",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener("scroll",this.onScroll,{passive:!1}),this.virtualScroll.destroy(),this.dimensions.destroy(),this.toggleClass("lenis",!1),this.toggleClass("lenis-smooth",!1),this.toggleClass("lenis-scrolling",!1),this.toggleClass("lenis-stopped",!1),this.toggleClass("lenis-locked",!1)}on(e,t){return this.emitter.on(e,t)}off(e,t){return this.emitter.off(e,t)}setScroll(e){this.isHorizontal?this.rootElement.scrollLeft=e:this.rootElement.scrollTop=e}resize(){this.dimensions.resize()}emit(){this.emitter.emit("scroll",this)}reset(){this.isLocked=!1,this.isScrolling=!1,this.velocity=0,this.animate.stop()}start(){this.isStopped=!1,this.reset()}stop(){this.isStopped=!0,this.animate.stop(),this.reset()}raf(e){let t=e-(this.time||e);this.time=e,this.animate.advance(.001*t)}scrollTo(e,{offset:t=0,immediate:i=!1,lock:n=!1,duration:r=this.options.duration,easing:o=this.options.easing,lerp:l=!r&&this.options.lerp,onComplete:a=null,force:h=!1,programmatic:c=!0}={}){if(!this.isStopped&&!this.isLocked||h){if(["top","left","start"].includes(e))e=0;else if(["bottom","right","end"].includes(e))e=this.limit;else{var u;let d;if(typeof e=="string"?d=document.querySelector(e):(u=e)!=null&&u.nodeType&&(d=e),d){if(this.options.wrapper!==window){let p=this.options.wrapper.getBoundingClientRect();t-=this.isHorizontal?p.left:p.top}let f=d.getBoundingClientRect();e=(this.isHorizontal?f.left:f.top)+this.animatedScroll}}if(typeof e=="number"){if(e+=t,e=Math.round(e),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):e=W(0,e,this.limit),i)return this.animatedScroll=this.targetScroll=e,this.setScroll(this.scroll),this.reset(),void(a==null||a(this));if(!c){if(e===this.targetScroll)return;this.targetScroll=e}this.animate.fromTo(this.animatedScroll,e,{duration:r,easing:o,lerp:l,onStart:()=>{n&&(this.isLocked=!0),this.isScrolling=!0},onUpdate:(d,f)=>{this.isScrolling=!0,this.velocity=d-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=d,this.setScroll(this.scroll),c&&(this.targetScroll=d),f||this.emit(),f&&requestAnimationFrame(()=>{this.reset(),this.emit(),a==null||a(this)})}})}}}get rootElement(){return this.options.wrapper===window?this.options.content:this.options.wrapper}get limit(){return this.dimensions.limit[this.isHorizontal?"x":"y"]}get isHorizontal(){return this.options.orientation==="horizontal"}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?(this.animatedScroll%(e=this.limit)+e)%e:this.animatedScroll;var e}get progress(){return this.limit===0?1:this.scroll/this.limit}get isSmooth(){return this.__isSmooth}set isSmooth(e){this.__isSmooth!==e&&(this.__isSmooth=e,this.toggleClass("lenis-smooth",e))}get isScrolling(){return this.__isScrolling}set isScrolling(e){this.__isScrolling!==e&&(this.__isScrolling=e,this.toggleClass("lenis-scrolling",e))}get isStopped(){return this.__isStopped}set isStopped(e){this.__isStopped!==e&&(this.__isStopped=e,this.toggleClass("lenis-stopped",e))}get isLocked(){return this.__isLocked}set isLocked(e){this.__isLocked!==e&&(this.__isLocked=e,this.toggleClass("lenis-locked",e))}get className(){let e="lenis";return this.isStopped&&(e+=" lenis-stopped"),this.isLocked&&(e+=" lenis-locked"),this.isScrolling&&(e+=" lenis-scrolling"),this.isSmooth&&(e+=" lenis-smooth"),e}toggleClass(e,t){this.rootElement.classList.toggle(e,t),this.emitter.emit("className change",this)}};function st(){return st=Object.assign?Object.assign.bind():function(s){for(var e=1;e{e.forEach(t=>{let i=this.scrollElements.find(n=>n.$el===t.target);t.isIntersecting?(i&&(i.isAlreadyIntersected=!0),this._setInview(t)):i&&i.isAlreadyIntersected&&this._setOutOfView(t)})},{rootMargin:this.rootMargin});for(let e of this.scrollElements)this.observe(e.$el)}destroy(){this.observer.disconnect()}observe(e){e&&this.observer.observe(e)}unobserve(e){e&&this.observer.unobserve(e)}_setInview(e){let t=this.scrollElements.find(i=>i.$el===e.target);this.IORaf&&(t==null||t.setInteractivityOn()),!this.IORaf&&(t==null||t.setInview())}_setOutOfView(e){let t=this.scrollElements.find(i=>i.$el===e.target);this.IORaf&&(t==null||t.setInteractivityOff()),!this.IORaf&&(t==null||t.setOutOfView()),t!=null&&t.attributes.scrollRepeat||this.IORaf||this.unobserve(e.target)}};function Pt(s,e,t,i,n){return t+((n-s)/(e-s)*(i-t)||0)}function Dt(s,e){return s.reduce((t,i)=>Math.abs(i-e)1?1:i;var i;if(this.progress=t,t!=this.lastProgress){if(this.lastProgress=t,this.attributes.scrollCssProgress&&this._setCssProgress(t),this.attributes.scrollEventProgress&&this._setCustomEventProgress(t),this.attributes.scrollModuleProgress)for(let n of this.progressModularModules)this.modularInstance&&this.modularInstance.call("onScrollProgress",t,n.moduleName,n.moduleId);t>0&&t<1&&this.setInview(),t===0&&this.setOutOfView(),t===1&&this.setOutOfView()}}_setCssProgress(e=0){this.$el.style.setProperty("--progress",e.toString())}_setCustomEventProgress(e=0){let t=this.attributes.scrollEventProgress;if(!t)return;let i=new CustomEvent(t,{detail:{target:this.$el,progress:e}});window.dispatchEvent(i)}_getProgressModularModules(){if(!this.modularInstance)return;let e=Object.keys(this.$el.dataset).filter(i=>i.includes("module")),t=Object.entries(this.modularInstance.modules);if(e.length)for(let i of e){let n=this.$el.dataset[i];if(!n)return;for(let r of t){let[o,l]=r;n in l&&this.progressModularModules.push({moduleName:o,moduleId:n})}}}_getScrollCallFrom(){let e=Dt([this.intersection.start,this.intersection.end],this.currentScroll);return this.intersection.start===e?"start":"end"}_dispatchCall(e,t){var i,n;let r=(i=this.attributes.scrollCall)==null?void 0:i.split(","),o=(n=this.attributes)==null?void 0:n.scrollCallSelf;if(r&&r.length>1){var l;let[a,h,c]=r,u;u=o?this.$el.dataset[`module${h.trim()}`]:c,this.modularInstance&&this.modularInstance.call(a.trim(),{target:this.$el,way:e,from:t},h.trim(),(l=u)==null?void 0:l.trim())}else if(r){let[a]=r,h=new CustomEvent(a,{detail:{target:this.$el,way:e,from:t}});window.dispatchEvent(h)}}},Oe=["scrollOffset","scrollPosition","scrollModuleProgress","scrollCssProgress","scrollEventProgress","scrollSpeed"],rt=class{constructor({$el:e,modularInstance:t,triggerRootMargin:i,rafRootMargin:n,scrollOrientation:r}){this.$scrollContainer=void 0,this.modularInstance=void 0,this.triggerRootMargin=void 0,this.rafRootMargin=void 0,this.scrollElements=void 0,this.triggeredScrollElements=void 0,this.RAFScrollElements=void 0,this.scrollElementsToUpdate=void 0,this.IOTriggerInstance=void 0,this.IORafInstance=void 0,this.scrollOrientation=void 0,e?(this.$scrollContainer=e,this.modularInstance=t,this.scrollOrientation=r,this.triggerRootMargin=i!=null?i:"-1px -1px -1px -1px",this.rafRootMargin=n!=null?n:"100% 100% 100% 100%",this.scrollElements=[],this.triggeredScrollElements=[],this.RAFScrollElements=[],this.scrollElementsToUpdate=[],this._init()):console.error("Please provide a DOM Element as scrollContainer")}_init(){let e=this.$scrollContainer.querySelectorAll("[data-scroll]"),t=Array.from(e);this._subscribeScrollElements(t),this.IOTriggerInstance=new B({scrollElements:[...this.triggeredScrollElements],rootMargin:this.triggerRootMargin,IORaf:!1}),this.IORafInstance=new B({scrollElements:[...this.RAFScrollElements],rootMargin:this.rafRootMargin,IORaf:!0})}destroy(){this.IOTriggerInstance.destroy(),this.IORafInstance.destroy(),this._unsubscribeAllScrollElements()}onResize({currentScroll:e}){for(let t of this.RAFScrollElements)t.onResize({currentScroll:e})}onRender({currentScroll:e,smooth:t}){for(let i of this.scrollElementsToUpdate)i.onRender({currentScroll:e,smooth:t})}removeScrollElements(e){let t=e.querySelectorAll("[data-scroll]");if(t.length){for(let i=0;i-1&&(this.IOTriggerInstance.unobserve(n.$el),this.triggeredScrollElements.splice(i,1))}for(let i=0;i-1&&(this.IORafInstance.unobserve(n.$el),this.RAFScrollElements.splice(i,1))}t.forEach(i=>{let n=this.scrollElementsToUpdate.find(o=>o.$el===i),r=this.scrollElements.find(o=>o.$el===i);n&&this._unsubscribeElementUpdate(n),r&&(this.scrollElements=this.scrollElements.filter(o=>o.id!=r.id))})}}addScrollElements(e){let t=e.querySelectorAll("[data-scroll]"),i=[];this.scrollElements.forEach(o=>{i.push(o.id)});let n=Math.max(...i)+1,r=Array.from(t);this._subscribeScrollElements(r,n,!0)}_subscribeScrollElements(e,t=0,i=!1){for(let n=0;nt.id!=e.id)}_checkRafNeeded(e){let t=[...Oe],i=n=>{t=t.filter(r=>r!=n)};if(e.dataset.scrollOffset){if(e.dataset.scrollOffset.split(",").map(n=>n.replace("%","").trim()).join(",")!="0,0")return!0;i("scrollOffset")}else i("scrollOffset");if(e.dataset.scrollPosition){if(e.dataset.scrollPosition.trim()!="top,bottom")return!0;i("scrollPosition")}else i("scrollPosition");if(e.dataset.scrollSpeed&&!isNaN(parseFloat(e.dataset.scrollSpeed)))return!0;i("scrollSpeed");for(let n of t)if(n in e.dataset)return!0;return!1}},ot=class{constructor({resizeElements:e,resizeCallback:t=()=>{}}){this.$resizeElements=void 0,this.isFirstObserve=void 0,this.observer=void 0,this.resizeCallback=void 0,this.$resizeElements=e,this.resizeCallback=t,this.isFirstObserve=!0,this._init()}_init(){this.observer=new ResizeObserver(e=>{var t;!this.isFirstObserve&&((t=this.resizeCallback)==null||t.call(this)),this.isFirstObserve=!1});for(let e of this.$resizeElements)this.observer.observe(e)}destroy(){this.observer.disconnect()}},xt={wrapper:window,content:document.documentElement,eventsTarget:window,lerp:.1,duration:.75,orientation:"vertical",gestureOrientation:"vertical",smoothWheel:!0,smoothTouch:!1,syncTouch:!1,syncTouchLerp:.1,touchInertiaMultiplier:35,wheelMultiplier:1,touchMultiplier:2,normalizeWheel:!1,autoResize:!0,easing:s=>Math.min(1,1.001-Math.pow(2,-10*s))},q=class{constructor({lenisOptions:e={},modularInstance:t,triggerRootMargin:i,rafRootMargin:n,autoResize:r=!0,autoStart:o=!0,scrollCallback:l=()=>{},initCustomTicker:a,destroyCustomTicker:h}={}){this.rafPlaying=void 0,this.lenisInstance=void 0,this.coreInstance=void 0,this.lenisOptions=void 0,this.modularInstance=void 0,this.triggerRootMargin=void 0,this.rafRootMargin=void 0,this.rafInstance=void 0,this.autoResize=void 0,this.autoStart=void 0,this.ROInstance=void 0,this.initCustomTicker=void 0,this.destroyCustomTicker=void 0,this._onRenderBind=void 0,this._onResizeBind=void 0,this._onScrollToBind=void 0,this.lenisOptions=st({},xt,e),Object.assign(this,{lenisOptions:e,modularInstance:t,triggerRootMargin:i,rafRootMargin:n,autoResize:r,autoStart:o,scrollCallback:l,initCustomTicker:a,destroyCustomTicker:h}),this._onRenderBind=this._onRender.bind(this),this._onScrollToBind=this._onScrollTo.bind(this),this._onResizeBind=this._onResize.bind(this),this.rafPlaying=!1,this._init()}_init(){var e;this.lenisInstance=new V({wrapper:this.lenisOptions.wrapper,content:this.lenisOptions.content,eventsTarget:this.lenisOptions.eventsTarget,lerp:this.lenisOptions.lerp,duration:this.lenisOptions.duration,orientation:this.lenisOptions.orientation,gestureOrientation:this.lenisOptions.gestureOrientation,smoothWheel:this.lenisOptions.smoothWheel,smoothTouch:this.lenisOptions.smoothTouch,syncTouch:this.lenisOptions.syncTouch,syncTouchLerp:this.lenisOptions.syncTouchLerp,touchInertiaMultiplier:this.lenisOptions.touchInertiaMultiplier,wheelMultiplier:this.lenisOptions.wheelMultiplier,touchMultiplier:this.lenisOptions.touchMultiplier,normalizeWheel:this.lenisOptions.normalizeWheel,easing:this.lenisOptions.easing}),(e=this.lenisInstance)==null||e.on("scroll",this.scrollCallback),document.documentElement.setAttribute("data-scroll-orientation",this.lenisInstance.options.orientation),requestAnimationFrame(()=>{this.coreInstance=new rt({$el:this.lenisInstance.rootElement,modularInstance:this.modularInstance,triggerRootMargin:this.triggerRootMargin,rafRootMargin:this.rafRootMargin,scrollOrientation:this.lenisInstance.options.orientation}),this._bindEvents(),this.initCustomTicker&&!this.destroyCustomTicker?console.warn("initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble."):!this.initCustomTicker&&this.destroyCustomTicker&&console.warn("destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble."),this.autoStart&&this.start()})}destroy(){this.stop(),this._unbindEvents(),this.lenisInstance.destroy(),this.coreInstance.destroy()}_bindEvents(){this._bindScrollToEvents(),this.autoResize&&("ResizeObserver"in window?this.ROInstance=new ot({resizeElements:[document.body],resizeCallback:this._onResizeBind}):window.addEventListener("resize",this._onResizeBind))}_unbindEvents(){this._unbindScrollToEvents(),this.autoResize&&("ResizeObserver"in window?this.ROInstance&&this.ROInstance.destroy():window.removeEventListener("resize",this._onResizeBind))}_bindScrollToEvents(e){let t=e||this.lenisInstance.rootElement,i=t==null?void 0:t.querySelectorAll("[data-scroll-to]");i!=null&&i.length&&i.forEach(n=>{n.addEventListener("click",this._onScrollToBind,!1)})}_unbindScrollToEvents(e){let t=e||this.lenisInstance.rootElement,i=t==null?void 0:t.querySelectorAll("[data-scroll-to]");i!=null&&i.length&&i.forEach(n=>{n.removeEventListener("click",this._onScrollToBind,!1)})}_onResize(){requestAnimationFrame(()=>{var e;(e=this.coreInstance)==null||e.onResize({currentScroll:this.lenisInstance.scroll})})}_onRender(){var e,t;(e=this.lenisInstance)==null||e.raf(Date.now()),(t=this.coreInstance)==null||t.onRender({currentScroll:this.lenisInstance.scroll,smooth:this.lenisInstance.isSmooth})}_onScrollTo(e){var t;e.preventDefault();let i=(t=e.currentTarget)!=null?t:null;if(!i)return;let n=i.getAttribute("data-scroll-to-href")||i.getAttribute("href"),r=i.getAttribute("data-scroll-to-offset")||0,o=i.getAttribute("data-scroll-to-duration")||this.lenisOptions.duration||xt.duration;n&&this.scrollTo(n,{offset:typeof r=="string"?parseInt(r):r,duration:typeof o=="string"?parseInt(o):o})}start(){var e;this.rafPlaying||((e=this.lenisInstance)==null||e.start(),this.rafPlaying=!0,this.initCustomTicker?this.initCustomTicker(this._onRenderBind):this._raf())}stop(){var e;this.rafPlaying&&((e=this.lenisInstance)==null||e.stop(),this.rafPlaying=!1,this.destroyCustomTicker?this.destroyCustomTicker(this._onRenderBind):this.rafInstance&&cancelAnimationFrame(this.rafInstance))}removeScrollElements(e){var t;e?(this._unbindScrollToEvents(e),(t=this.coreInstance)==null||t.removeScrollElements(e)):console.error("Please provide a DOM Element as $oldContainer")}addScrollElements(e){var t;e?((t=this.coreInstance)==null||t.addScrollElements(e),requestAnimationFrame(()=>{this._bindScrollToEvents(e)})):console.error("Please provide a DOM Element as $newContainer")}resize(){this._onResizeBind()}scrollTo(e,t){var i;(i=this.lenisInstance)==null||i.scrollTo(e,{offset:t==null?void 0:t.offset,lerp:t==null?void 0:t.lerp,duration:t==null?void 0:t.duration,immediate:t==null?void 0:t.immediate,lock:t==null?void 0:t.lock,force:t==null?void 0:t.force,easing:t==null?void 0:t.easing,onComplete:t==null?void 0:t.onComplete})}_raf(){this._onRenderBind(),this.rafInstance=requestAnimationFrame(()=>this._raf())}};var G=class extends A{constructor(s){super(s)}init(){this.scroll=new q({modularInstance:this})}lazyLoad(s){zt(s.target,null,()=>{})}scrollTo(s){var n;let i=s,{target:e}=i,t=mt(i,["target"]);t=Object.assign({duration:1},t),(n=this.scroll)==null||n.scrollTo(e,t)}destroy(){this.scroll.destroy()}};var Wt=ee($t(),1);var X;E(void 0,null,function*(){if(M.IS_DEV){let s=yield Promise.resolve().then(()=>(jt(),Nt));X=s==null?void 0:s.gridHelper}});function Ht(){(0,Wt.default)(),X==null||X()}var Vt=(s,e,t=!1)=>{let i=null;return(...n)=>{clearTimeout(i);let r=()=>{i=null,t||s(...n)};t&&!i&&s(...n),i=setTimeout(r,e)}};var k=document.documentElement,di=document.body;var Bt=new Et({modules:lt}),at=()=>{let s=document.documentElement.style,e=document.body.clientWidth*.01;if(s.setProperty("--vw",`${e}px`),M.SUPPORTS_VH)return;let t=window.innerHeight,i=document.documentElement.clientHeight*.01;s.setProperty("--svh",`${i}px`);let n=t*.01;if(s.setProperty("--dvh",`${n}px`),document.body){let o=document.createElement("div");o.style.width="1px",o.style.height="100vh",o.style.position="fixed",o.style.left="0",o.style.top="0",o.style.bottom="0",o.style.visibility="hidden",document.body.appendChild(o);var r=o.clientHeight;o.remove();let l=r*.01;s.setProperty("--lvh",`${l}px`)}};window.addEventListener("load",()=>{let s=document.getElementById("main-css");s?s.isLoaded?qt():s.addEventListener("load",qt):console.warn('The "main-css" stylesheet not found')});function qt(){Ht(),at(),Bt.init(Bt),k.classList.add(S.LOADED),k.classList.add(S.READY),k.classList.remove(S.LOADING);let s=new CustomEvent(Ct.RESIZE_END);window.addEventListener("resize",()=>{at(),Vt(()=>{window.dispatchEvent(s)},200,!1)}),window.addEventListener("orientationchange",()=>{at()}),Ot&&Tt($.EAGER,M.IS_DEV).then(e=>{k.classList.add(S.FONTS_LOADED),M.IS_DEV&&(console.group("Eager fonts loaded!",e.length,"/",document.fonts.size),console.group("State of eager fonts:"),e.forEach(t=>console.log(t.family,t.style,t.weight,t.status)),console.groupEnd(),console.group("State of all fonts:"),document.fonts.forEach(t=>console.log(t.family,t.style,t.weight,t.status)),console.groupEnd())})}})(); /*! Bundled license information: svg4everybody/dist/svg4everybody.js: diff --git a/www/assets/scripts/app.js.map b/www/assets/scripts/app.js.map index 864afeb..7d2757a 100644 --- a/www/assets/scripts/app.js.map +++ b/www/assets/scripts/app.js.map @@ -1,7 +1,7 @@ { "version": 3, "sources": ["../../../node_modules/svg4everybody/dist/svg4everybody.js", "../../../assets/scripts/utils/grid-helper.js", "../../../node_modules/modujs/dist/main.esm.js", "../../../assets/scripts/modules.js", "../../../assets/scripts/config.js", "../../../assets/scripts/utils/fonts.js", "../../../assets/scripts/modules/Example.js", "../../../node_modules/modularload/dist/main.esm.js", "../../../assets/scripts/modules/Load.js", "../../../assets/scripts/utils/image.js", "../../../node_modules/@studio-freight/lenis/src/maths.js", "../../../node_modules/@studio-freight/lenis/src/animate.js", "../../../node_modules/@studio-freight/lenis/src/dimensions.js", "../../../node_modules/@studio-freight/lenis/src/debounce.js", "../../../node_modules/@studio-freight/lenis/src/emitter.js", "../../../node_modules/@studio-freight/lenis/src/virtual-scroll.js", "../../../node_modules/@studio-freight/lenis/src/index.js", "../../../node_modules/locomotive-scroll/src/core/IO.ts", "../../../node_modules/locomotive-scroll/src/utils/maths.ts", "../../../node_modules/locomotive-scroll/src/core/ScrollElement.ts", "../../../node_modules/locomotive-scroll/src/core/Core.ts", "../../../node_modules/locomotive-scroll/src/core/RO.ts", "../../../node_modules/locomotive-scroll/src/index.ts", "../../../assets/scripts/modules/Scroll.js", "../../../assets/scripts/globals.js", "../../../assets/scripts/utils/tickers.js", "../../../assets/scripts/utils/dom.js", "../../../assets/scripts/app.js"], - "sourcesContent": ["!function(root, factory) {\n \"function\" == typeof define && define.amd ? // AMD. Register as an anonymous module unless amdModuleId is set\n define([], function() {\n return root.svg4everybody = factory();\n }) : \"object\" == typeof module && module.exports ? // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory() : root.svg4everybody = factory();\n}(this, function() {\n /*! svg4everybody v2.1.9 | github.com/jonathantneal/svg4everybody */\n function embed(parent, svg, target) {\n // if the target exists\n if (target) {\n // create a document fragment to hold the contents of the target\n var fragment = document.createDocumentFragment(), viewBox = !svg.hasAttribute(\"viewBox\") && target.getAttribute(\"viewBox\");\n // conditionally set the viewBox on the svg\n viewBox && svg.setAttribute(\"viewBox\", viewBox);\n // copy the contents of the clone into the fragment\n for (// clone the target\n var clone = target.cloneNode(!0); clone.childNodes.length; ) {\n fragment.appendChild(clone.firstChild);\n }\n // append the fragment into the svg\n parent.appendChild(fragment);\n }\n }\n function loadreadystatechange(xhr) {\n // listen to changes in the request\n xhr.onreadystatechange = function() {\n // if the request is ready\n if (4 === xhr.readyState) {\n // get the cached html document\n var cachedDocument = xhr._cachedDocument;\n // ensure the cached html document based on the xhr response\n cachedDocument || (cachedDocument = xhr._cachedDocument = document.implementation.createHTMLDocument(\"\"), \n cachedDocument.body.innerHTML = xhr.responseText, xhr._cachedTarget = {}), // clear the xhr embeds list and embed each item\n xhr._embeds.splice(0).map(function(item) {\n // get the cached target\n var target = xhr._cachedTarget[item.id];\n // ensure the cached target\n target || (target = xhr._cachedTarget[item.id] = cachedDocument.getElementById(item.id)), \n // embed the target into the svg\n embed(item.parent, item.svg, target);\n });\n }\n }, // test the ready state change immediately\n xhr.onreadystatechange();\n }\n function svg4everybody(rawopts) {\n function oninterval() {\n // while the index exists in the live collection\n for (// get the cached index\n var index = 0; index < uses.length; ) {\n // get the current \n var use = uses[index], parent = use.parentNode, svg = getSVGAncestor(parent), src = use.getAttribute(\"xlink:href\") || use.getAttribute(\"href\");\n if (!src && opts.attributeName && (src = use.getAttribute(opts.attributeName)), \n svg && src) {\n if (polyfill) {\n if (!opts.validate || opts.validate(src, svg, use)) {\n // remove the element\n parent.removeChild(use);\n // parse the src and get the url and id\n var srcSplit = src.split(\"#\"), url = srcSplit.shift(), id = srcSplit.join(\"#\");\n // if the link is external\n if (url.length) {\n // get the cached xhr request\n var xhr = requests[url];\n // ensure the xhr request exists\n xhr || (xhr = requests[url] = new XMLHttpRequest(), xhr.open(\"GET\", url), xhr.send(), \n xhr._embeds = []), // add the svg and id as an item to the xhr embeds list\n xhr._embeds.push({\n parent: parent,\n svg: svg,\n id: id\n }), // prepare the xhr ready state change event\n loadreadystatechange(xhr);\n } else {\n // embed the local id into the svg\n embed(parent, svg, document.getElementById(id));\n }\n } else {\n // increase the index when the previous value was not \"valid\"\n ++index, ++numberOfSvgUseElementsToBypass;\n }\n }\n } else {\n // increase the index when the previous value was not \"valid\"\n ++index;\n }\n }\n // continue the interval\n (!uses.length || uses.length - numberOfSvgUseElementsToBypass > 0) && requestAnimationFrame(oninterval, 67);\n }\n var polyfill, opts = Object(rawopts), newerIEUA = /\\bTrident\\/[567]\\b|\\bMSIE (?:9|10)\\.0\\b/, webkitUA = /\\bAppleWebKit\\/(\\d+)\\b/, olderEdgeUA = /\\bEdge\\/12\\.(\\d+)\\b/, edgeUA = /\\bEdge\\/.(\\d+)\\b/, inIframe = window.top !== window.self;\n polyfill = \"polyfill\" in opts ? opts.polyfill : newerIEUA.test(navigator.userAgent) || (navigator.userAgent.match(olderEdgeUA) || [])[1] < 10547 || (navigator.userAgent.match(webkitUA) || [])[1] < 537 || edgeUA.test(navigator.userAgent) && inIframe;\n // create xhr requests object\n var requests = {}, requestAnimationFrame = window.requestAnimationFrame || setTimeout, uses = document.getElementsByTagName(\"use\"), numberOfSvgUseElementsToBypass = 0;\n // conditionally start the interval if the polyfill is active\n polyfill && oninterval();\n }\n function getSVGAncestor(node) {\n for (var svg = node; \"svg\" !== svg.nodeName.toLowerCase() && (svg = svg.parentNode); ) {}\n return svg;\n }\n return svg4everybody;\n});", "/**\n * Grid Helper\n *\n * Provides a grid based on the design guidelines and is helpful for web integration.\n *\n * - `Control + g` to toggle the grid\n *\n */\n\n/**\n * @typedef {Object} GridHelperReference\n *\n * @property {string} [gutterCssVar=GRID_HELPER_GUTTER_CSS_VAR] - CSS variable used to define grid gutters.\n * @property {string} [marginCssVar=GRID_HELPER_MARGIN_CSS_VAR] - CSS variable used to define grid margins.\n * @property {string} [rgbaColor=GRID_HELPER_RGBA_COLOR] - RGBA color for the grid appearence.\n */\n\nconst GRID_HELPER_GUTTER_CSS_VAR = '--grid-gutter';\nconst GRID_HELPER_MARGIN_CSS_VAR = '--grid-margin';\nconst GRID_HELPER_RGBA_COLOR = 'rgba(255, 0, 0, .1)';\n\n/**\n * Create a grid helper\n *\n * @param {GridHelperReference}\n *\n */\nfunction gridHelper({\n gutterCssVar = GRID_HELPER_GUTTER_CSS_VAR,\n marginCssVar = GRID_HELPER_MARGIN_CSS_VAR,\n rgbaColor = GRID_HELPER_RGBA_COLOR,\n} = {}) {\n // Set grid container\n const $gridContainer = document.createElement('div');\n document.body.append($gridContainer);\n\n // Set grid appearence\n setGridHelperColumns($gridContainer, rgbaColor);\n setGridHelperStyles($gridContainer, gutterCssVar, marginCssVar);\n\n // Set grid interactivity\n setGridEvents($gridContainer, rgbaColor);\n}\n\n/**\n * Set grid container styles\n *\n * @param {HTMLElement} $container - DOM Element that contains a list of generated columns\n * @param {string} gutterCssVar - CSS variable used to define grid gutters.\n * @param {string} marginCssVar - CSS variable used to define grid margins.\n *\n */\nfunction setGridHelperStyles($container, gutterCssVar, marginCssVar) {\n const elStyles = $container.style;\n elStyles.zIndex = '10000';\n elStyles.position = 'fixed';\n elStyles.top = '0';\n elStyles.left = '0';\n elStyles.display = 'flex';\n elStyles.width = '100%';\n elStyles.height = '100%';\n elStyles.columnGap = `var(${gutterCssVar}, 0)`;\n elStyles.paddingLeft = `var(${marginCssVar}, 0)`;\n elStyles.paddingRight = `var(${marginCssVar}, 0)`;\n elStyles.pointerEvents = 'none';\n elStyles.visibility = 'hidden';\n}\n\n/**\n * Set grid columns\n *\n * @param {HTMLElement} $container - DOM Element that will contain a list of generated columns\n * @param {string} rgbaColor - RGBA color to stylize the generated columns\n *\n */\nfunction setGridHelperColumns($container, rgbaColor) {\n // Clear columns\n $container.innerHTML = '';\n\n // Loop through columns\n const columns = Number(\n window.getComputedStyle($container).getPropertyValue('--grid-columns')\n );\n\n let $col;\n for (var i = 0; i < columns; i++) {\n $col = document.createElement('div');\n $col.style.flex = '1 1 0';\n $col.style.backgroundColor = rgbaColor;\n $container.appendChild($col);\n }\n}\n\n/**\n * Set grid events\n *\n * Resize to rebuild columns\n * Keydown/Keyup to toggle the grid display\n *\n * @param {HTMLElement} $container - DOM Element that contains a list of generated columns\n * @param {string} rgbaColor - RGBA color to stylize the generated columns\n *\n */\nfunction setGridEvents($container, rgbaColor) {\n // Handle resize\n window.addEventListener(\n 'resize',\n setGridHelperColumns($container, rgbaColor)\n );\n\n // Toggle grid\n let ctrlDown = false;\n let isActive = false;\n\n document.addEventListener('keydown', (e) => {\n if (e.key == 'Control') {\n ctrlDown = true;\n } else {\n if (ctrlDown && e.key == 'g') {\n if (isActive) {\n $container.style.visibility = 'hidden';\n } else {\n $container.style.visibility = 'visible';\n }\n\n isActive = !isActive;\n }\n }\n });\n\n document.addEventListener('keyup', (e) => {\n if (e.key == 'Control') {\n ctrlDown = false;\n }\n });\n}\n\nexport { gridHelper };\n", "function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _toConsumableArray(arr) {\n return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();\n}\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return _arrayLikeToArray(arr);\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter);\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n var _e = undefined;\n\n try {\n for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar _default = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.mAttr = 'data-' + options.dataName;\n this.mCaptureEvents = ['mouseenter', 'mouseleave'];\n this.el = options.el;\n }\n\n _createClass(_default, [{\n key: \"mInit\",\n value: function mInit(modules) {\n var _this = this;\n\n this.modules = modules;\n this.mCheckEventTarget = this.mCheckEventTarget.bind(this);\n\n if (this.events) {\n Object.keys(this.events).forEach(function (event) {\n return _this.mAddEvent(event);\n });\n }\n }\n }, {\n key: \"mUpdate\",\n value: function mUpdate(modules) {\n this.modules = modules;\n }\n }, {\n key: \"mDestroy\",\n value: function mDestroy() {\n var _this2 = this;\n\n if (this.events) {\n Object.keys(this.events).forEach(function (event) {\n return _this2.mRemoveEvent(event);\n });\n }\n }\n }, {\n key: \"mAddEvent\",\n value: function mAddEvent(event) {\n var capture = this.mCaptureEvents.includes(event) ? true : false;\n this.el.addEventListener(event, this.mCheckEventTarget, capture);\n }\n }, {\n key: \"mRemoveEvent\",\n value: function mRemoveEvent(event) {\n var capture = this.mCaptureEvents.includes(event) ? true : false;\n this.el.removeEventListener(event, this.mCheckEventTarget, capture);\n }\n }, {\n key: \"mCheckEventTarget\",\n value: function mCheckEventTarget(e) {\n var event = this.events[e.type];\n\n if (typeof event === \"string\") {\n this[event](e);\n } else {\n var data = '[' + this.mAttr + ']';\n var target = e.target;\n\n if (this.mCaptureEvents.includes(e.type)) {\n if (target.matches(data)) {\n this.mCallEventMethod(e, event, target);\n }\n } else {\n while (target && target !== document) {\n if (target.matches(data)) {\n if (this.mCallEventMethod(e, event, target) != 'undefined') {\n break;\n }\n }\n\n target = target.parentNode;\n }\n }\n }\n }\n }, {\n key: \"mCallEventMethod\",\n value: function mCallEventMethod(e, event, target) {\n var name = target.getAttribute(this.mAttr);\n\n if (event.hasOwnProperty(name)) {\n var method = event[name];\n\n if (!e.hasOwnProperty('currentTarget')) {\n Object.defineProperty(e, 'currentTarget', {\n value: target\n });\n }\n\n if (!e.hasOwnProperty('curTarget')) {\n Object.defineProperty(e, 'curTarget', {\n value: target\n }); // For IE 11\n }\n\n this[method](e);\n }\n }\n }, {\n key: \"$\",\n value: function $(query, context) {\n var classIndex = query.indexOf('.');\n var idIndex = query.indexOf('#');\n var attrIndex = query.indexOf('[');\n var indexes = [classIndex, idIndex, attrIndex].filter(function (index) {\n return index != -1;\n });\n var index = false;\n var name = query;\n var more = '';\n var parent = this.el;\n\n if (indexes.length) {\n index = Math.min.apply(Math, _toConsumableArray(indexes));\n name = query.slice(0, index);\n more = query.slice(index);\n }\n\n if (_typeof(context) == 'object') {\n parent = context;\n }\n\n return parent.querySelectorAll('[' + this.mAttr + '=' + name + ']' + more);\n }\n }, {\n key: \"parent\",\n value: function parent(query, context) {\n var data = '[' + this.mAttr + '=' + query + ']';\n var parent = context.parentNode;\n\n while (parent && parent !== document) {\n if (parent.matches(data)) {\n return parent;\n }\n\n parent = parent.parentNode;\n }\n }\n }, {\n key: \"getData\",\n value: function getData(name, context) {\n var target = context || this.el;\n return target.getAttribute(this.mAttr + '-' + name);\n }\n }, {\n key: \"setData\",\n value: function setData(name, value, context) {\n var target = context || this.el;\n return target.setAttribute(this.mAttr + '-' + name, value);\n }\n }, {\n key: \"call\",\n value: function call(func, args, mod, id) {\n var _this3 = this;\n\n if (args && !mod) {\n mod = args;\n args = false;\n }\n\n if (this.modules[mod]) {\n if (id) {\n if (this.modules[mod][id]) {\n this.modules[mod][id][func](args);\n }\n } else {\n Object.keys(this.modules[mod]).forEach(function (id) {\n _this3.modules[mod][id][func](args);\n });\n }\n }\n }\n }, {\n key: \"on\",\n value: function on(e, mod, func, id) {\n var _this4 = this;\n\n if (this.modules[mod]) {\n if (id) {\n this.modules[mod][id].el.addEventListener(e, function (o) {\n return func(o);\n });\n } else {\n Object.keys(this.modules[mod]).forEach(function (i) {\n _this4.modules[mod][i].el.addEventListener(e, function (o) {\n return func(o);\n });\n });\n }\n }\n }\n }, {\n key: \"init\",\n value: function init() {}\n }, {\n key: \"destroy\",\n value: function destroy() {}\n }]);\n\n return _default;\n}();\n\nvar _default$1 = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.app;\n this.modules = options.modules;\n this.currentModules = {};\n this.activeModules = {};\n this.newModules = {};\n this.moduleId = 0;\n }\n\n _createClass(_default, [{\n key: \"init\",\n value: function init(app, scope) {\n var _this = this;\n\n var container = scope || document;\n var elements = container.querySelectorAll('*');\n\n if (app && !this.app) {\n this.app = app;\n }\n\n this.activeModules['app'] = {\n 'app': this.app\n };\n elements.forEach(function (el) {\n Array.from(el.attributes).forEach(function (i) {\n if (i.name.startsWith('data-module')) {\n var moduleExists = false;\n var dataName = i.name.split('-').splice(2);\n\n var moduleName = _this.toCamel(dataName);\n\n if (_this.modules[moduleName]) {\n moduleExists = true;\n } else if (_this.modules[_this.toUpper(moduleName)]) {\n moduleName = _this.toUpper(moduleName);\n moduleExists = true;\n }\n\n if (moduleExists) {\n var options = {\n el: el,\n name: moduleName,\n dataName: dataName.join('-')\n };\n var module = new _this.modules[moduleName](options);\n var id = i.value;\n\n if (!id) {\n _this.moduleId++;\n id = 'm' + _this.moduleId;\n el.setAttribute(i.name, id);\n }\n\n _this.addActiveModule(moduleName, id, module);\n\n var moduleId = moduleName + '-' + id;\n\n if (scope) {\n _this.newModules[moduleId] = module;\n } else {\n _this.currentModules[moduleId] = module;\n }\n }\n }\n });\n });\n Object.entries(this.currentModules).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n id = _ref2[0],\n module = _ref2[1];\n\n if (scope) {\n var split = id.split('-');\n var moduleName = split.shift();\n var moduleId = split.pop();\n\n _this.addActiveModule(moduleName, moduleId, module);\n } else {\n _this.initModule(module);\n }\n });\n }\n }, {\n key: \"initModule\",\n value: function initModule(module) {\n module.mInit(this.activeModules);\n module.init();\n }\n }, {\n key: \"addActiveModule\",\n value: function addActiveModule(name, id, module) {\n if (this.activeModules[name]) {\n Object.assign(this.activeModules[name], _defineProperty({}, id, module));\n } else {\n this.activeModules[name] = _defineProperty({}, id, module);\n }\n }\n }, {\n key: \"update\",\n value: function update(scope) {\n var _this2 = this;\n\n this.init(this.app, scope);\n Object.entries(this.currentModules).forEach(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n id = _ref4[0],\n module = _ref4[1];\n\n module.mUpdate(_this2.activeModules);\n });\n Object.entries(this.newModules).forEach(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 2),\n id = _ref6[0],\n module = _ref6[1];\n\n _this2.initModule(module);\n });\n Object.assign(this.currentModules, this.newModules);\n }\n }, {\n key: \"destroy\",\n value: function destroy(scope) {\n if (scope) {\n this.destroyScope(scope);\n } else {\n this.destroyModules();\n }\n }\n }, {\n key: \"destroyScope\",\n value: function destroyScope(scope) {\n var _this3 = this;\n\n var elements = scope.querySelectorAll('*');\n elements.forEach(function (el) {\n Array.from(el.attributes).forEach(function (i) {\n if (i.name.startsWith('data-module')) {\n var id = i.value;\n var dataName = i.name.split('-').splice(2);\n var moduleName = _this3.toCamel(dataName) + '-' + id;\n var moduleExists = false;\n\n if (_this3.currentModules[moduleName]) {\n moduleExists = true;\n } else if (_this3.currentModules[_this3.toUpper(moduleName)]) {\n moduleName = _this3.toUpper(moduleName);\n moduleExists = true;\n }\n\n if (moduleExists) {\n _this3.destroyModule(_this3.currentModules[moduleName]);\n\n delete _this3.currentModules[moduleName];\n }\n }\n });\n });\n this.activeModules = {};\n this.newModules = {};\n }\n }, {\n key: \"destroyModules\",\n value: function destroyModules() {\n var _this4 = this;\n\n Object.entries(this.currentModules).forEach(function (_ref7) {\n var _ref8 = _slicedToArray(_ref7, 2),\n id = _ref8[0],\n module = _ref8[1];\n\n _this4.destroyModule(module);\n });\n this.currentModules = [];\n }\n }, {\n key: \"destroyModule\",\n value: function destroyModule(module) {\n module.mDestroy();\n module.destroy();\n }\n }, {\n key: \"toCamel\",\n value: function toCamel(arr) {\n var _this5 = this;\n\n return arr.reduce(function (a, b) {\n return a + _this5.toUpper(b);\n });\n }\n }, {\n key: \"toUpper\",\n value: function toUpper(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n }\n }]);\n\n return _default;\n}();\n\nexport default _default$1;\nexport { _default as module };\n", "export {default as Example} from './modules/Example';\nexport {default as Load} from './modules/Load';\nexport {default as Scroll} from './modules/Scroll';\n", "/**\n * > When using the esBuild API, all `process.env.NODE_ENV` expressions\n * > are automatically defined to `\"production\"` if all minification\n * > options are enabled and `\"development\"` otherwise. This only happens\n * > if `process`, `process.env`, and `process.env.NODE_ENV` are not already\n * > defined. This substitution is necessary to avoid code crashing instantly\n * > (since `process` is a Node API, not a web API).\n * > \u2014 https://esbuild.github.io/api/#platform\n */\n\nconst NODE_ENV = process.env.NODE_ENV\nconst IS_MOBILE = window.matchMedia('(any-pointer:coarse)').matches\n\n// Main environment variables\nconst ENV = Object.freeze({\n // Node environment\n NAME: NODE_ENV,\n IS_PROD: NODE_ENV === 'production',\n IS_DEV: NODE_ENV === 'development',\n\n // Device\n IS_MOBILE,\n IS_DESKTOP: !IS_MOBILE,\n})\n\n// Main CSS classes used within the project\nconst CSS_CLASS = Object.freeze({\n LOADING: 'is-loading',\n LOADED: 'is-loaded',\n READY: 'is-ready',\n FONTS_LOADED: 'fonts-loaded',\n LAZY_CONTAINER: 'c-lazy',\n LAZY_LOADED: '-lazy-loaded',\n // ...\n})\n\n// Custom js events\nconst CUSTOM_EVENT = Object.freeze({\n RESIZE_END: 'loco.resizeEnd',\n // ...\n})\n\n// Fonts parameters\nconst FONT = Object.freeze({\n EAGER: [\n { family: 'Source Sans', style: 'normal', weight: 400 },\n { family: 'Source Sans', style: 'normal', weight: 700 },\n ],\n})\n\nexport {\n ENV,\n CSS_CLASS,\n CUSTOM_EVENT,\n FONT,\n}\n", "/**\n * Font Faces\n *\n * Provides utilities to facilitate interactions with the CSS Font Loading API.\n *\n * Features functions to:\n *\n * - Retrieve one or more `FontFace` instances based on a font search query.\n * - Check if a `FontFace` instance matches a font search query.\n * - Eagerly load fonts that match a font search query.\n * - Wait until fonts that match a font search query are loaded.\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API}\n */\n\n/**\n * @typedef {Object} FontFaceReference\n *\n * @property {string} family - The name used to identify the font in our CSS.\n * @property {string} [style] - The style used by the font in our CSS.\n * @property {string} [weight] - The weight used by the font in our CSS.\n */\n\nconst isFontLoadingAPIAvailable = ('fonts' in document);\n\n/**\n * Determines if the given font matches the given `FontFaceReference`.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {FontFaceReference} criterion - The object of property values to match.\n *\n * @returns {boolean}\n */\nfunction conformsToReference(font, criterion)\n{\n for (const [ key, value ] of Object.entries(criterion)) {\n switch (key) {\n case 'family': {\n if (trim(font[key]) !== value) {\n return false;\n }\n break;\n }\n\n case 'weight': {\n /**\n * Note concerning font weights:\n * Loose equality (`==`) is used to compare numeric weights,\n * a number (`400`) and a numeric string (`\"400\"`).\n * Comparison between numeric and keyword values is neglected.\n *\n * @link https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight#common_weight_name_mapping\n */\n if (font[key] != value) {\n return false;\n }\n break;\n }\n\n default: {\n if (font[key] !== value) {\n return false;\n }\n break;\n }\n }\n }\n\n return true;\n}\n\n/**\n * Determines if the given font matches the given font shorthand.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {string} criterion - The font shorthand to match.\n *\n * @returns {boolean}\n */\nfunction conformsToShorthand(font, criterion)\n{\n const family = trim(font.family);\n\n if (trim(family) === criterion) {\n return true;\n }\n\n if (\n criterion.endsWith(trim(family)) && (\n criterion.match(font.weight) ||\n criterion.match(font.style)\n )\n ) {\n return true;\n }\n\n return true;\n}\n\n/**\n * Determines if the given font matches any of the given criteria.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {FontFaceReference[]} criteria - A list of objects with property values to match.\n *\n * @returns {boolean}\n */\nfunction conformsToAnyReference(font, criteria)\n{\n for (const criterion of criteria) {\n if (conformsToReference(font, criterion)) {\n return true;\n }\n }\n\n return false;\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided `FontFaceReference`.\n *\n * @param {FontFaceReference} font\n *\n * @returns {FontFace[]}\n */\nfunction findManyByReference(search)\n{\n const found = [];\n\n for (const font of document.fonts) {\n if (conformsToReference(font, search)) {\n found.push(font);\n }\n }\n\n return found;\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided font shorthand.\n *\n * @param {string} font\n *\n * @returns {FontFace[]}\n */\nfunction findManyByShorthand(search)\n{\n const found = [];\n\n for (const font of document.fonts) {\n if (conformsToShorthand(font, search)) {\n found.push(font);\n }\n }\n\n return found;\n}\n\n/**\n * Returns the first `FontFace` from `document.fonts` that satisfies\n * the provided `FontFaceReference`.\n *\n * @param {FontFaceReference} font\n *\n * @returns {?FontFace}\n */\nfunction findOneByReference(search)\n{\n for (const font of document.fonts) {\n if (conformsToReference(font, criterion)) {\n return font;\n }\n }\n\n return null;\n}\n\n/**\n * Returns the first `FontFace` from `document.fonts` that satisfies\n * the provided font shorthand.\n *\n * Examples:\n *\n * - \"Roboto\"\n * - \"italic bold 16px Roboto\"\n *\n * @param {string} font\n *\n * @returns {?FontFace}\n */\nfunction findOneByShorthand(search)\n{\n for (const font of document.fonts) {\n if (conformsToShorthand(font, search)) {\n return font;\n }\n }\n\n return null;\n}\n\n/**\n * Returns a `FontFace` from `document.fonts` that satisfies\n * the provided query.\n *\n * @param {FontFaceReference|string} font - Either:\n * - a `FontFaceReference` object\n * - a font family name\n * - a font specification, for example \"italic bold 16px Roboto\"\n *\n * @returns {?FontFace}\n *\n * @throws {TypeError}\n */\nfunction getAny(search) {\n if (search) {\n switch (typeof search) {\n case 'string':\n return findOneByShorthand(search);\n\n case 'object':\n return findOneByReference(search);\n }\n }\n\n throw new TypeError(\n 'Expected font query to be font shorthand or font reference'\n );\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided queries.\n *\n * @param {FontFaceReference|string|(FontFaceReference|string)[]} queries\n *\n * @returns {FontFace[]}\n *\n * @throws {TypeError}\n */\nfunction getMany(queries) {\n if (!Array.isArray(queries)) {\n queries = [ queries ];\n }\n\n const found = new Set();\n\n queries.forEach((search) => {\n if (search) {\n switch (typeof search) {\n case 'string':\n found.add(...findManyByShorthand(search));\n return;\n\n case 'object':\n found.add(...findManyByReference(search));\n return;\n }\n }\n\n throw new TypeError(\n 'Expected font query to be font shorthand or font reference'\n );\n })\n\n return [ ...found ];\n}\n\n/**\n * Determines if a font face is registered.\n *\n * @param {FontFace|FontFaceReference|string} search - Either:\n * - a `FontFace` instance\n * - a `FontFaceReference` object\n * - a font family name\n * - a font specification, for example \"italic bold 16px Roboto\"\n *\n * @returns {boolean}\n */\nfunction hasAny(search) {\n if (search instanceof FontFace) {\n return document.fonts.has(search);\n }\n\n return getAny(search) != null;\n}\n\n/**\n * Eagerly load fonts.\n *\n * Most user agents only fetch and load fonts when they are first needed\n * (\"lazy loaded\"), which can result in a perceptible delay.\n *\n * This function will \"eager load\" the fonts.\n *\n * @param {(FontFace|FontFaceReference)[]} fontsToLoad - List of fonts to load.\n * @param {boolean} [debug] - If TRUE, log details to the console.\n *\n * @returns {Promise}\n */\nasync function loadFonts(fontsToLoad, debug = false)\n{\n if ((fontsToLoad.size ?? fontsToLoad.length) === 0) {\n throw new TypeError(\n 'Expected at least one font'\n );\n }\n\n return await loadFontsWithAPI([ ...fontsToLoad ], debug);\n}\n\n/**\n * Eagerly load a font using `FontFaceSet` API.\n *\n * @param {FontFace} font\n *\n * @returns {Promise}\n */\nasync function loadFontFaceWithAPI(font)\n{\n return await (font.status === 'unloaded'\n ? font.load()\n : font.loaded\n ).then((font) => font, (err) => font)\n}\n\n/**\n * Eagerly load fonts using `FontFaceSet` API.\n *\n * @param {FontFaceReference[]} fontsToLoad\n * @param {boolean} [debug]\n *\n * @returns {Promise}\n */\nasync function loadFontsWithAPI(fontsToLoad, debug = false)\n{\n debug && console.group('[loadFonts:API]', fontsToLoad.length, '/', document.fonts.size);\n\n const fontsToBeLoaded = [];\n\n for (const fontToLoad of fontsToLoad) {\n if (fontToLoad instanceof FontFace) {\n if (!document.fonts.has(fontToLoad)) {\n document.fonts.add(fontToLoad);\n }\n\n fontsToBeLoaded.push(\n loadFontFaceWithAPI(fontToLoad)\n );\n } else {\n fontsToBeLoaded.push(\n ...getMany(fontToLoad).map((font) => loadFontFaceWithAPI(font))\n );\n }\n }\n\n debug && console.groupEnd();\n\n return await Promise.all(fontsToBeLoaded);\n}\n\n/**\n * Removes quotes from the the string.\n *\n * When a `@font-face` is declared, the font family is sometimes\n * defined in quotes which end up included in the `FontFace` instance.\n *\n * @param {string} value\n *\n * @returns {string}\n */\nfunction trim(value) {\n return value.replace(/['\"]+/g, '');\n}\n\n/**\n * Returns a Promise that resolves with the specified fonts\n * when they are done loading or failed.\n *\n * @param {FontFaceReference|string|(FontFaceReference|string)[]} queries\n *\n * @returns {Promise}\n */\nasync function whenReady(queries)\n{\n const fonts = getMany(queries);\n\n return await Promise.all(fonts.map((font) => font.loaded));\n}\n\nexport {\n getAny,\n getMany,\n hasAny,\n isFontLoadingAPIAvailable,\n loadFonts,\n whenReady,\n}\n", "import { module } from 'modujs';\nimport { FONT } from '../config';\nimport { whenReady } from '../utils/fonts';\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n whenReady(FONT.EAGER).then((fonts) => this.onFontsLoaded(fonts));\n }\n\n onFontsLoaded(fonts) {\n console.log('Example: Eager Fonts Loaded!', fonts)\n }\n}\n", "function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"];\n\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n\n var _s, _e;\n\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar _default = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.defaults = {\n name: 'load',\n loadingClass: 'is-loading',\n loadedClass: 'is-loaded',\n readyClass: 'is-ready',\n transitionsPrefix: 'is-',\n transitionsHistory: true,\n enterDelay: 0,\n exitDelay: 0,\n loadedDelay: 0,\n isLoaded: false,\n isEntered: false,\n isUrl: false,\n transitionContainer: null,\n popstateIgnore: false\n };\n Object.assign(this, this.defaults, options);\n this.options = options;\n this.namespace = 'modular';\n this.html = document.documentElement;\n this.href = window.location.href;\n this.container = 'data-' + this.name + '-container';\n this.subContainer = false;\n this.prevTransition = null;\n this.loadAttributes = ['src', 'srcset', 'style', 'href'];\n this.isInserted = false;\n this.isLoading = false;\n this.enterTimeout = false;\n this.controller = new AbortController();\n this.classContainer = this.html;\n this.isChrome = navigator.userAgent.indexOf(\"Chrome\") != -1 ? true : false;\n this.init();\n }\n\n _createClass(_default, [{\n key: \"init\",\n value: function init() {\n var _this = this;\n\n window.addEventListener('popstate', function (e) {\n return _this.checkState(e);\n }, false);\n this.html.addEventListener('click', function (e) {\n return _this.checkClick(e);\n }, false);\n this.loadEls(document);\n }\n }, {\n key: \"checkClick\",\n value: function checkClick(e) {\n if (!e.ctrlKey && !e.metaKey) {\n var target = e.target;\n\n while (target && target !== document) {\n if (target.matches('a') && target.getAttribute('download') == null) {\n var href = target.getAttribute('href');\n\n if (!href.startsWith('#') && !href.startsWith('mailto:') && !href.startsWith('tel:')) {\n e.preventDefault();\n this.reset();\n this.getClickOptions(target);\n }\n\n break;\n }\n\n target = target.parentNode;\n }\n }\n }\n }, {\n key: \"checkState\",\n value: function checkState() {\n if (typeof this.popstateIgnore === 'string' && window.location.href.indexOf(this.popstateIgnore) > -1) {\n return;\n }\n\n this.reset();\n this.getStateOptions();\n }\n }, {\n key: \"reset\",\n value: function reset() {\n if (this.isLoading) {\n this.controller.abort();\n this.isLoading = false;\n this.controller = new AbortController();\n }\n\n window.clearTimeout(this.enterTimeout);\n\n if (this.isInserted) {\n this.removeContainer();\n }\n\n this.classContainer = this.html;\n Object.assign(this, this.defaults, this.options);\n }\n }, {\n key: \"getClickOptions\",\n value: function getClickOptions(link) {\n this.transition = link.getAttribute('data-' + this.name);\n this.isUrl = link.getAttribute('data-' + this.name + '-url');\n var href = link.getAttribute('href');\n var target = link.getAttribute('target');\n\n if (target == '_blank') {\n window.open(href, '_blank');\n return;\n }\n\n if (this.transition == 'false') {\n window.location = href;\n return;\n }\n\n this.setOptions(href, true);\n }\n }, {\n key: \"getStateOptions\",\n value: function getStateOptions() {\n if (this.transitionsHistory) {\n this.transition = history.state;\n } else {\n this.transition = false;\n }\n\n var href = window.location.href;\n this.setOptions(href);\n }\n }, {\n key: \"goTo\",\n value: function goTo(href, transition, isUrl) {\n this.reset();\n this.transition = transition;\n this.isUrl = isUrl;\n this.setOptions(href, true);\n }\n }, {\n key: \"setOptions\",\n value: function setOptions(href, push) {\n var container = '[' + this.container + ']';\n var oldContainer;\n\n if (this.transition && this.transition != 'true') {\n this.transitionContainer = '[' + this.container + '=\"' + this.transition + '\"]';\n this.loadingClass = this.transitions[this.transition].loadingClass || this.loadingClass;\n this.loadedClass = this.transitions[this.transition].loadedClass || this.loadedClass;\n this.readyClass = this.transitions[this.transition].readyClass || this.readyClass;\n this.transitionsPrefix = this.transitions[this.transition].transitionsPrefix || this.transitionsPrefix;\n this.enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay;\n this.exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay;\n this.loadedDelay = this.transitions[this.transition].loadedDelay || this.loadedDelay;\n oldContainer = document.querySelector(this.transitionContainer);\n }\n\n if (oldContainer) {\n container = this.transitionContainer;\n this.oldContainer = oldContainer;\n this.classContainer = this.oldContainer.parentNode;\n\n if (!this.subContainer) {\n history.replaceState(this.transition, null, this.href);\n }\n\n this.subContainer = true;\n } else {\n this.oldContainer = document.querySelector(container);\n\n if (this.subContainer) {\n history.replaceState(this.prevTransition, null, this.href);\n }\n\n this.subContainer = false;\n }\n\n this.href = href;\n this.parentContainer = this.oldContainer.parentNode;\n\n if (this.isUrl === '' || this.isUrl != null && this.isUrl != 'false' && this.isUrl != false) {\n history.pushState(this.transition, null, href);\n } else {\n this.oldContainer.classList.add('is-old');\n this.setLoading();\n this.startEnterDelay();\n this.loadHref(href, container, push);\n }\n }\n }, {\n key: \"setLoading\",\n value: function setLoading() {\n this.classContainer.classList.remove(this.loadedClass, this.readyClass);\n this.classContainer.classList.add(this.loadingClass);\n this.classContainer.classList.remove(this.transitionsPrefix + this.prevTransition);\n\n if (this.transition) {\n this.classContainer.classList.add(this.transitionsPrefix + this.transition);\n }\n\n if (!this.subContainer) {\n this.prevTransition = this.transition;\n }\n\n var loadingEvent = new Event(this.namespace + 'loading');\n window.dispatchEvent(loadingEvent);\n }\n }, {\n key: \"startEnterDelay\",\n value: function startEnterDelay() {\n var _this2 = this;\n\n this.enterTimeout = window.setTimeout(function () {\n _this2.isEntered = true;\n\n if (_this2.isLoaded) {\n _this2.transitionContainers();\n }\n }, this.enterDelay);\n }\n }, {\n key: \"loadHref\",\n value: function loadHref(href, container, push) {\n var _this3 = this;\n\n this.isLoading = true;\n var signal = this.controller.signal;\n fetch(href, {\n signal: signal\n }).then(function (response) {\n return response.text();\n }).then(function (data) {\n if (push) {\n history.pushState(_this3.transition, null, href);\n }\n\n var parser = new DOMParser();\n _this3.data = parser.parseFromString(data, 'text/html');\n _this3.newContainer = _this3.data.querySelector(container);\n\n _this3.newContainer.classList.add('is-new');\n\n _this3.parentNewContainer = _this3.newContainer.parentNode;\n\n _this3.hideContainer();\n\n _this3.parentContainer.insertBefore(_this3.newContainer, _this3.oldContainer);\n\n _this3.isInserted = true;\n\n _this3.setSvgs();\n\n _this3.isLoaded = true;\n\n if (_this3.isEntered) {\n _this3.transitionContainers();\n }\n\n _this3.loadEls(_this3.newContainer);\n\n _this3.isLoading = false;\n })[\"catch\"](function (err) {\n window.location = href;\n });\n }\n }, {\n key: \"transitionContainers\",\n value: function transitionContainers() {\n var _this4 = this;\n\n this.setAttributes();\n this.showContainer();\n this.setLoaded();\n setTimeout(function () {\n _this4.removeContainer();\n\n _this4.setReady();\n }, this.exitDelay);\n }\n }, {\n key: \"setSvgs\",\n value: function setSvgs() {\n if (this.isChrome) {\n var svgs = this.newContainer.querySelectorAll('use');\n\n if (svgs.length) {\n svgs.forEach(function (svg) {\n var xhref = svg.getAttribute('xlink:href');\n\n if (xhref) {\n svg.parentNode.innerHTML = '';\n } else {\n var href = svg.getAttribute('href');\n if (href) svg.parentNode.innerHTML = '';\n }\n });\n }\n }\n }\n }, {\n key: \"setAttributes\",\n value: function setAttributes() {\n var _this5 = this;\n\n var title = this.data.getElementsByTagName('title')[0];\n var newDesc = this.data.head.querySelector('meta[name=\"description\"]');\n var oldDesc = document.head.querySelector('meta[name=\"description\"]');\n var container;\n var newContainer;\n\n if (this.subContainer) {\n newContainer = this.parentNewContainer;\n container = document.querySelector(this.transitionContainer).parentNode;\n } else {\n newContainer = this.data.querySelector('html');\n container = document.querySelector('html');\n }\n\n var datas = Object.assign({}, newContainer.dataset);\n if (title) document.title = title.innerText;\n if (oldDesc && newDesc) oldDesc.setAttribute('content', newDesc.getAttribute('content'));\n\n if (datas) {\n Object.entries(datas).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n key = _ref2[0],\n val = _ref2[1];\n\n container.setAttribute('data-' + _this5.toDash(key), val);\n });\n }\n }\n }, {\n key: \"toDash\",\n value: function toDash(str) {\n return str.split(/(?=[A-Z])/).join('-').toLowerCase();\n }\n }, {\n key: \"hideContainer\",\n value: function hideContainer() {\n this.newContainer.style.visibility = 'hidden';\n this.newContainer.style.height = 0;\n this.newContainer.style.overflow = 'hidden';\n }\n }, {\n key: \"showContainer\",\n value: function showContainer() {\n this.newContainer.style.visibility = '';\n this.newContainer.style.height = '';\n this.newContainer.style.overflow = '';\n }\n }, {\n key: \"loadEls\",\n value: function loadEls(container) {\n var _this6 = this;\n\n var promises = [];\n this.loadAttributes.forEach(function (attr) {\n var data = 'data-' + _this6.name + '-' + attr;\n var els = container.querySelectorAll('[' + data + ']');\n\n if (els.length) {\n els.forEach(function (el) {\n var elData = el.getAttribute(data);\n el.setAttribute(attr, elData);\n\n if (attr == 'src' || attr == 'srcset') {\n var promise = new Promise(function (resolve) {\n el.onload = function () {\n return resolve(el);\n };\n });\n promises.push(promise);\n }\n });\n }\n });\n Promise.all(promises).then(function (val) {\n var imagesEvent = new Event(_this6.namespace + 'images');\n window.dispatchEvent(imagesEvent);\n });\n }\n }, {\n key: \"setLoaded\",\n value: function setLoaded() {\n var _this7 = this;\n\n this.classContainer.classList.remove(this.loadingClass);\n setTimeout(function () {\n _this7.classContainer.classList.add(_this7.loadedClass);\n }, this.loadedDelay);\n var loadedEvent = new Event(this.namespace + 'loaded');\n window.dispatchEvent(loadedEvent);\n }\n }, {\n key: \"removeContainer\",\n value: function removeContainer() {\n this.parentContainer.removeChild(this.oldContainer);\n this.newContainer.classList.remove('is-new');\n this.isInserted = false;\n }\n }, {\n key: \"setReady\",\n value: function setReady() {\n this.classContainer.classList.add(this.readyClass);\n var readyEvent = new Event(this.namespace + 'ready');\n window.dispatchEvent(readyEvent);\n }\n }, {\n key: \"on\",\n value: function on(event, func) {\n var _this8 = this;\n\n window.addEventListener(this.namespace + event, function () {\n switch (event) {\n case 'loading':\n return func(_this8.transition, _this8.oldContainer);\n\n case 'loaded':\n return func(_this8.transition, _this8.oldContainer, _this8.newContainer);\n\n case 'ready':\n return func(_this8.transition, _this8.newContainer);\n\n default:\n return func();\n }\n }, false);\n }\n }]);\n\n return _default;\n}();\n\nexport default _default;\n", "import { module } from 'modujs';\nimport modularLoad from 'modularload';\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n const load = new modularLoad({\n enterDelay: 0,\n transitions: {\n customTransition: {}\n }\n });\n\n load.on('loaded', (transition, oldContainer, newContainer) => {\n this.call('destroy', oldContainer, 'app');\n this.call('update', newContainer, 'app');\n });\n }\n}\n", "import { CSS_CLASS } from '../config'\n\n/**\n * Get an image meta data\n *\n * @param {HTMLImageElement} $img - The image element.\n * @return {object} The given image meta data\n */\n\nconst getImageMetadata = $img => ({\n url: $img.src,\n width: $img.naturalWidth,\n height: $img.naturalHeight,\n ratio: $img.naturalWidth / $img.naturalHeight,\n})\n\n\n/**\n * Load the given image.\n *\n * @param {string} url - The URI to lazy load into $el.\n * @param {object} options - An object of options\n * @return {void}\n */\n\nconst loadImage = (url, options = {}) => {\n return new Promise((resolve, reject) => {\n const $img = new Image()\n\n if (options.crossOrigin) {\n $img.crossOrigin = options.crossOrigin\n }\n\n const loadCallback = () => {\n resolve({\n element: $img,\n ...getImageMetadata($img),\n })\n }\n\n if($img.decode) {\n $img.src = url\n $img.decode().then(loadCallback).catch(e => {\n reject(e)\n })\n } else {\n $img.onload = loadCallback\n $img.onerror = (e) => {\n reject(e)\n }\n $img.src = url\n }\n })\n}\n\n\n/**\n * Lazy load the given image.\n *\n * @param {HTMLImageElement} $el - The image element.\n * @param {?string} url - The URI to lazy load into $el.\n * If falsey, the value of the `data-src` attribute on $el will be used as the URI.\n * @param {?function} callback - A function to call when the image is loaded.\n * @return {void}\n */\n\nconst LAZY_LOADED_IMAGES = []\nconst lazyLoadImage = async ($el, url, callback) => {\n let src = url ? url : $el.dataset.src\n\n let loadedImage = LAZY_LOADED_IMAGES.find(image => image.url === src)\n\n if (!loadedImage) {\n loadedImage = await loadImage(src)\n\n if (!loadedImage.url) {\n return\n }\n\n LAZY_LOADED_IMAGES.push(loadedImage)\n }\n\n if($el.src === src) {\n return\n }\n\n if ($el.tagName === 'IMG') {\n $el.src = loadedImage.url\n } else {\n $el.style.backgroundImage = `url(${loadedImage.url})`\n }\n\n requestAnimationFrame(() => {\n let lazyParent = $el.closest(`.${CSS_CLASS.LAZY_CONTAINER}`)\n\n if(lazyParent) {\n lazyParent.classList.add(CSS_CLASS.LAZY_LOADED)\n lazyParent.style.backgroundImage = ''\n }\n\n $el.classList.add(CSS_CLASS.LAZY_LOADED)\n\n callback?.()\n })\n}\n\n\nexport {\n getImageMetadata,\n loadImage,\n lazyLoadImage\n}\n", "// Clamp a value between a minimum and maximum value\r\nexport function clamp(min, input, max) {\r\n return Math.max(min, Math.min(input, max))\r\n}\r\n\r\n// Truncate a floating-point number to a specified number of decimal places\r\nexport function truncate(value, decimals = 0) {\r\n return parseFloat(value.toFixed(decimals))\r\n}\r\n\r\n// Linearly interpolate between two values using an amount (0 <= t <= 1)\r\nexport function lerp(x, y, t) {\r\n return (1 - t) * x + t * y\r\n}\r\n\r\n// http://www.rorydriscoll.com/2016/03/07/frame-rate-independent-damping-using-lerp/\r\nexport function damp(x, y, lambda, dt) {\r\n return lerp(x, y, 1 - Math.exp(-lambda * dt))\r\n}\r\n\r\n// Calculate the modulo of the dividend and divisor while keeping the result within the same sign as the divisor\r\n// https://anguscroll.com/just/just-modulo\r\nexport function modulo(n, d) {\r\n return ((n % d) + d) % d\r\n}\r\n", "import { clamp, damp } from './maths'\r\n\r\n// Animate class to handle value animations with lerping or easing\r\nexport class Animate {\r\n // Advance the animation by the given delta time\r\n advance(deltaTime) {\r\n if (!this.isRunning) return\r\n\r\n let completed = false\r\n\r\n if (this.lerp) {\r\n this.value = damp(this.value, this.to, this.lerp * 60, deltaTime)\r\n if (Math.round(this.value) === this.to) {\r\n this.value = this.to\r\n completed = true\r\n }\r\n } else {\r\n this.currentTime += deltaTime\r\n const linearProgress = clamp(0, this.currentTime / this.duration, 1)\r\n\r\n completed = linearProgress >= 1\r\n const easedProgress = completed ? 1 : this.easing(linearProgress)\r\n this.value = this.from + (this.to - this.from) * easedProgress\r\n }\r\n\r\n // Call the onUpdate callback with the current value and completed status\r\n\r\n this.onUpdate?.(this.value, completed)\r\n\r\n if (completed) {\r\n this.stop()\r\n }\r\n }\r\n\r\n // Stop the animation\r\n stop() {\r\n this.isRunning = false\r\n }\r\n\r\n // Set up the animation from a starting value to an ending value\r\n // with optional parameters for lerping, duration, easing, and onUpdate callback\r\n fromTo(\r\n from,\r\n to,\r\n { lerp = 0.1, duration = 1, easing = (t) => t, onStart, onUpdate }\r\n ) {\r\n this.from = this.value = from\r\n this.to = to\r\n this.lerp = lerp\r\n this.duration = duration\r\n this.easing = easing\r\n this.currentTime = 0\r\n this.isRunning = true\r\n\r\n onStart?.()\r\n this.onUpdate = onUpdate\r\n }\r\n}\r\n", "import { debounce } from './debounce'\r\n\r\nexport class Dimensions {\r\n constructor({ wrapper, content, autoResize = true } = {}) {\r\n this.wrapper = wrapper\r\n this.content = content\r\n\r\n if (autoResize) {\r\n const resize = debounce(this.resize, 250)\r\n\r\n if (this.wrapper !== window) {\r\n this.wrapperResizeObserver = new ResizeObserver(resize)\r\n this.wrapperResizeObserver.observe(this.wrapper)\r\n }\r\n\r\n this.contentResizeObserver = new ResizeObserver(resize)\r\n this.contentResizeObserver.observe(this.content)\r\n }\r\n\r\n this.resize()\r\n }\r\n\r\n destroy() {\r\n this.wrapperResizeObserver?.disconnect()\r\n this.contentResizeObserver?.disconnect()\r\n }\r\n\r\n resize = () => {\r\n this.onWrapperResize()\r\n this.onContentResize()\r\n }\r\n\r\n onWrapperResize = () => {\r\n if (this.wrapper === window) {\r\n this.width = window.innerWidth\r\n this.height = window.innerHeight\r\n } else {\r\n this.width = this.wrapper.clientWidth\r\n this.height = this.wrapper.clientHeight\r\n }\r\n }\r\n\r\n onContentResize = () => {\r\n this.scrollHeight = this.content.scrollHeight\r\n this.scrollWidth = this.content.scrollWidth\r\n }\r\n\r\n get limit() {\r\n return {\r\n x: this.scrollWidth - this.width,\r\n y: this.scrollHeight - this.height,\r\n }\r\n }\r\n}\r\n", "export function debounce(callback, delay) {\r\n let timer\r\n return function () {\r\n let args = arguments\r\n let context = this\r\n clearTimeout(timer)\r\n timer = setTimeout(function () {\r\n callback.apply(context, args)\r\n }, delay)\r\n }\r\n}\r\n", "export class Emitter {\r\n constructor() {\r\n this.events = {}\r\n }\r\n\r\n emit(event, ...args) {\r\n let callbacks = this.events[event] || []\r\n for (let i = 0, length = callbacks.length; i < length; i++) {\r\n callbacks[i](...args)\r\n }\r\n }\r\n\r\n on(event, cb) {\r\n // Add the callback to the event's callback list, or create a new list with the callback\r\n this.events[event]?.push(cb) || (this.events[event] = [cb])\r\n\r\n // Return an unsubscribe function\r\n return () => {\r\n this.events[event] = this.events[event]?.filter((i) => cb !== i)\r\n }\r\n }\r\n\r\n off(event, callback) {\r\n this.events[event] = this.events[event]?.filter((i) => callback !== i)\r\n }\r\n\r\n destroy() {\r\n this.events = {}\r\n }\r\n}\r\n", "import { Emitter } from './emitter'\r\nimport { clamp } from './maths'\r\n\r\nexport class VirtualScroll {\r\n constructor(\r\n element,\r\n { wheelMultiplier = 1, touchMultiplier = 2, normalizeWheel = false }\r\n ) {\r\n this.element = element\r\n this.wheelMultiplier = wheelMultiplier\r\n this.touchMultiplier = touchMultiplier\r\n this.normalizeWheel = normalizeWheel\r\n\r\n this.touchStart = {\r\n x: null,\r\n y: null,\r\n }\r\n\r\n this.emitter = new Emitter()\r\n\r\n this.element.addEventListener('wheel', this.onWheel, { passive: false })\r\n this.element.addEventListener('touchstart', this.onTouchStart, {\r\n passive: false,\r\n })\r\n this.element.addEventListener('touchmove', this.onTouchMove, {\r\n passive: false,\r\n })\r\n this.element.addEventListener('touchend', this.onTouchEnd, {\r\n passive: false,\r\n })\r\n }\r\n\r\n // Add an event listener for the given event and callback\r\n on(event, callback) {\r\n return this.emitter.on(event, callback)\r\n }\r\n\r\n // Remove all event listeners and clean up\r\n destroy() {\r\n this.emitter.destroy()\r\n\r\n this.element.removeEventListener('wheel', this.onWheel, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchstart', this.onTouchStart, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchmove', this.onTouchMove, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchend', this.onTouchEnd, {\r\n passive: false,\r\n })\r\n }\r\n\r\n // Event handler for 'touchstart' event\r\n onTouchStart = (event) => {\r\n const { clientX, clientY } = event.targetTouches\r\n ? event.targetTouches[0]\r\n : event\r\n\r\n this.touchStart.x = clientX\r\n this.touchStart.y = clientY\r\n\r\n this.lastDelta = {\r\n x: 0,\r\n y: 0,\r\n }\r\n }\r\n\r\n // Event handler for 'touchmove' event\r\n onTouchMove = (event) => {\r\n const { clientX, clientY } = event.targetTouches\r\n ? event.targetTouches[0]\r\n : event\r\n\r\n const deltaX = -(clientX - this.touchStart.x) * this.touchMultiplier\r\n const deltaY = -(clientY - this.touchStart.y) * this.touchMultiplier\r\n\r\n this.touchStart.x = clientX\r\n this.touchStart.y = clientY\r\n\r\n this.lastDelta = {\r\n x: deltaX,\r\n y: deltaY,\r\n }\r\n\r\n this.emitter.emit('scroll', {\r\n deltaX,\r\n deltaY,\r\n event,\r\n })\r\n }\r\n\r\n onTouchEnd = (event) => {\r\n this.emitter.emit('scroll', {\r\n deltaX: this.lastDelta.x,\r\n deltaY: this.lastDelta.y,\r\n event,\r\n })\r\n }\r\n\r\n // Event handler for 'wheel' event\r\n onWheel = (event) => {\r\n let { deltaX, deltaY } = event\r\n\r\n if (this.normalizeWheel) {\r\n deltaX = clamp(-100, deltaX, 100)\r\n deltaY = clamp(-100, deltaY, 100)\r\n }\r\n\r\n deltaX *= this.wheelMultiplier\r\n deltaY *= this.wheelMultiplier\r\n\r\n this.emitter.emit('scroll', { deltaX, deltaY, event })\r\n }\r\n}\r\n", "import { version } from '../package.json'\r\nimport { Animate } from './animate'\r\nimport { Dimensions } from './dimensions'\r\nimport { Emitter } from './emitter'\r\nimport { clamp, modulo } from './maths'\r\nimport { VirtualScroll } from './virtual-scroll'\r\n\r\n// Technical explanation\r\n// - listen to 'wheel' events\r\n// - prevent 'wheel' event to prevent scroll\r\n// - normalize wheel delta\r\n// - add delta to targetScroll\r\n// - animate scroll to targetScroll (smooth context)\r\n// - if animation is not running, listen to 'scroll' events (native context)\r\n\r\nexport default class Lenis {\r\n // isScrolling = true when scroll is animating\r\n // isStopped = true if user should not be able to scroll - enable/disable programmatically\r\n // isSmooth = true if scroll should be animated\r\n // isLocked = same as isStopped but enabled/disabled when scroll reaches target\r\n\r\n /**\r\n * @typedef {(t: number) => number} EasingFunction\r\n * @typedef {'vertical' | 'horizontal'} Orientation\r\n * @typedef {'vertical' | 'horizontal' | 'both'} GestureOrientation\r\n *\r\n * @typedef LenisOptions\r\n * @property {Window | HTMLElement} [wrapper]\r\n * @property {HTMLElement} [content]\r\n * @property {Window | HTMLElement} [wheelEventsTarget] // deprecated\r\n * @property {Window | HTMLElement} [eventsTarget]\r\n * @property {boolean} [smoothWheel]\r\n * @property {boolean} [smoothTouch]\r\n * @property {boolean} [syncTouch]\r\n * @property {number} [syncTouchLerp]\r\n * @property {number} [__iosNoInertiaSyncTouchLerp]\r\n * @property {number} [touchInertiaMultiplier]\r\n * @property {number} [duration]\r\n * @property {EasingFunction} [easing]\r\n * @property {number} [lerp]\r\n * @property {boolean} [infinite]\r\n * @property {Orientation} [orientation]\r\n * @property {GestureOrientation} [gestureOrientation]\r\n * @property {number} [touchMultiplier]\r\n * @property {number} [wheelMultiplier]\r\n * @property {boolean} [normalizeWheel]\r\n * @property {boolean} [autoResize]\r\n *\r\n * @param {LenisOptions}\r\n */\r\n constructor({\r\n wrapper = window,\r\n content = document.documentElement,\r\n wheelEventsTarget = wrapper, // deprecated\r\n eventsTarget = wheelEventsTarget,\r\n smoothWheel = true,\r\n smoothTouch = false,\r\n syncTouch = false,\r\n syncTouchLerp = 0.1,\r\n __iosNoInertiaSyncTouchLerp = 0.4, // should be 1 but had to leave 0.4 for iOS (testing purpose)\r\n touchInertiaMultiplier = 35,\r\n duration, // in seconds\r\n easing = (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),\r\n lerp = !duration && 0.1,\r\n infinite = false,\r\n orientation = 'vertical', // vertical, horizontal\r\n gestureOrientation = 'vertical', // vertical, horizontal, both\r\n touchMultiplier = 1,\r\n wheelMultiplier = 1,\r\n normalizeWheel = false,\r\n autoResize = true,\r\n } = {}) {\r\n window.lenisVersion = version\r\n\r\n // if wrapper is html or body, fallback to window\r\n if (wrapper === document.documentElement || wrapper === document.body) {\r\n wrapper = window\r\n }\r\n\r\n this.options = {\r\n wrapper,\r\n content,\r\n wheelEventsTarget,\r\n eventsTarget,\r\n smoothWheel,\r\n smoothTouch,\r\n syncTouch,\r\n syncTouchLerp,\r\n __iosNoInertiaSyncTouchLerp,\r\n touchInertiaMultiplier,\r\n duration,\r\n easing,\r\n lerp,\r\n infinite,\r\n gestureOrientation,\r\n orientation,\r\n touchMultiplier,\r\n wheelMultiplier,\r\n normalizeWheel,\r\n autoResize,\r\n }\r\n\r\n this.animate = new Animate()\r\n this.emitter = new Emitter()\r\n this.dimensions = new Dimensions({ wrapper, content, autoResize })\r\n this.toggleClass('lenis', true)\r\n\r\n this.velocity = 0\r\n this.isLocked = false\r\n this.isStopped = false\r\n this.isSmooth = syncTouch || smoothWheel || smoothTouch\r\n this.isScrolling = false\r\n this.targetScroll = this.animatedScroll = this.actualScroll\r\n\r\n this.options.wrapper.addEventListener('scroll', this.onScroll, {\r\n passive: false,\r\n })\r\n\r\n this.virtualScroll = new VirtualScroll(eventsTarget, {\r\n touchMultiplier,\r\n wheelMultiplier,\r\n normalizeWheel,\r\n })\r\n this.virtualScroll.on('scroll', this.onVirtualScroll)\r\n }\r\n\r\n destroy() {\r\n this.emitter.destroy()\r\n\r\n this.options.wrapper.removeEventListener('scroll', this.onScroll, {\r\n passive: false,\r\n })\r\n\r\n this.virtualScroll.destroy()\r\n this.dimensions.destroy()\r\n\r\n this.toggleClass('lenis', false)\r\n this.toggleClass('lenis-smooth', false)\r\n this.toggleClass('lenis-scrolling', false)\r\n this.toggleClass('lenis-stopped', false)\r\n this.toggleClass('lenis-locked', false)\r\n }\r\n\r\n on(event, callback) {\r\n return this.emitter.on(event, callback)\r\n }\r\n\r\n off(event, callback) {\r\n return this.emitter.off(event, callback)\r\n }\r\n\r\n setScroll(scroll) {\r\n // apply scroll value immediately\r\n if (this.isHorizontal) {\r\n this.rootElement.scrollLeft = scroll\r\n } else {\r\n this.rootElement.scrollTop = scroll\r\n }\r\n }\r\n\r\n onVirtualScroll = ({ deltaX, deltaY, event }) => {\r\n // keep zoom feature\r\n if (event.ctrlKey) return\r\n\r\n const isTouch = event.type.includes('touch')\r\n const isWheel = event.type.includes('wheel')\r\n\r\n if (\r\n (this.options.gestureOrientation === 'both' &&\r\n deltaX === 0 &&\r\n deltaY === 0) || // \"touchend\" events prevents \"click\"\r\n (this.options.gestureOrientation === 'vertical' && deltaY === 0) || // trackpad previous/next page gesture\r\n (this.options.gestureOrientation === 'horizontal' && deltaX === 0) ||\r\n (isTouch &&\r\n this.options.gestureOrientation === 'vertical' &&\r\n this.scroll === 0 &&\r\n !this.options.infinite &&\r\n deltaY <= 0) // touch pull to refresh\r\n )\r\n return\r\n\r\n // catch if scrolling on nested scroll elements\r\n let composedPath = event.composedPath()\r\n composedPath = composedPath.slice(0, composedPath.indexOf(this.rootElement)) // remove parents elements\r\n\r\n if (\r\n !!composedPath.find(\r\n (node) =>\r\n node.hasAttribute?.('data-lenis-prevent') ||\r\n (isTouch && node.hasAttribute?.('data-lenis-prevent-touch')) ||\r\n (isWheel && node.hasAttribute?.('data-lenis-prevent-wheel')) ||\r\n node.classList?.contains('lenis') // nested lenis instance\r\n )\r\n )\r\n return\r\n\r\n if (this.isStopped || this.isLocked) {\r\n event.preventDefault()\r\n return\r\n }\r\n\r\n this.isSmooth =\r\n ((this.options.smoothTouch || this.options.syncTouch) && isTouch) ||\r\n (this.options.smoothWheel && isWheel)\r\n\r\n if (!this.isSmooth) {\r\n this.isScrolling = false\r\n this.animate.stop()\r\n return\r\n }\r\n\r\n event.preventDefault()\r\n\r\n let delta = deltaY\r\n if (this.options.gestureOrientation === 'both') {\r\n delta = Math.abs(deltaY) > Math.abs(deltaX) ? deltaY : deltaX\r\n } else if (this.options.gestureOrientation === 'horizontal') {\r\n delta = deltaX\r\n }\r\n\r\n const syncTouch = isTouch && this.options.syncTouch\r\n const isTouchEnd = isTouch && event.type === 'touchend'\r\n const hasTouchInertia = isTouchEnd && Math.abs(delta) > 1\r\n if (hasTouchInertia) {\r\n delta = this.velocity * this.options.touchInertiaMultiplier\r\n }\r\n\r\n this.scrollTo(this.targetScroll + delta, {\r\n programmatic: false,\r\n ...(syncTouch && {\r\n lerp: hasTouchInertia\r\n ? this.syncTouchLerp\r\n : this.options.__iosNoInertiaSyncTouchLerp,\r\n }),\r\n })\r\n }\r\n\r\n resize() {\r\n this.dimensions.resize()\r\n }\r\n\r\n emit() {\r\n this.emitter.emit('scroll', this)\r\n }\r\n\r\n onScroll = () => {\r\n if (!this.isScrolling) {\r\n const lastScroll = this.animatedScroll\r\n this.animatedScroll = this.targetScroll = this.actualScroll\r\n this.velocity = 0\r\n this.direction = Math.sign(this.animatedScroll - lastScroll)\r\n this.emit()\r\n }\r\n }\r\n\r\n reset() {\r\n this.isLocked = false\r\n this.isScrolling = false\r\n this.velocity = 0\r\n this.animate.stop()\r\n }\r\n\r\n start() {\r\n this.isStopped = false\r\n\r\n this.reset()\r\n }\r\n\r\n stop() {\r\n this.isStopped = true\r\n this.animate.stop()\r\n\r\n this.reset()\r\n }\r\n\r\n raf(time) {\r\n const deltaTime = time - (this.time || time)\r\n this.time = time\r\n\r\n this.animate.advance(deltaTime * 0.001)\r\n }\r\n\r\n scrollTo(\r\n target,\r\n {\r\n offset = 0,\r\n immediate = false,\r\n lock = false,\r\n duration = this.options.duration,\r\n easing = this.options.easing,\r\n lerp = !duration && this.options.lerp,\r\n onComplete = null,\r\n force = false, // scroll even if stopped\r\n programmatic = true, // called from outside of the class\r\n } = {}\r\n ) {\r\n if ((this.isStopped || this.isLocked) && !force) return\r\n\r\n // keywords\r\n if (['top', 'left', 'start'].includes(target)) {\r\n target = 0\r\n } else if (['bottom', 'right', 'end'].includes(target)) {\r\n target = this.limit\r\n } else {\r\n let node\r\n\r\n if (typeof target === 'string') {\r\n // CSS selector\r\n node = document.querySelector(target)\r\n } else if (target?.nodeType) {\r\n // Node element\r\n node = target\r\n }\r\n\r\n if (node) {\r\n if (this.options.wrapper !== window) {\r\n // nested scroll offset correction\r\n const wrapperRect = this.options.wrapper.getBoundingClientRect()\r\n offset -= this.isHorizontal ? wrapperRect.left : wrapperRect.top\r\n }\r\n\r\n const rect = node.getBoundingClientRect()\r\n\r\n target =\r\n (this.isHorizontal ? rect.left : rect.top) + this.animatedScroll\r\n }\r\n }\r\n\r\n if (typeof target !== 'number') return\r\n\r\n target += offset\r\n target = Math.round(target)\r\n\r\n if (this.options.infinite) {\r\n if (programmatic) {\r\n this.targetScroll = this.animatedScroll = this.scroll\r\n }\r\n } else {\r\n target = clamp(0, target, this.limit)\r\n }\r\n\r\n if (immediate) {\r\n this.animatedScroll = this.targetScroll = target\r\n this.setScroll(this.scroll)\r\n this.reset()\r\n onComplete?.(this)\r\n return\r\n }\r\n\r\n if (!programmatic) {\r\n if (target === this.targetScroll) return\r\n\r\n this.targetScroll = target\r\n }\r\n\r\n this.animate.fromTo(this.animatedScroll, target, {\r\n duration,\r\n easing,\r\n lerp,\r\n onStart: () => {\r\n // started\r\n if (lock) this.isLocked = true\r\n this.isScrolling = true\r\n },\r\n onUpdate: (value, completed) => {\r\n this.isScrolling = true\r\n\r\n // updated\r\n this.velocity = value - this.animatedScroll\r\n this.direction = Math.sign(this.velocity)\r\n\r\n this.animatedScroll = value\r\n this.setScroll(this.scroll)\r\n\r\n if (programmatic) {\r\n // wheel during programmatic should stop it\r\n this.targetScroll = value\r\n }\r\n\r\n if (!completed) this.emit()\r\n\r\n if (completed) {\r\n // avoid emitting twice (onScroll)\r\n requestAnimationFrame(() => {\r\n this.reset()\r\n this.emit()\r\n onComplete?.(this)\r\n })\r\n }\r\n },\r\n })\r\n }\r\n\r\n get rootElement() {\r\n return this.options.wrapper === window\r\n ? this.options.content\r\n : this.options.wrapper\r\n }\r\n\r\n get limit() {\r\n return this.dimensions.limit[this.isHorizontal ? 'x' : 'y']\r\n }\r\n\r\n get isHorizontal() {\r\n return this.options.orientation === 'horizontal'\r\n }\r\n\r\n get actualScroll() {\r\n // value browser takes into account\r\n return this.isHorizontal\r\n ? this.rootElement.scrollLeft\r\n : this.rootElement.scrollTop\r\n }\r\n\r\n get scroll() {\r\n return this.options.infinite\r\n ? modulo(this.animatedScroll, this.limit)\r\n : this.animatedScroll\r\n }\r\n\r\n get progress() {\r\n // avoid progress to be NaN\r\n return this.limit === 0 ? 1 : this.scroll / this.limit\r\n }\r\n\r\n get isSmooth() {\r\n return this.__isSmooth\r\n }\r\n\r\n set isSmooth(value) {\r\n if (this.__isSmooth !== value) {\r\n this.__isSmooth = value\r\n this.toggleClass('lenis-smooth', value)\r\n }\r\n }\r\n\r\n get isScrolling() {\r\n return this.__isScrolling\r\n }\r\n\r\n set isScrolling(value) {\r\n if (this.__isScrolling !== value) {\r\n this.__isScrolling = value\r\n this.toggleClass('lenis-scrolling', value)\r\n }\r\n }\r\n\r\n get isStopped() {\r\n return this.__isStopped\r\n }\r\n\r\n set isStopped(value) {\r\n if (this.__isStopped !== value) {\r\n this.__isStopped = value\r\n this.toggleClass('lenis-stopped', value)\r\n }\r\n }\r\n\r\n get isLocked() {\r\n return this.__isLocked\r\n }\r\n\r\n set isLocked(value) {\r\n if (this.__isLocked !== value) {\r\n this.__isLocked = value\r\n this.toggleClass('lenis-locked', value)\r\n }\r\n }\r\n\r\n get className() {\r\n let className = 'lenis'\r\n if (this.isStopped) className += ' lenis-stopped'\r\n if (this.isLocked) className += ' lenis-locked'\r\n if (this.isScrolling) className += ' lenis-scrolling'\r\n if (this.isSmooth) className += ' lenis-smooth'\r\n return className\r\n }\r\n\r\n toggleClass(name, value) {\r\n this.rootElement.classList.toggle(name, value)\r\n this.emitter.emit('className change', this)\r\n }\r\n}\r\n", "/**\n * Intersection Observer\n *\n * Detecting visibility of an element in the viewport.\n *\n * Features functions to:\n *\n * - Trigger inview/outOfView callbacks\n * - If the element has a requestAnimationFrame dependency, set interactivy status for the ScrollElement Class\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API}\n */\n\nimport { IIOOptions } from '../types';\nimport ScrollElement from './ScrollElement';\n\nexport default class IO {\n public scrollElements: ScrollElement[];\n private rootMargin: string;\n private IORaf: boolean;\n private observer!: IntersectionObserver;\n\n constructor({\n scrollElements,\n rootMargin = '-1px -1px -1px -1px',\n IORaf,\n }: IIOOptions) {\n // Parameters\n this.scrollElements = scrollElements;\n this.rootMargin = rootMargin;\n this.IORaf = IORaf;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize Intersection Observer.\n *\n * @private\n */\n private _init() {\n // Options\n const observerOptions = {\n rootMargin: this.rootMargin,\n };\n\n // Callback\n const onIntersect = (entries: IntersectionObserverEntry[]) => {\n entries.forEach((entry) => {\n const $targetItem: ScrollElement | undefined =\n this.scrollElements.find(\n (item) => item.$el === entry.target\n );\n\n if (entry.isIntersecting) {\n $targetItem && ($targetItem.isAlreadyIntersected = true);\n this._setInview(entry);\n } else if ($targetItem && $targetItem.isAlreadyIntersected) {\n this._setOutOfView(entry);\n }\n });\n };\n\n // Instance\n this.observer = new IntersectionObserver(onIntersect, observerOptions);\n\n // Observe each default elements\n for (const scrollElement of this.scrollElements) {\n const $scrollElement = scrollElement.$el;\n this.observe($scrollElement);\n }\n }\n\n /**\n * Lifecyle - Destroy Intersection Observer.\n */\n public destroy() {\n this.observer.disconnect();\n }\n\n /**\n * Subscribe element to the Intersection Observer.\n *\n * @param {HTMLElement} $scrollElement - DOM Element to observe.\n */\n public observe($scrollElement: HTMLElement) {\n if (!$scrollElement) {\n return;\n }\n\n this.observer.observe($scrollElement);\n }\n\n /**\n * Unsubscribe element to the Intersection Observer.\n *\n * @param {HTMLElement} $scrollElement - DOM Element to unobserve.\n */\n public unobserve($scrollElement: HTMLElement) {\n if (!$scrollElement) {\n return;\n }\n\n this.observer.unobserve($scrollElement);\n }\n\n /**\n * Find ScrollElementReference instance and trigger inview callbacks.\n *\n * @private\n *\n * @param {IntersectionObserverEntry} entry - DOM Element to observe.\n */\n private _setInview(entry: IntersectionObserverEntry) {\n const scrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === entry.target\n );\n\n this.IORaf && scrollElement?.setInteractivityOn();\n !this.IORaf && scrollElement?.setInview();\n }\n\n /**\n * Find ScrollElementReference instance and trigger out of view callbacks.\n *\n * @private\n *\n * @param {IntersectionObserverEntry} entry - DOM Element to observe.\n */\n private _setOutOfView(entry: IntersectionObserverEntry) {\n const scrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === entry.target\n );\n\n this.IORaf && scrollElement?.setInteractivityOff();\n !this.IORaf && scrollElement?.setOutOfView();\n\n // Unobserve if element doesn't have repeat attribute\n if (!scrollElement?.attributes.scrollRepeat && !this.IORaf) {\n this.unobserve(entry.target as HTMLElement);\n }\n }\n}\n", "// https://greensock.com/docs/v3/GSAP/gsap.utils\n\n/**\n * Clamp a value to fit within a specific range (ex: clamp(0, 100, -12) --> 0).\n *\n * @param {number} min - Minimum value expected.\n * @param {number} max - Maximum value expected.\n * @param {number} value - Current value.\n *\n * @returns {number} - Clamped value.\n */\nexport function clamp(min: number, max: number, value: number): number {\n return value < min ? min : value > max ? max : value;\n}\n\n/**\n * Map one range to another (ex: mapRange(-10, 10, 0, 100, 5) --> 75).\n *\n * @param {number} inMin - Current minimum value.\n * @param {number} inMax - Current maximum value.\n * @param {number} outMin - Maximum value expected.\n * @param {number} outMax - Maximum value expected.\n * @param {number} value - Current value.\n *\n * @returns {number} - New value that should be between minimum value expected and maximum value.\n */\nexport function mapRange(\n inMin: number,\n inMax: number,\n outMin: number,\n outMax: number,\n value: number\n): number {\n const inRange = inMax - inMin;\n const outRange = outMax - outMin;\n return outMin + (((value - inMin) / inRange) * outRange || 0);\n}\n\n/**\n * Map a number within a range to a progress between 0 to 1 (ex: normalize(100, 200, 150) --> 0.5).\n *\n * @param {number} min - Current minimum value.\n * @param {number} max - Current maximum value.\n * @param {number} value - Current value.\n *\n * @returns {number} - New value that should be between 0 and 1.\n */\nexport function normalize(min: number, max: number, value: number): number {\n return mapRange(min, max, 0, 1, value);\n}\n\n/**\n * Get closest number from an array.\n *\n * @param {number[]} array - Numbers array.\n * @param {number} target - Reference value.\n *\n * @returns {number} - Closest number.\n */\nexport function closestNumber(array: number[], target: number): number {\n return array.reduce((prev, curr) => {\n return Math.abs(curr - target) < Math.abs(prev - target) ? curr : prev;\n });\n}\n", "/**\n * Scroll Element\n *\n * Give tools to compute element progress in the viewport and triggers callbacks to animate it.\n *\n * Features functions to:\n *\n * - scrollClass - Add a custom class when the element is intersected by the offset\n * - scrollOffset - Determine offsets to intersect the element\n * - scrollPosition - Determine the element positions to consider an element as intersected.\n * - scrollModuleProgress - Send scroll progress to modular module that have a specific method (PROGRESS_MODULAR_METHOD)\n * - scrollCssProgress - Add a specific css variable (PROGRESS_CSS_VAR) that store the scroll progress\n * - scrollEventProgress - Send scroll progress to custom event listeners.\n * - scrollSpeed - Add a scroll multiplicator to create a parallax effect\n * - scrollRepeat - Repeat the option to trigger animation each time the element is intersected\n * - scrollCall - Call a custom event or a modular callback when the element is intersected\n */\n\nimport {\n IModular,\n IScrollElementOptions,\n IScrollElementAttributes,\n IScrollElementIntersection,\n IScrollElementMetrics,\n IProgressModularModules,\n IScrollElementCallbacksValues,\n scrollCallWay,\n scrollCallFrom,\n scrollOrientation,\n} from '../types';\nimport { clamp, closestNumber, normalize, mapRange } from '../utils/maths';\n\n/** Constants */\nconst INVIEW_CLASS = 'is-inview';\nconst PROGRESS_CSS_VAR = '--progress';\nconst PROGRESS_MODULAR_METHOD = 'onScrollProgress';\n\nexport default class ScrollElement {\n public $el: HTMLElement;\n public id: number;\n public needRaf: boolean;\n public attributes: IScrollElementAttributes;\n public scrollOrientation: scrollOrientation;\n public isAlreadyIntersected: boolean;\n\n private intersection: IScrollElementIntersection;\n private metrics: IScrollElementMetrics;\n private currentScroll: number;\n private translateValue: number;\n private progress: number;\n private lastProgress: number | null;\n private modularInstance?: IModular;\n private progressModularModules: IProgressModularModules[];\n private isInview: boolean;\n private isInteractive: boolean;\n private isInFold: boolean;\n private isFirstResize: boolean;\n\n private subscribeElementUpdateFn: (scrollElement: ScrollElement) => void;\n private unsubscribeElementUpdateFn: (scrollElement: ScrollElement) => void;\n\n constructor({\n $el,\n id,\n modularInstance,\n subscribeElementUpdateFn,\n unsubscribeElementUpdateFn,\n needRaf,\n scrollOrientation,\n }: IScrollElementOptions) {\n // Scroll DOM element\n this.$el = $el;\n // Unique ID\n this.id = id;\n // RAF option\n this.needRaf = needRaf;\n // Scroll Direction\n this.scrollOrientation = scrollOrientation;\n // Modular.js\n this.modularInstance = modularInstance;\n // Parent's callbacks\n this.subscribeElementUpdateFn = subscribeElementUpdateFn;\n this.unsubscribeElementUpdateFn = unsubscribeElementUpdateFn;\n\n // Attributes\n this.attributes = {\n scrollClass: this.$el.dataset['scrollClass'] ?? INVIEW_CLASS,\n scrollOffset: this.$el.dataset['scrollOffset'] ?? '0,0',\n scrollPosition: this.$el.dataset['scrollPosition'] ?? 'start,end',\n scrollModuleProgress:\n this.$el.dataset['scrollModuleProgress'] != null,\n scrollCssProgress: this.$el.dataset['scrollCssProgress'] != null,\n scrollEventProgress:\n this.$el.dataset['scrollEventProgress'] ?? null,\n scrollSpeed:\n this.$el.dataset['scrollSpeed'] != null\n ? parseFloat(this.$el.dataset['scrollSpeed'])\n : null,\n scrollRepeat: this.$el.dataset['scrollRepeat'] != null,\n scrollCall: this.$el.dataset['scrollCall'] ?? null,\n scrollCallSelf: this.$el.dataset['scrollCallSelf'] != null,\n scrollIgnoreFold: this.$el.dataset['scrollIgnoreFold'] != null,\n scrollEnableTouchSpeed:\n this.$el.dataset['scrollEnableTouchSpeed'] != null,\n };\n\n // Limits\n this.intersection = {\n start: 0,\n end: 0,\n };\n\n // Metrics\n this.metrics = {\n offsetStart: 0,\n offsetEnd: 0,\n bcr: {} as DOMRect,\n };\n\n // Scroll Values\n this.currentScroll =\n this.scrollOrientation === 'vertical'\n ? window.scrollY\n : window.scrollX;\n\n // Parallax\n this.translateValue = 0;\n\n // Progress\n this.progress = 0;\n this.lastProgress = null;\n this.progressModularModules = [];\n\n // Inview\n this.isInview = false;\n this.isInteractive = false;\n this.isAlreadyIntersected = false;\n this.isInFold = false;\n this.isFirstResize = true;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize progress tracking.\n *\n * @private\n */\n private _init() {\n if (!this.needRaf) {\n return;\n }\n\n // Prepare modules progress\n if (this.modularInstance && this.attributes.scrollModuleProgress) {\n this._getProgressModularModules();\n }\n\n // First resize to compute all values\n this._resize();\n }\n\n /**\n * Callback - Resize callback\n */\n public onResize({ currentScroll }: IScrollElementCallbacksValues) {\n this.currentScroll = currentScroll;\n this._resize();\n }\n\n /**\n * Callback - RAF callback\n */\n public onRender({ currentScroll, smooth }: IScrollElementCallbacksValues) {\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n this.currentScroll = currentScroll;\n this._computeProgress();\n\n // Parallax\n if (\n this.attributes.scrollSpeed &&\n !isNaN(this.attributes.scrollSpeed)\n ) {\n // if touch detected or smooth disabled\n if (!this.attributes.scrollEnableTouchSpeed && !smooth) {\n if (this.translateValue) {\n this.$el.style.transform = `translate3d(0, 0, 0)`;\n }\n this.translateValue = 0;\n\n // if mousewheel or smooth enabled\n } else {\n // Check fold condition\n if (this.isInFold) {\n const progress = Math.max(0, this.progress);\n this.translateValue =\n progress * wSize * this.attributes.scrollSpeed * -1;\n } else {\n const progress = mapRange(0, 1, -1, 1, this.progress);\n this.translateValue =\n progress * wSize * this.attributes.scrollSpeed * -1;\n }\n\n this.$el.style.transform =\n this.scrollOrientation === 'vertical'\n ? `translate3d(0, ${this.translateValue}px, 0)`\n : `translate3d(${this.translateValue}px, 0, 0)`;\n }\n }\n }\n\n /**\n * Inview callback\n */\n public setInview() {\n if (this.isInview) {\n return;\n }\n\n this.isInview = true;\n this.$el.classList.add(this.attributes.scrollClass);\n\n const way: scrollCallWay = 'enter';\n const from: scrollCallFrom = this._getScrollCallFrom();\n this.attributes.scrollCall && this._dispatchCall(way, from);\n }\n\n /**\n * Out of view callback\n */\n public setOutOfView() {\n if (!(this.isInview && this.attributes.scrollRepeat)) {\n return;\n }\n\n this.isInview = false;\n this.$el.classList.remove(this.attributes.scrollClass);\n\n const way: scrollCallWay = 'leave';\n const from: scrollCallFrom = this._getScrollCallFrom();\n this.attributes.scrollCall && this._dispatchCall(way, from);\n }\n\n /**\n * Switch interactivity on to subscribe the instance to the RAF\n * and start calculations.\n */\n public setInteractivityOn() {\n if (this.isInteractive) {\n return;\n }\n\n this.isInteractive = true;\n this.subscribeElementUpdateFn(this);\n }\n\n /**\n * Switch interactivity off to unsubscribe the instance to the RAF\n * and stop calculations.\n */\n public setInteractivityOff() {\n if (!this.isInteractive) {\n return;\n }\n\n this.isInteractive = false;\n this.unsubscribeElementUpdateFn(this);\n\n // Force progress to progress limit when the element is out\n this.lastProgress != null &&\n this._computeProgress(closestNumber([0, 1], this.lastProgress));\n }\n\n /**\n * Resize method that compute the element's values.\n *\n * @private\n */\n private _resize() {\n this.metrics.bcr = this.$el.getBoundingClientRect();\n this._computeMetrics();\n this._computeIntersection();\n\n // First resize logic\n if (this.isFirstResize) {\n this.isFirstResize = false;\n // Dispatch default call if the element is in fold.\n if (this.isInFold) {\n this.setInview();\n }\n }\n }\n\n /**\n * Compute element's offsets and determine if the element is in fold.\n *\n * @private\n */\n private _computeMetrics() {\n const { top, left, height, width } = this.metrics.bcr;\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n const metricsStart = this.scrollOrientation === 'vertical' ? top : left;\n const metricsSize =\n this.scrollOrientation === 'vertical' ? height : width;\n\n this.metrics.offsetStart =\n this.currentScroll + metricsStart - this.translateValue;\n this.metrics.offsetEnd = this.metrics.offsetStart + metricsSize;\n\n if (\n this.metrics.offsetStart < wSize &&\n !this.attributes.scrollIgnoreFold\n ) {\n this.isInFold = true;\n } else {\n this.isInFold = false;\n }\n }\n\n /**\n * Compute intersection values depending on the context.\n *\n * @private\n */\n private _computeIntersection() {\n // Window size\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n\n // Metrics size\n const metricsSize =\n this.scrollOrientation === 'vertical'\n ? this.metrics.bcr.height\n : this.metrics.bcr.width;\n\n // Offset\n const offset = this.attributes.scrollOffset.split(',');\n const offsetStart = offset[0] != undefined ? offset[0].trim() : '0';\n const offsetEnd = offset[1] != undefined ? offset[1].trim() : '0';\n\n // Positions\n const scrollPosition = this.attributes.scrollPosition.split(',');\n let scrollPositionStart =\n scrollPosition[0] != undefined ? scrollPosition[0].trim() : 'start';\n const scrollPositionEnd =\n scrollPosition[1] != undefined ? scrollPosition[1].trim() : 'end';\n\n // Viewport\n const viewportStart = offsetStart.includes('%')\n ? wSize * parseInt(offsetStart.replace('%', '').trim()) * 0.01\n : parseInt(offsetStart);\n const viewportEnd = offsetEnd.includes('%')\n ? wSize * parseInt(offsetEnd.replace('%', '').trim()) * 0.01\n : parseInt(offsetEnd);\n\n // Fold exception\n if (this.isInFold) {\n scrollPositionStart = 'fold';\n }\n\n // Define Intersection Start\n switch (scrollPositionStart) {\n case 'start':\n this.intersection.start =\n this.metrics.offsetStart - wSize + viewportStart;\n break;\n\n case 'middle':\n this.intersection.start =\n this.metrics.offsetStart -\n wSize +\n viewportStart +\n metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.start =\n this.metrics.offsetStart -\n wSize +\n viewportStart +\n metricsSize;\n break;\n\n case 'fold':\n this.intersection.start = 0;\n break;\n\n default:\n this.intersection.start =\n this.metrics.offsetStart - wSize + viewportStart;\n break;\n }\n\n // Define Intersection End\n switch (scrollPositionEnd) {\n case 'start':\n this.intersection.end = this.metrics.offsetStart - viewportEnd;\n break;\n\n case 'middle':\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize;\n break;\n\n default:\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize;\n break;\n }\n\n // Avoid to have the end < the start intersection >\n if (this.intersection.end <= this.intersection.start) {\n switch (scrollPositionEnd) {\n case 'start':\n this.intersection.end = this.intersection.start + 1;\n break;\n\n case 'middle':\n this.intersection.end =\n this.intersection.start + metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.end =\n this.intersection.start + metricsSize;\n break;\n\n default:\n this.intersection.end = this.intersection.start + 1;\n break;\n }\n }\n }\n\n /**\n * Compute the scroll progress of the element depending\n * on its intersection values.\n *\n * @private\n *\n * @param {number} [forcedProgress] - Value to force progress.\n */\n private _computeProgress(forcedProgress?: number) {\n // Progress\n const progress =\n forcedProgress ??\n clamp(\n 0,\n 1,\n normalize(\n this.intersection.start,\n this.intersection.end,\n this.currentScroll\n )\n );\n\n this.progress = progress;\n\n if (progress != this.lastProgress) {\n this.lastProgress = progress;\n\n // Set the element's progress to the css variable\n this.attributes.scrollCssProgress && this._setCssProgress(progress);\n\n // Set the element's progress to the custom event listeners\n this.attributes.scrollEventProgress &&\n this._setCustomEventProgress(progress);\n\n // Set the element's progress to inline modules\n if (this.attributes.scrollModuleProgress) {\n for (const modularModules of this.progressModularModules) {\n this.modularInstance &&\n this.modularInstance.call(\n PROGRESS_MODULAR_METHOD,\n progress,\n modularModules.moduleName,\n modularModules.moduleId\n );\n }\n }\n\n // Logic to trigger the inview/out of view callbacks\n progress > 0 && progress < 1 && this.setInview();\n progress === 0 && this.setOutOfView();\n progress === 1 && this.setOutOfView();\n }\n }\n\n /**\n * Set the element's progress to a specific css variable.\n *\n * @private\n *\n * @param {number} [currentProgress] - Progress value.\n */\n _setCssProgress(currentProgress = 0) {\n this.$el.style.setProperty(\n PROGRESS_CSS_VAR,\n currentProgress.toString()\n );\n }\n\n /**\n * Set the element's progress to the custom event listeners.\n *\n * @private\n *\n * @param {number} [currentProgress] - Progress value.\n */\n _setCustomEventProgress(currentProgress = 0) {\n const customEventName = this.attributes.scrollEventProgress;\n\n if (!customEventName) return;\n\n const customEvent = new CustomEvent(customEventName, {\n detail: {\n target: this.$el,\n progress: currentProgress,\n },\n });\n window.dispatchEvent(customEvent);\n }\n\n /**\n * Get modular modules that can listen the element's progress.\n *\n * @private\n */\n _getProgressModularModules() {\n if (!this.modularInstance) {\n return;\n }\n\n const modulesIdNames = Object.keys(this.$el.dataset).filter((key) =>\n key.includes('module')\n );\n const modules: any[] = Object.entries(this.modularInstance.modules);\n\n if (!modulesIdNames.length) {\n return;\n }\n\n for (const modulesIdName of modulesIdNames) {\n const moduleId = this.$el.dataset[modulesIdName];\n\n if (!moduleId) {\n return;\n }\n\n for (const module of modules) {\n const [moduleName, moduleObj] = module;\n\n if (moduleId in moduleObj) {\n this.progressModularModules.push({\n moduleName,\n moduleId,\n });\n }\n }\n }\n }\n\n /**\n * Function to get scroll call from.\n *\n * @private\n */\n _getScrollCallFrom(): scrollCallFrom {\n const closestIntersectionValue = closestNumber(\n [this.intersection.start, this.intersection.end],\n this.currentScroll\n );\n return this.intersection.start === closestIntersectionValue\n ? 'start'\n : 'end';\n }\n\n /**\n * Function to dispatch a custom event or call a modular callback.\n *\n * @private\n *\n * @param {scrollCallWay} way - Enter or leave.\n * @param {scrollCallFrom} from - Start or end.\n */\n _dispatchCall(way: scrollCallWay, from: scrollCallFrom) {\n const callParameters = this.attributes.scrollCall?.split(',');\n const callSelf = this.attributes?.scrollCallSelf;\n\n if (callParameters && callParameters.length > 1) {\n // Using Modular.js (https://github.com/modularorg/modularjs)\n const [func, moduleName, moduleId] = callParameters;\n let targetModuleId;\n\n // If the module is set on the scroll element\n if (callSelf) {\n targetModuleId = this.$el.dataset[`module${moduleName.trim()}`];\n } else {\n targetModuleId = moduleId;\n }\n\n this.modularInstance &&\n this.modularInstance.call(\n func.trim(),\n {\n target: this.$el,\n way,\n from,\n },\n moduleName.trim(),\n targetModuleId?.trim()\n );\n } else if (callParameters) {\n // Using CustomEvent API (https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent)\n const [customEventName] = callParameters;\n const customEvent = new CustomEvent(customEventName, {\n detail: {\n target: this.$el,\n way,\n from,\n },\n });\n window.dispatchEvent(customEvent);\n }\n }\n}\n", "/**\n * Integrates Lenis with Locomotive's built-in animation system\n */\n\nimport {\n CoreOptions,\n IModular,\n IScrollElementCallbacksValues,\n scrollOrientation,\n} from '../types';\nimport IO from './IO';\nimport ScrollElement from './ScrollElement';\n\n/** Defined attributes that need a requestAnimationFrame */\nconst ATTRIBUTES_THAT_NEED_RAF = [\n 'scrollOffset',\n 'scrollPosition',\n 'scrollModuleProgress',\n 'scrollCssProgress',\n 'scrollEventProgress',\n 'scrollSpeed',\n];\n\n/** Default root margins */\nconst TRIGGER_ROOT_MARGIN = '-1px -1px -1px -1px';\nconst RAF_ROOT_MARGIN = '100% 100% 100% 100%'; // Add 100vh top/bottom && 100vw left/right to use a biggest value with data-scroll-speed\n\nexport default class Core {\n private $scrollContainer!: HTMLElement;\n private modularInstance?: IModular;\n private triggerRootMargin!: string;\n private rafRootMargin!: string;\n private scrollElements!: ScrollElement[];\n private triggeredScrollElements!: ScrollElement[];\n private RAFScrollElements!: ScrollElement[];\n private scrollElementsToUpdate!: ScrollElement[];\n private IOTriggerInstance!: IO;\n private IORafInstance!: IO;\n private scrollOrientation!: scrollOrientation;\n\n constructor({\n $el,\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n scrollOrientation,\n }: CoreOptions) {\n if (!$el) {\n console.error('Please provide a DOM Element as scrollContainer');\n return;\n }\n\n // Scroll container\n this.$scrollContainer = $el;\n\n // Modular.js\n this.modularInstance = modularInstance;\n\n // Scroll Direction\n this.scrollOrientation = scrollOrientation;\n\n // IO Margins\n this.triggerRootMargin = triggerRootMargin ?? TRIGGER_ROOT_MARGIN;\n this.rafRootMargin = rafRootMargin ?? RAF_ROOT_MARGIN;\n\n // ScrollElements arrays\n this.scrollElements = [];\n this.triggeredScrollElements = [];\n this.RAFScrollElements = [];\n this.scrollElementsToUpdate = [];\n\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize the core.\n *\n * @private\n */\n private _init() {\n const $scrollElements =\n this.$scrollContainer.querySelectorAll('[data-scroll]');\n\n const $scrollElementsArr = Array.from($scrollElements) as HTMLElement[]\n this._subscribeScrollElements($scrollElementsArr);\n\n // Trigger IO\n this.IOTriggerInstance = new IO({\n scrollElements: [...this.triggeredScrollElements],\n rootMargin: this.triggerRootMargin,\n IORaf: false,\n });\n\n // Raf IO\n this.IORafInstance = new IO({\n scrollElements: [...this.RAFScrollElements],\n rootMargin: this.rafRootMargin,\n IORaf: true,\n });\n }\n\n /**\n * Lifecyle - Destroy core.\n */\n public destroy() {\n this.IOTriggerInstance.destroy();\n this.IORafInstance.destroy();\n this._unsubscribeAllScrollElements();\n }\n\n /**\n * Callback - Resize callback.\n */\n onResize({ currentScroll }: IScrollElementCallbacksValues) {\n for (const scrollElement of this.RAFScrollElements) {\n scrollElement.onResize({\n currentScroll,\n } as IScrollElementCallbacksValues);\n }\n }\n\n /**\n * Callback - RAF callback.\n */\n onRender({ currentScroll, smooth }: IScrollElementCallbacksValues) {\n for (const scrollElement of this.scrollElementsToUpdate) {\n scrollElement.onRender({\n currentScroll,\n smooth,\n } as IScrollElementCallbacksValues);\n }\n }\n\n /**\n * Remove items from lists of scroll elements and compute all new values.\n *\n * @param {HTMLElement} $oldContainer - HTMLElement that contains data-scroll elements to unsubscribe\n */\n removeScrollElements($oldContainer: HTMLElement) {\n const $scrollElementsToRemove =\n $oldContainer.querySelectorAll('[data-scroll]');\n\n if (!$scrollElementsToRemove.length) return;\n\n // 1. Remove from IO\n for (let index = 0; index < this.triggeredScrollElements.length; index++) {\n const scrollElement = this.triggeredScrollElements[index];\n const $scrollElementsToRemoveArr = Array.from($scrollElementsToRemove) as HTMLElement []\n if ($scrollElementsToRemoveArr.indexOf(scrollElement.$el) > -1) {\n this.IOTriggerInstance.unobserve(scrollElement.$el);\n this.triggeredScrollElements.splice(index, 1);\n }\n }\n\n for (let index = 0; index < this.RAFScrollElements.length; index++) {\n const scrollElement = this.RAFScrollElements[index];\n const $scrollElementsToRemoveArr = Array.from($scrollElementsToRemove) as HTMLElement []\n if ($scrollElementsToRemoveArr.indexOf(scrollElement.$el) > -1) {\n this.IORafInstance.unobserve(scrollElement.$el);\n this.RAFScrollElements.splice(index, 1);\n }\n }\n\n // 2. Remove from scrollElementsToUpdate[] and scrollElements[]\n $scrollElementsToRemove.forEach(($scrollElement) => {\n const targetScrollElementToUpdate =\n this.scrollElementsToUpdate.find(\n (scrollElement) => scrollElement.$el === $scrollElement\n );\n const targetScrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === $scrollElement\n );\n\n if (targetScrollElementToUpdate) {\n this._unsubscribeElementUpdate(targetScrollElementToUpdate);\n }\n if (targetScrollElement) {\n this.scrollElements = this.scrollElements.filter(\n (scrollElementItem) =>\n scrollElementItem.id != targetScrollElement.id\n );\n }\n });\n }\n\n /**\n * Add items to lists of scroll elements and compute all new values.\n *\n * @param {HTMLElement} $newContainer - HTMLElement that contains data-scroll elements to subscribe\n */\n addScrollElements($newContainer: HTMLElement) {\n // 3. Rebuild ScrollElements\n const $scrollElements = $newContainer.querySelectorAll('[data-scroll]');\n\n // 4. Get max scrollElement.id\n const ids: number[] = [];\n this.scrollElements.forEach((scrollElement) => {\n ids.push(scrollElement.id);\n });\n const maxID = Math.max(...ids);\n const fromIndex = maxID + 1;\n const $scrollElementsArr = Array.from($scrollElements) as HTMLElement[]\n this._subscribeScrollElements(\n $scrollElementsArr,\n fromIndex,\n true\n );\n }\n\n /**\n * Create a ScrollElement instance for each elements with\n * `data-scroll` attribute.\n *\n * @private\n *\n * @param {HTMLElement[]} $scrollElements - List of elements that need\n * to be regarded.\n */\n _subscribeScrollElements(\n $scrollElements: HTMLElement[],\n fromIndex = 0,\n toObserve = false\n ) {\n // For each scroll element create a ScrollElement instance\n for (let index = 0; index < $scrollElements.length; index++) {\n const $scrollElement = $scrollElements[index];\n const needRaf = this._checkRafNeeded($scrollElement);\n\n const scrollElementInstance = new ScrollElement({\n $el: $scrollElement,\n id: fromIndex + index,\n scrollOrientation: this.scrollOrientation,\n modularInstance: this.modularInstance,\n subscribeElementUpdateFn:\n this._subscribeElementUpdate.bind(this),\n unsubscribeElementUpdateFn:\n this._unsubscribeElementUpdate.bind(this),\n needRaf,\n });\n\n // Push to common array\n this.scrollElements.push(scrollElementInstance);\n\n // Push to specific array\n if (needRaf) {\n this.RAFScrollElements.push(scrollElementInstance);\n\n // Dynamic observe item\n if (toObserve) {\n this.IORafInstance.scrollElements.push(\n scrollElementInstance\n );\n this.IORafInstance.observe(scrollElementInstance.$el);\n }\n } else {\n this.triggeredScrollElements.push(scrollElementInstance);\n\n // Dynamic observe item\n if (toObserve) {\n this.IOTriggerInstance.scrollElements.push(\n scrollElementInstance\n );\n this.IOTriggerInstance.observe(scrollElementInstance.$el);\n }\n }\n }\n }\n\n /**\n * Clear all ScrollElement arrays.\n *\n * @private\n */\n _unsubscribeAllScrollElements() {\n this.scrollElements = [];\n this.RAFScrollElements = [];\n this.triggeredScrollElements = [];\n this.scrollElementsToUpdate = [];\n }\n\n /**\n * Subscribe ScrollElement instance that needs to be updated.\n *\n * @private\n *\n * @param {ScrollElement} scrollElement - ScrollElement instance inview\n * that needs to be updated.\n */\n _subscribeElementUpdate(scrollElement: ScrollElement) {\n this.scrollElementsToUpdate.push(scrollElement);\n }\n\n /**\n * Unscribe ScrollElement instance that doesn't need to be updated.\n *\n * @private\n *\n * @param {ScrollElement} scrollElement - The updated ScrollElement instance\n * out of view now.\n */\n _unsubscribeElementUpdate(scrollElement: ScrollElement) {\n this.scrollElementsToUpdate = this.scrollElementsToUpdate.filter(\n (scrollElementToUpdate) =>\n scrollElementToUpdate.id != scrollElement.id\n );\n }\n\n /**\n * Check if a DOM Element need a requestAnimationFrame to be used.\n *\n * @private\n *\n * @param {HTMLElement} $scrollElement - The element that needs to be checked.\n *\n * @returns {boolean}\n */\n _checkRafNeeded($scrollElement: HTMLElement) {\n let attributesThatNeedRaf = [...ATTRIBUTES_THAT_NEED_RAF];\n\n // Remove utils\n const removeAttribute = (attributeToRemove: string) => {\n attributesThatNeedRaf = attributesThatNeedRaf.filter(\n (attribute) => attribute != attributeToRemove\n );\n };\n\n // 1. Check scroll offset values\n if ($scrollElement.dataset.scrollOffset) {\n const value = $scrollElement.dataset.scrollOffset\n .split(',')\n .map((test) => test.replace('%', '').trim())\n .join(',');\n if (value != '0,0') {\n return true;\n } else {\n removeAttribute('scrollOffset');\n }\n } else {\n removeAttribute('scrollOffset');\n }\n\n // 2. Check scroll position values\n if ($scrollElement.dataset.scrollPosition) {\n const value = $scrollElement.dataset.scrollPosition.trim();\n if (value != 'top,bottom') {\n return true;\n } else {\n removeAttribute('scrollPosition');\n }\n } else {\n removeAttribute('scrollPosition');\n }\n\n // 3. Check scroll speed values\n if (\n $scrollElement.dataset.scrollSpeed &&\n !isNaN(parseFloat($scrollElement.dataset.scrollSpeed))\n ) {\n return true;\n } else {\n removeAttribute('scrollSpeed');\n }\n\n // 4. Check others attributes\n for (const attribute of attributesThatNeedRaf) {\n if (attribute in $scrollElement.dataset) {\n return true;\n }\n }\n\n return false;\n }\n}\n", "/**\n * Resize Observer\n *\n * The Resize Observer API provides a performant mechanism by which code can monitor an element for changes to its size,\n * with notifications being delivered to the observer each time the size changes.\n *\n * Features functions to:\n *\n * - Trigger the resize callback if the specified element's size change.\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/Resize_Observer_API}\n */\n\nimport { IROOptions } from '../types';\n\nexport default class RO {\n private $resizeElements: HTMLElement[];\n private isFirstObserve: boolean;\n private observer!: ResizeObserver;\n private resizeCallback: () => void;\n\n constructor({ resizeElements, resizeCallback = () => {} }: IROOptions) {\n // Parameters\n this.$resizeElements = resizeElements;\n this.resizeCallback = resizeCallback;\n\n // Flags\n this.isFirstObserve = true;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize Resize Observer.\n *\n * @private\n */\n private _init() {\n // Callback\n const onResize = (entries: ResizeObserverEntry[]) => {\n !this.isFirstObserve && this.resizeCallback?.();\n this.isFirstObserve = false;\n };\n\n // Instance\n this.observer = new ResizeObserver(onResize);\n\n // Observe each default elements\n for (const $resizeElement of this.$resizeElements) {\n this.observer.observe($resizeElement);\n }\n }\n\n /**\n * Lifecyle - Destroy Resize Observer.\n */\n public destroy() {\n this.observer.disconnect();\n }\n}\n", "//@ts-ignore\nimport Lenis from '@studio-freight/lenis';\nimport Core from './core/Core';\nimport RO from './core/RO';\nimport {\n ILenisOptions,\n ILenisScrollToOptions,\n ILenisScrollValues,\n ILocomotiveScrollOptions,\n IModular,\n lenisTargetScrollTo,\n} from './types';\n\n/**\n * @type {ILenisOptions}\n */\nconst defaultLenisOptions: ILenisOptions = {\n wrapper: window,\n content: document.documentElement,\n eventsTarget: window,\n lerp: 0.1,\n duration: 0.75,\n orientation: 'vertical',\n gestureOrientation: 'vertical',\n smoothWheel: true,\n smoothTouch: false,\n syncTouch: false,\n syncTouchLerp: 0.1,\n touchInertiaMultiplier: 35,\n wheelMultiplier: 1,\n touchMultiplier: 2,\n normalizeWheel: false,\n autoResize: true,\n easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)), // https://www.desmos.com/calculator/brs54l4xou\n};\n\n/**\n * Locomotive Scroll\n *\n * Detection of elements in viewport & smooth scrolling with parallax.\n *\n * Inspired by\n * {@link https://github.com/locomotivemtl/locomotive-scroll locomotive-scroll.js}\n * and built around\n * {@link https://github.com/studio-freight/lenis lenis.js}.\n */\n\nexport default class LocomotiveScroll {\n public rafPlaying: boolean;\n\n private lenisInstance: any;\n private coreInstance: any;\n\n private lenisOptions: ILenisOptions;\n private modularInstance?: IModular;\n private triggerRootMargin?: string;\n private rafRootMargin?: string;\n private rafInstance?: any;\n private autoResize?: boolean;\n private autoStart?: boolean;\n private ROInstance?: RO;\n private scrollCallback?(scrollValues: ILenisScrollValues): void;\n private initCustomTicker?: (render: () => void) => void;\n private destroyCustomTicker?: (render: () => void) => void;\n private _onRenderBind: () => void;\n private _onResizeBind: () => void;\n private _onScrollToBind: (event: MouseEvent) => void;\n\n constructor({\n lenisOptions = {},\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n autoResize = true,\n autoStart = true,\n scrollCallback = () => {},\n initCustomTicker,\n destroyCustomTicker,\n }: ILocomotiveScrollOptions = {}) {\n // Arguments\n this.lenisOptions = { ...defaultLenisOptions, ...lenisOptions };\n\n Object.assign(this, {\n lenisOptions,\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n autoResize,\n autoStart,\n scrollCallback,\n initCustomTicker,\n destroyCustomTicker,\n });\n\n // Binding\n this._onRenderBind = this._onRender.bind(this);\n this._onScrollToBind = this._onScrollTo.bind(this);\n this._onResizeBind = this._onResize.bind(this);\n\n // Data\n this.rafPlaying = false;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize instance.\n *\n * @private\n */\n private _init(): void {\n // Create Lenis instance\n this.lenisInstance = new Lenis({\n wrapper: this.lenisOptions.wrapper,\n content: this.lenisOptions.content,\n eventsTarget: this.lenisOptions.eventsTarget,\n lerp: this.lenisOptions.lerp,\n duration: this.lenisOptions.duration,\n orientation: this.lenisOptions.orientation,\n gestureOrientation: this.lenisOptions.gestureOrientation,\n smoothWheel: this.lenisOptions.smoothWheel,\n smoothTouch: this.lenisOptions.smoothTouch,\n syncTouch: this.lenisOptions.syncTouch,\n syncTouchLerp: this.lenisOptions.syncTouchLerp,\n touchInertiaMultiplier: this.lenisOptions.touchInertiaMultiplier,\n wheelMultiplier: this.lenisOptions.wheelMultiplier,\n touchMultiplier: this.lenisOptions.touchMultiplier,\n normalizeWheel: this.lenisOptions.normalizeWheel,\n easing: this.lenisOptions.easing,\n });\n this.lenisInstance?.on('scroll', this.scrollCallback);\n\n // Add scroll direction attribute on body\n document.documentElement.setAttribute(\n 'data-scroll-orientation',\n this.lenisInstance.options.orientation\n );\n\n requestAnimationFrame(() => {\n // Create Core Instance\n this.coreInstance = new Core({\n $el: this.lenisInstance.rootElement,\n modularInstance: this.modularInstance,\n triggerRootMargin: this.triggerRootMargin,\n rafRootMargin: this.rafRootMargin,\n scrollOrientation: this.lenisInstance.options.orientation,\n });\n\n // Bind Events\n this._bindEvents();\n\n // RAF warning\n if (this.initCustomTicker && !this.destroyCustomTicker) {\n console.warn(\n 'initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble.'\n );\n } else if (!this.initCustomTicker && this.destroyCustomTicker) {\n console.warn(\n 'destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble.'\n );\n }\n\n // Start RAF\n this.autoStart && this.start();\n });\n }\n\n /**\n * Lifecyle - Destroy instance.\n */\n public destroy(): void {\n // Stop raf\n this.stop();\n // Unbind Events\n this._unbindEvents();\n // Destroy Lenis\n this.lenisInstance.destroy();\n // Destroy Core\n this.coreInstance.destroy();\n }\n\n /**\n * Events - Subscribe events to listen.\n */\n private _bindEvents() {\n this._bindScrollToEvents();\n\n if (this.autoResize) {\n if ('ResizeObserver' in window) {\n this.ROInstance = new RO({\n resizeElements: [document.body],\n resizeCallback: this._onResizeBind,\n });\n } else {\n (window as any).addEventListener('resize', this._onResizeBind);\n }\n }\n }\n\n /**\n * Events - Unsubscribe listened events.\n */\n private _unbindEvents() {\n this._unbindScrollToEvents();\n\n if (this.autoResize) {\n if ('ResizeObserver' in window) {\n this.ROInstance && this.ROInstance.destroy();\n } else {\n (window as any).removeEventListener(\n 'resize',\n this._onResizeBind\n );\n }\n }\n }\n\n /**\n * Events - Subscribe scrollTo events to listen.\n */\n private _bindScrollToEvents($container?: HTMLElement) {\n const $rootContainer = $container\n ? $container\n : this.lenisInstance.rootElement;\n const $scrollToElements =\n $rootContainer?.querySelectorAll('[data-scroll-to]');\n\n $scrollToElements?.length &&\n $scrollToElements.forEach(($el: HTMLElement): void => {\n $el.addEventListener('click', this._onScrollToBind, false);\n });\n }\n\n /**\n * Events - Unsubscribe scrollTo listened events.\n */\n private _unbindScrollToEvents($container?: HTMLElement) {\n const $rootContainer = $container\n ? $container\n : this.lenisInstance.rootElement;\n const $scrollToElements =\n $rootContainer?.querySelectorAll('[data-scroll-to]');\n $scrollToElements?.length &&\n $scrollToElements.forEach(($el: HTMLElement) => {\n $el.removeEventListener('click', this._onScrollToBind, false);\n });\n }\n\n /**\n * Callback - Resize callback.\n */\n private _onResize() {\n // Waiting the next frame to get the new current scroll value return by Lenis\n requestAnimationFrame(() => {\n this.coreInstance?.onResize({\n currentScroll: this.lenisInstance.scroll,\n });\n });\n }\n\n /**\n * Callback - Render callback.\n */\n private _onRender() {\n this.lenisInstance?.raf(Date.now());\n\n this.coreInstance?.onRender({\n currentScroll: this.lenisInstance.scroll,\n smooth: this.lenisInstance.isSmooth,\n });\n }\n\n /**\n * Callback - Scroll To callback.\n */\n private _onScrollTo(event: MouseEvent) {\n event.preventDefault();\n const $target = (event.currentTarget as HTMLElement) ?? null;\n if (!$target) return;\n const target =\n $target.getAttribute('data-scroll-to-href') ||\n $target.getAttribute('href');\n const offset = $target.getAttribute('data-scroll-to-offset') || 0;\n const duration =\n $target.getAttribute('data-scroll-to-duration') ||\n this.lenisOptions.duration ||\n defaultLenisOptions.duration;\n\n target &&\n this.scrollTo(target, {\n offset: typeof offset === 'string' ? parseInt(offset) : offset,\n duration:\n typeof duration === 'string'\n ? parseInt(duration)\n : duration,\n });\n }\n\n /**\n * Start RequestAnimationFrame that active Lenis smooth and scroll progress.\n */\n public start(): void {\n if (this.rafPlaying) {\n return;\n }\n\n // Call lenis start method\n this.lenisInstance?.start();\n\n this.rafPlaying = true;\n this.initCustomTicker\n ? this.initCustomTicker(this._onRenderBind)\n : this._raf();\n }\n\n /**\n * Stop RequestAnimationFrame that active Lenis smooth and scroll progress.\n */\n public stop(): void {\n if (!this.rafPlaying) {\n return;\n }\n\n // Call lenis stop method\n this.lenisInstance?.stop();\n\n this.rafPlaying = false;\n this.destroyCustomTicker\n ? this.destroyCustomTicker(this._onRenderBind)\n : this.rafInstance && cancelAnimationFrame(this.rafInstance);\n }\n\n /**\n * Remove old scroll elements items and rebuild ScrollElements instances.\n */\n public removeScrollElements($oldContainer: HTMLElement): void {\n if (!$oldContainer) {\n console.error('Please provide a DOM Element as $oldContainer');\n return;\n }\n\n this._unbindScrollToEvents($oldContainer);\n this.coreInstance?.removeScrollElements($oldContainer);\n }\n\n /**\n * Add new scroll elements items and rebuild ScrollElements instances.\n */\n public addScrollElements($newContainer: HTMLElement): void {\n if (!$newContainer) {\n console.error('Please provide a DOM Element as $newContainer');\n return;\n }\n\n this.coreInstance?.addScrollElements($newContainer);\n requestAnimationFrame(() => {\n this._bindScrollToEvents($newContainer);\n });\n }\n\n /**\n * Trigger resize callback.\n */\n public resize(): void {\n this._onResizeBind();\n }\n\n /**\n * Trigger scroll to callback.\n */\n public scrollTo(\n target: lenisTargetScrollTo,\n options?: ILenisScrollToOptions\n ): void {\n this.lenisInstance?.scrollTo(target, {\n offset: options?.offset,\n lerp: options?.lerp,\n duration: options?.duration,\n immediate: options?.immediate,\n lock: options?.lock,\n force: options?.force,\n easing: options?.easing,\n onComplete: options?.onComplete,\n });\n }\n\n /**\n * RequestAnimationFrame that active Lenis smooth and scroll progress.\n *\n * @private\n *\n */\n private _raf() {\n this._onRenderBind();\n this.rafInstance = requestAnimationFrame(() => this._raf());\n }\n}\n", "import { module } from 'modujs'\nimport { lazyLoadImage } from '../utils/image'\nimport LocomotiveScroll from 'locomotive-scroll'\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n this.scroll = new LocomotiveScroll({\n modularInstance: this,\n })\n\n // // Force scroll to top\n // if (history.scrollRestoration) {\n // history.scrollRestoration = 'manual'\n // window.scrollTo(0, 0)\n // }\n }\n\n /**\n * Lazy load the related image.\n *\n * @see ../utils/image.js\n *\n * It is recommended to wrap your `` into an element with the\n * CSS class name `.c-lazy`. The CSS class name modifier `.-lazy-loaded`\n * will be applied on both the image and the parent wrapper.\n *\n * ```html\n *
\n * \"\"\n *
\n * ```\n *\n * @param {LocomotiveScroll} args - The Locomotive Scroll instance.\n */\n lazyLoad(args) {\n lazyLoadImage(args.target, null, () => {\n //callback\n })\n }\n\n scrollTo(params) {\n let { target, ...options } = params\n\n options = Object.assign({\n // Defaults\n duration: 1,\n }, options)\n\n this.scroll?.scrollTo(target, options)\n }\n\n destroy() {\n this.scroll.destroy();\n }\n}\n", "import svg4everybody from 'svg4everybody';\nimport { ENV } from './config';\n\n// Dynamic imports for development mode only\nlet gridHelper;\n(async () => {\n if (ENV.IS_DEV) {\n const gridHelperModule = await import('./utils/grid-helper');\n gridHelper = gridHelperModule?.gridHelper;\n }\n})();\n\nexport default function () {\n /**\n * Use external SVG spritemaps\n */\n svg4everybody();\n\n /**\n * Add grid helper\n */\n gridHelper?.();\n}\n", "/**\n * Creates a debounced function.\n *\n * A debounced function delays invoking `callback` until after\n * `delay` milliseconds have elapsed since the last time the\n * debounced function was invoked.\n *\n * Useful for behaviour that should only happen _before_ or\n * _after_ an event has stopped occurring.\n *\n * @template {function} T\n *\n * @param {T} callback - The function to debounce.\n * @param {number} delay - The number of milliseconds to wait.\n * @param {boolean} [immediate] -\n * If `true`, `callback` is invoked before `delay`.\n * If `false`, `callback` is invoked after `delay`.\n * @return {function} The new debounced function.\n */\n\nconst debounce = (callback, delay, immediate = false) => {\n let timeout = null\n\n return (...args) => {\n clearTimeout(timeout)\n\n const later = () => {\n timeout = null\n if (!immediate) {\n callback(...args)\n }\n }\n\n if (immediate && !timeout) {\n callback(...args)\n }\n\n timeout = setTimeout(later, delay)\n }\n}\n\n\n/**\n * Creates a throttled function.\n *\n * A throttled function invokes `callback` at most once per every\n * `delay` milliseconds.\n *\n * Useful for rate-limiting an event that occurs in quick succession.\n *\n * @template {function} T\n *\n * @param {T} callback - The function to throttle.\n * @param {number} delay - The number of milliseconds to wait.\n * @return {function} The new throttled function.\n */\n\nconst throttle = (callback, delay) => {\n let timeout = false\n\n return (...args) => {\n if (!timeout) {\n timeout = true\n\n callback(...args)\n\n setTimeout(() => {\n timeout = false\n }, delay)\n }\n }\n}\n\n\nexport {\n debounce,\n throttle\n}\n", "const $html = document.documentElement\nconst $body = document.body\n\nexport {\n $html,\n $body,\n}\n", "import modular from 'modujs';\nimport * as modules from './modules';\nimport globals from './globals';\nimport { debounce } from './utils/tickers'\nimport { $html } from './utils/dom';\nimport { ENV, FONT, CUSTOM_EVENT, CSS_CLASS } from './config'\nimport { isFontLoadingAPIAvailable, loadFonts } from './utils/fonts';\n\nconst app = new modular({\n modules: modules,\n});\n\nwindow.addEventListener('load', (event) => {\n const $style = document.getElementById('main-css');\n\n if ($style) {\n if ($style.isLoaded) {\n init();\n } else {\n $style.addEventListener('load', (event) => {\n init();\n });\n }\n } else {\n console.warn('The \"main-css\" stylesheet not found');\n }\n});\n\nfunction init() {\n globals();\n\n app.init(app);\n\n $html.classList.add(CSS_CLASS.LOADED);\n $html.classList.add(CSS_CLASS.READY);\n $html.classList.remove(CSS_CLASS.LOADING);\n\n // Bind window resize event with default vars\n const resizeEndEvent = new CustomEvent(CUSTOM_EVENT.RESIZE_END)\n window.addEventListener('resize', () => {\n $html.style.setProperty('--vw', `${document.documentElement.clientWidth * 0.01}px`)\n debounce(() => {\n window.dispatchEvent(resizeEndEvent)\n }, 200, false)\n })\n\n /**\n * Eagerly load the following fonts.\n */\n if (isFontLoadingAPIAvailable) {\n loadFonts(FONT.EAGER, ENV.IS_DEV).then((eagerFonts) => {\n $html.classList.add(CSS_CLASS.FONTS_LOADED);\n\n if (ENV.IS_DEV) {\n console.group('Eager fonts loaded!', eagerFonts.length, '/', document.fonts.size);\n console.group('State of eager fonts:')\n eagerFonts.forEach((font) => console.log(font.family, font.style, font.weight, font.status/*, font*/))\n console.groupEnd()\n console.group('State of all fonts:')\n document.fonts.forEach((font) => console.log(font.family, font.style, font.weight, font.status/*, font*/))\n console.groupEnd()\n }\n });\n }\n}\n"], - "mappings": "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", - "names": ["require_svg4everybody", "__commonJSMin", "exports", "module", "root", "factory", "embed", "parent", "svg", "target", "fragment", "viewBox", "clone", "loadreadystatechange", "xhr", "cachedDocument", "item", "svg4everybody", "rawopts", "oninterval", "index", "uses", "use", "getSVGAncestor", "src", "opts", "polyfill", "srcSplit", "url", "id", "requests", "numberOfSvgUseElementsToBypass", "requestAnimationFrame", "newerIEUA", "webkitUA", "olderEdgeUA", "edgeUA", "inIframe", "node", "grid_helper_exports", "__export", "gridHelper", "gutterCssVar", "GRID_HELPER_GUTTER_CSS_VAR", "marginCssVar", "GRID_HELPER_MARGIN_CSS_VAR", "rgbaColor", "GRID_HELPER_RGBA_COLOR", "$gridContainer", "setGridHelperColumns", "setGridHelperStyles", "setGridEvents", "$container", "elStyles", "columns", "$col", "i", "ctrlDown", "isActive", "e", "init_grid_helper", "__esmMin", "_typeof", "obj", "_classCallCheck", "instance", "Constructor", "_defineProperties", "target", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_defineProperty", "key", "value", "_slicedToArray", "arr", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "_toConsumableArray", "_arrayWithoutHoles", "_iterableToArray", "_nonIterableSpread", "_arrayLikeToArray", "iter", "_arr", "_n", "_d", "_e", "_i", "_s", "err", "o", "minLen", "n", "len", "arr2", "_default", "options", "modules", "_this", "event", "_this2", "capture", "e", "data", "name", "method", "query", "context", "classIndex", "idIndex", "attrIndex", "indexes", "index", "more", "parent", "func", "args", "mod", "id", "_this3", "_this4", "_default$1", "app", "scope", "container", "elements", "el", "moduleExists", "dataName", "moduleName", "module", "moduleId", "_ref", "_ref2", "split", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_this5", "a", "b", "str", "main_esm_default", "modules_exports", "__export", "Example_default", "Load_default", "Scroll_default", "NODE_ENV", "IS_MOBILE", "ENV", "CSS_CLASS", "CUSTOM_EVENT", "FONT", "isFontLoadingAPIAvailable", "conformsToReference", "font", "criterion", "key", "value", "trim", "conformsToShorthand", "family", "findManyByReference", "search", "found", "font", "conformsToReference", "findManyByShorthand", "conformsToShorthand", "getMany", "queries", "found", "search", "findManyByShorthand", "findManyByReference", "loadFonts", "fontsToLoad", "debug", "__async", "_a", "loadFontsWithAPI", "loadFontFaceWithAPI", "font", "err", "fontsToBeLoaded", "fontToLoad", "getMany", "trim", "value", "whenReady", "queries", "fonts", "Example_default", "_default", "m", "whenReady", "FONT", "fonts", "_classCallCheck", "instance", "Constructor", "_defineProperties", "target", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_slicedToArray", "arr", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "_i", "_arr", "_n", "_d", "_s", "_e", "err", "o", "minLen", "_arrayLikeToArray", "n", "len", "arr2", "_default", "options", "_this", "e", "href", "link", "transition", "isUrl", "push", "container", "oldContainer", "loadingEvent", "_this2", "_this3", "signal", "response", "data", "parser", "_this4", "svgs", "svg", "xhref", "_this5", "title", "newDesc", "oldDesc", "newContainer", "datas", "_ref", "_ref2", "key", "val", "str", "_this6", "promises", "attr", "els", "el", "elData", "promise", "resolve", "imagesEvent", "_this7", "loadedEvent", "readyEvent", "event", "func", "_this8", "main_esm_default", "Load_default", "_default", "m", "main_esm_default", "transition", "oldContainer", "newContainer", "getImageMetadata", "$img", "loadImage", "url", "options", "resolve", "reject", "loadCallback", "__spreadValues", "e", "LAZY_LOADED_IMAGES", "lazyLoadImage", "$el", "callback", "__async", "src", "loadedImage", "image", "lazyParent", "CSS_CLASS", "clamp", "min", "input", "max", "Math", "Animate", "advance", "deltaTime", "_this$onUpdate", "this", "isRunning", "completed", "lerp", "value", "x", "y", "to", "t", "exp", "round", "currentTime", "linearProgress", "duration", "easedProgress", "easing", "from", "onUpdate", "call", "stop", "fromTo", "onStart", "Dimensions", "constructor", "wrapper", "content", "autoResize", "resize", "onWrapperResize", "onContentResize", "window", "width", "innerWidth", "height", "innerHeight", "clientWidth", "clientHeight", "scrollHeight", "scrollWidth", "callback", "delay", "timer", "args", "arguments", "context", "clearTimeout", "setTimeout", "apply", "wrapperResizeObserver", "ResizeObserver", "observe", "contentResizeObserver", "destroy", "_this$wrapperResizeOb", "_this$contentResizeOb", "disconnect", "limit", "Emitter", "events", "emit", "event", "callbacks", "i", "length", "on", "cb", "_this$events$event", "push", "_this$events$event2", "filter", "off", "_this$events$event3", "VirtualScroll", "element", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "onTouchStart", "clientX", "clientY", "targetTouches", "touchStart", "lastDelta", "onTouchMove", "deltaX", "deltaY", "emitter", "onTouchEnd", "onWheel", "addEventListener", "passive", "removeEventListener", "Lenis", "document", "documentElement", "wheelEventsTarget", "eventsTarget", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "__iosNoInertiaSyncTouchLerp", "touchInertiaMultiplier", "pow", "infinite", "orientation", "gestureOrientation", "onVirtualScroll", "ctrlKey", "isTouch", "type", "includes", "isWheel", "options", "scroll", "composedPath", "slice", "indexOf", "rootElement", "find", "node", "_node$classList", "hasAttribute", "classList", "contains", "isStopped", "isLocked", "preventDefault", "isSmooth", "isScrolling", "animate", "delta", "abs", "hasTouchInertia", "velocity", "scrollTo", "targetScroll", "_extends", "programmatic", "onScroll", "lastScroll", "animatedScroll", "actualScroll", "direction", "sign", "lenisVersion", "body", "dimensions", "toggleClass", "virtualScroll", "setScroll", "isHorizontal", "scrollLeft", "scrollTop", "reset", "start", "raf", "time", "target", "offset", "immediate", "lock", "onComplete", "force", "_target", "querySelector", "nodeType", "wrapperRect", "getBoundingClientRect", "left", "top", "rect", "requestAnimationFrame", "d", "progress", "__isSmooth", "__isScrolling", "__isStopped", "__isLocked", "className", "name", "toggle", "IO", "constructor", "scrollElements", "rootMargin", "IORaf", "this", "observer", "_init", "IntersectionObserver", "entries", "forEach", "entry", "$targetItem", "find", "item", "$el", "target", "isIntersecting", "isAlreadyIntersected", "_setInview", "_setOutOfView", "scrollElement", "observe", "destroy", "disconnect", "$scrollElement", "unobserve", "setInteractivityOn", "setInview", "setInteractivityOff", "setOutOfView", "attributes", "scrollRepeat", "mapRange", "inMin", "inMax", "outMin", "outMax", "value", "closestNumber", "array", "reduce", "prev", "curr", "Math", "abs", "ScrollElement", "id", "modularInstance", "subscribeElementUpdateFn", "unsubscribeElementUpdateFn", "needRaf", "scrollOrientation", "_this$$el$dataset$scr", "_this$$el$dataset$scr2", "_this$$el$dataset$scr3", "_this$$el$dataset$scr4", "_this$$el$dataset$scr5", "intersection", "metrics", "currentScroll", "translateValue", "progress", "lastProgress", "progressModularModules", "isInview", "isInteractive", "isInFold", "isFirstResize", "scrollClass", "dataset", "scrollOffset", "scrollPosition", "scrollModuleProgress", "scrollCssProgress", "scrollEventProgress", "scrollSpeed", "parseFloat", "scrollCall", "scrollCallSelf", "scrollIgnoreFold", "scrollEnableTouchSpeed", "start", "end", "offsetStart", "offsetEnd", "bcr", "window", "scrollY", "scrollX", "_getProgressModularModules", "_resize", "onResize", "onRender", "smooth", "wSize", "innerHeight", "innerWidth", "_computeProgress", "isNaN", "max", "style", "transform", "classList", "add", "from", "_getScrollCallFrom", "_dispatchCall", "remove", "getBoundingClientRect", "_computeMetrics", "_computeIntersection", "top", "left", "height", "width", "metricsSize", "offset", "split", "undefined", "trim", "scrollPositionStart", "scrollPositionEnd", "viewportStart", "includes", "parseInt", "replace", "viewportEnd", "forcedProgress", "_setCssProgress", "_setCustomEventProgress", "modularModules", "call", "moduleName", "moduleId", "currentProgress", "setProperty", "toString", "customEventName", "customEvent", "CustomEvent", "detail", "dispatchEvent", "modulesIdNames", "Object", "keys", "filter", "key", "modules", "length", "modulesIdName", "module", "moduleObj", "push", "closestIntersectionValue", "way", "_this$attributes$scro", "_this$attributes", "callParameters", "callSelf", "_targetModuleId", "func", "targetModuleId", "ATTRIBUTES_THAT_NEED_RAF", "Core", "triggerRootMargin", "rafRootMargin", "$scrollContainer", "triggeredScrollElements", "RAFScrollElements", "scrollElementsToUpdate", "IOTriggerInstance", "IORafInstance", "console", "error", "$scrollElements", "querySelectorAll", "$scrollElementsArr", "Array", "_subscribeScrollElements", "_unsubscribeAllScrollElements", "removeScrollElements", "$oldContainer", "$scrollElementsToRemove", "index", "indexOf", "splice", "targetScrollElementToUpdate", "targetScrollElement", "_unsubscribeElementUpdate", "scrollElementItem", "addScrollElements", "$newContainer", "ids", "fromIndex", "toObserve", "_checkRafNeeded", "scrollElementInstance", "_subscribeElementUpdate", "bind", "scrollElementToUpdate", "attributesThatNeedRaf", "removeAttribute", "attributeToRemove", "attribute", "map", "test", "join", "RO", "resizeElements", "resizeCallback", "$resizeElements", "isFirstObserve", "ResizeObserver", "_this$resizeCallback", "$resizeElement", "defaultLenisOptions", "wrapper", "content", "document", "documentElement", "eventsTarget", "lerp", "duration", "orientation", "gestureOrientation", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "touchInertiaMultiplier", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "autoResize", "easing", "t", "min", "pow", "LocomotiveScroll", "lenisOptions", "autoStart", "scrollCallback", "initCustomTicker", "destroyCustomTicker", "rafPlaying", "lenisInstance", "coreInstance", "rafInstance", "ROInstance", "_onRenderBind", "_onResizeBind", "_onScrollToBind", "_extends", "assign", "_onRender", "_onScrollTo", "_onResize", "_this$lenisInstance", "Lenis", "on", "setAttribute", "options", "requestAnimationFrame", "rootElement", "_bindEvents", "warn", "stop", "_unbindEvents", "_bindScrollToEvents", "body", "addEventListener", "_unbindScrollToEvents", "removeEventListener", "$container", "$rootContainer", "$scrollToElements", "_this$coreInstance", "scroll", "_this$lenisInstance2", "_this$coreInstance2", "raf", "Date", "now", "isSmooth", "event", "_event$currentTarget", "preventDefault", "$target", "currentTarget", "getAttribute", "scrollTo", "_this$lenisInstance3", "_raf", "_this$lenisInstance4", "cancelAnimationFrame", "_this$coreInstance3", "_this$coreInstance4", "resize", "_this$lenisInstance5", "immediate", "lock", "force", "onComplete", "Scroll_default", "_default", "m", "h", "args", "lazyLoadImage", "params", "_b", "_a", "target", "options", "__objRest", "import_svg4everybody", "gridHelper", "__async", "ENV", "gridHelperModule", "globals_default", "svg4everybody", "debounce", "callback", "delay", "immediate", "timeout", "args", "later", "$html", "$body", "app", "main_esm_default", "modules_exports", "event", "$style", "init", "globals_default", "$html", "CSS_CLASS", "resizeEndEvent", "CUSTOM_EVENT", "debounce", "isFontLoadingAPIAvailable", "loadFonts", "FONT", "ENV", "eagerFonts", "font"] + "sourcesContent": ["!function(root, factory) {\n \"function\" == typeof define && define.amd ? // AMD. Register as an anonymous module unless amdModuleId is set\n define([], function() {\n return root.svg4everybody = factory();\n }) : \"object\" == typeof module && module.exports ? // Node. Does not work with strict CommonJS, but\n // only CommonJS-like environments that support module.exports,\n // like Node.\n module.exports = factory() : root.svg4everybody = factory();\n}(this, function() {\n /*! svg4everybody v2.1.9 | github.com/jonathantneal/svg4everybody */\n function embed(parent, svg, target) {\n // if the target exists\n if (target) {\n // create a document fragment to hold the contents of the target\n var fragment = document.createDocumentFragment(), viewBox = !svg.hasAttribute(\"viewBox\") && target.getAttribute(\"viewBox\");\n // conditionally set the viewBox on the svg\n viewBox && svg.setAttribute(\"viewBox\", viewBox);\n // copy the contents of the clone into the fragment\n for (// clone the target\n var clone = target.cloneNode(!0); clone.childNodes.length; ) {\n fragment.appendChild(clone.firstChild);\n }\n // append the fragment into the svg\n parent.appendChild(fragment);\n }\n }\n function loadreadystatechange(xhr) {\n // listen to changes in the request\n xhr.onreadystatechange = function() {\n // if the request is ready\n if (4 === xhr.readyState) {\n // get the cached html document\n var cachedDocument = xhr._cachedDocument;\n // ensure the cached html document based on the xhr response\n cachedDocument || (cachedDocument = xhr._cachedDocument = document.implementation.createHTMLDocument(\"\"), \n cachedDocument.body.innerHTML = xhr.responseText, xhr._cachedTarget = {}), // clear the xhr embeds list and embed each item\n xhr._embeds.splice(0).map(function(item) {\n // get the cached target\n var target = xhr._cachedTarget[item.id];\n // ensure the cached target\n target || (target = xhr._cachedTarget[item.id] = cachedDocument.getElementById(item.id)), \n // embed the target into the svg\n embed(item.parent, item.svg, target);\n });\n }\n }, // test the ready state change immediately\n xhr.onreadystatechange();\n }\n function svg4everybody(rawopts) {\n function oninterval() {\n // while the index exists in the live collection\n for (// get the cached index\n var index = 0; index < uses.length; ) {\n // get the current \n var use = uses[index], parent = use.parentNode, svg = getSVGAncestor(parent), src = use.getAttribute(\"xlink:href\") || use.getAttribute(\"href\");\n if (!src && opts.attributeName && (src = use.getAttribute(opts.attributeName)), \n svg && src) {\n if (polyfill) {\n if (!opts.validate || opts.validate(src, svg, use)) {\n // remove the element\n parent.removeChild(use);\n // parse the src and get the url and id\n var srcSplit = src.split(\"#\"), url = srcSplit.shift(), id = srcSplit.join(\"#\");\n // if the link is external\n if (url.length) {\n // get the cached xhr request\n var xhr = requests[url];\n // ensure the xhr request exists\n xhr || (xhr = requests[url] = new XMLHttpRequest(), xhr.open(\"GET\", url), xhr.send(), \n xhr._embeds = []), // add the svg and id as an item to the xhr embeds list\n xhr._embeds.push({\n parent: parent,\n svg: svg,\n id: id\n }), // prepare the xhr ready state change event\n loadreadystatechange(xhr);\n } else {\n // embed the local id into the svg\n embed(parent, svg, document.getElementById(id));\n }\n } else {\n // increase the index when the previous value was not \"valid\"\n ++index, ++numberOfSvgUseElementsToBypass;\n }\n }\n } else {\n // increase the index when the previous value was not \"valid\"\n ++index;\n }\n }\n // continue the interval\n (!uses.length || uses.length - numberOfSvgUseElementsToBypass > 0) && requestAnimationFrame(oninterval, 67);\n }\n var polyfill, opts = Object(rawopts), newerIEUA = /\\bTrident\\/[567]\\b|\\bMSIE (?:9|10)\\.0\\b/, webkitUA = /\\bAppleWebKit\\/(\\d+)\\b/, olderEdgeUA = /\\bEdge\\/12\\.(\\d+)\\b/, edgeUA = /\\bEdge\\/.(\\d+)\\b/, inIframe = window.top !== window.self;\n polyfill = \"polyfill\" in opts ? opts.polyfill : newerIEUA.test(navigator.userAgent) || (navigator.userAgent.match(olderEdgeUA) || [])[1] < 10547 || (navigator.userAgent.match(webkitUA) || [])[1] < 537 || edgeUA.test(navigator.userAgent) && inIframe;\n // create xhr requests object\n var requests = {}, requestAnimationFrame = window.requestAnimationFrame || setTimeout, uses = document.getElementsByTagName(\"use\"), numberOfSvgUseElementsToBypass = 0;\n // conditionally start the interval if the polyfill is active\n polyfill && oninterval();\n }\n function getSVGAncestor(node) {\n for (var svg = node; \"svg\" !== svg.nodeName.toLowerCase() && (svg = svg.parentNode); ) {}\n return svg;\n }\n return svg4everybody;\n});", "/**\n * Grid Helper\n *\n * Provides a grid based on the design guidelines and is helpful for web integration.\n *\n * - `Control + g` to toggle the grid\n *\n */\n\n/**\n * @typedef {Object} GridHelperReference\n *\n * @property {string} [gutterCssVar=GRID_HELPER_GUTTER_CSS_VAR] - CSS variable used to define grid gutters.\n * @property {string} [marginCssVar=GRID_HELPER_MARGIN_CSS_VAR] - CSS variable used to define grid margins.\n * @property {string} [rgbaColor=GRID_HELPER_RGBA_COLOR] - RGBA color for the grid appearence.\n */\n\nconst GRID_HELPER_GUTTER_CSS_VAR = '--grid-gutter';\nconst GRID_HELPER_MARGIN_CSS_VAR = '--grid-margin';\nconst GRID_HELPER_RGBA_COLOR = 'rgba(255, 0, 0, .1)';\n\n/**\n * Create a grid helper\n *\n * @param {GridHelperReference}\n *\n */\nfunction gridHelper({\n gutterCssVar = GRID_HELPER_GUTTER_CSS_VAR,\n marginCssVar = GRID_HELPER_MARGIN_CSS_VAR,\n rgbaColor = GRID_HELPER_RGBA_COLOR,\n} = {}) {\n // Set grid container\n const $gridContainer = document.createElement('div');\n document.body.append($gridContainer);\n\n // Set grid appearence\n setGridHelperColumns($gridContainer, rgbaColor);\n setGridHelperStyles($gridContainer, gutterCssVar, marginCssVar);\n\n // Set grid interactivity\n setGridEvents($gridContainer, rgbaColor);\n}\n\n/**\n * Set grid container styles\n *\n * @param {HTMLElement} $container - DOM Element that contains a list of generated columns\n * @param {string} gutterCssVar - CSS variable used to define grid gutters.\n * @param {string} marginCssVar - CSS variable used to define grid margins.\n *\n */\nfunction setGridHelperStyles($container, gutterCssVar, marginCssVar) {\n const elStyles = $container.style;\n elStyles.zIndex = '10000';\n elStyles.position = 'fixed';\n elStyles.top = '0';\n elStyles.left = '0';\n elStyles.display = 'flex';\n elStyles.width = '100%';\n elStyles.height = '100%';\n elStyles.columnGap = `var(${gutterCssVar}, 0)`;\n elStyles.paddingLeft = `var(${marginCssVar}, 0)`;\n elStyles.paddingRight = `var(${marginCssVar}, 0)`;\n elStyles.pointerEvents = 'none';\n elStyles.visibility = 'hidden';\n}\n\n/**\n * Set grid columns\n *\n * @param {HTMLElement} $container - DOM Element that will contain a list of generated columns\n * @param {string} rgbaColor - RGBA color to stylize the generated columns\n *\n */\nfunction setGridHelperColumns($container, rgbaColor) {\n // Clear columns\n $container.innerHTML = '';\n\n // Loop through columns\n const columns = Number(\n window.getComputedStyle($container).getPropertyValue('--grid-columns')\n );\n\n let $col;\n for (var i = 0; i < columns; i++) {\n $col = document.createElement('div');\n $col.style.flex = '1 1 0';\n $col.style.backgroundColor = rgbaColor;\n $container.appendChild($col);\n }\n}\n\n/**\n * Set grid events\n *\n * Resize to rebuild columns\n * Keydown/Keyup to toggle the grid display\n *\n * @param {HTMLElement} $container - DOM Element that contains a list of generated columns\n * @param {string} rgbaColor - RGBA color to stylize the generated columns\n *\n */\nfunction setGridEvents($container, rgbaColor) {\n // Handle resize\n window.addEventListener(\n 'resize',\n setGridHelperColumns($container, rgbaColor)\n );\n\n // Toggle grid\n let ctrlDown = false;\n let isActive = false;\n\n document.addEventListener('keydown', (e) => {\n if (e.key == 'Control') {\n ctrlDown = true;\n } else {\n if (ctrlDown && e.key == 'g') {\n if (isActive) {\n $container.style.visibility = 'hidden';\n } else {\n $container.style.visibility = 'visible';\n }\n\n isActive = !isActive;\n }\n }\n });\n\n document.addEventListener('keyup', (e) => {\n if (e.key == 'Control') {\n ctrlDown = false;\n }\n });\n}\n\nexport { gridHelper };\n", "function _typeof(obj) {\n \"@babel/helpers - typeof\";\n\n if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") {\n _typeof = function (obj) {\n return typeof obj;\n };\n } else {\n _typeof = function (obj) {\n return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj;\n };\n }\n\n return _typeof(obj);\n}\n\nfunction _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _defineProperty(obj, key, value) {\n if (key in obj) {\n Object.defineProperty(obj, key, {\n value: value,\n enumerable: true,\n configurable: true,\n writable: true\n });\n } else {\n obj[key] = value;\n }\n\n return obj;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _toConsumableArray(arr) {\n return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread();\n}\n\nfunction _arrayWithoutHoles(arr) {\n if (Array.isArray(arr)) return _arrayLikeToArray(arr);\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArray(iter) {\n if (typeof Symbol !== \"undefined\" && Symbol.iterator in Object(iter)) return Array.from(iter);\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n if (typeof Symbol === \"undefined\" || !(Symbol.iterator in Object(arr))) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n var _e = undefined;\n\n try {\n for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableSpread() {\n throw new TypeError(\"Invalid attempt to spread non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar _default = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.mAttr = 'data-' + options.dataName;\n this.mCaptureEvents = ['mouseenter', 'mouseleave'];\n this.el = options.el;\n }\n\n _createClass(_default, [{\n key: \"mInit\",\n value: function mInit(modules) {\n var _this = this;\n\n this.modules = modules;\n this.mCheckEventTarget = this.mCheckEventTarget.bind(this);\n\n if (this.events) {\n Object.keys(this.events).forEach(function (event) {\n return _this.mAddEvent(event);\n });\n }\n }\n }, {\n key: \"mUpdate\",\n value: function mUpdate(modules) {\n this.modules = modules;\n }\n }, {\n key: \"mDestroy\",\n value: function mDestroy() {\n var _this2 = this;\n\n if (this.events) {\n Object.keys(this.events).forEach(function (event) {\n return _this2.mRemoveEvent(event);\n });\n }\n }\n }, {\n key: \"mAddEvent\",\n value: function mAddEvent(event) {\n var capture = this.mCaptureEvents.includes(event) ? true : false;\n this.el.addEventListener(event, this.mCheckEventTarget, capture);\n }\n }, {\n key: \"mRemoveEvent\",\n value: function mRemoveEvent(event) {\n var capture = this.mCaptureEvents.includes(event) ? true : false;\n this.el.removeEventListener(event, this.mCheckEventTarget, capture);\n }\n }, {\n key: \"mCheckEventTarget\",\n value: function mCheckEventTarget(e) {\n var event = this.events[e.type];\n\n if (typeof event === \"string\") {\n this[event](e);\n } else {\n var data = '[' + this.mAttr + ']';\n var target = e.target;\n\n if (this.mCaptureEvents.includes(e.type)) {\n if (target.matches(data)) {\n this.mCallEventMethod(e, event, target);\n }\n } else {\n while (target && target !== document) {\n if (target.matches(data)) {\n if (this.mCallEventMethod(e, event, target) != 'undefined') {\n break;\n }\n }\n\n target = target.parentNode;\n }\n }\n }\n }\n }, {\n key: \"mCallEventMethod\",\n value: function mCallEventMethod(e, event, target) {\n var name = target.getAttribute(this.mAttr);\n\n if (event.hasOwnProperty(name)) {\n var method = event[name];\n\n if (!e.hasOwnProperty('currentTarget')) {\n Object.defineProperty(e, 'currentTarget', {\n value: target\n });\n }\n\n if (!e.hasOwnProperty('curTarget')) {\n Object.defineProperty(e, 'curTarget', {\n value: target\n }); // For IE 11\n }\n\n this[method](e);\n }\n }\n }, {\n key: \"$\",\n value: function $(query, context) {\n var classIndex = query.indexOf('.');\n var idIndex = query.indexOf('#');\n var attrIndex = query.indexOf('[');\n var indexes = [classIndex, idIndex, attrIndex].filter(function (index) {\n return index != -1;\n });\n var index = false;\n var name = query;\n var more = '';\n var parent = this.el;\n\n if (indexes.length) {\n index = Math.min.apply(Math, _toConsumableArray(indexes));\n name = query.slice(0, index);\n more = query.slice(index);\n }\n\n if (_typeof(context) == 'object') {\n parent = context;\n }\n\n return parent.querySelectorAll('[' + this.mAttr + '=' + name + ']' + more);\n }\n }, {\n key: \"parent\",\n value: function parent(query, context) {\n var data = '[' + this.mAttr + '=' + query + ']';\n var parent = context.parentNode;\n\n while (parent && parent !== document) {\n if (parent.matches(data)) {\n return parent;\n }\n\n parent = parent.parentNode;\n }\n }\n }, {\n key: \"getData\",\n value: function getData(name, context) {\n var target = context || this.el;\n return target.getAttribute(this.mAttr + '-' + name);\n }\n }, {\n key: \"setData\",\n value: function setData(name, value, context) {\n var target = context || this.el;\n return target.setAttribute(this.mAttr + '-' + name, value);\n }\n }, {\n key: \"call\",\n value: function call(func, args, mod, id) {\n var _this3 = this;\n\n if (args && !mod) {\n mod = args;\n args = false;\n }\n\n if (this.modules[mod]) {\n if (id) {\n if (this.modules[mod][id]) {\n this.modules[mod][id][func](args);\n }\n } else {\n Object.keys(this.modules[mod]).forEach(function (id) {\n _this3.modules[mod][id][func](args);\n });\n }\n }\n }\n }, {\n key: \"on\",\n value: function on(e, mod, func, id) {\n var _this4 = this;\n\n if (this.modules[mod]) {\n if (id) {\n this.modules[mod][id].el.addEventListener(e, function (o) {\n return func(o);\n });\n } else {\n Object.keys(this.modules[mod]).forEach(function (i) {\n _this4.modules[mod][i].el.addEventListener(e, function (o) {\n return func(o);\n });\n });\n }\n }\n }\n }, {\n key: \"init\",\n value: function init() {}\n }, {\n key: \"destroy\",\n value: function destroy() {}\n }]);\n\n return _default;\n}();\n\nvar _default$1 = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.app;\n this.modules = options.modules;\n this.currentModules = {};\n this.activeModules = {};\n this.newModules = {};\n this.moduleId = 0;\n }\n\n _createClass(_default, [{\n key: \"init\",\n value: function init(app, scope) {\n var _this = this;\n\n var container = scope || document;\n var elements = container.querySelectorAll('*');\n\n if (app && !this.app) {\n this.app = app;\n }\n\n this.activeModules['app'] = {\n 'app': this.app\n };\n elements.forEach(function (el) {\n Array.from(el.attributes).forEach(function (i) {\n if (i.name.startsWith('data-module')) {\n var moduleExists = false;\n var dataName = i.name.split('-').splice(2);\n\n var moduleName = _this.toCamel(dataName);\n\n if (_this.modules[moduleName]) {\n moduleExists = true;\n } else if (_this.modules[_this.toUpper(moduleName)]) {\n moduleName = _this.toUpper(moduleName);\n moduleExists = true;\n }\n\n if (moduleExists) {\n var options = {\n el: el,\n name: moduleName,\n dataName: dataName.join('-')\n };\n var module = new _this.modules[moduleName](options);\n var id = i.value;\n\n if (!id) {\n _this.moduleId++;\n id = 'm' + _this.moduleId;\n el.setAttribute(i.name, id);\n }\n\n _this.addActiveModule(moduleName, id, module);\n\n var moduleId = moduleName + '-' + id;\n\n if (scope) {\n _this.newModules[moduleId] = module;\n } else {\n _this.currentModules[moduleId] = module;\n }\n }\n }\n });\n });\n Object.entries(this.currentModules).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n id = _ref2[0],\n module = _ref2[1];\n\n if (scope) {\n var split = id.split('-');\n var moduleName = split.shift();\n var moduleId = split.pop();\n\n _this.addActiveModule(moduleName, moduleId, module);\n } else {\n _this.initModule(module);\n }\n });\n }\n }, {\n key: \"initModule\",\n value: function initModule(module) {\n module.mInit(this.activeModules);\n module.init();\n }\n }, {\n key: \"addActiveModule\",\n value: function addActiveModule(name, id, module) {\n if (this.activeModules[name]) {\n Object.assign(this.activeModules[name], _defineProperty({}, id, module));\n } else {\n this.activeModules[name] = _defineProperty({}, id, module);\n }\n }\n }, {\n key: \"update\",\n value: function update(scope) {\n var _this2 = this;\n\n this.init(this.app, scope);\n Object.entries(this.currentModules).forEach(function (_ref3) {\n var _ref4 = _slicedToArray(_ref3, 2),\n id = _ref4[0],\n module = _ref4[1];\n\n module.mUpdate(_this2.activeModules);\n });\n Object.entries(this.newModules).forEach(function (_ref5) {\n var _ref6 = _slicedToArray(_ref5, 2),\n id = _ref6[0],\n module = _ref6[1];\n\n _this2.initModule(module);\n });\n Object.assign(this.currentModules, this.newModules);\n }\n }, {\n key: \"destroy\",\n value: function destroy(scope) {\n if (scope) {\n this.destroyScope(scope);\n } else {\n this.destroyModules();\n }\n }\n }, {\n key: \"destroyScope\",\n value: function destroyScope(scope) {\n var _this3 = this;\n\n var elements = scope.querySelectorAll('*');\n elements.forEach(function (el) {\n Array.from(el.attributes).forEach(function (i) {\n if (i.name.startsWith('data-module')) {\n var id = i.value;\n var dataName = i.name.split('-').splice(2);\n var moduleName = _this3.toCamel(dataName) + '-' + id;\n var moduleExists = false;\n\n if (_this3.currentModules[moduleName]) {\n moduleExists = true;\n } else if (_this3.currentModules[_this3.toUpper(moduleName)]) {\n moduleName = _this3.toUpper(moduleName);\n moduleExists = true;\n }\n\n if (moduleExists) {\n _this3.destroyModule(_this3.currentModules[moduleName]);\n\n delete _this3.currentModules[moduleName];\n }\n }\n });\n });\n this.activeModules = {};\n this.newModules = {};\n }\n }, {\n key: \"destroyModules\",\n value: function destroyModules() {\n var _this4 = this;\n\n Object.entries(this.currentModules).forEach(function (_ref7) {\n var _ref8 = _slicedToArray(_ref7, 2),\n id = _ref8[0],\n module = _ref8[1];\n\n _this4.destroyModule(module);\n });\n this.currentModules = [];\n }\n }, {\n key: \"destroyModule\",\n value: function destroyModule(module) {\n module.mDestroy();\n module.destroy();\n }\n }, {\n key: \"toCamel\",\n value: function toCamel(arr) {\n var _this5 = this;\n\n return arr.reduce(function (a, b) {\n return a + _this5.toUpper(b);\n });\n }\n }, {\n key: \"toUpper\",\n value: function toUpper(str) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n }\n }]);\n\n return _default;\n}();\n\nexport default _default$1;\nexport { _default as module };\n", "export {default as Example} from './modules/Example';\nexport {default as Load} from './modules/Load';\nexport {default as Scroll} from './modules/Scroll';\n", "/**\n * > When using the esBuild API, all `process.env.NODE_ENV` expressions\n * > are automatically defined to `\"production\"` if all minification\n * > options are enabled and `\"development\"` otherwise. This only happens\n * > if `process`, `process.env`, and `process.env.NODE_ENV` are not already\n * > defined. This substitution is necessary to avoid code crashing instantly\n * > (since `process` is a Node API, not a web API).\n * > \u2014 https://esbuild.github.io/api/#platform\n */\n\nconst NODE_ENV = process.env.NODE_ENV\nconst IS_MOBILE = window.matchMedia('(any-pointer:coarse)').matches\n\n// Main environment variables\nconst ENV = Object.freeze({\n // Node environment\n NAME: NODE_ENV,\n IS_PROD: NODE_ENV === 'production',\n IS_DEV: NODE_ENV === 'development',\n\n // Device\n IS_MOBILE,\n IS_DESKTOP: !IS_MOBILE,\n\n // Supports\n SUPPORTS_VH: (\n 'CSS' in window\n && 'supports' in window.CSS\n && window.CSS.supports('height: 100svh')\n && window.CSS.supports('height: 100dvh')\n && window.CSS.supports('height: 100lvh')\n )\n})\n\n// Main CSS classes used within the project\nconst CSS_CLASS = Object.freeze({\n LOADING: 'is-loading',\n LOADED: 'is-loaded',\n READY: 'is-ready',\n FONTS_LOADED: 'fonts-loaded',\n LAZY_CONTAINER: 'c-lazy',\n LAZY_LOADED: '-lazy-loaded',\n // ...\n})\n\n// Custom js events\nconst CUSTOM_EVENT = Object.freeze({\n RESIZE_END: 'loco.resizeEnd',\n // ...\n})\n\n// Fonts parameters\nconst FONT = Object.freeze({\n EAGER: [\n { family: 'Source Sans', style: 'normal', weight: 400 },\n { family: 'Source Sans', style: 'normal', weight: 700 },\n ],\n})\n\nexport {\n ENV,\n CSS_CLASS,\n CUSTOM_EVENT,\n FONT,\n}\n", "/**\n * Font Faces\n *\n * Provides utilities to facilitate interactions with the CSS Font Loading API.\n *\n * Features functions to:\n *\n * - Retrieve one or more `FontFace` instances based on a font search query.\n * - Check if a `FontFace` instance matches a font search query.\n * - Eagerly load fonts that match a font search query.\n * - Wait until fonts that match a font search query are loaded.\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/CSS_Font_Loading_API}\n */\n\n/**\n * @typedef {Object} FontFaceReference\n *\n * @property {string} family - The name used to identify the font in our CSS.\n * @property {string} [style] - The style used by the font in our CSS.\n * @property {string} [weight] - The weight used by the font in our CSS.\n */\n\nconst isFontLoadingAPIAvailable = ('fonts' in document);\n\n/**\n * Determines if the given font matches the given `FontFaceReference`.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {FontFaceReference} criterion - The object of property values to match.\n *\n * @returns {boolean}\n */\nfunction conformsToReference(font, criterion)\n{\n for (const [ key, value ] of Object.entries(criterion)) {\n switch (key) {\n case 'family': {\n if (trim(font[key]) !== value) {\n return false;\n }\n break;\n }\n\n case 'weight': {\n /**\n * Note concerning font weights:\n * Loose equality (`==`) is used to compare numeric weights,\n * a number (`400`) and a numeric string (`\"400\"`).\n * Comparison between numeric and keyword values is neglected.\n *\n * @link https://developer.mozilla.org/en-US/docs/Web/CSS/font-weight#common_weight_name_mapping\n */\n if (font[key] != value) {\n return false;\n }\n break;\n }\n\n default: {\n if (font[key] !== value) {\n return false;\n }\n break;\n }\n }\n }\n\n return true;\n}\n\n/**\n * Determines if the given font matches the given font shorthand.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {string} criterion - The font shorthand to match.\n *\n * @returns {boolean}\n */\nfunction conformsToShorthand(font, criterion)\n{\n const family = trim(font.family);\n\n if (trim(family) === criterion) {\n return true;\n }\n\n if (\n criterion.endsWith(trim(family)) && (\n criterion.match(font.weight) ||\n criterion.match(font.style)\n )\n ) {\n return true;\n }\n\n return true;\n}\n\n/**\n * Determines if the given font matches any of the given criteria.\n *\n * @param {FontFace} font - The font to inspect.\n * @param {FontFaceReference[]} criteria - A list of objects with property values to match.\n *\n * @returns {boolean}\n */\nfunction conformsToAnyReference(font, criteria)\n{\n for (const criterion of criteria) {\n if (conformsToReference(font, criterion)) {\n return true;\n }\n }\n\n return false;\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided `FontFaceReference`.\n *\n * @param {FontFaceReference} font\n *\n * @returns {FontFace[]}\n */\nfunction findManyByReference(search)\n{\n const found = [];\n\n for (const font of document.fonts) {\n if (conformsToReference(font, search)) {\n found.push(font);\n }\n }\n\n return found;\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided font shorthand.\n *\n * @param {string} font\n *\n * @returns {FontFace[]}\n */\nfunction findManyByShorthand(search)\n{\n const found = [];\n\n for (const font of document.fonts) {\n if (conformsToShorthand(font, search)) {\n found.push(font);\n }\n }\n\n return found;\n}\n\n/**\n * Returns the first `FontFace` from `document.fonts` that satisfies\n * the provided `FontFaceReference`.\n *\n * @param {FontFaceReference} font\n *\n * @returns {?FontFace}\n */\nfunction findOneByReference(search)\n{\n for (const font of document.fonts) {\n if (conformsToReference(font, criterion)) {\n return font;\n }\n }\n\n return null;\n}\n\n/**\n * Returns the first `FontFace` from `document.fonts` that satisfies\n * the provided font shorthand.\n *\n * Examples:\n *\n * - \"Roboto\"\n * - \"italic bold 16px Roboto\"\n *\n * @param {string} font\n *\n * @returns {?FontFace}\n */\nfunction findOneByShorthand(search)\n{\n for (const font of document.fonts) {\n if (conformsToShorthand(font, search)) {\n return font;\n }\n }\n\n return null;\n}\n\n/**\n * Returns a `FontFace` from `document.fonts` that satisfies\n * the provided query.\n *\n * @param {FontFaceReference|string} font - Either:\n * - a `FontFaceReference` object\n * - a font family name\n * - a font specification, for example \"italic bold 16px Roboto\"\n *\n * @returns {?FontFace}\n *\n * @throws {TypeError}\n */\nfunction getAny(search) {\n if (search) {\n switch (typeof search) {\n case 'string':\n return findOneByShorthand(search);\n\n case 'object':\n return findOneByReference(search);\n }\n }\n\n throw new TypeError(\n 'Expected font query to be font shorthand or font reference'\n );\n}\n\n/**\n * Returns an iterator of all `FontFace` from `document.fonts` that satisfy\n * the provided queries.\n *\n * @param {FontFaceReference|string|(FontFaceReference|string)[]} queries\n *\n * @returns {FontFace[]}\n *\n * @throws {TypeError}\n */\nfunction getMany(queries) {\n if (!Array.isArray(queries)) {\n queries = [ queries ];\n }\n\n const found = new Set();\n\n queries.forEach((search) => {\n if (search) {\n switch (typeof search) {\n case 'string':\n found.add(...findManyByShorthand(search));\n return;\n\n case 'object':\n found.add(...findManyByReference(search));\n return;\n }\n }\n\n throw new TypeError(\n 'Expected font query to be font shorthand or font reference'\n );\n })\n\n return [ ...found ];\n}\n\n/**\n * Determines if a font face is registered.\n *\n * @param {FontFace|FontFaceReference|string} search - Either:\n * - a `FontFace` instance\n * - a `FontFaceReference` object\n * - a font family name\n * - a font specification, for example \"italic bold 16px Roboto\"\n *\n * @returns {boolean}\n */\nfunction hasAny(search) {\n if (search instanceof FontFace) {\n return document.fonts.has(search);\n }\n\n return getAny(search) != null;\n}\n\n/**\n * Eagerly load fonts.\n *\n * Most user agents only fetch and load fonts when they are first needed\n * (\"lazy loaded\"), which can result in a perceptible delay.\n *\n * This function will \"eager load\" the fonts.\n *\n * @param {(FontFace|FontFaceReference)[]} fontsToLoad - List of fonts to load.\n * @param {boolean} [debug] - If TRUE, log details to the console.\n *\n * @returns {Promise}\n */\nasync function loadFonts(fontsToLoad, debug = false)\n{\n if ((fontsToLoad.size ?? fontsToLoad.length) === 0) {\n throw new TypeError(\n 'Expected at least one font'\n );\n }\n\n return await loadFontsWithAPI([ ...fontsToLoad ], debug);\n}\n\n/**\n * Eagerly load a font using `FontFaceSet` API.\n *\n * @param {FontFace} font\n *\n * @returns {Promise}\n */\nasync function loadFontFaceWithAPI(font)\n{\n return await (font.status === 'unloaded'\n ? font.load()\n : font.loaded\n ).then((font) => font, (err) => font)\n}\n\n/**\n * Eagerly load fonts using `FontFaceSet` API.\n *\n * @param {FontFaceReference[]} fontsToLoad\n * @param {boolean} [debug]\n *\n * @returns {Promise}\n */\nasync function loadFontsWithAPI(fontsToLoad, debug = false)\n{\n debug && console.group('[loadFonts:API]', fontsToLoad.length, '/', document.fonts.size);\n\n const fontsToBeLoaded = [];\n\n for (const fontToLoad of fontsToLoad) {\n if (fontToLoad instanceof FontFace) {\n if (!document.fonts.has(fontToLoad)) {\n document.fonts.add(fontToLoad);\n }\n\n fontsToBeLoaded.push(\n loadFontFaceWithAPI(fontToLoad)\n );\n } else {\n fontsToBeLoaded.push(\n ...getMany(fontToLoad).map((font) => loadFontFaceWithAPI(font))\n );\n }\n }\n\n debug && console.groupEnd();\n\n return await Promise.all(fontsToBeLoaded);\n}\n\n/**\n * Removes quotes from the the string.\n *\n * When a `@font-face` is declared, the font family is sometimes\n * defined in quotes which end up included in the `FontFace` instance.\n *\n * @param {string} value\n *\n * @returns {string}\n */\nfunction trim(value) {\n return value.replace(/['\"]+/g, '');\n}\n\n/**\n * Returns a Promise that resolves with the specified fonts\n * when they are done loading or failed.\n *\n * @param {FontFaceReference|string|(FontFaceReference|string)[]} queries\n *\n * @returns {Promise}\n */\nasync function whenReady(queries)\n{\n const fonts = getMany(queries);\n\n return await Promise.all(fonts.map((font) => font.loaded));\n}\n\nexport {\n getAny,\n getMany,\n hasAny,\n isFontLoadingAPIAvailable,\n loadFonts,\n whenReady,\n}\n", "import { module } from 'modujs';\nimport { FONT } from '../config';\nimport { whenReady } from '../utils/fonts';\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n whenReady(FONT.EAGER).then((fonts) => this.onFontsLoaded(fonts));\n }\n\n onFontsLoaded(fonts) {\n console.log('Example: Eager Fonts Loaded!', fonts)\n }\n}\n", "function _classCallCheck(instance, Constructor) {\n if (!(instance instanceof Constructor)) {\n throw new TypeError(\"Cannot call a class as a function\");\n }\n}\n\nfunction _defineProperties(target, props) {\n for (var i = 0; i < props.length; i++) {\n var descriptor = props[i];\n descriptor.enumerable = descriptor.enumerable || false;\n descriptor.configurable = true;\n if (\"value\" in descriptor) descriptor.writable = true;\n Object.defineProperty(target, descriptor.key, descriptor);\n }\n}\n\nfunction _createClass(Constructor, protoProps, staticProps) {\n if (protoProps) _defineProperties(Constructor.prototype, protoProps);\n if (staticProps) _defineProperties(Constructor, staticProps);\n return Constructor;\n}\n\nfunction _slicedToArray(arr, i) {\n return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest();\n}\n\nfunction _arrayWithHoles(arr) {\n if (Array.isArray(arr)) return arr;\n}\n\nfunction _iterableToArrayLimit(arr, i) {\n var _i = arr == null ? null : typeof Symbol !== \"undefined\" && arr[Symbol.iterator] || arr[\"@@iterator\"];\n\n if (_i == null) return;\n var _arr = [];\n var _n = true;\n var _d = false;\n\n var _s, _e;\n\n try {\n for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {\n _arr.push(_s.value);\n\n if (i && _arr.length === i) break;\n }\n } catch (err) {\n _d = true;\n _e = err;\n } finally {\n try {\n if (!_n && _i[\"return\"] != null) _i[\"return\"]();\n } finally {\n if (_d) throw _e;\n }\n }\n\n return _arr;\n}\n\nfunction _unsupportedIterableToArray(o, minLen) {\n if (!o) return;\n if (typeof o === \"string\") return _arrayLikeToArray(o, minLen);\n var n = Object.prototype.toString.call(o).slice(8, -1);\n if (n === \"Object\" && o.constructor) n = o.constructor.name;\n if (n === \"Map\" || n === \"Set\") return Array.from(o);\n if (n === \"Arguments\" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen);\n}\n\nfunction _arrayLikeToArray(arr, len) {\n if (len == null || len > arr.length) len = arr.length;\n\n for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i];\n\n return arr2;\n}\n\nfunction _nonIterableRest() {\n throw new TypeError(\"Invalid attempt to destructure non-iterable instance.\\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.\");\n}\n\nvar _default = /*#__PURE__*/function () {\n function _default(options) {\n _classCallCheck(this, _default);\n\n this.defaults = {\n name: 'load',\n loadingClass: 'is-loading',\n loadedClass: 'is-loaded',\n readyClass: 'is-ready',\n transitionsPrefix: 'is-',\n transitionsHistory: true,\n enterDelay: 0,\n exitDelay: 0,\n loadedDelay: 0,\n isLoaded: false,\n isEntered: false,\n isUrl: false,\n transitionContainer: null,\n popstateIgnore: false\n };\n Object.assign(this, this.defaults, options);\n this.options = options;\n this.namespace = 'modular';\n this.html = document.documentElement;\n this.href = window.location.href;\n this.container = 'data-' + this.name + '-container';\n this.subContainer = false;\n this.prevTransition = null;\n this.loadAttributes = ['src', 'srcset', 'style', 'href'];\n this.isInserted = false;\n this.isLoading = false;\n this.enterTimeout = false;\n this.controller = new AbortController();\n this.classContainer = this.html;\n this.isChrome = navigator.userAgent.indexOf(\"Chrome\") != -1 ? true : false;\n this.init();\n }\n\n _createClass(_default, [{\n key: \"init\",\n value: function init() {\n var _this = this;\n\n window.addEventListener('popstate', function (e) {\n return _this.checkState(e);\n }, false);\n this.html.addEventListener('click', function (e) {\n return _this.checkClick(e);\n }, false);\n this.loadEls(document);\n }\n }, {\n key: \"checkClick\",\n value: function checkClick(e) {\n if (!e.ctrlKey && !e.metaKey) {\n var target = e.target;\n\n while (target && target !== document) {\n if (target.matches('a') && target.getAttribute('download') == null) {\n var href = target.getAttribute('href');\n\n if (!href.startsWith('#') && !href.startsWith('mailto:') && !href.startsWith('tel:')) {\n e.preventDefault();\n this.reset();\n this.getClickOptions(target);\n }\n\n break;\n }\n\n target = target.parentNode;\n }\n }\n }\n }, {\n key: \"checkState\",\n value: function checkState() {\n if (typeof this.popstateIgnore === 'string' && window.location.href.indexOf(this.popstateIgnore) > -1) {\n return;\n }\n\n this.reset();\n this.getStateOptions();\n }\n }, {\n key: \"reset\",\n value: function reset() {\n if (this.isLoading) {\n this.controller.abort();\n this.isLoading = false;\n this.controller = new AbortController();\n }\n\n window.clearTimeout(this.enterTimeout);\n\n if (this.isInserted) {\n this.removeContainer();\n }\n\n this.classContainer = this.html;\n Object.assign(this, this.defaults, this.options);\n }\n }, {\n key: \"getClickOptions\",\n value: function getClickOptions(link) {\n this.transition = link.getAttribute('data-' + this.name);\n this.isUrl = link.getAttribute('data-' + this.name + '-url');\n var href = link.getAttribute('href');\n var target = link.getAttribute('target');\n\n if (target == '_blank') {\n window.open(href, '_blank');\n return;\n }\n\n if (this.transition == 'false') {\n window.location = href;\n return;\n }\n\n this.setOptions(href, true);\n }\n }, {\n key: \"getStateOptions\",\n value: function getStateOptions() {\n if (this.transitionsHistory) {\n this.transition = history.state;\n } else {\n this.transition = false;\n }\n\n var href = window.location.href;\n this.setOptions(href);\n }\n }, {\n key: \"goTo\",\n value: function goTo(href, transition, isUrl) {\n this.reset();\n this.transition = transition;\n this.isUrl = isUrl;\n this.setOptions(href, true);\n }\n }, {\n key: \"setOptions\",\n value: function setOptions(href, push) {\n var container = '[' + this.container + ']';\n var oldContainer;\n\n if (this.transition && this.transition != 'true') {\n this.transitionContainer = '[' + this.container + '=\"' + this.transition + '\"]';\n this.loadingClass = this.transitions[this.transition].loadingClass || this.loadingClass;\n this.loadedClass = this.transitions[this.transition].loadedClass || this.loadedClass;\n this.readyClass = this.transitions[this.transition].readyClass || this.readyClass;\n this.transitionsPrefix = this.transitions[this.transition].transitionsPrefix || this.transitionsPrefix;\n this.enterDelay = this.transitions[this.transition].enterDelay || this.enterDelay;\n this.exitDelay = this.transitions[this.transition].exitDelay || this.exitDelay;\n this.loadedDelay = this.transitions[this.transition].loadedDelay || this.loadedDelay;\n oldContainer = document.querySelector(this.transitionContainer);\n }\n\n if (oldContainer) {\n container = this.transitionContainer;\n this.oldContainer = oldContainer;\n this.classContainer = this.oldContainer.parentNode;\n\n if (!this.subContainer) {\n history.replaceState(this.transition, null, this.href);\n }\n\n this.subContainer = true;\n } else {\n this.oldContainer = document.querySelector(container);\n\n if (this.subContainer) {\n history.replaceState(this.prevTransition, null, this.href);\n }\n\n this.subContainer = false;\n }\n\n this.href = href;\n this.parentContainer = this.oldContainer.parentNode;\n\n if (this.isUrl === '' || this.isUrl != null && this.isUrl != 'false' && this.isUrl != false) {\n history.pushState(this.transition, null, href);\n } else {\n this.oldContainer.classList.add('is-old');\n this.setLoading();\n this.startEnterDelay();\n this.loadHref(href, container, push);\n }\n }\n }, {\n key: \"setLoading\",\n value: function setLoading() {\n this.classContainer.classList.remove(this.loadedClass, this.readyClass);\n this.classContainer.classList.add(this.loadingClass);\n this.classContainer.classList.remove(this.transitionsPrefix + this.prevTransition);\n\n if (this.transition) {\n this.classContainer.classList.add(this.transitionsPrefix + this.transition);\n }\n\n if (!this.subContainer) {\n this.prevTransition = this.transition;\n }\n\n var loadingEvent = new Event(this.namespace + 'loading');\n window.dispatchEvent(loadingEvent);\n }\n }, {\n key: \"startEnterDelay\",\n value: function startEnterDelay() {\n var _this2 = this;\n\n this.enterTimeout = window.setTimeout(function () {\n _this2.isEntered = true;\n\n if (_this2.isLoaded) {\n _this2.transitionContainers();\n }\n }, this.enterDelay);\n }\n }, {\n key: \"loadHref\",\n value: function loadHref(href, container, push) {\n var _this3 = this;\n\n this.isLoading = true;\n var signal = this.controller.signal;\n fetch(href, {\n signal: signal\n }).then(function (response) {\n return response.text();\n }).then(function (data) {\n if (push) {\n history.pushState(_this3.transition, null, href);\n }\n\n var parser = new DOMParser();\n _this3.data = parser.parseFromString(data, 'text/html');\n _this3.newContainer = _this3.data.querySelector(container);\n\n _this3.newContainer.classList.add('is-new');\n\n _this3.parentNewContainer = _this3.newContainer.parentNode;\n\n _this3.hideContainer();\n\n _this3.parentContainer.insertBefore(_this3.newContainer, _this3.oldContainer);\n\n _this3.isInserted = true;\n\n _this3.setSvgs();\n\n _this3.isLoaded = true;\n\n if (_this3.isEntered) {\n _this3.transitionContainers();\n }\n\n _this3.loadEls(_this3.newContainer);\n\n _this3.isLoading = false;\n })[\"catch\"](function (err) {\n window.location = href;\n });\n }\n }, {\n key: \"transitionContainers\",\n value: function transitionContainers() {\n var _this4 = this;\n\n this.setAttributes();\n this.showContainer();\n this.setLoaded();\n setTimeout(function () {\n _this4.removeContainer();\n\n _this4.setReady();\n }, this.exitDelay);\n }\n }, {\n key: \"setSvgs\",\n value: function setSvgs() {\n if (this.isChrome) {\n var svgs = this.newContainer.querySelectorAll('use');\n\n if (svgs.length) {\n svgs.forEach(function (svg) {\n var xhref = svg.getAttribute('xlink:href');\n\n if (xhref) {\n svg.parentNode.innerHTML = '';\n } else {\n var href = svg.getAttribute('href');\n if (href) svg.parentNode.innerHTML = '';\n }\n });\n }\n }\n }\n }, {\n key: \"setAttributes\",\n value: function setAttributes() {\n var _this5 = this;\n\n var title = this.data.getElementsByTagName('title')[0];\n var newDesc = this.data.head.querySelector('meta[name=\"description\"]');\n var oldDesc = document.head.querySelector('meta[name=\"description\"]');\n var container;\n var newContainer;\n\n if (this.subContainer) {\n newContainer = this.parentNewContainer;\n container = document.querySelector(this.transitionContainer).parentNode;\n } else {\n newContainer = this.data.querySelector('html');\n container = document.querySelector('html');\n }\n\n var datas = Object.assign({}, newContainer.dataset);\n if (title) document.title = title.innerText;\n if (oldDesc && newDesc) oldDesc.setAttribute('content', newDesc.getAttribute('content'));\n\n if (datas) {\n Object.entries(datas).forEach(function (_ref) {\n var _ref2 = _slicedToArray(_ref, 2),\n key = _ref2[0],\n val = _ref2[1];\n\n container.setAttribute('data-' + _this5.toDash(key), val);\n });\n }\n }\n }, {\n key: \"toDash\",\n value: function toDash(str) {\n return str.split(/(?=[A-Z])/).join('-').toLowerCase();\n }\n }, {\n key: \"hideContainer\",\n value: function hideContainer() {\n this.newContainer.style.visibility = 'hidden';\n this.newContainer.style.height = 0;\n this.newContainer.style.overflow = 'hidden';\n }\n }, {\n key: \"showContainer\",\n value: function showContainer() {\n this.newContainer.style.visibility = '';\n this.newContainer.style.height = '';\n this.newContainer.style.overflow = '';\n }\n }, {\n key: \"loadEls\",\n value: function loadEls(container) {\n var _this6 = this;\n\n var promises = [];\n this.loadAttributes.forEach(function (attr) {\n var data = 'data-' + _this6.name + '-' + attr;\n var els = container.querySelectorAll('[' + data + ']');\n\n if (els.length) {\n els.forEach(function (el) {\n var elData = el.getAttribute(data);\n el.setAttribute(attr, elData);\n\n if (attr == 'src' || attr == 'srcset') {\n var promise = new Promise(function (resolve) {\n el.onload = function () {\n return resolve(el);\n };\n });\n promises.push(promise);\n }\n });\n }\n });\n Promise.all(promises).then(function (val) {\n var imagesEvent = new Event(_this6.namespace + 'images');\n window.dispatchEvent(imagesEvent);\n });\n }\n }, {\n key: \"setLoaded\",\n value: function setLoaded() {\n var _this7 = this;\n\n this.classContainer.classList.remove(this.loadingClass);\n setTimeout(function () {\n _this7.classContainer.classList.add(_this7.loadedClass);\n }, this.loadedDelay);\n var loadedEvent = new Event(this.namespace + 'loaded');\n window.dispatchEvent(loadedEvent);\n }\n }, {\n key: \"removeContainer\",\n value: function removeContainer() {\n this.parentContainer.removeChild(this.oldContainer);\n this.newContainer.classList.remove('is-new');\n this.isInserted = false;\n }\n }, {\n key: \"setReady\",\n value: function setReady() {\n this.classContainer.classList.add(this.readyClass);\n var readyEvent = new Event(this.namespace + 'ready');\n window.dispatchEvent(readyEvent);\n }\n }, {\n key: \"on\",\n value: function on(event, func) {\n var _this8 = this;\n\n window.addEventListener(this.namespace + event, function () {\n switch (event) {\n case 'loading':\n return func(_this8.transition, _this8.oldContainer);\n\n case 'loaded':\n return func(_this8.transition, _this8.oldContainer, _this8.newContainer);\n\n case 'ready':\n return func(_this8.transition, _this8.newContainer);\n\n default:\n return func();\n }\n }, false);\n }\n }]);\n\n return _default;\n}();\n\nexport default _default;\n", "import { module } from 'modujs';\nimport modularLoad from 'modularload';\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n const load = new modularLoad({\n enterDelay: 0,\n transitions: {\n customTransition: {}\n }\n });\n\n load.on('loaded', (transition, oldContainer, newContainer) => {\n this.call('destroy', oldContainer, 'app');\n this.call('update', newContainer, 'app');\n });\n }\n}\n", "import { CSS_CLASS } from '../config'\n\n/**\n * Get an image meta data\n *\n * @param {HTMLImageElement} $img - The image element.\n * @return {object} The given image meta data\n */\n\nconst getImageMetadata = $img => ({\n url: $img.src,\n width: $img.naturalWidth,\n height: $img.naturalHeight,\n ratio: $img.naturalWidth / $img.naturalHeight,\n})\n\n\n/**\n * Load the given image.\n *\n * @param {string} url - The URI to lazy load into $el.\n * @param {object} options - An object of options\n * @return {void}\n */\n\nconst loadImage = (url, options = {}) => {\n return new Promise((resolve, reject) => {\n const $img = new Image()\n\n if (options.crossOrigin) {\n $img.crossOrigin = options.crossOrigin\n }\n\n const loadCallback = () => {\n resolve({\n element: $img,\n ...getImageMetadata($img),\n })\n }\n\n if($img.decode) {\n $img.src = url\n $img.decode().then(loadCallback).catch(e => {\n reject(e)\n })\n } else {\n $img.onload = loadCallback\n $img.onerror = (e) => {\n reject(e)\n }\n $img.src = url\n }\n })\n}\n\n\n/**\n * Lazy load the given image.\n *\n * @param {HTMLImageElement} $el - The image element.\n * @param {?string} url - The URI to lazy load into $el.\n * If falsey, the value of the `data-src` attribute on $el will be used as the URI.\n * @param {?function} callback - A function to call when the image is loaded.\n * @return {void}\n */\n\nconst LAZY_LOADED_IMAGES = []\nconst lazyLoadImage = async ($el, url, callback) => {\n let src = url ? url : $el.dataset.src\n\n let loadedImage = LAZY_LOADED_IMAGES.find(image => image.url === src)\n\n if (!loadedImage) {\n loadedImage = await loadImage(src)\n\n if (!loadedImage.url) {\n return\n }\n\n LAZY_LOADED_IMAGES.push(loadedImage)\n }\n\n if($el.src === src) {\n return\n }\n\n if ($el.tagName === 'IMG') {\n $el.src = loadedImage.url\n } else {\n $el.style.backgroundImage = `url(${loadedImage.url})`\n }\n\n requestAnimationFrame(() => {\n let lazyParent = $el.closest(`.${CSS_CLASS.LAZY_CONTAINER}`)\n\n if(lazyParent) {\n lazyParent.classList.add(CSS_CLASS.LAZY_LOADED)\n lazyParent.style.backgroundImage = ''\n }\n\n $el.classList.add(CSS_CLASS.LAZY_LOADED)\n\n callback?.()\n })\n}\n\n\nexport {\n getImageMetadata,\n loadImage,\n lazyLoadImage\n}\n", "// Clamp a value between a minimum and maximum value\r\nexport function clamp(min, input, max) {\r\n return Math.max(min, Math.min(input, max))\r\n}\r\n\r\n// Truncate a floating-point number to a specified number of decimal places\r\nexport function truncate(value, decimals = 0) {\r\n return parseFloat(value.toFixed(decimals))\r\n}\r\n\r\n// Linearly interpolate between two values using an amount (0 <= t <= 1)\r\nexport function lerp(x, y, t) {\r\n return (1 - t) * x + t * y\r\n}\r\n\r\n// http://www.rorydriscoll.com/2016/03/07/frame-rate-independent-damping-using-lerp/\r\nexport function damp(x, y, lambda, dt) {\r\n return lerp(x, y, 1 - Math.exp(-lambda * dt))\r\n}\r\n\r\n// Calculate the modulo of the dividend and divisor while keeping the result within the same sign as the divisor\r\n// https://anguscroll.com/just/just-modulo\r\nexport function modulo(n, d) {\r\n return ((n % d) + d) % d\r\n}\r\n", "import { clamp, damp } from './maths'\r\n\r\n// Animate class to handle value animations with lerping or easing\r\nexport class Animate {\r\n // Advance the animation by the given delta time\r\n advance(deltaTime) {\r\n if (!this.isRunning) return\r\n\r\n let completed = false\r\n\r\n if (this.lerp) {\r\n this.value = damp(this.value, this.to, this.lerp * 60, deltaTime)\r\n if (Math.round(this.value) === this.to) {\r\n this.value = this.to\r\n completed = true\r\n }\r\n } else {\r\n this.currentTime += deltaTime\r\n const linearProgress = clamp(0, this.currentTime / this.duration, 1)\r\n\r\n completed = linearProgress >= 1\r\n const easedProgress = completed ? 1 : this.easing(linearProgress)\r\n this.value = this.from + (this.to - this.from) * easedProgress\r\n }\r\n\r\n // Call the onUpdate callback with the current value and completed status\r\n\r\n this.onUpdate?.(this.value, completed)\r\n\r\n if (completed) {\r\n this.stop()\r\n }\r\n }\r\n\r\n // Stop the animation\r\n stop() {\r\n this.isRunning = false\r\n }\r\n\r\n // Set up the animation from a starting value to an ending value\r\n // with optional parameters for lerping, duration, easing, and onUpdate callback\r\n fromTo(\r\n from,\r\n to,\r\n { lerp = 0.1, duration = 1, easing = (t) => t, onStart, onUpdate }\r\n ) {\r\n this.from = this.value = from\r\n this.to = to\r\n this.lerp = lerp\r\n this.duration = duration\r\n this.easing = easing\r\n this.currentTime = 0\r\n this.isRunning = true\r\n\r\n onStart?.()\r\n this.onUpdate = onUpdate\r\n }\r\n}\r\n", "import { debounce } from './debounce'\r\n\r\nexport class Dimensions {\r\n constructor({ wrapper, content, autoResize = true } = {}) {\r\n this.wrapper = wrapper\r\n this.content = content\r\n\r\n if (autoResize) {\r\n const resize = debounce(this.resize, 250)\r\n\r\n if (this.wrapper !== window) {\r\n this.wrapperResizeObserver = new ResizeObserver(resize)\r\n this.wrapperResizeObserver.observe(this.wrapper)\r\n }\r\n\r\n this.contentResizeObserver = new ResizeObserver(resize)\r\n this.contentResizeObserver.observe(this.content)\r\n }\r\n\r\n this.resize()\r\n }\r\n\r\n destroy() {\r\n this.wrapperResizeObserver?.disconnect()\r\n this.contentResizeObserver?.disconnect()\r\n }\r\n\r\n resize = () => {\r\n this.onWrapperResize()\r\n this.onContentResize()\r\n }\r\n\r\n onWrapperResize = () => {\r\n if (this.wrapper === window) {\r\n this.width = window.innerWidth\r\n this.height = window.innerHeight\r\n } else {\r\n this.width = this.wrapper.clientWidth\r\n this.height = this.wrapper.clientHeight\r\n }\r\n }\r\n\r\n onContentResize = () => {\r\n this.scrollHeight = this.content.scrollHeight\r\n this.scrollWidth = this.content.scrollWidth\r\n }\r\n\r\n get limit() {\r\n return {\r\n x: this.scrollWidth - this.width,\r\n y: this.scrollHeight - this.height,\r\n }\r\n }\r\n}\r\n", "export function debounce(callback, delay) {\r\n let timer\r\n return function () {\r\n let args = arguments\r\n let context = this\r\n clearTimeout(timer)\r\n timer = setTimeout(function () {\r\n callback.apply(context, args)\r\n }, delay)\r\n }\r\n}\r\n", "export class Emitter {\r\n constructor() {\r\n this.events = {}\r\n }\r\n\r\n emit(event, ...args) {\r\n let callbacks = this.events[event] || []\r\n for (let i = 0, length = callbacks.length; i < length; i++) {\r\n callbacks[i](...args)\r\n }\r\n }\r\n\r\n on(event, cb) {\r\n // Add the callback to the event's callback list, or create a new list with the callback\r\n this.events[event]?.push(cb) || (this.events[event] = [cb])\r\n\r\n // Return an unsubscribe function\r\n return () => {\r\n this.events[event] = this.events[event]?.filter((i) => cb !== i)\r\n }\r\n }\r\n\r\n off(event, callback) {\r\n this.events[event] = this.events[event]?.filter((i) => callback !== i)\r\n }\r\n\r\n destroy() {\r\n this.events = {}\r\n }\r\n}\r\n", "import { Emitter } from './emitter'\r\nimport { clamp } from './maths'\r\n\r\nexport class VirtualScroll {\r\n constructor(\r\n element,\r\n { wheelMultiplier = 1, touchMultiplier = 2, normalizeWheel = false }\r\n ) {\r\n this.element = element\r\n this.wheelMultiplier = wheelMultiplier\r\n this.touchMultiplier = touchMultiplier\r\n this.normalizeWheel = normalizeWheel\r\n\r\n this.touchStart = {\r\n x: null,\r\n y: null,\r\n }\r\n\r\n this.emitter = new Emitter()\r\n\r\n this.element.addEventListener('wheel', this.onWheel, { passive: false })\r\n this.element.addEventListener('touchstart', this.onTouchStart, {\r\n passive: false,\r\n })\r\n this.element.addEventListener('touchmove', this.onTouchMove, {\r\n passive: false,\r\n })\r\n this.element.addEventListener('touchend', this.onTouchEnd, {\r\n passive: false,\r\n })\r\n }\r\n\r\n // Add an event listener for the given event and callback\r\n on(event, callback) {\r\n return this.emitter.on(event, callback)\r\n }\r\n\r\n // Remove all event listeners and clean up\r\n destroy() {\r\n this.emitter.destroy()\r\n\r\n this.element.removeEventListener('wheel', this.onWheel, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchstart', this.onTouchStart, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchmove', this.onTouchMove, {\r\n passive: false,\r\n })\r\n this.element.removeEventListener('touchend', this.onTouchEnd, {\r\n passive: false,\r\n })\r\n }\r\n\r\n // Event handler for 'touchstart' event\r\n onTouchStart = (event) => {\r\n const { clientX, clientY } = event.targetTouches\r\n ? event.targetTouches[0]\r\n : event\r\n\r\n this.touchStart.x = clientX\r\n this.touchStart.y = clientY\r\n\r\n this.lastDelta = {\r\n x: 0,\r\n y: 0,\r\n }\r\n }\r\n\r\n // Event handler for 'touchmove' event\r\n onTouchMove = (event) => {\r\n const { clientX, clientY } = event.targetTouches\r\n ? event.targetTouches[0]\r\n : event\r\n\r\n const deltaX = -(clientX - this.touchStart.x) * this.touchMultiplier\r\n const deltaY = -(clientY - this.touchStart.y) * this.touchMultiplier\r\n\r\n this.touchStart.x = clientX\r\n this.touchStart.y = clientY\r\n\r\n this.lastDelta = {\r\n x: deltaX,\r\n y: deltaY,\r\n }\r\n\r\n this.emitter.emit('scroll', {\r\n deltaX,\r\n deltaY,\r\n event,\r\n })\r\n }\r\n\r\n onTouchEnd = (event) => {\r\n this.emitter.emit('scroll', {\r\n deltaX: this.lastDelta.x,\r\n deltaY: this.lastDelta.y,\r\n event,\r\n })\r\n }\r\n\r\n // Event handler for 'wheel' event\r\n onWheel = (event) => {\r\n let { deltaX, deltaY } = event\r\n\r\n if (this.normalizeWheel) {\r\n deltaX = clamp(-100, deltaX, 100)\r\n deltaY = clamp(-100, deltaY, 100)\r\n }\r\n\r\n deltaX *= this.wheelMultiplier\r\n deltaY *= this.wheelMultiplier\r\n\r\n this.emitter.emit('scroll', { deltaX, deltaY, event })\r\n }\r\n}\r\n", "import { version } from '../package.json'\r\nimport { Animate } from './animate'\r\nimport { Dimensions } from './dimensions'\r\nimport { Emitter } from './emitter'\r\nimport { clamp, modulo } from './maths'\r\nimport { VirtualScroll } from './virtual-scroll'\r\n\r\n// Technical explanation\r\n// - listen to 'wheel' events\r\n// - prevent 'wheel' event to prevent scroll\r\n// - normalize wheel delta\r\n// - add delta to targetScroll\r\n// - animate scroll to targetScroll (smooth context)\r\n// - if animation is not running, listen to 'scroll' events (native context)\r\n\r\nexport default class Lenis {\r\n // isScrolling = true when scroll is animating\r\n // isStopped = true if user should not be able to scroll - enable/disable programmatically\r\n // isSmooth = true if scroll should be animated\r\n // isLocked = same as isStopped but enabled/disabled when scroll reaches target\r\n\r\n /**\r\n * @typedef {(t: number) => number} EasingFunction\r\n * @typedef {'vertical' | 'horizontal'} Orientation\r\n * @typedef {'vertical' | 'horizontal' | 'both'} GestureOrientation\r\n *\r\n * @typedef LenisOptions\r\n * @property {Window | HTMLElement} [wrapper]\r\n * @property {HTMLElement} [content]\r\n * @property {Window | HTMLElement} [wheelEventsTarget] // deprecated\r\n * @property {Window | HTMLElement} [eventsTarget]\r\n * @property {boolean} [smoothWheel]\r\n * @property {boolean} [smoothTouch]\r\n * @property {boolean} [syncTouch]\r\n * @property {number} [syncTouchLerp]\r\n * @property {number} [__iosNoInertiaSyncTouchLerp]\r\n * @property {number} [touchInertiaMultiplier]\r\n * @property {number} [duration]\r\n * @property {EasingFunction} [easing]\r\n * @property {number} [lerp]\r\n * @property {boolean} [infinite]\r\n * @property {Orientation} [orientation]\r\n * @property {GestureOrientation} [gestureOrientation]\r\n * @property {number} [touchMultiplier]\r\n * @property {number} [wheelMultiplier]\r\n * @property {boolean} [normalizeWheel]\r\n * @property {boolean} [autoResize]\r\n *\r\n * @param {LenisOptions}\r\n */\r\n constructor({\r\n wrapper = window,\r\n content = document.documentElement,\r\n wheelEventsTarget = wrapper, // deprecated\r\n eventsTarget = wheelEventsTarget,\r\n smoothWheel = true,\r\n smoothTouch = false,\r\n syncTouch = false,\r\n syncTouchLerp = 0.1,\r\n __iosNoInertiaSyncTouchLerp = 0.4, // should be 1 but had to leave 0.4 for iOS (testing purpose)\r\n touchInertiaMultiplier = 35,\r\n duration, // in seconds\r\n easing = (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)),\r\n lerp = !duration && 0.1,\r\n infinite = false,\r\n orientation = 'vertical', // vertical, horizontal\r\n gestureOrientation = 'vertical', // vertical, horizontal, both\r\n touchMultiplier = 1,\r\n wheelMultiplier = 1,\r\n normalizeWheel = false,\r\n autoResize = true,\r\n } = {}) {\r\n window.lenisVersion = version\r\n\r\n // if wrapper is html or body, fallback to window\r\n if (wrapper === document.documentElement || wrapper === document.body) {\r\n wrapper = window\r\n }\r\n\r\n this.options = {\r\n wrapper,\r\n content,\r\n wheelEventsTarget,\r\n eventsTarget,\r\n smoothWheel,\r\n smoothTouch,\r\n syncTouch,\r\n syncTouchLerp,\r\n __iosNoInertiaSyncTouchLerp,\r\n touchInertiaMultiplier,\r\n duration,\r\n easing,\r\n lerp,\r\n infinite,\r\n gestureOrientation,\r\n orientation,\r\n touchMultiplier,\r\n wheelMultiplier,\r\n normalizeWheel,\r\n autoResize,\r\n }\r\n\r\n this.animate = new Animate()\r\n this.emitter = new Emitter()\r\n this.dimensions = new Dimensions({ wrapper, content, autoResize })\r\n this.toggleClass('lenis', true)\r\n\r\n this.velocity = 0\r\n this.isLocked = false\r\n this.isStopped = false\r\n this.isSmooth = syncTouch || smoothWheel || smoothTouch\r\n this.isScrolling = false\r\n this.targetScroll = this.animatedScroll = this.actualScroll\r\n\r\n this.options.wrapper.addEventListener('scroll', this.onScroll, {\r\n passive: false,\r\n })\r\n\r\n this.virtualScroll = new VirtualScroll(eventsTarget, {\r\n touchMultiplier,\r\n wheelMultiplier,\r\n normalizeWheel,\r\n })\r\n this.virtualScroll.on('scroll', this.onVirtualScroll)\r\n }\r\n\r\n destroy() {\r\n this.emitter.destroy()\r\n\r\n this.options.wrapper.removeEventListener('scroll', this.onScroll, {\r\n passive: false,\r\n })\r\n\r\n this.virtualScroll.destroy()\r\n this.dimensions.destroy()\r\n\r\n this.toggleClass('lenis', false)\r\n this.toggleClass('lenis-smooth', false)\r\n this.toggleClass('lenis-scrolling', false)\r\n this.toggleClass('lenis-stopped', false)\r\n this.toggleClass('lenis-locked', false)\r\n }\r\n\r\n on(event, callback) {\r\n return this.emitter.on(event, callback)\r\n }\r\n\r\n off(event, callback) {\r\n return this.emitter.off(event, callback)\r\n }\r\n\r\n setScroll(scroll) {\r\n // apply scroll value immediately\r\n if (this.isHorizontal) {\r\n this.rootElement.scrollLeft = scroll\r\n } else {\r\n this.rootElement.scrollTop = scroll\r\n }\r\n }\r\n\r\n onVirtualScroll = ({ deltaX, deltaY, event }) => {\r\n // keep zoom feature\r\n if (event.ctrlKey) return\r\n\r\n const isTouch = event.type.includes('touch')\r\n const isWheel = event.type.includes('wheel')\r\n\r\n if (\r\n (this.options.gestureOrientation === 'both' &&\r\n deltaX === 0 &&\r\n deltaY === 0) || // \"touchend\" events prevents \"click\"\r\n (this.options.gestureOrientation === 'vertical' && deltaY === 0) || // trackpad previous/next page gesture\r\n (this.options.gestureOrientation === 'horizontal' && deltaX === 0) ||\r\n (isTouch &&\r\n this.options.gestureOrientation === 'vertical' &&\r\n this.scroll === 0 &&\r\n !this.options.infinite &&\r\n deltaY <= 0) // touch pull to refresh\r\n )\r\n return\r\n\r\n // catch if scrolling on nested scroll elements\r\n let composedPath = event.composedPath()\r\n composedPath = composedPath.slice(0, composedPath.indexOf(this.rootElement)) // remove parents elements\r\n\r\n if (\r\n !!composedPath.find(\r\n (node) =>\r\n node.hasAttribute?.('data-lenis-prevent') ||\r\n (isTouch && node.hasAttribute?.('data-lenis-prevent-touch')) ||\r\n (isWheel && node.hasAttribute?.('data-lenis-prevent-wheel')) ||\r\n node.classList?.contains('lenis') // nested lenis instance\r\n )\r\n )\r\n return\r\n\r\n if (this.isStopped || this.isLocked) {\r\n event.preventDefault()\r\n return\r\n }\r\n\r\n this.isSmooth =\r\n ((this.options.smoothTouch || this.options.syncTouch) && isTouch) ||\r\n (this.options.smoothWheel && isWheel)\r\n\r\n if (!this.isSmooth) {\r\n this.isScrolling = false\r\n this.animate.stop()\r\n return\r\n }\r\n\r\n event.preventDefault()\r\n\r\n let delta = deltaY\r\n if (this.options.gestureOrientation === 'both') {\r\n delta = Math.abs(deltaY) > Math.abs(deltaX) ? deltaY : deltaX\r\n } else if (this.options.gestureOrientation === 'horizontal') {\r\n delta = deltaX\r\n }\r\n\r\n const syncTouch = isTouch && this.options.syncTouch\r\n const isTouchEnd = isTouch && event.type === 'touchend'\r\n const hasTouchInertia = isTouchEnd && Math.abs(delta) > 1\r\n if (hasTouchInertia) {\r\n delta = this.velocity * this.options.touchInertiaMultiplier\r\n }\r\n\r\n this.scrollTo(this.targetScroll + delta, {\r\n programmatic: false,\r\n ...(syncTouch && {\r\n lerp: hasTouchInertia\r\n ? this.syncTouchLerp\r\n : this.options.__iosNoInertiaSyncTouchLerp,\r\n }),\r\n })\r\n }\r\n\r\n resize() {\r\n this.dimensions.resize()\r\n }\r\n\r\n emit() {\r\n this.emitter.emit('scroll', this)\r\n }\r\n\r\n onScroll = () => {\r\n if (!this.isScrolling) {\r\n const lastScroll = this.animatedScroll\r\n this.animatedScroll = this.targetScroll = this.actualScroll\r\n this.velocity = 0\r\n this.direction = Math.sign(this.animatedScroll - lastScroll)\r\n this.emit()\r\n }\r\n }\r\n\r\n reset() {\r\n this.isLocked = false\r\n this.isScrolling = false\r\n this.velocity = 0\r\n this.animate.stop()\r\n }\r\n\r\n start() {\r\n this.isStopped = false\r\n\r\n this.reset()\r\n }\r\n\r\n stop() {\r\n this.isStopped = true\r\n this.animate.stop()\r\n\r\n this.reset()\r\n }\r\n\r\n raf(time) {\r\n const deltaTime = time - (this.time || time)\r\n this.time = time\r\n\r\n this.animate.advance(deltaTime * 0.001)\r\n }\r\n\r\n scrollTo(\r\n target,\r\n {\r\n offset = 0,\r\n immediate = false,\r\n lock = false,\r\n duration = this.options.duration,\r\n easing = this.options.easing,\r\n lerp = !duration && this.options.lerp,\r\n onComplete = null,\r\n force = false, // scroll even if stopped\r\n programmatic = true, // called from outside of the class\r\n } = {}\r\n ) {\r\n if ((this.isStopped || this.isLocked) && !force) return\r\n\r\n // keywords\r\n if (['top', 'left', 'start'].includes(target)) {\r\n target = 0\r\n } else if (['bottom', 'right', 'end'].includes(target)) {\r\n target = this.limit\r\n } else {\r\n let node\r\n\r\n if (typeof target === 'string') {\r\n // CSS selector\r\n node = document.querySelector(target)\r\n } else if (target?.nodeType) {\r\n // Node element\r\n node = target\r\n }\r\n\r\n if (node) {\r\n if (this.options.wrapper !== window) {\r\n // nested scroll offset correction\r\n const wrapperRect = this.options.wrapper.getBoundingClientRect()\r\n offset -= this.isHorizontal ? wrapperRect.left : wrapperRect.top\r\n }\r\n\r\n const rect = node.getBoundingClientRect()\r\n\r\n target =\r\n (this.isHorizontal ? rect.left : rect.top) + this.animatedScroll\r\n }\r\n }\r\n\r\n if (typeof target !== 'number') return\r\n\r\n target += offset\r\n target = Math.round(target)\r\n\r\n if (this.options.infinite) {\r\n if (programmatic) {\r\n this.targetScroll = this.animatedScroll = this.scroll\r\n }\r\n } else {\r\n target = clamp(0, target, this.limit)\r\n }\r\n\r\n if (immediate) {\r\n this.animatedScroll = this.targetScroll = target\r\n this.setScroll(this.scroll)\r\n this.reset()\r\n onComplete?.(this)\r\n return\r\n }\r\n\r\n if (!programmatic) {\r\n if (target === this.targetScroll) return\r\n\r\n this.targetScroll = target\r\n }\r\n\r\n this.animate.fromTo(this.animatedScroll, target, {\r\n duration,\r\n easing,\r\n lerp,\r\n onStart: () => {\r\n // started\r\n if (lock) this.isLocked = true\r\n this.isScrolling = true\r\n },\r\n onUpdate: (value, completed) => {\r\n this.isScrolling = true\r\n\r\n // updated\r\n this.velocity = value - this.animatedScroll\r\n this.direction = Math.sign(this.velocity)\r\n\r\n this.animatedScroll = value\r\n this.setScroll(this.scroll)\r\n\r\n if (programmatic) {\r\n // wheel during programmatic should stop it\r\n this.targetScroll = value\r\n }\r\n\r\n if (!completed) this.emit()\r\n\r\n if (completed) {\r\n // avoid emitting twice (onScroll)\r\n requestAnimationFrame(() => {\r\n this.reset()\r\n this.emit()\r\n onComplete?.(this)\r\n })\r\n }\r\n },\r\n })\r\n }\r\n\r\n get rootElement() {\r\n return this.options.wrapper === window\r\n ? this.options.content\r\n : this.options.wrapper\r\n }\r\n\r\n get limit() {\r\n return this.dimensions.limit[this.isHorizontal ? 'x' : 'y']\r\n }\r\n\r\n get isHorizontal() {\r\n return this.options.orientation === 'horizontal'\r\n }\r\n\r\n get actualScroll() {\r\n // value browser takes into account\r\n return this.isHorizontal\r\n ? this.rootElement.scrollLeft\r\n : this.rootElement.scrollTop\r\n }\r\n\r\n get scroll() {\r\n return this.options.infinite\r\n ? modulo(this.animatedScroll, this.limit)\r\n : this.animatedScroll\r\n }\r\n\r\n get progress() {\r\n // avoid progress to be NaN\r\n return this.limit === 0 ? 1 : this.scroll / this.limit\r\n }\r\n\r\n get isSmooth() {\r\n return this.__isSmooth\r\n }\r\n\r\n set isSmooth(value) {\r\n if (this.__isSmooth !== value) {\r\n this.__isSmooth = value\r\n this.toggleClass('lenis-smooth', value)\r\n }\r\n }\r\n\r\n get isScrolling() {\r\n return this.__isScrolling\r\n }\r\n\r\n set isScrolling(value) {\r\n if (this.__isScrolling !== value) {\r\n this.__isScrolling = value\r\n this.toggleClass('lenis-scrolling', value)\r\n }\r\n }\r\n\r\n get isStopped() {\r\n return this.__isStopped\r\n }\r\n\r\n set isStopped(value) {\r\n if (this.__isStopped !== value) {\r\n this.__isStopped = value\r\n this.toggleClass('lenis-stopped', value)\r\n }\r\n }\r\n\r\n get isLocked() {\r\n return this.__isLocked\r\n }\r\n\r\n set isLocked(value) {\r\n if (this.__isLocked !== value) {\r\n this.__isLocked = value\r\n this.toggleClass('lenis-locked', value)\r\n }\r\n }\r\n\r\n get className() {\r\n let className = 'lenis'\r\n if (this.isStopped) className += ' lenis-stopped'\r\n if (this.isLocked) className += ' lenis-locked'\r\n if (this.isScrolling) className += ' lenis-scrolling'\r\n if (this.isSmooth) className += ' lenis-smooth'\r\n return className\r\n }\r\n\r\n toggleClass(name, value) {\r\n this.rootElement.classList.toggle(name, value)\r\n this.emitter.emit('className change', this)\r\n }\r\n}\r\n", "/**\n * Intersection Observer\n *\n * Detecting visibility of an element in the viewport.\n *\n * Features functions to:\n *\n * - Trigger inview/outOfView callbacks\n * - If the element has a requestAnimationFrame dependency, set interactivy status for the ScrollElement Class\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API}\n */\n\nimport { IIOOptions } from '../types';\nimport ScrollElement from './ScrollElement';\n\nexport default class IO {\n public scrollElements: ScrollElement[];\n private rootMargin: string;\n private IORaf: boolean;\n private observer!: IntersectionObserver;\n\n constructor({\n scrollElements,\n rootMargin = '-1px -1px -1px -1px',\n IORaf,\n }: IIOOptions) {\n // Parameters\n this.scrollElements = scrollElements;\n this.rootMargin = rootMargin;\n this.IORaf = IORaf;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize Intersection Observer.\n *\n * @private\n */\n private _init() {\n // Options\n const observerOptions = {\n rootMargin: this.rootMargin,\n };\n\n // Callback\n const onIntersect = (entries: IntersectionObserverEntry[]) => {\n entries.forEach((entry) => {\n const $targetItem: ScrollElement | undefined =\n this.scrollElements.find(\n (item) => item.$el === entry.target\n );\n\n if (entry.isIntersecting) {\n $targetItem && ($targetItem.isAlreadyIntersected = true);\n this._setInview(entry);\n } else if ($targetItem && $targetItem.isAlreadyIntersected) {\n this._setOutOfView(entry);\n }\n });\n };\n\n // Instance\n this.observer = new IntersectionObserver(onIntersect, observerOptions);\n\n // Observe each default elements\n for (const scrollElement of this.scrollElements) {\n const $scrollElement = scrollElement.$el;\n this.observe($scrollElement);\n }\n }\n\n /**\n * Lifecyle - Destroy Intersection Observer.\n */\n public destroy() {\n this.observer.disconnect();\n }\n\n /**\n * Subscribe element to the Intersection Observer.\n *\n * @param {HTMLElement} $scrollElement - DOM Element to observe.\n */\n public observe($scrollElement: HTMLElement) {\n if (!$scrollElement) {\n return;\n }\n\n this.observer.observe($scrollElement);\n }\n\n /**\n * Unsubscribe element to the Intersection Observer.\n *\n * @param {HTMLElement} $scrollElement - DOM Element to unobserve.\n */\n public unobserve($scrollElement: HTMLElement) {\n if (!$scrollElement) {\n return;\n }\n\n this.observer.unobserve($scrollElement);\n }\n\n /**\n * Find ScrollElementReference instance and trigger inview callbacks.\n *\n * @private\n *\n * @param {IntersectionObserverEntry} entry - DOM Element to observe.\n */\n private _setInview(entry: IntersectionObserverEntry) {\n const scrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === entry.target\n );\n\n this.IORaf && scrollElement?.setInteractivityOn();\n !this.IORaf && scrollElement?.setInview();\n }\n\n /**\n * Find ScrollElementReference instance and trigger out of view callbacks.\n *\n * @private\n *\n * @param {IntersectionObserverEntry} entry - DOM Element to observe.\n */\n private _setOutOfView(entry: IntersectionObserverEntry) {\n const scrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === entry.target\n );\n\n this.IORaf && scrollElement?.setInteractivityOff();\n !this.IORaf && scrollElement?.setOutOfView();\n\n // Unobserve if element doesn't have repeat attribute\n if (!scrollElement?.attributes.scrollRepeat && !this.IORaf) {\n this.unobserve(entry.target as HTMLElement);\n }\n }\n}\n", "// https://greensock.com/docs/v3/GSAP/gsap.utils\n\n/**\n * Clamp a value to fit within a specific range (ex: clamp(0, 100, -12) --> 0).\n *\n * @param {number} min - Minimum value expected.\n * @param {number} max - Maximum value expected.\n * @param {number} value - Current value.\n *\n * @returns {number} - Clamped value.\n */\nexport function clamp(min: number, max: number, value: number): number {\n return value < min ? min : value > max ? max : value;\n}\n\n/**\n * Map one range to another (ex: mapRange(-10, 10, 0, 100, 5) --> 75).\n *\n * @param {number} inMin - Current minimum value.\n * @param {number} inMax - Current maximum value.\n * @param {number} outMin - Maximum value expected.\n * @param {number} outMax - Maximum value expected.\n * @param {number} value - Current value.\n *\n * @returns {number} - New value that should be between minimum value expected and maximum value.\n */\nexport function mapRange(\n inMin: number,\n inMax: number,\n outMin: number,\n outMax: number,\n value: number\n): number {\n const inRange = inMax - inMin;\n const outRange = outMax - outMin;\n return outMin + (((value - inMin) / inRange) * outRange || 0);\n}\n\n/**\n * Map a number within a range to a progress between 0 to 1 (ex: normalize(100, 200, 150) --> 0.5).\n *\n * @param {number} min - Current minimum value.\n * @param {number} max - Current maximum value.\n * @param {number} value - Current value.\n *\n * @returns {number} - New value that should be between 0 and 1.\n */\nexport function normalize(min: number, max: number, value: number): number {\n return mapRange(min, max, 0, 1, value);\n}\n\n/**\n * Get closest number from an array.\n *\n * @param {number[]} array - Numbers array.\n * @param {number} target - Reference value.\n *\n * @returns {number} - Closest number.\n */\nexport function closestNumber(array: number[], target: number): number {\n return array.reduce((prev, curr) => {\n return Math.abs(curr - target) < Math.abs(prev - target) ? curr : prev;\n });\n}\n", "/**\n * Scroll Element\n *\n * Give tools to compute element progress in the viewport and triggers callbacks to animate it.\n *\n * Features functions to:\n *\n * - scrollClass - Add a custom class when the element is intersected by the offset\n * - scrollOffset - Determine offsets to intersect the element\n * - scrollPosition - Determine the element positions to consider an element as intersected.\n * - scrollModuleProgress - Send scroll progress to modular module that have a specific method (PROGRESS_MODULAR_METHOD)\n * - scrollCssProgress - Add a specific css variable (PROGRESS_CSS_VAR) that store the scroll progress\n * - scrollEventProgress - Send scroll progress to custom event listeners.\n * - scrollSpeed - Add a scroll multiplicator to create a parallax effect\n * - scrollRepeat - Repeat the option to trigger animation each time the element is intersected\n * - scrollCall - Call a custom event or a modular callback when the element is intersected\n */\n\nimport {\n IModular,\n IScrollElementOptions,\n IScrollElementAttributes,\n IScrollElementIntersection,\n IScrollElementMetrics,\n IProgressModularModules,\n IScrollElementCallbacksValues,\n scrollCallWay,\n scrollCallFrom,\n scrollOrientation,\n} from '../types';\nimport { clamp, closestNumber, normalize, mapRange } from '../utils/maths';\n\n/** Constants */\nconst INVIEW_CLASS = 'is-inview';\nconst PROGRESS_CSS_VAR = '--progress';\nconst PROGRESS_MODULAR_METHOD = 'onScrollProgress';\n\nexport default class ScrollElement {\n public $el: HTMLElement;\n public id: number;\n public needRaf: boolean;\n public attributes: IScrollElementAttributes;\n public scrollOrientation: scrollOrientation;\n public isAlreadyIntersected: boolean;\n\n private intersection: IScrollElementIntersection;\n private metrics: IScrollElementMetrics;\n private currentScroll: number;\n private translateValue: number;\n private progress: number;\n private lastProgress: number | null;\n private modularInstance?: IModular;\n private progressModularModules: IProgressModularModules[];\n private isInview: boolean;\n private isInteractive: boolean;\n private isInFold: boolean;\n private isFirstResize: boolean;\n\n private subscribeElementUpdateFn: (scrollElement: ScrollElement) => void;\n private unsubscribeElementUpdateFn: (scrollElement: ScrollElement) => void;\n\n constructor({\n $el,\n id,\n modularInstance,\n subscribeElementUpdateFn,\n unsubscribeElementUpdateFn,\n needRaf,\n scrollOrientation,\n }: IScrollElementOptions) {\n // Scroll DOM element\n this.$el = $el;\n // Unique ID\n this.id = id;\n // RAF option\n this.needRaf = needRaf;\n // Scroll Direction\n this.scrollOrientation = scrollOrientation;\n // Modular.js\n this.modularInstance = modularInstance;\n // Parent's callbacks\n this.subscribeElementUpdateFn = subscribeElementUpdateFn;\n this.unsubscribeElementUpdateFn = unsubscribeElementUpdateFn;\n\n // Attributes\n this.attributes = {\n scrollClass: this.$el.dataset['scrollClass'] ?? INVIEW_CLASS,\n scrollOffset: this.$el.dataset['scrollOffset'] ?? '0,0',\n scrollPosition: this.$el.dataset['scrollPosition'] ?? 'start,end',\n scrollModuleProgress:\n this.$el.dataset['scrollModuleProgress'] != null,\n scrollCssProgress: this.$el.dataset['scrollCssProgress'] != null,\n scrollEventProgress:\n this.$el.dataset['scrollEventProgress'] ?? null,\n scrollSpeed:\n this.$el.dataset['scrollSpeed'] != null\n ? parseFloat(this.$el.dataset['scrollSpeed'])\n : null,\n scrollRepeat: this.$el.dataset['scrollRepeat'] != null,\n scrollCall: this.$el.dataset['scrollCall'] ?? null,\n scrollCallSelf: this.$el.dataset['scrollCallSelf'] != null,\n scrollIgnoreFold: this.$el.dataset['scrollIgnoreFold'] != null,\n scrollEnableTouchSpeed:\n this.$el.dataset['scrollEnableTouchSpeed'] != null,\n };\n\n // Limits\n this.intersection = {\n start: 0,\n end: 0,\n };\n\n // Metrics\n this.metrics = {\n offsetStart: 0,\n offsetEnd: 0,\n bcr: {} as DOMRect,\n };\n\n // Scroll Values\n this.currentScroll =\n this.scrollOrientation === 'vertical'\n ? window.scrollY\n : window.scrollX;\n\n // Parallax\n this.translateValue = 0;\n\n // Progress\n this.progress = 0;\n this.lastProgress = null;\n this.progressModularModules = [];\n\n // Inview\n this.isInview = false;\n this.isInteractive = false;\n this.isAlreadyIntersected = false;\n this.isInFold = false;\n this.isFirstResize = true;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize progress tracking.\n *\n * @private\n */\n private _init() {\n if (!this.needRaf) {\n return;\n }\n\n // Prepare modules progress\n if (this.modularInstance && this.attributes.scrollModuleProgress) {\n this._getProgressModularModules();\n }\n\n // First resize to compute all values\n this._resize();\n }\n\n /**\n * Callback - Resize callback\n */\n public onResize({ currentScroll }: IScrollElementCallbacksValues) {\n this.currentScroll = currentScroll;\n this._resize();\n }\n\n /**\n * Callback - RAF callback\n */\n public onRender({ currentScroll, smooth }: IScrollElementCallbacksValues) {\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n this.currentScroll = currentScroll;\n this._computeProgress();\n\n // Parallax\n if (\n this.attributes.scrollSpeed &&\n !isNaN(this.attributes.scrollSpeed)\n ) {\n // if touch detected or smooth disabled\n if (!this.attributes.scrollEnableTouchSpeed && !smooth) {\n if (this.translateValue) {\n this.$el.style.transform = `translate3d(0, 0, 0)`;\n }\n this.translateValue = 0;\n\n // if mousewheel or smooth enabled\n } else {\n // Check fold condition\n if (this.isInFold) {\n const progress = Math.max(0, this.progress);\n this.translateValue =\n progress * wSize * this.attributes.scrollSpeed * -1;\n } else {\n const progress = mapRange(0, 1, -1, 1, this.progress);\n this.translateValue =\n progress * wSize * this.attributes.scrollSpeed * -1;\n }\n\n this.$el.style.transform =\n this.scrollOrientation === 'vertical'\n ? `translate3d(0, ${this.translateValue}px, 0)`\n : `translate3d(${this.translateValue}px, 0, 0)`;\n }\n }\n }\n\n /**\n * Inview callback\n */\n public setInview() {\n if (this.isInview) {\n return;\n }\n\n this.isInview = true;\n this.$el.classList.add(this.attributes.scrollClass);\n\n const way: scrollCallWay = 'enter';\n const from: scrollCallFrom = this._getScrollCallFrom();\n this.attributes.scrollCall && this._dispatchCall(way, from);\n }\n\n /**\n * Out of view callback\n */\n public setOutOfView() {\n if (!(this.isInview && this.attributes.scrollRepeat)) {\n return;\n }\n\n this.isInview = false;\n this.$el.classList.remove(this.attributes.scrollClass);\n\n const way: scrollCallWay = 'leave';\n const from: scrollCallFrom = this._getScrollCallFrom();\n this.attributes.scrollCall && this._dispatchCall(way, from);\n }\n\n /**\n * Switch interactivity on to subscribe the instance to the RAF\n * and start calculations.\n */\n public setInteractivityOn() {\n if (this.isInteractive) {\n return;\n }\n\n this.isInteractive = true;\n this.subscribeElementUpdateFn(this);\n }\n\n /**\n * Switch interactivity off to unsubscribe the instance to the RAF\n * and stop calculations.\n */\n public setInteractivityOff() {\n if (!this.isInteractive) {\n return;\n }\n\n this.isInteractive = false;\n this.unsubscribeElementUpdateFn(this);\n\n // Force progress to progress limit when the element is out\n this.lastProgress != null &&\n this._computeProgress(closestNumber([0, 1], this.lastProgress));\n }\n\n /**\n * Resize method that compute the element's values.\n *\n * @private\n */\n private _resize() {\n this.metrics.bcr = this.$el.getBoundingClientRect();\n this._computeMetrics();\n this._computeIntersection();\n\n // First resize logic\n if (this.isFirstResize) {\n this.isFirstResize = false;\n // Dispatch default call if the element is in fold.\n if (this.isInFold) {\n this.setInview();\n }\n }\n }\n\n /**\n * Compute element's offsets and determine if the element is in fold.\n *\n * @private\n */\n private _computeMetrics() {\n const { top, left, height, width } = this.metrics.bcr;\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n const metricsStart = this.scrollOrientation === 'vertical' ? top : left;\n const metricsSize =\n this.scrollOrientation === 'vertical' ? height : width;\n\n this.metrics.offsetStart =\n this.currentScroll + metricsStart - this.translateValue;\n this.metrics.offsetEnd = this.metrics.offsetStart + metricsSize;\n\n if (\n this.metrics.offsetStart < wSize &&\n !this.attributes.scrollIgnoreFold\n ) {\n this.isInFold = true;\n } else {\n this.isInFold = false;\n }\n }\n\n /**\n * Compute intersection values depending on the context.\n *\n * @private\n */\n private _computeIntersection() {\n // Window size\n const wSize =\n this.scrollOrientation === 'vertical'\n ? window.innerHeight\n : window.innerWidth;\n\n // Metrics size\n const metricsSize =\n this.scrollOrientation === 'vertical'\n ? this.metrics.bcr.height\n : this.metrics.bcr.width;\n\n // Offset\n const offset = this.attributes.scrollOffset.split(',');\n const offsetStart = offset[0] != undefined ? offset[0].trim() : '0';\n const offsetEnd = offset[1] != undefined ? offset[1].trim() : '0';\n\n // Positions\n const scrollPosition = this.attributes.scrollPosition.split(',');\n let scrollPositionStart =\n scrollPosition[0] != undefined ? scrollPosition[0].trim() : 'start';\n const scrollPositionEnd =\n scrollPosition[1] != undefined ? scrollPosition[1].trim() : 'end';\n\n // Viewport\n const viewportStart = offsetStart.includes('%')\n ? wSize * parseInt(offsetStart.replace('%', '').trim()) * 0.01\n : parseInt(offsetStart);\n const viewportEnd = offsetEnd.includes('%')\n ? wSize * parseInt(offsetEnd.replace('%', '').trim()) * 0.01\n : parseInt(offsetEnd);\n\n // Fold exception\n if (this.isInFold) {\n scrollPositionStart = 'fold';\n }\n\n // Define Intersection Start\n switch (scrollPositionStart) {\n case 'start':\n this.intersection.start =\n this.metrics.offsetStart - wSize + viewportStart;\n break;\n\n case 'middle':\n this.intersection.start =\n this.metrics.offsetStart -\n wSize +\n viewportStart +\n metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.start =\n this.metrics.offsetStart -\n wSize +\n viewportStart +\n metricsSize;\n break;\n\n case 'fold':\n this.intersection.start = 0;\n break;\n\n default:\n this.intersection.start =\n this.metrics.offsetStart - wSize + viewportStart;\n break;\n }\n\n // Define Intersection End\n switch (scrollPositionEnd) {\n case 'start':\n this.intersection.end = this.metrics.offsetStart - viewportEnd;\n break;\n\n case 'middle':\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize;\n break;\n\n default:\n this.intersection.end =\n this.metrics.offsetStart - viewportEnd + metricsSize;\n break;\n }\n\n // Avoid to have the end < the start intersection >\n if (this.intersection.end <= this.intersection.start) {\n switch (scrollPositionEnd) {\n case 'start':\n this.intersection.end = this.intersection.start + 1;\n break;\n\n case 'middle':\n this.intersection.end =\n this.intersection.start + metricsSize * 0.5;\n break;\n\n case 'end':\n this.intersection.end =\n this.intersection.start + metricsSize;\n break;\n\n default:\n this.intersection.end = this.intersection.start + 1;\n break;\n }\n }\n }\n\n /**\n * Compute the scroll progress of the element depending\n * on its intersection values.\n *\n * @private\n *\n * @param {number} [forcedProgress] - Value to force progress.\n */\n private _computeProgress(forcedProgress?: number) {\n // Progress\n const progress =\n forcedProgress ??\n clamp(\n 0,\n 1,\n normalize(\n this.intersection.start,\n this.intersection.end,\n this.currentScroll\n )\n );\n\n this.progress = progress;\n\n if (progress != this.lastProgress) {\n this.lastProgress = progress;\n\n // Set the element's progress to the css variable\n this.attributes.scrollCssProgress && this._setCssProgress(progress);\n\n // Set the element's progress to the custom event listeners\n this.attributes.scrollEventProgress &&\n this._setCustomEventProgress(progress);\n\n // Set the element's progress to inline modules\n if (this.attributes.scrollModuleProgress) {\n for (const modularModules of this.progressModularModules) {\n this.modularInstance &&\n this.modularInstance.call(\n PROGRESS_MODULAR_METHOD,\n progress,\n modularModules.moduleName,\n modularModules.moduleId\n );\n }\n }\n\n // Logic to trigger the inview/out of view callbacks\n progress > 0 && progress < 1 && this.setInview();\n progress === 0 && this.setOutOfView();\n progress === 1 && this.setOutOfView();\n }\n }\n\n /**\n * Set the element's progress to a specific css variable.\n *\n * @private\n *\n * @param {number} [currentProgress] - Progress value.\n */\n _setCssProgress(currentProgress = 0) {\n this.$el.style.setProperty(\n PROGRESS_CSS_VAR,\n currentProgress.toString()\n );\n }\n\n /**\n * Set the element's progress to the custom event listeners.\n *\n * @private\n *\n * @param {number} [currentProgress] - Progress value.\n */\n _setCustomEventProgress(currentProgress = 0) {\n const customEventName = this.attributes.scrollEventProgress;\n\n if (!customEventName) return;\n\n const customEvent = new CustomEvent(customEventName, {\n detail: {\n target: this.$el,\n progress: currentProgress,\n },\n });\n window.dispatchEvent(customEvent);\n }\n\n /**\n * Get modular modules that can listen the element's progress.\n *\n * @private\n */\n _getProgressModularModules() {\n if (!this.modularInstance) {\n return;\n }\n\n const modulesIdNames = Object.keys(this.$el.dataset).filter((key) =>\n key.includes('module')\n );\n const modules: any[] = Object.entries(this.modularInstance.modules);\n\n if (!modulesIdNames.length) {\n return;\n }\n\n for (const modulesIdName of modulesIdNames) {\n const moduleId = this.$el.dataset[modulesIdName];\n\n if (!moduleId) {\n return;\n }\n\n for (const module of modules) {\n const [moduleName, moduleObj] = module;\n\n if (moduleId in moduleObj) {\n this.progressModularModules.push({\n moduleName,\n moduleId,\n });\n }\n }\n }\n }\n\n /**\n * Function to get scroll call from.\n *\n * @private\n */\n _getScrollCallFrom(): scrollCallFrom {\n const closestIntersectionValue = closestNumber(\n [this.intersection.start, this.intersection.end],\n this.currentScroll\n );\n return this.intersection.start === closestIntersectionValue\n ? 'start'\n : 'end';\n }\n\n /**\n * Function to dispatch a custom event or call a modular callback.\n *\n * @private\n *\n * @param {scrollCallWay} way - Enter or leave.\n * @param {scrollCallFrom} from - Start or end.\n */\n _dispatchCall(way: scrollCallWay, from: scrollCallFrom) {\n const callParameters = this.attributes.scrollCall?.split(',');\n const callSelf = this.attributes?.scrollCallSelf;\n\n if (callParameters && callParameters.length > 1) {\n // Using Modular.js (https://github.com/modularorg/modularjs)\n const [func, moduleName, moduleId] = callParameters;\n let targetModuleId;\n\n // If the module is set on the scroll element\n if (callSelf) {\n targetModuleId = this.$el.dataset[`module${moduleName.trim()}`];\n } else {\n targetModuleId = moduleId;\n }\n\n this.modularInstance &&\n this.modularInstance.call(\n func.trim(),\n {\n target: this.$el,\n way,\n from,\n },\n moduleName.trim(),\n targetModuleId?.trim()\n );\n } else if (callParameters) {\n // Using CustomEvent API (https://developer.mozilla.org/en-US/docs/Web/API/CustomEvent)\n const [customEventName] = callParameters;\n const customEvent = new CustomEvent(customEventName, {\n detail: {\n target: this.$el,\n way,\n from,\n },\n });\n window.dispatchEvent(customEvent);\n }\n }\n}\n", "/**\n * Integrates Lenis with Locomotive's built-in animation system\n */\n\nimport {\n CoreOptions,\n IModular,\n IScrollElementCallbacksValues,\n scrollOrientation,\n} from '../types';\nimport IO from './IO';\nimport ScrollElement from './ScrollElement';\n\n/** Defined attributes that need a requestAnimationFrame */\nconst ATTRIBUTES_THAT_NEED_RAF = [\n 'scrollOffset',\n 'scrollPosition',\n 'scrollModuleProgress',\n 'scrollCssProgress',\n 'scrollEventProgress',\n 'scrollSpeed',\n];\n\n/** Default root margins */\nconst TRIGGER_ROOT_MARGIN = '-1px -1px -1px -1px';\nconst RAF_ROOT_MARGIN = '100% 100% 100% 100%'; // Add 100vh top/bottom && 100vw left/right to use a biggest value with data-scroll-speed\n\nexport default class Core {\n private $scrollContainer!: HTMLElement;\n private modularInstance?: IModular;\n private triggerRootMargin!: string;\n private rafRootMargin!: string;\n private scrollElements!: ScrollElement[];\n private triggeredScrollElements!: ScrollElement[];\n private RAFScrollElements!: ScrollElement[];\n private scrollElementsToUpdate!: ScrollElement[];\n private IOTriggerInstance!: IO;\n private IORafInstance!: IO;\n private scrollOrientation!: scrollOrientation;\n\n constructor({\n $el,\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n scrollOrientation,\n }: CoreOptions) {\n if (!$el) {\n console.error('Please provide a DOM Element as scrollContainer');\n return;\n }\n\n // Scroll container\n this.$scrollContainer = $el;\n\n // Modular.js\n this.modularInstance = modularInstance;\n\n // Scroll Direction\n this.scrollOrientation = scrollOrientation;\n\n // IO Margins\n this.triggerRootMargin = triggerRootMargin ?? TRIGGER_ROOT_MARGIN;\n this.rafRootMargin = rafRootMargin ?? RAF_ROOT_MARGIN;\n\n // ScrollElements arrays\n this.scrollElements = [];\n this.triggeredScrollElements = [];\n this.RAFScrollElements = [];\n this.scrollElementsToUpdate = [];\n\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize the core.\n *\n * @private\n */\n private _init() {\n const $scrollElements =\n this.$scrollContainer.querySelectorAll('[data-scroll]');\n\n const $scrollElementsArr = Array.from($scrollElements) as HTMLElement[]\n this._subscribeScrollElements($scrollElementsArr);\n\n // Trigger IO\n this.IOTriggerInstance = new IO({\n scrollElements: [...this.triggeredScrollElements],\n rootMargin: this.triggerRootMargin,\n IORaf: false,\n });\n\n // Raf IO\n this.IORafInstance = new IO({\n scrollElements: [...this.RAFScrollElements],\n rootMargin: this.rafRootMargin,\n IORaf: true,\n });\n }\n\n /**\n * Lifecyle - Destroy core.\n */\n public destroy() {\n this.IOTriggerInstance.destroy();\n this.IORafInstance.destroy();\n this._unsubscribeAllScrollElements();\n }\n\n /**\n * Callback - Resize callback.\n */\n onResize({ currentScroll }: IScrollElementCallbacksValues) {\n for (const scrollElement of this.RAFScrollElements) {\n scrollElement.onResize({\n currentScroll,\n } as IScrollElementCallbacksValues);\n }\n }\n\n /**\n * Callback - RAF callback.\n */\n onRender({ currentScroll, smooth }: IScrollElementCallbacksValues) {\n for (const scrollElement of this.scrollElementsToUpdate) {\n scrollElement.onRender({\n currentScroll,\n smooth,\n } as IScrollElementCallbacksValues);\n }\n }\n\n /**\n * Remove items from lists of scroll elements and compute all new values.\n *\n * @param {HTMLElement} $oldContainer - HTMLElement that contains data-scroll elements to unsubscribe\n */\n removeScrollElements($oldContainer: HTMLElement) {\n const $scrollElementsToRemove =\n $oldContainer.querySelectorAll('[data-scroll]');\n\n if (!$scrollElementsToRemove.length) return;\n\n // 1. Remove from IO\n for (let index = 0; index < this.triggeredScrollElements.length; index++) {\n const scrollElement = this.triggeredScrollElements[index];\n const $scrollElementsToRemoveArr = Array.from($scrollElementsToRemove) as HTMLElement []\n if ($scrollElementsToRemoveArr.indexOf(scrollElement.$el) > -1) {\n this.IOTriggerInstance.unobserve(scrollElement.$el);\n this.triggeredScrollElements.splice(index, 1);\n }\n }\n\n for (let index = 0; index < this.RAFScrollElements.length; index++) {\n const scrollElement = this.RAFScrollElements[index];\n const $scrollElementsToRemoveArr = Array.from($scrollElementsToRemove) as HTMLElement []\n if ($scrollElementsToRemoveArr.indexOf(scrollElement.$el) > -1) {\n this.IORafInstance.unobserve(scrollElement.$el);\n this.RAFScrollElements.splice(index, 1);\n }\n }\n\n // 2. Remove from scrollElementsToUpdate[] and scrollElements[]\n $scrollElementsToRemove.forEach(($scrollElement) => {\n const targetScrollElementToUpdate =\n this.scrollElementsToUpdate.find(\n (scrollElement) => scrollElement.$el === $scrollElement\n );\n const targetScrollElement = this.scrollElements.find(\n (scrollElement) => scrollElement.$el === $scrollElement\n );\n\n if (targetScrollElementToUpdate) {\n this._unsubscribeElementUpdate(targetScrollElementToUpdate);\n }\n if (targetScrollElement) {\n this.scrollElements = this.scrollElements.filter(\n (scrollElementItem) =>\n scrollElementItem.id != targetScrollElement.id\n );\n }\n });\n }\n\n /**\n * Add items to lists of scroll elements and compute all new values.\n *\n * @param {HTMLElement} $newContainer - HTMLElement that contains data-scroll elements to subscribe\n */\n addScrollElements($newContainer: HTMLElement) {\n // 3. Rebuild ScrollElements\n const $scrollElements = $newContainer.querySelectorAll('[data-scroll]');\n\n // 4. Get max scrollElement.id\n const ids: number[] = [];\n this.scrollElements.forEach((scrollElement) => {\n ids.push(scrollElement.id);\n });\n const maxID = Math.max(...ids);\n const fromIndex = maxID + 1;\n const $scrollElementsArr = Array.from($scrollElements) as HTMLElement[]\n this._subscribeScrollElements(\n $scrollElementsArr,\n fromIndex,\n true\n );\n }\n\n /**\n * Create a ScrollElement instance for each elements with\n * `data-scroll` attribute.\n *\n * @private\n *\n * @param {HTMLElement[]} $scrollElements - List of elements that need\n * to be regarded.\n */\n _subscribeScrollElements(\n $scrollElements: HTMLElement[],\n fromIndex = 0,\n toObserve = false\n ) {\n // For each scroll element create a ScrollElement instance\n for (let index = 0; index < $scrollElements.length; index++) {\n const $scrollElement = $scrollElements[index];\n const needRaf = this._checkRafNeeded($scrollElement);\n\n const scrollElementInstance = new ScrollElement({\n $el: $scrollElement,\n id: fromIndex + index,\n scrollOrientation: this.scrollOrientation,\n modularInstance: this.modularInstance,\n subscribeElementUpdateFn:\n this._subscribeElementUpdate.bind(this),\n unsubscribeElementUpdateFn:\n this._unsubscribeElementUpdate.bind(this),\n needRaf,\n });\n\n // Push to common array\n this.scrollElements.push(scrollElementInstance);\n\n // Push to specific array\n if (needRaf) {\n this.RAFScrollElements.push(scrollElementInstance);\n\n // Dynamic observe item\n if (toObserve) {\n this.IORafInstance.scrollElements.push(\n scrollElementInstance\n );\n this.IORafInstance.observe(scrollElementInstance.$el);\n }\n } else {\n this.triggeredScrollElements.push(scrollElementInstance);\n\n // Dynamic observe item\n if (toObserve) {\n this.IOTriggerInstance.scrollElements.push(\n scrollElementInstance\n );\n this.IOTriggerInstance.observe(scrollElementInstance.$el);\n }\n }\n }\n }\n\n /**\n * Clear all ScrollElement arrays.\n *\n * @private\n */\n _unsubscribeAllScrollElements() {\n this.scrollElements = [];\n this.RAFScrollElements = [];\n this.triggeredScrollElements = [];\n this.scrollElementsToUpdate = [];\n }\n\n /**\n * Subscribe ScrollElement instance that needs to be updated.\n *\n * @private\n *\n * @param {ScrollElement} scrollElement - ScrollElement instance inview\n * that needs to be updated.\n */\n _subscribeElementUpdate(scrollElement: ScrollElement) {\n this.scrollElementsToUpdate.push(scrollElement);\n }\n\n /**\n * Unscribe ScrollElement instance that doesn't need to be updated.\n *\n * @private\n *\n * @param {ScrollElement} scrollElement - The updated ScrollElement instance\n * out of view now.\n */\n _unsubscribeElementUpdate(scrollElement: ScrollElement) {\n this.scrollElementsToUpdate = this.scrollElementsToUpdate.filter(\n (scrollElementToUpdate) =>\n scrollElementToUpdate.id != scrollElement.id\n );\n }\n\n /**\n * Check if a DOM Element need a requestAnimationFrame to be used.\n *\n * @private\n *\n * @param {HTMLElement} $scrollElement - The element that needs to be checked.\n *\n * @returns {boolean}\n */\n _checkRafNeeded($scrollElement: HTMLElement) {\n let attributesThatNeedRaf = [...ATTRIBUTES_THAT_NEED_RAF];\n\n // Remove utils\n const removeAttribute = (attributeToRemove: string) => {\n attributesThatNeedRaf = attributesThatNeedRaf.filter(\n (attribute) => attribute != attributeToRemove\n );\n };\n\n // 1. Check scroll offset values\n if ($scrollElement.dataset.scrollOffset) {\n const value = $scrollElement.dataset.scrollOffset\n .split(',')\n .map((test) => test.replace('%', '').trim())\n .join(',');\n if (value != '0,0') {\n return true;\n } else {\n removeAttribute('scrollOffset');\n }\n } else {\n removeAttribute('scrollOffset');\n }\n\n // 2. Check scroll position values\n if ($scrollElement.dataset.scrollPosition) {\n const value = $scrollElement.dataset.scrollPosition.trim();\n if (value != 'top,bottom') {\n return true;\n } else {\n removeAttribute('scrollPosition');\n }\n } else {\n removeAttribute('scrollPosition');\n }\n\n // 3. Check scroll speed values\n if (\n $scrollElement.dataset.scrollSpeed &&\n !isNaN(parseFloat($scrollElement.dataset.scrollSpeed))\n ) {\n return true;\n } else {\n removeAttribute('scrollSpeed');\n }\n\n // 4. Check others attributes\n for (const attribute of attributesThatNeedRaf) {\n if (attribute in $scrollElement.dataset) {\n return true;\n }\n }\n\n return false;\n }\n}\n", "/**\n * Resize Observer\n *\n * The Resize Observer API provides a performant mechanism by which code can monitor an element for changes to its size,\n * with notifications being delivered to the observer each time the size changes.\n *\n * Features functions to:\n *\n * - Trigger the resize callback if the specified element's size change.\n *\n * References:\n *\n * - {@link https://developer.mozilla.org/en-US/docs/Web/API/Resize_Observer_API}\n */\n\nimport { IROOptions } from '../types';\n\nexport default class RO {\n private $resizeElements: HTMLElement[];\n private isFirstObserve: boolean;\n private observer!: ResizeObserver;\n private resizeCallback: () => void;\n\n constructor({ resizeElements, resizeCallback = () => {} }: IROOptions) {\n // Parameters\n this.$resizeElements = resizeElements;\n this.resizeCallback = resizeCallback;\n\n // Flags\n this.isFirstObserve = true;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize Resize Observer.\n *\n * @private\n */\n private _init() {\n // Callback\n const onResize = (entries: ResizeObserverEntry[]) => {\n !this.isFirstObserve && this.resizeCallback?.();\n this.isFirstObserve = false;\n };\n\n // Instance\n this.observer = new ResizeObserver(onResize);\n\n // Observe each default elements\n for (const $resizeElement of this.$resizeElements) {\n this.observer.observe($resizeElement);\n }\n }\n\n /**\n * Lifecyle - Destroy Resize Observer.\n */\n public destroy() {\n this.observer.disconnect();\n }\n}\n", "//@ts-ignore\nimport Lenis from '@studio-freight/lenis';\nimport Core from './core/Core';\nimport RO from './core/RO';\nimport {\n ILenisOptions,\n ILenisScrollToOptions,\n ILenisScrollValues,\n ILocomotiveScrollOptions,\n IModular,\n lenisTargetScrollTo,\n} from './types';\n\n/**\n * @type {ILenisOptions}\n */\nconst defaultLenisOptions: ILenisOptions = {\n wrapper: window,\n content: document.documentElement,\n eventsTarget: window,\n lerp: 0.1,\n duration: 0.75,\n orientation: 'vertical',\n gestureOrientation: 'vertical',\n smoothWheel: true,\n smoothTouch: false,\n syncTouch: false,\n syncTouchLerp: 0.1,\n touchInertiaMultiplier: 35,\n wheelMultiplier: 1,\n touchMultiplier: 2,\n normalizeWheel: false,\n autoResize: true,\n easing: (t) => Math.min(1, 1.001 - Math.pow(2, -10 * t)), // https://www.desmos.com/calculator/brs54l4xou\n};\n\n/**\n * Locomotive Scroll\n *\n * Detection of elements in viewport & smooth scrolling with parallax.\n *\n * Inspired by\n * {@link https://github.com/locomotivemtl/locomotive-scroll locomotive-scroll.js}\n * and built around\n * {@link https://github.com/studio-freight/lenis lenis.js}.\n */\n\nexport default class LocomotiveScroll {\n public rafPlaying: boolean;\n\n private lenisInstance: any;\n private coreInstance: any;\n\n private lenisOptions: ILenisOptions;\n private modularInstance?: IModular;\n private triggerRootMargin?: string;\n private rafRootMargin?: string;\n private rafInstance?: any;\n private autoResize?: boolean;\n private autoStart?: boolean;\n private ROInstance?: RO;\n private scrollCallback?(scrollValues: ILenisScrollValues): void;\n private initCustomTicker?: (render: () => void) => void;\n private destroyCustomTicker?: (render: () => void) => void;\n private _onRenderBind: () => void;\n private _onResizeBind: () => void;\n private _onScrollToBind: (event: MouseEvent) => void;\n\n constructor({\n lenisOptions = {},\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n autoResize = true,\n autoStart = true,\n scrollCallback = () => {},\n initCustomTicker,\n destroyCustomTicker,\n }: ILocomotiveScrollOptions = {}) {\n // Arguments\n this.lenisOptions = { ...defaultLenisOptions, ...lenisOptions };\n\n Object.assign(this, {\n lenisOptions,\n modularInstance,\n triggerRootMargin,\n rafRootMargin,\n autoResize,\n autoStart,\n scrollCallback,\n initCustomTicker,\n destroyCustomTicker,\n });\n\n // Binding\n this._onRenderBind = this._onRender.bind(this);\n this._onScrollToBind = this._onScrollTo.bind(this);\n this._onResizeBind = this._onResize.bind(this);\n\n // Data\n this.rafPlaying = false;\n\n // Init\n this._init();\n }\n\n /**\n * Lifecyle - Initialize instance.\n *\n * @private\n */\n private _init(): void {\n // Create Lenis instance\n this.lenisInstance = new Lenis({\n wrapper: this.lenisOptions.wrapper,\n content: this.lenisOptions.content,\n eventsTarget: this.lenisOptions.eventsTarget,\n lerp: this.lenisOptions.lerp,\n duration: this.lenisOptions.duration,\n orientation: this.lenisOptions.orientation,\n gestureOrientation: this.lenisOptions.gestureOrientation,\n smoothWheel: this.lenisOptions.smoothWheel,\n smoothTouch: this.lenisOptions.smoothTouch,\n syncTouch: this.lenisOptions.syncTouch,\n syncTouchLerp: this.lenisOptions.syncTouchLerp,\n touchInertiaMultiplier: this.lenisOptions.touchInertiaMultiplier,\n wheelMultiplier: this.lenisOptions.wheelMultiplier,\n touchMultiplier: this.lenisOptions.touchMultiplier,\n normalizeWheel: this.lenisOptions.normalizeWheel,\n easing: this.lenisOptions.easing,\n });\n this.lenisInstance?.on('scroll', this.scrollCallback);\n\n // Add scroll direction attribute on body\n document.documentElement.setAttribute(\n 'data-scroll-orientation',\n this.lenisInstance.options.orientation\n );\n\n requestAnimationFrame(() => {\n // Create Core Instance\n this.coreInstance = new Core({\n $el: this.lenisInstance.rootElement,\n modularInstance: this.modularInstance,\n triggerRootMargin: this.triggerRootMargin,\n rafRootMargin: this.rafRootMargin,\n scrollOrientation: this.lenisInstance.options.orientation,\n });\n\n // Bind Events\n this._bindEvents();\n\n // RAF warning\n if (this.initCustomTicker && !this.destroyCustomTicker) {\n console.warn(\n 'initCustomTicker callback is declared, but destroyCustomTicker is not. Please pay attention. It could cause trouble.'\n );\n } else if (!this.initCustomTicker && this.destroyCustomTicker) {\n console.warn(\n 'destroyCustomTicker callback is declared, but initCustomTicker is not. Please pay attention. It could cause trouble.'\n );\n }\n\n // Start RAF\n this.autoStart && this.start();\n });\n }\n\n /**\n * Lifecyle - Destroy instance.\n */\n public destroy(): void {\n // Stop raf\n this.stop();\n // Unbind Events\n this._unbindEvents();\n // Destroy Lenis\n this.lenisInstance.destroy();\n // Destroy Core\n this.coreInstance.destroy();\n }\n\n /**\n * Events - Subscribe events to listen.\n */\n private _bindEvents() {\n this._bindScrollToEvents();\n\n if (this.autoResize) {\n if ('ResizeObserver' in window) {\n this.ROInstance = new RO({\n resizeElements: [document.body],\n resizeCallback: this._onResizeBind,\n });\n } else {\n (window as any).addEventListener('resize', this._onResizeBind);\n }\n }\n }\n\n /**\n * Events - Unsubscribe listened events.\n */\n private _unbindEvents() {\n this._unbindScrollToEvents();\n\n if (this.autoResize) {\n if ('ResizeObserver' in window) {\n this.ROInstance && this.ROInstance.destroy();\n } else {\n (window as any).removeEventListener(\n 'resize',\n this._onResizeBind\n );\n }\n }\n }\n\n /**\n * Events - Subscribe scrollTo events to listen.\n */\n private _bindScrollToEvents($container?: HTMLElement) {\n const $rootContainer = $container\n ? $container\n : this.lenisInstance.rootElement;\n const $scrollToElements =\n $rootContainer?.querySelectorAll('[data-scroll-to]');\n\n $scrollToElements?.length &&\n $scrollToElements.forEach(($el: HTMLElement): void => {\n $el.addEventListener('click', this._onScrollToBind, false);\n });\n }\n\n /**\n * Events - Unsubscribe scrollTo listened events.\n */\n private _unbindScrollToEvents($container?: HTMLElement) {\n const $rootContainer = $container\n ? $container\n : this.lenisInstance.rootElement;\n const $scrollToElements =\n $rootContainer?.querySelectorAll('[data-scroll-to]');\n $scrollToElements?.length &&\n $scrollToElements.forEach(($el: HTMLElement) => {\n $el.removeEventListener('click', this._onScrollToBind, false);\n });\n }\n\n /**\n * Callback - Resize callback.\n */\n private _onResize() {\n // Waiting the next frame to get the new current scroll value return by Lenis\n requestAnimationFrame(() => {\n this.coreInstance?.onResize({\n currentScroll: this.lenisInstance.scroll,\n });\n });\n }\n\n /**\n * Callback - Render callback.\n */\n private _onRender() {\n this.lenisInstance?.raf(Date.now());\n\n this.coreInstance?.onRender({\n currentScroll: this.lenisInstance.scroll,\n smooth: this.lenisInstance.isSmooth,\n });\n }\n\n /**\n * Callback - Scroll To callback.\n */\n private _onScrollTo(event: MouseEvent) {\n event.preventDefault();\n const $target = (event.currentTarget as HTMLElement) ?? null;\n if (!$target) return;\n const target =\n $target.getAttribute('data-scroll-to-href') ||\n $target.getAttribute('href');\n const offset = $target.getAttribute('data-scroll-to-offset') || 0;\n const duration =\n $target.getAttribute('data-scroll-to-duration') ||\n this.lenisOptions.duration ||\n defaultLenisOptions.duration;\n\n target &&\n this.scrollTo(target, {\n offset: typeof offset === 'string' ? parseInt(offset) : offset,\n duration:\n typeof duration === 'string'\n ? parseInt(duration)\n : duration,\n });\n }\n\n /**\n * Start RequestAnimationFrame that active Lenis smooth and scroll progress.\n */\n public start(): void {\n if (this.rafPlaying) {\n return;\n }\n\n // Call lenis start method\n this.lenisInstance?.start();\n\n this.rafPlaying = true;\n this.initCustomTicker\n ? this.initCustomTicker(this._onRenderBind)\n : this._raf();\n }\n\n /**\n * Stop RequestAnimationFrame that active Lenis smooth and scroll progress.\n */\n public stop(): void {\n if (!this.rafPlaying) {\n return;\n }\n\n // Call lenis stop method\n this.lenisInstance?.stop();\n\n this.rafPlaying = false;\n this.destroyCustomTicker\n ? this.destroyCustomTicker(this._onRenderBind)\n : this.rafInstance && cancelAnimationFrame(this.rafInstance);\n }\n\n /**\n * Remove old scroll elements items and rebuild ScrollElements instances.\n */\n public removeScrollElements($oldContainer: HTMLElement): void {\n if (!$oldContainer) {\n console.error('Please provide a DOM Element as $oldContainer');\n return;\n }\n\n this._unbindScrollToEvents($oldContainer);\n this.coreInstance?.removeScrollElements($oldContainer);\n }\n\n /**\n * Add new scroll elements items and rebuild ScrollElements instances.\n */\n public addScrollElements($newContainer: HTMLElement): void {\n if (!$newContainer) {\n console.error('Please provide a DOM Element as $newContainer');\n return;\n }\n\n this.coreInstance?.addScrollElements($newContainer);\n requestAnimationFrame(() => {\n this._bindScrollToEvents($newContainer);\n });\n }\n\n /**\n * Trigger resize callback.\n */\n public resize(): void {\n this._onResizeBind();\n }\n\n /**\n * Trigger scroll to callback.\n */\n public scrollTo(\n target: lenisTargetScrollTo,\n options?: ILenisScrollToOptions\n ): void {\n this.lenisInstance?.scrollTo(target, {\n offset: options?.offset,\n lerp: options?.lerp,\n duration: options?.duration,\n immediate: options?.immediate,\n lock: options?.lock,\n force: options?.force,\n easing: options?.easing,\n onComplete: options?.onComplete,\n });\n }\n\n /**\n * RequestAnimationFrame that active Lenis smooth and scroll progress.\n *\n * @private\n *\n */\n private _raf() {\n this._onRenderBind();\n this.rafInstance = requestAnimationFrame(() => this._raf());\n }\n}\n", "import { module } from 'modujs'\nimport { lazyLoadImage } from '../utils/image'\nimport LocomotiveScroll from 'locomotive-scroll'\n\nexport default class extends module {\n constructor(m) {\n super(m);\n }\n\n init() {\n this.scroll = new LocomotiveScroll({\n modularInstance: this,\n })\n\n // // Force scroll to top\n // if (history.scrollRestoration) {\n // history.scrollRestoration = 'manual'\n // window.scrollTo(0, 0)\n // }\n }\n\n /**\n * Lazy load the related image.\n *\n * @see ../utils/image.js\n *\n * It is recommended to wrap your `` into an element with the\n * CSS class name `.c-lazy`. The CSS class name modifier `.-lazy-loaded`\n * will be applied on both the image and the parent wrapper.\n *\n * ```html\n *
\n * \"\"\n *
\n * ```\n *\n * @param {LocomotiveScroll} args - The Locomotive Scroll instance.\n */\n lazyLoad(args) {\n lazyLoadImage(args.target, null, () => {\n //callback\n })\n }\n\n scrollTo(params) {\n let { target, ...options } = params\n\n options = Object.assign({\n // Defaults\n duration: 1,\n }, options)\n\n this.scroll?.scrollTo(target, options)\n }\n\n destroy() {\n this.scroll.destroy();\n }\n}\n", "import svg4everybody from 'svg4everybody';\nimport { ENV } from './config';\n\n// Dynamic imports for development mode only\nlet gridHelper;\n(async () => {\n if (ENV.IS_DEV) {\n const gridHelperModule = await import('./utils/grid-helper');\n gridHelper = gridHelperModule?.gridHelper;\n }\n})();\n\nexport default function () {\n /**\n * Use external SVG spritemaps\n */\n svg4everybody();\n\n /**\n * Add grid helper\n */\n gridHelper?.();\n}\n", "/**\n * Creates a debounced function.\n *\n * A debounced function delays invoking `callback` until after\n * `delay` milliseconds have elapsed since the last time the\n * debounced function was invoked.\n *\n * Useful for behaviour that should only happen _before_ or\n * _after_ an event has stopped occurring.\n *\n * @template {function} T\n *\n * @param {T} callback - The function to debounce.\n * @param {number} delay - The number of milliseconds to wait.\n * @param {boolean} [immediate] -\n * If `true`, `callback` is invoked before `delay`.\n * If `false`, `callback` is invoked after `delay`.\n * @return {function} The new debounced function.\n */\n\nconst debounce = (callback, delay, immediate = false) => {\n let timeout = null\n\n return (...args) => {\n clearTimeout(timeout)\n\n const later = () => {\n timeout = null\n if (!immediate) {\n callback(...args)\n }\n }\n\n if (immediate && !timeout) {\n callback(...args)\n }\n\n timeout = setTimeout(later, delay)\n }\n}\n\n\n/**\n * Creates a throttled function.\n *\n * A throttled function invokes `callback` at most once per every\n * `delay` milliseconds.\n *\n * Useful for rate-limiting an event that occurs in quick succession.\n *\n * @template {function} T\n *\n * @param {T} callback - The function to throttle.\n * @param {number} delay - The number of milliseconds to wait.\n * @return {function} The new throttled function.\n */\n\nconst throttle = (callback, delay) => {\n let timeout = false\n\n return (...args) => {\n if (!timeout) {\n timeout = true\n\n callback(...args)\n\n setTimeout(() => {\n timeout = false\n }, delay)\n }\n }\n}\n\n\nexport {\n debounce,\n throttle\n}\n", "const $html = document.documentElement\nconst $body = document.body\n\nexport {\n $html,\n $body,\n}\n", "import modular from 'modujs';\nimport * as modules from './modules';\nimport globals from './globals';\nimport { debounce } from './utils/tickers';\nimport { $html } from './utils/dom';\nimport { ENV, FONT, CUSTOM_EVENT, CSS_CLASS } from './config'\nimport { isFontLoadingAPIAvailable, loadFonts } from './utils/fonts';\n\nconst app = new modular({\n modules,\n});\n\nconst setViewportSizes = () => {\n\n // Document styles\n const documentStyles = document.documentElement.style;\n\n // Viewport width\n const vw = document.body.clientWidth * 0.01;\n documentStyles.setProperty('--vw', `${vw}px`);\n\n // Return if browser supports vh, svh, dvh, & lvh\n if (ENV.SUPPORTS_VH) {\n return\n }\n\n // Viewport height\n const height = window.innerHeight;\n const svh = document.documentElement.clientHeight * 0.01;\n documentStyles.setProperty('--svh', `${svh}px`);\n const dvh = height * 0.01;\n documentStyles.setProperty('--dvh', `${dvh}px`);\n\n if (document.body) {\n const fixed = document.createElement('div');\n fixed.style.width = '1px';\n fixed.style.height = '100vh';\n fixed.style.position = 'fixed';\n fixed.style.left = '0';\n fixed.style.top = '0';\n fixed.style.bottom = '0';\n fixed.style.visibility = 'hidden';\n\n document.body.appendChild(fixed);\n\n var fixedHeight = fixed.clientHeight;\n\n fixed.remove();\n\n const lvh = fixedHeight * 0.01;\n\n documentStyles.setProperty('--lvh', `${lvh}px`);\n }\n}\n\nwindow.addEventListener('load', () => {\n const $style = document.getElementById('main-css');\n\n if ($style) {\n if ($style.isLoaded) {\n init();\n } else {\n $style.addEventListener('load', init);\n }\n } else {\n console.warn('The \"main-css\" stylesheet not found');\n }\n});\n\nfunction init() {\n globals();\n setViewportSizes();\n\n app.init(app);\n\n $html.classList.add(CSS_CLASS.LOADED);\n $html.classList.add(CSS_CLASS.READY);\n $html.classList.remove(CSS_CLASS.LOADING);\n\n // Bind window resize event with default vars\n const resizeEndEvent = new CustomEvent(CUSTOM_EVENT.RESIZE_END);\n window.addEventListener('resize', () => {\n setViewportSizes();\n debounce(() => {\n window.dispatchEvent(resizeEndEvent);\n }, 200, false)\n })\n\n window.addEventListener('orientationchange', () => {\n setViewportSizes();\n })\n\n /**\n * Eagerly load the following fonts.\n */\n if (isFontLoadingAPIAvailable) {\n loadFonts(FONT.EAGER, ENV.IS_DEV).then((eagerFonts) => {\n $html.classList.add(CSS_CLASS.FONTS_LOADED);\n\n if (ENV.IS_DEV) {\n console.group('Eager fonts loaded!', eagerFonts.length, '/', document.fonts.size);\n console.group('State of eager fonts:');\n eagerFonts.forEach(font => console.log(font.family, font.style, font.weight, font.status));\n console.groupEnd();\n console.group('State of all fonts:');\n document.fonts.forEach(font => console.log(font.family, font.style, font.weight, font.status));\n console.groupEnd();\n }\n });\n }\n}\n"], + "mappings": "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", + "names": ["require_svg4everybody", "__commonJSMin", "exports", "module", "root", "factory", "embed", "parent", "svg", "target", "fragment", "viewBox", "clone", "loadreadystatechange", "xhr", "cachedDocument", "item", "svg4everybody", "rawopts", "oninterval", "index", "uses", "use", "getSVGAncestor", "src", "opts", "polyfill", "srcSplit", "url", "id", "requests", "numberOfSvgUseElementsToBypass", "requestAnimationFrame", "newerIEUA", "webkitUA", "olderEdgeUA", "edgeUA", "inIframe", "node", "grid_helper_exports", "__export", "gridHelper", "gutterCssVar", "GRID_HELPER_GUTTER_CSS_VAR", "marginCssVar", "GRID_HELPER_MARGIN_CSS_VAR", "rgbaColor", "GRID_HELPER_RGBA_COLOR", "$gridContainer", "setGridHelperColumns", "setGridHelperStyles", "setGridEvents", "$container", "elStyles", "columns", "$col", "i", "ctrlDown", "isActive", "e", "init_grid_helper", "__esmMin", "_typeof", "obj", "_classCallCheck", "instance", "Constructor", "_defineProperties", "target", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_defineProperty", "key", "value", "_slicedToArray", "arr", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "_toConsumableArray", "_arrayWithoutHoles", "_iterableToArray", "_nonIterableSpread", "_arrayLikeToArray", "iter", "_arr", "_n", "_d", "_e", "_i", "_s", "err", "o", "minLen", "n", "len", "arr2", "_default", "options", "modules", "_this", "event", "_this2", "capture", "e", "data", "name", "method", "query", "context", "classIndex", "idIndex", "attrIndex", "indexes", "index", "more", "parent", "func", "args", "mod", "id", "_this3", "_this4", "_default$1", "app", "scope", "container", "elements", "el", "moduleExists", "dataName", "moduleName", "module", "moduleId", "_ref", "_ref2", "split", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_this5", "a", "b", "str", "main_esm_default", "modules_exports", "__export", "Example_default", "Load_default", "Scroll_default", "NODE_ENV", "IS_MOBILE", "ENV", "CSS_CLASS", "CUSTOM_EVENT", "FONT", "isFontLoadingAPIAvailable", "conformsToReference", "font", "criterion", "key", "value", "trim", "conformsToShorthand", "family", "findManyByReference", "search", "found", "font", "conformsToReference", "findManyByShorthand", "conformsToShorthand", "getMany", "queries", "found", "search", "findManyByShorthand", "findManyByReference", "loadFonts", "fontsToLoad", "debug", "__async", "_a", "loadFontsWithAPI", "loadFontFaceWithAPI", "font", "err", "fontsToBeLoaded", "fontToLoad", "getMany", "trim", "value", "whenReady", "queries", "fonts", "Example_default", "_default", "m", "whenReady", "FONT", "fonts", "_classCallCheck", "instance", "Constructor", "_defineProperties", "target", "props", "i", "descriptor", "_createClass", "protoProps", "staticProps", "_slicedToArray", "arr", "_arrayWithHoles", "_iterableToArrayLimit", "_unsupportedIterableToArray", "_nonIterableRest", "_i", "_arr", "_n", "_d", "_s", "_e", "err", "o", "minLen", "_arrayLikeToArray", "n", "len", "arr2", "_default", "options", "_this", "e", "href", "link", "transition", "isUrl", "push", "container", "oldContainer", "loadingEvent", "_this2", "_this3", "signal", "response", "data", "parser", "_this4", "svgs", "svg", "xhref", "_this5", "title", "newDesc", "oldDesc", "newContainer", "datas", "_ref", "_ref2", "key", "val", "str", "_this6", "promises", "attr", "els", "el", "elData", "promise", "resolve", "imagesEvent", "_this7", "loadedEvent", "readyEvent", "event", "func", "_this8", "main_esm_default", "Load_default", "_default", "m", "main_esm_default", "transition", "oldContainer", "newContainer", "getImageMetadata", "$img", "loadImage", "url", "options", "resolve", "reject", "loadCallback", "__spreadValues", "e", "LAZY_LOADED_IMAGES", "lazyLoadImage", "$el", "callback", "__async", "src", "loadedImage", "image", "lazyParent", "CSS_CLASS", "clamp", "min", "input", "max", "Math", "Animate", "advance", "deltaTime", "_this$onUpdate", "this", "isRunning", "completed", "lerp", "value", "x", "y", "to", "t", "exp", "round", "currentTime", "linearProgress", "duration", "easedProgress", "easing", "from", "onUpdate", "call", "stop", "fromTo", "onStart", "Dimensions", "constructor", "wrapper", "content", "autoResize", "resize", "onWrapperResize", "onContentResize", "window", "width", "innerWidth", "height", "innerHeight", "clientWidth", "clientHeight", "scrollHeight", "scrollWidth", "callback", "delay", "timer", "args", "arguments", "context", "clearTimeout", "setTimeout", "apply", "wrapperResizeObserver", "ResizeObserver", "observe", "contentResizeObserver", "destroy", "_this$wrapperResizeOb", "_this$contentResizeOb", "disconnect", "limit", "Emitter", "events", "emit", "event", "callbacks", "i", "length", "on", "cb", "_this$events$event", "push", "_this$events$event2", "filter", "off", "_this$events$event3", "VirtualScroll", "element", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "onTouchStart", "clientX", "clientY", "targetTouches", "touchStart", "lastDelta", "onTouchMove", "deltaX", "deltaY", "emitter", "onTouchEnd", "onWheel", "addEventListener", "passive", "removeEventListener", "Lenis", "document", "documentElement", "wheelEventsTarget", "eventsTarget", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "__iosNoInertiaSyncTouchLerp", "touchInertiaMultiplier", "pow", "infinite", "orientation", "gestureOrientation", "onVirtualScroll", "ctrlKey", "isTouch", "type", "includes", "isWheel", "options", "scroll", "composedPath", "slice", "indexOf", "rootElement", "find", "node", "_node$classList", "hasAttribute", "classList", "contains", "isStopped", "isLocked", "preventDefault", "isSmooth", "isScrolling", "animate", "delta", "abs", "hasTouchInertia", "velocity", "scrollTo", "targetScroll", "_extends", "programmatic", "onScroll", "lastScroll", "animatedScroll", "actualScroll", "direction", "sign", "lenisVersion", "body", "dimensions", "toggleClass", "virtualScroll", "setScroll", "isHorizontal", "scrollLeft", "scrollTop", "reset", "start", "raf", "time", "target", "offset", "immediate", "lock", "onComplete", "force", "_target", "querySelector", "nodeType", "wrapperRect", "getBoundingClientRect", "left", "top", "rect", "requestAnimationFrame", "d", "progress", "__isSmooth", "__isScrolling", "__isStopped", "__isLocked", "className", "name", "toggle", "IO", "constructor", "scrollElements", "rootMargin", "IORaf", "this", "observer", "_init", "IntersectionObserver", "entries", "forEach", "entry", "$targetItem", "find", "item", "$el", "target", "isIntersecting", "isAlreadyIntersected", "_setInview", "_setOutOfView", "scrollElement", "observe", "destroy", "disconnect", "$scrollElement", "unobserve", "setInteractivityOn", "setInview", "setInteractivityOff", "setOutOfView", "attributes", "scrollRepeat", "mapRange", "inMin", "inMax", "outMin", "outMax", "value", "closestNumber", "array", "reduce", "prev", "curr", "Math", "abs", "ScrollElement", "id", "modularInstance", "subscribeElementUpdateFn", "unsubscribeElementUpdateFn", "needRaf", "scrollOrientation", "_this$$el$dataset$scr", "_this$$el$dataset$scr2", "_this$$el$dataset$scr3", "_this$$el$dataset$scr4", "_this$$el$dataset$scr5", "intersection", "metrics", "currentScroll", "translateValue", "progress", "lastProgress", "progressModularModules", "isInview", "isInteractive", "isInFold", "isFirstResize", "scrollClass", "dataset", "scrollOffset", "scrollPosition", "scrollModuleProgress", "scrollCssProgress", "scrollEventProgress", "scrollSpeed", "parseFloat", "scrollCall", "scrollCallSelf", "scrollIgnoreFold", "scrollEnableTouchSpeed", "start", "end", "offsetStart", "offsetEnd", "bcr", "window", "scrollY", "scrollX", "_getProgressModularModules", "_resize", "onResize", "onRender", "smooth", "wSize", "innerHeight", "innerWidth", "_computeProgress", "isNaN", "max", "style", "transform", "classList", "add", "from", "_getScrollCallFrom", "_dispatchCall", "remove", "getBoundingClientRect", "_computeMetrics", "_computeIntersection", "top", "left", "height", "width", "metricsSize", "offset", "split", "undefined", "trim", "scrollPositionStart", "scrollPositionEnd", "viewportStart", "includes", "parseInt", "replace", "viewportEnd", "forcedProgress", "_setCssProgress", "_setCustomEventProgress", "modularModules", "call", "moduleName", "moduleId", "currentProgress", "setProperty", "toString", "customEventName", "customEvent", "CustomEvent", "detail", "dispatchEvent", "modulesIdNames", "Object", "keys", "filter", "key", "modules", "length", "modulesIdName", "module", "moduleObj", "push", "closestIntersectionValue", "way", "_this$attributes$scro", "_this$attributes", "callParameters", "callSelf", "_targetModuleId", "func", "targetModuleId", "ATTRIBUTES_THAT_NEED_RAF", "Core", "triggerRootMargin", "rafRootMargin", "$scrollContainer", "triggeredScrollElements", "RAFScrollElements", "scrollElementsToUpdate", "IOTriggerInstance", "IORafInstance", "console", "error", "$scrollElements", "querySelectorAll", "$scrollElementsArr", "Array", "_subscribeScrollElements", "_unsubscribeAllScrollElements", "removeScrollElements", "$oldContainer", "$scrollElementsToRemove", "index", "indexOf", "splice", "targetScrollElementToUpdate", "targetScrollElement", "_unsubscribeElementUpdate", "scrollElementItem", "addScrollElements", "$newContainer", "ids", "fromIndex", "toObserve", "_checkRafNeeded", "scrollElementInstance", "_subscribeElementUpdate", "bind", "scrollElementToUpdate", "attributesThatNeedRaf", "removeAttribute", "attributeToRemove", "attribute", "map", "test", "join", "RO", "resizeElements", "resizeCallback", "$resizeElements", "isFirstObserve", "ResizeObserver", "_this$resizeCallback", "$resizeElement", "defaultLenisOptions", "wrapper", "content", "document", "documentElement", "eventsTarget", "lerp", "duration", "orientation", "gestureOrientation", "smoothWheel", "smoothTouch", "syncTouch", "syncTouchLerp", "touchInertiaMultiplier", "wheelMultiplier", "touchMultiplier", "normalizeWheel", "autoResize", "easing", "t", "min", "pow", "LocomotiveScroll", "lenisOptions", "autoStart", "scrollCallback", "initCustomTicker", "destroyCustomTicker", "rafPlaying", "lenisInstance", "coreInstance", "rafInstance", "ROInstance", "_onRenderBind", "_onResizeBind", "_onScrollToBind", "_extends", "assign", "_onRender", "_onScrollTo", "_onResize", "_this$lenisInstance", "Lenis", "on", "setAttribute", "options", "requestAnimationFrame", "rootElement", "_bindEvents", "warn", "stop", "_unbindEvents", "_bindScrollToEvents", "body", "addEventListener", "_unbindScrollToEvents", "removeEventListener", "$container", "$rootContainer", "$scrollToElements", "_this$coreInstance", "scroll", "_this$lenisInstance2", "_this$coreInstance2", "raf", "Date", "now", "isSmooth", "event", "_event$currentTarget", "preventDefault", "$target", "currentTarget", "getAttribute", "scrollTo", "_this$lenisInstance3", "_raf", "_this$lenisInstance4", "cancelAnimationFrame", "_this$coreInstance3", "_this$coreInstance4", "resize", "_this$lenisInstance5", "immediate", "lock", "force", "onComplete", "Scroll_default", "_default", "m", "h", "args", "lazyLoadImage", "params", "_b", "_a", "target", "options", "__objRest", "import_svg4everybody", "gridHelper", "__async", "ENV", "gridHelperModule", "globals_default", "svg4everybody", "debounce", "callback", "delay", "immediate", "timeout", "args", "later", "$html", "$body", "app", "main_esm_default", "modules_exports", "setViewportSizes", "documentStyles", "vw", "ENV", "height", "svh", "dvh", "fixed", "fixedHeight", "lvh", "$style", "init", "globals_default", "$html", "CSS_CLASS", "resizeEndEvent", "CUSTOM_EVENT", "debounce", "isFontLoadingAPIAvailable", "loadFonts", "FONT", "eagerFonts", "font"] } diff --git a/www/assets/styles/main.css.map b/www/assets/styles/main.css.map index 6ea7775..a32c773 100644 --- a/www/assets/styles/main.css.map +++ b/www/assets/styles/main.css.map @@ -1 +1 @@ -{"version":3,"sources":["main.css"],"names":[],"mappings":"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Y,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAA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C,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBA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AC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0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C,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,kBAAkB,qCAAqC,CAAC,yBAAyB,6BAA6B,qCAAqC,CAAC,CAAC,yBAAyB,2BAA2B,qCAAqC,CAAC,CAAC,cAAc,2CAA2C,CAAC,yBAAyB,yBAAyB,2CAA2C,CAAC,CAAC,yBAAyB,uBAAuB,2CAA2C,CAAC,CAAC,cAAc,6CAA6C,CAAC,yBAAyB,yBAAyB,6CAA6C,CAAC,CAAC,yBAAyB,uBAAuB,6CAA6C,CAAC,CAAC,cAAc,4CAA4C,CAAC,yBAAyB,yBAAyB,4CAA4C,CAAC,CAAC,yBAAyB,uBAAuB,4CAA4C,CAAC,CAAC,cAAc,8CAA8C,CAAC,yBAAyB,yBAAyB,8CAA8C,CAAC,CAAC,yBAAyB,uBAAuB,8CAA8C,CAAC,CAAC,cAAc,4CAA4C,CAAC,yBAAyB,yBAAyB,4CAA4C,CAAC,CAAC,yBAAyB,uBAAuB,4CAA4C,CAAC,CAAC,WAAW,qCAAqC,CAAC,yBAAyB,sBAAsB,qCAAqC,CAAC,CAAC,yBAAyB,oBAAoB,qCAAqC,CAAC,CAAC,gBAAgB,oBAAoB,CAAC,yBAAyB,2BAA2B,oBAAoB,CAAC,CAAC,yBAAyB,yBAAyB,oBAAoB,CAAC,CAAC,sBAAsB,yCAAyC,CAAC,yBAAyB,iCAAiC,yCAAyC,CAAC,CAAC,yBAAyB,+BAA+B,yCAAyC,CAAC,CAAC,kBAAkB,+CAA+C,CAAC,yBAAyB,6BAA6B,+CAA+C,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,CAAC,kBAAkB,iDAAiD,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,CAAC,kBAAkB,gDAAgD,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,CAAC,kBAAkB,kDAAkD,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,CAAC,kBAAkB,gDAAgD,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,CAAC,eAAe,yCAAyC,CAAC,yBAAyB,0BAA0B,yCAAyC,CAAC,CAAC,yBAAyB,wBAAwB,yCAAyC,CAAC,CAAC,oBAAoB,wBAAwB,CAAC,yBAAyB,+BAA+B,wBAAwB,CAAC,CAAC,yBAAyB,6BAA6B,wBAAwB,CAAC,CAAC,wBAAwB,2CAA2C,CAAC,yBAAyB,mCAAmC,2CAA2C,CAAC,CAAC,yBAAyB,iCAAiC,2CAA2C,CAAC,CAAC,oBAAoB,iDAAiD,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,oBAAoB,mDAAmD,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,yBAAyB,6BAA6B,mDAAmD,CAAC,CAAC,oBAAoB,kDAAkD,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,oBAAoB,oDAAoD,CAAC,yBAAyB,+BAA+B,oDAAoD,CAAC,CAAC,yBAAyB,6BAA6B,oDAAoD,CAAC,CAAC,oBAAoB,kDAAkD,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,iBAAiB,2CAA2C,CAAC,yBAAyB,4BAA4B,2CAA2C,CAAC,CAAC,yBAAyB,0BAA0B,2CAA2C,CAAC,CAAC,sBAAsB,0BAA0B,CAAC,yBAAyB,iCAAiC,0BAA0B,CAAC,CAAC,yBAAyB,+BAA+B,0BAA0B,CAAC,CAAC,yBAAyB,4CAA4C,CAAC,yBAAyB,oCAAoC,4CAA4C,CAAC,CAAC,yBAAyB,kCAAkC,4CAA4C,CAAC,CAAC,qBAAqB,kDAAkD,CAAC,yBAAyB,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,qBAAqB,oDAAoD,CAAC,yBAAyB,gCAAgC,oDAAoD,CAAC,CAAC,yBAAyB,8BAA8B,oDAAoD,CAAC,CAAC,qBAAqB,mDAAmD,CAAC,yBAAyB,gCAAgC,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,qBAAqB,qDAAqD,CAAC,yBAAyB,gCAAgC,qDAAqD,CAAC,CAAC,yBAAyB,8BAA8B,qDAAqD,CAAC,CAAC,qBAAqB,mDAAmD,CAAC,yBAAyB,gCAAgC,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,kBAAkB,4CAA4C,CAAC,yBAAyB,6BAA6B,4CAA4C,CAAC,CAAC,yBAAyB,2BAA2B,4CAA4C,CAAC,CAAC,uBAAuB,2BAA2B,CAAC,yBAAyB,kCAAkC,2BAA2B,CAAC,CAAC,yBAAyB,gCAAgC,2BAA2B,CAAC,CAAC,uBAAuB,0CAA0C,CAAC,yBAAyB,kCAAkC,0CAA0C,CAAC,CAAC,yBAAyB,gCAAgC,0CAA0C,CAAC,CAAC,mBAAmB,gDAAgD,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,mBAAmB,kDAAkD,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,4BAA4B,kDAAkD,CAAC,CAAC,mBAAmB,iDAAiD,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,mBAAmB,mDAAmD,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,yBAAyB,4BAA4B,mDAAmD,CAAC,CAAC,mBAAmB,iDAAiD,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,gBAAgB,0CAA0C,CAAC,yBAAyB,2BAA2B,0CAA0C,CAAC,CAAC,yBAAyB,yBAAyB,0CAA0C,CAAC,CAAC,qBAAqB,yBAAyB,CAAC,yBAAyB,gCAAgC,yBAAyB,CAAC,CAAC,yBAAyB,8BAA8B,yBAAyB,CAAC,CAAC,oBAAoB,0CAA0C,CAAC,2CAA2C,CAAC,yBAAyB,+BAA+B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,6BAA6B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,gBAAgB,gDAAgD,CAAC,iDAAiD,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,gBAAgB,kDAAkD,CAAC,mDAAmD,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,yBAAyB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,gBAAgB,iDAAiD,CAAC,kDAAkD,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,gBAAgB,mDAAmD,CAAC,oDAAoD,CAAC,yBAAyB,2BAA2B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,yBAAyB,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,gBAAgB,iDAAiD,CAAC,kDAAkD,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,aAAa,0CAA0C,CAAC,2CAA2C,CAAC,yBAAyB,wBAAwB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,sBAAsB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,kBAAkB,yBAAyB,CAAC,0BAA0B,CAAC,yBAAyB,6BAA6B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,2BAA2B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,oBAAoB,yCAAyC,CAAC,4CAA4C,CAAC,yBAAyB,+BAA+B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,6BAA6B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,gBAAgB,+CAA+C,CAAC,kDAAkD,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,gBAAgB,iDAAiD,CAAC,oDAAoD,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,yBAAyB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,gBAAgB,gDAAgD,CAAC,mDAAmD,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,gBAAgB,kDAAkD,CAAC,qDAAqD,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,yBAAyB,yBAAyB,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,gBAAgB,gDAAgD,CAAC,mDAAmD,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,aAAa,yCAAyC,CAAC,4CAA4C,CAAC,yBAAyB,wBAAwB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,sBAAsB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,kBAAkB,wBAAwB,CAAC,2BAA2B,CAAC,yBAAyB,6BAA6B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,2BAA2B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,iBAAiB,oCAAoC,CAAC,yBAAyB,4BAA4B,oCAAoC,CAAC,CAAC,yBAAyB,0BAA0B,oCAAoC,CAAC,CAAC,aAAa,0CAA0C,CAAC,yBAAyB,wBAAwB,0CAA0C,CAAC,CAAC,yBAAyB,sBAAsB,0CAA0C,CAAC,CAAC,aAAa,4CAA4C,CAAC,yBAAyB,wBAAwB,4CAA4C,CAAC,CAAC,yBAAyB,sBAAsB,4CAA4C,CAAC,CAAC,aAAa,2CAA2C,CAAC,yBAAyB,wBAAwB,2CAA2C,CAAC,CAAC,yBAAyB,sBAAsB,2CAA2C,CAAC,CAAC,aAAa,6CAA6C,CAAC,yBAAyB,wBAAwB,6CAA6C,CAAC,CAAC,yBAAyB,sBAAsB,6CAA6C,CAAC,CAAC,aAAa,2CAA2C,CAAC,yBAAyB,wBAAwB,2CAA2C,CAAC,CAAC,yBAAyB,sBAAsB,2CAA2C,CAAC,CAAC,UAAU,oCAAoC,CAAC,yBAAyB,qBAAqB,oCAAoC,CAAC,CAAC,yBAAyB,mBAAmB,oCAAoC,CAAC,CAAC,eAAe,mBAAmB,CAAC,yBAAyB,0BAA0B,mBAAmB,CAAC,CAAC,yBAAyB,wBAAwB,mBAAmB,CAAC,CAAC,qBAAqB,wCAAwC,CAAC,yBAAyB,gCAAgC,wCAAwC,CAAC,CAAC,yBAAyB,8BAA8B,wCAAwC,CAAC,CAAC,iBAAiB,8CAA8C,CAAC,yBAAyB,4BAA4B,8CAA8C,CAAC,CAAC,yBAAyB,0BAA0B,8CAA8C,CAAC,CAAC,iBAAiB,gDAAgD,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,CAAC,iBAAiB,+CAA+C,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,CAAC,iBAAiB,iDAAiD,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,CAAC,iBAAiB,+CAA+C,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,CAAC,cAAc,wCAAwC,CAAC,yBAAyB,yBAAyB,wCAAwC,CAAC,CAAC,yBAAyB,uBAAuB,wCAAwC,CAAC,CAAC,mBAAmB,uBAAuB,CAAC,yBAAyB,8BAA8B,uBAAuB,CAAC,CAAC,yBAAyB,4BAA4B,uBAAuB,CAAC,CAAC,uBAAuB,0CAA0C,CAAC,yBAAyB,kCAAkC,0CAA0C,CAAC,CAAC,yBAAyB,gCAAgC,0CAA0C,CAAC,CAAC,mBAAmB,gDAAgD,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,mBAAmB,kDAAkD,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,4BAA4B,kDAAkD,CAAC,CAAC,mBAAmB,iDAAiD,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,mBAAmB,mDAAmD,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,yBAAyB,4BAA4B,mDAAmD,CAAC,CAAC,mBAAmB,iDAAiD,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,gBAAgB,0CAA0C,CAAC,yBAAyB,2BAA2B,0CAA0C,CAAC,CAAC,yBAAyB,yBAAyB,0CAA0C,CAAC,CAAC,qBAAqB,yBAAyB,CAAC,yBAAyB,gCAAgC,yBAAyB,CAAC,CAAC,yBAAyB,8BAA8B,yBAAyB,CAAC,CAAC,wBAAwB,2CAA2C,CAAC,yBAAyB,mCAAmC,2CAA2C,CAAC,CAAC,yBAAyB,iCAAiC,2CAA2C,CAAC,CAAC,oBAAoB,iDAAiD,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,oBAAoB,mDAAmD,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,yBAAyB,6BAA6B,mDAAmD,CAAC,CAAC,oBAAoB,kDAAkD,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,oBAAoB,oDAAoD,CAAC,yBAAyB,+BAA+B,oDAAoD,CAAC,CAAC,yBAAyB,6BAA6B,oDAAoD,CAAC,CAAC,oBAAoB,kDAAkD,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,iBAAiB,2CAA2C,CAAC,yBAAyB,4BAA4B,2CAA2C,CAAC,CAAC,yBAAyB,0BAA0B,2CAA2C,CAAC,CAAC,sBAAsB,0BAA0B,CAAC,yBAAyB,iCAAiC,0BAA0B,CAAC,CAAC,yBAAyB,+BAA+B,0BAA0B,CAAC,CAAC,sBAAsB,yCAAyC,CAAC,yBAAyB,iCAAiC,yCAAyC,CAAC,CAAC,yBAAyB,+BAA+B,yCAAyC,CAAC,CAAC,kBAAkB,+CAA+C,CAAC,yBAAyB,6BAA6B,+CAA+C,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,CAAC,kBAAkB,iDAAiD,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,CAAC,kBAAkB,gDAAgD,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,CAAC,kBAAkB,kDAAkD,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,CAAC,kBAAkB,gDAAgD,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,CAAC,eAAe,yCAAyC,CAAC,yBAAyB,0BAA0B,yCAAyC,CAAC,CAAC,yBAAyB,wBAAwB,yCAAyC,CAAC,CAAC,oBAAoB,wBAAwB,CAAC,yBAAyB,+BAA+B,wBAAwB,CAAC,CAAC,yBAAyB,6BAA6B,wBAAwB,CAAC,CAAC,mBAAmB,yCAAyC,CAAC,0CAA0C,CAAC,yBAAyB,8BAA8B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,4BAA4B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,eAAe,+CAA+C,CAAC,gDAAgD,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,yBAAyB,wBAAwB,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,eAAe,iDAAiD,CAAC,kDAAkD,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,wBAAwB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,eAAe,gDAAgD,CAAC,iDAAiD,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,wBAAwB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,eAAe,kDAAkD,CAAC,mDAAmD,CAAC,yBAAyB,0BAA0B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,wBAAwB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,eAAe,gDAAgD,CAAC,iDAAiD,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,wBAAwB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,YAAY,yCAAyC,CAAC,0CAA0C,CAAC,yBAAyB,uBAAuB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,qBAAqB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,iBAAiB,wBAAwB,CAAC,yBAAyB,CAAC,yBAAyB,4BAA4B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,yBAAyB,0BAA0B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,mBAAmB,wCAAwC,CAAC,2CAA2C,CAAC,yBAAyB,8BAA8B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,4BAA4B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,eAAe,8CAA8C,CAAC,iDAAiD,CAAC,yBAAyB,0BAA0B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,wBAAwB,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,eAAe,gDAAgD,CAAC,mDAAmD,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,wBAAwB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,eAAe,+CAA+C,CAAC,kDAAkD,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,wBAAwB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,eAAe,iDAAiD,CAAC,oDAAoD,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,wBAAwB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,eAAe,+CAA+C,CAAC,kDAAkD,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,wBAAwB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,YAAY,wCAAwC,CAAC,2CAA2C,CAAC,yBAAyB,uBAAuB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,qBAAqB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,iBAAiB,uBAAuB,CAAC,0BAA0B,CAAC,yBAAyB,4BAA4B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,0BAA0B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,8BAA8B,qCAAqC,CAAC,CAAC,yBAAyB,4BAA4B,qCAAqC,CAAC,CAAC,yBAAyB,0BAA0B,2CAA2C,CAAC,CAAC,yBAAyB,wBAAwB,2CAA2C,CAAC,CAAC,yBAAyB,0BAA0B,6CAA6C,CAAC,CAAC,yBAAyB,wBAAwB,6CAA6C,CAAC,CAAC,yBAAyB,0BAA0B,4CAA4C,CAAC,CAAC,yBAAyB,wBAAwB,4CAA4C,CAAC,CAAC,yBAAyB,0BAA0B,8CAA8C,CAAC,CAAC,yBAAyB,wBAAwB,8CAA8C,CAAC,CAAC,yBAAyB,0BAA0B,4CAA4C,CAAC,CAAC,yBAAyB,wBAAwB,4CAA4C,CAAC,CAAC,yBAAyB,uBAAuB,qCAAqC,CAAC,CAAC,yBAAyB,qBAAqB,qCAAqC,CAAC,CAAC,yBAAyB,4BAA4B,oBAAoB,CAAC,CAAC,yBAAyB,0BAA0B,oBAAoB,CAAC,CAAC,yBAAyB,kCAAkC,yCAAyC,CAAC,CAAC,yBAAyB,gCAAgC,yCAAyC,CAAC,CAAC,yBAAyB,8BAA8B,+CAA+C,CAAC,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,4BAA4B,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,yCAAyC,CAAC,CAAC,yBAAyB,yBAAyB,yCAAyC,CAAC,CAAC,yBAAyB,gCAAgC,wBAAwB,CAAC,CAAC,yBAAyB,8BAA8B,wBAAwB,CAAC,CAAC,yBAAyB,oCAAoC,2CAA2C,CAAC,CAAC,yBAAyB,kCAAkC,2CAA2C,CAAC,CAAC,yBAAyB,gCAAgC,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,gCAAgC,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,yBAAyB,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,gCAAgC,oDAAoD,CAAC,CAAC,yBAAyB,8BAA8B,oDAAoD,CAAC,CAAC,yBAAyB,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,2CAA2C,CAAC,CAAC,yBAAyB,2BAA2B,2CAA2C,CAAC,CAAC,yBAAyB,kCAAkC,0BAA0B,CAAC,CAAC,yBAAyB,gCAAgC,0BAA0B,CAAC,CAAC,yBAAyB,qCAAqC,4CAA4C,CAAC,CAAC,yBAAyB,mCAAmC,4CAA4C,CAAC,CAAC,yBAAyB,iCAAiC,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,iCAAiC,oDAAoD,CAAC,CAAC,yBAAyB,+BAA+B,oDAAoD,CAAC,CAAC,yBAAyB,iCAAiC,mDAAmD,CAAC,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,yBAAyB,iCAAiC,qDAAqD,CAAC,CAAC,yBAAyB,+BAA+B,qDAAqD,CAAC,CAAC,yBAAyB,iCAAiC,mDAAmD,CAAC,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,4CAA4C,CAAC,CAAC,yBAAyB,4BAA4B,4CAA4C,CAAC,CAAC,yBAAyB,mCAAmC,2BAA2B,CAAC,CAAC,yBAAyB,iCAAiC,2BAA2B,CAAC,CAAC,yBAAyB,mCAAmC,0CAA0C,CAAC,CAAC,yBAAyB,iCAAiC,0CAA0C,CAAC,CAAC,yBAAyB,+BAA+B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,yBAAyB,6BAA6B,mDAAmD,CAAC,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,0CAA0C,CAAC,CAAC,yBAAyB,0BAA0B,0CAA0C,CAAC,CAAC,yBAAyB,iCAAiC,yBAAyB,CAAC,CAAC,yBAAyB,+BAA+B,yBAAyB,CAAC,CAAC,yBAAyB,gCAAgC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,8BAA8B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,0BAA0B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,4BAA4B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,0BAA0B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,uBAAuB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,8BAA8B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,4BAA4B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,gCAAgC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,8BAA8B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,4BAA4B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,yBAAyB,0BAA0B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,yBAAyB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,uBAAuB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,8BAA8B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,4BAA4B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,6BAA6B,oCAAoC,CAAC,CAAC,yBAAyB,2BAA2B,oCAAoC,CAAC,CAAC,yBAAyB,yBAAyB,0CAA0C,CAAC,CAAC,yBAAyB,uBAAuB,0CAA0C,CAAC,CAAC,yBAAyB,yBAAyB,4CAA4C,CAAC,CAAC,yBAAyB,uBAAuB,4CAA4C,CAAC,CAAC,yBAAyB,yBAAyB,2CAA2C,CAAC,CAAC,yBAAyB,uBAAuB,2CAA2C,CAAC,CAAC,yBAAyB,yBAAyB,6CAA6C,CAAC,CAAC,yBAAyB,uBAAuB,6CAA6C,CAAC,CAAC,yBAAyB,yBAAyB,2CAA2C,CAAC,CAAC,yBAAyB,uBAAuB,2CAA2C,CAAC,CAAC,yBAAyB,sBAAsB,oCAAoC,CAAC,CAAC,yBAAyB,oBAAoB,oCAAoC,CAAC,CAAC,yBAAyB,2BAA2B,mBAAmB,CAAC,CAAC,yBAAyB,yBAAyB,mBAAmB,CAAC,CAAC,yBAAyB,iCAAiC,wCAAwC,CAAC,CAAC,yBAAyB,+BAA+B,wCAAwC,CAAC,CAAC,yBAAyB,6BAA6B,8CAA8C,CAAC,CAAC,yBAAyB,2BAA2B,8CAA8C,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,+CAA+C,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,+CAA+C,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,CAAC,yBAAyB,0BAA0B,wCAAwC,CAAC,CAAC,yBAAyB,wBAAwB,wCAAwC,CAAC,CAAC,yBAAyB,+BAA+B,uBAAuB,CAAC,CAAC,yBAAyB,6BAA6B,uBAAuB,CAAC,CAAC,yBAAyB,mCAAmC,0CAA0C,CAAC,CAAC,yBAAyB,iCAAiC,0CAA0C,CAAC,CAAC,yBAAyB,+BAA+B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,yBAAyB,6BAA6B,mDAAmD,CAAC,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,0CAA0C,CAAC,CAAC,yBAAyB,0BAA0B,0CAA0C,CAAC,CAAC,yBAAyB,iCAAiC,yBAAyB,CAAC,CAAC,yBAAyB,+BAA+B,yBAAyB,CAAC,CAAC,yBAAyB,oCAAoC,2CAA2C,CAAC,CAAC,yBAAyB,kCAAkC,2CAA2C,CAAC,CAAC,yBAAyB,gCAAgC,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,gCAAgC,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,yBAAyB,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,gCAAgC,oDAAoD,CAAC,CAAC,yBAAyB,8BAA8B,oDAAoD,CAAC,CAAC,yBAAyB,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,2CAA2C,CAAC,CAAC,yBAAyB,2BAA2B,2CAA2C,CAAC,CAAC,yBAAyB,kCAAkC,0BAA0B,CAAC,CAAC,yBAAyB,gCAAgC,0BAA0B,CAAC,CAAC,yBAAyB,kCAAkC,yCAAyC,CAAC,CAAC,yBAAyB,gCAAgC,yCAAyC,CAAC,CAAC,yBAAyB,8BAA8B,+CAA+C,CAAC,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,yBAAyB,4BAA4B,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,yCAAyC,CAAC,CAAC,yBAAyB,yBAAyB,yCAAyC,CAAC,CAAC,yBAAyB,gCAAgC,wBAAwB,CAAC,CAAC,yBAAyB,8BAA8B,wBAAwB,CAAC,CAAC,yBAAyB,+BAA+B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,6BAA6B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,yBAAyB,yBAAyB,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,yBAAyB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,wBAAwB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,sBAAsB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,6BAA6B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,yBAAyB,2BAA2B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,yBAAyB,+BAA+B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,6BAA6B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,2BAA2B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,yBAAyB,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,yBAAyB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,wBAAwB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,sBAAsB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,6BAA6B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,2BAA2B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,qCAAqC,CAAC,CAAC,yBAAyB,6BAA6B,qCAAqC,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,yBAAyB,yBAAyB,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,6CAA6C,CAAC,CAAC,yBAAyB,yBAAyB,6CAA6C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,yBAAyB,yBAAyB,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,CAAC,yBAAyB,yBAAyB,8CAA8C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,yBAAyB,yBAAyB,4CAA4C,CAAC,CAAC,0BAA0B,wBAAwB,qCAAqC,CAAC,CAAC,yBAAyB,sBAAsB,qCAAqC,CAAC,CAAC,0BAA0B,6BAA6B,oBAAoB,CAAC,CAAC,yBAAyB,2BAA2B,oBAAoB,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,yBAAyB,iCAAiC,yCAAyC,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,yBAAyB,6BAA6B,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,yBAAyB,0BAA0B,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,yBAAyB,+BAA+B,wBAAwB,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,yBAAyB,mCAAmC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,yBAAyB,+BAA+B,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,yBAAyB,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,yBAAyB,iCAAiC,0BAA0B,CAAC,CAAC,0BAA0B,sCAAsC,4CAA4C,CAAC,CAAC,yBAAyB,oCAAoC,4CAA4C,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,yBAAyB,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,oDAAoD,CAAC,CAAC,yBAAyB,gCAAgC,oDAAoD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,yBAAyB,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,qDAAqD,CAAC,CAAC,yBAAyB,gCAAgC,qDAAqD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,yBAAyB,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,4CAA4C,CAAC,CAAC,yBAAyB,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,oCAAoC,2BAA2B,CAAC,CAAC,yBAAyB,kCAAkC,2BAA2B,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,yBAAyB,kCAAkC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,yBAAyB,2BAA2B,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,yBAAyB,gCAAgC,yBAAyB,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,+BAA+B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,2BAA2B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,wBAAwB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,6BAA6B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,iCAAiC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,+BAA+B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,2BAA2B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,yBAAyB,2BAA2B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,yBAAyB,wBAAwB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,yBAAyB,6BAA6B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,8BAA8B,oCAAoC,CAAC,CAAC,yBAAyB,4BAA4B,oCAAoC,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,yBAAyB,wBAAwB,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,yBAAyB,wBAAwB,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,yBAAyB,wBAAwB,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,6CAA6C,CAAC,CAAC,yBAAyB,wBAAwB,6CAA6C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,yBAAyB,wBAAwB,2CAA2C,CAAC,CAAC,0BAA0B,uBAAuB,oCAAoC,CAAC,CAAC,yBAAyB,qBAAqB,oCAAoC,CAAC,CAAC,0BAA0B,4BAA4B,mBAAmB,CAAC,CAAC,yBAAyB,0BAA0B,mBAAmB,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,CAAC,yBAAyB,gCAAgC,wCAAwC,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,CAAC,yBAAyB,4BAA4B,8CAA8C,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,yBAAyB,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,yBAAyB,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,yBAAyB,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,CAAC,yBAAyB,yBAAyB,wCAAwC,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,CAAC,yBAAyB,8BAA8B,uBAAuB,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,yBAAyB,kCAAkC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,yBAAyB,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,yBAAyB,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,yBAAyB,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,yBAAyB,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,yBAAyB,2BAA2B,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,yBAAyB,gCAAgC,yBAAyB,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,yBAAyB,mCAAmC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,yBAAyB,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,yBAAyB,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,yBAAyB,+BAA+B,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,yBAAyB,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,yBAAyB,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,yBAAyB,iCAAiC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,yBAAyB,iCAAiC,yCAAyC,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,yBAAyB,6BAA6B,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,yBAAyB,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,yBAAyB,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,yBAAyB,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,yBAAyB,0BAA0B,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,yBAAyB,+BAA+B,wBAAwB,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,8BAA8B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,0BAA0B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,yBAAyB,uBAAuB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,yBAAyB,4BAA4B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,gCAAgC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,8BAA8B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,yBAAyB,0BAA0B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,yBAAyB,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,yBAAyB,0BAA0B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,yBAAyB,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,yBAAyB,uBAAuB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,yBAAyB,4BAA4B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,qCAAqC,CAAC,CAAC,0BAA0B,4BAA4B,qCAAqC,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,wBAAwB,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,6CAA6C,CAAC,CAAC,0BAA0B,wBAAwB,6CAA6C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,0BAA0B,wBAAwB,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,8CAA8C,CAAC,CAAC,0BAA0B,wBAAwB,8CAA8C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,0BAA0B,wBAAwB,4CAA4C,CAAC,CAAC,0BAA0B,uBAAuB,qCAAqC,CAAC,CAAC,0BAA0B,qBAAqB,qCAAqC,CAAC,CAAC,0BAA0B,4BAA4B,oBAAoB,CAAC,CAAC,0BAA0B,0BAA0B,oBAAoB,CAAC,CAAC,0BAA0B,kCAAkC,yCAAyC,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,yCAAyC,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,CAAC,0BAA0B,gCAAgC,wBAAwB,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,CAAC,0BAA0B,oCAAoC,2CAA2C,CAAC,CAAC,0BAA0B,kCAAkC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,oDAAoD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,kCAAkC,0BAA0B,CAAC,CAAC,0BAA0B,gCAAgC,0BAA0B,CAAC,CAAC,0BAA0B,qCAAqC,4CAA4C,CAAC,CAAC,0BAA0B,mCAAmC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,qDAAqD,CAAC,CAAC,0BAA0B,+BAA+B,qDAAqD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,4CAA4C,CAAC,CAAC,0BAA0B,mCAAmC,2BAA2B,CAAC,CAAC,0BAA0B,iCAAiC,2BAA2B,CAAC,CAAC,0BAA0B,mCAAmC,0CAA0C,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,iCAAiC,yBAAyB,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,CAAC,0BAA0B,gCAAgC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,0BAA0B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,uBAAuB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,4BAA4B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,uBAAuB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,4BAA4B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,6BAA6B,oCAAoC,CAAC,CAAC,0BAA0B,2BAA2B,oCAAoC,CAAC,CAAC,0BAA0B,yBAAyB,0CAA0C,CAAC,CAAC,0BAA0B,uBAAuB,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,4CAA4C,CAAC,CAAC,0BAA0B,uBAAuB,4CAA4C,CAAC,CAAC,0BAA0B,yBAAyB,2CAA2C,CAAC,CAAC,0BAA0B,uBAAuB,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,6CAA6C,CAAC,CAAC,0BAA0B,uBAAuB,6CAA6C,CAAC,CAAC,0BAA0B,yBAAyB,2CAA2C,CAAC,CAAC,0BAA0B,uBAAuB,2CAA2C,CAAC,CAAC,0BAA0B,sBAAsB,oCAAoC,CAAC,CAAC,0BAA0B,oBAAoB,oCAAoC,CAAC,CAAC,0BAA0B,2BAA2B,mBAAmB,CAAC,CAAC,0BAA0B,yBAAyB,mBAAmB,CAAC,CAAC,0BAA0B,iCAAiC,wCAAwC,CAAC,CAAC,0BAA0B,+BAA+B,wCAAwC,CAAC,CAAC,0BAA0B,6BAA6B,8CAA8C,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,CAAC,0BAA0B,0BAA0B,wCAAwC,CAAC,CAAC,0BAA0B,wBAAwB,wCAAwC,CAAC,CAAC,0BAA0B,+BAA+B,uBAAuB,CAAC,CAAC,0BAA0B,6BAA6B,uBAAuB,CAAC,CAAC,0BAA0B,mCAAmC,0CAA0C,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,iCAAiC,yBAAyB,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,CAAC,0BAA0B,oCAAoC,2CAA2C,CAAC,CAAC,0BAA0B,kCAAkC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,oDAAoD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,kCAAkC,0BAA0B,CAAC,CAAC,0BAA0B,gCAAgC,0BAA0B,CAAC,CAAC,0BAA0B,kCAAkC,yCAAyC,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,yCAAyC,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,CAAC,0BAA0B,gCAAgC,wBAAwB,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,CAAC,0BAA0B,+BAA+B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,wBAAwB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,sBAAsB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,2BAA2B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,+BAA+B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,sBAAsB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,2BAA2B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,4BAA4B,qCAAqC,CAAC,CAAC,0BAA0B,0BAA0B,qCAAqC,CAAC,CAAC,0BAA0B,wBAAwB,2CAA2C,CAAC,CAAC,0BAA0B,sBAAsB,2CAA2C,CAAC,CAAC,0BAA0B,wBAAwB,6CAA6C,CAAC,CAAC,0BAA0B,sBAAsB,6CAA6C,CAAC,CAAC,0BAA0B,wBAAwB,4CAA4C,CAAC,CAAC,0BAA0B,sBAAsB,4CAA4C,CAAC,CAAC,0BAA0B,wBAAwB,8CAA8C,CAAC,CAAC,0BAA0B,sBAAsB,8CAA8C,CAAC,CAAC,0BAA0B,wBAAwB,4CAA4C,CAAC,CAAC,0BAA0B,sBAAsB,4CAA4C,CAAC,CAAC,0BAA0B,qBAAqB,qCAAqC,CAAC,CAAC,0BAA0B,mBAAmB,qCAAqC,CAAC,CAAC,0BAA0B,0BAA0B,oBAAoB,CAAC,CAAC,0BAA0B,wBAAwB,oBAAoB,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,CAAC,0BAA0B,uBAAuB,yCAAyC,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,CAAC,0BAA0B,4BAA4B,wBAAwB,CAAC,CAAC,0BAA0B,kCAAkC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,qDAAqD,CAAC,CAAC,0BAA0B,6BAA6B,qDAAqD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,2BAA2B,CAAC,CAAC,0BAA0B,+BAA+B,2BAA2B,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,2BAA2B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,wBAAwB,0CAA0C,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,CAAC,0BAA0B,6BAA6B,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,wBAAwB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,wBAAwB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,wBAAwB,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,uBAAuB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,qBAAqB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,0BAA0B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,wBAAwB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,wBAAwB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,wBAAwB,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,wBAAwB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,uBAAuB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,qBAAqB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,0BAA0B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,2BAA2B,oCAAoC,CAAC,CAAC,0BAA0B,yBAAyB,oCAAoC,CAAC,CAAC,0BAA0B,uBAAuB,0CAA0C,CAAC,CAAC,0BAA0B,qBAAqB,0CAA0C,CAAC,CAAC,0BAA0B,uBAAuB,4CAA4C,CAAC,CAAC,0BAA0B,qBAAqB,4CAA4C,CAAC,CAAC,0BAA0B,uBAAuB,2CAA2C,CAAC,CAAC,0BAA0B,qBAAqB,2CAA2C,CAAC,CAAC,0BAA0B,uBAAuB,6CAA6C,CAAC,CAAC,0BAA0B,qBAAqB,6CAA6C,CAAC,CAAC,0BAA0B,uBAAuB,2CAA2C,CAAC,CAAC,0BAA0B,qBAAqB,2CAA2C,CAAC,CAAC,0BAA0B,oBAAoB,oCAAoC,CAAC,CAAC,0BAA0B,kBAAkB,oCAAoC,CAAC,CAAC,0BAA0B,yBAAyB,mBAAmB,CAAC,CAAC,0BAA0B,uBAAuB,mBAAmB,CAAC,CAAC,0BAA0B,+BAA+B,wCAAwC,CAAC,CAAC,0BAA0B,6BAA6B,wCAAwC,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,CAAC,0BAA0B,yBAAyB,8CAA8C,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,CAAC,0BAA0B,wBAAwB,wCAAwC,CAAC,CAAC,0BAA0B,sBAAsB,wCAAwC,CAAC,CAAC,0BAA0B,6BAA6B,uBAAuB,CAAC,CAAC,0BAA0B,2BAA2B,uBAAuB,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,2BAA2B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,wBAAwB,0CAA0C,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,CAAC,0BAA0B,6BAA6B,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,0BAA0B,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,CAAC,0BAA0B,uBAAuB,yCAAyC,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,CAAC,0BAA0B,4BAA4B,wBAAwB,CAAC,CAAC,0BAA0B,6BAA6B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,2BAA2B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,uBAAuB,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,uBAAuB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,uBAAuB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,uBAAuB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,uBAAuB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,sBAAsB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,oBAAoB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,2BAA2B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,yBAAyB,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,6BAA6B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,uBAAuB,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,uBAAuB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,uBAAuB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,uBAAuB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,uBAAuB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,sBAAsB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,oBAAoB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,yBAAyB,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,6BAA6B,qCAAqC,CAAC,CAAC,0BAA0B,2BAA2B,qCAAqC,CAAC,CAAC,0BAA0B,yBAAyB,2CAA2C,CAAC,CAAC,0BAA0B,uBAAuB,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,6CAA6C,CAAC,CAAC,0BAA0B,uBAAuB,6CAA6C,CAAC,CAAC,0BAA0B,yBAAyB,4CAA4C,CAAC,CAAC,0BAA0B,uBAAuB,4CAA4C,CAAC,CAAC,0BAA0B,yBAAyB,8CAA8C,CAAC,CAAC,0BAA0B,uBAAuB,8CAA8C,CAAC,CAAC,0BAA0B,yBAAyB,4CAA4C,CAAC,CAAC,0BAA0B,uBAAuB,4CAA4C,CAAC,CAAC,0BAA0B,sBAAsB,qCAAqC,CAAC,CAAC,0BAA0B,oBAAoB,qCAAqC,CAAC,CAAC,0BAA0B,2BAA2B,oBAAoB,CAAC,CAAC,0BAA0B,yBAAyB,oBAAoB,CAAC,CAAC,0BAA0B,iCAAiC,yCAAyC,CAAC,CAAC,0BAA0B,+BAA+B,yCAAyC,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,yCAAyC,CAAC,CAAC,0BAA0B,wBAAwB,yCAAyC,CAAC,CAAC,0BAA0B,+BAA+B,wBAAwB,CAAC,CAAC,0BAA0B,6BAA6B,wBAAwB,CAAC,CAAC,0BAA0B,mCAAmC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,2CAA2C,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,0BAA0B,CAAC,CAAC,0BAA0B,oCAAoC,4CAA4C,CAAC,CAAC,0BAA0B,kCAAkC,4CAA4C,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,oDAAoD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,qDAAqD,CAAC,CAAC,0BAA0B,8BAA8B,qDAAqD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,kCAAkC,2BAA2B,CAAC,CAAC,0BAA0B,gCAAgC,2BAA2B,CAAC,CAAC,0BAA0B,kCAAkC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,0CAA0C,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,yBAAyB,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,yBAAyB,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,sBAAsB,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,2BAA2B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,6BAA6B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,yBAAyB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,yBAAyB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,yBAAyB,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,yBAAyB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,wBAAwB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,sBAAsB,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,6BAA6B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,2BAA2B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,4BAA4B,oCAAoC,CAAC,CAAC,0BAA0B,0BAA0B,oCAAoC,CAAC,CAAC,0BAA0B,wBAAwB,0CAA0C,CAAC,CAAC,0BAA0B,sBAAsB,0CAA0C,CAAC,CAAC,0BAA0B,wBAAwB,4CAA4C,CAAC,CAAC,0BAA0B,sBAAsB,4CAA4C,CAAC,CAAC,0BAA0B,wBAAwB,2CAA2C,CAAC,CAAC,0BAA0B,sBAAsB,2CAA2C,CAAC,CAAC,0BAA0B,wBAAwB,6CAA6C,CAAC,CAAC,0BAA0B,sBAAsB,6CAA6C,CAAC,CAAC,0BAA0B,wBAAwB,2CAA2C,CAAC,CAAC,0BAA0B,sBAAsB,2CAA2C,CAAC,CAAC,0BAA0B,qBAAqB,oCAAoC,CAAC,CAAC,0BAA0B,mBAAmB,oCAAoC,CAAC,CAAC,0BAA0B,0BAA0B,mBAAmB,CAAC,CAAC,0BAA0B,wBAAwB,mBAAmB,CAAC,CAAC,0BAA0B,gCAAgC,wCAAwC,CAAC,CAAC,0BAA0B,8BAA8B,wCAAwC,CAAC,CAAC,0BAA0B,4BAA4B,8CAA8C,CAAC,CAAC,0BAA0B,0BAA0B,8CAA8C,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,CAAC,0BAA0B,yBAAyB,wCAAwC,CAAC,CAAC,0BAA0B,uBAAuB,wCAAwC,CAAC,CAAC,0BAA0B,8BAA8B,uBAAuB,CAAC,CAAC,0BAA0B,4BAA4B,uBAAuB,CAAC,CAAC,0BAA0B,kCAAkC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,0CAA0C,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,yBAAyB,CAAC,CAAC,0BAA0B,mCAAmC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,2CAA2C,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,0BAA0B,CAAC,CAAC,0BAA0B,iCAAiC,yCAAyC,CAAC,CAAC,0BAA0B,+BAA+B,yCAAyC,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,CAAC,0BAA0B,2BAA2B,+CAA+C,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,CAAC,0BAA0B,2BAA2B,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,yCAAyC,CAAC,CAAC,0BAA0B,wBAAwB,yCAAyC,CAAC,CAAC,0BAA0B,+BAA+B,wBAAwB,CAAC,CAAC,0BAA0B,6BAA6B,wBAAwB,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,wBAAwB,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,wBAAwB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,wBAAwB,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,wBAAwB,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,uBAAuB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,qBAAqB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,4BAA4B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,0BAA0B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,wBAAwB,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,0BAA0B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,wBAAwB,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,0BAA0B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,wBAAwB,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,0BAA0B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,wBAAwB,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,uBAAuB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,qBAAqB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,0BAA0B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,iCAAiC,qCAAqC,CAAC,CAAC,0BAA0B,+BAA+B,qCAAqC,CAAC,CAAC,0BAA0B,6BAA6B,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,6CAA6C,CAAC,CAAC,0BAA0B,2BAA2B,6CAA6C,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,6BAA6B,8CAA8C,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,qCAAqC,CAAC,CAAC,0BAA0B,wBAAwB,qCAAqC,CAAC,CAAC,0BAA0B,+BAA+B,oBAAoB,CAAC,CAAC,0BAA0B,6BAA6B,oBAAoB,CAAC,CAAC,0BAA0B,qCAAqC,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,wBAAwB,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,0BAA0B,uCAAuC,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,mCAAmC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,mCAAmC,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,0BAA0B,wCAAwC,4CAA4C,CAAC,CAAC,0BAA0B,sCAAsC,4CAA4C,CAAC,CAAC,0BAA0B,oCAAoC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,oCAAoC,oDAAoD,CAAC,CAAC,0BAA0B,kCAAkC,oDAAoD,CAAC,CAAC,0BAA0B,oCAAoC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,oCAAoC,qDAAqD,CAAC,CAAC,0BAA0B,kCAAkC,qDAAqD,CAAC,CAAC,0BAA0B,oCAAoC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,4CAA4C,CAAC,CAAC,0BAA0B,sCAAsC,2BAA2B,CAAC,CAAC,0BAA0B,oCAAoC,2BAA2B,CAAC,CAAC,0BAA0B,sCAAsC,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,0BAA0B,mCAAmC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,+BAA+B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,gCAAgC,oCAAoC,CAAC,CAAC,0BAA0B,8BAA8B,oCAAoC,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,4BAA4B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,6CAA6C,CAAC,CAAC,0BAA0B,0BAA0B,6CAA6C,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,oCAAoC,CAAC,CAAC,0BAA0B,uBAAuB,oCAAoC,CAAC,CAAC,0BAA0B,8BAA8B,mBAAmB,CAAC,CAAC,0BAA0B,4BAA4B,mBAAmB,CAAC,CAAC,0BAA0B,oCAAoC,wCAAwC,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,CAAC,0BAA0B,gCAAgC,8CAA8C,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,6BAA6B,wCAAwC,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,CAAC,0BAA0B,kCAAkC,uBAAuB,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,CAAC,0BAA0B,sCAAsC,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,0BAA0B,uCAAuC,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,mCAAmC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,mCAAmC,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,0BAA0B,qCAAqC,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,wBAAwB,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,0BAA0B,kCAAkC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,iCAAiC,qCAAqC,CAAC,CAAC,0BAA0B,+BAA+B,qCAAqC,CAAC,CAAC,0BAA0B,6BAA6B,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,6CAA6C,CAAC,CAAC,0BAA0B,2BAA2B,6CAA6C,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,6BAA6B,8CAA8C,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,qCAAqC,CAAC,CAAC,0BAA0B,wBAAwB,qCAAqC,CAAC,CAAC,0BAA0B,+BAA+B,oBAAoB,CAAC,CAAC,0BAA0B,6BAA6B,oBAAoB,CAAC,CAAC,0BAA0B,qCAAqC,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,wBAAwB,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,0BAA0B,uCAAuC,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,mCAAmC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,mCAAmC,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,0BAA0B,wCAAwC,4CAA4C,CAAC,CAAC,0BAA0B,sCAAsC,4CAA4C,CAAC,CAAC,0BAA0B,oCAAoC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,oCAAoC,oDAAoD,CAAC,CAAC,0BAA0B,kCAAkC,oDAAoD,CAAC,CAAC,0BAA0B,oCAAoC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,oCAAoC,qDAAqD,CAAC,CAAC,0BAA0B,kCAAkC,qDAAqD,CAAC,CAAC,0BAA0B,oCAAoC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,4CAA4C,CAAC,CAAC,0BAA0B,sCAAsC,2BAA2B,CAAC,CAAC,0BAA0B,oCAAoC,2BAA2B,CAAC,CAAC,0BAA0B,sCAAsC,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,0BAA0B,mCAAmC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,+BAA+B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,gCAAgC,oCAAoC,CAAC,CAAC,0BAA0B,8BAA8B,oCAAoC,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,4BAA4B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,6CAA6C,CAAC,CAAC,0BAA0B,0BAA0B,6CAA6C,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,oCAAoC,CAAC,CAAC,0BAA0B,uBAAuB,oCAAoC,CAAC,CAAC,0BAA0B,8BAA8B,mBAAmB,CAAC,CAAC,0BAA0B,4BAA4B,mBAAmB,CAAC,CAAC,0BAA0B,oCAAoC,wCAAwC,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,CAAC,0BAA0B,gCAAgC,8CAA8C,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,6BAA6B,wCAAwC,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,CAAC,0BAA0B,kCAAkC,uBAAuB,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,CAAC,0BAA0B,sCAAsC,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,0BAA0B,uCAAuC,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,mCAAmC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,mCAAmC,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,0BAA0B,qCAAqC,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,wBAAwB,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,0BAA0B,kCAAkC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,iCAAiC,qCAAqC,CAAC,CAAC,0BAA0B,+BAA+B,qCAAqC,CAAC,CAAC,0BAA0B,6BAA6B,2CAA2C,CAAC,CAAC,0BAA0B,2BAA2B,2CAA2C,CAAC,CAAC,0BAA0B,6BAA6B,6CAA6C,CAAC,CAAC,0BAA0B,2BAA2B,6CAA6C,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,6BAA6B,8CAA8C,CAAC,CAAC,0BAA0B,2BAA2B,8CAA8C,CAAC,CAAC,0BAA0B,6BAA6B,4CAA4C,CAAC,CAAC,0BAA0B,2BAA2B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,qCAAqC,CAAC,CAAC,0BAA0B,wBAAwB,qCAAqC,CAAC,CAAC,0BAA0B,+BAA+B,oBAAoB,CAAC,CAAC,0BAA0B,6BAA6B,oBAAoB,CAAC,CAAC,0BAA0B,qCAAqC,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,wBAAwB,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,0BAA0B,uCAAuC,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,mCAAmC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,mCAAmC,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,0BAA0B,wCAAwC,4CAA4C,CAAC,CAAC,0BAA0B,sCAAsC,4CAA4C,CAAC,CAAC,0BAA0B,oCAAoC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,oCAAoC,oDAAoD,CAAC,CAAC,0BAA0B,kCAAkC,oDAAoD,CAAC,CAAC,0BAA0B,oCAAoC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,oCAAoC,qDAAqD,CAAC,CAAC,0BAA0B,kCAAkC,qDAAqD,CAAC,CAAC,0BAA0B,oCAAoC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,4CAA4C,CAAC,CAAC,0BAA0B,sCAAsC,2BAA2B,CAAC,CAAC,0BAA0B,oCAAoC,2BAA2B,CAAC,CAAC,0BAA0B,sCAAsC,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,0BAA0B,mCAAmC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,mDAAmD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,iCAAiC,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,+BAA+B,yBAAyB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,6BAA6B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,6BAA6B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,6BAA6B,kDAAkD,CAAC,qDAAqD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,6BAA6B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,yCAAyC,CAAC,4CAA4C,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,+BAA+B,wBAAwB,CAAC,2BAA2B,CAAC,CAAC,0BAA0B,gCAAgC,oCAAoC,CAAC,CAAC,0BAA0B,8BAA8B,oCAAoC,CAAC,CAAC,0BAA0B,4BAA4B,0CAA0C,CAAC,CAAC,0BAA0B,0BAA0B,0CAA0C,CAAC,CAAC,0BAA0B,4BAA4B,4CAA4C,CAAC,CAAC,0BAA0B,0BAA0B,4CAA4C,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,4BAA4B,6CAA6C,CAAC,CAAC,0BAA0B,0BAA0B,6CAA6C,CAAC,CAAC,0BAA0B,4BAA4B,2CAA2C,CAAC,CAAC,0BAA0B,0BAA0B,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,oCAAoC,CAAC,CAAC,0BAA0B,uBAAuB,oCAAoC,CAAC,CAAC,0BAA0B,8BAA8B,mBAAmB,CAAC,CAAC,0BAA0B,4BAA4B,mBAAmB,CAAC,CAAC,0BAA0B,oCAAoC,wCAAwC,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,CAAC,0BAA0B,gCAAgC,8CAA8C,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,+CAA+C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,CAAC,0BAA0B,6BAA6B,wCAAwC,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,CAAC,0BAA0B,kCAAkC,uBAAuB,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,CAAC,0BAA0B,sCAAsC,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,0CAA0C,CAAC,CAAC,0BAA0B,kCAAkC,gDAAgD,CAAC,CAAC,0BAA0B,gCAAgC,gDAAgD,CAAC,CAAC,0BAA0B,kCAAkC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,kDAAkD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,kCAAkC,mDAAmD,CAAC,CAAC,0BAA0B,gCAAgC,mDAAmD,CAAC,CAAC,0BAA0B,kCAAkC,iDAAiD,CAAC,CAAC,0BAA0B,gCAAgC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,0CAA0C,CAAC,CAAC,0BAA0B,6BAA6B,0CAA0C,CAAC,CAAC,0BAA0B,oCAAoC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,yBAAyB,CAAC,CAAC,0BAA0B,uCAAuC,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,2CAA2C,CAAC,CAAC,0BAA0B,mCAAmC,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,mCAAmC,mDAAmD,CAAC,CAAC,0BAA0B,iCAAiC,mDAAmD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,mCAAmC,oDAAoD,CAAC,CAAC,0BAA0B,iCAAiC,oDAAoD,CAAC,CAAC,0BAA0B,mCAAmC,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,gCAAgC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,2CAA2C,CAAC,CAAC,0BAA0B,qCAAqC,0BAA0B,CAAC,CAAC,0BAA0B,mCAAmC,0BAA0B,CAAC,CAAC,0BAA0B,qCAAqC,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,yCAAyC,CAAC,CAAC,0BAA0B,iCAAiC,+CAA+C,CAAC,CAAC,0BAA0B,+BAA+B,+CAA+C,CAAC,CAAC,0BAA0B,iCAAiC,iDAAiD,CAAC,CAAC,0BAA0B,+BAA+B,iDAAiD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,iCAAiC,kDAAkD,CAAC,CAAC,0BAA0B,+BAA+B,kDAAkD,CAAC,CAAC,0BAA0B,iCAAiC,gDAAgD,CAAC,CAAC,0BAA0B,+BAA+B,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,yCAAyC,CAAC,CAAC,0BAA0B,4BAA4B,yCAAyC,CAAC,CAAC,0BAA0B,mCAAmC,wBAAwB,CAAC,CAAC,0BAA0B,iCAAiC,wBAAwB,CAAC,CAAC,0BAA0B,kCAAkC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,gDAAgD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,kDAAkD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,2BAA2B,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,yBAAyB,yCAAyC,CAAC,0CAA0C,CAAC,CAAC,0BAA0B,gCAAgC,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,8BAA8B,wBAAwB,CAAC,yBAAyB,CAAC,CAAC,0BAA0B,kCAAkC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,8BAA8B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,4BAA4B,8CAA8C,CAAC,iDAAiD,CAAC,CAAC,0BAA0B,8BAA8B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,4BAA4B,gDAAgD,CAAC,mDAAmD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,8BAA8B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,4BAA4B,iDAAiD,CAAC,oDAAoD,CAAC,CAAC,0BAA0B,8BAA8B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,4BAA4B,+CAA+C,CAAC,kDAAkD,CAAC,CAAC,0BAA0B,2BAA2B,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,yBAAyB,wCAAwC,CAAC,2CAA2C,CAAC,CAAC,0BAA0B,gCAAgC,uBAAuB,CAAC,0BAA0B,CAAC,CAAC,0BAA0B,8BAA8B,uBAAuB,CAAC,0BAA0B,CAAC","file":"main.css","sourcesContent":[":root{--grid-columns: 4;--grid-gutter: 0.625rem;--grid-margin: 0.625rem;--container-width: calc(100% - 2 * var(--grid-margin));--font-size-h1: clamp(36px, 0.0514285714 * calc(100 * var(--vw, 1vw)), 72px);--font-size-h2: 1.75rem;--font-size-h3: 1.5rem;--font-size-h4: 1.25rem;--font-size-h5: 1.125rem;--font-size-h6: 1rem}@media(min-width: 700px){:root{--grid-columns: 12;--grid-gutter: 1rem;--grid-margin: 1.25rem}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{box-sizing:border-box}template,[hidden]{display:none}*,:before,:after{box-sizing:inherit}address{font-style:inherit}dfn,cite,em,i{font-style:italic}b,strong{font-weight:700}a{text-decoration:none}a svg{pointer-events:none}ul,ol{margin:0;padding:0;list-style:none}p,figure{margin:0;padding:0}h1,h2,h3,h4,h5,h6{margin:0}a,area,button,input,label,select,textarea,[tabindex]{-ms-touch-action:manipulation;touch-action:manipulation}[hreflang]>abbr[title]{text-decoration:none}table{border-spacing:0;border-collapse:collapse}hr{display:block;margin:1em 0;padding:0;height:1px;border:0;border-top:1px solid #ccc}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio:not([controls]){display:none;height:0}img,svg{max-width:100%;height:auto}img[width],img[height],svg[width],svg[height]{max-width:none}img{font-style:italic}svg{fill:currentColor}input,select,textarea{display:block;margin:0;padding:0;width:100%;outline:0;border:0;border-radius:0;background:none rgba(0,0,0,0);color:inherit;font:inherit;line-height:normal;appearance:none}select{text-transform:none}select::-ms-expand{display:none}select::-ms-value{background:none;color:inherit}textarea{overflow:auto;resize:vertical}button,.c-button{display:inline-block;overflow:visible;margin:0;padding:0;outline:0;border:0;background:none rgba(0,0,0,0);color:inherit;vertical-align:middle;text-align:center;text-decoration:none;text-transform:none;font:inherit;line-height:normal;cursor:pointer;user-select:none}button:focus,button:hover,.c-button:focus,.c-button:hover{text-decoration:none}html.lenis{height:auto}.lenis.lenis-smooth{scroll-behavior:auto}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-scrolling iframe{pointer-events:none}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-Bold.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-Bold.woff\") format(\"woff\");font-weight:700;font-style:normal}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-BoldIt.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-BoldIt.woff\") format(\"woff\");font-weight:700;font-style:italic}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-Regular.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-Regular.woff\") format(\"woff\");font-weight:400;font-style:normal}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-RegularIt.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-RegularIt.woff\") format(\"woff\");font-weight:400;font-style:italic}html{min-height:100%;line-height:1.5;font-family:\"Source Sans\",-apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,helvetica,Cantarell,Ubuntu,roboto,noto,arial,sans-serif;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(max-width: 699px){html{font-size:14px}}@media(min-width: 700px)and (max-width: 999px){html{font-size:14px}}@media(min-width: 1000px)and (max-width: 1199px){html{font-size:15px}}@media(min-width: 1200px)and (max-width: 1599px){html{font-size:16px}}@media(min-width: 1600px)and (max-width: 1999px){html{font-size:17px}}@media(min-width: 2000px)and (max-width: 2399px){html{font-size:18px}}@media(min-width: 2400px){html{font-size:20px}}html.is-loading{cursor:wait}::selection{background-color:#fff;color:#000;text-shadow:none}a{color:#3297fd}a:focus,a:hover{color:#027dfa}.o-container{margin-right:auto;margin-left:auto;padding-left:var(--grid-margin);padding-right:var(--grid-margin)}.o-ratio{position:relative;display:block;overflow:hidden}.o-ratio:before{display:block;padding-bottom:100%;width:100%;content:\"\"}.o-ratio_content,.o-ratio>img,.o-ratio>iframe,.o-ratio>embed,.o-ratio>object{position:absolute;top:0;bottom:0;left:0;width:100%}.o-icon{display:inline-block;vertical-align:middle}.o-icon svg{--icon-height: calc(var(--icon-width) * math.div(1, (var(--icon-ratio))));display:block;width:var(--icon-width);height:var(--icon-height);fill:currentColor}.o-grid{display:grid;width:100%}.o-grid:is(ul,ol){margin:0;padding:0;list-style:none}.o-grid.-cols{grid-template-columns:repeat(var(--grid-columns), 1fr)}.o-grid.-col-12{grid-template-columns:repeat(12, 1fr)}.o-grid.-col-4{grid-template-columns:repeat(4, 1fr)}@media(min-width: 1000px){.o-grid.-col-12\\@from-medium{grid-template-columns:repeat(12, 1fr)}}.o-grid.-gutters{gap:var(--grid-gutter);column-gap:var(--grid-gutter)}.o-grid.-full-height{height:100%}.o-grid.-top-items{align-items:start}.o-grid.-right-items{justify-items:end}.o-grid.-bottom-items{align-items:end}.o-grid.-left-items{justify-items:start}.o-grid.-center-items{align-items:center;justify-items:center}.o-grid.-center-items-x{justify-items:center}.o-grid.-center-items-y{align-items:center}.o-grid.-stretch-items{align-items:stretch;justify-items:stretch}.o-grid.-top-cells{align-content:start}.o-grid.-right-cells{justify-content:end}.o-grid.-bottom-cells{align-content:end}.o-grid.-left-cells{justify-content:start}.o-grid.-center-cells{align-content:center;justify-content:center}.o-grid.-center-cells-x{justify-content:center}.o-grid.-center-cells-y{align-content:center}.o-grid.-stretch-cells{align-content:stretch;justify-content:stretch}.o-grid.-space-around-cells{align-content:space-around;justify-content:space-around}.o-grid.-space-around-cells-x{justify-content:space-around}.o-grid.-space-around-cells-y{align-content:space-around}.o-grid.-space-between-cells{justify-content:space-between;align-content:space-between}.o-grid.-space-between-cells-x{justify-content:space-between}.o-grid.-space-between-cells-y{align-content:space-between}.o-grid.-space-evenly-cells{justify-content:space-evenly;align-content:space-evenly}.o-grid.-space-evenly-cells-x{justify-content:space-evenly}.o-grid.-space-evenly-cells-y{align-content:space-evenly}.o-grid_item{grid-column-start:var(--gc-start, 1);grid-column-end:var(--gc-end, -1)}.o-grid_item.-align-end{align-self:end}.c-heading{margin-bottom:1.875rem}.c-heading.-h1{font-size:var(--font-size-h1)}.c-heading.-h2{font-size:var(--font-size-h2)}.c-heading.-h3{font-size:var(--font-size-h3)}.c-heading.-h4{font-size:var(--font-size-h4)}.c-heading.-h5{font-size:var(--font-size-h5)}.c-heading.-h6{font-size:var(--font-size-h6)}.c-button{padding:.9375rem 1.25rem;background-color:#d3d3d3}.c-button:focus,.c-button:hover{background-color:#a9a9a9}.c-form_item{position:relative;margin-bottom:1.875rem}.c-form_label,.c-form_checkboxLabel,.c-form_radioLabel{display:block;margin-bottom:.625rem}.c-form_input,.c-form_textarea,.c-form_select_input{padding:.625rem;border:1px solid #d3d3d3;background-color:#fff}.c-form_input:hover,.c-form_textarea:hover,.c-form_select_input:hover{border-color:#a9a9a9}.c-form_input:focus,.c-form_textarea:focus,.c-form_select_input:focus{border-color:dimgray}.c-form_input::placeholder,.c-form_textarea::placeholder,.c-form_select_input::placeholder{color:gray}.c-form_checkboxLabel,.c-form_radioLabel{position:relative;display:inline-block;margin-right:.625rem;margin-bottom:0;padding-left:1.75rem;cursor:pointer}.c-form_checkboxLabel::before,.c-form_radioLabel::before,.c-form_checkboxLabel::after,.c-form_radioLabel::after{position:absolute;top:50%;left:0;display:inline-block;margin-top:-0.5625rem;padding:0;width:1.125rem;height:1.125rem;content:\"\"}.c-form_checkboxLabel::before,.c-form_radioLabel::before{background-color:#fff;border:1px solid #d3d3d3}.c-form_checkboxLabel::after,.c-form_radioLabel::after{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E\");background-position:center;background-size:.75rem;background-repeat:no-repeat;opacity:0}.c-form_checkboxLabel:hover::before,.c-form_radioLabel:hover::before{border-color:#a9a9a9}.c-form_checkbox:focus+.c-form_checkboxLabel::before,.c-form_radio:focus+.c-form_checkboxLabel::before,.c-form_checkbox:focus+.c-form_radioLabel::before,.c-form_radio:focus+.c-form_radioLabel::before{border-color:dimgray}.c-form_checkbox:checked+.c-form_checkboxLabel::after,.c-form_radio:checked+.c-form_checkboxLabel::after,.c-form_checkbox:checked+.c-form_radioLabel::after,.c-form_radio:checked+.c-form_radioLabel::after{opacity:1}.c-form_checkbox,.c-form_radio{position:absolute;width:0;opacity:0}.c-form_radioLabel::before,.c-form_radioLabel::after{border-radius:50%}.c-form_radioLabel::after{background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E\");background-size:.375rem}.c-form_select{position:relative;cursor:pointer}.c-form_select::after{position:absolute;top:0;right:0;bottom:0;z-index:2;width:2.5rem;background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E\");background-position:center;background-size:.5rem;background-repeat:no-repeat;content:\"\";pointer-events:none}.c-form_select_input{position:relative;z-index:1;padding-right:2.5rem;cursor:pointer}.c-form_textarea{min-height:12.5rem}.u-2\\:1::before{padding-bottom:50%}.u-4\\:3::before{padding-bottom:75%}.u-16\\:9::before{padding-bottom:56.25%}.u-gc-1\\/1{--gc-start: 1;--gc-end: 1}@media(min-width: 500px){.u-gc-1\\/1\\@from-tiny{--gc-start: 1;--gc-end: 1}}@media(max-width: 499px){.u-gc-1\\/1\\@to-tiny{--gc-start: 1;--gc-end: 1}}.u-gc-1\\/2{--gc-start: 1;--gc-end: 2}@media(min-width: 500px){.u-gc-1\\/2\\@from-tiny{--gc-start: 1;--gc-end: 2}}@media(max-width: 499px){.u-gc-1\\/2\\@to-tiny{--gc-start: 1;--gc-end: 2}}.u-gc-1\\/3{--gc-start: 1;--gc-end: 3}@media(min-width: 500px){.u-gc-1\\/3\\@from-tiny{--gc-start: 1;--gc-end: 3}}@media(max-width: 499px){.u-gc-1\\/3\\@to-tiny{--gc-start: 1;--gc-end: 3}}.u-gc-1\\/4{--gc-start: 1;--gc-end: 4}@media(min-width: 500px){.u-gc-1\\/4\\@from-tiny{--gc-start: 1;--gc-end: 4}}@media(max-width: 499px){.u-gc-1\\/4\\@to-tiny{--gc-start: 1;--gc-end: 4}}.u-gc-1\\/5{--gc-start: 1;--gc-end: 5}@media(min-width: 500px){.u-gc-1\\/5\\@from-tiny{--gc-start: 1;--gc-end: 5}}@media(max-width: 499px){.u-gc-1\\/5\\@to-tiny{--gc-start: 1;--gc-end: 5}}.u-gc-1\\/6{--gc-start: 1;--gc-end: 6}@media(min-width: 500px){.u-gc-1\\/6\\@from-tiny{--gc-start: 1;--gc-end: 6}}@media(max-width: 499px){.u-gc-1\\/6\\@to-tiny{--gc-start: 1;--gc-end: 6}}.u-gc-1\\/7{--gc-start: 1;--gc-end: 7}@media(min-width: 500px){.u-gc-1\\/7\\@from-tiny{--gc-start: 1;--gc-end: 7}}@media(max-width: 499px){.u-gc-1\\/7\\@to-tiny{--gc-start: 1;--gc-end: 7}}.u-gc-1\\/8{--gc-start: 1;--gc-end: 8}@media(min-width: 500px){.u-gc-1\\/8\\@from-tiny{--gc-start: 1;--gc-end: 8}}@media(max-width: 499px){.u-gc-1\\/8\\@to-tiny{--gc-start: 1;--gc-end: 8}}.u-gc-1\\/9{--gc-start: 1;--gc-end: 9}@media(min-width: 500px){.u-gc-1\\/9\\@from-tiny{--gc-start: 1;--gc-end: 9}}@media(max-width: 499px){.u-gc-1\\/9\\@to-tiny{--gc-start: 1;--gc-end: 9}}.u-gc-1\\/10{--gc-start: 1;--gc-end: 10}@media(min-width: 500px){.u-gc-1\\/10\\@from-tiny{--gc-start: 1;--gc-end: 10}}@media(max-width: 499px){.u-gc-1\\/10\\@to-tiny{--gc-start: 1;--gc-end: 10}}.u-gc-1\\/11{--gc-start: 1;--gc-end: 11}@media(min-width: 500px){.u-gc-1\\/11\\@from-tiny{--gc-start: 1;--gc-end: 11}}@media(max-width: 499px){.u-gc-1\\/11\\@to-tiny{--gc-start: 1;--gc-end: 11}}.u-gc-1\\/12{--gc-start: 1;--gc-end: 12}@media(min-width: 500px){.u-gc-1\\/12\\@from-tiny{--gc-start: 1;--gc-end: 12}}@media(max-width: 499px){.u-gc-1\\/12\\@to-tiny{--gc-start: 1;--gc-end: 12}}.u-gc-1\\/13{--gc-start: 1;--gc-end: 13}@media(min-width: 500px){.u-gc-1\\/13\\@from-tiny{--gc-start: 1;--gc-end: 13}}@media(max-width: 499px){.u-gc-1\\/13\\@to-tiny{--gc-start: 1;--gc-end: 13}}.u-gc-2\\/1{--gc-start: 2;--gc-end: 1}@media(min-width: 500px){.u-gc-2\\/1\\@from-tiny{--gc-start: 2;--gc-end: 1}}@media(max-width: 499px){.u-gc-2\\/1\\@to-tiny{--gc-start: 2;--gc-end: 1}}.u-gc-2\\/2{--gc-start: 2;--gc-end: 2}@media(min-width: 500px){.u-gc-2\\/2\\@from-tiny{--gc-start: 2;--gc-end: 2}}@media(max-width: 499px){.u-gc-2\\/2\\@to-tiny{--gc-start: 2;--gc-end: 2}}.u-gc-2\\/3{--gc-start: 2;--gc-end: 3}@media(min-width: 500px){.u-gc-2\\/3\\@from-tiny{--gc-start: 2;--gc-end: 3}}@media(max-width: 499px){.u-gc-2\\/3\\@to-tiny{--gc-start: 2;--gc-end: 3}}.u-gc-2\\/4{--gc-start: 2;--gc-end: 4}@media(min-width: 500px){.u-gc-2\\/4\\@from-tiny{--gc-start: 2;--gc-end: 4}}@media(max-width: 499px){.u-gc-2\\/4\\@to-tiny{--gc-start: 2;--gc-end: 4}}.u-gc-2\\/5{--gc-start: 2;--gc-end: 5}@media(min-width: 500px){.u-gc-2\\/5\\@from-tiny{--gc-start: 2;--gc-end: 5}}@media(max-width: 499px){.u-gc-2\\/5\\@to-tiny{--gc-start: 2;--gc-end: 5}}.u-gc-2\\/6{--gc-start: 2;--gc-end: 6}@media(min-width: 500px){.u-gc-2\\/6\\@from-tiny{--gc-start: 2;--gc-end: 6}}@media(max-width: 499px){.u-gc-2\\/6\\@to-tiny{--gc-start: 2;--gc-end: 6}}.u-gc-2\\/7{--gc-start: 2;--gc-end: 7}@media(min-width: 500px){.u-gc-2\\/7\\@from-tiny{--gc-start: 2;--gc-end: 7}}@media(max-width: 499px){.u-gc-2\\/7\\@to-tiny{--gc-start: 2;--gc-end: 7}}.u-gc-2\\/8{--gc-start: 2;--gc-end: 8}@media(min-width: 500px){.u-gc-2\\/8\\@from-tiny{--gc-start: 2;--gc-end: 8}}@media(max-width: 499px){.u-gc-2\\/8\\@to-tiny{--gc-start: 2;--gc-end: 8}}.u-gc-2\\/9{--gc-start: 2;--gc-end: 9}@media(min-width: 500px){.u-gc-2\\/9\\@from-tiny{--gc-start: 2;--gc-end: 9}}@media(max-width: 499px){.u-gc-2\\/9\\@to-tiny{--gc-start: 2;--gc-end: 9}}.u-gc-2\\/10{--gc-start: 2;--gc-end: 10}@media(min-width: 500px){.u-gc-2\\/10\\@from-tiny{--gc-start: 2;--gc-end: 10}}@media(max-width: 499px){.u-gc-2\\/10\\@to-tiny{--gc-start: 2;--gc-end: 10}}.u-gc-2\\/11{--gc-start: 2;--gc-end: 11}@media(min-width: 500px){.u-gc-2\\/11\\@from-tiny{--gc-start: 2;--gc-end: 11}}@media(max-width: 499px){.u-gc-2\\/11\\@to-tiny{--gc-start: 2;--gc-end: 11}}.u-gc-2\\/12{--gc-start: 2;--gc-end: 12}@media(min-width: 500px){.u-gc-2\\/12\\@from-tiny{--gc-start: 2;--gc-end: 12}}@media(max-width: 499px){.u-gc-2\\/12\\@to-tiny{--gc-start: 2;--gc-end: 12}}.u-gc-2\\/13{--gc-start: 2;--gc-end: 13}@media(min-width: 500px){.u-gc-2\\/13\\@from-tiny{--gc-start: 2;--gc-end: 13}}@media(max-width: 499px){.u-gc-2\\/13\\@to-tiny{--gc-start: 2;--gc-end: 13}}.u-gc-3\\/1{--gc-start: 3;--gc-end: 1}@media(min-width: 500px){.u-gc-3\\/1\\@from-tiny{--gc-start: 3;--gc-end: 1}}@media(max-width: 499px){.u-gc-3\\/1\\@to-tiny{--gc-start: 3;--gc-end: 1}}.u-gc-3\\/2{--gc-start: 3;--gc-end: 2}@media(min-width: 500px){.u-gc-3\\/2\\@from-tiny{--gc-start: 3;--gc-end: 2}}@media(max-width: 499px){.u-gc-3\\/2\\@to-tiny{--gc-start: 3;--gc-end: 2}}.u-gc-3\\/3{--gc-start: 3;--gc-end: 3}@media(min-width: 500px){.u-gc-3\\/3\\@from-tiny{--gc-start: 3;--gc-end: 3}}@media(max-width: 499px){.u-gc-3\\/3\\@to-tiny{--gc-start: 3;--gc-end: 3}}.u-gc-3\\/4{--gc-start: 3;--gc-end: 4}@media(min-width: 500px){.u-gc-3\\/4\\@from-tiny{--gc-start: 3;--gc-end: 4}}@media(max-width: 499px){.u-gc-3\\/4\\@to-tiny{--gc-start: 3;--gc-end: 4}}.u-gc-3\\/5{--gc-start: 3;--gc-end: 5}@media(min-width: 500px){.u-gc-3\\/5\\@from-tiny{--gc-start: 3;--gc-end: 5}}@media(max-width: 499px){.u-gc-3\\/5\\@to-tiny{--gc-start: 3;--gc-end: 5}}.u-gc-3\\/6{--gc-start: 3;--gc-end: 6}@media(min-width: 500px){.u-gc-3\\/6\\@from-tiny{--gc-start: 3;--gc-end: 6}}@media(max-width: 499px){.u-gc-3\\/6\\@to-tiny{--gc-start: 3;--gc-end: 6}}.u-gc-3\\/7{--gc-start: 3;--gc-end: 7}@media(min-width: 500px){.u-gc-3\\/7\\@from-tiny{--gc-start: 3;--gc-end: 7}}@media(max-width: 499px){.u-gc-3\\/7\\@to-tiny{--gc-start: 3;--gc-end: 7}}.u-gc-3\\/8{--gc-start: 3;--gc-end: 8}@media(min-width: 500px){.u-gc-3\\/8\\@from-tiny{--gc-start: 3;--gc-end: 8}}@media(max-width: 499px){.u-gc-3\\/8\\@to-tiny{--gc-start: 3;--gc-end: 8}}.u-gc-3\\/9{--gc-start: 3;--gc-end: 9}@media(min-width: 500px){.u-gc-3\\/9\\@from-tiny{--gc-start: 3;--gc-end: 9}}@media(max-width: 499px){.u-gc-3\\/9\\@to-tiny{--gc-start: 3;--gc-end: 9}}.u-gc-3\\/10{--gc-start: 3;--gc-end: 10}@media(min-width: 500px){.u-gc-3\\/10\\@from-tiny{--gc-start: 3;--gc-end: 10}}@media(max-width: 499px){.u-gc-3\\/10\\@to-tiny{--gc-start: 3;--gc-end: 10}}.u-gc-3\\/11{--gc-start: 3;--gc-end: 11}@media(min-width: 500px){.u-gc-3\\/11\\@from-tiny{--gc-start: 3;--gc-end: 11}}@media(max-width: 499px){.u-gc-3\\/11\\@to-tiny{--gc-start: 3;--gc-end: 11}}.u-gc-3\\/12{--gc-start: 3;--gc-end: 12}@media(min-width: 500px){.u-gc-3\\/12\\@from-tiny{--gc-start: 3;--gc-end: 12}}@media(max-width: 499px){.u-gc-3\\/12\\@to-tiny{--gc-start: 3;--gc-end: 12}}.u-gc-3\\/13{--gc-start: 3;--gc-end: 13}@media(min-width: 500px){.u-gc-3\\/13\\@from-tiny{--gc-start: 3;--gc-end: 13}}@media(max-width: 499px){.u-gc-3\\/13\\@to-tiny{--gc-start: 3;--gc-end: 13}}.u-gc-4\\/1{--gc-start: 4;--gc-end: 1}@media(min-width: 500px){.u-gc-4\\/1\\@from-tiny{--gc-start: 4;--gc-end: 1}}@media(max-width: 499px){.u-gc-4\\/1\\@to-tiny{--gc-start: 4;--gc-end: 1}}.u-gc-4\\/2{--gc-start: 4;--gc-end: 2}@media(min-width: 500px){.u-gc-4\\/2\\@from-tiny{--gc-start: 4;--gc-end: 2}}@media(max-width: 499px){.u-gc-4\\/2\\@to-tiny{--gc-start: 4;--gc-end: 2}}.u-gc-4\\/3{--gc-start: 4;--gc-end: 3}@media(min-width: 500px){.u-gc-4\\/3\\@from-tiny{--gc-start: 4;--gc-end: 3}}@media(max-width: 499px){.u-gc-4\\/3\\@to-tiny{--gc-start: 4;--gc-end: 3}}.u-gc-4\\/4{--gc-start: 4;--gc-end: 4}@media(min-width: 500px){.u-gc-4\\/4\\@from-tiny{--gc-start: 4;--gc-end: 4}}@media(max-width: 499px){.u-gc-4\\/4\\@to-tiny{--gc-start: 4;--gc-end: 4}}.u-gc-4\\/5{--gc-start: 4;--gc-end: 5}@media(min-width: 500px){.u-gc-4\\/5\\@from-tiny{--gc-start: 4;--gc-end: 5}}@media(max-width: 499px){.u-gc-4\\/5\\@to-tiny{--gc-start: 4;--gc-end: 5}}.u-gc-4\\/6{--gc-start: 4;--gc-end: 6}@media(min-width: 500px){.u-gc-4\\/6\\@from-tiny{--gc-start: 4;--gc-end: 6}}@media(max-width: 499px){.u-gc-4\\/6\\@to-tiny{--gc-start: 4;--gc-end: 6}}.u-gc-4\\/7{--gc-start: 4;--gc-end: 7}@media(min-width: 500px){.u-gc-4\\/7\\@from-tiny{--gc-start: 4;--gc-end: 7}}@media(max-width: 499px){.u-gc-4\\/7\\@to-tiny{--gc-start: 4;--gc-end: 7}}.u-gc-4\\/8{--gc-start: 4;--gc-end: 8}@media(min-width: 500px){.u-gc-4\\/8\\@from-tiny{--gc-start: 4;--gc-end: 8}}@media(max-width: 499px){.u-gc-4\\/8\\@to-tiny{--gc-start: 4;--gc-end: 8}}.u-gc-4\\/9{--gc-start: 4;--gc-end: 9}@media(min-width: 500px){.u-gc-4\\/9\\@from-tiny{--gc-start: 4;--gc-end: 9}}@media(max-width: 499px){.u-gc-4\\/9\\@to-tiny{--gc-start: 4;--gc-end: 9}}.u-gc-4\\/10{--gc-start: 4;--gc-end: 10}@media(min-width: 500px){.u-gc-4\\/10\\@from-tiny{--gc-start: 4;--gc-end: 10}}@media(max-width: 499px){.u-gc-4\\/10\\@to-tiny{--gc-start: 4;--gc-end: 10}}.u-gc-4\\/11{--gc-start: 4;--gc-end: 11}@media(min-width: 500px){.u-gc-4\\/11\\@from-tiny{--gc-start: 4;--gc-end: 11}}@media(max-width: 499px){.u-gc-4\\/11\\@to-tiny{--gc-start: 4;--gc-end: 11}}.u-gc-4\\/12{--gc-start: 4;--gc-end: 12}@media(min-width: 500px){.u-gc-4\\/12\\@from-tiny{--gc-start: 4;--gc-end: 12}}@media(max-width: 499px){.u-gc-4\\/12\\@to-tiny{--gc-start: 4;--gc-end: 12}}.u-gc-4\\/13{--gc-start: 4;--gc-end: 13}@media(min-width: 500px){.u-gc-4\\/13\\@from-tiny{--gc-start: 4;--gc-end: 13}}@media(max-width: 499px){.u-gc-4\\/13\\@to-tiny{--gc-start: 4;--gc-end: 13}}.u-gc-5\\/1{--gc-start: 5;--gc-end: 1}@media(min-width: 500px){.u-gc-5\\/1\\@from-tiny{--gc-start: 5;--gc-end: 1}}@media(max-width: 499px){.u-gc-5\\/1\\@to-tiny{--gc-start: 5;--gc-end: 1}}.u-gc-5\\/2{--gc-start: 5;--gc-end: 2}@media(min-width: 500px){.u-gc-5\\/2\\@from-tiny{--gc-start: 5;--gc-end: 2}}@media(max-width: 499px){.u-gc-5\\/2\\@to-tiny{--gc-start: 5;--gc-end: 2}}.u-gc-5\\/3{--gc-start: 5;--gc-end: 3}@media(min-width: 500px){.u-gc-5\\/3\\@from-tiny{--gc-start: 5;--gc-end: 3}}@media(max-width: 499px){.u-gc-5\\/3\\@to-tiny{--gc-start: 5;--gc-end: 3}}.u-gc-5\\/4{--gc-start: 5;--gc-end: 4}@media(min-width: 500px){.u-gc-5\\/4\\@from-tiny{--gc-start: 5;--gc-end: 4}}@media(max-width: 499px){.u-gc-5\\/4\\@to-tiny{--gc-start: 5;--gc-end: 4}}.u-gc-5\\/5{--gc-start: 5;--gc-end: 5}@media(min-width: 500px){.u-gc-5\\/5\\@from-tiny{--gc-start: 5;--gc-end: 5}}@media(max-width: 499px){.u-gc-5\\/5\\@to-tiny{--gc-start: 5;--gc-end: 5}}.u-gc-5\\/6{--gc-start: 5;--gc-end: 6}@media(min-width: 500px){.u-gc-5\\/6\\@from-tiny{--gc-start: 5;--gc-end: 6}}@media(max-width: 499px){.u-gc-5\\/6\\@to-tiny{--gc-start: 5;--gc-end: 6}}.u-gc-5\\/7{--gc-start: 5;--gc-end: 7}@media(min-width: 500px){.u-gc-5\\/7\\@from-tiny{--gc-start: 5;--gc-end: 7}}@media(max-width: 499px){.u-gc-5\\/7\\@to-tiny{--gc-start: 5;--gc-end: 7}}.u-gc-5\\/8{--gc-start: 5;--gc-end: 8}@media(min-width: 500px){.u-gc-5\\/8\\@from-tiny{--gc-start: 5;--gc-end: 8}}@media(max-width: 499px){.u-gc-5\\/8\\@to-tiny{--gc-start: 5;--gc-end: 8}}.u-gc-5\\/9{--gc-start: 5;--gc-end: 9}@media(min-width: 500px){.u-gc-5\\/9\\@from-tiny{--gc-start: 5;--gc-end: 9}}@media(max-width: 499px){.u-gc-5\\/9\\@to-tiny{--gc-start: 5;--gc-end: 9}}.u-gc-5\\/10{--gc-start: 5;--gc-end: 10}@media(min-width: 500px){.u-gc-5\\/10\\@from-tiny{--gc-start: 5;--gc-end: 10}}@media(max-width: 499px){.u-gc-5\\/10\\@to-tiny{--gc-start: 5;--gc-end: 10}}.u-gc-5\\/11{--gc-start: 5;--gc-end: 11}@media(min-width: 500px){.u-gc-5\\/11\\@from-tiny{--gc-start: 5;--gc-end: 11}}@media(max-width: 499px){.u-gc-5\\/11\\@to-tiny{--gc-start: 5;--gc-end: 11}}.u-gc-5\\/12{--gc-start: 5;--gc-end: 12}@media(min-width: 500px){.u-gc-5\\/12\\@from-tiny{--gc-start: 5;--gc-end: 12}}@media(max-width: 499px){.u-gc-5\\/12\\@to-tiny{--gc-start: 5;--gc-end: 12}}.u-gc-5\\/13{--gc-start: 5;--gc-end: 13}@media(min-width: 500px){.u-gc-5\\/13\\@from-tiny{--gc-start: 5;--gc-end: 13}}@media(max-width: 499px){.u-gc-5\\/13\\@to-tiny{--gc-start: 5;--gc-end: 13}}.u-gc-6\\/1{--gc-start: 6;--gc-end: 1}@media(min-width: 500px){.u-gc-6\\/1\\@from-tiny{--gc-start: 6;--gc-end: 1}}@media(max-width: 499px){.u-gc-6\\/1\\@to-tiny{--gc-start: 6;--gc-end: 1}}.u-gc-6\\/2{--gc-start: 6;--gc-end: 2}@media(min-width: 500px){.u-gc-6\\/2\\@from-tiny{--gc-start: 6;--gc-end: 2}}@media(max-width: 499px){.u-gc-6\\/2\\@to-tiny{--gc-start: 6;--gc-end: 2}}.u-gc-6\\/3{--gc-start: 6;--gc-end: 3}@media(min-width: 500px){.u-gc-6\\/3\\@from-tiny{--gc-start: 6;--gc-end: 3}}@media(max-width: 499px){.u-gc-6\\/3\\@to-tiny{--gc-start: 6;--gc-end: 3}}.u-gc-6\\/4{--gc-start: 6;--gc-end: 4}@media(min-width: 500px){.u-gc-6\\/4\\@from-tiny{--gc-start: 6;--gc-end: 4}}@media(max-width: 499px){.u-gc-6\\/4\\@to-tiny{--gc-start: 6;--gc-end: 4}}.u-gc-6\\/5{--gc-start: 6;--gc-end: 5}@media(min-width: 500px){.u-gc-6\\/5\\@from-tiny{--gc-start: 6;--gc-end: 5}}@media(max-width: 499px){.u-gc-6\\/5\\@to-tiny{--gc-start: 6;--gc-end: 5}}.u-gc-6\\/6{--gc-start: 6;--gc-end: 6}@media(min-width: 500px){.u-gc-6\\/6\\@from-tiny{--gc-start: 6;--gc-end: 6}}@media(max-width: 499px){.u-gc-6\\/6\\@to-tiny{--gc-start: 6;--gc-end: 6}}.u-gc-6\\/7{--gc-start: 6;--gc-end: 7}@media(min-width: 500px){.u-gc-6\\/7\\@from-tiny{--gc-start: 6;--gc-end: 7}}@media(max-width: 499px){.u-gc-6\\/7\\@to-tiny{--gc-start: 6;--gc-end: 7}}.u-gc-6\\/8{--gc-start: 6;--gc-end: 8}@media(min-width: 500px){.u-gc-6\\/8\\@from-tiny{--gc-start: 6;--gc-end: 8}}@media(max-width: 499px){.u-gc-6\\/8\\@to-tiny{--gc-start: 6;--gc-end: 8}}.u-gc-6\\/9{--gc-start: 6;--gc-end: 9}@media(min-width: 500px){.u-gc-6\\/9\\@from-tiny{--gc-start: 6;--gc-end: 9}}@media(max-width: 499px){.u-gc-6\\/9\\@to-tiny{--gc-start: 6;--gc-end: 9}}.u-gc-6\\/10{--gc-start: 6;--gc-end: 10}@media(min-width: 500px){.u-gc-6\\/10\\@from-tiny{--gc-start: 6;--gc-end: 10}}@media(max-width: 499px){.u-gc-6\\/10\\@to-tiny{--gc-start: 6;--gc-end: 10}}.u-gc-6\\/11{--gc-start: 6;--gc-end: 11}@media(min-width: 500px){.u-gc-6\\/11\\@from-tiny{--gc-start: 6;--gc-end: 11}}@media(max-width: 499px){.u-gc-6\\/11\\@to-tiny{--gc-start: 6;--gc-end: 11}}.u-gc-6\\/12{--gc-start: 6;--gc-end: 12}@media(min-width: 500px){.u-gc-6\\/12\\@from-tiny{--gc-start: 6;--gc-end: 12}}@media(max-width: 499px){.u-gc-6\\/12\\@to-tiny{--gc-start: 6;--gc-end: 12}}.u-gc-6\\/13{--gc-start: 6;--gc-end: 13}@media(min-width: 500px){.u-gc-6\\/13\\@from-tiny{--gc-start: 6;--gc-end: 13}}@media(max-width: 499px){.u-gc-6\\/13\\@to-tiny{--gc-start: 6;--gc-end: 13}}.u-gc-7\\/1{--gc-start: 7;--gc-end: 1}@media(min-width: 500px){.u-gc-7\\/1\\@from-tiny{--gc-start: 7;--gc-end: 1}}@media(max-width: 499px){.u-gc-7\\/1\\@to-tiny{--gc-start: 7;--gc-end: 1}}.u-gc-7\\/2{--gc-start: 7;--gc-end: 2}@media(min-width: 500px){.u-gc-7\\/2\\@from-tiny{--gc-start: 7;--gc-end: 2}}@media(max-width: 499px){.u-gc-7\\/2\\@to-tiny{--gc-start: 7;--gc-end: 2}}.u-gc-7\\/3{--gc-start: 7;--gc-end: 3}@media(min-width: 500px){.u-gc-7\\/3\\@from-tiny{--gc-start: 7;--gc-end: 3}}@media(max-width: 499px){.u-gc-7\\/3\\@to-tiny{--gc-start: 7;--gc-end: 3}}.u-gc-7\\/4{--gc-start: 7;--gc-end: 4}@media(min-width: 500px){.u-gc-7\\/4\\@from-tiny{--gc-start: 7;--gc-end: 4}}@media(max-width: 499px){.u-gc-7\\/4\\@to-tiny{--gc-start: 7;--gc-end: 4}}.u-gc-7\\/5{--gc-start: 7;--gc-end: 5}@media(min-width: 500px){.u-gc-7\\/5\\@from-tiny{--gc-start: 7;--gc-end: 5}}@media(max-width: 499px){.u-gc-7\\/5\\@to-tiny{--gc-start: 7;--gc-end: 5}}.u-gc-7\\/6{--gc-start: 7;--gc-end: 6}@media(min-width: 500px){.u-gc-7\\/6\\@from-tiny{--gc-start: 7;--gc-end: 6}}@media(max-width: 499px){.u-gc-7\\/6\\@to-tiny{--gc-start: 7;--gc-end: 6}}.u-gc-7\\/7{--gc-start: 7;--gc-end: 7}@media(min-width: 500px){.u-gc-7\\/7\\@from-tiny{--gc-start: 7;--gc-end: 7}}@media(max-width: 499px){.u-gc-7\\/7\\@to-tiny{--gc-start: 7;--gc-end: 7}}.u-gc-7\\/8{--gc-start: 7;--gc-end: 8}@media(min-width: 500px){.u-gc-7\\/8\\@from-tiny{--gc-start: 7;--gc-end: 8}}@media(max-width: 499px){.u-gc-7\\/8\\@to-tiny{--gc-start: 7;--gc-end: 8}}.u-gc-7\\/9{--gc-start: 7;--gc-end: 9}@media(min-width: 500px){.u-gc-7\\/9\\@from-tiny{--gc-start: 7;--gc-end: 9}}@media(max-width: 499px){.u-gc-7\\/9\\@to-tiny{--gc-start: 7;--gc-end: 9}}.u-gc-7\\/10{--gc-start: 7;--gc-end: 10}@media(min-width: 500px){.u-gc-7\\/10\\@from-tiny{--gc-start: 7;--gc-end: 10}}@media(max-width: 499px){.u-gc-7\\/10\\@to-tiny{--gc-start: 7;--gc-end: 10}}.u-gc-7\\/11{--gc-start: 7;--gc-end: 11}@media(min-width: 500px){.u-gc-7\\/11\\@from-tiny{--gc-start: 7;--gc-end: 11}}@media(max-width: 499px){.u-gc-7\\/11\\@to-tiny{--gc-start: 7;--gc-end: 11}}.u-gc-7\\/12{--gc-start: 7;--gc-end: 12}@media(min-width: 500px){.u-gc-7\\/12\\@from-tiny{--gc-start: 7;--gc-end: 12}}@media(max-width: 499px){.u-gc-7\\/12\\@to-tiny{--gc-start: 7;--gc-end: 12}}.u-gc-7\\/13{--gc-start: 7;--gc-end: 13}@media(min-width: 500px){.u-gc-7\\/13\\@from-tiny{--gc-start: 7;--gc-end: 13}}@media(max-width: 499px){.u-gc-7\\/13\\@to-tiny{--gc-start: 7;--gc-end: 13}}.u-gc-8\\/1{--gc-start: 8;--gc-end: 1}@media(min-width: 500px){.u-gc-8\\/1\\@from-tiny{--gc-start: 8;--gc-end: 1}}@media(max-width: 499px){.u-gc-8\\/1\\@to-tiny{--gc-start: 8;--gc-end: 1}}.u-gc-8\\/2{--gc-start: 8;--gc-end: 2}@media(min-width: 500px){.u-gc-8\\/2\\@from-tiny{--gc-start: 8;--gc-end: 2}}@media(max-width: 499px){.u-gc-8\\/2\\@to-tiny{--gc-start: 8;--gc-end: 2}}.u-gc-8\\/3{--gc-start: 8;--gc-end: 3}@media(min-width: 500px){.u-gc-8\\/3\\@from-tiny{--gc-start: 8;--gc-end: 3}}@media(max-width: 499px){.u-gc-8\\/3\\@to-tiny{--gc-start: 8;--gc-end: 3}}.u-gc-8\\/4{--gc-start: 8;--gc-end: 4}@media(min-width: 500px){.u-gc-8\\/4\\@from-tiny{--gc-start: 8;--gc-end: 4}}@media(max-width: 499px){.u-gc-8\\/4\\@to-tiny{--gc-start: 8;--gc-end: 4}}.u-gc-8\\/5{--gc-start: 8;--gc-end: 5}@media(min-width: 500px){.u-gc-8\\/5\\@from-tiny{--gc-start: 8;--gc-end: 5}}@media(max-width: 499px){.u-gc-8\\/5\\@to-tiny{--gc-start: 8;--gc-end: 5}}.u-gc-8\\/6{--gc-start: 8;--gc-end: 6}@media(min-width: 500px){.u-gc-8\\/6\\@from-tiny{--gc-start: 8;--gc-end: 6}}@media(max-width: 499px){.u-gc-8\\/6\\@to-tiny{--gc-start: 8;--gc-end: 6}}.u-gc-8\\/7{--gc-start: 8;--gc-end: 7}@media(min-width: 500px){.u-gc-8\\/7\\@from-tiny{--gc-start: 8;--gc-end: 7}}@media(max-width: 499px){.u-gc-8\\/7\\@to-tiny{--gc-start: 8;--gc-end: 7}}.u-gc-8\\/8{--gc-start: 8;--gc-end: 8}@media(min-width: 500px){.u-gc-8\\/8\\@from-tiny{--gc-start: 8;--gc-end: 8}}@media(max-width: 499px){.u-gc-8\\/8\\@to-tiny{--gc-start: 8;--gc-end: 8}}.u-gc-8\\/9{--gc-start: 8;--gc-end: 9}@media(min-width: 500px){.u-gc-8\\/9\\@from-tiny{--gc-start: 8;--gc-end: 9}}@media(max-width: 499px){.u-gc-8\\/9\\@to-tiny{--gc-start: 8;--gc-end: 9}}.u-gc-8\\/10{--gc-start: 8;--gc-end: 10}@media(min-width: 500px){.u-gc-8\\/10\\@from-tiny{--gc-start: 8;--gc-end: 10}}@media(max-width: 499px){.u-gc-8\\/10\\@to-tiny{--gc-start: 8;--gc-end: 10}}.u-gc-8\\/11{--gc-start: 8;--gc-end: 11}@media(min-width: 500px){.u-gc-8\\/11\\@from-tiny{--gc-start: 8;--gc-end: 11}}@media(max-width: 499px){.u-gc-8\\/11\\@to-tiny{--gc-start: 8;--gc-end: 11}}.u-gc-8\\/12{--gc-start: 8;--gc-end: 12}@media(min-width: 500px){.u-gc-8\\/12\\@from-tiny{--gc-start: 8;--gc-end: 12}}@media(max-width: 499px){.u-gc-8\\/12\\@to-tiny{--gc-start: 8;--gc-end: 12}}.u-gc-8\\/13{--gc-start: 8;--gc-end: 13}@media(min-width: 500px){.u-gc-8\\/13\\@from-tiny{--gc-start: 8;--gc-end: 13}}@media(max-width: 499px){.u-gc-8\\/13\\@to-tiny{--gc-start: 8;--gc-end: 13}}.u-gc-9\\/1{--gc-start: 9;--gc-end: 1}@media(min-width: 500px){.u-gc-9\\/1\\@from-tiny{--gc-start: 9;--gc-end: 1}}@media(max-width: 499px){.u-gc-9\\/1\\@to-tiny{--gc-start: 9;--gc-end: 1}}.u-gc-9\\/2{--gc-start: 9;--gc-end: 2}@media(min-width: 500px){.u-gc-9\\/2\\@from-tiny{--gc-start: 9;--gc-end: 2}}@media(max-width: 499px){.u-gc-9\\/2\\@to-tiny{--gc-start: 9;--gc-end: 2}}.u-gc-9\\/3{--gc-start: 9;--gc-end: 3}@media(min-width: 500px){.u-gc-9\\/3\\@from-tiny{--gc-start: 9;--gc-end: 3}}@media(max-width: 499px){.u-gc-9\\/3\\@to-tiny{--gc-start: 9;--gc-end: 3}}.u-gc-9\\/4{--gc-start: 9;--gc-end: 4}@media(min-width: 500px){.u-gc-9\\/4\\@from-tiny{--gc-start: 9;--gc-end: 4}}@media(max-width: 499px){.u-gc-9\\/4\\@to-tiny{--gc-start: 9;--gc-end: 4}}.u-gc-9\\/5{--gc-start: 9;--gc-end: 5}@media(min-width: 500px){.u-gc-9\\/5\\@from-tiny{--gc-start: 9;--gc-end: 5}}@media(max-width: 499px){.u-gc-9\\/5\\@to-tiny{--gc-start: 9;--gc-end: 5}}.u-gc-9\\/6{--gc-start: 9;--gc-end: 6}@media(min-width: 500px){.u-gc-9\\/6\\@from-tiny{--gc-start: 9;--gc-end: 6}}@media(max-width: 499px){.u-gc-9\\/6\\@to-tiny{--gc-start: 9;--gc-end: 6}}.u-gc-9\\/7{--gc-start: 9;--gc-end: 7}@media(min-width: 500px){.u-gc-9\\/7\\@from-tiny{--gc-start: 9;--gc-end: 7}}@media(max-width: 499px){.u-gc-9\\/7\\@to-tiny{--gc-start: 9;--gc-end: 7}}.u-gc-9\\/8{--gc-start: 9;--gc-end: 8}@media(min-width: 500px){.u-gc-9\\/8\\@from-tiny{--gc-start: 9;--gc-end: 8}}@media(max-width: 499px){.u-gc-9\\/8\\@to-tiny{--gc-start: 9;--gc-end: 8}}.u-gc-9\\/9{--gc-start: 9;--gc-end: 9}@media(min-width: 500px){.u-gc-9\\/9\\@from-tiny{--gc-start: 9;--gc-end: 9}}@media(max-width: 499px){.u-gc-9\\/9\\@to-tiny{--gc-start: 9;--gc-end: 9}}.u-gc-9\\/10{--gc-start: 9;--gc-end: 10}@media(min-width: 500px){.u-gc-9\\/10\\@from-tiny{--gc-start: 9;--gc-end: 10}}@media(max-width: 499px){.u-gc-9\\/10\\@to-tiny{--gc-start: 9;--gc-end: 10}}.u-gc-9\\/11{--gc-start: 9;--gc-end: 11}@media(min-width: 500px){.u-gc-9\\/11\\@from-tiny{--gc-start: 9;--gc-end: 11}}@media(max-width: 499px){.u-gc-9\\/11\\@to-tiny{--gc-start: 9;--gc-end: 11}}.u-gc-9\\/12{--gc-start: 9;--gc-end: 12}@media(min-width: 500px){.u-gc-9\\/12\\@from-tiny{--gc-start: 9;--gc-end: 12}}@media(max-width: 499px){.u-gc-9\\/12\\@to-tiny{--gc-start: 9;--gc-end: 12}}.u-gc-9\\/13{--gc-start: 9;--gc-end: 13}@media(min-width: 500px){.u-gc-9\\/13\\@from-tiny{--gc-start: 9;--gc-end: 13}}@media(max-width: 499px){.u-gc-9\\/13\\@to-tiny{--gc-start: 9;--gc-end: 13}}.u-gc-10\\/1{--gc-start: 10;--gc-end: 1}@media(min-width: 500px){.u-gc-10\\/1\\@from-tiny{--gc-start: 10;--gc-end: 1}}@media(max-width: 499px){.u-gc-10\\/1\\@to-tiny{--gc-start: 10;--gc-end: 1}}.u-gc-10\\/2{--gc-start: 10;--gc-end: 2}@media(min-width: 500px){.u-gc-10\\/2\\@from-tiny{--gc-start: 10;--gc-end: 2}}@media(max-width: 499px){.u-gc-10\\/2\\@to-tiny{--gc-start: 10;--gc-end: 2}}.u-gc-10\\/3{--gc-start: 10;--gc-end: 3}@media(min-width: 500px){.u-gc-10\\/3\\@from-tiny{--gc-start: 10;--gc-end: 3}}@media(max-width: 499px){.u-gc-10\\/3\\@to-tiny{--gc-start: 10;--gc-end: 3}}.u-gc-10\\/4{--gc-start: 10;--gc-end: 4}@media(min-width: 500px){.u-gc-10\\/4\\@from-tiny{--gc-start: 10;--gc-end: 4}}@media(max-width: 499px){.u-gc-10\\/4\\@to-tiny{--gc-start: 10;--gc-end: 4}}.u-gc-10\\/5{--gc-start: 10;--gc-end: 5}@media(min-width: 500px){.u-gc-10\\/5\\@from-tiny{--gc-start: 10;--gc-end: 5}}@media(max-width: 499px){.u-gc-10\\/5\\@to-tiny{--gc-start: 10;--gc-end: 5}}.u-gc-10\\/6{--gc-start: 10;--gc-end: 6}@media(min-width: 500px){.u-gc-10\\/6\\@from-tiny{--gc-start: 10;--gc-end: 6}}@media(max-width: 499px){.u-gc-10\\/6\\@to-tiny{--gc-start: 10;--gc-end: 6}}.u-gc-10\\/7{--gc-start: 10;--gc-end: 7}@media(min-width: 500px){.u-gc-10\\/7\\@from-tiny{--gc-start: 10;--gc-end: 7}}@media(max-width: 499px){.u-gc-10\\/7\\@to-tiny{--gc-start: 10;--gc-end: 7}}.u-gc-10\\/8{--gc-start: 10;--gc-end: 8}@media(min-width: 500px){.u-gc-10\\/8\\@from-tiny{--gc-start: 10;--gc-end: 8}}@media(max-width: 499px){.u-gc-10\\/8\\@to-tiny{--gc-start: 10;--gc-end: 8}}.u-gc-10\\/9{--gc-start: 10;--gc-end: 9}@media(min-width: 500px){.u-gc-10\\/9\\@from-tiny{--gc-start: 10;--gc-end: 9}}@media(max-width: 499px){.u-gc-10\\/9\\@to-tiny{--gc-start: 10;--gc-end: 9}}.u-gc-10\\/10{--gc-start: 10;--gc-end: 10}@media(min-width: 500px){.u-gc-10\\/10\\@from-tiny{--gc-start: 10;--gc-end: 10}}@media(max-width: 499px){.u-gc-10\\/10\\@to-tiny{--gc-start: 10;--gc-end: 10}}.u-gc-10\\/11{--gc-start: 10;--gc-end: 11}@media(min-width: 500px){.u-gc-10\\/11\\@from-tiny{--gc-start: 10;--gc-end: 11}}@media(max-width: 499px){.u-gc-10\\/11\\@to-tiny{--gc-start: 10;--gc-end: 11}}.u-gc-10\\/12{--gc-start: 10;--gc-end: 12}@media(min-width: 500px){.u-gc-10\\/12\\@from-tiny{--gc-start: 10;--gc-end: 12}}@media(max-width: 499px){.u-gc-10\\/12\\@to-tiny{--gc-start: 10;--gc-end: 12}}.u-gc-10\\/13{--gc-start: 10;--gc-end: 13}@media(min-width: 500px){.u-gc-10\\/13\\@from-tiny{--gc-start: 10;--gc-end: 13}}@media(max-width: 499px){.u-gc-10\\/13\\@to-tiny{--gc-start: 10;--gc-end: 13}}.u-gc-11\\/1{--gc-start: 11;--gc-end: 1}@media(min-width: 500px){.u-gc-11\\/1\\@from-tiny{--gc-start: 11;--gc-end: 1}}@media(max-width: 499px){.u-gc-11\\/1\\@to-tiny{--gc-start: 11;--gc-end: 1}}.u-gc-11\\/2{--gc-start: 11;--gc-end: 2}@media(min-width: 500px){.u-gc-11\\/2\\@from-tiny{--gc-start: 11;--gc-end: 2}}@media(max-width: 499px){.u-gc-11\\/2\\@to-tiny{--gc-start: 11;--gc-end: 2}}.u-gc-11\\/3{--gc-start: 11;--gc-end: 3}@media(min-width: 500px){.u-gc-11\\/3\\@from-tiny{--gc-start: 11;--gc-end: 3}}@media(max-width: 499px){.u-gc-11\\/3\\@to-tiny{--gc-start: 11;--gc-end: 3}}.u-gc-11\\/4{--gc-start: 11;--gc-end: 4}@media(min-width: 500px){.u-gc-11\\/4\\@from-tiny{--gc-start: 11;--gc-end: 4}}@media(max-width: 499px){.u-gc-11\\/4\\@to-tiny{--gc-start: 11;--gc-end: 4}}.u-gc-11\\/5{--gc-start: 11;--gc-end: 5}@media(min-width: 500px){.u-gc-11\\/5\\@from-tiny{--gc-start: 11;--gc-end: 5}}@media(max-width: 499px){.u-gc-11\\/5\\@to-tiny{--gc-start: 11;--gc-end: 5}}.u-gc-11\\/6{--gc-start: 11;--gc-end: 6}@media(min-width: 500px){.u-gc-11\\/6\\@from-tiny{--gc-start: 11;--gc-end: 6}}@media(max-width: 499px){.u-gc-11\\/6\\@to-tiny{--gc-start: 11;--gc-end: 6}}.u-gc-11\\/7{--gc-start: 11;--gc-end: 7}@media(min-width: 500px){.u-gc-11\\/7\\@from-tiny{--gc-start: 11;--gc-end: 7}}@media(max-width: 499px){.u-gc-11\\/7\\@to-tiny{--gc-start: 11;--gc-end: 7}}.u-gc-11\\/8{--gc-start: 11;--gc-end: 8}@media(min-width: 500px){.u-gc-11\\/8\\@from-tiny{--gc-start: 11;--gc-end: 8}}@media(max-width: 499px){.u-gc-11\\/8\\@to-tiny{--gc-start: 11;--gc-end: 8}}.u-gc-11\\/9{--gc-start: 11;--gc-end: 9}@media(min-width: 500px){.u-gc-11\\/9\\@from-tiny{--gc-start: 11;--gc-end: 9}}@media(max-width: 499px){.u-gc-11\\/9\\@to-tiny{--gc-start: 11;--gc-end: 9}}.u-gc-11\\/10{--gc-start: 11;--gc-end: 10}@media(min-width: 500px){.u-gc-11\\/10\\@from-tiny{--gc-start: 11;--gc-end: 10}}@media(max-width: 499px){.u-gc-11\\/10\\@to-tiny{--gc-start: 11;--gc-end: 10}}.u-gc-11\\/11{--gc-start: 11;--gc-end: 11}@media(min-width: 500px){.u-gc-11\\/11\\@from-tiny{--gc-start: 11;--gc-end: 11}}@media(max-width: 499px){.u-gc-11\\/11\\@to-tiny{--gc-start: 11;--gc-end: 11}}.u-gc-11\\/12{--gc-start: 11;--gc-end: 12}@media(min-width: 500px){.u-gc-11\\/12\\@from-tiny{--gc-start: 11;--gc-end: 12}}@media(max-width: 499px){.u-gc-11\\/12\\@to-tiny{--gc-start: 11;--gc-end: 12}}.u-gc-11\\/13{--gc-start: 11;--gc-end: 13}@media(min-width: 500px){.u-gc-11\\/13\\@from-tiny{--gc-start: 11;--gc-end: 13}}@media(max-width: 499px){.u-gc-11\\/13\\@to-tiny{--gc-start: 11;--gc-end: 13}}.u-gc-12\\/1{--gc-start: 12;--gc-end: 1}@media(min-width: 500px){.u-gc-12\\/1\\@from-tiny{--gc-start: 12;--gc-end: 1}}@media(max-width: 499px){.u-gc-12\\/1\\@to-tiny{--gc-start: 12;--gc-end: 1}}.u-gc-12\\/2{--gc-start: 12;--gc-end: 2}@media(min-width: 500px){.u-gc-12\\/2\\@from-tiny{--gc-start: 12;--gc-end: 2}}@media(max-width: 499px){.u-gc-12\\/2\\@to-tiny{--gc-start: 12;--gc-end: 2}}.u-gc-12\\/3{--gc-start: 12;--gc-end: 3}@media(min-width: 500px){.u-gc-12\\/3\\@from-tiny{--gc-start: 12;--gc-end: 3}}@media(max-width: 499px){.u-gc-12\\/3\\@to-tiny{--gc-start: 12;--gc-end: 3}}.u-gc-12\\/4{--gc-start: 12;--gc-end: 4}@media(min-width: 500px){.u-gc-12\\/4\\@from-tiny{--gc-start: 12;--gc-end: 4}}@media(max-width: 499px){.u-gc-12\\/4\\@to-tiny{--gc-start: 12;--gc-end: 4}}.u-gc-12\\/5{--gc-start: 12;--gc-end: 5}@media(min-width: 500px){.u-gc-12\\/5\\@from-tiny{--gc-start: 12;--gc-end: 5}}@media(max-width: 499px){.u-gc-12\\/5\\@to-tiny{--gc-start: 12;--gc-end: 5}}.u-gc-12\\/6{--gc-start: 12;--gc-end: 6}@media(min-width: 500px){.u-gc-12\\/6\\@from-tiny{--gc-start: 12;--gc-end: 6}}@media(max-width: 499px){.u-gc-12\\/6\\@to-tiny{--gc-start: 12;--gc-end: 6}}.u-gc-12\\/7{--gc-start: 12;--gc-end: 7}@media(min-width: 500px){.u-gc-12\\/7\\@from-tiny{--gc-start: 12;--gc-end: 7}}@media(max-width: 499px){.u-gc-12\\/7\\@to-tiny{--gc-start: 12;--gc-end: 7}}.u-gc-12\\/8{--gc-start: 12;--gc-end: 8}@media(min-width: 500px){.u-gc-12\\/8\\@from-tiny{--gc-start: 12;--gc-end: 8}}@media(max-width: 499px){.u-gc-12\\/8\\@to-tiny{--gc-start: 12;--gc-end: 8}}.u-gc-12\\/9{--gc-start: 12;--gc-end: 9}@media(min-width: 500px){.u-gc-12\\/9\\@from-tiny{--gc-start: 12;--gc-end: 9}}@media(max-width: 499px){.u-gc-12\\/9\\@to-tiny{--gc-start: 12;--gc-end: 9}}.u-gc-12\\/10{--gc-start: 12;--gc-end: 10}@media(min-width: 500px){.u-gc-12\\/10\\@from-tiny{--gc-start: 12;--gc-end: 10}}@media(max-width: 499px){.u-gc-12\\/10\\@to-tiny{--gc-start: 12;--gc-end: 10}}.u-gc-12\\/11{--gc-start: 12;--gc-end: 11}@media(min-width: 500px){.u-gc-12\\/11\\@from-tiny{--gc-start: 12;--gc-end: 11}}@media(max-width: 499px){.u-gc-12\\/11\\@to-tiny{--gc-start: 12;--gc-end: 11}}.u-gc-12\\/12{--gc-start: 12;--gc-end: 12}@media(min-width: 500px){.u-gc-12\\/12\\@from-tiny{--gc-start: 12;--gc-end: 12}}@media(max-width: 499px){.u-gc-12\\/12\\@to-tiny{--gc-start: 12;--gc-end: 12}}.u-gc-12\\/13{--gc-start: 12;--gc-end: 13}@media(min-width: 500px){.u-gc-12\\/13\\@from-tiny{--gc-start: 12;--gc-end: 13}}@media(max-width: 499px){.u-gc-12\\/13\\@to-tiny{--gc-start: 12;--gc-end: 13}}.u-gc-13\\/1{--gc-start: 13;--gc-end: 1}@media(min-width: 500px){.u-gc-13\\/1\\@from-tiny{--gc-start: 13;--gc-end: 1}}@media(max-width: 499px){.u-gc-13\\/1\\@to-tiny{--gc-start: 13;--gc-end: 1}}.u-gc-13\\/2{--gc-start: 13;--gc-end: 2}@media(min-width: 500px){.u-gc-13\\/2\\@from-tiny{--gc-start: 13;--gc-end: 2}}@media(max-width: 499px){.u-gc-13\\/2\\@to-tiny{--gc-start: 13;--gc-end: 2}}.u-gc-13\\/3{--gc-start: 13;--gc-end: 3}@media(min-width: 500px){.u-gc-13\\/3\\@from-tiny{--gc-start: 13;--gc-end: 3}}@media(max-width: 499px){.u-gc-13\\/3\\@to-tiny{--gc-start: 13;--gc-end: 3}}.u-gc-13\\/4{--gc-start: 13;--gc-end: 4}@media(min-width: 500px){.u-gc-13\\/4\\@from-tiny{--gc-start: 13;--gc-end: 4}}@media(max-width: 499px){.u-gc-13\\/4\\@to-tiny{--gc-start: 13;--gc-end: 4}}.u-gc-13\\/5{--gc-start: 13;--gc-end: 5}@media(min-width: 500px){.u-gc-13\\/5\\@from-tiny{--gc-start: 13;--gc-end: 5}}@media(max-width: 499px){.u-gc-13\\/5\\@to-tiny{--gc-start: 13;--gc-end: 5}}.u-gc-13\\/6{--gc-start: 13;--gc-end: 6}@media(min-width: 500px){.u-gc-13\\/6\\@from-tiny{--gc-start: 13;--gc-end: 6}}@media(max-width: 499px){.u-gc-13\\/6\\@to-tiny{--gc-start: 13;--gc-end: 6}}.u-gc-13\\/7{--gc-start: 13;--gc-end: 7}@media(min-width: 500px){.u-gc-13\\/7\\@from-tiny{--gc-start: 13;--gc-end: 7}}@media(max-width: 499px){.u-gc-13\\/7\\@to-tiny{--gc-start: 13;--gc-end: 7}}.u-gc-13\\/8{--gc-start: 13;--gc-end: 8}@media(min-width: 500px){.u-gc-13\\/8\\@from-tiny{--gc-start: 13;--gc-end: 8}}@media(max-width: 499px){.u-gc-13\\/8\\@to-tiny{--gc-start: 13;--gc-end: 8}}.u-gc-13\\/9{--gc-start: 13;--gc-end: 9}@media(min-width: 500px){.u-gc-13\\/9\\@from-tiny{--gc-start: 13;--gc-end: 9}}@media(max-width: 499px){.u-gc-13\\/9\\@to-tiny{--gc-start: 13;--gc-end: 9}}.u-gc-13\\/10{--gc-start: 13;--gc-end: 10}@media(min-width: 500px){.u-gc-13\\/10\\@from-tiny{--gc-start: 13;--gc-end: 10}}@media(max-width: 499px){.u-gc-13\\/10\\@to-tiny{--gc-start: 13;--gc-end: 10}}.u-gc-13\\/11{--gc-start: 13;--gc-end: 11}@media(min-width: 500px){.u-gc-13\\/11\\@from-tiny{--gc-start: 13;--gc-end: 11}}@media(max-width: 499px){.u-gc-13\\/11\\@to-tiny{--gc-start: 13;--gc-end: 11}}.u-gc-13\\/12{--gc-start: 13;--gc-end: 12}@media(min-width: 500px){.u-gc-13\\/12\\@from-tiny{--gc-start: 13;--gc-end: 12}}@media(max-width: 499px){.u-gc-13\\/12\\@to-tiny{--gc-start: 13;--gc-end: 12}}.u-gc-13\\/13{--gc-start: 13;--gc-end: 13}@media(min-width: 500px){.u-gc-13\\/13\\@from-tiny{--gc-start: 13;--gc-end: 13}}@media(max-width: 499px){.u-gc-13\\/13\\@to-tiny{--gc-start: 13;--gc-end: 13}}@media(min-width: 700px){.u-gc-1\\/1\\@from-small{--gc-start: 1;--gc-end: 1}}@media(max-width: 699px){.u-gc-1\\/1\\@to-small{--gc-start: 1;--gc-end: 1}}@media(min-width: 700px){.u-gc-1\\/2\\@from-small{--gc-start: 1;--gc-end: 2}}@media(max-width: 699px){.u-gc-1\\/2\\@to-small{--gc-start: 1;--gc-end: 2}}@media(min-width: 700px){.u-gc-1\\/3\\@from-small{--gc-start: 1;--gc-end: 3}}@media(max-width: 699px){.u-gc-1\\/3\\@to-small{--gc-start: 1;--gc-end: 3}}@media(min-width: 700px){.u-gc-1\\/4\\@from-small{--gc-start: 1;--gc-end: 4}}@media(max-width: 699px){.u-gc-1\\/4\\@to-small{--gc-start: 1;--gc-end: 4}}@media(min-width: 700px){.u-gc-1\\/5\\@from-small{--gc-start: 1;--gc-end: 5}}@media(max-width: 699px){.u-gc-1\\/5\\@to-small{--gc-start: 1;--gc-end: 5}}@media(min-width: 700px){.u-gc-1\\/6\\@from-small{--gc-start: 1;--gc-end: 6}}@media(max-width: 699px){.u-gc-1\\/6\\@to-small{--gc-start: 1;--gc-end: 6}}@media(min-width: 700px){.u-gc-1\\/7\\@from-small{--gc-start: 1;--gc-end: 7}}@media(max-width: 699px){.u-gc-1\\/7\\@to-small{--gc-start: 1;--gc-end: 7}}@media(min-width: 700px){.u-gc-1\\/8\\@from-small{--gc-start: 1;--gc-end: 8}}@media(max-width: 699px){.u-gc-1\\/8\\@to-small{--gc-start: 1;--gc-end: 8}}@media(min-width: 700px){.u-gc-1\\/9\\@from-small{--gc-start: 1;--gc-end: 9}}@media(max-width: 699px){.u-gc-1\\/9\\@to-small{--gc-start: 1;--gc-end: 9}}@media(min-width: 700px){.u-gc-1\\/10\\@from-small{--gc-start: 1;--gc-end: 10}}@media(max-width: 699px){.u-gc-1\\/10\\@to-small{--gc-start: 1;--gc-end: 10}}@media(min-width: 700px){.u-gc-1\\/11\\@from-small{--gc-start: 1;--gc-end: 11}}@media(max-width: 699px){.u-gc-1\\/11\\@to-small{--gc-start: 1;--gc-end: 11}}@media(min-width: 700px){.u-gc-1\\/12\\@from-small{--gc-start: 1;--gc-end: 12}}@media(max-width: 699px){.u-gc-1\\/12\\@to-small{--gc-start: 1;--gc-end: 12}}@media(min-width: 700px){.u-gc-1\\/13\\@from-small{--gc-start: 1;--gc-end: 13}}@media(max-width: 699px){.u-gc-1\\/13\\@to-small{--gc-start: 1;--gc-end: 13}}@media(min-width: 700px){.u-gc-2\\/1\\@from-small{--gc-start: 2;--gc-end: 1}}@media(max-width: 699px){.u-gc-2\\/1\\@to-small{--gc-start: 2;--gc-end: 1}}@media(min-width: 700px){.u-gc-2\\/2\\@from-small{--gc-start: 2;--gc-end: 2}}@media(max-width: 699px){.u-gc-2\\/2\\@to-small{--gc-start: 2;--gc-end: 2}}@media(min-width: 700px){.u-gc-2\\/3\\@from-small{--gc-start: 2;--gc-end: 3}}@media(max-width: 699px){.u-gc-2\\/3\\@to-small{--gc-start: 2;--gc-end: 3}}@media(min-width: 700px){.u-gc-2\\/4\\@from-small{--gc-start: 2;--gc-end: 4}}@media(max-width: 699px){.u-gc-2\\/4\\@to-small{--gc-start: 2;--gc-end: 4}}@media(min-width: 700px){.u-gc-2\\/5\\@from-small{--gc-start: 2;--gc-end: 5}}@media(max-width: 699px){.u-gc-2\\/5\\@to-small{--gc-start: 2;--gc-end: 5}}@media(min-width: 700px){.u-gc-2\\/6\\@from-small{--gc-start: 2;--gc-end: 6}}@media(max-width: 699px){.u-gc-2\\/6\\@to-small{--gc-start: 2;--gc-end: 6}}@media(min-width: 700px){.u-gc-2\\/7\\@from-small{--gc-start: 2;--gc-end: 7}}@media(max-width: 699px){.u-gc-2\\/7\\@to-small{--gc-start: 2;--gc-end: 7}}@media(min-width: 700px){.u-gc-2\\/8\\@from-small{--gc-start: 2;--gc-end: 8}}@media(max-width: 699px){.u-gc-2\\/8\\@to-small{--gc-start: 2;--gc-end: 8}}@media(min-width: 700px){.u-gc-2\\/9\\@from-small{--gc-start: 2;--gc-end: 9}}@media(max-width: 699px){.u-gc-2\\/9\\@to-small{--gc-start: 2;--gc-end: 9}}@media(min-width: 700px){.u-gc-2\\/10\\@from-small{--gc-start: 2;--gc-end: 10}}@media(max-width: 699px){.u-gc-2\\/10\\@to-small{--gc-start: 2;--gc-end: 10}}@media(min-width: 700px){.u-gc-2\\/11\\@from-small{--gc-start: 2;--gc-end: 11}}@media(max-width: 699px){.u-gc-2\\/11\\@to-small{--gc-start: 2;--gc-end: 11}}@media(min-width: 700px){.u-gc-2\\/12\\@from-small{--gc-start: 2;--gc-end: 12}}@media(max-width: 699px){.u-gc-2\\/12\\@to-small{--gc-start: 2;--gc-end: 12}}@media(min-width: 700px){.u-gc-2\\/13\\@from-small{--gc-start: 2;--gc-end: 13}}@media(max-width: 699px){.u-gc-2\\/13\\@to-small{--gc-start: 2;--gc-end: 13}}@media(min-width: 700px){.u-gc-3\\/1\\@from-small{--gc-start: 3;--gc-end: 1}}@media(max-width: 699px){.u-gc-3\\/1\\@to-small{--gc-start: 3;--gc-end: 1}}@media(min-width: 700px){.u-gc-3\\/2\\@from-small{--gc-start: 3;--gc-end: 2}}@media(max-width: 699px){.u-gc-3\\/2\\@to-small{--gc-start: 3;--gc-end: 2}}@media(min-width: 700px){.u-gc-3\\/3\\@from-small{--gc-start: 3;--gc-end: 3}}@media(max-width: 699px){.u-gc-3\\/3\\@to-small{--gc-start: 3;--gc-end: 3}}@media(min-width: 700px){.u-gc-3\\/4\\@from-small{--gc-start: 3;--gc-end: 4}}@media(max-width: 699px){.u-gc-3\\/4\\@to-small{--gc-start: 3;--gc-end: 4}}@media(min-width: 700px){.u-gc-3\\/5\\@from-small{--gc-start: 3;--gc-end: 5}}@media(max-width: 699px){.u-gc-3\\/5\\@to-small{--gc-start: 3;--gc-end: 5}}@media(min-width: 700px){.u-gc-3\\/6\\@from-small{--gc-start: 3;--gc-end: 6}}@media(max-width: 699px){.u-gc-3\\/6\\@to-small{--gc-start: 3;--gc-end: 6}}@media(min-width: 700px){.u-gc-3\\/7\\@from-small{--gc-start: 3;--gc-end: 7}}@media(max-width: 699px){.u-gc-3\\/7\\@to-small{--gc-start: 3;--gc-end: 7}}@media(min-width: 700px){.u-gc-3\\/8\\@from-small{--gc-start: 3;--gc-end: 8}}@media(max-width: 699px){.u-gc-3\\/8\\@to-small{--gc-start: 3;--gc-end: 8}}@media(min-width: 700px){.u-gc-3\\/9\\@from-small{--gc-start: 3;--gc-end: 9}}@media(max-width: 699px){.u-gc-3\\/9\\@to-small{--gc-start: 3;--gc-end: 9}}@media(min-width: 700px){.u-gc-3\\/10\\@from-small{--gc-start: 3;--gc-end: 10}}@media(max-width: 699px){.u-gc-3\\/10\\@to-small{--gc-start: 3;--gc-end: 10}}@media(min-width: 700px){.u-gc-3\\/11\\@from-small{--gc-start: 3;--gc-end: 11}}@media(max-width: 699px){.u-gc-3\\/11\\@to-small{--gc-start: 3;--gc-end: 11}}@media(min-width: 700px){.u-gc-3\\/12\\@from-small{--gc-start: 3;--gc-end: 12}}@media(max-width: 699px){.u-gc-3\\/12\\@to-small{--gc-start: 3;--gc-end: 12}}@media(min-width: 700px){.u-gc-3\\/13\\@from-small{--gc-start: 3;--gc-end: 13}}@media(max-width: 699px){.u-gc-3\\/13\\@to-small{--gc-start: 3;--gc-end: 13}}@media(min-width: 700px){.u-gc-4\\/1\\@from-small{--gc-start: 4;--gc-end: 1}}@media(max-width: 699px){.u-gc-4\\/1\\@to-small{--gc-start: 4;--gc-end: 1}}@media(min-width: 700px){.u-gc-4\\/2\\@from-small{--gc-start: 4;--gc-end: 2}}@media(max-width: 699px){.u-gc-4\\/2\\@to-small{--gc-start: 4;--gc-end: 2}}@media(min-width: 700px){.u-gc-4\\/3\\@from-small{--gc-start: 4;--gc-end: 3}}@media(max-width: 699px){.u-gc-4\\/3\\@to-small{--gc-start: 4;--gc-end: 3}}@media(min-width: 700px){.u-gc-4\\/4\\@from-small{--gc-start: 4;--gc-end: 4}}@media(max-width: 699px){.u-gc-4\\/4\\@to-small{--gc-start: 4;--gc-end: 4}}@media(min-width: 700px){.u-gc-4\\/5\\@from-small{--gc-start: 4;--gc-end: 5}}@media(max-width: 699px){.u-gc-4\\/5\\@to-small{--gc-start: 4;--gc-end: 5}}@media(min-width: 700px){.u-gc-4\\/6\\@from-small{--gc-start: 4;--gc-end: 6}}@media(max-width: 699px){.u-gc-4\\/6\\@to-small{--gc-start: 4;--gc-end: 6}}@media(min-width: 700px){.u-gc-4\\/7\\@from-small{--gc-start: 4;--gc-end: 7}}@media(max-width: 699px){.u-gc-4\\/7\\@to-small{--gc-start: 4;--gc-end: 7}}@media(min-width: 700px){.u-gc-4\\/8\\@from-small{--gc-start: 4;--gc-end: 8}}@media(max-width: 699px){.u-gc-4\\/8\\@to-small{--gc-start: 4;--gc-end: 8}}@media(min-width: 700px){.u-gc-4\\/9\\@from-small{--gc-start: 4;--gc-end: 9}}@media(max-width: 699px){.u-gc-4\\/9\\@to-small{--gc-start: 4;--gc-end: 9}}@media(min-width: 700px){.u-gc-4\\/10\\@from-small{--gc-start: 4;--gc-end: 10}}@media(max-width: 699px){.u-gc-4\\/10\\@to-small{--gc-start: 4;--gc-end: 10}}@media(min-width: 700px){.u-gc-4\\/11\\@from-small{--gc-start: 4;--gc-end: 11}}@media(max-width: 699px){.u-gc-4\\/11\\@to-small{--gc-start: 4;--gc-end: 11}}@media(min-width: 700px){.u-gc-4\\/12\\@from-small{--gc-start: 4;--gc-end: 12}}@media(max-width: 699px){.u-gc-4\\/12\\@to-small{--gc-start: 4;--gc-end: 12}}@media(min-width: 700px){.u-gc-4\\/13\\@from-small{--gc-start: 4;--gc-end: 13}}@media(max-width: 699px){.u-gc-4\\/13\\@to-small{--gc-start: 4;--gc-end: 13}}@media(min-width: 700px){.u-gc-5\\/1\\@from-small{--gc-start: 5;--gc-end: 1}}@media(max-width: 699px){.u-gc-5\\/1\\@to-small{--gc-start: 5;--gc-end: 1}}@media(min-width: 700px){.u-gc-5\\/2\\@from-small{--gc-start: 5;--gc-end: 2}}@media(max-width: 699px){.u-gc-5\\/2\\@to-small{--gc-start: 5;--gc-end: 2}}@media(min-width: 700px){.u-gc-5\\/3\\@from-small{--gc-start: 5;--gc-end: 3}}@media(max-width: 699px){.u-gc-5\\/3\\@to-small{--gc-start: 5;--gc-end: 3}}@media(min-width: 700px){.u-gc-5\\/4\\@from-small{--gc-start: 5;--gc-end: 4}}@media(max-width: 699px){.u-gc-5\\/4\\@to-small{--gc-start: 5;--gc-end: 4}}@media(min-width: 700px){.u-gc-5\\/5\\@from-small{--gc-start: 5;--gc-end: 5}}@media(max-width: 699px){.u-gc-5\\/5\\@to-small{--gc-start: 5;--gc-end: 5}}@media(min-width: 700px){.u-gc-5\\/6\\@from-small{--gc-start: 5;--gc-end: 6}}@media(max-width: 699px){.u-gc-5\\/6\\@to-small{--gc-start: 5;--gc-end: 6}}@media(min-width: 700px){.u-gc-5\\/7\\@from-small{--gc-start: 5;--gc-end: 7}}@media(max-width: 699px){.u-gc-5\\/7\\@to-small{--gc-start: 5;--gc-end: 7}}@media(min-width: 700px){.u-gc-5\\/8\\@from-small{--gc-start: 5;--gc-end: 8}}@media(max-width: 699px){.u-gc-5\\/8\\@to-small{--gc-start: 5;--gc-end: 8}}@media(min-width: 700px){.u-gc-5\\/9\\@from-small{--gc-start: 5;--gc-end: 9}}@media(max-width: 699px){.u-gc-5\\/9\\@to-small{--gc-start: 5;--gc-end: 9}}@media(min-width: 700px){.u-gc-5\\/10\\@from-small{--gc-start: 5;--gc-end: 10}}@media(max-width: 699px){.u-gc-5\\/10\\@to-small{--gc-start: 5;--gc-end: 10}}@media(min-width: 700px){.u-gc-5\\/11\\@from-small{--gc-start: 5;--gc-end: 11}}@media(max-width: 699px){.u-gc-5\\/11\\@to-small{--gc-start: 5;--gc-end: 11}}@media(min-width: 700px){.u-gc-5\\/12\\@from-small{--gc-start: 5;--gc-end: 12}}@media(max-width: 699px){.u-gc-5\\/12\\@to-small{--gc-start: 5;--gc-end: 12}}@media(min-width: 700px){.u-gc-5\\/13\\@from-small{--gc-start: 5;--gc-end: 13}}@media(max-width: 699px){.u-gc-5\\/13\\@to-small{--gc-start: 5;--gc-end: 13}}@media(min-width: 700px){.u-gc-6\\/1\\@from-small{--gc-start: 6;--gc-end: 1}}@media(max-width: 699px){.u-gc-6\\/1\\@to-small{--gc-start: 6;--gc-end: 1}}@media(min-width: 700px){.u-gc-6\\/2\\@from-small{--gc-start: 6;--gc-end: 2}}@media(max-width: 699px){.u-gc-6\\/2\\@to-small{--gc-start: 6;--gc-end: 2}}@media(min-width: 700px){.u-gc-6\\/3\\@from-small{--gc-start: 6;--gc-end: 3}}@media(max-width: 699px){.u-gc-6\\/3\\@to-small{--gc-start: 6;--gc-end: 3}}@media(min-width: 700px){.u-gc-6\\/4\\@from-small{--gc-start: 6;--gc-end: 4}}@media(max-width: 699px){.u-gc-6\\/4\\@to-small{--gc-start: 6;--gc-end: 4}}@media(min-width: 700px){.u-gc-6\\/5\\@from-small{--gc-start: 6;--gc-end: 5}}@media(max-width: 699px){.u-gc-6\\/5\\@to-small{--gc-start: 6;--gc-end: 5}}@media(min-width: 700px){.u-gc-6\\/6\\@from-small{--gc-start: 6;--gc-end: 6}}@media(max-width: 699px){.u-gc-6\\/6\\@to-small{--gc-start: 6;--gc-end: 6}}@media(min-width: 700px){.u-gc-6\\/7\\@from-small{--gc-start: 6;--gc-end: 7}}@media(max-width: 699px){.u-gc-6\\/7\\@to-small{--gc-start: 6;--gc-end: 7}}@media(min-width: 700px){.u-gc-6\\/8\\@from-small{--gc-start: 6;--gc-end: 8}}@media(max-width: 699px){.u-gc-6\\/8\\@to-small{--gc-start: 6;--gc-end: 8}}@media(min-width: 700px){.u-gc-6\\/9\\@from-small{--gc-start: 6;--gc-end: 9}}@media(max-width: 699px){.u-gc-6\\/9\\@to-small{--gc-start: 6;--gc-end: 9}}@media(min-width: 700px){.u-gc-6\\/10\\@from-small{--gc-start: 6;--gc-end: 10}}@media(max-width: 699px){.u-gc-6\\/10\\@to-small{--gc-start: 6;--gc-end: 10}}@media(min-width: 700px){.u-gc-6\\/11\\@from-small{--gc-start: 6;--gc-end: 11}}@media(max-width: 699px){.u-gc-6\\/11\\@to-small{--gc-start: 6;--gc-end: 11}}@media(min-width: 700px){.u-gc-6\\/12\\@from-small{--gc-start: 6;--gc-end: 12}}@media(max-width: 699px){.u-gc-6\\/12\\@to-small{--gc-start: 6;--gc-end: 12}}@media(min-width: 700px){.u-gc-6\\/13\\@from-small{--gc-start: 6;--gc-end: 13}}@media(max-width: 699px){.u-gc-6\\/13\\@to-small{--gc-start: 6;--gc-end: 13}}@media(min-width: 700px){.u-gc-7\\/1\\@from-small{--gc-start: 7;--gc-end: 1}}@media(max-width: 699px){.u-gc-7\\/1\\@to-small{--gc-start: 7;--gc-end: 1}}@media(min-width: 700px){.u-gc-7\\/2\\@from-small{--gc-start: 7;--gc-end: 2}}@media(max-width: 699px){.u-gc-7\\/2\\@to-small{--gc-start: 7;--gc-end: 2}}@media(min-width: 700px){.u-gc-7\\/3\\@from-small{--gc-start: 7;--gc-end: 3}}@media(max-width: 699px){.u-gc-7\\/3\\@to-small{--gc-start: 7;--gc-end: 3}}@media(min-width: 700px){.u-gc-7\\/4\\@from-small{--gc-start: 7;--gc-end: 4}}@media(max-width: 699px){.u-gc-7\\/4\\@to-small{--gc-start: 7;--gc-end: 4}}@media(min-width: 700px){.u-gc-7\\/5\\@from-small{--gc-start: 7;--gc-end: 5}}@media(max-width: 699px){.u-gc-7\\/5\\@to-small{--gc-start: 7;--gc-end: 5}}@media(min-width: 700px){.u-gc-7\\/6\\@from-small{--gc-start: 7;--gc-end: 6}}@media(max-width: 699px){.u-gc-7\\/6\\@to-small{--gc-start: 7;--gc-end: 6}}@media(min-width: 700px){.u-gc-7\\/7\\@from-small{--gc-start: 7;--gc-end: 7}}@media(max-width: 699px){.u-gc-7\\/7\\@to-small{--gc-start: 7;--gc-end: 7}}@media(min-width: 700px){.u-gc-7\\/8\\@from-small{--gc-start: 7;--gc-end: 8}}@media(max-width: 699px){.u-gc-7\\/8\\@to-small{--gc-start: 7;--gc-end: 8}}@media(min-width: 700px){.u-gc-7\\/9\\@from-small{--gc-start: 7;--gc-end: 9}}@media(max-width: 699px){.u-gc-7\\/9\\@to-small{--gc-start: 7;--gc-end: 9}}@media(min-width: 700px){.u-gc-7\\/10\\@from-small{--gc-start: 7;--gc-end: 10}}@media(max-width: 699px){.u-gc-7\\/10\\@to-small{--gc-start: 7;--gc-end: 10}}@media(min-width: 700px){.u-gc-7\\/11\\@from-small{--gc-start: 7;--gc-end: 11}}@media(max-width: 699px){.u-gc-7\\/11\\@to-small{--gc-start: 7;--gc-end: 11}}@media(min-width: 700px){.u-gc-7\\/12\\@from-small{--gc-start: 7;--gc-end: 12}}@media(max-width: 699px){.u-gc-7\\/12\\@to-small{--gc-start: 7;--gc-end: 12}}@media(min-width: 700px){.u-gc-7\\/13\\@from-small{--gc-start: 7;--gc-end: 13}}@media(max-width: 699px){.u-gc-7\\/13\\@to-small{--gc-start: 7;--gc-end: 13}}@media(min-width: 700px){.u-gc-8\\/1\\@from-small{--gc-start: 8;--gc-end: 1}}@media(max-width: 699px){.u-gc-8\\/1\\@to-small{--gc-start: 8;--gc-end: 1}}@media(min-width: 700px){.u-gc-8\\/2\\@from-small{--gc-start: 8;--gc-end: 2}}@media(max-width: 699px){.u-gc-8\\/2\\@to-small{--gc-start: 8;--gc-end: 2}}@media(min-width: 700px){.u-gc-8\\/3\\@from-small{--gc-start: 8;--gc-end: 3}}@media(max-width: 699px){.u-gc-8\\/3\\@to-small{--gc-start: 8;--gc-end: 3}}@media(min-width: 700px){.u-gc-8\\/4\\@from-small{--gc-start: 8;--gc-end: 4}}@media(max-width: 699px){.u-gc-8\\/4\\@to-small{--gc-start: 8;--gc-end: 4}}@media(min-width: 700px){.u-gc-8\\/5\\@from-small{--gc-start: 8;--gc-end: 5}}@media(max-width: 699px){.u-gc-8\\/5\\@to-small{--gc-start: 8;--gc-end: 5}}@media(min-width: 700px){.u-gc-8\\/6\\@from-small{--gc-start: 8;--gc-end: 6}}@media(max-width: 699px){.u-gc-8\\/6\\@to-small{--gc-start: 8;--gc-end: 6}}@media(min-width: 700px){.u-gc-8\\/7\\@from-small{--gc-start: 8;--gc-end: 7}}@media(max-width: 699px){.u-gc-8\\/7\\@to-small{--gc-start: 8;--gc-end: 7}}@media(min-width: 700px){.u-gc-8\\/8\\@from-small{--gc-start: 8;--gc-end: 8}}@media(max-width: 699px){.u-gc-8\\/8\\@to-small{--gc-start: 8;--gc-end: 8}}@media(min-width: 700px){.u-gc-8\\/9\\@from-small{--gc-start: 8;--gc-end: 9}}@media(max-width: 699px){.u-gc-8\\/9\\@to-small{--gc-start: 8;--gc-end: 9}}@media(min-width: 700px){.u-gc-8\\/10\\@from-small{--gc-start: 8;--gc-end: 10}}@media(max-width: 699px){.u-gc-8\\/10\\@to-small{--gc-start: 8;--gc-end: 10}}@media(min-width: 700px){.u-gc-8\\/11\\@from-small{--gc-start: 8;--gc-end: 11}}@media(max-width: 699px){.u-gc-8\\/11\\@to-small{--gc-start: 8;--gc-end: 11}}@media(min-width: 700px){.u-gc-8\\/12\\@from-small{--gc-start: 8;--gc-end: 12}}@media(max-width: 699px){.u-gc-8\\/12\\@to-small{--gc-start: 8;--gc-end: 12}}@media(min-width: 700px){.u-gc-8\\/13\\@from-small{--gc-start: 8;--gc-end: 13}}@media(max-width: 699px){.u-gc-8\\/13\\@to-small{--gc-start: 8;--gc-end: 13}}@media(min-width: 700px){.u-gc-9\\/1\\@from-small{--gc-start: 9;--gc-end: 1}}@media(max-width: 699px){.u-gc-9\\/1\\@to-small{--gc-start: 9;--gc-end: 1}}@media(min-width: 700px){.u-gc-9\\/2\\@from-small{--gc-start: 9;--gc-end: 2}}@media(max-width: 699px){.u-gc-9\\/2\\@to-small{--gc-start: 9;--gc-end: 2}}@media(min-width: 700px){.u-gc-9\\/3\\@from-small{--gc-start: 9;--gc-end: 3}}@media(max-width: 699px){.u-gc-9\\/3\\@to-small{--gc-start: 9;--gc-end: 3}}@media(min-width: 700px){.u-gc-9\\/4\\@from-small{--gc-start: 9;--gc-end: 4}}@media(max-width: 699px){.u-gc-9\\/4\\@to-small{--gc-start: 9;--gc-end: 4}}@media(min-width: 700px){.u-gc-9\\/5\\@from-small{--gc-start: 9;--gc-end: 5}}@media(max-width: 699px){.u-gc-9\\/5\\@to-small{--gc-start: 9;--gc-end: 5}}@media(min-width: 700px){.u-gc-9\\/6\\@from-small{--gc-start: 9;--gc-end: 6}}@media(max-width: 699px){.u-gc-9\\/6\\@to-small{--gc-start: 9;--gc-end: 6}}@media(min-width: 700px){.u-gc-9\\/7\\@from-small{--gc-start: 9;--gc-end: 7}}@media(max-width: 699px){.u-gc-9\\/7\\@to-small{--gc-start: 9;--gc-end: 7}}@media(min-width: 700px){.u-gc-9\\/8\\@from-small{--gc-start: 9;--gc-end: 8}}@media(max-width: 699px){.u-gc-9\\/8\\@to-small{--gc-start: 9;--gc-end: 8}}@media(min-width: 700px){.u-gc-9\\/9\\@from-small{--gc-start: 9;--gc-end: 9}}@media(max-width: 699px){.u-gc-9\\/9\\@to-small{--gc-start: 9;--gc-end: 9}}@media(min-width: 700px){.u-gc-9\\/10\\@from-small{--gc-start: 9;--gc-end: 10}}@media(max-width: 699px){.u-gc-9\\/10\\@to-small{--gc-start: 9;--gc-end: 10}}@media(min-width: 700px){.u-gc-9\\/11\\@from-small{--gc-start: 9;--gc-end: 11}}@media(max-width: 699px){.u-gc-9\\/11\\@to-small{--gc-start: 9;--gc-end: 11}}@media(min-width: 700px){.u-gc-9\\/12\\@from-small{--gc-start: 9;--gc-end: 12}}@media(max-width: 699px){.u-gc-9\\/12\\@to-small{--gc-start: 9;--gc-end: 12}}@media(min-width: 700px){.u-gc-9\\/13\\@from-small{--gc-start: 9;--gc-end: 13}}@media(max-width: 699px){.u-gc-9\\/13\\@to-small{--gc-start: 9;--gc-end: 13}}@media(min-width: 700px){.u-gc-10\\/1\\@from-small{--gc-start: 10;--gc-end: 1}}@media(max-width: 699px){.u-gc-10\\/1\\@to-small{--gc-start: 10;--gc-end: 1}}@media(min-width: 700px){.u-gc-10\\/2\\@from-small{--gc-start: 10;--gc-end: 2}}@media(max-width: 699px){.u-gc-10\\/2\\@to-small{--gc-start: 10;--gc-end: 2}}@media(min-width: 700px){.u-gc-10\\/3\\@from-small{--gc-start: 10;--gc-end: 3}}@media(max-width: 699px){.u-gc-10\\/3\\@to-small{--gc-start: 10;--gc-end: 3}}@media(min-width: 700px){.u-gc-10\\/4\\@from-small{--gc-start: 10;--gc-end: 4}}@media(max-width: 699px){.u-gc-10\\/4\\@to-small{--gc-start: 10;--gc-end: 4}}@media(min-width: 700px){.u-gc-10\\/5\\@from-small{--gc-start: 10;--gc-end: 5}}@media(max-width: 699px){.u-gc-10\\/5\\@to-small{--gc-start: 10;--gc-end: 5}}@media(min-width: 700px){.u-gc-10\\/6\\@from-small{--gc-start: 10;--gc-end: 6}}@media(max-width: 699px){.u-gc-10\\/6\\@to-small{--gc-start: 10;--gc-end: 6}}@media(min-width: 700px){.u-gc-10\\/7\\@from-small{--gc-start: 10;--gc-end: 7}}@media(max-width: 699px){.u-gc-10\\/7\\@to-small{--gc-start: 10;--gc-end: 7}}@media(min-width: 700px){.u-gc-10\\/8\\@from-small{--gc-start: 10;--gc-end: 8}}@media(max-width: 699px){.u-gc-10\\/8\\@to-small{--gc-start: 10;--gc-end: 8}}@media(min-width: 700px){.u-gc-10\\/9\\@from-small{--gc-start: 10;--gc-end: 9}}@media(max-width: 699px){.u-gc-10\\/9\\@to-small{--gc-start: 10;--gc-end: 9}}@media(min-width: 700px){.u-gc-10\\/10\\@from-small{--gc-start: 10;--gc-end: 10}}@media(max-width: 699px){.u-gc-10\\/10\\@to-small{--gc-start: 10;--gc-end: 10}}@media(min-width: 700px){.u-gc-10\\/11\\@from-small{--gc-start: 10;--gc-end: 11}}@media(max-width: 699px){.u-gc-10\\/11\\@to-small{--gc-start: 10;--gc-end: 11}}@media(min-width: 700px){.u-gc-10\\/12\\@from-small{--gc-start: 10;--gc-end: 12}}@media(max-width: 699px){.u-gc-10\\/12\\@to-small{--gc-start: 10;--gc-end: 12}}@media(min-width: 700px){.u-gc-10\\/13\\@from-small{--gc-start: 10;--gc-end: 13}}@media(max-width: 699px){.u-gc-10\\/13\\@to-small{--gc-start: 10;--gc-end: 13}}@media(min-width: 700px){.u-gc-11\\/1\\@from-small{--gc-start: 11;--gc-end: 1}}@media(max-width: 699px){.u-gc-11\\/1\\@to-small{--gc-start: 11;--gc-end: 1}}@media(min-width: 700px){.u-gc-11\\/2\\@from-small{--gc-start: 11;--gc-end: 2}}@media(max-width: 699px){.u-gc-11\\/2\\@to-small{--gc-start: 11;--gc-end: 2}}@media(min-width: 700px){.u-gc-11\\/3\\@from-small{--gc-start: 11;--gc-end: 3}}@media(max-width: 699px){.u-gc-11\\/3\\@to-small{--gc-start: 11;--gc-end: 3}}@media(min-width: 700px){.u-gc-11\\/4\\@from-small{--gc-start: 11;--gc-end: 4}}@media(max-width: 699px){.u-gc-11\\/4\\@to-small{--gc-start: 11;--gc-end: 4}}@media(min-width: 700px){.u-gc-11\\/5\\@from-small{--gc-start: 11;--gc-end: 5}}@media(max-width: 699px){.u-gc-11\\/5\\@to-small{--gc-start: 11;--gc-end: 5}}@media(min-width: 700px){.u-gc-11\\/6\\@from-small{--gc-start: 11;--gc-end: 6}}@media(max-width: 699px){.u-gc-11\\/6\\@to-small{--gc-start: 11;--gc-end: 6}}@media(min-width: 700px){.u-gc-11\\/7\\@from-small{--gc-start: 11;--gc-end: 7}}@media(max-width: 699px){.u-gc-11\\/7\\@to-small{--gc-start: 11;--gc-end: 7}}@media(min-width: 700px){.u-gc-11\\/8\\@from-small{--gc-start: 11;--gc-end: 8}}@media(max-width: 699px){.u-gc-11\\/8\\@to-small{--gc-start: 11;--gc-end: 8}}@media(min-width: 700px){.u-gc-11\\/9\\@from-small{--gc-start: 11;--gc-end: 9}}@media(max-width: 699px){.u-gc-11\\/9\\@to-small{--gc-start: 11;--gc-end: 9}}@media(min-width: 700px){.u-gc-11\\/10\\@from-small{--gc-start: 11;--gc-end: 10}}@media(max-width: 699px){.u-gc-11\\/10\\@to-small{--gc-start: 11;--gc-end: 10}}@media(min-width: 700px){.u-gc-11\\/11\\@from-small{--gc-start: 11;--gc-end: 11}}@media(max-width: 699px){.u-gc-11\\/11\\@to-small{--gc-start: 11;--gc-end: 11}}@media(min-width: 700px){.u-gc-11\\/12\\@from-small{--gc-start: 11;--gc-end: 12}}@media(max-width: 699px){.u-gc-11\\/12\\@to-small{--gc-start: 11;--gc-end: 12}}@media(min-width: 700px){.u-gc-11\\/13\\@from-small{--gc-start: 11;--gc-end: 13}}@media(max-width: 699px){.u-gc-11\\/13\\@to-small{--gc-start: 11;--gc-end: 13}}@media(min-width: 700px){.u-gc-12\\/1\\@from-small{--gc-start: 12;--gc-end: 1}}@media(max-width: 699px){.u-gc-12\\/1\\@to-small{--gc-start: 12;--gc-end: 1}}@media(min-width: 700px){.u-gc-12\\/2\\@from-small{--gc-start: 12;--gc-end: 2}}@media(max-width: 699px){.u-gc-12\\/2\\@to-small{--gc-start: 12;--gc-end: 2}}@media(min-width: 700px){.u-gc-12\\/3\\@from-small{--gc-start: 12;--gc-end: 3}}@media(max-width: 699px){.u-gc-12\\/3\\@to-small{--gc-start: 12;--gc-end: 3}}@media(min-width: 700px){.u-gc-12\\/4\\@from-small{--gc-start: 12;--gc-end: 4}}@media(max-width: 699px){.u-gc-12\\/4\\@to-small{--gc-start: 12;--gc-end: 4}}@media(min-width: 700px){.u-gc-12\\/5\\@from-small{--gc-start: 12;--gc-end: 5}}@media(max-width: 699px){.u-gc-12\\/5\\@to-small{--gc-start: 12;--gc-end: 5}}@media(min-width: 700px){.u-gc-12\\/6\\@from-small{--gc-start: 12;--gc-end: 6}}@media(max-width: 699px){.u-gc-12\\/6\\@to-small{--gc-start: 12;--gc-end: 6}}@media(min-width: 700px){.u-gc-12\\/7\\@from-small{--gc-start: 12;--gc-end: 7}}@media(max-width: 699px){.u-gc-12\\/7\\@to-small{--gc-start: 12;--gc-end: 7}}@media(min-width: 700px){.u-gc-12\\/8\\@from-small{--gc-start: 12;--gc-end: 8}}@media(max-width: 699px){.u-gc-12\\/8\\@to-small{--gc-start: 12;--gc-end: 8}}@media(min-width: 700px){.u-gc-12\\/9\\@from-small{--gc-start: 12;--gc-end: 9}}@media(max-width: 699px){.u-gc-12\\/9\\@to-small{--gc-start: 12;--gc-end: 9}}@media(min-width: 700px){.u-gc-12\\/10\\@from-small{--gc-start: 12;--gc-end: 10}}@media(max-width: 699px){.u-gc-12\\/10\\@to-small{--gc-start: 12;--gc-end: 10}}@media(min-width: 700px){.u-gc-12\\/11\\@from-small{--gc-start: 12;--gc-end: 11}}@media(max-width: 699px){.u-gc-12\\/11\\@to-small{--gc-start: 12;--gc-end: 11}}@media(min-width: 700px){.u-gc-12\\/12\\@from-small{--gc-start: 12;--gc-end: 12}}@media(max-width: 699px){.u-gc-12\\/12\\@to-small{--gc-start: 12;--gc-end: 12}}@media(min-width: 700px){.u-gc-12\\/13\\@from-small{--gc-start: 12;--gc-end: 13}}@media(max-width: 699px){.u-gc-12\\/13\\@to-small{--gc-start: 12;--gc-end: 13}}@media(min-width: 700px){.u-gc-13\\/1\\@from-small{--gc-start: 13;--gc-end: 1}}@media(max-width: 699px){.u-gc-13\\/1\\@to-small{--gc-start: 13;--gc-end: 1}}@media(min-width: 700px){.u-gc-13\\/2\\@from-small{--gc-start: 13;--gc-end: 2}}@media(max-width: 699px){.u-gc-13\\/2\\@to-small{--gc-start: 13;--gc-end: 2}}@media(min-width: 700px){.u-gc-13\\/3\\@from-small{--gc-start: 13;--gc-end: 3}}@media(max-width: 699px){.u-gc-13\\/3\\@to-small{--gc-start: 13;--gc-end: 3}}@media(min-width: 700px){.u-gc-13\\/4\\@from-small{--gc-start: 13;--gc-end: 4}}@media(max-width: 699px){.u-gc-13\\/4\\@to-small{--gc-start: 13;--gc-end: 4}}@media(min-width: 700px){.u-gc-13\\/5\\@from-small{--gc-start: 13;--gc-end: 5}}@media(max-width: 699px){.u-gc-13\\/5\\@to-small{--gc-start: 13;--gc-end: 5}}@media(min-width: 700px){.u-gc-13\\/6\\@from-small{--gc-start: 13;--gc-end: 6}}@media(max-width: 699px){.u-gc-13\\/6\\@to-small{--gc-start: 13;--gc-end: 6}}@media(min-width: 700px){.u-gc-13\\/7\\@from-small{--gc-start: 13;--gc-end: 7}}@media(max-width: 699px){.u-gc-13\\/7\\@to-small{--gc-start: 13;--gc-end: 7}}@media(min-width: 700px){.u-gc-13\\/8\\@from-small{--gc-start: 13;--gc-end: 8}}@media(max-width: 699px){.u-gc-13\\/8\\@to-small{--gc-start: 13;--gc-end: 8}}@media(min-width: 700px){.u-gc-13\\/9\\@from-small{--gc-start: 13;--gc-end: 9}}@media(max-width: 699px){.u-gc-13\\/9\\@to-small{--gc-start: 13;--gc-end: 9}}@media(min-width: 700px){.u-gc-13\\/10\\@from-small{--gc-start: 13;--gc-end: 10}}@media(max-width: 699px){.u-gc-13\\/10\\@to-small{--gc-start: 13;--gc-end: 10}}@media(min-width: 700px){.u-gc-13\\/11\\@from-small{--gc-start: 13;--gc-end: 11}}@media(max-width: 699px){.u-gc-13\\/11\\@to-small{--gc-start: 13;--gc-end: 11}}@media(min-width: 700px){.u-gc-13\\/12\\@from-small{--gc-start: 13;--gc-end: 12}}@media(max-width: 699px){.u-gc-13\\/12\\@to-small{--gc-start: 13;--gc-end: 12}}@media(min-width: 700px){.u-gc-13\\/13\\@from-small{--gc-start: 13;--gc-end: 13}}@media(max-width: 699px){.u-gc-13\\/13\\@to-small{--gc-start: 13;--gc-end: 13}}@media(min-width: 1000px){.u-gc-1\\/1\\@from-medium{--gc-start: 1;--gc-end: 1}}@media(max-width: 999px){.u-gc-1\\/1\\@to-medium{--gc-start: 1;--gc-end: 1}}@media(min-width: 1000px){.u-gc-1\\/2\\@from-medium{--gc-start: 1;--gc-end: 2}}@media(max-width: 999px){.u-gc-1\\/2\\@to-medium{--gc-start: 1;--gc-end: 2}}@media(min-width: 1000px){.u-gc-1\\/3\\@from-medium{--gc-start: 1;--gc-end: 3}}@media(max-width: 999px){.u-gc-1\\/3\\@to-medium{--gc-start: 1;--gc-end: 3}}@media(min-width: 1000px){.u-gc-1\\/4\\@from-medium{--gc-start: 1;--gc-end: 4}}@media(max-width: 999px){.u-gc-1\\/4\\@to-medium{--gc-start: 1;--gc-end: 4}}@media(min-width: 1000px){.u-gc-1\\/5\\@from-medium{--gc-start: 1;--gc-end: 5}}@media(max-width: 999px){.u-gc-1\\/5\\@to-medium{--gc-start: 1;--gc-end: 5}}@media(min-width: 1000px){.u-gc-1\\/6\\@from-medium{--gc-start: 1;--gc-end: 6}}@media(max-width: 999px){.u-gc-1\\/6\\@to-medium{--gc-start: 1;--gc-end: 6}}@media(min-width: 1000px){.u-gc-1\\/7\\@from-medium{--gc-start: 1;--gc-end: 7}}@media(max-width: 999px){.u-gc-1\\/7\\@to-medium{--gc-start: 1;--gc-end: 7}}@media(min-width: 1000px){.u-gc-1\\/8\\@from-medium{--gc-start: 1;--gc-end: 8}}@media(max-width: 999px){.u-gc-1\\/8\\@to-medium{--gc-start: 1;--gc-end: 8}}@media(min-width: 1000px){.u-gc-1\\/9\\@from-medium{--gc-start: 1;--gc-end: 9}}@media(max-width: 999px){.u-gc-1\\/9\\@to-medium{--gc-start: 1;--gc-end: 9}}@media(min-width: 1000px){.u-gc-1\\/10\\@from-medium{--gc-start: 1;--gc-end: 10}}@media(max-width: 999px){.u-gc-1\\/10\\@to-medium{--gc-start: 1;--gc-end: 10}}@media(min-width: 1000px){.u-gc-1\\/11\\@from-medium{--gc-start: 1;--gc-end: 11}}@media(max-width: 999px){.u-gc-1\\/11\\@to-medium{--gc-start: 1;--gc-end: 11}}@media(min-width: 1000px){.u-gc-1\\/12\\@from-medium{--gc-start: 1;--gc-end: 12}}@media(max-width: 999px){.u-gc-1\\/12\\@to-medium{--gc-start: 1;--gc-end: 12}}@media(min-width: 1000px){.u-gc-1\\/13\\@from-medium{--gc-start: 1;--gc-end: 13}}@media(max-width: 999px){.u-gc-1\\/13\\@to-medium{--gc-start: 1;--gc-end: 13}}@media(min-width: 1000px){.u-gc-2\\/1\\@from-medium{--gc-start: 2;--gc-end: 1}}@media(max-width: 999px){.u-gc-2\\/1\\@to-medium{--gc-start: 2;--gc-end: 1}}@media(min-width: 1000px){.u-gc-2\\/2\\@from-medium{--gc-start: 2;--gc-end: 2}}@media(max-width: 999px){.u-gc-2\\/2\\@to-medium{--gc-start: 2;--gc-end: 2}}@media(min-width: 1000px){.u-gc-2\\/3\\@from-medium{--gc-start: 2;--gc-end: 3}}@media(max-width: 999px){.u-gc-2\\/3\\@to-medium{--gc-start: 2;--gc-end: 3}}@media(min-width: 1000px){.u-gc-2\\/4\\@from-medium{--gc-start: 2;--gc-end: 4}}@media(max-width: 999px){.u-gc-2\\/4\\@to-medium{--gc-start: 2;--gc-end: 4}}@media(min-width: 1000px){.u-gc-2\\/5\\@from-medium{--gc-start: 2;--gc-end: 5}}@media(max-width: 999px){.u-gc-2\\/5\\@to-medium{--gc-start: 2;--gc-end: 5}}@media(min-width: 1000px){.u-gc-2\\/6\\@from-medium{--gc-start: 2;--gc-end: 6}}@media(max-width: 999px){.u-gc-2\\/6\\@to-medium{--gc-start: 2;--gc-end: 6}}@media(min-width: 1000px){.u-gc-2\\/7\\@from-medium{--gc-start: 2;--gc-end: 7}}@media(max-width: 999px){.u-gc-2\\/7\\@to-medium{--gc-start: 2;--gc-end: 7}}@media(min-width: 1000px){.u-gc-2\\/8\\@from-medium{--gc-start: 2;--gc-end: 8}}@media(max-width: 999px){.u-gc-2\\/8\\@to-medium{--gc-start: 2;--gc-end: 8}}@media(min-width: 1000px){.u-gc-2\\/9\\@from-medium{--gc-start: 2;--gc-end: 9}}@media(max-width: 999px){.u-gc-2\\/9\\@to-medium{--gc-start: 2;--gc-end: 9}}@media(min-width: 1000px){.u-gc-2\\/10\\@from-medium{--gc-start: 2;--gc-end: 10}}@media(max-width: 999px){.u-gc-2\\/10\\@to-medium{--gc-start: 2;--gc-end: 10}}@media(min-width: 1000px){.u-gc-2\\/11\\@from-medium{--gc-start: 2;--gc-end: 11}}@media(max-width: 999px){.u-gc-2\\/11\\@to-medium{--gc-start: 2;--gc-end: 11}}@media(min-width: 1000px){.u-gc-2\\/12\\@from-medium{--gc-start: 2;--gc-end: 12}}@media(max-width: 999px){.u-gc-2\\/12\\@to-medium{--gc-start: 2;--gc-end: 12}}@media(min-width: 1000px){.u-gc-2\\/13\\@from-medium{--gc-start: 2;--gc-end: 13}}@media(max-width: 999px){.u-gc-2\\/13\\@to-medium{--gc-start: 2;--gc-end: 13}}@media(min-width: 1000px){.u-gc-3\\/1\\@from-medium{--gc-start: 3;--gc-end: 1}}@media(max-width: 999px){.u-gc-3\\/1\\@to-medium{--gc-start: 3;--gc-end: 1}}@media(min-width: 1000px){.u-gc-3\\/2\\@from-medium{--gc-start: 3;--gc-end: 2}}@media(max-width: 999px){.u-gc-3\\/2\\@to-medium{--gc-start: 3;--gc-end: 2}}@media(min-width: 1000px){.u-gc-3\\/3\\@from-medium{--gc-start: 3;--gc-end: 3}}@media(max-width: 999px){.u-gc-3\\/3\\@to-medium{--gc-start: 3;--gc-end: 3}}@media(min-width: 1000px){.u-gc-3\\/4\\@from-medium{--gc-start: 3;--gc-end: 4}}@media(max-width: 999px){.u-gc-3\\/4\\@to-medium{--gc-start: 3;--gc-end: 4}}@media(min-width: 1000px){.u-gc-3\\/5\\@from-medium{--gc-start: 3;--gc-end: 5}}@media(max-width: 999px){.u-gc-3\\/5\\@to-medium{--gc-start: 3;--gc-end: 5}}@media(min-width: 1000px){.u-gc-3\\/6\\@from-medium{--gc-start: 3;--gc-end: 6}}@media(max-width: 999px){.u-gc-3\\/6\\@to-medium{--gc-start: 3;--gc-end: 6}}@media(min-width: 1000px){.u-gc-3\\/7\\@from-medium{--gc-start: 3;--gc-end: 7}}@media(max-width: 999px){.u-gc-3\\/7\\@to-medium{--gc-start: 3;--gc-end: 7}}@media(min-width: 1000px){.u-gc-3\\/8\\@from-medium{--gc-start: 3;--gc-end: 8}}@media(max-width: 999px){.u-gc-3\\/8\\@to-medium{--gc-start: 3;--gc-end: 8}}@media(min-width: 1000px){.u-gc-3\\/9\\@from-medium{--gc-start: 3;--gc-end: 9}}@media(max-width: 999px){.u-gc-3\\/9\\@to-medium{--gc-start: 3;--gc-end: 9}}@media(min-width: 1000px){.u-gc-3\\/10\\@from-medium{--gc-start: 3;--gc-end: 10}}@media(max-width: 999px){.u-gc-3\\/10\\@to-medium{--gc-start: 3;--gc-end: 10}}@media(min-width: 1000px){.u-gc-3\\/11\\@from-medium{--gc-start: 3;--gc-end: 11}}@media(max-width: 999px){.u-gc-3\\/11\\@to-medium{--gc-start: 3;--gc-end: 11}}@media(min-width: 1000px){.u-gc-3\\/12\\@from-medium{--gc-start: 3;--gc-end: 12}}@media(max-width: 999px){.u-gc-3\\/12\\@to-medium{--gc-start: 3;--gc-end: 12}}@media(min-width: 1000px){.u-gc-3\\/13\\@from-medium{--gc-start: 3;--gc-end: 13}}@media(max-width: 999px){.u-gc-3\\/13\\@to-medium{--gc-start: 3;--gc-end: 13}}@media(min-width: 1000px){.u-gc-4\\/1\\@from-medium{--gc-start: 4;--gc-end: 1}}@media(max-width: 999px){.u-gc-4\\/1\\@to-medium{--gc-start: 4;--gc-end: 1}}@media(min-width: 1000px){.u-gc-4\\/2\\@from-medium{--gc-start: 4;--gc-end: 2}}@media(max-width: 999px){.u-gc-4\\/2\\@to-medium{--gc-start: 4;--gc-end: 2}}@media(min-width: 1000px){.u-gc-4\\/3\\@from-medium{--gc-start: 4;--gc-end: 3}}@media(max-width: 999px){.u-gc-4\\/3\\@to-medium{--gc-start: 4;--gc-end: 3}}@media(min-width: 1000px){.u-gc-4\\/4\\@from-medium{--gc-start: 4;--gc-end: 4}}@media(max-width: 999px){.u-gc-4\\/4\\@to-medium{--gc-start: 4;--gc-end: 4}}@media(min-width: 1000px){.u-gc-4\\/5\\@from-medium{--gc-start: 4;--gc-end: 5}}@media(max-width: 999px){.u-gc-4\\/5\\@to-medium{--gc-start: 4;--gc-end: 5}}@media(min-width: 1000px){.u-gc-4\\/6\\@from-medium{--gc-start: 4;--gc-end: 6}}@media(max-width: 999px){.u-gc-4\\/6\\@to-medium{--gc-start: 4;--gc-end: 6}}@media(min-width: 1000px){.u-gc-4\\/7\\@from-medium{--gc-start: 4;--gc-end: 7}}@media(max-width: 999px){.u-gc-4\\/7\\@to-medium{--gc-start: 4;--gc-end: 7}}@media(min-width: 1000px){.u-gc-4\\/8\\@from-medium{--gc-start: 4;--gc-end: 8}}@media(max-width: 999px){.u-gc-4\\/8\\@to-medium{--gc-start: 4;--gc-end: 8}}@media(min-width: 1000px){.u-gc-4\\/9\\@from-medium{--gc-start: 4;--gc-end: 9}}@media(max-width: 999px){.u-gc-4\\/9\\@to-medium{--gc-start: 4;--gc-end: 9}}@media(min-width: 1000px){.u-gc-4\\/10\\@from-medium{--gc-start: 4;--gc-end: 10}}@media(max-width: 999px){.u-gc-4\\/10\\@to-medium{--gc-start: 4;--gc-end: 10}}@media(min-width: 1000px){.u-gc-4\\/11\\@from-medium{--gc-start: 4;--gc-end: 11}}@media(max-width: 999px){.u-gc-4\\/11\\@to-medium{--gc-start: 4;--gc-end: 11}}@media(min-width: 1000px){.u-gc-4\\/12\\@from-medium{--gc-start: 4;--gc-end: 12}}@media(max-width: 999px){.u-gc-4\\/12\\@to-medium{--gc-start: 4;--gc-end: 12}}@media(min-width: 1000px){.u-gc-4\\/13\\@from-medium{--gc-start: 4;--gc-end: 13}}@media(max-width: 999px){.u-gc-4\\/13\\@to-medium{--gc-start: 4;--gc-end: 13}}@media(min-width: 1000px){.u-gc-5\\/1\\@from-medium{--gc-start: 5;--gc-end: 1}}@media(max-width: 999px){.u-gc-5\\/1\\@to-medium{--gc-start: 5;--gc-end: 1}}@media(min-width: 1000px){.u-gc-5\\/2\\@from-medium{--gc-start: 5;--gc-end: 2}}@media(max-width: 999px){.u-gc-5\\/2\\@to-medium{--gc-start: 5;--gc-end: 2}}@media(min-width: 1000px){.u-gc-5\\/3\\@from-medium{--gc-start: 5;--gc-end: 3}}@media(max-width: 999px){.u-gc-5\\/3\\@to-medium{--gc-start: 5;--gc-end: 3}}@media(min-width: 1000px){.u-gc-5\\/4\\@from-medium{--gc-start: 5;--gc-end: 4}}@media(max-width: 999px){.u-gc-5\\/4\\@to-medium{--gc-start: 5;--gc-end: 4}}@media(min-width: 1000px){.u-gc-5\\/5\\@from-medium{--gc-start: 5;--gc-end: 5}}@media(max-width: 999px){.u-gc-5\\/5\\@to-medium{--gc-start: 5;--gc-end: 5}}@media(min-width: 1000px){.u-gc-5\\/6\\@from-medium{--gc-start: 5;--gc-end: 6}}@media(max-width: 999px){.u-gc-5\\/6\\@to-medium{--gc-start: 5;--gc-end: 6}}@media(min-width: 1000px){.u-gc-5\\/7\\@from-medium{--gc-start: 5;--gc-end: 7}}@media(max-width: 999px){.u-gc-5\\/7\\@to-medium{--gc-start: 5;--gc-end: 7}}@media(min-width: 1000px){.u-gc-5\\/8\\@from-medium{--gc-start: 5;--gc-end: 8}}@media(max-width: 999px){.u-gc-5\\/8\\@to-medium{--gc-start: 5;--gc-end: 8}}@media(min-width: 1000px){.u-gc-5\\/9\\@from-medium{--gc-start: 5;--gc-end: 9}}@media(max-width: 999px){.u-gc-5\\/9\\@to-medium{--gc-start: 5;--gc-end: 9}}@media(min-width: 1000px){.u-gc-5\\/10\\@from-medium{--gc-start: 5;--gc-end: 10}}@media(max-width: 999px){.u-gc-5\\/10\\@to-medium{--gc-start: 5;--gc-end: 10}}@media(min-width: 1000px){.u-gc-5\\/11\\@from-medium{--gc-start: 5;--gc-end: 11}}@media(max-width: 999px){.u-gc-5\\/11\\@to-medium{--gc-start: 5;--gc-end: 11}}@media(min-width: 1000px){.u-gc-5\\/12\\@from-medium{--gc-start: 5;--gc-end: 12}}@media(max-width: 999px){.u-gc-5\\/12\\@to-medium{--gc-start: 5;--gc-end: 12}}@media(min-width: 1000px){.u-gc-5\\/13\\@from-medium{--gc-start: 5;--gc-end: 13}}@media(max-width: 999px){.u-gc-5\\/13\\@to-medium{--gc-start: 5;--gc-end: 13}}@media(min-width: 1000px){.u-gc-6\\/1\\@from-medium{--gc-start: 6;--gc-end: 1}}@media(max-width: 999px){.u-gc-6\\/1\\@to-medium{--gc-start: 6;--gc-end: 1}}@media(min-width: 1000px){.u-gc-6\\/2\\@from-medium{--gc-start: 6;--gc-end: 2}}@media(max-width: 999px){.u-gc-6\\/2\\@to-medium{--gc-start: 6;--gc-end: 2}}@media(min-width: 1000px){.u-gc-6\\/3\\@from-medium{--gc-start: 6;--gc-end: 3}}@media(max-width: 999px){.u-gc-6\\/3\\@to-medium{--gc-start: 6;--gc-end: 3}}@media(min-width: 1000px){.u-gc-6\\/4\\@from-medium{--gc-start: 6;--gc-end: 4}}@media(max-width: 999px){.u-gc-6\\/4\\@to-medium{--gc-start: 6;--gc-end: 4}}@media(min-width: 1000px){.u-gc-6\\/5\\@from-medium{--gc-start: 6;--gc-end: 5}}@media(max-width: 999px){.u-gc-6\\/5\\@to-medium{--gc-start: 6;--gc-end: 5}}@media(min-width: 1000px){.u-gc-6\\/6\\@from-medium{--gc-start: 6;--gc-end: 6}}@media(max-width: 999px){.u-gc-6\\/6\\@to-medium{--gc-start: 6;--gc-end: 6}}@media(min-width: 1000px){.u-gc-6\\/7\\@from-medium{--gc-start: 6;--gc-end: 7}}@media(max-width: 999px){.u-gc-6\\/7\\@to-medium{--gc-start: 6;--gc-end: 7}}@media(min-width: 1000px){.u-gc-6\\/8\\@from-medium{--gc-start: 6;--gc-end: 8}}@media(max-width: 999px){.u-gc-6\\/8\\@to-medium{--gc-start: 6;--gc-end: 8}}@media(min-width: 1000px){.u-gc-6\\/9\\@from-medium{--gc-start: 6;--gc-end: 9}}@media(max-width: 999px){.u-gc-6\\/9\\@to-medium{--gc-start: 6;--gc-end: 9}}@media(min-width: 1000px){.u-gc-6\\/10\\@from-medium{--gc-start: 6;--gc-end: 10}}@media(max-width: 999px){.u-gc-6\\/10\\@to-medium{--gc-start: 6;--gc-end: 10}}@media(min-width: 1000px){.u-gc-6\\/11\\@from-medium{--gc-start: 6;--gc-end: 11}}@media(max-width: 999px){.u-gc-6\\/11\\@to-medium{--gc-start: 6;--gc-end: 11}}@media(min-width: 1000px){.u-gc-6\\/12\\@from-medium{--gc-start: 6;--gc-end: 12}}@media(max-width: 999px){.u-gc-6\\/12\\@to-medium{--gc-start: 6;--gc-end: 12}}@media(min-width: 1000px){.u-gc-6\\/13\\@from-medium{--gc-start: 6;--gc-end: 13}}@media(max-width: 999px){.u-gc-6\\/13\\@to-medium{--gc-start: 6;--gc-end: 13}}@media(min-width: 1000px){.u-gc-7\\/1\\@from-medium{--gc-start: 7;--gc-end: 1}}@media(max-width: 999px){.u-gc-7\\/1\\@to-medium{--gc-start: 7;--gc-end: 1}}@media(min-width: 1000px){.u-gc-7\\/2\\@from-medium{--gc-start: 7;--gc-end: 2}}@media(max-width: 999px){.u-gc-7\\/2\\@to-medium{--gc-start: 7;--gc-end: 2}}@media(min-width: 1000px){.u-gc-7\\/3\\@from-medium{--gc-start: 7;--gc-end: 3}}@media(max-width: 999px){.u-gc-7\\/3\\@to-medium{--gc-start: 7;--gc-end: 3}}@media(min-width: 1000px){.u-gc-7\\/4\\@from-medium{--gc-start: 7;--gc-end: 4}}@media(max-width: 999px){.u-gc-7\\/4\\@to-medium{--gc-start: 7;--gc-end: 4}}@media(min-width: 1000px){.u-gc-7\\/5\\@from-medium{--gc-start: 7;--gc-end: 5}}@media(max-width: 999px){.u-gc-7\\/5\\@to-medium{--gc-start: 7;--gc-end: 5}}@media(min-width: 1000px){.u-gc-7\\/6\\@from-medium{--gc-start: 7;--gc-end: 6}}@media(max-width: 999px){.u-gc-7\\/6\\@to-medium{--gc-start: 7;--gc-end: 6}}@media(min-width: 1000px){.u-gc-7\\/7\\@from-medium{--gc-start: 7;--gc-end: 7}}@media(max-width: 999px){.u-gc-7\\/7\\@to-medium{--gc-start: 7;--gc-end: 7}}@media(min-width: 1000px){.u-gc-7\\/8\\@from-medium{--gc-start: 7;--gc-end: 8}}@media(max-width: 999px){.u-gc-7\\/8\\@to-medium{--gc-start: 7;--gc-end: 8}}@media(min-width: 1000px){.u-gc-7\\/9\\@from-medium{--gc-start: 7;--gc-end: 9}}@media(max-width: 999px){.u-gc-7\\/9\\@to-medium{--gc-start: 7;--gc-end: 9}}@media(min-width: 1000px){.u-gc-7\\/10\\@from-medium{--gc-start: 7;--gc-end: 10}}@media(max-width: 999px){.u-gc-7\\/10\\@to-medium{--gc-start: 7;--gc-end: 10}}@media(min-width: 1000px){.u-gc-7\\/11\\@from-medium{--gc-start: 7;--gc-end: 11}}@media(max-width: 999px){.u-gc-7\\/11\\@to-medium{--gc-start: 7;--gc-end: 11}}@media(min-width: 1000px){.u-gc-7\\/12\\@from-medium{--gc-start: 7;--gc-end: 12}}@media(max-width: 999px){.u-gc-7\\/12\\@to-medium{--gc-start: 7;--gc-end: 12}}@media(min-width: 1000px){.u-gc-7\\/13\\@from-medium{--gc-start: 7;--gc-end: 13}}@media(max-width: 999px){.u-gc-7\\/13\\@to-medium{--gc-start: 7;--gc-end: 13}}@media(min-width: 1000px){.u-gc-8\\/1\\@from-medium{--gc-start: 8;--gc-end: 1}}@media(max-width: 999px){.u-gc-8\\/1\\@to-medium{--gc-start: 8;--gc-end: 1}}@media(min-width: 1000px){.u-gc-8\\/2\\@from-medium{--gc-start: 8;--gc-end: 2}}@media(max-width: 999px){.u-gc-8\\/2\\@to-medium{--gc-start: 8;--gc-end: 2}}@media(min-width: 1000px){.u-gc-8\\/3\\@from-medium{--gc-start: 8;--gc-end: 3}}@media(max-width: 999px){.u-gc-8\\/3\\@to-medium{--gc-start: 8;--gc-end: 3}}@media(min-width: 1000px){.u-gc-8\\/4\\@from-medium{--gc-start: 8;--gc-end: 4}}@media(max-width: 999px){.u-gc-8\\/4\\@to-medium{--gc-start: 8;--gc-end: 4}}@media(min-width: 1000px){.u-gc-8\\/5\\@from-medium{--gc-start: 8;--gc-end: 5}}@media(max-width: 999px){.u-gc-8\\/5\\@to-medium{--gc-start: 8;--gc-end: 5}}@media(min-width: 1000px){.u-gc-8\\/6\\@from-medium{--gc-start: 8;--gc-end: 6}}@media(max-width: 999px){.u-gc-8\\/6\\@to-medium{--gc-start: 8;--gc-end: 6}}@media(min-width: 1000px){.u-gc-8\\/7\\@from-medium{--gc-start: 8;--gc-end: 7}}@media(max-width: 999px){.u-gc-8\\/7\\@to-medium{--gc-start: 8;--gc-end: 7}}@media(min-width: 1000px){.u-gc-8\\/8\\@from-medium{--gc-start: 8;--gc-end: 8}}@media(max-width: 999px){.u-gc-8\\/8\\@to-medium{--gc-start: 8;--gc-end: 8}}@media(min-width: 1000px){.u-gc-8\\/9\\@from-medium{--gc-start: 8;--gc-end: 9}}@media(max-width: 999px){.u-gc-8\\/9\\@to-medium{--gc-start: 8;--gc-end: 9}}@media(min-width: 1000px){.u-gc-8\\/10\\@from-medium{--gc-start: 8;--gc-end: 10}}@media(max-width: 999px){.u-gc-8\\/10\\@to-medium{--gc-start: 8;--gc-end: 10}}@media(min-width: 1000px){.u-gc-8\\/11\\@from-medium{--gc-start: 8;--gc-end: 11}}@media(max-width: 999px){.u-gc-8\\/11\\@to-medium{--gc-start: 8;--gc-end: 11}}@media(min-width: 1000px){.u-gc-8\\/12\\@from-medium{--gc-start: 8;--gc-end: 12}}@media(max-width: 999px){.u-gc-8\\/12\\@to-medium{--gc-start: 8;--gc-end: 12}}@media(min-width: 1000px){.u-gc-8\\/13\\@from-medium{--gc-start: 8;--gc-end: 13}}@media(max-width: 999px){.u-gc-8\\/13\\@to-medium{--gc-start: 8;--gc-end: 13}}@media(min-width: 1000px){.u-gc-9\\/1\\@from-medium{--gc-start: 9;--gc-end: 1}}@media(max-width: 999px){.u-gc-9\\/1\\@to-medium{--gc-start: 9;--gc-end: 1}}@media(min-width: 1000px){.u-gc-9\\/2\\@from-medium{--gc-start: 9;--gc-end: 2}}@media(max-width: 999px){.u-gc-9\\/2\\@to-medium{--gc-start: 9;--gc-end: 2}}@media(min-width: 1000px){.u-gc-9\\/3\\@from-medium{--gc-start: 9;--gc-end: 3}}@media(max-width: 999px){.u-gc-9\\/3\\@to-medium{--gc-start: 9;--gc-end: 3}}@media(min-width: 1000px){.u-gc-9\\/4\\@from-medium{--gc-start: 9;--gc-end: 4}}@media(max-width: 999px){.u-gc-9\\/4\\@to-medium{--gc-start: 9;--gc-end: 4}}@media(min-width: 1000px){.u-gc-9\\/5\\@from-medium{--gc-start: 9;--gc-end: 5}}@media(max-width: 999px){.u-gc-9\\/5\\@to-medium{--gc-start: 9;--gc-end: 5}}@media(min-width: 1000px){.u-gc-9\\/6\\@from-medium{--gc-start: 9;--gc-end: 6}}@media(max-width: 999px){.u-gc-9\\/6\\@to-medium{--gc-start: 9;--gc-end: 6}}@media(min-width: 1000px){.u-gc-9\\/7\\@from-medium{--gc-start: 9;--gc-end: 7}}@media(max-width: 999px){.u-gc-9\\/7\\@to-medium{--gc-start: 9;--gc-end: 7}}@media(min-width: 1000px){.u-gc-9\\/8\\@from-medium{--gc-start: 9;--gc-end: 8}}@media(max-width: 999px){.u-gc-9\\/8\\@to-medium{--gc-start: 9;--gc-end: 8}}@media(min-width: 1000px){.u-gc-9\\/9\\@from-medium{--gc-start: 9;--gc-end: 9}}@media(max-width: 999px){.u-gc-9\\/9\\@to-medium{--gc-start: 9;--gc-end: 9}}@media(min-width: 1000px){.u-gc-9\\/10\\@from-medium{--gc-start: 9;--gc-end: 10}}@media(max-width: 999px){.u-gc-9\\/10\\@to-medium{--gc-start: 9;--gc-end: 10}}@media(min-width: 1000px){.u-gc-9\\/11\\@from-medium{--gc-start: 9;--gc-end: 11}}@media(max-width: 999px){.u-gc-9\\/11\\@to-medium{--gc-start: 9;--gc-end: 11}}@media(min-width: 1000px){.u-gc-9\\/12\\@from-medium{--gc-start: 9;--gc-end: 12}}@media(max-width: 999px){.u-gc-9\\/12\\@to-medium{--gc-start: 9;--gc-end: 12}}@media(min-width: 1000px){.u-gc-9\\/13\\@from-medium{--gc-start: 9;--gc-end: 13}}@media(max-width: 999px){.u-gc-9\\/13\\@to-medium{--gc-start: 9;--gc-end: 13}}@media(min-width: 1000px){.u-gc-10\\/1\\@from-medium{--gc-start: 10;--gc-end: 1}}@media(max-width: 999px){.u-gc-10\\/1\\@to-medium{--gc-start: 10;--gc-end: 1}}@media(min-width: 1000px){.u-gc-10\\/2\\@from-medium{--gc-start: 10;--gc-end: 2}}@media(max-width: 999px){.u-gc-10\\/2\\@to-medium{--gc-start: 10;--gc-end: 2}}@media(min-width: 1000px){.u-gc-10\\/3\\@from-medium{--gc-start: 10;--gc-end: 3}}@media(max-width: 999px){.u-gc-10\\/3\\@to-medium{--gc-start: 10;--gc-end: 3}}@media(min-width: 1000px){.u-gc-10\\/4\\@from-medium{--gc-start: 10;--gc-end: 4}}@media(max-width: 999px){.u-gc-10\\/4\\@to-medium{--gc-start: 10;--gc-end: 4}}@media(min-width: 1000px){.u-gc-10\\/5\\@from-medium{--gc-start: 10;--gc-end: 5}}@media(max-width: 999px){.u-gc-10\\/5\\@to-medium{--gc-start: 10;--gc-end: 5}}@media(min-width: 1000px){.u-gc-10\\/6\\@from-medium{--gc-start: 10;--gc-end: 6}}@media(max-width: 999px){.u-gc-10\\/6\\@to-medium{--gc-start: 10;--gc-end: 6}}@media(min-width: 1000px){.u-gc-10\\/7\\@from-medium{--gc-start: 10;--gc-end: 7}}@media(max-width: 999px){.u-gc-10\\/7\\@to-medium{--gc-start: 10;--gc-end: 7}}@media(min-width: 1000px){.u-gc-10\\/8\\@from-medium{--gc-start: 10;--gc-end: 8}}@media(max-width: 999px){.u-gc-10\\/8\\@to-medium{--gc-start: 10;--gc-end: 8}}@media(min-width: 1000px){.u-gc-10\\/9\\@from-medium{--gc-start: 10;--gc-end: 9}}@media(max-width: 999px){.u-gc-10\\/9\\@to-medium{--gc-start: 10;--gc-end: 9}}@media(min-width: 1000px){.u-gc-10\\/10\\@from-medium{--gc-start: 10;--gc-end: 10}}@media(max-width: 999px){.u-gc-10\\/10\\@to-medium{--gc-start: 10;--gc-end: 10}}@media(min-width: 1000px){.u-gc-10\\/11\\@from-medium{--gc-start: 10;--gc-end: 11}}@media(max-width: 999px){.u-gc-10\\/11\\@to-medium{--gc-start: 10;--gc-end: 11}}@media(min-width: 1000px){.u-gc-10\\/12\\@from-medium{--gc-start: 10;--gc-end: 12}}@media(max-width: 999px){.u-gc-10\\/12\\@to-medium{--gc-start: 10;--gc-end: 12}}@media(min-width: 1000px){.u-gc-10\\/13\\@from-medium{--gc-start: 10;--gc-end: 13}}@media(max-width: 999px){.u-gc-10\\/13\\@to-medium{--gc-start: 10;--gc-end: 13}}@media(min-width: 1000px){.u-gc-11\\/1\\@from-medium{--gc-start: 11;--gc-end: 1}}@media(max-width: 999px){.u-gc-11\\/1\\@to-medium{--gc-start: 11;--gc-end: 1}}@media(min-width: 1000px){.u-gc-11\\/2\\@from-medium{--gc-start: 11;--gc-end: 2}}@media(max-width: 999px){.u-gc-11\\/2\\@to-medium{--gc-start: 11;--gc-end: 2}}@media(min-width: 1000px){.u-gc-11\\/3\\@from-medium{--gc-start: 11;--gc-end: 3}}@media(max-width: 999px){.u-gc-11\\/3\\@to-medium{--gc-start: 11;--gc-end: 3}}@media(min-width: 1000px){.u-gc-11\\/4\\@from-medium{--gc-start: 11;--gc-end: 4}}@media(max-width: 999px){.u-gc-11\\/4\\@to-medium{--gc-start: 11;--gc-end: 4}}@media(min-width: 1000px){.u-gc-11\\/5\\@from-medium{--gc-start: 11;--gc-end: 5}}@media(max-width: 999px){.u-gc-11\\/5\\@to-medium{--gc-start: 11;--gc-end: 5}}@media(min-width: 1000px){.u-gc-11\\/6\\@from-medium{--gc-start: 11;--gc-end: 6}}@media(max-width: 999px){.u-gc-11\\/6\\@to-medium{--gc-start: 11;--gc-end: 6}}@media(min-width: 1000px){.u-gc-11\\/7\\@from-medium{--gc-start: 11;--gc-end: 7}}@media(max-width: 999px){.u-gc-11\\/7\\@to-medium{--gc-start: 11;--gc-end: 7}}@media(min-width: 1000px){.u-gc-11\\/8\\@from-medium{--gc-start: 11;--gc-end: 8}}@media(max-width: 999px){.u-gc-11\\/8\\@to-medium{--gc-start: 11;--gc-end: 8}}@media(min-width: 1000px){.u-gc-11\\/9\\@from-medium{--gc-start: 11;--gc-end: 9}}@media(max-width: 999px){.u-gc-11\\/9\\@to-medium{--gc-start: 11;--gc-end: 9}}@media(min-width: 1000px){.u-gc-11\\/10\\@from-medium{--gc-start: 11;--gc-end: 10}}@media(max-width: 999px){.u-gc-11\\/10\\@to-medium{--gc-start: 11;--gc-end: 10}}@media(min-width: 1000px){.u-gc-11\\/11\\@from-medium{--gc-start: 11;--gc-end: 11}}@media(max-width: 999px){.u-gc-11\\/11\\@to-medium{--gc-start: 11;--gc-end: 11}}@media(min-width: 1000px){.u-gc-11\\/12\\@from-medium{--gc-start: 11;--gc-end: 12}}@media(max-width: 999px){.u-gc-11\\/12\\@to-medium{--gc-start: 11;--gc-end: 12}}@media(min-width: 1000px){.u-gc-11\\/13\\@from-medium{--gc-start: 11;--gc-end: 13}}@media(max-width: 999px){.u-gc-11\\/13\\@to-medium{--gc-start: 11;--gc-end: 13}}@media(min-width: 1000px){.u-gc-12\\/1\\@from-medium{--gc-start: 12;--gc-end: 1}}@media(max-width: 999px){.u-gc-12\\/1\\@to-medium{--gc-start: 12;--gc-end: 1}}@media(min-width: 1000px){.u-gc-12\\/2\\@from-medium{--gc-start: 12;--gc-end: 2}}@media(max-width: 999px){.u-gc-12\\/2\\@to-medium{--gc-start: 12;--gc-end: 2}}@media(min-width: 1000px){.u-gc-12\\/3\\@from-medium{--gc-start: 12;--gc-end: 3}}@media(max-width: 999px){.u-gc-12\\/3\\@to-medium{--gc-start: 12;--gc-end: 3}}@media(min-width: 1000px){.u-gc-12\\/4\\@from-medium{--gc-start: 12;--gc-end: 4}}@media(max-width: 999px){.u-gc-12\\/4\\@to-medium{--gc-start: 12;--gc-end: 4}}@media(min-width: 1000px){.u-gc-12\\/5\\@from-medium{--gc-start: 12;--gc-end: 5}}@media(max-width: 999px){.u-gc-12\\/5\\@to-medium{--gc-start: 12;--gc-end: 5}}@media(min-width: 1000px){.u-gc-12\\/6\\@from-medium{--gc-start: 12;--gc-end: 6}}@media(max-width: 999px){.u-gc-12\\/6\\@to-medium{--gc-start: 12;--gc-end: 6}}@media(min-width: 1000px){.u-gc-12\\/7\\@from-medium{--gc-start: 12;--gc-end: 7}}@media(max-width: 999px){.u-gc-12\\/7\\@to-medium{--gc-start: 12;--gc-end: 7}}@media(min-width: 1000px){.u-gc-12\\/8\\@from-medium{--gc-start: 12;--gc-end: 8}}@media(max-width: 999px){.u-gc-12\\/8\\@to-medium{--gc-start: 12;--gc-end: 8}}@media(min-width: 1000px){.u-gc-12\\/9\\@from-medium{--gc-start: 12;--gc-end: 9}}@media(max-width: 999px){.u-gc-12\\/9\\@to-medium{--gc-start: 12;--gc-end: 9}}@media(min-width: 1000px){.u-gc-12\\/10\\@from-medium{--gc-start: 12;--gc-end: 10}}@media(max-width: 999px){.u-gc-12\\/10\\@to-medium{--gc-start: 12;--gc-end: 10}}@media(min-width: 1000px){.u-gc-12\\/11\\@from-medium{--gc-start: 12;--gc-end: 11}}@media(max-width: 999px){.u-gc-12\\/11\\@to-medium{--gc-start: 12;--gc-end: 11}}@media(min-width: 1000px){.u-gc-12\\/12\\@from-medium{--gc-start: 12;--gc-end: 12}}@media(max-width: 999px){.u-gc-12\\/12\\@to-medium{--gc-start: 12;--gc-end: 12}}@media(min-width: 1000px){.u-gc-12\\/13\\@from-medium{--gc-start: 12;--gc-end: 13}}@media(max-width: 999px){.u-gc-12\\/13\\@to-medium{--gc-start: 12;--gc-end: 13}}@media(min-width: 1000px){.u-gc-13\\/1\\@from-medium{--gc-start: 13;--gc-end: 1}}@media(max-width: 999px){.u-gc-13\\/1\\@to-medium{--gc-start: 13;--gc-end: 1}}@media(min-width: 1000px){.u-gc-13\\/2\\@from-medium{--gc-start: 13;--gc-end: 2}}@media(max-width: 999px){.u-gc-13\\/2\\@to-medium{--gc-start: 13;--gc-end: 2}}@media(min-width: 1000px){.u-gc-13\\/3\\@from-medium{--gc-start: 13;--gc-end: 3}}@media(max-width: 999px){.u-gc-13\\/3\\@to-medium{--gc-start: 13;--gc-end: 3}}@media(min-width: 1000px){.u-gc-13\\/4\\@from-medium{--gc-start: 13;--gc-end: 4}}@media(max-width: 999px){.u-gc-13\\/4\\@to-medium{--gc-start: 13;--gc-end: 4}}@media(min-width: 1000px){.u-gc-13\\/5\\@from-medium{--gc-start: 13;--gc-end: 5}}@media(max-width: 999px){.u-gc-13\\/5\\@to-medium{--gc-start: 13;--gc-end: 5}}@media(min-width: 1000px){.u-gc-13\\/6\\@from-medium{--gc-start: 13;--gc-end: 6}}@media(max-width: 999px){.u-gc-13\\/6\\@to-medium{--gc-start: 13;--gc-end: 6}}@media(min-width: 1000px){.u-gc-13\\/7\\@from-medium{--gc-start: 13;--gc-end: 7}}@media(max-width: 999px){.u-gc-13\\/7\\@to-medium{--gc-start: 13;--gc-end: 7}}@media(min-width: 1000px){.u-gc-13\\/8\\@from-medium{--gc-start: 13;--gc-end: 8}}@media(max-width: 999px){.u-gc-13\\/8\\@to-medium{--gc-start: 13;--gc-end: 8}}@media(min-width: 1000px){.u-gc-13\\/9\\@from-medium{--gc-start: 13;--gc-end: 9}}@media(max-width: 999px){.u-gc-13\\/9\\@to-medium{--gc-start: 13;--gc-end: 9}}@media(min-width: 1000px){.u-gc-13\\/10\\@from-medium{--gc-start: 13;--gc-end: 10}}@media(max-width: 999px){.u-gc-13\\/10\\@to-medium{--gc-start: 13;--gc-end: 10}}@media(min-width: 1000px){.u-gc-13\\/11\\@from-medium{--gc-start: 13;--gc-end: 11}}@media(max-width: 999px){.u-gc-13\\/11\\@to-medium{--gc-start: 13;--gc-end: 11}}@media(min-width: 1000px){.u-gc-13\\/12\\@from-medium{--gc-start: 13;--gc-end: 12}}@media(max-width: 999px){.u-gc-13\\/12\\@to-medium{--gc-start: 13;--gc-end: 12}}@media(min-width: 1000px){.u-gc-13\\/13\\@from-medium{--gc-start: 13;--gc-end: 13}}@media(max-width: 999px){.u-gc-13\\/13\\@to-medium{--gc-start: 13;--gc-end: 13}}@media(min-width: 1200px){.u-gc-1\\/1\\@from-large{--gc-start: 1;--gc-end: 1}}@media(max-width: 1199px){.u-gc-1\\/1\\@to-large{--gc-start: 1;--gc-end: 1}}@media(min-width: 1200px){.u-gc-1\\/2\\@from-large{--gc-start: 1;--gc-end: 2}}@media(max-width: 1199px){.u-gc-1\\/2\\@to-large{--gc-start: 1;--gc-end: 2}}@media(min-width: 1200px){.u-gc-1\\/3\\@from-large{--gc-start: 1;--gc-end: 3}}@media(max-width: 1199px){.u-gc-1\\/3\\@to-large{--gc-start: 1;--gc-end: 3}}@media(min-width: 1200px){.u-gc-1\\/4\\@from-large{--gc-start: 1;--gc-end: 4}}@media(max-width: 1199px){.u-gc-1\\/4\\@to-large{--gc-start: 1;--gc-end: 4}}@media(min-width: 1200px){.u-gc-1\\/5\\@from-large{--gc-start: 1;--gc-end: 5}}@media(max-width: 1199px){.u-gc-1\\/5\\@to-large{--gc-start: 1;--gc-end: 5}}@media(min-width: 1200px){.u-gc-1\\/6\\@from-large{--gc-start: 1;--gc-end: 6}}@media(max-width: 1199px){.u-gc-1\\/6\\@to-large{--gc-start: 1;--gc-end: 6}}@media(min-width: 1200px){.u-gc-1\\/7\\@from-large{--gc-start: 1;--gc-end: 7}}@media(max-width: 1199px){.u-gc-1\\/7\\@to-large{--gc-start: 1;--gc-end: 7}}@media(min-width: 1200px){.u-gc-1\\/8\\@from-large{--gc-start: 1;--gc-end: 8}}@media(max-width: 1199px){.u-gc-1\\/8\\@to-large{--gc-start: 1;--gc-end: 8}}@media(min-width: 1200px){.u-gc-1\\/9\\@from-large{--gc-start: 1;--gc-end: 9}}@media(max-width: 1199px){.u-gc-1\\/9\\@to-large{--gc-start: 1;--gc-end: 9}}@media(min-width: 1200px){.u-gc-1\\/10\\@from-large{--gc-start: 1;--gc-end: 10}}@media(max-width: 1199px){.u-gc-1\\/10\\@to-large{--gc-start: 1;--gc-end: 10}}@media(min-width: 1200px){.u-gc-1\\/11\\@from-large{--gc-start: 1;--gc-end: 11}}@media(max-width: 1199px){.u-gc-1\\/11\\@to-large{--gc-start: 1;--gc-end: 11}}@media(min-width: 1200px){.u-gc-1\\/12\\@from-large{--gc-start: 1;--gc-end: 12}}@media(max-width: 1199px){.u-gc-1\\/12\\@to-large{--gc-start: 1;--gc-end: 12}}@media(min-width: 1200px){.u-gc-1\\/13\\@from-large{--gc-start: 1;--gc-end: 13}}@media(max-width: 1199px){.u-gc-1\\/13\\@to-large{--gc-start: 1;--gc-end: 13}}@media(min-width: 1200px){.u-gc-2\\/1\\@from-large{--gc-start: 2;--gc-end: 1}}@media(max-width: 1199px){.u-gc-2\\/1\\@to-large{--gc-start: 2;--gc-end: 1}}@media(min-width: 1200px){.u-gc-2\\/2\\@from-large{--gc-start: 2;--gc-end: 2}}@media(max-width: 1199px){.u-gc-2\\/2\\@to-large{--gc-start: 2;--gc-end: 2}}@media(min-width: 1200px){.u-gc-2\\/3\\@from-large{--gc-start: 2;--gc-end: 3}}@media(max-width: 1199px){.u-gc-2\\/3\\@to-large{--gc-start: 2;--gc-end: 3}}@media(min-width: 1200px){.u-gc-2\\/4\\@from-large{--gc-start: 2;--gc-end: 4}}@media(max-width: 1199px){.u-gc-2\\/4\\@to-large{--gc-start: 2;--gc-end: 4}}@media(min-width: 1200px){.u-gc-2\\/5\\@from-large{--gc-start: 2;--gc-end: 5}}@media(max-width: 1199px){.u-gc-2\\/5\\@to-large{--gc-start: 2;--gc-end: 5}}@media(min-width: 1200px){.u-gc-2\\/6\\@from-large{--gc-start: 2;--gc-end: 6}}@media(max-width: 1199px){.u-gc-2\\/6\\@to-large{--gc-start: 2;--gc-end: 6}}@media(min-width: 1200px){.u-gc-2\\/7\\@from-large{--gc-start: 2;--gc-end: 7}}@media(max-width: 1199px){.u-gc-2\\/7\\@to-large{--gc-start: 2;--gc-end: 7}}@media(min-width: 1200px){.u-gc-2\\/8\\@from-large{--gc-start: 2;--gc-end: 8}}@media(max-width: 1199px){.u-gc-2\\/8\\@to-large{--gc-start: 2;--gc-end: 8}}@media(min-width: 1200px){.u-gc-2\\/9\\@from-large{--gc-start: 2;--gc-end: 9}}@media(max-width: 1199px){.u-gc-2\\/9\\@to-large{--gc-start: 2;--gc-end: 9}}@media(min-width: 1200px){.u-gc-2\\/10\\@from-large{--gc-start: 2;--gc-end: 10}}@media(max-width: 1199px){.u-gc-2\\/10\\@to-large{--gc-start: 2;--gc-end: 10}}@media(min-width: 1200px){.u-gc-2\\/11\\@from-large{--gc-start: 2;--gc-end: 11}}@media(max-width: 1199px){.u-gc-2\\/11\\@to-large{--gc-start: 2;--gc-end: 11}}@media(min-width: 1200px){.u-gc-2\\/12\\@from-large{--gc-start: 2;--gc-end: 12}}@media(max-width: 1199px){.u-gc-2\\/12\\@to-large{--gc-start: 2;--gc-end: 12}}@media(min-width: 1200px){.u-gc-2\\/13\\@from-large{--gc-start: 2;--gc-end: 13}}@media(max-width: 1199px){.u-gc-2\\/13\\@to-large{--gc-start: 2;--gc-end: 13}}@media(min-width: 1200px){.u-gc-3\\/1\\@from-large{--gc-start: 3;--gc-end: 1}}@media(max-width: 1199px){.u-gc-3\\/1\\@to-large{--gc-start: 3;--gc-end: 1}}@media(min-width: 1200px){.u-gc-3\\/2\\@from-large{--gc-start: 3;--gc-end: 2}}@media(max-width: 1199px){.u-gc-3\\/2\\@to-large{--gc-start: 3;--gc-end: 2}}@media(min-width: 1200px){.u-gc-3\\/3\\@from-large{--gc-start: 3;--gc-end: 3}}@media(max-width: 1199px){.u-gc-3\\/3\\@to-large{--gc-start: 3;--gc-end: 3}}@media(min-width: 1200px){.u-gc-3\\/4\\@from-large{--gc-start: 3;--gc-end: 4}}@media(max-width: 1199px){.u-gc-3\\/4\\@to-large{--gc-start: 3;--gc-end: 4}}@media(min-width: 1200px){.u-gc-3\\/5\\@from-large{--gc-start: 3;--gc-end: 5}}@media(max-width: 1199px){.u-gc-3\\/5\\@to-large{--gc-start: 3;--gc-end: 5}}@media(min-width: 1200px){.u-gc-3\\/6\\@from-large{--gc-start: 3;--gc-end: 6}}@media(max-width: 1199px){.u-gc-3\\/6\\@to-large{--gc-start: 3;--gc-end: 6}}@media(min-width: 1200px){.u-gc-3\\/7\\@from-large{--gc-start: 3;--gc-end: 7}}@media(max-width: 1199px){.u-gc-3\\/7\\@to-large{--gc-start: 3;--gc-end: 7}}@media(min-width: 1200px){.u-gc-3\\/8\\@from-large{--gc-start: 3;--gc-end: 8}}@media(max-width: 1199px){.u-gc-3\\/8\\@to-large{--gc-start: 3;--gc-end: 8}}@media(min-width: 1200px){.u-gc-3\\/9\\@from-large{--gc-start: 3;--gc-end: 9}}@media(max-width: 1199px){.u-gc-3\\/9\\@to-large{--gc-start: 3;--gc-end: 9}}@media(min-width: 1200px){.u-gc-3\\/10\\@from-large{--gc-start: 3;--gc-end: 10}}@media(max-width: 1199px){.u-gc-3\\/10\\@to-large{--gc-start: 3;--gc-end: 10}}@media(min-width: 1200px){.u-gc-3\\/11\\@from-large{--gc-start: 3;--gc-end: 11}}@media(max-width: 1199px){.u-gc-3\\/11\\@to-large{--gc-start: 3;--gc-end: 11}}@media(min-width: 1200px){.u-gc-3\\/12\\@from-large{--gc-start: 3;--gc-end: 12}}@media(max-width: 1199px){.u-gc-3\\/12\\@to-large{--gc-start: 3;--gc-end: 12}}@media(min-width: 1200px){.u-gc-3\\/13\\@from-large{--gc-start: 3;--gc-end: 13}}@media(max-width: 1199px){.u-gc-3\\/13\\@to-large{--gc-start: 3;--gc-end: 13}}@media(min-width: 1200px){.u-gc-4\\/1\\@from-large{--gc-start: 4;--gc-end: 1}}@media(max-width: 1199px){.u-gc-4\\/1\\@to-large{--gc-start: 4;--gc-end: 1}}@media(min-width: 1200px){.u-gc-4\\/2\\@from-large{--gc-start: 4;--gc-end: 2}}@media(max-width: 1199px){.u-gc-4\\/2\\@to-large{--gc-start: 4;--gc-end: 2}}@media(min-width: 1200px){.u-gc-4\\/3\\@from-large{--gc-start: 4;--gc-end: 3}}@media(max-width: 1199px){.u-gc-4\\/3\\@to-large{--gc-start: 4;--gc-end: 3}}@media(min-width: 1200px){.u-gc-4\\/4\\@from-large{--gc-start: 4;--gc-end: 4}}@media(max-width: 1199px){.u-gc-4\\/4\\@to-large{--gc-start: 4;--gc-end: 4}}@media(min-width: 1200px){.u-gc-4\\/5\\@from-large{--gc-start: 4;--gc-end: 5}}@media(max-width: 1199px){.u-gc-4\\/5\\@to-large{--gc-start: 4;--gc-end: 5}}@media(min-width: 1200px){.u-gc-4\\/6\\@from-large{--gc-start: 4;--gc-end: 6}}@media(max-width: 1199px){.u-gc-4\\/6\\@to-large{--gc-start: 4;--gc-end: 6}}@media(min-width: 1200px){.u-gc-4\\/7\\@from-large{--gc-start: 4;--gc-end: 7}}@media(max-width: 1199px){.u-gc-4\\/7\\@to-large{--gc-start: 4;--gc-end: 7}}@media(min-width: 1200px){.u-gc-4\\/8\\@from-large{--gc-start: 4;--gc-end: 8}}@media(max-width: 1199px){.u-gc-4\\/8\\@to-large{--gc-start: 4;--gc-end: 8}}@media(min-width: 1200px){.u-gc-4\\/9\\@from-large{--gc-start: 4;--gc-end: 9}}@media(max-width: 1199px){.u-gc-4\\/9\\@to-large{--gc-start: 4;--gc-end: 9}}@media(min-width: 1200px){.u-gc-4\\/10\\@from-large{--gc-start: 4;--gc-end: 10}}@media(max-width: 1199px){.u-gc-4\\/10\\@to-large{--gc-start: 4;--gc-end: 10}}@media(min-width: 1200px){.u-gc-4\\/11\\@from-large{--gc-start: 4;--gc-end: 11}}@media(max-width: 1199px){.u-gc-4\\/11\\@to-large{--gc-start: 4;--gc-end: 11}}@media(min-width: 1200px){.u-gc-4\\/12\\@from-large{--gc-start: 4;--gc-end: 12}}@media(max-width: 1199px){.u-gc-4\\/12\\@to-large{--gc-start: 4;--gc-end: 12}}@media(min-width: 1200px){.u-gc-4\\/13\\@from-large{--gc-start: 4;--gc-end: 13}}@media(max-width: 1199px){.u-gc-4\\/13\\@to-large{--gc-start: 4;--gc-end: 13}}@media(min-width: 1200px){.u-gc-5\\/1\\@from-large{--gc-start: 5;--gc-end: 1}}@media(max-width: 1199px){.u-gc-5\\/1\\@to-large{--gc-start: 5;--gc-end: 1}}@media(min-width: 1200px){.u-gc-5\\/2\\@from-large{--gc-start: 5;--gc-end: 2}}@media(max-width: 1199px){.u-gc-5\\/2\\@to-large{--gc-start: 5;--gc-end: 2}}@media(min-width: 1200px){.u-gc-5\\/3\\@from-large{--gc-start: 5;--gc-end: 3}}@media(max-width: 1199px){.u-gc-5\\/3\\@to-large{--gc-start: 5;--gc-end: 3}}@media(min-width: 1200px){.u-gc-5\\/4\\@from-large{--gc-start: 5;--gc-end: 4}}@media(max-width: 1199px){.u-gc-5\\/4\\@to-large{--gc-start: 5;--gc-end: 4}}@media(min-width: 1200px){.u-gc-5\\/5\\@from-large{--gc-start: 5;--gc-end: 5}}@media(max-width: 1199px){.u-gc-5\\/5\\@to-large{--gc-start: 5;--gc-end: 5}}@media(min-width: 1200px){.u-gc-5\\/6\\@from-large{--gc-start: 5;--gc-end: 6}}@media(max-width: 1199px){.u-gc-5\\/6\\@to-large{--gc-start: 5;--gc-end: 6}}@media(min-width: 1200px){.u-gc-5\\/7\\@from-large{--gc-start: 5;--gc-end: 7}}@media(max-width: 1199px){.u-gc-5\\/7\\@to-large{--gc-start: 5;--gc-end: 7}}@media(min-width: 1200px){.u-gc-5\\/8\\@from-large{--gc-start: 5;--gc-end: 8}}@media(max-width: 1199px){.u-gc-5\\/8\\@to-large{--gc-start: 5;--gc-end: 8}}@media(min-width: 1200px){.u-gc-5\\/9\\@from-large{--gc-start: 5;--gc-end: 9}}@media(max-width: 1199px){.u-gc-5\\/9\\@to-large{--gc-start: 5;--gc-end: 9}}@media(min-width: 1200px){.u-gc-5\\/10\\@from-large{--gc-start: 5;--gc-end: 10}}@media(max-width: 1199px){.u-gc-5\\/10\\@to-large{--gc-start: 5;--gc-end: 10}}@media(min-width: 1200px){.u-gc-5\\/11\\@from-large{--gc-start: 5;--gc-end: 11}}@media(max-width: 1199px){.u-gc-5\\/11\\@to-large{--gc-start: 5;--gc-end: 11}}@media(min-width: 1200px){.u-gc-5\\/12\\@from-large{--gc-start: 5;--gc-end: 12}}@media(max-width: 1199px){.u-gc-5\\/12\\@to-large{--gc-start: 5;--gc-end: 12}}@media(min-width: 1200px){.u-gc-5\\/13\\@from-large{--gc-start: 5;--gc-end: 13}}@media(max-width: 1199px){.u-gc-5\\/13\\@to-large{--gc-start: 5;--gc-end: 13}}@media(min-width: 1200px){.u-gc-6\\/1\\@from-large{--gc-start: 6;--gc-end: 1}}@media(max-width: 1199px){.u-gc-6\\/1\\@to-large{--gc-start: 6;--gc-end: 1}}@media(min-width: 1200px){.u-gc-6\\/2\\@from-large{--gc-start: 6;--gc-end: 2}}@media(max-width: 1199px){.u-gc-6\\/2\\@to-large{--gc-start: 6;--gc-end: 2}}@media(min-width: 1200px){.u-gc-6\\/3\\@from-large{--gc-start: 6;--gc-end: 3}}@media(max-width: 1199px){.u-gc-6\\/3\\@to-large{--gc-start: 6;--gc-end: 3}}@media(min-width: 1200px){.u-gc-6\\/4\\@from-large{--gc-start: 6;--gc-end: 4}}@media(max-width: 1199px){.u-gc-6\\/4\\@to-large{--gc-start: 6;--gc-end: 4}}@media(min-width: 1200px){.u-gc-6\\/5\\@from-large{--gc-start: 6;--gc-end: 5}}@media(max-width: 1199px){.u-gc-6\\/5\\@to-large{--gc-start: 6;--gc-end: 5}}@media(min-width: 1200px){.u-gc-6\\/6\\@from-large{--gc-start: 6;--gc-end: 6}}@media(max-width: 1199px){.u-gc-6\\/6\\@to-large{--gc-start: 6;--gc-end: 6}}@media(min-width: 1200px){.u-gc-6\\/7\\@from-large{--gc-start: 6;--gc-end: 7}}@media(max-width: 1199px){.u-gc-6\\/7\\@to-large{--gc-start: 6;--gc-end: 7}}@media(min-width: 1200px){.u-gc-6\\/8\\@from-large{--gc-start: 6;--gc-end: 8}}@media(max-width: 1199px){.u-gc-6\\/8\\@to-large{--gc-start: 6;--gc-end: 8}}@media(min-width: 1200px){.u-gc-6\\/9\\@from-large{--gc-start: 6;--gc-end: 9}}@media(max-width: 1199px){.u-gc-6\\/9\\@to-large{--gc-start: 6;--gc-end: 9}}@media(min-width: 1200px){.u-gc-6\\/10\\@from-large{--gc-start: 6;--gc-end: 10}}@media(max-width: 1199px){.u-gc-6\\/10\\@to-large{--gc-start: 6;--gc-end: 10}}@media(min-width: 1200px){.u-gc-6\\/11\\@from-large{--gc-start: 6;--gc-end: 11}}@media(max-width: 1199px){.u-gc-6\\/11\\@to-large{--gc-start: 6;--gc-end: 11}}@media(min-width: 1200px){.u-gc-6\\/12\\@from-large{--gc-start: 6;--gc-end: 12}}@media(max-width: 1199px){.u-gc-6\\/12\\@to-large{--gc-start: 6;--gc-end: 12}}@media(min-width: 1200px){.u-gc-6\\/13\\@from-large{--gc-start: 6;--gc-end: 13}}@media(max-width: 1199px){.u-gc-6\\/13\\@to-large{--gc-start: 6;--gc-end: 13}}@media(min-width: 1200px){.u-gc-7\\/1\\@from-large{--gc-start: 7;--gc-end: 1}}@media(max-width: 1199px){.u-gc-7\\/1\\@to-large{--gc-start: 7;--gc-end: 1}}@media(min-width: 1200px){.u-gc-7\\/2\\@from-large{--gc-start: 7;--gc-end: 2}}@media(max-width: 1199px){.u-gc-7\\/2\\@to-large{--gc-start: 7;--gc-end: 2}}@media(min-width: 1200px){.u-gc-7\\/3\\@from-large{--gc-start: 7;--gc-end: 3}}@media(max-width: 1199px){.u-gc-7\\/3\\@to-large{--gc-start: 7;--gc-end: 3}}@media(min-width: 1200px){.u-gc-7\\/4\\@from-large{--gc-start: 7;--gc-end: 4}}@media(max-width: 1199px){.u-gc-7\\/4\\@to-large{--gc-start: 7;--gc-end: 4}}@media(min-width: 1200px){.u-gc-7\\/5\\@from-large{--gc-start: 7;--gc-end: 5}}@media(max-width: 1199px){.u-gc-7\\/5\\@to-large{--gc-start: 7;--gc-end: 5}}@media(min-width: 1200px){.u-gc-7\\/6\\@from-large{--gc-start: 7;--gc-end: 6}}@media(max-width: 1199px){.u-gc-7\\/6\\@to-large{--gc-start: 7;--gc-end: 6}}@media(min-width: 1200px){.u-gc-7\\/7\\@from-large{--gc-start: 7;--gc-end: 7}}@media(max-width: 1199px){.u-gc-7\\/7\\@to-large{--gc-start: 7;--gc-end: 7}}@media(min-width: 1200px){.u-gc-7\\/8\\@from-large{--gc-start: 7;--gc-end: 8}}@media(max-width: 1199px){.u-gc-7\\/8\\@to-large{--gc-start: 7;--gc-end: 8}}@media(min-width: 1200px){.u-gc-7\\/9\\@from-large{--gc-start: 7;--gc-end: 9}}@media(max-width: 1199px){.u-gc-7\\/9\\@to-large{--gc-start: 7;--gc-end: 9}}@media(min-width: 1200px){.u-gc-7\\/10\\@from-large{--gc-start: 7;--gc-end: 10}}@media(max-width: 1199px){.u-gc-7\\/10\\@to-large{--gc-start: 7;--gc-end: 10}}@media(min-width: 1200px){.u-gc-7\\/11\\@from-large{--gc-start: 7;--gc-end: 11}}@media(max-width: 1199px){.u-gc-7\\/11\\@to-large{--gc-start: 7;--gc-end: 11}}@media(min-width: 1200px){.u-gc-7\\/12\\@from-large{--gc-start: 7;--gc-end: 12}}@media(max-width: 1199px){.u-gc-7\\/12\\@to-large{--gc-start: 7;--gc-end: 12}}@media(min-width: 1200px){.u-gc-7\\/13\\@from-large{--gc-start: 7;--gc-end: 13}}@media(max-width: 1199px){.u-gc-7\\/13\\@to-large{--gc-start: 7;--gc-end: 13}}@media(min-width: 1200px){.u-gc-8\\/1\\@from-large{--gc-start: 8;--gc-end: 1}}@media(max-width: 1199px){.u-gc-8\\/1\\@to-large{--gc-start: 8;--gc-end: 1}}@media(min-width: 1200px){.u-gc-8\\/2\\@from-large{--gc-start: 8;--gc-end: 2}}@media(max-width: 1199px){.u-gc-8\\/2\\@to-large{--gc-start: 8;--gc-end: 2}}@media(min-width: 1200px){.u-gc-8\\/3\\@from-large{--gc-start: 8;--gc-end: 3}}@media(max-width: 1199px){.u-gc-8\\/3\\@to-large{--gc-start: 8;--gc-end: 3}}@media(min-width: 1200px){.u-gc-8\\/4\\@from-large{--gc-start: 8;--gc-end: 4}}@media(max-width: 1199px){.u-gc-8\\/4\\@to-large{--gc-start: 8;--gc-end: 4}}@media(min-width: 1200px){.u-gc-8\\/5\\@from-large{--gc-start: 8;--gc-end: 5}}@media(max-width: 1199px){.u-gc-8\\/5\\@to-large{--gc-start: 8;--gc-end: 5}}@media(min-width: 1200px){.u-gc-8\\/6\\@from-large{--gc-start: 8;--gc-end: 6}}@media(max-width: 1199px){.u-gc-8\\/6\\@to-large{--gc-start: 8;--gc-end: 6}}@media(min-width: 1200px){.u-gc-8\\/7\\@from-large{--gc-start: 8;--gc-end: 7}}@media(max-width: 1199px){.u-gc-8\\/7\\@to-large{--gc-start: 8;--gc-end: 7}}@media(min-width: 1200px){.u-gc-8\\/8\\@from-large{--gc-start: 8;--gc-end: 8}}@media(max-width: 1199px){.u-gc-8\\/8\\@to-large{--gc-start: 8;--gc-end: 8}}@media(min-width: 1200px){.u-gc-8\\/9\\@from-large{--gc-start: 8;--gc-end: 9}}@media(max-width: 1199px){.u-gc-8\\/9\\@to-large{--gc-start: 8;--gc-end: 9}}@media(min-width: 1200px){.u-gc-8\\/10\\@from-large{--gc-start: 8;--gc-end: 10}}@media(max-width: 1199px){.u-gc-8\\/10\\@to-large{--gc-start: 8;--gc-end: 10}}@media(min-width: 1200px){.u-gc-8\\/11\\@from-large{--gc-start: 8;--gc-end: 11}}@media(max-width: 1199px){.u-gc-8\\/11\\@to-large{--gc-start: 8;--gc-end: 11}}@media(min-width: 1200px){.u-gc-8\\/12\\@from-large{--gc-start: 8;--gc-end: 12}}@media(max-width: 1199px){.u-gc-8\\/12\\@to-large{--gc-start: 8;--gc-end: 12}}@media(min-width: 1200px){.u-gc-8\\/13\\@from-large{--gc-start: 8;--gc-end: 13}}@media(max-width: 1199px){.u-gc-8\\/13\\@to-large{--gc-start: 8;--gc-end: 13}}@media(min-width: 1200px){.u-gc-9\\/1\\@from-large{--gc-start: 9;--gc-end: 1}}@media(max-width: 1199px){.u-gc-9\\/1\\@to-large{--gc-start: 9;--gc-end: 1}}@media(min-width: 1200px){.u-gc-9\\/2\\@from-large{--gc-start: 9;--gc-end: 2}}@media(max-width: 1199px){.u-gc-9\\/2\\@to-large{--gc-start: 9;--gc-end: 2}}@media(min-width: 1200px){.u-gc-9\\/3\\@from-large{--gc-start: 9;--gc-end: 3}}@media(max-width: 1199px){.u-gc-9\\/3\\@to-large{--gc-start: 9;--gc-end: 3}}@media(min-width: 1200px){.u-gc-9\\/4\\@from-large{--gc-start: 9;--gc-end: 4}}@media(max-width: 1199px){.u-gc-9\\/4\\@to-large{--gc-start: 9;--gc-end: 4}}@media(min-width: 1200px){.u-gc-9\\/5\\@from-large{--gc-start: 9;--gc-end: 5}}@media(max-width: 1199px){.u-gc-9\\/5\\@to-large{--gc-start: 9;--gc-end: 5}}@media(min-width: 1200px){.u-gc-9\\/6\\@from-large{--gc-start: 9;--gc-end: 6}}@media(max-width: 1199px){.u-gc-9\\/6\\@to-large{--gc-start: 9;--gc-end: 6}}@media(min-width: 1200px){.u-gc-9\\/7\\@from-large{--gc-start: 9;--gc-end: 7}}@media(max-width: 1199px){.u-gc-9\\/7\\@to-large{--gc-start: 9;--gc-end: 7}}@media(min-width: 1200px){.u-gc-9\\/8\\@from-large{--gc-start: 9;--gc-end: 8}}@media(max-width: 1199px){.u-gc-9\\/8\\@to-large{--gc-start: 9;--gc-end: 8}}@media(min-width: 1200px){.u-gc-9\\/9\\@from-large{--gc-start: 9;--gc-end: 9}}@media(max-width: 1199px){.u-gc-9\\/9\\@to-large{--gc-start: 9;--gc-end: 9}}@media(min-width: 1200px){.u-gc-9\\/10\\@from-large{--gc-start: 9;--gc-end: 10}}@media(max-width: 1199px){.u-gc-9\\/10\\@to-large{--gc-start: 9;--gc-end: 10}}@media(min-width: 1200px){.u-gc-9\\/11\\@from-large{--gc-start: 9;--gc-end: 11}}@media(max-width: 1199px){.u-gc-9\\/11\\@to-large{--gc-start: 9;--gc-end: 11}}@media(min-width: 1200px){.u-gc-9\\/12\\@from-large{--gc-start: 9;--gc-end: 12}}@media(max-width: 1199px){.u-gc-9\\/12\\@to-large{--gc-start: 9;--gc-end: 12}}@media(min-width: 1200px){.u-gc-9\\/13\\@from-large{--gc-start: 9;--gc-end: 13}}@media(max-width: 1199px){.u-gc-9\\/13\\@to-large{--gc-start: 9;--gc-end: 13}}@media(min-width: 1200px){.u-gc-10\\/1\\@from-large{--gc-start: 10;--gc-end: 1}}@media(max-width: 1199px){.u-gc-10\\/1\\@to-large{--gc-start: 10;--gc-end: 1}}@media(min-width: 1200px){.u-gc-10\\/2\\@from-large{--gc-start: 10;--gc-end: 2}}@media(max-width: 1199px){.u-gc-10\\/2\\@to-large{--gc-start: 10;--gc-end: 2}}@media(min-width: 1200px){.u-gc-10\\/3\\@from-large{--gc-start: 10;--gc-end: 3}}@media(max-width: 1199px){.u-gc-10\\/3\\@to-large{--gc-start: 10;--gc-end: 3}}@media(min-width: 1200px){.u-gc-10\\/4\\@from-large{--gc-start: 10;--gc-end: 4}}@media(max-width: 1199px){.u-gc-10\\/4\\@to-large{--gc-start: 10;--gc-end: 4}}@media(min-width: 1200px){.u-gc-10\\/5\\@from-large{--gc-start: 10;--gc-end: 5}}@media(max-width: 1199px){.u-gc-10\\/5\\@to-large{--gc-start: 10;--gc-end: 5}}@media(min-width: 1200px){.u-gc-10\\/6\\@from-large{--gc-start: 10;--gc-end: 6}}@media(max-width: 1199px){.u-gc-10\\/6\\@to-large{--gc-start: 10;--gc-end: 6}}@media(min-width: 1200px){.u-gc-10\\/7\\@from-large{--gc-start: 10;--gc-end: 7}}@media(max-width: 1199px){.u-gc-10\\/7\\@to-large{--gc-start: 10;--gc-end: 7}}@media(min-width: 1200px){.u-gc-10\\/8\\@from-large{--gc-start: 10;--gc-end: 8}}@media(max-width: 1199px){.u-gc-10\\/8\\@to-large{--gc-start: 10;--gc-end: 8}}@media(min-width: 1200px){.u-gc-10\\/9\\@from-large{--gc-start: 10;--gc-end: 9}}@media(max-width: 1199px){.u-gc-10\\/9\\@to-large{--gc-start: 10;--gc-end: 9}}@media(min-width: 1200px){.u-gc-10\\/10\\@from-large{--gc-start: 10;--gc-end: 10}}@media(max-width: 1199px){.u-gc-10\\/10\\@to-large{--gc-start: 10;--gc-end: 10}}@media(min-width: 1200px){.u-gc-10\\/11\\@from-large{--gc-start: 10;--gc-end: 11}}@media(max-width: 1199px){.u-gc-10\\/11\\@to-large{--gc-start: 10;--gc-end: 11}}@media(min-width: 1200px){.u-gc-10\\/12\\@from-large{--gc-start: 10;--gc-end: 12}}@media(max-width: 1199px){.u-gc-10\\/12\\@to-large{--gc-start: 10;--gc-end: 12}}@media(min-width: 1200px){.u-gc-10\\/13\\@from-large{--gc-start: 10;--gc-end: 13}}@media(max-width: 1199px){.u-gc-10\\/13\\@to-large{--gc-start: 10;--gc-end: 13}}@media(min-width: 1200px){.u-gc-11\\/1\\@from-large{--gc-start: 11;--gc-end: 1}}@media(max-width: 1199px){.u-gc-11\\/1\\@to-large{--gc-start: 11;--gc-end: 1}}@media(min-width: 1200px){.u-gc-11\\/2\\@from-large{--gc-start: 11;--gc-end: 2}}@media(max-width: 1199px){.u-gc-11\\/2\\@to-large{--gc-start: 11;--gc-end: 2}}@media(min-width: 1200px){.u-gc-11\\/3\\@from-large{--gc-start: 11;--gc-end: 3}}@media(max-width: 1199px){.u-gc-11\\/3\\@to-large{--gc-start: 11;--gc-end: 3}}@media(min-width: 1200px){.u-gc-11\\/4\\@from-large{--gc-start: 11;--gc-end: 4}}@media(max-width: 1199px){.u-gc-11\\/4\\@to-large{--gc-start: 11;--gc-end: 4}}@media(min-width: 1200px){.u-gc-11\\/5\\@from-large{--gc-start: 11;--gc-end: 5}}@media(max-width: 1199px){.u-gc-11\\/5\\@to-large{--gc-start: 11;--gc-end: 5}}@media(min-width: 1200px){.u-gc-11\\/6\\@from-large{--gc-start: 11;--gc-end: 6}}@media(max-width: 1199px){.u-gc-11\\/6\\@to-large{--gc-start: 11;--gc-end: 6}}@media(min-width: 1200px){.u-gc-11\\/7\\@from-large{--gc-start: 11;--gc-end: 7}}@media(max-width: 1199px){.u-gc-11\\/7\\@to-large{--gc-start: 11;--gc-end: 7}}@media(min-width: 1200px){.u-gc-11\\/8\\@from-large{--gc-start: 11;--gc-end: 8}}@media(max-width: 1199px){.u-gc-11\\/8\\@to-large{--gc-start: 11;--gc-end: 8}}@media(min-width: 1200px){.u-gc-11\\/9\\@from-large{--gc-start: 11;--gc-end: 9}}@media(max-width: 1199px){.u-gc-11\\/9\\@to-large{--gc-start: 11;--gc-end: 9}}@media(min-width: 1200px){.u-gc-11\\/10\\@from-large{--gc-start: 11;--gc-end: 10}}@media(max-width: 1199px){.u-gc-11\\/10\\@to-large{--gc-start: 11;--gc-end: 10}}@media(min-width: 1200px){.u-gc-11\\/11\\@from-large{--gc-start: 11;--gc-end: 11}}@media(max-width: 1199px){.u-gc-11\\/11\\@to-large{--gc-start: 11;--gc-end: 11}}@media(min-width: 1200px){.u-gc-11\\/12\\@from-large{--gc-start: 11;--gc-end: 12}}@media(max-width: 1199px){.u-gc-11\\/12\\@to-large{--gc-start: 11;--gc-end: 12}}@media(min-width: 1200px){.u-gc-11\\/13\\@from-large{--gc-start: 11;--gc-end: 13}}@media(max-width: 1199px){.u-gc-11\\/13\\@to-large{--gc-start: 11;--gc-end: 13}}@media(min-width: 1200px){.u-gc-12\\/1\\@from-large{--gc-start: 12;--gc-end: 1}}@media(max-width: 1199px){.u-gc-12\\/1\\@to-large{--gc-start: 12;--gc-end: 1}}@media(min-width: 1200px){.u-gc-12\\/2\\@from-large{--gc-start: 12;--gc-end: 2}}@media(max-width: 1199px){.u-gc-12\\/2\\@to-large{--gc-start: 12;--gc-end: 2}}@media(min-width: 1200px){.u-gc-12\\/3\\@from-large{--gc-start: 12;--gc-end: 3}}@media(max-width: 1199px){.u-gc-12\\/3\\@to-large{--gc-start: 12;--gc-end: 3}}@media(min-width: 1200px){.u-gc-12\\/4\\@from-large{--gc-start: 12;--gc-end: 4}}@media(max-width: 1199px){.u-gc-12\\/4\\@to-large{--gc-start: 12;--gc-end: 4}}@media(min-width: 1200px){.u-gc-12\\/5\\@from-large{--gc-start: 12;--gc-end: 5}}@media(max-width: 1199px){.u-gc-12\\/5\\@to-large{--gc-start: 12;--gc-end: 5}}@media(min-width: 1200px){.u-gc-12\\/6\\@from-large{--gc-start: 12;--gc-end: 6}}@media(max-width: 1199px){.u-gc-12\\/6\\@to-large{--gc-start: 12;--gc-end: 6}}@media(min-width: 1200px){.u-gc-12\\/7\\@from-large{--gc-start: 12;--gc-end: 7}}@media(max-width: 1199px){.u-gc-12\\/7\\@to-large{--gc-start: 12;--gc-end: 7}}@media(min-width: 1200px){.u-gc-12\\/8\\@from-large{--gc-start: 12;--gc-end: 8}}@media(max-width: 1199px){.u-gc-12\\/8\\@to-large{--gc-start: 12;--gc-end: 8}}@media(min-width: 1200px){.u-gc-12\\/9\\@from-large{--gc-start: 12;--gc-end: 9}}@media(max-width: 1199px){.u-gc-12\\/9\\@to-large{--gc-start: 12;--gc-end: 9}}@media(min-width: 1200px){.u-gc-12\\/10\\@from-large{--gc-start: 12;--gc-end: 10}}@media(max-width: 1199px){.u-gc-12\\/10\\@to-large{--gc-start: 12;--gc-end: 10}}@media(min-width: 1200px){.u-gc-12\\/11\\@from-large{--gc-start: 12;--gc-end: 11}}@media(max-width: 1199px){.u-gc-12\\/11\\@to-large{--gc-start: 12;--gc-end: 11}}@media(min-width: 1200px){.u-gc-12\\/12\\@from-large{--gc-start: 12;--gc-end: 12}}@media(max-width: 1199px){.u-gc-12\\/12\\@to-large{--gc-start: 12;--gc-end: 12}}@media(min-width: 1200px){.u-gc-12\\/13\\@from-large{--gc-start: 12;--gc-end: 13}}@media(max-width: 1199px){.u-gc-12\\/13\\@to-large{--gc-start: 12;--gc-end: 13}}@media(min-width: 1200px){.u-gc-13\\/1\\@from-large{--gc-start: 13;--gc-end: 1}}@media(max-width: 1199px){.u-gc-13\\/1\\@to-large{--gc-start: 13;--gc-end: 1}}@media(min-width: 1200px){.u-gc-13\\/2\\@from-large{--gc-start: 13;--gc-end: 2}}@media(max-width: 1199px){.u-gc-13\\/2\\@to-large{--gc-start: 13;--gc-end: 2}}@media(min-width: 1200px){.u-gc-13\\/3\\@from-large{--gc-start: 13;--gc-end: 3}}@media(max-width: 1199px){.u-gc-13\\/3\\@to-large{--gc-start: 13;--gc-end: 3}}@media(min-width: 1200px){.u-gc-13\\/4\\@from-large{--gc-start: 13;--gc-end: 4}}@media(max-width: 1199px){.u-gc-13\\/4\\@to-large{--gc-start: 13;--gc-end: 4}}@media(min-width: 1200px){.u-gc-13\\/5\\@from-large{--gc-start: 13;--gc-end: 5}}@media(max-width: 1199px){.u-gc-13\\/5\\@to-large{--gc-start: 13;--gc-end: 5}}@media(min-width: 1200px){.u-gc-13\\/6\\@from-large{--gc-start: 13;--gc-end: 6}}@media(max-width: 1199px){.u-gc-13\\/6\\@to-large{--gc-start: 13;--gc-end: 6}}@media(min-width: 1200px){.u-gc-13\\/7\\@from-large{--gc-start: 13;--gc-end: 7}}@media(max-width: 1199px){.u-gc-13\\/7\\@to-large{--gc-start: 13;--gc-end: 7}}@media(min-width: 1200px){.u-gc-13\\/8\\@from-large{--gc-start: 13;--gc-end: 8}}@media(max-width: 1199px){.u-gc-13\\/8\\@to-large{--gc-start: 13;--gc-end: 8}}@media(min-width: 1200px){.u-gc-13\\/9\\@from-large{--gc-start: 13;--gc-end: 9}}@media(max-width: 1199px){.u-gc-13\\/9\\@to-large{--gc-start: 13;--gc-end: 9}}@media(min-width: 1200px){.u-gc-13\\/10\\@from-large{--gc-start: 13;--gc-end: 10}}@media(max-width: 1199px){.u-gc-13\\/10\\@to-large{--gc-start: 13;--gc-end: 10}}@media(min-width: 1200px){.u-gc-13\\/11\\@from-large{--gc-start: 13;--gc-end: 11}}@media(max-width: 1199px){.u-gc-13\\/11\\@to-large{--gc-start: 13;--gc-end: 11}}@media(min-width: 1200px){.u-gc-13\\/12\\@from-large{--gc-start: 13;--gc-end: 12}}@media(max-width: 1199px){.u-gc-13\\/12\\@to-large{--gc-start: 13;--gc-end: 12}}@media(min-width: 1200px){.u-gc-13\\/13\\@from-large{--gc-start: 13;--gc-end: 13}}@media(max-width: 1199px){.u-gc-13\\/13\\@to-large{--gc-start: 13;--gc-end: 13}}@media(min-width: 1400px){.u-gc-1\\/1\\@from-big{--gc-start: 1;--gc-end: 1}}@media(max-width: 1399px){.u-gc-1\\/1\\@to-big{--gc-start: 1;--gc-end: 1}}@media(min-width: 1400px){.u-gc-1\\/2\\@from-big{--gc-start: 1;--gc-end: 2}}@media(max-width: 1399px){.u-gc-1\\/2\\@to-big{--gc-start: 1;--gc-end: 2}}@media(min-width: 1400px){.u-gc-1\\/3\\@from-big{--gc-start: 1;--gc-end: 3}}@media(max-width: 1399px){.u-gc-1\\/3\\@to-big{--gc-start: 1;--gc-end: 3}}@media(min-width: 1400px){.u-gc-1\\/4\\@from-big{--gc-start: 1;--gc-end: 4}}@media(max-width: 1399px){.u-gc-1\\/4\\@to-big{--gc-start: 1;--gc-end: 4}}@media(min-width: 1400px){.u-gc-1\\/5\\@from-big{--gc-start: 1;--gc-end: 5}}@media(max-width: 1399px){.u-gc-1\\/5\\@to-big{--gc-start: 1;--gc-end: 5}}@media(min-width: 1400px){.u-gc-1\\/6\\@from-big{--gc-start: 1;--gc-end: 6}}@media(max-width: 1399px){.u-gc-1\\/6\\@to-big{--gc-start: 1;--gc-end: 6}}@media(min-width: 1400px){.u-gc-1\\/7\\@from-big{--gc-start: 1;--gc-end: 7}}@media(max-width: 1399px){.u-gc-1\\/7\\@to-big{--gc-start: 1;--gc-end: 7}}@media(min-width: 1400px){.u-gc-1\\/8\\@from-big{--gc-start: 1;--gc-end: 8}}@media(max-width: 1399px){.u-gc-1\\/8\\@to-big{--gc-start: 1;--gc-end: 8}}@media(min-width: 1400px){.u-gc-1\\/9\\@from-big{--gc-start: 1;--gc-end: 9}}@media(max-width: 1399px){.u-gc-1\\/9\\@to-big{--gc-start: 1;--gc-end: 9}}@media(min-width: 1400px){.u-gc-1\\/10\\@from-big{--gc-start: 1;--gc-end: 10}}@media(max-width: 1399px){.u-gc-1\\/10\\@to-big{--gc-start: 1;--gc-end: 10}}@media(min-width: 1400px){.u-gc-1\\/11\\@from-big{--gc-start: 1;--gc-end: 11}}@media(max-width: 1399px){.u-gc-1\\/11\\@to-big{--gc-start: 1;--gc-end: 11}}@media(min-width: 1400px){.u-gc-1\\/12\\@from-big{--gc-start: 1;--gc-end: 12}}@media(max-width: 1399px){.u-gc-1\\/12\\@to-big{--gc-start: 1;--gc-end: 12}}@media(min-width: 1400px){.u-gc-1\\/13\\@from-big{--gc-start: 1;--gc-end: 13}}@media(max-width: 1399px){.u-gc-1\\/13\\@to-big{--gc-start: 1;--gc-end: 13}}@media(min-width: 1400px){.u-gc-2\\/1\\@from-big{--gc-start: 2;--gc-end: 1}}@media(max-width: 1399px){.u-gc-2\\/1\\@to-big{--gc-start: 2;--gc-end: 1}}@media(min-width: 1400px){.u-gc-2\\/2\\@from-big{--gc-start: 2;--gc-end: 2}}@media(max-width: 1399px){.u-gc-2\\/2\\@to-big{--gc-start: 2;--gc-end: 2}}@media(min-width: 1400px){.u-gc-2\\/3\\@from-big{--gc-start: 2;--gc-end: 3}}@media(max-width: 1399px){.u-gc-2\\/3\\@to-big{--gc-start: 2;--gc-end: 3}}@media(min-width: 1400px){.u-gc-2\\/4\\@from-big{--gc-start: 2;--gc-end: 4}}@media(max-width: 1399px){.u-gc-2\\/4\\@to-big{--gc-start: 2;--gc-end: 4}}@media(min-width: 1400px){.u-gc-2\\/5\\@from-big{--gc-start: 2;--gc-end: 5}}@media(max-width: 1399px){.u-gc-2\\/5\\@to-big{--gc-start: 2;--gc-end: 5}}@media(min-width: 1400px){.u-gc-2\\/6\\@from-big{--gc-start: 2;--gc-end: 6}}@media(max-width: 1399px){.u-gc-2\\/6\\@to-big{--gc-start: 2;--gc-end: 6}}@media(min-width: 1400px){.u-gc-2\\/7\\@from-big{--gc-start: 2;--gc-end: 7}}@media(max-width: 1399px){.u-gc-2\\/7\\@to-big{--gc-start: 2;--gc-end: 7}}@media(min-width: 1400px){.u-gc-2\\/8\\@from-big{--gc-start: 2;--gc-end: 8}}@media(max-width: 1399px){.u-gc-2\\/8\\@to-big{--gc-start: 2;--gc-end: 8}}@media(min-width: 1400px){.u-gc-2\\/9\\@from-big{--gc-start: 2;--gc-end: 9}}@media(max-width: 1399px){.u-gc-2\\/9\\@to-big{--gc-start: 2;--gc-end: 9}}@media(min-width: 1400px){.u-gc-2\\/10\\@from-big{--gc-start: 2;--gc-end: 10}}@media(max-width: 1399px){.u-gc-2\\/10\\@to-big{--gc-start: 2;--gc-end: 10}}@media(min-width: 1400px){.u-gc-2\\/11\\@from-big{--gc-start: 2;--gc-end: 11}}@media(max-width: 1399px){.u-gc-2\\/11\\@to-big{--gc-start: 2;--gc-end: 11}}@media(min-width: 1400px){.u-gc-2\\/12\\@from-big{--gc-start: 2;--gc-end: 12}}@media(max-width: 1399px){.u-gc-2\\/12\\@to-big{--gc-start: 2;--gc-end: 12}}@media(min-width: 1400px){.u-gc-2\\/13\\@from-big{--gc-start: 2;--gc-end: 13}}@media(max-width: 1399px){.u-gc-2\\/13\\@to-big{--gc-start: 2;--gc-end: 13}}@media(min-width: 1400px){.u-gc-3\\/1\\@from-big{--gc-start: 3;--gc-end: 1}}@media(max-width: 1399px){.u-gc-3\\/1\\@to-big{--gc-start: 3;--gc-end: 1}}@media(min-width: 1400px){.u-gc-3\\/2\\@from-big{--gc-start: 3;--gc-end: 2}}@media(max-width: 1399px){.u-gc-3\\/2\\@to-big{--gc-start: 3;--gc-end: 2}}@media(min-width: 1400px){.u-gc-3\\/3\\@from-big{--gc-start: 3;--gc-end: 3}}@media(max-width: 1399px){.u-gc-3\\/3\\@to-big{--gc-start: 3;--gc-end: 3}}@media(min-width: 1400px){.u-gc-3\\/4\\@from-big{--gc-start: 3;--gc-end: 4}}@media(max-width: 1399px){.u-gc-3\\/4\\@to-big{--gc-start: 3;--gc-end: 4}}@media(min-width: 1400px){.u-gc-3\\/5\\@from-big{--gc-start: 3;--gc-end: 5}}@media(max-width: 1399px){.u-gc-3\\/5\\@to-big{--gc-start: 3;--gc-end: 5}}@media(min-width: 1400px){.u-gc-3\\/6\\@from-big{--gc-start: 3;--gc-end: 6}}@media(max-width: 1399px){.u-gc-3\\/6\\@to-big{--gc-start: 3;--gc-end: 6}}@media(min-width: 1400px){.u-gc-3\\/7\\@from-big{--gc-start: 3;--gc-end: 7}}@media(max-width: 1399px){.u-gc-3\\/7\\@to-big{--gc-start: 3;--gc-end: 7}}@media(min-width: 1400px){.u-gc-3\\/8\\@from-big{--gc-start: 3;--gc-end: 8}}@media(max-width: 1399px){.u-gc-3\\/8\\@to-big{--gc-start: 3;--gc-end: 8}}@media(min-width: 1400px){.u-gc-3\\/9\\@from-big{--gc-start: 3;--gc-end: 9}}@media(max-width: 1399px){.u-gc-3\\/9\\@to-big{--gc-start: 3;--gc-end: 9}}@media(min-width: 1400px){.u-gc-3\\/10\\@from-big{--gc-start: 3;--gc-end: 10}}@media(max-width: 1399px){.u-gc-3\\/10\\@to-big{--gc-start: 3;--gc-end: 10}}@media(min-width: 1400px){.u-gc-3\\/11\\@from-big{--gc-start: 3;--gc-end: 11}}@media(max-width: 1399px){.u-gc-3\\/11\\@to-big{--gc-start: 3;--gc-end: 11}}@media(min-width: 1400px){.u-gc-3\\/12\\@from-big{--gc-start: 3;--gc-end: 12}}@media(max-width: 1399px){.u-gc-3\\/12\\@to-big{--gc-start: 3;--gc-end: 12}}@media(min-width: 1400px){.u-gc-3\\/13\\@from-big{--gc-start: 3;--gc-end: 13}}@media(max-width: 1399px){.u-gc-3\\/13\\@to-big{--gc-start: 3;--gc-end: 13}}@media(min-width: 1400px){.u-gc-4\\/1\\@from-big{--gc-start: 4;--gc-end: 1}}@media(max-width: 1399px){.u-gc-4\\/1\\@to-big{--gc-start: 4;--gc-end: 1}}@media(min-width: 1400px){.u-gc-4\\/2\\@from-big{--gc-start: 4;--gc-end: 2}}@media(max-width: 1399px){.u-gc-4\\/2\\@to-big{--gc-start: 4;--gc-end: 2}}@media(min-width: 1400px){.u-gc-4\\/3\\@from-big{--gc-start: 4;--gc-end: 3}}@media(max-width: 1399px){.u-gc-4\\/3\\@to-big{--gc-start: 4;--gc-end: 3}}@media(min-width: 1400px){.u-gc-4\\/4\\@from-big{--gc-start: 4;--gc-end: 4}}@media(max-width: 1399px){.u-gc-4\\/4\\@to-big{--gc-start: 4;--gc-end: 4}}@media(min-width: 1400px){.u-gc-4\\/5\\@from-big{--gc-start: 4;--gc-end: 5}}@media(max-width: 1399px){.u-gc-4\\/5\\@to-big{--gc-start: 4;--gc-end: 5}}@media(min-width: 1400px){.u-gc-4\\/6\\@from-big{--gc-start: 4;--gc-end: 6}}@media(max-width: 1399px){.u-gc-4\\/6\\@to-big{--gc-start: 4;--gc-end: 6}}@media(min-width: 1400px){.u-gc-4\\/7\\@from-big{--gc-start: 4;--gc-end: 7}}@media(max-width: 1399px){.u-gc-4\\/7\\@to-big{--gc-start: 4;--gc-end: 7}}@media(min-width: 1400px){.u-gc-4\\/8\\@from-big{--gc-start: 4;--gc-end: 8}}@media(max-width: 1399px){.u-gc-4\\/8\\@to-big{--gc-start: 4;--gc-end: 8}}@media(min-width: 1400px){.u-gc-4\\/9\\@from-big{--gc-start: 4;--gc-end: 9}}@media(max-width: 1399px){.u-gc-4\\/9\\@to-big{--gc-start: 4;--gc-end: 9}}@media(min-width: 1400px){.u-gc-4\\/10\\@from-big{--gc-start: 4;--gc-end: 10}}@media(max-width: 1399px){.u-gc-4\\/10\\@to-big{--gc-start: 4;--gc-end: 10}}@media(min-width: 1400px){.u-gc-4\\/11\\@from-big{--gc-start: 4;--gc-end: 11}}@media(max-width: 1399px){.u-gc-4\\/11\\@to-big{--gc-start: 4;--gc-end: 11}}@media(min-width: 1400px){.u-gc-4\\/12\\@from-big{--gc-start: 4;--gc-end: 12}}@media(max-width: 1399px){.u-gc-4\\/12\\@to-big{--gc-start: 4;--gc-end: 12}}@media(min-width: 1400px){.u-gc-4\\/13\\@from-big{--gc-start: 4;--gc-end: 13}}@media(max-width: 1399px){.u-gc-4\\/13\\@to-big{--gc-start: 4;--gc-end: 13}}@media(min-width: 1400px){.u-gc-5\\/1\\@from-big{--gc-start: 5;--gc-end: 1}}@media(max-width: 1399px){.u-gc-5\\/1\\@to-big{--gc-start: 5;--gc-end: 1}}@media(min-width: 1400px){.u-gc-5\\/2\\@from-big{--gc-start: 5;--gc-end: 2}}@media(max-width: 1399px){.u-gc-5\\/2\\@to-big{--gc-start: 5;--gc-end: 2}}@media(min-width: 1400px){.u-gc-5\\/3\\@from-big{--gc-start: 5;--gc-end: 3}}@media(max-width: 1399px){.u-gc-5\\/3\\@to-big{--gc-start: 5;--gc-end: 3}}@media(min-width: 1400px){.u-gc-5\\/4\\@from-big{--gc-start: 5;--gc-end: 4}}@media(max-width: 1399px){.u-gc-5\\/4\\@to-big{--gc-start: 5;--gc-end: 4}}@media(min-width: 1400px){.u-gc-5\\/5\\@from-big{--gc-start: 5;--gc-end: 5}}@media(max-width: 1399px){.u-gc-5\\/5\\@to-big{--gc-start: 5;--gc-end: 5}}@media(min-width: 1400px){.u-gc-5\\/6\\@from-big{--gc-start: 5;--gc-end: 6}}@media(max-width: 1399px){.u-gc-5\\/6\\@to-big{--gc-start: 5;--gc-end: 6}}@media(min-width: 1400px){.u-gc-5\\/7\\@from-big{--gc-start: 5;--gc-end: 7}}@media(max-width: 1399px){.u-gc-5\\/7\\@to-big{--gc-start: 5;--gc-end: 7}}@media(min-width: 1400px){.u-gc-5\\/8\\@from-big{--gc-start: 5;--gc-end: 8}}@media(max-width: 1399px){.u-gc-5\\/8\\@to-big{--gc-start: 5;--gc-end: 8}}@media(min-width: 1400px){.u-gc-5\\/9\\@from-big{--gc-start: 5;--gc-end: 9}}@media(max-width: 1399px){.u-gc-5\\/9\\@to-big{--gc-start: 5;--gc-end: 9}}@media(min-width: 1400px){.u-gc-5\\/10\\@from-big{--gc-start: 5;--gc-end: 10}}@media(max-width: 1399px){.u-gc-5\\/10\\@to-big{--gc-start: 5;--gc-end: 10}}@media(min-width: 1400px){.u-gc-5\\/11\\@from-big{--gc-start: 5;--gc-end: 11}}@media(max-width: 1399px){.u-gc-5\\/11\\@to-big{--gc-start: 5;--gc-end: 11}}@media(min-width: 1400px){.u-gc-5\\/12\\@from-big{--gc-start: 5;--gc-end: 12}}@media(max-width: 1399px){.u-gc-5\\/12\\@to-big{--gc-start: 5;--gc-end: 12}}@media(min-width: 1400px){.u-gc-5\\/13\\@from-big{--gc-start: 5;--gc-end: 13}}@media(max-width: 1399px){.u-gc-5\\/13\\@to-big{--gc-start: 5;--gc-end: 13}}@media(min-width: 1400px){.u-gc-6\\/1\\@from-big{--gc-start: 6;--gc-end: 1}}@media(max-width: 1399px){.u-gc-6\\/1\\@to-big{--gc-start: 6;--gc-end: 1}}@media(min-width: 1400px){.u-gc-6\\/2\\@from-big{--gc-start: 6;--gc-end: 2}}@media(max-width: 1399px){.u-gc-6\\/2\\@to-big{--gc-start: 6;--gc-end: 2}}@media(min-width: 1400px){.u-gc-6\\/3\\@from-big{--gc-start: 6;--gc-end: 3}}@media(max-width: 1399px){.u-gc-6\\/3\\@to-big{--gc-start: 6;--gc-end: 3}}@media(min-width: 1400px){.u-gc-6\\/4\\@from-big{--gc-start: 6;--gc-end: 4}}@media(max-width: 1399px){.u-gc-6\\/4\\@to-big{--gc-start: 6;--gc-end: 4}}@media(min-width: 1400px){.u-gc-6\\/5\\@from-big{--gc-start: 6;--gc-end: 5}}@media(max-width: 1399px){.u-gc-6\\/5\\@to-big{--gc-start: 6;--gc-end: 5}}@media(min-width: 1400px){.u-gc-6\\/6\\@from-big{--gc-start: 6;--gc-end: 6}}@media(max-width: 1399px){.u-gc-6\\/6\\@to-big{--gc-start: 6;--gc-end: 6}}@media(min-width: 1400px){.u-gc-6\\/7\\@from-big{--gc-start: 6;--gc-end: 7}}@media(max-width: 1399px){.u-gc-6\\/7\\@to-big{--gc-start: 6;--gc-end: 7}}@media(min-width: 1400px){.u-gc-6\\/8\\@from-big{--gc-start: 6;--gc-end: 8}}@media(max-width: 1399px){.u-gc-6\\/8\\@to-big{--gc-start: 6;--gc-end: 8}}@media(min-width: 1400px){.u-gc-6\\/9\\@from-big{--gc-start: 6;--gc-end: 9}}@media(max-width: 1399px){.u-gc-6\\/9\\@to-big{--gc-start: 6;--gc-end: 9}}@media(min-width: 1400px){.u-gc-6\\/10\\@from-big{--gc-start: 6;--gc-end: 10}}@media(max-width: 1399px){.u-gc-6\\/10\\@to-big{--gc-start: 6;--gc-end: 10}}@media(min-width: 1400px){.u-gc-6\\/11\\@from-big{--gc-start: 6;--gc-end: 11}}@media(max-width: 1399px){.u-gc-6\\/11\\@to-big{--gc-start: 6;--gc-end: 11}}@media(min-width: 1400px){.u-gc-6\\/12\\@from-big{--gc-start: 6;--gc-end: 12}}@media(max-width: 1399px){.u-gc-6\\/12\\@to-big{--gc-start: 6;--gc-end: 12}}@media(min-width: 1400px){.u-gc-6\\/13\\@from-big{--gc-start: 6;--gc-end: 13}}@media(max-width: 1399px){.u-gc-6\\/13\\@to-big{--gc-start: 6;--gc-end: 13}}@media(min-width: 1400px){.u-gc-7\\/1\\@from-big{--gc-start: 7;--gc-end: 1}}@media(max-width: 1399px){.u-gc-7\\/1\\@to-big{--gc-start: 7;--gc-end: 1}}@media(min-width: 1400px){.u-gc-7\\/2\\@from-big{--gc-start: 7;--gc-end: 2}}@media(max-width: 1399px){.u-gc-7\\/2\\@to-big{--gc-start: 7;--gc-end: 2}}@media(min-width: 1400px){.u-gc-7\\/3\\@from-big{--gc-start: 7;--gc-end: 3}}@media(max-width: 1399px){.u-gc-7\\/3\\@to-big{--gc-start: 7;--gc-end: 3}}@media(min-width: 1400px){.u-gc-7\\/4\\@from-big{--gc-start: 7;--gc-end: 4}}@media(max-width: 1399px){.u-gc-7\\/4\\@to-big{--gc-start: 7;--gc-end: 4}}@media(min-width: 1400px){.u-gc-7\\/5\\@from-big{--gc-start: 7;--gc-end: 5}}@media(max-width: 1399px){.u-gc-7\\/5\\@to-big{--gc-start: 7;--gc-end: 5}}@media(min-width: 1400px){.u-gc-7\\/6\\@from-big{--gc-start: 7;--gc-end: 6}}@media(max-width: 1399px){.u-gc-7\\/6\\@to-big{--gc-start: 7;--gc-end: 6}}@media(min-width: 1400px){.u-gc-7\\/7\\@from-big{--gc-start: 7;--gc-end: 7}}@media(max-width: 1399px){.u-gc-7\\/7\\@to-big{--gc-start: 7;--gc-end: 7}}@media(min-width: 1400px){.u-gc-7\\/8\\@from-big{--gc-start: 7;--gc-end: 8}}@media(max-width: 1399px){.u-gc-7\\/8\\@to-big{--gc-start: 7;--gc-end: 8}}@media(min-width: 1400px){.u-gc-7\\/9\\@from-big{--gc-start: 7;--gc-end: 9}}@media(max-width: 1399px){.u-gc-7\\/9\\@to-big{--gc-start: 7;--gc-end: 9}}@media(min-width: 1400px){.u-gc-7\\/10\\@from-big{--gc-start: 7;--gc-end: 10}}@media(max-width: 1399px){.u-gc-7\\/10\\@to-big{--gc-start: 7;--gc-end: 10}}@media(min-width: 1400px){.u-gc-7\\/11\\@from-big{--gc-start: 7;--gc-end: 11}}@media(max-width: 1399px){.u-gc-7\\/11\\@to-big{--gc-start: 7;--gc-end: 11}}@media(min-width: 1400px){.u-gc-7\\/12\\@from-big{--gc-start: 7;--gc-end: 12}}@media(max-width: 1399px){.u-gc-7\\/12\\@to-big{--gc-start: 7;--gc-end: 12}}@media(min-width: 1400px){.u-gc-7\\/13\\@from-big{--gc-start: 7;--gc-end: 13}}@media(max-width: 1399px){.u-gc-7\\/13\\@to-big{--gc-start: 7;--gc-end: 13}}@media(min-width: 1400px){.u-gc-8\\/1\\@from-big{--gc-start: 8;--gc-end: 1}}@media(max-width: 1399px){.u-gc-8\\/1\\@to-big{--gc-start: 8;--gc-end: 1}}@media(min-width: 1400px){.u-gc-8\\/2\\@from-big{--gc-start: 8;--gc-end: 2}}@media(max-width: 1399px){.u-gc-8\\/2\\@to-big{--gc-start: 8;--gc-end: 2}}@media(min-width: 1400px){.u-gc-8\\/3\\@from-big{--gc-start: 8;--gc-end: 3}}@media(max-width: 1399px){.u-gc-8\\/3\\@to-big{--gc-start: 8;--gc-end: 3}}@media(min-width: 1400px){.u-gc-8\\/4\\@from-big{--gc-start: 8;--gc-end: 4}}@media(max-width: 1399px){.u-gc-8\\/4\\@to-big{--gc-start: 8;--gc-end: 4}}@media(min-width: 1400px){.u-gc-8\\/5\\@from-big{--gc-start: 8;--gc-end: 5}}@media(max-width: 1399px){.u-gc-8\\/5\\@to-big{--gc-start: 8;--gc-end: 5}}@media(min-width: 1400px){.u-gc-8\\/6\\@from-big{--gc-start: 8;--gc-end: 6}}@media(max-width: 1399px){.u-gc-8\\/6\\@to-big{--gc-start: 8;--gc-end: 6}}@media(min-width: 1400px){.u-gc-8\\/7\\@from-big{--gc-start: 8;--gc-end: 7}}@media(max-width: 1399px){.u-gc-8\\/7\\@to-big{--gc-start: 8;--gc-end: 7}}@media(min-width: 1400px){.u-gc-8\\/8\\@from-big{--gc-start: 8;--gc-end: 8}}@media(max-width: 1399px){.u-gc-8\\/8\\@to-big{--gc-start: 8;--gc-end: 8}}@media(min-width: 1400px){.u-gc-8\\/9\\@from-big{--gc-start: 8;--gc-end: 9}}@media(max-width: 1399px){.u-gc-8\\/9\\@to-big{--gc-start: 8;--gc-end: 9}}@media(min-width: 1400px){.u-gc-8\\/10\\@from-big{--gc-start: 8;--gc-end: 10}}@media(max-width: 1399px){.u-gc-8\\/10\\@to-big{--gc-start: 8;--gc-end: 10}}@media(min-width: 1400px){.u-gc-8\\/11\\@from-big{--gc-start: 8;--gc-end: 11}}@media(max-width: 1399px){.u-gc-8\\/11\\@to-big{--gc-start: 8;--gc-end: 11}}@media(min-width: 1400px){.u-gc-8\\/12\\@from-big{--gc-start: 8;--gc-end: 12}}@media(max-width: 1399px){.u-gc-8\\/12\\@to-big{--gc-start: 8;--gc-end: 12}}@media(min-width: 1400px){.u-gc-8\\/13\\@from-big{--gc-start: 8;--gc-end: 13}}@media(max-width: 1399px){.u-gc-8\\/13\\@to-big{--gc-start: 8;--gc-end: 13}}@media(min-width: 1400px){.u-gc-9\\/1\\@from-big{--gc-start: 9;--gc-end: 1}}@media(max-width: 1399px){.u-gc-9\\/1\\@to-big{--gc-start: 9;--gc-end: 1}}@media(min-width: 1400px){.u-gc-9\\/2\\@from-big{--gc-start: 9;--gc-end: 2}}@media(max-width: 1399px){.u-gc-9\\/2\\@to-big{--gc-start: 9;--gc-end: 2}}@media(min-width: 1400px){.u-gc-9\\/3\\@from-big{--gc-start: 9;--gc-end: 3}}@media(max-width: 1399px){.u-gc-9\\/3\\@to-big{--gc-start: 9;--gc-end: 3}}@media(min-width: 1400px){.u-gc-9\\/4\\@from-big{--gc-start: 9;--gc-end: 4}}@media(max-width: 1399px){.u-gc-9\\/4\\@to-big{--gc-start: 9;--gc-end: 4}}@media(min-width: 1400px){.u-gc-9\\/5\\@from-big{--gc-start: 9;--gc-end: 5}}@media(max-width: 1399px){.u-gc-9\\/5\\@to-big{--gc-start: 9;--gc-end: 5}}@media(min-width: 1400px){.u-gc-9\\/6\\@from-big{--gc-start: 9;--gc-end: 6}}@media(max-width: 1399px){.u-gc-9\\/6\\@to-big{--gc-start: 9;--gc-end: 6}}@media(min-width: 1400px){.u-gc-9\\/7\\@from-big{--gc-start: 9;--gc-end: 7}}@media(max-width: 1399px){.u-gc-9\\/7\\@to-big{--gc-start: 9;--gc-end: 7}}@media(min-width: 1400px){.u-gc-9\\/8\\@from-big{--gc-start: 9;--gc-end: 8}}@media(max-width: 1399px){.u-gc-9\\/8\\@to-big{--gc-start: 9;--gc-end: 8}}@media(min-width: 1400px){.u-gc-9\\/9\\@from-big{--gc-start: 9;--gc-end: 9}}@media(max-width: 1399px){.u-gc-9\\/9\\@to-big{--gc-start: 9;--gc-end: 9}}@media(min-width: 1400px){.u-gc-9\\/10\\@from-big{--gc-start: 9;--gc-end: 10}}@media(max-width: 1399px){.u-gc-9\\/10\\@to-big{--gc-start: 9;--gc-end: 10}}@media(min-width: 1400px){.u-gc-9\\/11\\@from-big{--gc-start: 9;--gc-end: 11}}@media(max-width: 1399px){.u-gc-9\\/11\\@to-big{--gc-start: 9;--gc-end: 11}}@media(min-width: 1400px){.u-gc-9\\/12\\@from-big{--gc-start: 9;--gc-end: 12}}@media(max-width: 1399px){.u-gc-9\\/12\\@to-big{--gc-start: 9;--gc-end: 12}}@media(min-width: 1400px){.u-gc-9\\/13\\@from-big{--gc-start: 9;--gc-end: 13}}@media(max-width: 1399px){.u-gc-9\\/13\\@to-big{--gc-start: 9;--gc-end: 13}}@media(min-width: 1400px){.u-gc-10\\/1\\@from-big{--gc-start: 10;--gc-end: 1}}@media(max-width: 1399px){.u-gc-10\\/1\\@to-big{--gc-start: 10;--gc-end: 1}}@media(min-width: 1400px){.u-gc-10\\/2\\@from-big{--gc-start: 10;--gc-end: 2}}@media(max-width: 1399px){.u-gc-10\\/2\\@to-big{--gc-start: 10;--gc-end: 2}}@media(min-width: 1400px){.u-gc-10\\/3\\@from-big{--gc-start: 10;--gc-end: 3}}@media(max-width: 1399px){.u-gc-10\\/3\\@to-big{--gc-start: 10;--gc-end: 3}}@media(min-width: 1400px){.u-gc-10\\/4\\@from-big{--gc-start: 10;--gc-end: 4}}@media(max-width: 1399px){.u-gc-10\\/4\\@to-big{--gc-start: 10;--gc-end: 4}}@media(min-width: 1400px){.u-gc-10\\/5\\@from-big{--gc-start: 10;--gc-end: 5}}@media(max-width: 1399px){.u-gc-10\\/5\\@to-big{--gc-start: 10;--gc-end: 5}}@media(min-width: 1400px){.u-gc-10\\/6\\@from-big{--gc-start: 10;--gc-end: 6}}@media(max-width: 1399px){.u-gc-10\\/6\\@to-big{--gc-start: 10;--gc-end: 6}}@media(min-width: 1400px){.u-gc-10\\/7\\@from-big{--gc-start: 10;--gc-end: 7}}@media(max-width: 1399px){.u-gc-10\\/7\\@to-big{--gc-start: 10;--gc-end: 7}}@media(min-width: 1400px){.u-gc-10\\/8\\@from-big{--gc-start: 10;--gc-end: 8}}@media(max-width: 1399px){.u-gc-10\\/8\\@to-big{--gc-start: 10;--gc-end: 8}}@media(min-width: 1400px){.u-gc-10\\/9\\@from-big{--gc-start: 10;--gc-end: 9}}@media(max-width: 1399px){.u-gc-10\\/9\\@to-big{--gc-start: 10;--gc-end: 9}}@media(min-width: 1400px){.u-gc-10\\/10\\@from-big{--gc-start: 10;--gc-end: 10}}@media(max-width: 1399px){.u-gc-10\\/10\\@to-big{--gc-start: 10;--gc-end: 10}}@media(min-width: 1400px){.u-gc-10\\/11\\@from-big{--gc-start: 10;--gc-end: 11}}@media(max-width: 1399px){.u-gc-10\\/11\\@to-big{--gc-start: 10;--gc-end: 11}}@media(min-width: 1400px){.u-gc-10\\/12\\@from-big{--gc-start: 10;--gc-end: 12}}@media(max-width: 1399px){.u-gc-10\\/12\\@to-big{--gc-start: 10;--gc-end: 12}}@media(min-width: 1400px){.u-gc-10\\/13\\@from-big{--gc-start: 10;--gc-end: 13}}@media(max-width: 1399px){.u-gc-10\\/13\\@to-big{--gc-start: 10;--gc-end: 13}}@media(min-width: 1400px){.u-gc-11\\/1\\@from-big{--gc-start: 11;--gc-end: 1}}@media(max-width: 1399px){.u-gc-11\\/1\\@to-big{--gc-start: 11;--gc-end: 1}}@media(min-width: 1400px){.u-gc-11\\/2\\@from-big{--gc-start: 11;--gc-end: 2}}@media(max-width: 1399px){.u-gc-11\\/2\\@to-big{--gc-start: 11;--gc-end: 2}}@media(min-width: 1400px){.u-gc-11\\/3\\@from-big{--gc-start: 11;--gc-end: 3}}@media(max-width: 1399px){.u-gc-11\\/3\\@to-big{--gc-start: 11;--gc-end: 3}}@media(min-width: 1400px){.u-gc-11\\/4\\@from-big{--gc-start: 11;--gc-end: 4}}@media(max-width: 1399px){.u-gc-11\\/4\\@to-big{--gc-start: 11;--gc-end: 4}}@media(min-width: 1400px){.u-gc-11\\/5\\@from-big{--gc-start: 11;--gc-end: 5}}@media(max-width: 1399px){.u-gc-11\\/5\\@to-big{--gc-start: 11;--gc-end: 5}}@media(min-width: 1400px){.u-gc-11\\/6\\@from-big{--gc-start: 11;--gc-end: 6}}@media(max-width: 1399px){.u-gc-11\\/6\\@to-big{--gc-start: 11;--gc-end: 6}}@media(min-width: 1400px){.u-gc-11\\/7\\@from-big{--gc-start: 11;--gc-end: 7}}@media(max-width: 1399px){.u-gc-11\\/7\\@to-big{--gc-start: 11;--gc-end: 7}}@media(min-width: 1400px){.u-gc-11\\/8\\@from-big{--gc-start: 11;--gc-end: 8}}@media(max-width: 1399px){.u-gc-11\\/8\\@to-big{--gc-start: 11;--gc-end: 8}}@media(min-width: 1400px){.u-gc-11\\/9\\@from-big{--gc-start: 11;--gc-end: 9}}@media(max-width: 1399px){.u-gc-11\\/9\\@to-big{--gc-start: 11;--gc-end: 9}}@media(min-width: 1400px){.u-gc-11\\/10\\@from-big{--gc-start: 11;--gc-end: 10}}@media(max-width: 1399px){.u-gc-11\\/10\\@to-big{--gc-start: 11;--gc-end: 10}}@media(min-width: 1400px){.u-gc-11\\/11\\@from-big{--gc-start: 11;--gc-end: 11}}@media(max-width: 1399px){.u-gc-11\\/11\\@to-big{--gc-start: 11;--gc-end: 11}}@media(min-width: 1400px){.u-gc-11\\/12\\@from-big{--gc-start: 11;--gc-end: 12}}@media(max-width: 1399px){.u-gc-11\\/12\\@to-big{--gc-start: 11;--gc-end: 12}}@media(min-width: 1400px){.u-gc-11\\/13\\@from-big{--gc-start: 11;--gc-end: 13}}@media(max-width: 1399px){.u-gc-11\\/13\\@to-big{--gc-start: 11;--gc-end: 13}}@media(min-width: 1400px){.u-gc-12\\/1\\@from-big{--gc-start: 12;--gc-end: 1}}@media(max-width: 1399px){.u-gc-12\\/1\\@to-big{--gc-start: 12;--gc-end: 1}}@media(min-width: 1400px){.u-gc-12\\/2\\@from-big{--gc-start: 12;--gc-end: 2}}@media(max-width: 1399px){.u-gc-12\\/2\\@to-big{--gc-start: 12;--gc-end: 2}}@media(min-width: 1400px){.u-gc-12\\/3\\@from-big{--gc-start: 12;--gc-end: 3}}@media(max-width: 1399px){.u-gc-12\\/3\\@to-big{--gc-start: 12;--gc-end: 3}}@media(min-width: 1400px){.u-gc-12\\/4\\@from-big{--gc-start: 12;--gc-end: 4}}@media(max-width: 1399px){.u-gc-12\\/4\\@to-big{--gc-start: 12;--gc-end: 4}}@media(min-width: 1400px){.u-gc-12\\/5\\@from-big{--gc-start: 12;--gc-end: 5}}@media(max-width: 1399px){.u-gc-12\\/5\\@to-big{--gc-start: 12;--gc-end: 5}}@media(min-width: 1400px){.u-gc-12\\/6\\@from-big{--gc-start: 12;--gc-end: 6}}@media(max-width: 1399px){.u-gc-12\\/6\\@to-big{--gc-start: 12;--gc-end: 6}}@media(min-width: 1400px){.u-gc-12\\/7\\@from-big{--gc-start: 12;--gc-end: 7}}@media(max-width: 1399px){.u-gc-12\\/7\\@to-big{--gc-start: 12;--gc-end: 7}}@media(min-width: 1400px){.u-gc-12\\/8\\@from-big{--gc-start: 12;--gc-end: 8}}@media(max-width: 1399px){.u-gc-12\\/8\\@to-big{--gc-start: 12;--gc-end: 8}}@media(min-width: 1400px){.u-gc-12\\/9\\@from-big{--gc-start: 12;--gc-end: 9}}@media(max-width: 1399px){.u-gc-12\\/9\\@to-big{--gc-start: 12;--gc-end: 9}}@media(min-width: 1400px){.u-gc-12\\/10\\@from-big{--gc-start: 12;--gc-end: 10}}@media(max-width: 1399px){.u-gc-12\\/10\\@to-big{--gc-start: 12;--gc-end: 10}}@media(min-width: 1400px){.u-gc-12\\/11\\@from-big{--gc-start: 12;--gc-end: 11}}@media(max-width: 1399px){.u-gc-12\\/11\\@to-big{--gc-start: 12;--gc-end: 11}}@media(min-width: 1400px){.u-gc-12\\/12\\@from-big{--gc-start: 12;--gc-end: 12}}@media(max-width: 1399px){.u-gc-12\\/12\\@to-big{--gc-start: 12;--gc-end: 12}}@media(min-width: 1400px){.u-gc-12\\/13\\@from-big{--gc-start: 12;--gc-end: 13}}@media(max-width: 1399px){.u-gc-12\\/13\\@to-big{--gc-start: 12;--gc-end: 13}}@media(min-width: 1400px){.u-gc-13\\/1\\@from-big{--gc-start: 13;--gc-end: 1}}@media(max-width: 1399px){.u-gc-13\\/1\\@to-big{--gc-start: 13;--gc-end: 1}}@media(min-width: 1400px){.u-gc-13\\/2\\@from-big{--gc-start: 13;--gc-end: 2}}@media(max-width: 1399px){.u-gc-13\\/2\\@to-big{--gc-start: 13;--gc-end: 2}}@media(min-width: 1400px){.u-gc-13\\/3\\@from-big{--gc-start: 13;--gc-end: 3}}@media(max-width: 1399px){.u-gc-13\\/3\\@to-big{--gc-start: 13;--gc-end: 3}}@media(min-width: 1400px){.u-gc-13\\/4\\@from-big{--gc-start: 13;--gc-end: 4}}@media(max-width: 1399px){.u-gc-13\\/4\\@to-big{--gc-start: 13;--gc-end: 4}}@media(min-width: 1400px){.u-gc-13\\/5\\@from-big{--gc-start: 13;--gc-end: 5}}@media(max-width: 1399px){.u-gc-13\\/5\\@to-big{--gc-start: 13;--gc-end: 5}}@media(min-width: 1400px){.u-gc-13\\/6\\@from-big{--gc-start: 13;--gc-end: 6}}@media(max-width: 1399px){.u-gc-13\\/6\\@to-big{--gc-start: 13;--gc-end: 6}}@media(min-width: 1400px){.u-gc-13\\/7\\@from-big{--gc-start: 13;--gc-end: 7}}@media(max-width: 1399px){.u-gc-13\\/7\\@to-big{--gc-start: 13;--gc-end: 7}}@media(min-width: 1400px){.u-gc-13\\/8\\@from-big{--gc-start: 13;--gc-end: 8}}@media(max-width: 1399px){.u-gc-13\\/8\\@to-big{--gc-start: 13;--gc-end: 8}}@media(min-width: 1400px){.u-gc-13\\/9\\@from-big{--gc-start: 13;--gc-end: 9}}@media(max-width: 1399px){.u-gc-13\\/9\\@to-big{--gc-start: 13;--gc-end: 9}}@media(min-width: 1400px){.u-gc-13\\/10\\@from-big{--gc-start: 13;--gc-end: 10}}@media(max-width: 1399px){.u-gc-13\\/10\\@to-big{--gc-start: 13;--gc-end: 10}}@media(min-width: 1400px){.u-gc-13\\/11\\@from-big{--gc-start: 13;--gc-end: 11}}@media(max-width: 1399px){.u-gc-13\\/11\\@to-big{--gc-start: 13;--gc-end: 11}}@media(min-width: 1400px){.u-gc-13\\/12\\@from-big{--gc-start: 13;--gc-end: 12}}@media(max-width: 1399px){.u-gc-13\\/12\\@to-big{--gc-start: 13;--gc-end: 12}}@media(min-width: 1400px){.u-gc-13\\/13\\@from-big{--gc-start: 13;--gc-end: 13}}@media(max-width: 1399px){.u-gc-13\\/13\\@to-big{--gc-start: 13;--gc-end: 13}}@media(min-width: 1600px){.u-gc-1\\/1\\@from-huge{--gc-start: 1;--gc-end: 1}}@media(max-width: 1599px){.u-gc-1\\/1\\@to-huge{--gc-start: 1;--gc-end: 1}}@media(min-width: 1600px){.u-gc-1\\/2\\@from-huge{--gc-start: 1;--gc-end: 2}}@media(max-width: 1599px){.u-gc-1\\/2\\@to-huge{--gc-start: 1;--gc-end: 2}}@media(min-width: 1600px){.u-gc-1\\/3\\@from-huge{--gc-start: 1;--gc-end: 3}}@media(max-width: 1599px){.u-gc-1\\/3\\@to-huge{--gc-start: 1;--gc-end: 3}}@media(min-width: 1600px){.u-gc-1\\/4\\@from-huge{--gc-start: 1;--gc-end: 4}}@media(max-width: 1599px){.u-gc-1\\/4\\@to-huge{--gc-start: 1;--gc-end: 4}}@media(min-width: 1600px){.u-gc-1\\/5\\@from-huge{--gc-start: 1;--gc-end: 5}}@media(max-width: 1599px){.u-gc-1\\/5\\@to-huge{--gc-start: 1;--gc-end: 5}}@media(min-width: 1600px){.u-gc-1\\/6\\@from-huge{--gc-start: 1;--gc-end: 6}}@media(max-width: 1599px){.u-gc-1\\/6\\@to-huge{--gc-start: 1;--gc-end: 6}}@media(min-width: 1600px){.u-gc-1\\/7\\@from-huge{--gc-start: 1;--gc-end: 7}}@media(max-width: 1599px){.u-gc-1\\/7\\@to-huge{--gc-start: 1;--gc-end: 7}}@media(min-width: 1600px){.u-gc-1\\/8\\@from-huge{--gc-start: 1;--gc-end: 8}}@media(max-width: 1599px){.u-gc-1\\/8\\@to-huge{--gc-start: 1;--gc-end: 8}}@media(min-width: 1600px){.u-gc-1\\/9\\@from-huge{--gc-start: 1;--gc-end: 9}}@media(max-width: 1599px){.u-gc-1\\/9\\@to-huge{--gc-start: 1;--gc-end: 9}}@media(min-width: 1600px){.u-gc-1\\/10\\@from-huge{--gc-start: 1;--gc-end: 10}}@media(max-width: 1599px){.u-gc-1\\/10\\@to-huge{--gc-start: 1;--gc-end: 10}}@media(min-width: 1600px){.u-gc-1\\/11\\@from-huge{--gc-start: 1;--gc-end: 11}}@media(max-width: 1599px){.u-gc-1\\/11\\@to-huge{--gc-start: 1;--gc-end: 11}}@media(min-width: 1600px){.u-gc-1\\/12\\@from-huge{--gc-start: 1;--gc-end: 12}}@media(max-width: 1599px){.u-gc-1\\/12\\@to-huge{--gc-start: 1;--gc-end: 12}}@media(min-width: 1600px){.u-gc-1\\/13\\@from-huge{--gc-start: 1;--gc-end: 13}}@media(max-width: 1599px){.u-gc-1\\/13\\@to-huge{--gc-start: 1;--gc-end: 13}}@media(min-width: 1600px){.u-gc-2\\/1\\@from-huge{--gc-start: 2;--gc-end: 1}}@media(max-width: 1599px){.u-gc-2\\/1\\@to-huge{--gc-start: 2;--gc-end: 1}}@media(min-width: 1600px){.u-gc-2\\/2\\@from-huge{--gc-start: 2;--gc-end: 2}}@media(max-width: 1599px){.u-gc-2\\/2\\@to-huge{--gc-start: 2;--gc-end: 2}}@media(min-width: 1600px){.u-gc-2\\/3\\@from-huge{--gc-start: 2;--gc-end: 3}}@media(max-width: 1599px){.u-gc-2\\/3\\@to-huge{--gc-start: 2;--gc-end: 3}}@media(min-width: 1600px){.u-gc-2\\/4\\@from-huge{--gc-start: 2;--gc-end: 4}}@media(max-width: 1599px){.u-gc-2\\/4\\@to-huge{--gc-start: 2;--gc-end: 4}}@media(min-width: 1600px){.u-gc-2\\/5\\@from-huge{--gc-start: 2;--gc-end: 5}}@media(max-width: 1599px){.u-gc-2\\/5\\@to-huge{--gc-start: 2;--gc-end: 5}}@media(min-width: 1600px){.u-gc-2\\/6\\@from-huge{--gc-start: 2;--gc-end: 6}}@media(max-width: 1599px){.u-gc-2\\/6\\@to-huge{--gc-start: 2;--gc-end: 6}}@media(min-width: 1600px){.u-gc-2\\/7\\@from-huge{--gc-start: 2;--gc-end: 7}}@media(max-width: 1599px){.u-gc-2\\/7\\@to-huge{--gc-start: 2;--gc-end: 7}}@media(min-width: 1600px){.u-gc-2\\/8\\@from-huge{--gc-start: 2;--gc-end: 8}}@media(max-width: 1599px){.u-gc-2\\/8\\@to-huge{--gc-start: 2;--gc-end: 8}}@media(min-width: 1600px){.u-gc-2\\/9\\@from-huge{--gc-start: 2;--gc-end: 9}}@media(max-width: 1599px){.u-gc-2\\/9\\@to-huge{--gc-start: 2;--gc-end: 9}}@media(min-width: 1600px){.u-gc-2\\/10\\@from-huge{--gc-start: 2;--gc-end: 10}}@media(max-width: 1599px){.u-gc-2\\/10\\@to-huge{--gc-start: 2;--gc-end: 10}}@media(min-width: 1600px){.u-gc-2\\/11\\@from-huge{--gc-start: 2;--gc-end: 11}}@media(max-width: 1599px){.u-gc-2\\/11\\@to-huge{--gc-start: 2;--gc-end: 11}}@media(min-width: 1600px){.u-gc-2\\/12\\@from-huge{--gc-start: 2;--gc-end: 12}}@media(max-width: 1599px){.u-gc-2\\/12\\@to-huge{--gc-start: 2;--gc-end: 12}}@media(min-width: 1600px){.u-gc-2\\/13\\@from-huge{--gc-start: 2;--gc-end: 13}}@media(max-width: 1599px){.u-gc-2\\/13\\@to-huge{--gc-start: 2;--gc-end: 13}}@media(min-width: 1600px){.u-gc-3\\/1\\@from-huge{--gc-start: 3;--gc-end: 1}}@media(max-width: 1599px){.u-gc-3\\/1\\@to-huge{--gc-start: 3;--gc-end: 1}}@media(min-width: 1600px){.u-gc-3\\/2\\@from-huge{--gc-start: 3;--gc-end: 2}}@media(max-width: 1599px){.u-gc-3\\/2\\@to-huge{--gc-start: 3;--gc-end: 2}}@media(min-width: 1600px){.u-gc-3\\/3\\@from-huge{--gc-start: 3;--gc-end: 3}}@media(max-width: 1599px){.u-gc-3\\/3\\@to-huge{--gc-start: 3;--gc-end: 3}}@media(min-width: 1600px){.u-gc-3\\/4\\@from-huge{--gc-start: 3;--gc-end: 4}}@media(max-width: 1599px){.u-gc-3\\/4\\@to-huge{--gc-start: 3;--gc-end: 4}}@media(min-width: 1600px){.u-gc-3\\/5\\@from-huge{--gc-start: 3;--gc-end: 5}}@media(max-width: 1599px){.u-gc-3\\/5\\@to-huge{--gc-start: 3;--gc-end: 5}}@media(min-width: 1600px){.u-gc-3\\/6\\@from-huge{--gc-start: 3;--gc-end: 6}}@media(max-width: 1599px){.u-gc-3\\/6\\@to-huge{--gc-start: 3;--gc-end: 6}}@media(min-width: 1600px){.u-gc-3\\/7\\@from-huge{--gc-start: 3;--gc-end: 7}}@media(max-width: 1599px){.u-gc-3\\/7\\@to-huge{--gc-start: 3;--gc-end: 7}}@media(min-width: 1600px){.u-gc-3\\/8\\@from-huge{--gc-start: 3;--gc-end: 8}}@media(max-width: 1599px){.u-gc-3\\/8\\@to-huge{--gc-start: 3;--gc-end: 8}}@media(min-width: 1600px){.u-gc-3\\/9\\@from-huge{--gc-start: 3;--gc-end: 9}}@media(max-width: 1599px){.u-gc-3\\/9\\@to-huge{--gc-start: 3;--gc-end: 9}}@media(min-width: 1600px){.u-gc-3\\/10\\@from-huge{--gc-start: 3;--gc-end: 10}}@media(max-width: 1599px){.u-gc-3\\/10\\@to-huge{--gc-start: 3;--gc-end: 10}}@media(min-width: 1600px){.u-gc-3\\/11\\@from-huge{--gc-start: 3;--gc-end: 11}}@media(max-width: 1599px){.u-gc-3\\/11\\@to-huge{--gc-start: 3;--gc-end: 11}}@media(min-width: 1600px){.u-gc-3\\/12\\@from-huge{--gc-start: 3;--gc-end: 12}}@media(max-width: 1599px){.u-gc-3\\/12\\@to-huge{--gc-start: 3;--gc-end: 12}}@media(min-width: 1600px){.u-gc-3\\/13\\@from-huge{--gc-start: 3;--gc-end: 13}}@media(max-width: 1599px){.u-gc-3\\/13\\@to-huge{--gc-start: 3;--gc-end: 13}}@media(min-width: 1600px){.u-gc-4\\/1\\@from-huge{--gc-start: 4;--gc-end: 1}}@media(max-width: 1599px){.u-gc-4\\/1\\@to-huge{--gc-start: 4;--gc-end: 1}}@media(min-width: 1600px){.u-gc-4\\/2\\@from-huge{--gc-start: 4;--gc-end: 2}}@media(max-width: 1599px){.u-gc-4\\/2\\@to-huge{--gc-start: 4;--gc-end: 2}}@media(min-width: 1600px){.u-gc-4\\/3\\@from-huge{--gc-start: 4;--gc-end: 3}}@media(max-width: 1599px){.u-gc-4\\/3\\@to-huge{--gc-start: 4;--gc-end: 3}}@media(min-width: 1600px){.u-gc-4\\/4\\@from-huge{--gc-start: 4;--gc-end: 4}}@media(max-width: 1599px){.u-gc-4\\/4\\@to-huge{--gc-start: 4;--gc-end: 4}}@media(min-width: 1600px){.u-gc-4\\/5\\@from-huge{--gc-start: 4;--gc-end: 5}}@media(max-width: 1599px){.u-gc-4\\/5\\@to-huge{--gc-start: 4;--gc-end: 5}}@media(min-width: 1600px){.u-gc-4\\/6\\@from-huge{--gc-start: 4;--gc-end: 6}}@media(max-width: 1599px){.u-gc-4\\/6\\@to-huge{--gc-start: 4;--gc-end: 6}}@media(min-width: 1600px){.u-gc-4\\/7\\@from-huge{--gc-start: 4;--gc-end: 7}}@media(max-width: 1599px){.u-gc-4\\/7\\@to-huge{--gc-start: 4;--gc-end: 7}}@media(min-width: 1600px){.u-gc-4\\/8\\@from-huge{--gc-start: 4;--gc-end: 8}}@media(max-width: 1599px){.u-gc-4\\/8\\@to-huge{--gc-start: 4;--gc-end: 8}}@media(min-width: 1600px){.u-gc-4\\/9\\@from-huge{--gc-start: 4;--gc-end: 9}}@media(max-width: 1599px){.u-gc-4\\/9\\@to-huge{--gc-start: 4;--gc-end: 9}}@media(min-width: 1600px){.u-gc-4\\/10\\@from-huge{--gc-start: 4;--gc-end: 10}}@media(max-width: 1599px){.u-gc-4\\/10\\@to-huge{--gc-start: 4;--gc-end: 10}}@media(min-width: 1600px){.u-gc-4\\/11\\@from-huge{--gc-start: 4;--gc-end: 11}}@media(max-width: 1599px){.u-gc-4\\/11\\@to-huge{--gc-start: 4;--gc-end: 11}}@media(min-width: 1600px){.u-gc-4\\/12\\@from-huge{--gc-start: 4;--gc-end: 12}}@media(max-width: 1599px){.u-gc-4\\/12\\@to-huge{--gc-start: 4;--gc-end: 12}}@media(min-width: 1600px){.u-gc-4\\/13\\@from-huge{--gc-start: 4;--gc-end: 13}}@media(max-width: 1599px){.u-gc-4\\/13\\@to-huge{--gc-start: 4;--gc-end: 13}}@media(min-width: 1600px){.u-gc-5\\/1\\@from-huge{--gc-start: 5;--gc-end: 1}}@media(max-width: 1599px){.u-gc-5\\/1\\@to-huge{--gc-start: 5;--gc-end: 1}}@media(min-width: 1600px){.u-gc-5\\/2\\@from-huge{--gc-start: 5;--gc-end: 2}}@media(max-width: 1599px){.u-gc-5\\/2\\@to-huge{--gc-start: 5;--gc-end: 2}}@media(min-width: 1600px){.u-gc-5\\/3\\@from-huge{--gc-start: 5;--gc-end: 3}}@media(max-width: 1599px){.u-gc-5\\/3\\@to-huge{--gc-start: 5;--gc-end: 3}}@media(min-width: 1600px){.u-gc-5\\/4\\@from-huge{--gc-start: 5;--gc-end: 4}}@media(max-width: 1599px){.u-gc-5\\/4\\@to-huge{--gc-start: 5;--gc-end: 4}}@media(min-width: 1600px){.u-gc-5\\/5\\@from-huge{--gc-start: 5;--gc-end: 5}}@media(max-width: 1599px){.u-gc-5\\/5\\@to-huge{--gc-start: 5;--gc-end: 5}}@media(min-width: 1600px){.u-gc-5\\/6\\@from-huge{--gc-start: 5;--gc-end: 6}}@media(max-width: 1599px){.u-gc-5\\/6\\@to-huge{--gc-start: 5;--gc-end: 6}}@media(min-width: 1600px){.u-gc-5\\/7\\@from-huge{--gc-start: 5;--gc-end: 7}}@media(max-width: 1599px){.u-gc-5\\/7\\@to-huge{--gc-start: 5;--gc-end: 7}}@media(min-width: 1600px){.u-gc-5\\/8\\@from-huge{--gc-start: 5;--gc-end: 8}}@media(max-width: 1599px){.u-gc-5\\/8\\@to-huge{--gc-start: 5;--gc-end: 8}}@media(min-width: 1600px){.u-gc-5\\/9\\@from-huge{--gc-start: 5;--gc-end: 9}}@media(max-width: 1599px){.u-gc-5\\/9\\@to-huge{--gc-start: 5;--gc-end: 9}}@media(min-width: 1600px){.u-gc-5\\/10\\@from-huge{--gc-start: 5;--gc-end: 10}}@media(max-width: 1599px){.u-gc-5\\/10\\@to-huge{--gc-start: 5;--gc-end: 10}}@media(min-width: 1600px){.u-gc-5\\/11\\@from-huge{--gc-start: 5;--gc-end: 11}}@media(max-width: 1599px){.u-gc-5\\/11\\@to-huge{--gc-start: 5;--gc-end: 11}}@media(min-width: 1600px){.u-gc-5\\/12\\@from-huge{--gc-start: 5;--gc-end: 12}}@media(max-width: 1599px){.u-gc-5\\/12\\@to-huge{--gc-start: 5;--gc-end: 12}}@media(min-width: 1600px){.u-gc-5\\/13\\@from-huge{--gc-start: 5;--gc-end: 13}}@media(max-width: 1599px){.u-gc-5\\/13\\@to-huge{--gc-start: 5;--gc-end: 13}}@media(min-width: 1600px){.u-gc-6\\/1\\@from-huge{--gc-start: 6;--gc-end: 1}}@media(max-width: 1599px){.u-gc-6\\/1\\@to-huge{--gc-start: 6;--gc-end: 1}}@media(min-width: 1600px){.u-gc-6\\/2\\@from-huge{--gc-start: 6;--gc-end: 2}}@media(max-width: 1599px){.u-gc-6\\/2\\@to-huge{--gc-start: 6;--gc-end: 2}}@media(min-width: 1600px){.u-gc-6\\/3\\@from-huge{--gc-start: 6;--gc-end: 3}}@media(max-width: 1599px){.u-gc-6\\/3\\@to-huge{--gc-start: 6;--gc-end: 3}}@media(min-width: 1600px){.u-gc-6\\/4\\@from-huge{--gc-start: 6;--gc-end: 4}}@media(max-width: 1599px){.u-gc-6\\/4\\@to-huge{--gc-start: 6;--gc-end: 4}}@media(min-width: 1600px){.u-gc-6\\/5\\@from-huge{--gc-start: 6;--gc-end: 5}}@media(max-width: 1599px){.u-gc-6\\/5\\@to-huge{--gc-start: 6;--gc-end: 5}}@media(min-width: 1600px){.u-gc-6\\/6\\@from-huge{--gc-start: 6;--gc-end: 6}}@media(max-width: 1599px){.u-gc-6\\/6\\@to-huge{--gc-start: 6;--gc-end: 6}}@media(min-width: 1600px){.u-gc-6\\/7\\@from-huge{--gc-start: 6;--gc-end: 7}}@media(max-width: 1599px){.u-gc-6\\/7\\@to-huge{--gc-start: 6;--gc-end: 7}}@media(min-width: 1600px){.u-gc-6\\/8\\@from-huge{--gc-start: 6;--gc-end: 8}}@media(max-width: 1599px){.u-gc-6\\/8\\@to-huge{--gc-start: 6;--gc-end: 8}}@media(min-width: 1600px){.u-gc-6\\/9\\@from-huge{--gc-start: 6;--gc-end: 9}}@media(max-width: 1599px){.u-gc-6\\/9\\@to-huge{--gc-start: 6;--gc-end: 9}}@media(min-width: 1600px){.u-gc-6\\/10\\@from-huge{--gc-start: 6;--gc-end: 10}}@media(max-width: 1599px){.u-gc-6\\/10\\@to-huge{--gc-start: 6;--gc-end: 10}}@media(min-width: 1600px){.u-gc-6\\/11\\@from-huge{--gc-start: 6;--gc-end: 11}}@media(max-width: 1599px){.u-gc-6\\/11\\@to-huge{--gc-start: 6;--gc-end: 11}}@media(min-width: 1600px){.u-gc-6\\/12\\@from-huge{--gc-start: 6;--gc-end: 12}}@media(max-width: 1599px){.u-gc-6\\/12\\@to-huge{--gc-start: 6;--gc-end: 12}}@media(min-width: 1600px){.u-gc-6\\/13\\@from-huge{--gc-start: 6;--gc-end: 13}}@media(max-width: 1599px){.u-gc-6\\/13\\@to-huge{--gc-start: 6;--gc-end: 13}}@media(min-width: 1600px){.u-gc-7\\/1\\@from-huge{--gc-start: 7;--gc-end: 1}}@media(max-width: 1599px){.u-gc-7\\/1\\@to-huge{--gc-start: 7;--gc-end: 1}}@media(min-width: 1600px){.u-gc-7\\/2\\@from-huge{--gc-start: 7;--gc-end: 2}}@media(max-width: 1599px){.u-gc-7\\/2\\@to-huge{--gc-start: 7;--gc-end: 2}}@media(min-width: 1600px){.u-gc-7\\/3\\@from-huge{--gc-start: 7;--gc-end: 3}}@media(max-width: 1599px){.u-gc-7\\/3\\@to-huge{--gc-start: 7;--gc-end: 3}}@media(min-width: 1600px){.u-gc-7\\/4\\@from-huge{--gc-start: 7;--gc-end: 4}}@media(max-width: 1599px){.u-gc-7\\/4\\@to-huge{--gc-start: 7;--gc-end: 4}}@media(min-width: 1600px){.u-gc-7\\/5\\@from-huge{--gc-start: 7;--gc-end: 5}}@media(max-width: 1599px){.u-gc-7\\/5\\@to-huge{--gc-start: 7;--gc-end: 5}}@media(min-width: 1600px){.u-gc-7\\/6\\@from-huge{--gc-start: 7;--gc-end: 6}}@media(max-width: 1599px){.u-gc-7\\/6\\@to-huge{--gc-start: 7;--gc-end: 6}}@media(min-width: 1600px){.u-gc-7\\/7\\@from-huge{--gc-start: 7;--gc-end: 7}}@media(max-width: 1599px){.u-gc-7\\/7\\@to-huge{--gc-start: 7;--gc-end: 7}}@media(min-width: 1600px){.u-gc-7\\/8\\@from-huge{--gc-start: 7;--gc-end: 8}}@media(max-width: 1599px){.u-gc-7\\/8\\@to-huge{--gc-start: 7;--gc-end: 8}}@media(min-width: 1600px){.u-gc-7\\/9\\@from-huge{--gc-start: 7;--gc-end: 9}}@media(max-width: 1599px){.u-gc-7\\/9\\@to-huge{--gc-start: 7;--gc-end: 9}}@media(min-width: 1600px){.u-gc-7\\/10\\@from-huge{--gc-start: 7;--gc-end: 10}}@media(max-width: 1599px){.u-gc-7\\/10\\@to-huge{--gc-start: 7;--gc-end: 10}}@media(min-width: 1600px){.u-gc-7\\/11\\@from-huge{--gc-start: 7;--gc-end: 11}}@media(max-width: 1599px){.u-gc-7\\/11\\@to-huge{--gc-start: 7;--gc-end: 11}}@media(min-width: 1600px){.u-gc-7\\/12\\@from-huge{--gc-start: 7;--gc-end: 12}}@media(max-width: 1599px){.u-gc-7\\/12\\@to-huge{--gc-start: 7;--gc-end: 12}}@media(min-width: 1600px){.u-gc-7\\/13\\@from-huge{--gc-start: 7;--gc-end: 13}}@media(max-width: 1599px){.u-gc-7\\/13\\@to-huge{--gc-start: 7;--gc-end: 13}}@media(min-width: 1600px){.u-gc-8\\/1\\@from-huge{--gc-start: 8;--gc-end: 1}}@media(max-width: 1599px){.u-gc-8\\/1\\@to-huge{--gc-start: 8;--gc-end: 1}}@media(min-width: 1600px){.u-gc-8\\/2\\@from-huge{--gc-start: 8;--gc-end: 2}}@media(max-width: 1599px){.u-gc-8\\/2\\@to-huge{--gc-start: 8;--gc-end: 2}}@media(min-width: 1600px){.u-gc-8\\/3\\@from-huge{--gc-start: 8;--gc-end: 3}}@media(max-width: 1599px){.u-gc-8\\/3\\@to-huge{--gc-start: 8;--gc-end: 3}}@media(min-width: 1600px){.u-gc-8\\/4\\@from-huge{--gc-start: 8;--gc-end: 4}}@media(max-width: 1599px){.u-gc-8\\/4\\@to-huge{--gc-start: 8;--gc-end: 4}}@media(min-width: 1600px){.u-gc-8\\/5\\@from-huge{--gc-start: 8;--gc-end: 5}}@media(max-width: 1599px){.u-gc-8\\/5\\@to-huge{--gc-start: 8;--gc-end: 5}}@media(min-width: 1600px){.u-gc-8\\/6\\@from-huge{--gc-start: 8;--gc-end: 6}}@media(max-width: 1599px){.u-gc-8\\/6\\@to-huge{--gc-start: 8;--gc-end: 6}}@media(min-width: 1600px){.u-gc-8\\/7\\@from-huge{--gc-start: 8;--gc-end: 7}}@media(max-width: 1599px){.u-gc-8\\/7\\@to-huge{--gc-start: 8;--gc-end: 7}}@media(min-width: 1600px){.u-gc-8\\/8\\@from-huge{--gc-start: 8;--gc-end: 8}}@media(max-width: 1599px){.u-gc-8\\/8\\@to-huge{--gc-start: 8;--gc-end: 8}}@media(min-width: 1600px){.u-gc-8\\/9\\@from-huge{--gc-start: 8;--gc-end: 9}}@media(max-width: 1599px){.u-gc-8\\/9\\@to-huge{--gc-start: 8;--gc-end: 9}}@media(min-width: 1600px){.u-gc-8\\/10\\@from-huge{--gc-start: 8;--gc-end: 10}}@media(max-width: 1599px){.u-gc-8\\/10\\@to-huge{--gc-start: 8;--gc-end: 10}}@media(min-width: 1600px){.u-gc-8\\/11\\@from-huge{--gc-start: 8;--gc-end: 11}}@media(max-width: 1599px){.u-gc-8\\/11\\@to-huge{--gc-start: 8;--gc-end: 11}}@media(min-width: 1600px){.u-gc-8\\/12\\@from-huge{--gc-start: 8;--gc-end: 12}}@media(max-width: 1599px){.u-gc-8\\/12\\@to-huge{--gc-start: 8;--gc-end: 12}}@media(min-width: 1600px){.u-gc-8\\/13\\@from-huge{--gc-start: 8;--gc-end: 13}}@media(max-width: 1599px){.u-gc-8\\/13\\@to-huge{--gc-start: 8;--gc-end: 13}}@media(min-width: 1600px){.u-gc-9\\/1\\@from-huge{--gc-start: 9;--gc-end: 1}}@media(max-width: 1599px){.u-gc-9\\/1\\@to-huge{--gc-start: 9;--gc-end: 1}}@media(min-width: 1600px){.u-gc-9\\/2\\@from-huge{--gc-start: 9;--gc-end: 2}}@media(max-width: 1599px){.u-gc-9\\/2\\@to-huge{--gc-start: 9;--gc-end: 2}}@media(min-width: 1600px){.u-gc-9\\/3\\@from-huge{--gc-start: 9;--gc-end: 3}}@media(max-width: 1599px){.u-gc-9\\/3\\@to-huge{--gc-start: 9;--gc-end: 3}}@media(min-width: 1600px){.u-gc-9\\/4\\@from-huge{--gc-start: 9;--gc-end: 4}}@media(max-width: 1599px){.u-gc-9\\/4\\@to-huge{--gc-start: 9;--gc-end: 4}}@media(min-width: 1600px){.u-gc-9\\/5\\@from-huge{--gc-start: 9;--gc-end: 5}}@media(max-width: 1599px){.u-gc-9\\/5\\@to-huge{--gc-start: 9;--gc-end: 5}}@media(min-width: 1600px){.u-gc-9\\/6\\@from-huge{--gc-start: 9;--gc-end: 6}}@media(max-width: 1599px){.u-gc-9\\/6\\@to-huge{--gc-start: 9;--gc-end: 6}}@media(min-width: 1600px){.u-gc-9\\/7\\@from-huge{--gc-start: 9;--gc-end: 7}}@media(max-width: 1599px){.u-gc-9\\/7\\@to-huge{--gc-start: 9;--gc-end: 7}}@media(min-width: 1600px){.u-gc-9\\/8\\@from-huge{--gc-start: 9;--gc-end: 8}}@media(max-width: 1599px){.u-gc-9\\/8\\@to-huge{--gc-start: 9;--gc-end: 8}}@media(min-width: 1600px){.u-gc-9\\/9\\@from-huge{--gc-start: 9;--gc-end: 9}}@media(max-width: 1599px){.u-gc-9\\/9\\@to-huge{--gc-start: 9;--gc-end: 9}}@media(min-width: 1600px){.u-gc-9\\/10\\@from-huge{--gc-start: 9;--gc-end: 10}}@media(max-width: 1599px){.u-gc-9\\/10\\@to-huge{--gc-start: 9;--gc-end: 10}}@media(min-width: 1600px){.u-gc-9\\/11\\@from-huge{--gc-start: 9;--gc-end: 11}}@media(max-width: 1599px){.u-gc-9\\/11\\@to-huge{--gc-start: 9;--gc-end: 11}}@media(min-width: 1600px){.u-gc-9\\/12\\@from-huge{--gc-start: 9;--gc-end: 12}}@media(max-width: 1599px){.u-gc-9\\/12\\@to-huge{--gc-start: 9;--gc-end: 12}}@media(min-width: 1600px){.u-gc-9\\/13\\@from-huge{--gc-start: 9;--gc-end: 13}}@media(max-width: 1599px){.u-gc-9\\/13\\@to-huge{--gc-start: 9;--gc-end: 13}}@media(min-width: 1600px){.u-gc-10\\/1\\@from-huge{--gc-start: 10;--gc-end: 1}}@media(max-width: 1599px){.u-gc-10\\/1\\@to-huge{--gc-start: 10;--gc-end: 1}}@media(min-width: 1600px){.u-gc-10\\/2\\@from-huge{--gc-start: 10;--gc-end: 2}}@media(max-width: 1599px){.u-gc-10\\/2\\@to-huge{--gc-start: 10;--gc-end: 2}}@media(min-width: 1600px){.u-gc-10\\/3\\@from-huge{--gc-start: 10;--gc-end: 3}}@media(max-width: 1599px){.u-gc-10\\/3\\@to-huge{--gc-start: 10;--gc-end: 3}}@media(min-width: 1600px){.u-gc-10\\/4\\@from-huge{--gc-start: 10;--gc-end: 4}}@media(max-width: 1599px){.u-gc-10\\/4\\@to-huge{--gc-start: 10;--gc-end: 4}}@media(min-width: 1600px){.u-gc-10\\/5\\@from-huge{--gc-start: 10;--gc-end: 5}}@media(max-width: 1599px){.u-gc-10\\/5\\@to-huge{--gc-start: 10;--gc-end: 5}}@media(min-width: 1600px){.u-gc-10\\/6\\@from-huge{--gc-start: 10;--gc-end: 6}}@media(max-width: 1599px){.u-gc-10\\/6\\@to-huge{--gc-start: 10;--gc-end: 6}}@media(min-width: 1600px){.u-gc-10\\/7\\@from-huge{--gc-start: 10;--gc-end: 7}}@media(max-width: 1599px){.u-gc-10\\/7\\@to-huge{--gc-start: 10;--gc-end: 7}}@media(min-width: 1600px){.u-gc-10\\/8\\@from-huge{--gc-start: 10;--gc-end: 8}}@media(max-width: 1599px){.u-gc-10\\/8\\@to-huge{--gc-start: 10;--gc-end: 8}}@media(min-width: 1600px){.u-gc-10\\/9\\@from-huge{--gc-start: 10;--gc-end: 9}}@media(max-width: 1599px){.u-gc-10\\/9\\@to-huge{--gc-start: 10;--gc-end: 9}}@media(min-width: 1600px){.u-gc-10\\/10\\@from-huge{--gc-start: 10;--gc-end: 10}}@media(max-width: 1599px){.u-gc-10\\/10\\@to-huge{--gc-start: 10;--gc-end: 10}}@media(min-width: 1600px){.u-gc-10\\/11\\@from-huge{--gc-start: 10;--gc-end: 11}}@media(max-width: 1599px){.u-gc-10\\/11\\@to-huge{--gc-start: 10;--gc-end: 11}}@media(min-width: 1600px){.u-gc-10\\/12\\@from-huge{--gc-start: 10;--gc-end: 12}}@media(max-width: 1599px){.u-gc-10\\/12\\@to-huge{--gc-start: 10;--gc-end: 12}}@media(min-width: 1600px){.u-gc-10\\/13\\@from-huge{--gc-start: 10;--gc-end: 13}}@media(max-width: 1599px){.u-gc-10\\/13\\@to-huge{--gc-start: 10;--gc-end: 13}}@media(min-width: 1600px){.u-gc-11\\/1\\@from-huge{--gc-start: 11;--gc-end: 1}}@media(max-width: 1599px){.u-gc-11\\/1\\@to-huge{--gc-start: 11;--gc-end: 1}}@media(min-width: 1600px){.u-gc-11\\/2\\@from-huge{--gc-start: 11;--gc-end: 2}}@media(max-width: 1599px){.u-gc-11\\/2\\@to-huge{--gc-start: 11;--gc-end: 2}}@media(min-width: 1600px){.u-gc-11\\/3\\@from-huge{--gc-start: 11;--gc-end: 3}}@media(max-width: 1599px){.u-gc-11\\/3\\@to-huge{--gc-start: 11;--gc-end: 3}}@media(min-width: 1600px){.u-gc-11\\/4\\@from-huge{--gc-start: 11;--gc-end: 4}}@media(max-width: 1599px){.u-gc-11\\/4\\@to-huge{--gc-start: 11;--gc-end: 4}}@media(min-width: 1600px){.u-gc-11\\/5\\@from-huge{--gc-start: 11;--gc-end: 5}}@media(max-width: 1599px){.u-gc-11\\/5\\@to-huge{--gc-start: 11;--gc-end: 5}}@media(min-width: 1600px){.u-gc-11\\/6\\@from-huge{--gc-start: 11;--gc-end: 6}}@media(max-width: 1599px){.u-gc-11\\/6\\@to-huge{--gc-start: 11;--gc-end: 6}}@media(min-width: 1600px){.u-gc-11\\/7\\@from-huge{--gc-start: 11;--gc-end: 7}}@media(max-width: 1599px){.u-gc-11\\/7\\@to-huge{--gc-start: 11;--gc-end: 7}}@media(min-width: 1600px){.u-gc-11\\/8\\@from-huge{--gc-start: 11;--gc-end: 8}}@media(max-width: 1599px){.u-gc-11\\/8\\@to-huge{--gc-start: 11;--gc-end: 8}}@media(min-width: 1600px){.u-gc-11\\/9\\@from-huge{--gc-start: 11;--gc-end: 9}}@media(max-width: 1599px){.u-gc-11\\/9\\@to-huge{--gc-start: 11;--gc-end: 9}}@media(min-width: 1600px){.u-gc-11\\/10\\@from-huge{--gc-start: 11;--gc-end: 10}}@media(max-width: 1599px){.u-gc-11\\/10\\@to-huge{--gc-start: 11;--gc-end: 10}}@media(min-width: 1600px){.u-gc-11\\/11\\@from-huge{--gc-start: 11;--gc-end: 11}}@media(max-width: 1599px){.u-gc-11\\/11\\@to-huge{--gc-start: 11;--gc-end: 11}}@media(min-width: 1600px){.u-gc-11\\/12\\@from-huge{--gc-start: 11;--gc-end: 12}}@media(max-width: 1599px){.u-gc-11\\/12\\@to-huge{--gc-start: 11;--gc-end: 12}}@media(min-width: 1600px){.u-gc-11\\/13\\@from-huge{--gc-start: 11;--gc-end: 13}}@media(max-width: 1599px){.u-gc-11\\/13\\@to-huge{--gc-start: 11;--gc-end: 13}}@media(min-width: 1600px){.u-gc-12\\/1\\@from-huge{--gc-start: 12;--gc-end: 1}}@media(max-width: 1599px){.u-gc-12\\/1\\@to-huge{--gc-start: 12;--gc-end: 1}}@media(min-width: 1600px){.u-gc-12\\/2\\@from-huge{--gc-start: 12;--gc-end: 2}}@media(max-width: 1599px){.u-gc-12\\/2\\@to-huge{--gc-start: 12;--gc-end: 2}}@media(min-width: 1600px){.u-gc-12\\/3\\@from-huge{--gc-start: 12;--gc-end: 3}}@media(max-width: 1599px){.u-gc-12\\/3\\@to-huge{--gc-start: 12;--gc-end: 3}}@media(min-width: 1600px){.u-gc-12\\/4\\@from-huge{--gc-start: 12;--gc-end: 4}}@media(max-width: 1599px){.u-gc-12\\/4\\@to-huge{--gc-start: 12;--gc-end: 4}}@media(min-width: 1600px){.u-gc-12\\/5\\@from-huge{--gc-start: 12;--gc-end: 5}}@media(max-width: 1599px){.u-gc-12\\/5\\@to-huge{--gc-start: 12;--gc-end: 5}}@media(min-width: 1600px){.u-gc-12\\/6\\@from-huge{--gc-start: 12;--gc-end: 6}}@media(max-width: 1599px){.u-gc-12\\/6\\@to-huge{--gc-start: 12;--gc-end: 6}}@media(min-width: 1600px){.u-gc-12\\/7\\@from-huge{--gc-start: 12;--gc-end: 7}}@media(max-width: 1599px){.u-gc-12\\/7\\@to-huge{--gc-start: 12;--gc-end: 7}}@media(min-width: 1600px){.u-gc-12\\/8\\@from-huge{--gc-start: 12;--gc-end: 8}}@media(max-width: 1599px){.u-gc-12\\/8\\@to-huge{--gc-start: 12;--gc-end: 8}}@media(min-width: 1600px){.u-gc-12\\/9\\@from-huge{--gc-start: 12;--gc-end: 9}}@media(max-width: 1599px){.u-gc-12\\/9\\@to-huge{--gc-start: 12;--gc-end: 9}}@media(min-width: 1600px){.u-gc-12\\/10\\@from-huge{--gc-start: 12;--gc-end: 10}}@media(max-width: 1599px){.u-gc-12\\/10\\@to-huge{--gc-start: 12;--gc-end: 10}}@media(min-width: 1600px){.u-gc-12\\/11\\@from-huge{--gc-start: 12;--gc-end: 11}}@media(max-width: 1599px){.u-gc-12\\/11\\@to-huge{--gc-start: 12;--gc-end: 11}}@media(min-width: 1600px){.u-gc-12\\/12\\@from-huge{--gc-start: 12;--gc-end: 12}}@media(max-width: 1599px){.u-gc-12\\/12\\@to-huge{--gc-start: 12;--gc-end: 12}}@media(min-width: 1600px){.u-gc-12\\/13\\@from-huge{--gc-start: 12;--gc-end: 13}}@media(max-width: 1599px){.u-gc-12\\/13\\@to-huge{--gc-start: 12;--gc-end: 13}}@media(min-width: 1600px){.u-gc-13\\/1\\@from-huge{--gc-start: 13;--gc-end: 1}}@media(max-width: 1599px){.u-gc-13\\/1\\@to-huge{--gc-start: 13;--gc-end: 1}}@media(min-width: 1600px){.u-gc-13\\/2\\@from-huge{--gc-start: 13;--gc-end: 2}}@media(max-width: 1599px){.u-gc-13\\/2\\@to-huge{--gc-start: 13;--gc-end: 2}}@media(min-width: 1600px){.u-gc-13\\/3\\@from-huge{--gc-start: 13;--gc-end: 3}}@media(max-width: 1599px){.u-gc-13\\/3\\@to-huge{--gc-start: 13;--gc-end: 3}}@media(min-width: 1600px){.u-gc-13\\/4\\@from-huge{--gc-start: 13;--gc-end: 4}}@media(max-width: 1599px){.u-gc-13\\/4\\@to-huge{--gc-start: 13;--gc-end: 4}}@media(min-width: 1600px){.u-gc-13\\/5\\@from-huge{--gc-start: 13;--gc-end: 5}}@media(max-width: 1599px){.u-gc-13\\/5\\@to-huge{--gc-start: 13;--gc-end: 5}}@media(min-width: 1600px){.u-gc-13\\/6\\@from-huge{--gc-start: 13;--gc-end: 6}}@media(max-width: 1599px){.u-gc-13\\/6\\@to-huge{--gc-start: 13;--gc-end: 6}}@media(min-width: 1600px){.u-gc-13\\/7\\@from-huge{--gc-start: 13;--gc-end: 7}}@media(max-width: 1599px){.u-gc-13\\/7\\@to-huge{--gc-start: 13;--gc-end: 7}}@media(min-width: 1600px){.u-gc-13\\/8\\@from-huge{--gc-start: 13;--gc-end: 8}}@media(max-width: 1599px){.u-gc-13\\/8\\@to-huge{--gc-start: 13;--gc-end: 8}}@media(min-width: 1600px){.u-gc-13\\/9\\@from-huge{--gc-start: 13;--gc-end: 9}}@media(max-width: 1599px){.u-gc-13\\/9\\@to-huge{--gc-start: 13;--gc-end: 9}}@media(min-width: 1600px){.u-gc-13\\/10\\@from-huge{--gc-start: 13;--gc-end: 10}}@media(max-width: 1599px){.u-gc-13\\/10\\@to-huge{--gc-start: 13;--gc-end: 10}}@media(min-width: 1600px){.u-gc-13\\/11\\@from-huge{--gc-start: 13;--gc-end: 11}}@media(max-width: 1599px){.u-gc-13\\/11\\@to-huge{--gc-start: 13;--gc-end: 11}}@media(min-width: 1600px){.u-gc-13\\/12\\@from-huge{--gc-start: 13;--gc-end: 12}}@media(max-width: 1599px){.u-gc-13\\/12\\@to-huge{--gc-start: 13;--gc-end: 12}}@media(min-width: 1600px){.u-gc-13\\/13\\@from-huge{--gc-start: 13;--gc-end: 13}}@media(max-width: 1599px){.u-gc-13\\/13\\@to-huge{--gc-start: 13;--gc-end: 13}}@media(min-width: 1800px){.u-gc-1\\/1\\@from-enormous{--gc-start: 1;--gc-end: 1}}@media(max-width: 1799px){.u-gc-1\\/1\\@to-enormous{--gc-start: 1;--gc-end: 1}}@media(min-width: 1800px){.u-gc-1\\/2\\@from-enormous{--gc-start: 1;--gc-end: 2}}@media(max-width: 1799px){.u-gc-1\\/2\\@to-enormous{--gc-start: 1;--gc-end: 2}}@media(min-width: 1800px){.u-gc-1\\/3\\@from-enormous{--gc-start: 1;--gc-end: 3}}@media(max-width: 1799px){.u-gc-1\\/3\\@to-enormous{--gc-start: 1;--gc-end: 3}}@media(min-width: 1800px){.u-gc-1\\/4\\@from-enormous{--gc-start: 1;--gc-end: 4}}@media(max-width: 1799px){.u-gc-1\\/4\\@to-enormous{--gc-start: 1;--gc-end: 4}}@media(min-width: 1800px){.u-gc-1\\/5\\@from-enormous{--gc-start: 1;--gc-end: 5}}@media(max-width: 1799px){.u-gc-1\\/5\\@to-enormous{--gc-start: 1;--gc-end: 5}}@media(min-width: 1800px){.u-gc-1\\/6\\@from-enormous{--gc-start: 1;--gc-end: 6}}@media(max-width: 1799px){.u-gc-1\\/6\\@to-enormous{--gc-start: 1;--gc-end: 6}}@media(min-width: 1800px){.u-gc-1\\/7\\@from-enormous{--gc-start: 1;--gc-end: 7}}@media(max-width: 1799px){.u-gc-1\\/7\\@to-enormous{--gc-start: 1;--gc-end: 7}}@media(min-width: 1800px){.u-gc-1\\/8\\@from-enormous{--gc-start: 1;--gc-end: 8}}@media(max-width: 1799px){.u-gc-1\\/8\\@to-enormous{--gc-start: 1;--gc-end: 8}}@media(min-width: 1800px){.u-gc-1\\/9\\@from-enormous{--gc-start: 1;--gc-end: 9}}@media(max-width: 1799px){.u-gc-1\\/9\\@to-enormous{--gc-start: 1;--gc-end: 9}}@media(min-width: 1800px){.u-gc-1\\/10\\@from-enormous{--gc-start: 1;--gc-end: 10}}@media(max-width: 1799px){.u-gc-1\\/10\\@to-enormous{--gc-start: 1;--gc-end: 10}}@media(min-width: 1800px){.u-gc-1\\/11\\@from-enormous{--gc-start: 1;--gc-end: 11}}@media(max-width: 1799px){.u-gc-1\\/11\\@to-enormous{--gc-start: 1;--gc-end: 11}}@media(min-width: 1800px){.u-gc-1\\/12\\@from-enormous{--gc-start: 1;--gc-end: 12}}@media(max-width: 1799px){.u-gc-1\\/12\\@to-enormous{--gc-start: 1;--gc-end: 12}}@media(min-width: 1800px){.u-gc-1\\/13\\@from-enormous{--gc-start: 1;--gc-end: 13}}@media(max-width: 1799px){.u-gc-1\\/13\\@to-enormous{--gc-start: 1;--gc-end: 13}}@media(min-width: 1800px){.u-gc-2\\/1\\@from-enormous{--gc-start: 2;--gc-end: 1}}@media(max-width: 1799px){.u-gc-2\\/1\\@to-enormous{--gc-start: 2;--gc-end: 1}}@media(min-width: 1800px){.u-gc-2\\/2\\@from-enormous{--gc-start: 2;--gc-end: 2}}@media(max-width: 1799px){.u-gc-2\\/2\\@to-enormous{--gc-start: 2;--gc-end: 2}}@media(min-width: 1800px){.u-gc-2\\/3\\@from-enormous{--gc-start: 2;--gc-end: 3}}@media(max-width: 1799px){.u-gc-2\\/3\\@to-enormous{--gc-start: 2;--gc-end: 3}}@media(min-width: 1800px){.u-gc-2\\/4\\@from-enormous{--gc-start: 2;--gc-end: 4}}@media(max-width: 1799px){.u-gc-2\\/4\\@to-enormous{--gc-start: 2;--gc-end: 4}}@media(min-width: 1800px){.u-gc-2\\/5\\@from-enormous{--gc-start: 2;--gc-end: 5}}@media(max-width: 1799px){.u-gc-2\\/5\\@to-enormous{--gc-start: 2;--gc-end: 5}}@media(min-width: 1800px){.u-gc-2\\/6\\@from-enormous{--gc-start: 2;--gc-end: 6}}@media(max-width: 1799px){.u-gc-2\\/6\\@to-enormous{--gc-start: 2;--gc-end: 6}}@media(min-width: 1800px){.u-gc-2\\/7\\@from-enormous{--gc-start: 2;--gc-end: 7}}@media(max-width: 1799px){.u-gc-2\\/7\\@to-enormous{--gc-start: 2;--gc-end: 7}}@media(min-width: 1800px){.u-gc-2\\/8\\@from-enormous{--gc-start: 2;--gc-end: 8}}@media(max-width: 1799px){.u-gc-2\\/8\\@to-enormous{--gc-start: 2;--gc-end: 8}}@media(min-width: 1800px){.u-gc-2\\/9\\@from-enormous{--gc-start: 2;--gc-end: 9}}@media(max-width: 1799px){.u-gc-2\\/9\\@to-enormous{--gc-start: 2;--gc-end: 9}}@media(min-width: 1800px){.u-gc-2\\/10\\@from-enormous{--gc-start: 2;--gc-end: 10}}@media(max-width: 1799px){.u-gc-2\\/10\\@to-enormous{--gc-start: 2;--gc-end: 10}}@media(min-width: 1800px){.u-gc-2\\/11\\@from-enormous{--gc-start: 2;--gc-end: 11}}@media(max-width: 1799px){.u-gc-2\\/11\\@to-enormous{--gc-start: 2;--gc-end: 11}}@media(min-width: 1800px){.u-gc-2\\/12\\@from-enormous{--gc-start: 2;--gc-end: 12}}@media(max-width: 1799px){.u-gc-2\\/12\\@to-enormous{--gc-start: 2;--gc-end: 12}}@media(min-width: 1800px){.u-gc-2\\/13\\@from-enormous{--gc-start: 2;--gc-end: 13}}@media(max-width: 1799px){.u-gc-2\\/13\\@to-enormous{--gc-start: 2;--gc-end: 13}}@media(min-width: 1800px){.u-gc-3\\/1\\@from-enormous{--gc-start: 3;--gc-end: 1}}@media(max-width: 1799px){.u-gc-3\\/1\\@to-enormous{--gc-start: 3;--gc-end: 1}}@media(min-width: 1800px){.u-gc-3\\/2\\@from-enormous{--gc-start: 3;--gc-end: 2}}@media(max-width: 1799px){.u-gc-3\\/2\\@to-enormous{--gc-start: 3;--gc-end: 2}}@media(min-width: 1800px){.u-gc-3\\/3\\@from-enormous{--gc-start: 3;--gc-end: 3}}@media(max-width: 1799px){.u-gc-3\\/3\\@to-enormous{--gc-start: 3;--gc-end: 3}}@media(min-width: 1800px){.u-gc-3\\/4\\@from-enormous{--gc-start: 3;--gc-end: 4}}@media(max-width: 1799px){.u-gc-3\\/4\\@to-enormous{--gc-start: 3;--gc-end: 4}}@media(min-width: 1800px){.u-gc-3\\/5\\@from-enormous{--gc-start: 3;--gc-end: 5}}@media(max-width: 1799px){.u-gc-3\\/5\\@to-enormous{--gc-start: 3;--gc-end: 5}}@media(min-width: 1800px){.u-gc-3\\/6\\@from-enormous{--gc-start: 3;--gc-end: 6}}@media(max-width: 1799px){.u-gc-3\\/6\\@to-enormous{--gc-start: 3;--gc-end: 6}}@media(min-width: 1800px){.u-gc-3\\/7\\@from-enormous{--gc-start: 3;--gc-end: 7}}@media(max-width: 1799px){.u-gc-3\\/7\\@to-enormous{--gc-start: 3;--gc-end: 7}}@media(min-width: 1800px){.u-gc-3\\/8\\@from-enormous{--gc-start: 3;--gc-end: 8}}@media(max-width: 1799px){.u-gc-3\\/8\\@to-enormous{--gc-start: 3;--gc-end: 8}}@media(min-width: 1800px){.u-gc-3\\/9\\@from-enormous{--gc-start: 3;--gc-end: 9}}@media(max-width: 1799px){.u-gc-3\\/9\\@to-enormous{--gc-start: 3;--gc-end: 9}}@media(min-width: 1800px){.u-gc-3\\/10\\@from-enormous{--gc-start: 3;--gc-end: 10}}@media(max-width: 1799px){.u-gc-3\\/10\\@to-enormous{--gc-start: 3;--gc-end: 10}}@media(min-width: 1800px){.u-gc-3\\/11\\@from-enormous{--gc-start: 3;--gc-end: 11}}@media(max-width: 1799px){.u-gc-3\\/11\\@to-enormous{--gc-start: 3;--gc-end: 11}}@media(min-width: 1800px){.u-gc-3\\/12\\@from-enormous{--gc-start: 3;--gc-end: 12}}@media(max-width: 1799px){.u-gc-3\\/12\\@to-enormous{--gc-start: 3;--gc-end: 12}}@media(min-width: 1800px){.u-gc-3\\/13\\@from-enormous{--gc-start: 3;--gc-end: 13}}@media(max-width: 1799px){.u-gc-3\\/13\\@to-enormous{--gc-start: 3;--gc-end: 13}}@media(min-width: 1800px){.u-gc-4\\/1\\@from-enormous{--gc-start: 4;--gc-end: 1}}@media(max-width: 1799px){.u-gc-4\\/1\\@to-enormous{--gc-start: 4;--gc-end: 1}}@media(min-width: 1800px){.u-gc-4\\/2\\@from-enormous{--gc-start: 4;--gc-end: 2}}@media(max-width: 1799px){.u-gc-4\\/2\\@to-enormous{--gc-start: 4;--gc-end: 2}}@media(min-width: 1800px){.u-gc-4\\/3\\@from-enormous{--gc-start: 4;--gc-end: 3}}@media(max-width: 1799px){.u-gc-4\\/3\\@to-enormous{--gc-start: 4;--gc-end: 3}}@media(min-width: 1800px){.u-gc-4\\/4\\@from-enormous{--gc-start: 4;--gc-end: 4}}@media(max-width: 1799px){.u-gc-4\\/4\\@to-enormous{--gc-start: 4;--gc-end: 4}}@media(min-width: 1800px){.u-gc-4\\/5\\@from-enormous{--gc-start: 4;--gc-end: 5}}@media(max-width: 1799px){.u-gc-4\\/5\\@to-enormous{--gc-start: 4;--gc-end: 5}}@media(min-width: 1800px){.u-gc-4\\/6\\@from-enormous{--gc-start: 4;--gc-end: 6}}@media(max-width: 1799px){.u-gc-4\\/6\\@to-enormous{--gc-start: 4;--gc-end: 6}}@media(min-width: 1800px){.u-gc-4\\/7\\@from-enormous{--gc-start: 4;--gc-end: 7}}@media(max-width: 1799px){.u-gc-4\\/7\\@to-enormous{--gc-start: 4;--gc-end: 7}}@media(min-width: 1800px){.u-gc-4\\/8\\@from-enormous{--gc-start: 4;--gc-end: 8}}@media(max-width: 1799px){.u-gc-4\\/8\\@to-enormous{--gc-start: 4;--gc-end: 8}}@media(min-width: 1800px){.u-gc-4\\/9\\@from-enormous{--gc-start: 4;--gc-end: 9}}@media(max-width: 1799px){.u-gc-4\\/9\\@to-enormous{--gc-start: 4;--gc-end: 9}}@media(min-width: 1800px){.u-gc-4\\/10\\@from-enormous{--gc-start: 4;--gc-end: 10}}@media(max-width: 1799px){.u-gc-4\\/10\\@to-enormous{--gc-start: 4;--gc-end: 10}}@media(min-width: 1800px){.u-gc-4\\/11\\@from-enormous{--gc-start: 4;--gc-end: 11}}@media(max-width: 1799px){.u-gc-4\\/11\\@to-enormous{--gc-start: 4;--gc-end: 11}}@media(min-width: 1800px){.u-gc-4\\/12\\@from-enormous{--gc-start: 4;--gc-end: 12}}@media(max-width: 1799px){.u-gc-4\\/12\\@to-enormous{--gc-start: 4;--gc-end: 12}}@media(min-width: 1800px){.u-gc-4\\/13\\@from-enormous{--gc-start: 4;--gc-end: 13}}@media(max-width: 1799px){.u-gc-4\\/13\\@to-enormous{--gc-start: 4;--gc-end: 13}}@media(min-width: 1800px){.u-gc-5\\/1\\@from-enormous{--gc-start: 5;--gc-end: 1}}@media(max-width: 1799px){.u-gc-5\\/1\\@to-enormous{--gc-start: 5;--gc-end: 1}}@media(min-width: 1800px){.u-gc-5\\/2\\@from-enormous{--gc-start: 5;--gc-end: 2}}@media(max-width: 1799px){.u-gc-5\\/2\\@to-enormous{--gc-start: 5;--gc-end: 2}}@media(min-width: 1800px){.u-gc-5\\/3\\@from-enormous{--gc-start: 5;--gc-end: 3}}@media(max-width: 1799px){.u-gc-5\\/3\\@to-enormous{--gc-start: 5;--gc-end: 3}}@media(min-width: 1800px){.u-gc-5\\/4\\@from-enormous{--gc-start: 5;--gc-end: 4}}@media(max-width: 1799px){.u-gc-5\\/4\\@to-enormous{--gc-start: 5;--gc-end: 4}}@media(min-width: 1800px){.u-gc-5\\/5\\@from-enormous{--gc-start: 5;--gc-end: 5}}@media(max-width: 1799px){.u-gc-5\\/5\\@to-enormous{--gc-start: 5;--gc-end: 5}}@media(min-width: 1800px){.u-gc-5\\/6\\@from-enormous{--gc-start: 5;--gc-end: 6}}@media(max-width: 1799px){.u-gc-5\\/6\\@to-enormous{--gc-start: 5;--gc-end: 6}}@media(min-width: 1800px){.u-gc-5\\/7\\@from-enormous{--gc-start: 5;--gc-end: 7}}@media(max-width: 1799px){.u-gc-5\\/7\\@to-enormous{--gc-start: 5;--gc-end: 7}}@media(min-width: 1800px){.u-gc-5\\/8\\@from-enormous{--gc-start: 5;--gc-end: 8}}@media(max-width: 1799px){.u-gc-5\\/8\\@to-enormous{--gc-start: 5;--gc-end: 8}}@media(min-width: 1800px){.u-gc-5\\/9\\@from-enormous{--gc-start: 5;--gc-end: 9}}@media(max-width: 1799px){.u-gc-5\\/9\\@to-enormous{--gc-start: 5;--gc-end: 9}}@media(min-width: 1800px){.u-gc-5\\/10\\@from-enormous{--gc-start: 5;--gc-end: 10}}@media(max-width: 1799px){.u-gc-5\\/10\\@to-enormous{--gc-start: 5;--gc-end: 10}}@media(min-width: 1800px){.u-gc-5\\/11\\@from-enormous{--gc-start: 5;--gc-end: 11}}@media(max-width: 1799px){.u-gc-5\\/11\\@to-enormous{--gc-start: 5;--gc-end: 11}}@media(min-width: 1800px){.u-gc-5\\/12\\@from-enormous{--gc-start: 5;--gc-end: 12}}@media(max-width: 1799px){.u-gc-5\\/12\\@to-enormous{--gc-start: 5;--gc-end: 12}}@media(min-width: 1800px){.u-gc-5\\/13\\@from-enormous{--gc-start: 5;--gc-end: 13}}@media(max-width: 1799px){.u-gc-5\\/13\\@to-enormous{--gc-start: 5;--gc-end: 13}}@media(min-width: 1800px){.u-gc-6\\/1\\@from-enormous{--gc-start: 6;--gc-end: 1}}@media(max-width: 1799px){.u-gc-6\\/1\\@to-enormous{--gc-start: 6;--gc-end: 1}}@media(min-width: 1800px){.u-gc-6\\/2\\@from-enormous{--gc-start: 6;--gc-end: 2}}@media(max-width: 1799px){.u-gc-6\\/2\\@to-enormous{--gc-start: 6;--gc-end: 2}}@media(min-width: 1800px){.u-gc-6\\/3\\@from-enormous{--gc-start: 6;--gc-end: 3}}@media(max-width: 1799px){.u-gc-6\\/3\\@to-enormous{--gc-start: 6;--gc-end: 3}}@media(min-width: 1800px){.u-gc-6\\/4\\@from-enormous{--gc-start: 6;--gc-end: 4}}@media(max-width: 1799px){.u-gc-6\\/4\\@to-enormous{--gc-start: 6;--gc-end: 4}}@media(min-width: 1800px){.u-gc-6\\/5\\@from-enormous{--gc-start: 6;--gc-end: 5}}@media(max-width: 1799px){.u-gc-6\\/5\\@to-enormous{--gc-start: 6;--gc-end: 5}}@media(min-width: 1800px){.u-gc-6\\/6\\@from-enormous{--gc-start: 6;--gc-end: 6}}@media(max-width: 1799px){.u-gc-6\\/6\\@to-enormous{--gc-start: 6;--gc-end: 6}}@media(min-width: 1800px){.u-gc-6\\/7\\@from-enormous{--gc-start: 6;--gc-end: 7}}@media(max-width: 1799px){.u-gc-6\\/7\\@to-enormous{--gc-start: 6;--gc-end: 7}}@media(min-width: 1800px){.u-gc-6\\/8\\@from-enormous{--gc-start: 6;--gc-end: 8}}@media(max-width: 1799px){.u-gc-6\\/8\\@to-enormous{--gc-start: 6;--gc-end: 8}}@media(min-width: 1800px){.u-gc-6\\/9\\@from-enormous{--gc-start: 6;--gc-end: 9}}@media(max-width: 1799px){.u-gc-6\\/9\\@to-enormous{--gc-start: 6;--gc-end: 9}}@media(min-width: 1800px){.u-gc-6\\/10\\@from-enormous{--gc-start: 6;--gc-end: 10}}@media(max-width: 1799px){.u-gc-6\\/10\\@to-enormous{--gc-start: 6;--gc-end: 10}}@media(min-width: 1800px){.u-gc-6\\/11\\@from-enormous{--gc-start: 6;--gc-end: 11}}@media(max-width: 1799px){.u-gc-6\\/11\\@to-enormous{--gc-start: 6;--gc-end: 11}}@media(min-width: 1800px){.u-gc-6\\/12\\@from-enormous{--gc-start: 6;--gc-end: 12}}@media(max-width: 1799px){.u-gc-6\\/12\\@to-enormous{--gc-start: 6;--gc-end: 12}}@media(min-width: 1800px){.u-gc-6\\/13\\@from-enormous{--gc-start: 6;--gc-end: 13}}@media(max-width: 1799px){.u-gc-6\\/13\\@to-enormous{--gc-start: 6;--gc-end: 13}}@media(min-width: 1800px){.u-gc-7\\/1\\@from-enormous{--gc-start: 7;--gc-end: 1}}@media(max-width: 1799px){.u-gc-7\\/1\\@to-enormous{--gc-start: 7;--gc-end: 1}}@media(min-width: 1800px){.u-gc-7\\/2\\@from-enormous{--gc-start: 7;--gc-end: 2}}@media(max-width: 1799px){.u-gc-7\\/2\\@to-enormous{--gc-start: 7;--gc-end: 2}}@media(min-width: 1800px){.u-gc-7\\/3\\@from-enormous{--gc-start: 7;--gc-end: 3}}@media(max-width: 1799px){.u-gc-7\\/3\\@to-enormous{--gc-start: 7;--gc-end: 3}}@media(min-width: 1800px){.u-gc-7\\/4\\@from-enormous{--gc-start: 7;--gc-end: 4}}@media(max-width: 1799px){.u-gc-7\\/4\\@to-enormous{--gc-start: 7;--gc-end: 4}}@media(min-width: 1800px){.u-gc-7\\/5\\@from-enormous{--gc-start: 7;--gc-end: 5}}@media(max-width: 1799px){.u-gc-7\\/5\\@to-enormous{--gc-start: 7;--gc-end: 5}}@media(min-width: 1800px){.u-gc-7\\/6\\@from-enormous{--gc-start: 7;--gc-end: 6}}@media(max-width: 1799px){.u-gc-7\\/6\\@to-enormous{--gc-start: 7;--gc-end: 6}}@media(min-width: 1800px){.u-gc-7\\/7\\@from-enormous{--gc-start: 7;--gc-end: 7}}@media(max-width: 1799px){.u-gc-7\\/7\\@to-enormous{--gc-start: 7;--gc-end: 7}}@media(min-width: 1800px){.u-gc-7\\/8\\@from-enormous{--gc-start: 7;--gc-end: 8}}@media(max-width: 1799px){.u-gc-7\\/8\\@to-enormous{--gc-start: 7;--gc-end: 8}}@media(min-width: 1800px){.u-gc-7\\/9\\@from-enormous{--gc-start: 7;--gc-end: 9}}@media(max-width: 1799px){.u-gc-7\\/9\\@to-enormous{--gc-start: 7;--gc-end: 9}}@media(min-width: 1800px){.u-gc-7\\/10\\@from-enormous{--gc-start: 7;--gc-end: 10}}@media(max-width: 1799px){.u-gc-7\\/10\\@to-enormous{--gc-start: 7;--gc-end: 10}}@media(min-width: 1800px){.u-gc-7\\/11\\@from-enormous{--gc-start: 7;--gc-end: 11}}@media(max-width: 1799px){.u-gc-7\\/11\\@to-enormous{--gc-start: 7;--gc-end: 11}}@media(min-width: 1800px){.u-gc-7\\/12\\@from-enormous{--gc-start: 7;--gc-end: 12}}@media(max-width: 1799px){.u-gc-7\\/12\\@to-enormous{--gc-start: 7;--gc-end: 12}}@media(min-width: 1800px){.u-gc-7\\/13\\@from-enormous{--gc-start: 7;--gc-end: 13}}@media(max-width: 1799px){.u-gc-7\\/13\\@to-enormous{--gc-start: 7;--gc-end: 13}}@media(min-width: 1800px){.u-gc-8\\/1\\@from-enormous{--gc-start: 8;--gc-end: 1}}@media(max-width: 1799px){.u-gc-8\\/1\\@to-enormous{--gc-start: 8;--gc-end: 1}}@media(min-width: 1800px){.u-gc-8\\/2\\@from-enormous{--gc-start: 8;--gc-end: 2}}@media(max-width: 1799px){.u-gc-8\\/2\\@to-enormous{--gc-start: 8;--gc-end: 2}}@media(min-width: 1800px){.u-gc-8\\/3\\@from-enormous{--gc-start: 8;--gc-end: 3}}@media(max-width: 1799px){.u-gc-8\\/3\\@to-enormous{--gc-start: 8;--gc-end: 3}}@media(min-width: 1800px){.u-gc-8\\/4\\@from-enormous{--gc-start: 8;--gc-end: 4}}@media(max-width: 1799px){.u-gc-8\\/4\\@to-enormous{--gc-start: 8;--gc-end: 4}}@media(min-width: 1800px){.u-gc-8\\/5\\@from-enormous{--gc-start: 8;--gc-end: 5}}@media(max-width: 1799px){.u-gc-8\\/5\\@to-enormous{--gc-start: 8;--gc-end: 5}}@media(min-width: 1800px){.u-gc-8\\/6\\@from-enormous{--gc-start: 8;--gc-end: 6}}@media(max-width: 1799px){.u-gc-8\\/6\\@to-enormous{--gc-start: 8;--gc-end: 6}}@media(min-width: 1800px){.u-gc-8\\/7\\@from-enormous{--gc-start: 8;--gc-end: 7}}@media(max-width: 1799px){.u-gc-8\\/7\\@to-enormous{--gc-start: 8;--gc-end: 7}}@media(min-width: 1800px){.u-gc-8\\/8\\@from-enormous{--gc-start: 8;--gc-end: 8}}@media(max-width: 1799px){.u-gc-8\\/8\\@to-enormous{--gc-start: 8;--gc-end: 8}}@media(min-width: 1800px){.u-gc-8\\/9\\@from-enormous{--gc-start: 8;--gc-end: 9}}@media(max-width: 1799px){.u-gc-8\\/9\\@to-enormous{--gc-start: 8;--gc-end: 9}}@media(min-width: 1800px){.u-gc-8\\/10\\@from-enormous{--gc-start: 8;--gc-end: 10}}@media(max-width: 1799px){.u-gc-8\\/10\\@to-enormous{--gc-start: 8;--gc-end: 10}}@media(min-width: 1800px){.u-gc-8\\/11\\@from-enormous{--gc-start: 8;--gc-end: 11}}@media(max-width: 1799px){.u-gc-8\\/11\\@to-enormous{--gc-start: 8;--gc-end: 11}}@media(min-width: 1800px){.u-gc-8\\/12\\@from-enormous{--gc-start: 8;--gc-end: 12}}@media(max-width: 1799px){.u-gc-8\\/12\\@to-enormous{--gc-start: 8;--gc-end: 12}}@media(min-width: 1800px){.u-gc-8\\/13\\@from-enormous{--gc-start: 8;--gc-end: 13}}@media(max-width: 1799px){.u-gc-8\\/13\\@to-enormous{--gc-start: 8;--gc-end: 13}}@media(min-width: 1800px){.u-gc-9\\/1\\@from-enormous{--gc-start: 9;--gc-end: 1}}@media(max-width: 1799px){.u-gc-9\\/1\\@to-enormous{--gc-start: 9;--gc-end: 1}}@media(min-width: 1800px){.u-gc-9\\/2\\@from-enormous{--gc-start: 9;--gc-end: 2}}@media(max-width: 1799px){.u-gc-9\\/2\\@to-enormous{--gc-start: 9;--gc-end: 2}}@media(min-width: 1800px){.u-gc-9\\/3\\@from-enormous{--gc-start: 9;--gc-end: 3}}@media(max-width: 1799px){.u-gc-9\\/3\\@to-enormous{--gc-start: 9;--gc-end: 3}}@media(min-width: 1800px){.u-gc-9\\/4\\@from-enormous{--gc-start: 9;--gc-end: 4}}@media(max-width: 1799px){.u-gc-9\\/4\\@to-enormous{--gc-start: 9;--gc-end: 4}}@media(min-width: 1800px){.u-gc-9\\/5\\@from-enormous{--gc-start: 9;--gc-end: 5}}@media(max-width: 1799px){.u-gc-9\\/5\\@to-enormous{--gc-start: 9;--gc-end: 5}}@media(min-width: 1800px){.u-gc-9\\/6\\@from-enormous{--gc-start: 9;--gc-end: 6}}@media(max-width: 1799px){.u-gc-9\\/6\\@to-enormous{--gc-start: 9;--gc-end: 6}}@media(min-width: 1800px){.u-gc-9\\/7\\@from-enormous{--gc-start: 9;--gc-end: 7}}@media(max-width: 1799px){.u-gc-9\\/7\\@to-enormous{--gc-start: 9;--gc-end: 7}}@media(min-width: 1800px){.u-gc-9\\/8\\@from-enormous{--gc-start: 9;--gc-end: 8}}@media(max-width: 1799px){.u-gc-9\\/8\\@to-enormous{--gc-start: 9;--gc-end: 8}}@media(min-width: 1800px){.u-gc-9\\/9\\@from-enormous{--gc-start: 9;--gc-end: 9}}@media(max-width: 1799px){.u-gc-9\\/9\\@to-enormous{--gc-start: 9;--gc-end: 9}}@media(min-width: 1800px){.u-gc-9\\/10\\@from-enormous{--gc-start: 9;--gc-end: 10}}@media(max-width: 1799px){.u-gc-9\\/10\\@to-enormous{--gc-start: 9;--gc-end: 10}}@media(min-width: 1800px){.u-gc-9\\/11\\@from-enormous{--gc-start: 9;--gc-end: 11}}@media(max-width: 1799px){.u-gc-9\\/11\\@to-enormous{--gc-start: 9;--gc-end: 11}}@media(min-width: 1800px){.u-gc-9\\/12\\@from-enormous{--gc-start: 9;--gc-end: 12}}@media(max-width: 1799px){.u-gc-9\\/12\\@to-enormous{--gc-start: 9;--gc-end: 12}}@media(min-width: 1800px){.u-gc-9\\/13\\@from-enormous{--gc-start: 9;--gc-end: 13}}@media(max-width: 1799px){.u-gc-9\\/13\\@to-enormous{--gc-start: 9;--gc-end: 13}}@media(min-width: 1800px){.u-gc-10\\/1\\@from-enormous{--gc-start: 10;--gc-end: 1}}@media(max-width: 1799px){.u-gc-10\\/1\\@to-enormous{--gc-start: 10;--gc-end: 1}}@media(min-width: 1800px){.u-gc-10\\/2\\@from-enormous{--gc-start: 10;--gc-end: 2}}@media(max-width: 1799px){.u-gc-10\\/2\\@to-enormous{--gc-start: 10;--gc-end: 2}}@media(min-width: 1800px){.u-gc-10\\/3\\@from-enormous{--gc-start: 10;--gc-end: 3}}@media(max-width: 1799px){.u-gc-10\\/3\\@to-enormous{--gc-start: 10;--gc-end: 3}}@media(min-width: 1800px){.u-gc-10\\/4\\@from-enormous{--gc-start: 10;--gc-end: 4}}@media(max-width: 1799px){.u-gc-10\\/4\\@to-enormous{--gc-start: 10;--gc-end: 4}}@media(min-width: 1800px){.u-gc-10\\/5\\@from-enormous{--gc-start: 10;--gc-end: 5}}@media(max-width: 1799px){.u-gc-10\\/5\\@to-enormous{--gc-start: 10;--gc-end: 5}}@media(min-width: 1800px){.u-gc-10\\/6\\@from-enormous{--gc-start: 10;--gc-end: 6}}@media(max-width: 1799px){.u-gc-10\\/6\\@to-enormous{--gc-start: 10;--gc-end: 6}}@media(min-width: 1800px){.u-gc-10\\/7\\@from-enormous{--gc-start: 10;--gc-end: 7}}@media(max-width: 1799px){.u-gc-10\\/7\\@to-enormous{--gc-start: 10;--gc-end: 7}}@media(min-width: 1800px){.u-gc-10\\/8\\@from-enormous{--gc-start: 10;--gc-end: 8}}@media(max-width: 1799px){.u-gc-10\\/8\\@to-enormous{--gc-start: 10;--gc-end: 8}}@media(min-width: 1800px){.u-gc-10\\/9\\@from-enormous{--gc-start: 10;--gc-end: 9}}@media(max-width: 1799px){.u-gc-10\\/9\\@to-enormous{--gc-start: 10;--gc-end: 9}}@media(min-width: 1800px){.u-gc-10\\/10\\@from-enormous{--gc-start: 10;--gc-end: 10}}@media(max-width: 1799px){.u-gc-10\\/10\\@to-enormous{--gc-start: 10;--gc-end: 10}}@media(min-width: 1800px){.u-gc-10\\/11\\@from-enormous{--gc-start: 10;--gc-end: 11}}@media(max-width: 1799px){.u-gc-10\\/11\\@to-enormous{--gc-start: 10;--gc-end: 11}}@media(min-width: 1800px){.u-gc-10\\/12\\@from-enormous{--gc-start: 10;--gc-end: 12}}@media(max-width: 1799px){.u-gc-10\\/12\\@to-enormous{--gc-start: 10;--gc-end: 12}}@media(min-width: 1800px){.u-gc-10\\/13\\@from-enormous{--gc-start: 10;--gc-end: 13}}@media(max-width: 1799px){.u-gc-10\\/13\\@to-enormous{--gc-start: 10;--gc-end: 13}}@media(min-width: 1800px){.u-gc-11\\/1\\@from-enormous{--gc-start: 11;--gc-end: 1}}@media(max-width: 1799px){.u-gc-11\\/1\\@to-enormous{--gc-start: 11;--gc-end: 1}}@media(min-width: 1800px){.u-gc-11\\/2\\@from-enormous{--gc-start: 11;--gc-end: 2}}@media(max-width: 1799px){.u-gc-11\\/2\\@to-enormous{--gc-start: 11;--gc-end: 2}}@media(min-width: 1800px){.u-gc-11\\/3\\@from-enormous{--gc-start: 11;--gc-end: 3}}@media(max-width: 1799px){.u-gc-11\\/3\\@to-enormous{--gc-start: 11;--gc-end: 3}}@media(min-width: 1800px){.u-gc-11\\/4\\@from-enormous{--gc-start: 11;--gc-end: 4}}@media(max-width: 1799px){.u-gc-11\\/4\\@to-enormous{--gc-start: 11;--gc-end: 4}}@media(min-width: 1800px){.u-gc-11\\/5\\@from-enormous{--gc-start: 11;--gc-end: 5}}@media(max-width: 1799px){.u-gc-11\\/5\\@to-enormous{--gc-start: 11;--gc-end: 5}}@media(min-width: 1800px){.u-gc-11\\/6\\@from-enormous{--gc-start: 11;--gc-end: 6}}@media(max-width: 1799px){.u-gc-11\\/6\\@to-enormous{--gc-start: 11;--gc-end: 6}}@media(min-width: 1800px){.u-gc-11\\/7\\@from-enormous{--gc-start: 11;--gc-end: 7}}@media(max-width: 1799px){.u-gc-11\\/7\\@to-enormous{--gc-start: 11;--gc-end: 7}}@media(min-width: 1800px){.u-gc-11\\/8\\@from-enormous{--gc-start: 11;--gc-end: 8}}@media(max-width: 1799px){.u-gc-11\\/8\\@to-enormous{--gc-start: 11;--gc-end: 8}}@media(min-width: 1800px){.u-gc-11\\/9\\@from-enormous{--gc-start: 11;--gc-end: 9}}@media(max-width: 1799px){.u-gc-11\\/9\\@to-enormous{--gc-start: 11;--gc-end: 9}}@media(min-width: 1800px){.u-gc-11\\/10\\@from-enormous{--gc-start: 11;--gc-end: 10}}@media(max-width: 1799px){.u-gc-11\\/10\\@to-enormous{--gc-start: 11;--gc-end: 10}}@media(min-width: 1800px){.u-gc-11\\/11\\@from-enormous{--gc-start: 11;--gc-end: 11}}@media(max-width: 1799px){.u-gc-11\\/11\\@to-enormous{--gc-start: 11;--gc-end: 11}}@media(min-width: 1800px){.u-gc-11\\/12\\@from-enormous{--gc-start: 11;--gc-end: 12}}@media(max-width: 1799px){.u-gc-11\\/12\\@to-enormous{--gc-start: 11;--gc-end: 12}}@media(min-width: 1800px){.u-gc-11\\/13\\@from-enormous{--gc-start: 11;--gc-end: 13}}@media(max-width: 1799px){.u-gc-11\\/13\\@to-enormous{--gc-start: 11;--gc-end: 13}}@media(min-width: 1800px){.u-gc-12\\/1\\@from-enormous{--gc-start: 12;--gc-end: 1}}@media(max-width: 1799px){.u-gc-12\\/1\\@to-enormous{--gc-start: 12;--gc-end: 1}}@media(min-width: 1800px){.u-gc-12\\/2\\@from-enormous{--gc-start: 12;--gc-end: 2}}@media(max-width: 1799px){.u-gc-12\\/2\\@to-enormous{--gc-start: 12;--gc-end: 2}}@media(min-width: 1800px){.u-gc-12\\/3\\@from-enormous{--gc-start: 12;--gc-end: 3}}@media(max-width: 1799px){.u-gc-12\\/3\\@to-enormous{--gc-start: 12;--gc-end: 3}}@media(min-width: 1800px){.u-gc-12\\/4\\@from-enormous{--gc-start: 12;--gc-end: 4}}@media(max-width: 1799px){.u-gc-12\\/4\\@to-enormous{--gc-start: 12;--gc-end: 4}}@media(min-width: 1800px){.u-gc-12\\/5\\@from-enormous{--gc-start: 12;--gc-end: 5}}@media(max-width: 1799px){.u-gc-12\\/5\\@to-enormous{--gc-start: 12;--gc-end: 5}}@media(min-width: 1800px){.u-gc-12\\/6\\@from-enormous{--gc-start: 12;--gc-end: 6}}@media(max-width: 1799px){.u-gc-12\\/6\\@to-enormous{--gc-start: 12;--gc-end: 6}}@media(min-width: 1800px){.u-gc-12\\/7\\@from-enormous{--gc-start: 12;--gc-end: 7}}@media(max-width: 1799px){.u-gc-12\\/7\\@to-enormous{--gc-start: 12;--gc-end: 7}}@media(min-width: 1800px){.u-gc-12\\/8\\@from-enormous{--gc-start: 12;--gc-end: 8}}@media(max-width: 1799px){.u-gc-12\\/8\\@to-enormous{--gc-start: 12;--gc-end: 8}}@media(min-width: 1800px){.u-gc-12\\/9\\@from-enormous{--gc-start: 12;--gc-end: 9}}@media(max-width: 1799px){.u-gc-12\\/9\\@to-enormous{--gc-start: 12;--gc-end: 9}}@media(min-width: 1800px){.u-gc-12\\/10\\@from-enormous{--gc-start: 12;--gc-end: 10}}@media(max-width: 1799px){.u-gc-12\\/10\\@to-enormous{--gc-start: 12;--gc-end: 10}}@media(min-width: 1800px){.u-gc-12\\/11\\@from-enormous{--gc-start: 12;--gc-end: 11}}@media(max-width: 1799px){.u-gc-12\\/11\\@to-enormous{--gc-start: 12;--gc-end: 11}}@media(min-width: 1800px){.u-gc-12\\/12\\@from-enormous{--gc-start: 12;--gc-end: 12}}@media(max-width: 1799px){.u-gc-12\\/12\\@to-enormous{--gc-start: 12;--gc-end: 12}}@media(min-width: 1800px){.u-gc-12\\/13\\@from-enormous{--gc-start: 12;--gc-end: 13}}@media(max-width: 1799px){.u-gc-12\\/13\\@to-enormous{--gc-start: 12;--gc-end: 13}}@media(min-width: 1800px){.u-gc-13\\/1\\@from-enormous{--gc-start: 13;--gc-end: 1}}@media(max-width: 1799px){.u-gc-13\\/1\\@to-enormous{--gc-start: 13;--gc-end: 1}}@media(min-width: 1800px){.u-gc-13\\/2\\@from-enormous{--gc-start: 13;--gc-end: 2}}@media(max-width: 1799px){.u-gc-13\\/2\\@to-enormous{--gc-start: 13;--gc-end: 2}}@media(min-width: 1800px){.u-gc-13\\/3\\@from-enormous{--gc-start: 13;--gc-end: 3}}@media(max-width: 1799px){.u-gc-13\\/3\\@to-enormous{--gc-start: 13;--gc-end: 3}}@media(min-width: 1800px){.u-gc-13\\/4\\@from-enormous{--gc-start: 13;--gc-end: 4}}@media(max-width: 1799px){.u-gc-13\\/4\\@to-enormous{--gc-start: 13;--gc-end: 4}}@media(min-width: 1800px){.u-gc-13\\/5\\@from-enormous{--gc-start: 13;--gc-end: 5}}@media(max-width: 1799px){.u-gc-13\\/5\\@to-enormous{--gc-start: 13;--gc-end: 5}}@media(min-width: 1800px){.u-gc-13\\/6\\@from-enormous{--gc-start: 13;--gc-end: 6}}@media(max-width: 1799px){.u-gc-13\\/6\\@to-enormous{--gc-start: 13;--gc-end: 6}}@media(min-width: 1800px){.u-gc-13\\/7\\@from-enormous{--gc-start: 13;--gc-end: 7}}@media(max-width: 1799px){.u-gc-13\\/7\\@to-enormous{--gc-start: 13;--gc-end: 7}}@media(min-width: 1800px){.u-gc-13\\/8\\@from-enormous{--gc-start: 13;--gc-end: 8}}@media(max-width: 1799px){.u-gc-13\\/8\\@to-enormous{--gc-start: 13;--gc-end: 8}}@media(min-width: 1800px){.u-gc-13\\/9\\@from-enormous{--gc-start: 13;--gc-end: 9}}@media(max-width: 1799px){.u-gc-13\\/9\\@to-enormous{--gc-start: 13;--gc-end: 9}}@media(min-width: 1800px){.u-gc-13\\/10\\@from-enormous{--gc-start: 13;--gc-end: 10}}@media(max-width: 1799px){.u-gc-13\\/10\\@to-enormous{--gc-start: 13;--gc-end: 10}}@media(min-width: 1800px){.u-gc-13\\/11\\@from-enormous{--gc-start: 13;--gc-end: 11}}@media(max-width: 1799px){.u-gc-13\\/11\\@to-enormous{--gc-start: 13;--gc-end: 11}}@media(min-width: 1800px){.u-gc-13\\/12\\@from-enormous{--gc-start: 13;--gc-end: 12}}@media(max-width: 1799px){.u-gc-13\\/12\\@to-enormous{--gc-start: 13;--gc-end: 12}}@media(min-width: 1800px){.u-gc-13\\/13\\@from-enormous{--gc-start: 13;--gc-end: 13}}@media(max-width: 1799px){.u-gc-13\\/13\\@to-enormous{--gc-start: 13;--gc-end: 13}}@media(min-width: 2000px){.u-gc-1\\/1\\@from-gigantic{--gc-start: 1;--gc-end: 1}}@media(max-width: 1999px){.u-gc-1\\/1\\@to-gigantic{--gc-start: 1;--gc-end: 1}}@media(min-width: 2000px){.u-gc-1\\/2\\@from-gigantic{--gc-start: 1;--gc-end: 2}}@media(max-width: 1999px){.u-gc-1\\/2\\@to-gigantic{--gc-start: 1;--gc-end: 2}}@media(min-width: 2000px){.u-gc-1\\/3\\@from-gigantic{--gc-start: 1;--gc-end: 3}}@media(max-width: 1999px){.u-gc-1\\/3\\@to-gigantic{--gc-start: 1;--gc-end: 3}}@media(min-width: 2000px){.u-gc-1\\/4\\@from-gigantic{--gc-start: 1;--gc-end: 4}}@media(max-width: 1999px){.u-gc-1\\/4\\@to-gigantic{--gc-start: 1;--gc-end: 4}}@media(min-width: 2000px){.u-gc-1\\/5\\@from-gigantic{--gc-start: 1;--gc-end: 5}}@media(max-width: 1999px){.u-gc-1\\/5\\@to-gigantic{--gc-start: 1;--gc-end: 5}}@media(min-width: 2000px){.u-gc-1\\/6\\@from-gigantic{--gc-start: 1;--gc-end: 6}}@media(max-width: 1999px){.u-gc-1\\/6\\@to-gigantic{--gc-start: 1;--gc-end: 6}}@media(min-width: 2000px){.u-gc-1\\/7\\@from-gigantic{--gc-start: 1;--gc-end: 7}}@media(max-width: 1999px){.u-gc-1\\/7\\@to-gigantic{--gc-start: 1;--gc-end: 7}}@media(min-width: 2000px){.u-gc-1\\/8\\@from-gigantic{--gc-start: 1;--gc-end: 8}}@media(max-width: 1999px){.u-gc-1\\/8\\@to-gigantic{--gc-start: 1;--gc-end: 8}}@media(min-width: 2000px){.u-gc-1\\/9\\@from-gigantic{--gc-start: 1;--gc-end: 9}}@media(max-width: 1999px){.u-gc-1\\/9\\@to-gigantic{--gc-start: 1;--gc-end: 9}}@media(min-width: 2000px){.u-gc-1\\/10\\@from-gigantic{--gc-start: 1;--gc-end: 10}}@media(max-width: 1999px){.u-gc-1\\/10\\@to-gigantic{--gc-start: 1;--gc-end: 10}}@media(min-width: 2000px){.u-gc-1\\/11\\@from-gigantic{--gc-start: 1;--gc-end: 11}}@media(max-width: 1999px){.u-gc-1\\/11\\@to-gigantic{--gc-start: 1;--gc-end: 11}}@media(min-width: 2000px){.u-gc-1\\/12\\@from-gigantic{--gc-start: 1;--gc-end: 12}}@media(max-width: 1999px){.u-gc-1\\/12\\@to-gigantic{--gc-start: 1;--gc-end: 12}}@media(min-width: 2000px){.u-gc-1\\/13\\@from-gigantic{--gc-start: 1;--gc-end: 13}}@media(max-width: 1999px){.u-gc-1\\/13\\@to-gigantic{--gc-start: 1;--gc-end: 13}}@media(min-width: 2000px){.u-gc-2\\/1\\@from-gigantic{--gc-start: 2;--gc-end: 1}}@media(max-width: 1999px){.u-gc-2\\/1\\@to-gigantic{--gc-start: 2;--gc-end: 1}}@media(min-width: 2000px){.u-gc-2\\/2\\@from-gigantic{--gc-start: 2;--gc-end: 2}}@media(max-width: 1999px){.u-gc-2\\/2\\@to-gigantic{--gc-start: 2;--gc-end: 2}}@media(min-width: 2000px){.u-gc-2\\/3\\@from-gigantic{--gc-start: 2;--gc-end: 3}}@media(max-width: 1999px){.u-gc-2\\/3\\@to-gigantic{--gc-start: 2;--gc-end: 3}}@media(min-width: 2000px){.u-gc-2\\/4\\@from-gigantic{--gc-start: 2;--gc-end: 4}}@media(max-width: 1999px){.u-gc-2\\/4\\@to-gigantic{--gc-start: 2;--gc-end: 4}}@media(min-width: 2000px){.u-gc-2\\/5\\@from-gigantic{--gc-start: 2;--gc-end: 5}}@media(max-width: 1999px){.u-gc-2\\/5\\@to-gigantic{--gc-start: 2;--gc-end: 5}}@media(min-width: 2000px){.u-gc-2\\/6\\@from-gigantic{--gc-start: 2;--gc-end: 6}}@media(max-width: 1999px){.u-gc-2\\/6\\@to-gigantic{--gc-start: 2;--gc-end: 6}}@media(min-width: 2000px){.u-gc-2\\/7\\@from-gigantic{--gc-start: 2;--gc-end: 7}}@media(max-width: 1999px){.u-gc-2\\/7\\@to-gigantic{--gc-start: 2;--gc-end: 7}}@media(min-width: 2000px){.u-gc-2\\/8\\@from-gigantic{--gc-start: 2;--gc-end: 8}}@media(max-width: 1999px){.u-gc-2\\/8\\@to-gigantic{--gc-start: 2;--gc-end: 8}}@media(min-width: 2000px){.u-gc-2\\/9\\@from-gigantic{--gc-start: 2;--gc-end: 9}}@media(max-width: 1999px){.u-gc-2\\/9\\@to-gigantic{--gc-start: 2;--gc-end: 9}}@media(min-width: 2000px){.u-gc-2\\/10\\@from-gigantic{--gc-start: 2;--gc-end: 10}}@media(max-width: 1999px){.u-gc-2\\/10\\@to-gigantic{--gc-start: 2;--gc-end: 10}}@media(min-width: 2000px){.u-gc-2\\/11\\@from-gigantic{--gc-start: 2;--gc-end: 11}}@media(max-width: 1999px){.u-gc-2\\/11\\@to-gigantic{--gc-start: 2;--gc-end: 11}}@media(min-width: 2000px){.u-gc-2\\/12\\@from-gigantic{--gc-start: 2;--gc-end: 12}}@media(max-width: 1999px){.u-gc-2\\/12\\@to-gigantic{--gc-start: 2;--gc-end: 12}}@media(min-width: 2000px){.u-gc-2\\/13\\@from-gigantic{--gc-start: 2;--gc-end: 13}}@media(max-width: 1999px){.u-gc-2\\/13\\@to-gigantic{--gc-start: 2;--gc-end: 13}}@media(min-width: 2000px){.u-gc-3\\/1\\@from-gigantic{--gc-start: 3;--gc-end: 1}}@media(max-width: 1999px){.u-gc-3\\/1\\@to-gigantic{--gc-start: 3;--gc-end: 1}}@media(min-width: 2000px){.u-gc-3\\/2\\@from-gigantic{--gc-start: 3;--gc-end: 2}}@media(max-width: 1999px){.u-gc-3\\/2\\@to-gigantic{--gc-start: 3;--gc-end: 2}}@media(min-width: 2000px){.u-gc-3\\/3\\@from-gigantic{--gc-start: 3;--gc-end: 3}}@media(max-width: 1999px){.u-gc-3\\/3\\@to-gigantic{--gc-start: 3;--gc-end: 3}}@media(min-width: 2000px){.u-gc-3\\/4\\@from-gigantic{--gc-start: 3;--gc-end: 4}}@media(max-width: 1999px){.u-gc-3\\/4\\@to-gigantic{--gc-start: 3;--gc-end: 4}}@media(min-width: 2000px){.u-gc-3\\/5\\@from-gigantic{--gc-start: 3;--gc-end: 5}}@media(max-width: 1999px){.u-gc-3\\/5\\@to-gigantic{--gc-start: 3;--gc-end: 5}}@media(min-width: 2000px){.u-gc-3\\/6\\@from-gigantic{--gc-start: 3;--gc-end: 6}}@media(max-width: 1999px){.u-gc-3\\/6\\@to-gigantic{--gc-start: 3;--gc-end: 6}}@media(min-width: 2000px){.u-gc-3\\/7\\@from-gigantic{--gc-start: 3;--gc-end: 7}}@media(max-width: 1999px){.u-gc-3\\/7\\@to-gigantic{--gc-start: 3;--gc-end: 7}}@media(min-width: 2000px){.u-gc-3\\/8\\@from-gigantic{--gc-start: 3;--gc-end: 8}}@media(max-width: 1999px){.u-gc-3\\/8\\@to-gigantic{--gc-start: 3;--gc-end: 8}}@media(min-width: 2000px){.u-gc-3\\/9\\@from-gigantic{--gc-start: 3;--gc-end: 9}}@media(max-width: 1999px){.u-gc-3\\/9\\@to-gigantic{--gc-start: 3;--gc-end: 9}}@media(min-width: 2000px){.u-gc-3\\/10\\@from-gigantic{--gc-start: 3;--gc-end: 10}}@media(max-width: 1999px){.u-gc-3\\/10\\@to-gigantic{--gc-start: 3;--gc-end: 10}}@media(min-width: 2000px){.u-gc-3\\/11\\@from-gigantic{--gc-start: 3;--gc-end: 11}}@media(max-width: 1999px){.u-gc-3\\/11\\@to-gigantic{--gc-start: 3;--gc-end: 11}}@media(min-width: 2000px){.u-gc-3\\/12\\@from-gigantic{--gc-start: 3;--gc-end: 12}}@media(max-width: 1999px){.u-gc-3\\/12\\@to-gigantic{--gc-start: 3;--gc-end: 12}}@media(min-width: 2000px){.u-gc-3\\/13\\@from-gigantic{--gc-start: 3;--gc-end: 13}}@media(max-width: 1999px){.u-gc-3\\/13\\@to-gigantic{--gc-start: 3;--gc-end: 13}}@media(min-width: 2000px){.u-gc-4\\/1\\@from-gigantic{--gc-start: 4;--gc-end: 1}}@media(max-width: 1999px){.u-gc-4\\/1\\@to-gigantic{--gc-start: 4;--gc-end: 1}}@media(min-width: 2000px){.u-gc-4\\/2\\@from-gigantic{--gc-start: 4;--gc-end: 2}}@media(max-width: 1999px){.u-gc-4\\/2\\@to-gigantic{--gc-start: 4;--gc-end: 2}}@media(min-width: 2000px){.u-gc-4\\/3\\@from-gigantic{--gc-start: 4;--gc-end: 3}}@media(max-width: 1999px){.u-gc-4\\/3\\@to-gigantic{--gc-start: 4;--gc-end: 3}}@media(min-width: 2000px){.u-gc-4\\/4\\@from-gigantic{--gc-start: 4;--gc-end: 4}}@media(max-width: 1999px){.u-gc-4\\/4\\@to-gigantic{--gc-start: 4;--gc-end: 4}}@media(min-width: 2000px){.u-gc-4\\/5\\@from-gigantic{--gc-start: 4;--gc-end: 5}}@media(max-width: 1999px){.u-gc-4\\/5\\@to-gigantic{--gc-start: 4;--gc-end: 5}}@media(min-width: 2000px){.u-gc-4\\/6\\@from-gigantic{--gc-start: 4;--gc-end: 6}}@media(max-width: 1999px){.u-gc-4\\/6\\@to-gigantic{--gc-start: 4;--gc-end: 6}}@media(min-width: 2000px){.u-gc-4\\/7\\@from-gigantic{--gc-start: 4;--gc-end: 7}}@media(max-width: 1999px){.u-gc-4\\/7\\@to-gigantic{--gc-start: 4;--gc-end: 7}}@media(min-width: 2000px){.u-gc-4\\/8\\@from-gigantic{--gc-start: 4;--gc-end: 8}}@media(max-width: 1999px){.u-gc-4\\/8\\@to-gigantic{--gc-start: 4;--gc-end: 8}}@media(min-width: 2000px){.u-gc-4\\/9\\@from-gigantic{--gc-start: 4;--gc-end: 9}}@media(max-width: 1999px){.u-gc-4\\/9\\@to-gigantic{--gc-start: 4;--gc-end: 9}}@media(min-width: 2000px){.u-gc-4\\/10\\@from-gigantic{--gc-start: 4;--gc-end: 10}}@media(max-width: 1999px){.u-gc-4\\/10\\@to-gigantic{--gc-start: 4;--gc-end: 10}}@media(min-width: 2000px){.u-gc-4\\/11\\@from-gigantic{--gc-start: 4;--gc-end: 11}}@media(max-width: 1999px){.u-gc-4\\/11\\@to-gigantic{--gc-start: 4;--gc-end: 11}}@media(min-width: 2000px){.u-gc-4\\/12\\@from-gigantic{--gc-start: 4;--gc-end: 12}}@media(max-width: 1999px){.u-gc-4\\/12\\@to-gigantic{--gc-start: 4;--gc-end: 12}}@media(min-width: 2000px){.u-gc-4\\/13\\@from-gigantic{--gc-start: 4;--gc-end: 13}}@media(max-width: 1999px){.u-gc-4\\/13\\@to-gigantic{--gc-start: 4;--gc-end: 13}}@media(min-width: 2000px){.u-gc-5\\/1\\@from-gigantic{--gc-start: 5;--gc-end: 1}}@media(max-width: 1999px){.u-gc-5\\/1\\@to-gigantic{--gc-start: 5;--gc-end: 1}}@media(min-width: 2000px){.u-gc-5\\/2\\@from-gigantic{--gc-start: 5;--gc-end: 2}}@media(max-width: 1999px){.u-gc-5\\/2\\@to-gigantic{--gc-start: 5;--gc-end: 2}}@media(min-width: 2000px){.u-gc-5\\/3\\@from-gigantic{--gc-start: 5;--gc-end: 3}}@media(max-width: 1999px){.u-gc-5\\/3\\@to-gigantic{--gc-start: 5;--gc-end: 3}}@media(min-width: 2000px){.u-gc-5\\/4\\@from-gigantic{--gc-start: 5;--gc-end: 4}}@media(max-width: 1999px){.u-gc-5\\/4\\@to-gigantic{--gc-start: 5;--gc-end: 4}}@media(min-width: 2000px){.u-gc-5\\/5\\@from-gigantic{--gc-start: 5;--gc-end: 5}}@media(max-width: 1999px){.u-gc-5\\/5\\@to-gigantic{--gc-start: 5;--gc-end: 5}}@media(min-width: 2000px){.u-gc-5\\/6\\@from-gigantic{--gc-start: 5;--gc-end: 6}}@media(max-width: 1999px){.u-gc-5\\/6\\@to-gigantic{--gc-start: 5;--gc-end: 6}}@media(min-width: 2000px){.u-gc-5\\/7\\@from-gigantic{--gc-start: 5;--gc-end: 7}}@media(max-width: 1999px){.u-gc-5\\/7\\@to-gigantic{--gc-start: 5;--gc-end: 7}}@media(min-width: 2000px){.u-gc-5\\/8\\@from-gigantic{--gc-start: 5;--gc-end: 8}}@media(max-width: 1999px){.u-gc-5\\/8\\@to-gigantic{--gc-start: 5;--gc-end: 8}}@media(min-width: 2000px){.u-gc-5\\/9\\@from-gigantic{--gc-start: 5;--gc-end: 9}}@media(max-width: 1999px){.u-gc-5\\/9\\@to-gigantic{--gc-start: 5;--gc-end: 9}}@media(min-width: 2000px){.u-gc-5\\/10\\@from-gigantic{--gc-start: 5;--gc-end: 10}}@media(max-width: 1999px){.u-gc-5\\/10\\@to-gigantic{--gc-start: 5;--gc-end: 10}}@media(min-width: 2000px){.u-gc-5\\/11\\@from-gigantic{--gc-start: 5;--gc-end: 11}}@media(max-width: 1999px){.u-gc-5\\/11\\@to-gigantic{--gc-start: 5;--gc-end: 11}}@media(min-width: 2000px){.u-gc-5\\/12\\@from-gigantic{--gc-start: 5;--gc-end: 12}}@media(max-width: 1999px){.u-gc-5\\/12\\@to-gigantic{--gc-start: 5;--gc-end: 12}}@media(min-width: 2000px){.u-gc-5\\/13\\@from-gigantic{--gc-start: 5;--gc-end: 13}}@media(max-width: 1999px){.u-gc-5\\/13\\@to-gigantic{--gc-start: 5;--gc-end: 13}}@media(min-width: 2000px){.u-gc-6\\/1\\@from-gigantic{--gc-start: 6;--gc-end: 1}}@media(max-width: 1999px){.u-gc-6\\/1\\@to-gigantic{--gc-start: 6;--gc-end: 1}}@media(min-width: 2000px){.u-gc-6\\/2\\@from-gigantic{--gc-start: 6;--gc-end: 2}}@media(max-width: 1999px){.u-gc-6\\/2\\@to-gigantic{--gc-start: 6;--gc-end: 2}}@media(min-width: 2000px){.u-gc-6\\/3\\@from-gigantic{--gc-start: 6;--gc-end: 3}}@media(max-width: 1999px){.u-gc-6\\/3\\@to-gigantic{--gc-start: 6;--gc-end: 3}}@media(min-width: 2000px){.u-gc-6\\/4\\@from-gigantic{--gc-start: 6;--gc-end: 4}}@media(max-width: 1999px){.u-gc-6\\/4\\@to-gigantic{--gc-start: 6;--gc-end: 4}}@media(min-width: 2000px){.u-gc-6\\/5\\@from-gigantic{--gc-start: 6;--gc-end: 5}}@media(max-width: 1999px){.u-gc-6\\/5\\@to-gigantic{--gc-start: 6;--gc-end: 5}}@media(min-width: 2000px){.u-gc-6\\/6\\@from-gigantic{--gc-start: 6;--gc-end: 6}}@media(max-width: 1999px){.u-gc-6\\/6\\@to-gigantic{--gc-start: 6;--gc-end: 6}}@media(min-width: 2000px){.u-gc-6\\/7\\@from-gigantic{--gc-start: 6;--gc-end: 7}}@media(max-width: 1999px){.u-gc-6\\/7\\@to-gigantic{--gc-start: 6;--gc-end: 7}}@media(min-width: 2000px){.u-gc-6\\/8\\@from-gigantic{--gc-start: 6;--gc-end: 8}}@media(max-width: 1999px){.u-gc-6\\/8\\@to-gigantic{--gc-start: 6;--gc-end: 8}}@media(min-width: 2000px){.u-gc-6\\/9\\@from-gigantic{--gc-start: 6;--gc-end: 9}}@media(max-width: 1999px){.u-gc-6\\/9\\@to-gigantic{--gc-start: 6;--gc-end: 9}}@media(min-width: 2000px){.u-gc-6\\/10\\@from-gigantic{--gc-start: 6;--gc-end: 10}}@media(max-width: 1999px){.u-gc-6\\/10\\@to-gigantic{--gc-start: 6;--gc-end: 10}}@media(min-width: 2000px){.u-gc-6\\/11\\@from-gigantic{--gc-start: 6;--gc-end: 11}}@media(max-width: 1999px){.u-gc-6\\/11\\@to-gigantic{--gc-start: 6;--gc-end: 11}}@media(min-width: 2000px){.u-gc-6\\/12\\@from-gigantic{--gc-start: 6;--gc-end: 12}}@media(max-width: 1999px){.u-gc-6\\/12\\@to-gigantic{--gc-start: 6;--gc-end: 12}}@media(min-width: 2000px){.u-gc-6\\/13\\@from-gigantic{--gc-start: 6;--gc-end: 13}}@media(max-width: 1999px){.u-gc-6\\/13\\@to-gigantic{--gc-start: 6;--gc-end: 13}}@media(min-width: 2000px){.u-gc-7\\/1\\@from-gigantic{--gc-start: 7;--gc-end: 1}}@media(max-width: 1999px){.u-gc-7\\/1\\@to-gigantic{--gc-start: 7;--gc-end: 1}}@media(min-width: 2000px){.u-gc-7\\/2\\@from-gigantic{--gc-start: 7;--gc-end: 2}}@media(max-width: 1999px){.u-gc-7\\/2\\@to-gigantic{--gc-start: 7;--gc-end: 2}}@media(min-width: 2000px){.u-gc-7\\/3\\@from-gigantic{--gc-start: 7;--gc-end: 3}}@media(max-width: 1999px){.u-gc-7\\/3\\@to-gigantic{--gc-start: 7;--gc-end: 3}}@media(min-width: 2000px){.u-gc-7\\/4\\@from-gigantic{--gc-start: 7;--gc-end: 4}}@media(max-width: 1999px){.u-gc-7\\/4\\@to-gigantic{--gc-start: 7;--gc-end: 4}}@media(min-width: 2000px){.u-gc-7\\/5\\@from-gigantic{--gc-start: 7;--gc-end: 5}}@media(max-width: 1999px){.u-gc-7\\/5\\@to-gigantic{--gc-start: 7;--gc-end: 5}}@media(min-width: 2000px){.u-gc-7\\/6\\@from-gigantic{--gc-start: 7;--gc-end: 6}}@media(max-width: 1999px){.u-gc-7\\/6\\@to-gigantic{--gc-start: 7;--gc-end: 6}}@media(min-width: 2000px){.u-gc-7\\/7\\@from-gigantic{--gc-start: 7;--gc-end: 7}}@media(max-width: 1999px){.u-gc-7\\/7\\@to-gigantic{--gc-start: 7;--gc-end: 7}}@media(min-width: 2000px){.u-gc-7\\/8\\@from-gigantic{--gc-start: 7;--gc-end: 8}}@media(max-width: 1999px){.u-gc-7\\/8\\@to-gigantic{--gc-start: 7;--gc-end: 8}}@media(min-width: 2000px){.u-gc-7\\/9\\@from-gigantic{--gc-start: 7;--gc-end: 9}}@media(max-width: 1999px){.u-gc-7\\/9\\@to-gigantic{--gc-start: 7;--gc-end: 9}}@media(min-width: 2000px){.u-gc-7\\/10\\@from-gigantic{--gc-start: 7;--gc-end: 10}}@media(max-width: 1999px){.u-gc-7\\/10\\@to-gigantic{--gc-start: 7;--gc-end: 10}}@media(min-width: 2000px){.u-gc-7\\/11\\@from-gigantic{--gc-start: 7;--gc-end: 11}}@media(max-width: 1999px){.u-gc-7\\/11\\@to-gigantic{--gc-start: 7;--gc-end: 11}}@media(min-width: 2000px){.u-gc-7\\/12\\@from-gigantic{--gc-start: 7;--gc-end: 12}}@media(max-width: 1999px){.u-gc-7\\/12\\@to-gigantic{--gc-start: 7;--gc-end: 12}}@media(min-width: 2000px){.u-gc-7\\/13\\@from-gigantic{--gc-start: 7;--gc-end: 13}}@media(max-width: 1999px){.u-gc-7\\/13\\@to-gigantic{--gc-start: 7;--gc-end: 13}}@media(min-width: 2000px){.u-gc-8\\/1\\@from-gigantic{--gc-start: 8;--gc-end: 1}}@media(max-width: 1999px){.u-gc-8\\/1\\@to-gigantic{--gc-start: 8;--gc-end: 1}}@media(min-width: 2000px){.u-gc-8\\/2\\@from-gigantic{--gc-start: 8;--gc-end: 2}}@media(max-width: 1999px){.u-gc-8\\/2\\@to-gigantic{--gc-start: 8;--gc-end: 2}}@media(min-width: 2000px){.u-gc-8\\/3\\@from-gigantic{--gc-start: 8;--gc-end: 3}}@media(max-width: 1999px){.u-gc-8\\/3\\@to-gigantic{--gc-start: 8;--gc-end: 3}}@media(min-width: 2000px){.u-gc-8\\/4\\@from-gigantic{--gc-start: 8;--gc-end: 4}}@media(max-width: 1999px){.u-gc-8\\/4\\@to-gigantic{--gc-start: 8;--gc-end: 4}}@media(min-width: 2000px){.u-gc-8\\/5\\@from-gigantic{--gc-start: 8;--gc-end: 5}}@media(max-width: 1999px){.u-gc-8\\/5\\@to-gigantic{--gc-start: 8;--gc-end: 5}}@media(min-width: 2000px){.u-gc-8\\/6\\@from-gigantic{--gc-start: 8;--gc-end: 6}}@media(max-width: 1999px){.u-gc-8\\/6\\@to-gigantic{--gc-start: 8;--gc-end: 6}}@media(min-width: 2000px){.u-gc-8\\/7\\@from-gigantic{--gc-start: 8;--gc-end: 7}}@media(max-width: 1999px){.u-gc-8\\/7\\@to-gigantic{--gc-start: 8;--gc-end: 7}}@media(min-width: 2000px){.u-gc-8\\/8\\@from-gigantic{--gc-start: 8;--gc-end: 8}}@media(max-width: 1999px){.u-gc-8\\/8\\@to-gigantic{--gc-start: 8;--gc-end: 8}}@media(min-width: 2000px){.u-gc-8\\/9\\@from-gigantic{--gc-start: 8;--gc-end: 9}}@media(max-width: 1999px){.u-gc-8\\/9\\@to-gigantic{--gc-start: 8;--gc-end: 9}}@media(min-width: 2000px){.u-gc-8\\/10\\@from-gigantic{--gc-start: 8;--gc-end: 10}}@media(max-width: 1999px){.u-gc-8\\/10\\@to-gigantic{--gc-start: 8;--gc-end: 10}}@media(min-width: 2000px){.u-gc-8\\/11\\@from-gigantic{--gc-start: 8;--gc-end: 11}}@media(max-width: 1999px){.u-gc-8\\/11\\@to-gigantic{--gc-start: 8;--gc-end: 11}}@media(min-width: 2000px){.u-gc-8\\/12\\@from-gigantic{--gc-start: 8;--gc-end: 12}}@media(max-width: 1999px){.u-gc-8\\/12\\@to-gigantic{--gc-start: 8;--gc-end: 12}}@media(min-width: 2000px){.u-gc-8\\/13\\@from-gigantic{--gc-start: 8;--gc-end: 13}}@media(max-width: 1999px){.u-gc-8\\/13\\@to-gigantic{--gc-start: 8;--gc-end: 13}}@media(min-width: 2000px){.u-gc-9\\/1\\@from-gigantic{--gc-start: 9;--gc-end: 1}}@media(max-width: 1999px){.u-gc-9\\/1\\@to-gigantic{--gc-start: 9;--gc-end: 1}}@media(min-width: 2000px){.u-gc-9\\/2\\@from-gigantic{--gc-start: 9;--gc-end: 2}}@media(max-width: 1999px){.u-gc-9\\/2\\@to-gigantic{--gc-start: 9;--gc-end: 2}}@media(min-width: 2000px){.u-gc-9\\/3\\@from-gigantic{--gc-start: 9;--gc-end: 3}}@media(max-width: 1999px){.u-gc-9\\/3\\@to-gigantic{--gc-start: 9;--gc-end: 3}}@media(min-width: 2000px){.u-gc-9\\/4\\@from-gigantic{--gc-start: 9;--gc-end: 4}}@media(max-width: 1999px){.u-gc-9\\/4\\@to-gigantic{--gc-start: 9;--gc-end: 4}}@media(min-width: 2000px){.u-gc-9\\/5\\@from-gigantic{--gc-start: 9;--gc-end: 5}}@media(max-width: 1999px){.u-gc-9\\/5\\@to-gigantic{--gc-start: 9;--gc-end: 5}}@media(min-width: 2000px){.u-gc-9\\/6\\@from-gigantic{--gc-start: 9;--gc-end: 6}}@media(max-width: 1999px){.u-gc-9\\/6\\@to-gigantic{--gc-start: 9;--gc-end: 6}}@media(min-width: 2000px){.u-gc-9\\/7\\@from-gigantic{--gc-start: 9;--gc-end: 7}}@media(max-width: 1999px){.u-gc-9\\/7\\@to-gigantic{--gc-start: 9;--gc-end: 7}}@media(min-width: 2000px){.u-gc-9\\/8\\@from-gigantic{--gc-start: 9;--gc-end: 8}}@media(max-width: 1999px){.u-gc-9\\/8\\@to-gigantic{--gc-start: 9;--gc-end: 8}}@media(min-width: 2000px){.u-gc-9\\/9\\@from-gigantic{--gc-start: 9;--gc-end: 9}}@media(max-width: 1999px){.u-gc-9\\/9\\@to-gigantic{--gc-start: 9;--gc-end: 9}}@media(min-width: 2000px){.u-gc-9\\/10\\@from-gigantic{--gc-start: 9;--gc-end: 10}}@media(max-width: 1999px){.u-gc-9\\/10\\@to-gigantic{--gc-start: 9;--gc-end: 10}}@media(min-width: 2000px){.u-gc-9\\/11\\@from-gigantic{--gc-start: 9;--gc-end: 11}}@media(max-width: 1999px){.u-gc-9\\/11\\@to-gigantic{--gc-start: 9;--gc-end: 11}}@media(min-width: 2000px){.u-gc-9\\/12\\@from-gigantic{--gc-start: 9;--gc-end: 12}}@media(max-width: 1999px){.u-gc-9\\/12\\@to-gigantic{--gc-start: 9;--gc-end: 12}}@media(min-width: 2000px){.u-gc-9\\/13\\@from-gigantic{--gc-start: 9;--gc-end: 13}}@media(max-width: 1999px){.u-gc-9\\/13\\@to-gigantic{--gc-start: 9;--gc-end: 13}}@media(min-width: 2000px){.u-gc-10\\/1\\@from-gigantic{--gc-start: 10;--gc-end: 1}}@media(max-width: 1999px){.u-gc-10\\/1\\@to-gigantic{--gc-start: 10;--gc-end: 1}}@media(min-width: 2000px){.u-gc-10\\/2\\@from-gigantic{--gc-start: 10;--gc-end: 2}}@media(max-width: 1999px){.u-gc-10\\/2\\@to-gigantic{--gc-start: 10;--gc-end: 2}}@media(min-width: 2000px){.u-gc-10\\/3\\@from-gigantic{--gc-start: 10;--gc-end: 3}}@media(max-width: 1999px){.u-gc-10\\/3\\@to-gigantic{--gc-start: 10;--gc-end: 3}}@media(min-width: 2000px){.u-gc-10\\/4\\@from-gigantic{--gc-start: 10;--gc-end: 4}}@media(max-width: 1999px){.u-gc-10\\/4\\@to-gigantic{--gc-start: 10;--gc-end: 4}}@media(min-width: 2000px){.u-gc-10\\/5\\@from-gigantic{--gc-start: 10;--gc-end: 5}}@media(max-width: 1999px){.u-gc-10\\/5\\@to-gigantic{--gc-start: 10;--gc-end: 5}}@media(min-width: 2000px){.u-gc-10\\/6\\@from-gigantic{--gc-start: 10;--gc-end: 6}}@media(max-width: 1999px){.u-gc-10\\/6\\@to-gigantic{--gc-start: 10;--gc-end: 6}}@media(min-width: 2000px){.u-gc-10\\/7\\@from-gigantic{--gc-start: 10;--gc-end: 7}}@media(max-width: 1999px){.u-gc-10\\/7\\@to-gigantic{--gc-start: 10;--gc-end: 7}}@media(min-width: 2000px){.u-gc-10\\/8\\@from-gigantic{--gc-start: 10;--gc-end: 8}}@media(max-width: 1999px){.u-gc-10\\/8\\@to-gigantic{--gc-start: 10;--gc-end: 8}}@media(min-width: 2000px){.u-gc-10\\/9\\@from-gigantic{--gc-start: 10;--gc-end: 9}}@media(max-width: 1999px){.u-gc-10\\/9\\@to-gigantic{--gc-start: 10;--gc-end: 9}}@media(min-width: 2000px){.u-gc-10\\/10\\@from-gigantic{--gc-start: 10;--gc-end: 10}}@media(max-width: 1999px){.u-gc-10\\/10\\@to-gigantic{--gc-start: 10;--gc-end: 10}}@media(min-width: 2000px){.u-gc-10\\/11\\@from-gigantic{--gc-start: 10;--gc-end: 11}}@media(max-width: 1999px){.u-gc-10\\/11\\@to-gigantic{--gc-start: 10;--gc-end: 11}}@media(min-width: 2000px){.u-gc-10\\/12\\@from-gigantic{--gc-start: 10;--gc-end: 12}}@media(max-width: 1999px){.u-gc-10\\/12\\@to-gigantic{--gc-start: 10;--gc-end: 12}}@media(min-width: 2000px){.u-gc-10\\/13\\@from-gigantic{--gc-start: 10;--gc-end: 13}}@media(max-width: 1999px){.u-gc-10\\/13\\@to-gigantic{--gc-start: 10;--gc-end: 13}}@media(min-width: 2000px){.u-gc-11\\/1\\@from-gigantic{--gc-start: 11;--gc-end: 1}}@media(max-width: 1999px){.u-gc-11\\/1\\@to-gigantic{--gc-start: 11;--gc-end: 1}}@media(min-width: 2000px){.u-gc-11\\/2\\@from-gigantic{--gc-start: 11;--gc-end: 2}}@media(max-width: 1999px){.u-gc-11\\/2\\@to-gigantic{--gc-start: 11;--gc-end: 2}}@media(min-width: 2000px){.u-gc-11\\/3\\@from-gigantic{--gc-start: 11;--gc-end: 3}}@media(max-width: 1999px){.u-gc-11\\/3\\@to-gigantic{--gc-start: 11;--gc-end: 3}}@media(min-width: 2000px){.u-gc-11\\/4\\@from-gigantic{--gc-start: 11;--gc-end: 4}}@media(max-width: 1999px){.u-gc-11\\/4\\@to-gigantic{--gc-start: 11;--gc-end: 4}}@media(min-width: 2000px){.u-gc-11\\/5\\@from-gigantic{--gc-start: 11;--gc-end: 5}}@media(max-width: 1999px){.u-gc-11\\/5\\@to-gigantic{--gc-start: 11;--gc-end: 5}}@media(min-width: 2000px){.u-gc-11\\/6\\@from-gigantic{--gc-start: 11;--gc-end: 6}}@media(max-width: 1999px){.u-gc-11\\/6\\@to-gigantic{--gc-start: 11;--gc-end: 6}}@media(min-width: 2000px){.u-gc-11\\/7\\@from-gigantic{--gc-start: 11;--gc-end: 7}}@media(max-width: 1999px){.u-gc-11\\/7\\@to-gigantic{--gc-start: 11;--gc-end: 7}}@media(min-width: 2000px){.u-gc-11\\/8\\@from-gigantic{--gc-start: 11;--gc-end: 8}}@media(max-width: 1999px){.u-gc-11\\/8\\@to-gigantic{--gc-start: 11;--gc-end: 8}}@media(min-width: 2000px){.u-gc-11\\/9\\@from-gigantic{--gc-start: 11;--gc-end: 9}}@media(max-width: 1999px){.u-gc-11\\/9\\@to-gigantic{--gc-start: 11;--gc-end: 9}}@media(min-width: 2000px){.u-gc-11\\/10\\@from-gigantic{--gc-start: 11;--gc-end: 10}}@media(max-width: 1999px){.u-gc-11\\/10\\@to-gigantic{--gc-start: 11;--gc-end: 10}}@media(min-width: 2000px){.u-gc-11\\/11\\@from-gigantic{--gc-start: 11;--gc-end: 11}}@media(max-width: 1999px){.u-gc-11\\/11\\@to-gigantic{--gc-start: 11;--gc-end: 11}}@media(min-width: 2000px){.u-gc-11\\/12\\@from-gigantic{--gc-start: 11;--gc-end: 12}}@media(max-width: 1999px){.u-gc-11\\/12\\@to-gigantic{--gc-start: 11;--gc-end: 12}}@media(min-width: 2000px){.u-gc-11\\/13\\@from-gigantic{--gc-start: 11;--gc-end: 13}}@media(max-width: 1999px){.u-gc-11\\/13\\@to-gigantic{--gc-start: 11;--gc-end: 13}}@media(min-width: 2000px){.u-gc-12\\/1\\@from-gigantic{--gc-start: 12;--gc-end: 1}}@media(max-width: 1999px){.u-gc-12\\/1\\@to-gigantic{--gc-start: 12;--gc-end: 1}}@media(min-width: 2000px){.u-gc-12\\/2\\@from-gigantic{--gc-start: 12;--gc-end: 2}}@media(max-width: 1999px){.u-gc-12\\/2\\@to-gigantic{--gc-start: 12;--gc-end: 2}}@media(min-width: 2000px){.u-gc-12\\/3\\@from-gigantic{--gc-start: 12;--gc-end: 3}}@media(max-width: 1999px){.u-gc-12\\/3\\@to-gigantic{--gc-start: 12;--gc-end: 3}}@media(min-width: 2000px){.u-gc-12\\/4\\@from-gigantic{--gc-start: 12;--gc-end: 4}}@media(max-width: 1999px){.u-gc-12\\/4\\@to-gigantic{--gc-start: 12;--gc-end: 4}}@media(min-width: 2000px){.u-gc-12\\/5\\@from-gigantic{--gc-start: 12;--gc-end: 5}}@media(max-width: 1999px){.u-gc-12\\/5\\@to-gigantic{--gc-start: 12;--gc-end: 5}}@media(min-width: 2000px){.u-gc-12\\/6\\@from-gigantic{--gc-start: 12;--gc-end: 6}}@media(max-width: 1999px){.u-gc-12\\/6\\@to-gigantic{--gc-start: 12;--gc-end: 6}}@media(min-width: 2000px){.u-gc-12\\/7\\@from-gigantic{--gc-start: 12;--gc-end: 7}}@media(max-width: 1999px){.u-gc-12\\/7\\@to-gigantic{--gc-start: 12;--gc-end: 7}}@media(min-width: 2000px){.u-gc-12\\/8\\@from-gigantic{--gc-start: 12;--gc-end: 8}}@media(max-width: 1999px){.u-gc-12\\/8\\@to-gigantic{--gc-start: 12;--gc-end: 8}}@media(min-width: 2000px){.u-gc-12\\/9\\@from-gigantic{--gc-start: 12;--gc-end: 9}}@media(max-width: 1999px){.u-gc-12\\/9\\@to-gigantic{--gc-start: 12;--gc-end: 9}}@media(min-width: 2000px){.u-gc-12\\/10\\@from-gigantic{--gc-start: 12;--gc-end: 10}}@media(max-width: 1999px){.u-gc-12\\/10\\@to-gigantic{--gc-start: 12;--gc-end: 10}}@media(min-width: 2000px){.u-gc-12\\/11\\@from-gigantic{--gc-start: 12;--gc-end: 11}}@media(max-width: 1999px){.u-gc-12\\/11\\@to-gigantic{--gc-start: 12;--gc-end: 11}}@media(min-width: 2000px){.u-gc-12\\/12\\@from-gigantic{--gc-start: 12;--gc-end: 12}}@media(max-width: 1999px){.u-gc-12\\/12\\@to-gigantic{--gc-start: 12;--gc-end: 12}}@media(min-width: 2000px){.u-gc-12\\/13\\@from-gigantic{--gc-start: 12;--gc-end: 13}}@media(max-width: 1999px){.u-gc-12\\/13\\@to-gigantic{--gc-start: 12;--gc-end: 13}}@media(min-width: 2000px){.u-gc-13\\/1\\@from-gigantic{--gc-start: 13;--gc-end: 1}}@media(max-width: 1999px){.u-gc-13\\/1\\@to-gigantic{--gc-start: 13;--gc-end: 1}}@media(min-width: 2000px){.u-gc-13\\/2\\@from-gigantic{--gc-start: 13;--gc-end: 2}}@media(max-width: 1999px){.u-gc-13\\/2\\@to-gigantic{--gc-start: 13;--gc-end: 2}}@media(min-width: 2000px){.u-gc-13\\/3\\@from-gigantic{--gc-start: 13;--gc-end: 3}}@media(max-width: 1999px){.u-gc-13\\/3\\@to-gigantic{--gc-start: 13;--gc-end: 3}}@media(min-width: 2000px){.u-gc-13\\/4\\@from-gigantic{--gc-start: 13;--gc-end: 4}}@media(max-width: 1999px){.u-gc-13\\/4\\@to-gigantic{--gc-start: 13;--gc-end: 4}}@media(min-width: 2000px){.u-gc-13\\/5\\@from-gigantic{--gc-start: 13;--gc-end: 5}}@media(max-width: 1999px){.u-gc-13\\/5\\@to-gigantic{--gc-start: 13;--gc-end: 5}}@media(min-width: 2000px){.u-gc-13\\/6\\@from-gigantic{--gc-start: 13;--gc-end: 6}}@media(max-width: 1999px){.u-gc-13\\/6\\@to-gigantic{--gc-start: 13;--gc-end: 6}}@media(min-width: 2000px){.u-gc-13\\/7\\@from-gigantic{--gc-start: 13;--gc-end: 7}}@media(max-width: 1999px){.u-gc-13\\/7\\@to-gigantic{--gc-start: 13;--gc-end: 7}}@media(min-width: 2000px){.u-gc-13\\/8\\@from-gigantic{--gc-start: 13;--gc-end: 8}}@media(max-width: 1999px){.u-gc-13\\/8\\@to-gigantic{--gc-start: 13;--gc-end: 8}}@media(min-width: 2000px){.u-gc-13\\/9\\@from-gigantic{--gc-start: 13;--gc-end: 9}}@media(max-width: 1999px){.u-gc-13\\/9\\@to-gigantic{--gc-start: 13;--gc-end: 9}}@media(min-width: 2000px){.u-gc-13\\/10\\@from-gigantic{--gc-start: 13;--gc-end: 10}}@media(max-width: 1999px){.u-gc-13\\/10\\@to-gigantic{--gc-start: 13;--gc-end: 10}}@media(min-width: 2000px){.u-gc-13\\/11\\@from-gigantic{--gc-start: 13;--gc-end: 11}}@media(max-width: 1999px){.u-gc-13\\/11\\@to-gigantic{--gc-start: 13;--gc-end: 11}}@media(min-width: 2000px){.u-gc-13\\/12\\@from-gigantic{--gc-start: 13;--gc-end: 12}}@media(max-width: 1999px){.u-gc-13\\/12\\@to-gigantic{--gc-start: 13;--gc-end: 12}}@media(min-width: 2000px){.u-gc-13\\/13\\@from-gigantic{--gc-start: 13;--gc-end: 13}}@media(max-width: 1999px){.u-gc-13\\/13\\@to-gigantic{--gc-start: 13;--gc-end: 13}}@media(min-width: 2400px){.u-gc-1\\/1\\@from-colossal{--gc-start: 1;--gc-end: 1}}@media(max-width: 2399px){.u-gc-1\\/1\\@to-colossal{--gc-start: 1;--gc-end: 1}}@media(min-width: 2400px){.u-gc-1\\/2\\@from-colossal{--gc-start: 1;--gc-end: 2}}@media(max-width: 2399px){.u-gc-1\\/2\\@to-colossal{--gc-start: 1;--gc-end: 2}}@media(min-width: 2400px){.u-gc-1\\/3\\@from-colossal{--gc-start: 1;--gc-end: 3}}@media(max-width: 2399px){.u-gc-1\\/3\\@to-colossal{--gc-start: 1;--gc-end: 3}}@media(min-width: 2400px){.u-gc-1\\/4\\@from-colossal{--gc-start: 1;--gc-end: 4}}@media(max-width: 2399px){.u-gc-1\\/4\\@to-colossal{--gc-start: 1;--gc-end: 4}}@media(min-width: 2400px){.u-gc-1\\/5\\@from-colossal{--gc-start: 1;--gc-end: 5}}@media(max-width: 2399px){.u-gc-1\\/5\\@to-colossal{--gc-start: 1;--gc-end: 5}}@media(min-width: 2400px){.u-gc-1\\/6\\@from-colossal{--gc-start: 1;--gc-end: 6}}@media(max-width: 2399px){.u-gc-1\\/6\\@to-colossal{--gc-start: 1;--gc-end: 6}}@media(min-width: 2400px){.u-gc-1\\/7\\@from-colossal{--gc-start: 1;--gc-end: 7}}@media(max-width: 2399px){.u-gc-1\\/7\\@to-colossal{--gc-start: 1;--gc-end: 7}}@media(min-width: 2400px){.u-gc-1\\/8\\@from-colossal{--gc-start: 1;--gc-end: 8}}@media(max-width: 2399px){.u-gc-1\\/8\\@to-colossal{--gc-start: 1;--gc-end: 8}}@media(min-width: 2400px){.u-gc-1\\/9\\@from-colossal{--gc-start: 1;--gc-end: 9}}@media(max-width: 2399px){.u-gc-1\\/9\\@to-colossal{--gc-start: 1;--gc-end: 9}}@media(min-width: 2400px){.u-gc-1\\/10\\@from-colossal{--gc-start: 1;--gc-end: 10}}@media(max-width: 2399px){.u-gc-1\\/10\\@to-colossal{--gc-start: 1;--gc-end: 10}}@media(min-width: 2400px){.u-gc-1\\/11\\@from-colossal{--gc-start: 1;--gc-end: 11}}@media(max-width: 2399px){.u-gc-1\\/11\\@to-colossal{--gc-start: 1;--gc-end: 11}}@media(min-width: 2400px){.u-gc-1\\/12\\@from-colossal{--gc-start: 1;--gc-end: 12}}@media(max-width: 2399px){.u-gc-1\\/12\\@to-colossal{--gc-start: 1;--gc-end: 12}}@media(min-width: 2400px){.u-gc-1\\/13\\@from-colossal{--gc-start: 1;--gc-end: 13}}@media(max-width: 2399px){.u-gc-1\\/13\\@to-colossal{--gc-start: 1;--gc-end: 13}}@media(min-width: 2400px){.u-gc-2\\/1\\@from-colossal{--gc-start: 2;--gc-end: 1}}@media(max-width: 2399px){.u-gc-2\\/1\\@to-colossal{--gc-start: 2;--gc-end: 1}}@media(min-width: 2400px){.u-gc-2\\/2\\@from-colossal{--gc-start: 2;--gc-end: 2}}@media(max-width: 2399px){.u-gc-2\\/2\\@to-colossal{--gc-start: 2;--gc-end: 2}}@media(min-width: 2400px){.u-gc-2\\/3\\@from-colossal{--gc-start: 2;--gc-end: 3}}@media(max-width: 2399px){.u-gc-2\\/3\\@to-colossal{--gc-start: 2;--gc-end: 3}}@media(min-width: 2400px){.u-gc-2\\/4\\@from-colossal{--gc-start: 2;--gc-end: 4}}@media(max-width: 2399px){.u-gc-2\\/4\\@to-colossal{--gc-start: 2;--gc-end: 4}}@media(min-width: 2400px){.u-gc-2\\/5\\@from-colossal{--gc-start: 2;--gc-end: 5}}@media(max-width: 2399px){.u-gc-2\\/5\\@to-colossal{--gc-start: 2;--gc-end: 5}}@media(min-width: 2400px){.u-gc-2\\/6\\@from-colossal{--gc-start: 2;--gc-end: 6}}@media(max-width: 2399px){.u-gc-2\\/6\\@to-colossal{--gc-start: 2;--gc-end: 6}}@media(min-width: 2400px){.u-gc-2\\/7\\@from-colossal{--gc-start: 2;--gc-end: 7}}@media(max-width: 2399px){.u-gc-2\\/7\\@to-colossal{--gc-start: 2;--gc-end: 7}}@media(min-width: 2400px){.u-gc-2\\/8\\@from-colossal{--gc-start: 2;--gc-end: 8}}@media(max-width: 2399px){.u-gc-2\\/8\\@to-colossal{--gc-start: 2;--gc-end: 8}}@media(min-width: 2400px){.u-gc-2\\/9\\@from-colossal{--gc-start: 2;--gc-end: 9}}@media(max-width: 2399px){.u-gc-2\\/9\\@to-colossal{--gc-start: 2;--gc-end: 9}}@media(min-width: 2400px){.u-gc-2\\/10\\@from-colossal{--gc-start: 2;--gc-end: 10}}@media(max-width: 2399px){.u-gc-2\\/10\\@to-colossal{--gc-start: 2;--gc-end: 10}}@media(min-width: 2400px){.u-gc-2\\/11\\@from-colossal{--gc-start: 2;--gc-end: 11}}@media(max-width: 2399px){.u-gc-2\\/11\\@to-colossal{--gc-start: 2;--gc-end: 11}}@media(min-width: 2400px){.u-gc-2\\/12\\@from-colossal{--gc-start: 2;--gc-end: 12}}@media(max-width: 2399px){.u-gc-2\\/12\\@to-colossal{--gc-start: 2;--gc-end: 12}}@media(min-width: 2400px){.u-gc-2\\/13\\@from-colossal{--gc-start: 2;--gc-end: 13}}@media(max-width: 2399px){.u-gc-2\\/13\\@to-colossal{--gc-start: 2;--gc-end: 13}}@media(min-width: 2400px){.u-gc-3\\/1\\@from-colossal{--gc-start: 3;--gc-end: 1}}@media(max-width: 2399px){.u-gc-3\\/1\\@to-colossal{--gc-start: 3;--gc-end: 1}}@media(min-width: 2400px){.u-gc-3\\/2\\@from-colossal{--gc-start: 3;--gc-end: 2}}@media(max-width: 2399px){.u-gc-3\\/2\\@to-colossal{--gc-start: 3;--gc-end: 2}}@media(min-width: 2400px){.u-gc-3\\/3\\@from-colossal{--gc-start: 3;--gc-end: 3}}@media(max-width: 2399px){.u-gc-3\\/3\\@to-colossal{--gc-start: 3;--gc-end: 3}}@media(min-width: 2400px){.u-gc-3\\/4\\@from-colossal{--gc-start: 3;--gc-end: 4}}@media(max-width: 2399px){.u-gc-3\\/4\\@to-colossal{--gc-start: 3;--gc-end: 4}}@media(min-width: 2400px){.u-gc-3\\/5\\@from-colossal{--gc-start: 3;--gc-end: 5}}@media(max-width: 2399px){.u-gc-3\\/5\\@to-colossal{--gc-start: 3;--gc-end: 5}}@media(min-width: 2400px){.u-gc-3\\/6\\@from-colossal{--gc-start: 3;--gc-end: 6}}@media(max-width: 2399px){.u-gc-3\\/6\\@to-colossal{--gc-start: 3;--gc-end: 6}}@media(min-width: 2400px){.u-gc-3\\/7\\@from-colossal{--gc-start: 3;--gc-end: 7}}@media(max-width: 2399px){.u-gc-3\\/7\\@to-colossal{--gc-start: 3;--gc-end: 7}}@media(min-width: 2400px){.u-gc-3\\/8\\@from-colossal{--gc-start: 3;--gc-end: 8}}@media(max-width: 2399px){.u-gc-3\\/8\\@to-colossal{--gc-start: 3;--gc-end: 8}}@media(min-width: 2400px){.u-gc-3\\/9\\@from-colossal{--gc-start: 3;--gc-end: 9}}@media(max-width: 2399px){.u-gc-3\\/9\\@to-colossal{--gc-start: 3;--gc-end: 9}}@media(min-width: 2400px){.u-gc-3\\/10\\@from-colossal{--gc-start: 3;--gc-end: 10}}@media(max-width: 2399px){.u-gc-3\\/10\\@to-colossal{--gc-start: 3;--gc-end: 10}}@media(min-width: 2400px){.u-gc-3\\/11\\@from-colossal{--gc-start: 3;--gc-end: 11}}@media(max-width: 2399px){.u-gc-3\\/11\\@to-colossal{--gc-start: 3;--gc-end: 11}}@media(min-width: 2400px){.u-gc-3\\/12\\@from-colossal{--gc-start: 3;--gc-end: 12}}@media(max-width: 2399px){.u-gc-3\\/12\\@to-colossal{--gc-start: 3;--gc-end: 12}}@media(min-width: 2400px){.u-gc-3\\/13\\@from-colossal{--gc-start: 3;--gc-end: 13}}@media(max-width: 2399px){.u-gc-3\\/13\\@to-colossal{--gc-start: 3;--gc-end: 13}}@media(min-width: 2400px){.u-gc-4\\/1\\@from-colossal{--gc-start: 4;--gc-end: 1}}@media(max-width: 2399px){.u-gc-4\\/1\\@to-colossal{--gc-start: 4;--gc-end: 1}}@media(min-width: 2400px){.u-gc-4\\/2\\@from-colossal{--gc-start: 4;--gc-end: 2}}@media(max-width: 2399px){.u-gc-4\\/2\\@to-colossal{--gc-start: 4;--gc-end: 2}}@media(min-width: 2400px){.u-gc-4\\/3\\@from-colossal{--gc-start: 4;--gc-end: 3}}@media(max-width: 2399px){.u-gc-4\\/3\\@to-colossal{--gc-start: 4;--gc-end: 3}}@media(min-width: 2400px){.u-gc-4\\/4\\@from-colossal{--gc-start: 4;--gc-end: 4}}@media(max-width: 2399px){.u-gc-4\\/4\\@to-colossal{--gc-start: 4;--gc-end: 4}}@media(min-width: 2400px){.u-gc-4\\/5\\@from-colossal{--gc-start: 4;--gc-end: 5}}@media(max-width: 2399px){.u-gc-4\\/5\\@to-colossal{--gc-start: 4;--gc-end: 5}}@media(min-width: 2400px){.u-gc-4\\/6\\@from-colossal{--gc-start: 4;--gc-end: 6}}@media(max-width: 2399px){.u-gc-4\\/6\\@to-colossal{--gc-start: 4;--gc-end: 6}}@media(min-width: 2400px){.u-gc-4\\/7\\@from-colossal{--gc-start: 4;--gc-end: 7}}@media(max-width: 2399px){.u-gc-4\\/7\\@to-colossal{--gc-start: 4;--gc-end: 7}}@media(min-width: 2400px){.u-gc-4\\/8\\@from-colossal{--gc-start: 4;--gc-end: 8}}@media(max-width: 2399px){.u-gc-4\\/8\\@to-colossal{--gc-start: 4;--gc-end: 8}}@media(min-width: 2400px){.u-gc-4\\/9\\@from-colossal{--gc-start: 4;--gc-end: 9}}@media(max-width: 2399px){.u-gc-4\\/9\\@to-colossal{--gc-start: 4;--gc-end: 9}}@media(min-width: 2400px){.u-gc-4\\/10\\@from-colossal{--gc-start: 4;--gc-end: 10}}@media(max-width: 2399px){.u-gc-4\\/10\\@to-colossal{--gc-start: 4;--gc-end: 10}}@media(min-width: 2400px){.u-gc-4\\/11\\@from-colossal{--gc-start: 4;--gc-end: 11}}@media(max-width: 2399px){.u-gc-4\\/11\\@to-colossal{--gc-start: 4;--gc-end: 11}}@media(min-width: 2400px){.u-gc-4\\/12\\@from-colossal{--gc-start: 4;--gc-end: 12}}@media(max-width: 2399px){.u-gc-4\\/12\\@to-colossal{--gc-start: 4;--gc-end: 12}}@media(min-width: 2400px){.u-gc-4\\/13\\@from-colossal{--gc-start: 4;--gc-end: 13}}@media(max-width: 2399px){.u-gc-4\\/13\\@to-colossal{--gc-start: 4;--gc-end: 13}}@media(min-width: 2400px){.u-gc-5\\/1\\@from-colossal{--gc-start: 5;--gc-end: 1}}@media(max-width: 2399px){.u-gc-5\\/1\\@to-colossal{--gc-start: 5;--gc-end: 1}}@media(min-width: 2400px){.u-gc-5\\/2\\@from-colossal{--gc-start: 5;--gc-end: 2}}@media(max-width: 2399px){.u-gc-5\\/2\\@to-colossal{--gc-start: 5;--gc-end: 2}}@media(min-width: 2400px){.u-gc-5\\/3\\@from-colossal{--gc-start: 5;--gc-end: 3}}@media(max-width: 2399px){.u-gc-5\\/3\\@to-colossal{--gc-start: 5;--gc-end: 3}}@media(min-width: 2400px){.u-gc-5\\/4\\@from-colossal{--gc-start: 5;--gc-end: 4}}@media(max-width: 2399px){.u-gc-5\\/4\\@to-colossal{--gc-start: 5;--gc-end: 4}}@media(min-width: 2400px){.u-gc-5\\/5\\@from-colossal{--gc-start: 5;--gc-end: 5}}@media(max-width: 2399px){.u-gc-5\\/5\\@to-colossal{--gc-start: 5;--gc-end: 5}}@media(min-width: 2400px){.u-gc-5\\/6\\@from-colossal{--gc-start: 5;--gc-end: 6}}@media(max-width: 2399px){.u-gc-5\\/6\\@to-colossal{--gc-start: 5;--gc-end: 6}}@media(min-width: 2400px){.u-gc-5\\/7\\@from-colossal{--gc-start: 5;--gc-end: 7}}@media(max-width: 2399px){.u-gc-5\\/7\\@to-colossal{--gc-start: 5;--gc-end: 7}}@media(min-width: 2400px){.u-gc-5\\/8\\@from-colossal{--gc-start: 5;--gc-end: 8}}@media(max-width: 2399px){.u-gc-5\\/8\\@to-colossal{--gc-start: 5;--gc-end: 8}}@media(min-width: 2400px){.u-gc-5\\/9\\@from-colossal{--gc-start: 5;--gc-end: 9}}@media(max-width: 2399px){.u-gc-5\\/9\\@to-colossal{--gc-start: 5;--gc-end: 9}}@media(min-width: 2400px){.u-gc-5\\/10\\@from-colossal{--gc-start: 5;--gc-end: 10}}@media(max-width: 2399px){.u-gc-5\\/10\\@to-colossal{--gc-start: 5;--gc-end: 10}}@media(min-width: 2400px){.u-gc-5\\/11\\@from-colossal{--gc-start: 5;--gc-end: 11}}@media(max-width: 2399px){.u-gc-5\\/11\\@to-colossal{--gc-start: 5;--gc-end: 11}}@media(min-width: 2400px){.u-gc-5\\/12\\@from-colossal{--gc-start: 5;--gc-end: 12}}@media(max-width: 2399px){.u-gc-5\\/12\\@to-colossal{--gc-start: 5;--gc-end: 12}}@media(min-width: 2400px){.u-gc-5\\/13\\@from-colossal{--gc-start: 5;--gc-end: 13}}@media(max-width: 2399px){.u-gc-5\\/13\\@to-colossal{--gc-start: 5;--gc-end: 13}}@media(min-width: 2400px){.u-gc-6\\/1\\@from-colossal{--gc-start: 6;--gc-end: 1}}@media(max-width: 2399px){.u-gc-6\\/1\\@to-colossal{--gc-start: 6;--gc-end: 1}}@media(min-width: 2400px){.u-gc-6\\/2\\@from-colossal{--gc-start: 6;--gc-end: 2}}@media(max-width: 2399px){.u-gc-6\\/2\\@to-colossal{--gc-start: 6;--gc-end: 2}}@media(min-width: 2400px){.u-gc-6\\/3\\@from-colossal{--gc-start: 6;--gc-end: 3}}@media(max-width: 2399px){.u-gc-6\\/3\\@to-colossal{--gc-start: 6;--gc-end: 3}}@media(min-width: 2400px){.u-gc-6\\/4\\@from-colossal{--gc-start: 6;--gc-end: 4}}@media(max-width: 2399px){.u-gc-6\\/4\\@to-colossal{--gc-start: 6;--gc-end: 4}}@media(min-width: 2400px){.u-gc-6\\/5\\@from-colossal{--gc-start: 6;--gc-end: 5}}@media(max-width: 2399px){.u-gc-6\\/5\\@to-colossal{--gc-start: 6;--gc-end: 5}}@media(min-width: 2400px){.u-gc-6\\/6\\@from-colossal{--gc-start: 6;--gc-end: 6}}@media(max-width: 2399px){.u-gc-6\\/6\\@to-colossal{--gc-start: 6;--gc-end: 6}}@media(min-width: 2400px){.u-gc-6\\/7\\@from-colossal{--gc-start: 6;--gc-end: 7}}@media(max-width: 2399px){.u-gc-6\\/7\\@to-colossal{--gc-start: 6;--gc-end: 7}}@media(min-width: 2400px){.u-gc-6\\/8\\@from-colossal{--gc-start: 6;--gc-end: 8}}@media(max-width: 2399px){.u-gc-6\\/8\\@to-colossal{--gc-start: 6;--gc-end: 8}}@media(min-width: 2400px){.u-gc-6\\/9\\@from-colossal{--gc-start: 6;--gc-end: 9}}@media(max-width: 2399px){.u-gc-6\\/9\\@to-colossal{--gc-start: 6;--gc-end: 9}}@media(min-width: 2400px){.u-gc-6\\/10\\@from-colossal{--gc-start: 6;--gc-end: 10}}@media(max-width: 2399px){.u-gc-6\\/10\\@to-colossal{--gc-start: 6;--gc-end: 10}}@media(min-width: 2400px){.u-gc-6\\/11\\@from-colossal{--gc-start: 6;--gc-end: 11}}@media(max-width: 2399px){.u-gc-6\\/11\\@to-colossal{--gc-start: 6;--gc-end: 11}}@media(min-width: 2400px){.u-gc-6\\/12\\@from-colossal{--gc-start: 6;--gc-end: 12}}@media(max-width: 2399px){.u-gc-6\\/12\\@to-colossal{--gc-start: 6;--gc-end: 12}}@media(min-width: 2400px){.u-gc-6\\/13\\@from-colossal{--gc-start: 6;--gc-end: 13}}@media(max-width: 2399px){.u-gc-6\\/13\\@to-colossal{--gc-start: 6;--gc-end: 13}}@media(min-width: 2400px){.u-gc-7\\/1\\@from-colossal{--gc-start: 7;--gc-end: 1}}@media(max-width: 2399px){.u-gc-7\\/1\\@to-colossal{--gc-start: 7;--gc-end: 1}}@media(min-width: 2400px){.u-gc-7\\/2\\@from-colossal{--gc-start: 7;--gc-end: 2}}@media(max-width: 2399px){.u-gc-7\\/2\\@to-colossal{--gc-start: 7;--gc-end: 2}}@media(min-width: 2400px){.u-gc-7\\/3\\@from-colossal{--gc-start: 7;--gc-end: 3}}@media(max-width: 2399px){.u-gc-7\\/3\\@to-colossal{--gc-start: 7;--gc-end: 3}}@media(min-width: 2400px){.u-gc-7\\/4\\@from-colossal{--gc-start: 7;--gc-end: 4}}@media(max-width: 2399px){.u-gc-7\\/4\\@to-colossal{--gc-start: 7;--gc-end: 4}}@media(min-width: 2400px){.u-gc-7\\/5\\@from-colossal{--gc-start: 7;--gc-end: 5}}@media(max-width: 2399px){.u-gc-7\\/5\\@to-colossal{--gc-start: 7;--gc-end: 5}}@media(min-width: 2400px){.u-gc-7\\/6\\@from-colossal{--gc-start: 7;--gc-end: 6}}@media(max-width: 2399px){.u-gc-7\\/6\\@to-colossal{--gc-start: 7;--gc-end: 6}}@media(min-width: 2400px){.u-gc-7\\/7\\@from-colossal{--gc-start: 7;--gc-end: 7}}@media(max-width: 2399px){.u-gc-7\\/7\\@to-colossal{--gc-start: 7;--gc-end: 7}}@media(min-width: 2400px){.u-gc-7\\/8\\@from-colossal{--gc-start: 7;--gc-end: 8}}@media(max-width: 2399px){.u-gc-7\\/8\\@to-colossal{--gc-start: 7;--gc-end: 8}}@media(min-width: 2400px){.u-gc-7\\/9\\@from-colossal{--gc-start: 7;--gc-end: 9}}@media(max-width: 2399px){.u-gc-7\\/9\\@to-colossal{--gc-start: 7;--gc-end: 9}}@media(min-width: 2400px){.u-gc-7\\/10\\@from-colossal{--gc-start: 7;--gc-end: 10}}@media(max-width: 2399px){.u-gc-7\\/10\\@to-colossal{--gc-start: 7;--gc-end: 10}}@media(min-width: 2400px){.u-gc-7\\/11\\@from-colossal{--gc-start: 7;--gc-end: 11}}@media(max-width: 2399px){.u-gc-7\\/11\\@to-colossal{--gc-start: 7;--gc-end: 11}}@media(min-width: 2400px){.u-gc-7\\/12\\@from-colossal{--gc-start: 7;--gc-end: 12}}@media(max-width: 2399px){.u-gc-7\\/12\\@to-colossal{--gc-start: 7;--gc-end: 12}}@media(min-width: 2400px){.u-gc-7\\/13\\@from-colossal{--gc-start: 7;--gc-end: 13}}@media(max-width: 2399px){.u-gc-7\\/13\\@to-colossal{--gc-start: 7;--gc-end: 13}}@media(min-width: 2400px){.u-gc-8\\/1\\@from-colossal{--gc-start: 8;--gc-end: 1}}@media(max-width: 2399px){.u-gc-8\\/1\\@to-colossal{--gc-start: 8;--gc-end: 1}}@media(min-width: 2400px){.u-gc-8\\/2\\@from-colossal{--gc-start: 8;--gc-end: 2}}@media(max-width: 2399px){.u-gc-8\\/2\\@to-colossal{--gc-start: 8;--gc-end: 2}}@media(min-width: 2400px){.u-gc-8\\/3\\@from-colossal{--gc-start: 8;--gc-end: 3}}@media(max-width: 2399px){.u-gc-8\\/3\\@to-colossal{--gc-start: 8;--gc-end: 3}}@media(min-width: 2400px){.u-gc-8\\/4\\@from-colossal{--gc-start: 8;--gc-end: 4}}@media(max-width: 2399px){.u-gc-8\\/4\\@to-colossal{--gc-start: 8;--gc-end: 4}}@media(min-width: 2400px){.u-gc-8\\/5\\@from-colossal{--gc-start: 8;--gc-end: 5}}@media(max-width: 2399px){.u-gc-8\\/5\\@to-colossal{--gc-start: 8;--gc-end: 5}}@media(min-width: 2400px){.u-gc-8\\/6\\@from-colossal{--gc-start: 8;--gc-end: 6}}@media(max-width: 2399px){.u-gc-8\\/6\\@to-colossal{--gc-start: 8;--gc-end: 6}}@media(min-width: 2400px){.u-gc-8\\/7\\@from-colossal{--gc-start: 8;--gc-end: 7}}@media(max-width: 2399px){.u-gc-8\\/7\\@to-colossal{--gc-start: 8;--gc-end: 7}}@media(min-width: 2400px){.u-gc-8\\/8\\@from-colossal{--gc-start: 8;--gc-end: 8}}@media(max-width: 2399px){.u-gc-8\\/8\\@to-colossal{--gc-start: 8;--gc-end: 8}}@media(min-width: 2400px){.u-gc-8\\/9\\@from-colossal{--gc-start: 8;--gc-end: 9}}@media(max-width: 2399px){.u-gc-8\\/9\\@to-colossal{--gc-start: 8;--gc-end: 9}}@media(min-width: 2400px){.u-gc-8\\/10\\@from-colossal{--gc-start: 8;--gc-end: 10}}@media(max-width: 2399px){.u-gc-8\\/10\\@to-colossal{--gc-start: 8;--gc-end: 10}}@media(min-width: 2400px){.u-gc-8\\/11\\@from-colossal{--gc-start: 8;--gc-end: 11}}@media(max-width: 2399px){.u-gc-8\\/11\\@to-colossal{--gc-start: 8;--gc-end: 11}}@media(min-width: 2400px){.u-gc-8\\/12\\@from-colossal{--gc-start: 8;--gc-end: 12}}@media(max-width: 2399px){.u-gc-8\\/12\\@to-colossal{--gc-start: 8;--gc-end: 12}}@media(min-width: 2400px){.u-gc-8\\/13\\@from-colossal{--gc-start: 8;--gc-end: 13}}@media(max-width: 2399px){.u-gc-8\\/13\\@to-colossal{--gc-start: 8;--gc-end: 13}}@media(min-width: 2400px){.u-gc-9\\/1\\@from-colossal{--gc-start: 9;--gc-end: 1}}@media(max-width: 2399px){.u-gc-9\\/1\\@to-colossal{--gc-start: 9;--gc-end: 1}}@media(min-width: 2400px){.u-gc-9\\/2\\@from-colossal{--gc-start: 9;--gc-end: 2}}@media(max-width: 2399px){.u-gc-9\\/2\\@to-colossal{--gc-start: 9;--gc-end: 2}}@media(min-width: 2400px){.u-gc-9\\/3\\@from-colossal{--gc-start: 9;--gc-end: 3}}@media(max-width: 2399px){.u-gc-9\\/3\\@to-colossal{--gc-start: 9;--gc-end: 3}}@media(min-width: 2400px){.u-gc-9\\/4\\@from-colossal{--gc-start: 9;--gc-end: 4}}@media(max-width: 2399px){.u-gc-9\\/4\\@to-colossal{--gc-start: 9;--gc-end: 4}}@media(min-width: 2400px){.u-gc-9\\/5\\@from-colossal{--gc-start: 9;--gc-end: 5}}@media(max-width: 2399px){.u-gc-9\\/5\\@to-colossal{--gc-start: 9;--gc-end: 5}}@media(min-width: 2400px){.u-gc-9\\/6\\@from-colossal{--gc-start: 9;--gc-end: 6}}@media(max-width: 2399px){.u-gc-9\\/6\\@to-colossal{--gc-start: 9;--gc-end: 6}}@media(min-width: 2400px){.u-gc-9\\/7\\@from-colossal{--gc-start: 9;--gc-end: 7}}@media(max-width: 2399px){.u-gc-9\\/7\\@to-colossal{--gc-start: 9;--gc-end: 7}}@media(min-width: 2400px){.u-gc-9\\/8\\@from-colossal{--gc-start: 9;--gc-end: 8}}@media(max-width: 2399px){.u-gc-9\\/8\\@to-colossal{--gc-start: 9;--gc-end: 8}}@media(min-width: 2400px){.u-gc-9\\/9\\@from-colossal{--gc-start: 9;--gc-end: 9}}@media(max-width: 2399px){.u-gc-9\\/9\\@to-colossal{--gc-start: 9;--gc-end: 9}}@media(min-width: 2400px){.u-gc-9\\/10\\@from-colossal{--gc-start: 9;--gc-end: 10}}@media(max-width: 2399px){.u-gc-9\\/10\\@to-colossal{--gc-start: 9;--gc-end: 10}}@media(min-width: 2400px){.u-gc-9\\/11\\@from-colossal{--gc-start: 9;--gc-end: 11}}@media(max-width: 2399px){.u-gc-9\\/11\\@to-colossal{--gc-start: 9;--gc-end: 11}}@media(min-width: 2400px){.u-gc-9\\/12\\@from-colossal{--gc-start: 9;--gc-end: 12}}@media(max-width: 2399px){.u-gc-9\\/12\\@to-colossal{--gc-start: 9;--gc-end: 12}}@media(min-width: 2400px){.u-gc-9\\/13\\@from-colossal{--gc-start: 9;--gc-end: 13}}@media(max-width: 2399px){.u-gc-9\\/13\\@to-colossal{--gc-start: 9;--gc-end: 13}}@media(min-width: 2400px){.u-gc-10\\/1\\@from-colossal{--gc-start: 10;--gc-end: 1}}@media(max-width: 2399px){.u-gc-10\\/1\\@to-colossal{--gc-start: 10;--gc-end: 1}}@media(min-width: 2400px){.u-gc-10\\/2\\@from-colossal{--gc-start: 10;--gc-end: 2}}@media(max-width: 2399px){.u-gc-10\\/2\\@to-colossal{--gc-start: 10;--gc-end: 2}}@media(min-width: 2400px){.u-gc-10\\/3\\@from-colossal{--gc-start: 10;--gc-end: 3}}@media(max-width: 2399px){.u-gc-10\\/3\\@to-colossal{--gc-start: 10;--gc-end: 3}}@media(min-width: 2400px){.u-gc-10\\/4\\@from-colossal{--gc-start: 10;--gc-end: 4}}@media(max-width: 2399px){.u-gc-10\\/4\\@to-colossal{--gc-start: 10;--gc-end: 4}}@media(min-width: 2400px){.u-gc-10\\/5\\@from-colossal{--gc-start: 10;--gc-end: 5}}@media(max-width: 2399px){.u-gc-10\\/5\\@to-colossal{--gc-start: 10;--gc-end: 5}}@media(min-width: 2400px){.u-gc-10\\/6\\@from-colossal{--gc-start: 10;--gc-end: 6}}@media(max-width: 2399px){.u-gc-10\\/6\\@to-colossal{--gc-start: 10;--gc-end: 6}}@media(min-width: 2400px){.u-gc-10\\/7\\@from-colossal{--gc-start: 10;--gc-end: 7}}@media(max-width: 2399px){.u-gc-10\\/7\\@to-colossal{--gc-start: 10;--gc-end: 7}}@media(min-width: 2400px){.u-gc-10\\/8\\@from-colossal{--gc-start: 10;--gc-end: 8}}@media(max-width: 2399px){.u-gc-10\\/8\\@to-colossal{--gc-start: 10;--gc-end: 8}}@media(min-width: 2400px){.u-gc-10\\/9\\@from-colossal{--gc-start: 10;--gc-end: 9}}@media(max-width: 2399px){.u-gc-10\\/9\\@to-colossal{--gc-start: 10;--gc-end: 9}}@media(min-width: 2400px){.u-gc-10\\/10\\@from-colossal{--gc-start: 10;--gc-end: 10}}@media(max-width: 2399px){.u-gc-10\\/10\\@to-colossal{--gc-start: 10;--gc-end: 10}}@media(min-width: 2400px){.u-gc-10\\/11\\@from-colossal{--gc-start: 10;--gc-end: 11}}@media(max-width: 2399px){.u-gc-10\\/11\\@to-colossal{--gc-start: 10;--gc-end: 11}}@media(min-width: 2400px){.u-gc-10\\/12\\@from-colossal{--gc-start: 10;--gc-end: 12}}@media(max-width: 2399px){.u-gc-10\\/12\\@to-colossal{--gc-start: 10;--gc-end: 12}}@media(min-width: 2400px){.u-gc-10\\/13\\@from-colossal{--gc-start: 10;--gc-end: 13}}@media(max-width: 2399px){.u-gc-10\\/13\\@to-colossal{--gc-start: 10;--gc-end: 13}}@media(min-width: 2400px){.u-gc-11\\/1\\@from-colossal{--gc-start: 11;--gc-end: 1}}@media(max-width: 2399px){.u-gc-11\\/1\\@to-colossal{--gc-start: 11;--gc-end: 1}}@media(min-width: 2400px){.u-gc-11\\/2\\@from-colossal{--gc-start: 11;--gc-end: 2}}@media(max-width: 2399px){.u-gc-11\\/2\\@to-colossal{--gc-start: 11;--gc-end: 2}}@media(min-width: 2400px){.u-gc-11\\/3\\@from-colossal{--gc-start: 11;--gc-end: 3}}@media(max-width: 2399px){.u-gc-11\\/3\\@to-colossal{--gc-start: 11;--gc-end: 3}}@media(min-width: 2400px){.u-gc-11\\/4\\@from-colossal{--gc-start: 11;--gc-end: 4}}@media(max-width: 2399px){.u-gc-11\\/4\\@to-colossal{--gc-start: 11;--gc-end: 4}}@media(min-width: 2400px){.u-gc-11\\/5\\@from-colossal{--gc-start: 11;--gc-end: 5}}@media(max-width: 2399px){.u-gc-11\\/5\\@to-colossal{--gc-start: 11;--gc-end: 5}}@media(min-width: 2400px){.u-gc-11\\/6\\@from-colossal{--gc-start: 11;--gc-end: 6}}@media(max-width: 2399px){.u-gc-11\\/6\\@to-colossal{--gc-start: 11;--gc-end: 6}}@media(min-width: 2400px){.u-gc-11\\/7\\@from-colossal{--gc-start: 11;--gc-end: 7}}@media(max-width: 2399px){.u-gc-11\\/7\\@to-colossal{--gc-start: 11;--gc-end: 7}}@media(min-width: 2400px){.u-gc-11\\/8\\@from-colossal{--gc-start: 11;--gc-end: 8}}@media(max-width: 2399px){.u-gc-11\\/8\\@to-colossal{--gc-start: 11;--gc-end: 8}}@media(min-width: 2400px){.u-gc-11\\/9\\@from-colossal{--gc-start: 11;--gc-end: 9}}@media(max-width: 2399px){.u-gc-11\\/9\\@to-colossal{--gc-start: 11;--gc-end: 9}}@media(min-width: 2400px){.u-gc-11\\/10\\@from-colossal{--gc-start: 11;--gc-end: 10}}@media(max-width: 2399px){.u-gc-11\\/10\\@to-colossal{--gc-start: 11;--gc-end: 10}}@media(min-width: 2400px){.u-gc-11\\/11\\@from-colossal{--gc-start: 11;--gc-end: 11}}@media(max-width: 2399px){.u-gc-11\\/11\\@to-colossal{--gc-start: 11;--gc-end: 11}}@media(min-width: 2400px){.u-gc-11\\/12\\@from-colossal{--gc-start: 11;--gc-end: 12}}@media(max-width: 2399px){.u-gc-11\\/12\\@to-colossal{--gc-start: 11;--gc-end: 12}}@media(min-width: 2400px){.u-gc-11\\/13\\@from-colossal{--gc-start: 11;--gc-end: 13}}@media(max-width: 2399px){.u-gc-11\\/13\\@to-colossal{--gc-start: 11;--gc-end: 13}}@media(min-width: 2400px){.u-gc-12\\/1\\@from-colossal{--gc-start: 12;--gc-end: 1}}@media(max-width: 2399px){.u-gc-12\\/1\\@to-colossal{--gc-start: 12;--gc-end: 1}}@media(min-width: 2400px){.u-gc-12\\/2\\@from-colossal{--gc-start: 12;--gc-end: 2}}@media(max-width: 2399px){.u-gc-12\\/2\\@to-colossal{--gc-start: 12;--gc-end: 2}}@media(min-width: 2400px){.u-gc-12\\/3\\@from-colossal{--gc-start: 12;--gc-end: 3}}@media(max-width: 2399px){.u-gc-12\\/3\\@to-colossal{--gc-start: 12;--gc-end: 3}}@media(min-width: 2400px){.u-gc-12\\/4\\@from-colossal{--gc-start: 12;--gc-end: 4}}@media(max-width: 2399px){.u-gc-12\\/4\\@to-colossal{--gc-start: 12;--gc-end: 4}}@media(min-width: 2400px){.u-gc-12\\/5\\@from-colossal{--gc-start: 12;--gc-end: 5}}@media(max-width: 2399px){.u-gc-12\\/5\\@to-colossal{--gc-start: 12;--gc-end: 5}}@media(min-width: 2400px){.u-gc-12\\/6\\@from-colossal{--gc-start: 12;--gc-end: 6}}@media(max-width: 2399px){.u-gc-12\\/6\\@to-colossal{--gc-start: 12;--gc-end: 6}}@media(min-width: 2400px){.u-gc-12\\/7\\@from-colossal{--gc-start: 12;--gc-end: 7}}@media(max-width: 2399px){.u-gc-12\\/7\\@to-colossal{--gc-start: 12;--gc-end: 7}}@media(min-width: 2400px){.u-gc-12\\/8\\@from-colossal{--gc-start: 12;--gc-end: 8}}@media(max-width: 2399px){.u-gc-12\\/8\\@to-colossal{--gc-start: 12;--gc-end: 8}}@media(min-width: 2400px){.u-gc-12\\/9\\@from-colossal{--gc-start: 12;--gc-end: 9}}@media(max-width: 2399px){.u-gc-12\\/9\\@to-colossal{--gc-start: 12;--gc-end: 9}}@media(min-width: 2400px){.u-gc-12\\/10\\@from-colossal{--gc-start: 12;--gc-end: 10}}@media(max-width: 2399px){.u-gc-12\\/10\\@to-colossal{--gc-start: 12;--gc-end: 10}}@media(min-width: 2400px){.u-gc-12\\/11\\@from-colossal{--gc-start: 12;--gc-end: 11}}@media(max-width: 2399px){.u-gc-12\\/11\\@to-colossal{--gc-start: 12;--gc-end: 11}}@media(min-width: 2400px){.u-gc-12\\/12\\@from-colossal{--gc-start: 12;--gc-end: 12}}@media(max-width: 2399px){.u-gc-12\\/12\\@to-colossal{--gc-start: 12;--gc-end: 12}}@media(min-width: 2400px){.u-gc-12\\/13\\@from-colossal{--gc-start: 12;--gc-end: 13}}@media(max-width: 2399px){.u-gc-12\\/13\\@to-colossal{--gc-start: 12;--gc-end: 13}}@media(min-width: 2400px){.u-gc-13\\/1\\@from-colossal{--gc-start: 13;--gc-end: 1}}@media(max-width: 2399px){.u-gc-13\\/1\\@to-colossal{--gc-start: 13;--gc-end: 1}}@media(min-width: 2400px){.u-gc-13\\/2\\@from-colossal{--gc-start: 13;--gc-end: 2}}@media(max-width: 2399px){.u-gc-13\\/2\\@to-colossal{--gc-start: 13;--gc-end: 2}}@media(min-width: 2400px){.u-gc-13\\/3\\@from-colossal{--gc-start: 13;--gc-end: 3}}@media(max-width: 2399px){.u-gc-13\\/3\\@to-colossal{--gc-start: 13;--gc-end: 3}}@media(min-width: 2400px){.u-gc-13\\/4\\@from-colossal{--gc-start: 13;--gc-end: 4}}@media(max-width: 2399px){.u-gc-13\\/4\\@to-colossal{--gc-start: 13;--gc-end: 4}}@media(min-width: 2400px){.u-gc-13\\/5\\@from-colossal{--gc-start: 13;--gc-end: 5}}@media(max-width: 2399px){.u-gc-13\\/5\\@to-colossal{--gc-start: 13;--gc-end: 5}}@media(min-width: 2400px){.u-gc-13\\/6\\@from-colossal{--gc-start: 13;--gc-end: 6}}@media(max-width: 2399px){.u-gc-13\\/6\\@to-colossal{--gc-start: 13;--gc-end: 6}}@media(min-width: 2400px){.u-gc-13\\/7\\@from-colossal{--gc-start: 13;--gc-end: 7}}@media(max-width: 2399px){.u-gc-13\\/7\\@to-colossal{--gc-start: 13;--gc-end: 7}}@media(min-width: 2400px){.u-gc-13\\/8\\@from-colossal{--gc-start: 13;--gc-end: 8}}@media(max-width: 2399px){.u-gc-13\\/8\\@to-colossal{--gc-start: 13;--gc-end: 8}}@media(min-width: 2400px){.u-gc-13\\/9\\@from-colossal{--gc-start: 13;--gc-end: 9}}@media(max-width: 2399px){.u-gc-13\\/9\\@to-colossal{--gc-start: 13;--gc-end: 9}}@media(min-width: 2400px){.u-gc-13\\/10\\@from-colossal{--gc-start: 13;--gc-end: 10}}@media(max-width: 2399px){.u-gc-13\\/10\\@to-colossal{--gc-start: 13;--gc-end: 10}}@media(min-width: 2400px){.u-gc-13\\/11\\@from-colossal{--gc-start: 13;--gc-end: 11}}@media(max-width: 2399px){.u-gc-13\\/11\\@to-colossal{--gc-start: 13;--gc-end: 11}}@media(min-width: 2400px){.u-gc-13\\/12\\@from-colossal{--gc-start: 13;--gc-end: 12}}@media(max-width: 2399px){.u-gc-13\\/12\\@to-colossal{--gc-start: 13;--gc-end: 12}}@media(min-width: 2400px){.u-gc-13\\/13\\@from-colossal{--gc-start: 13;--gc-end: 13}}@media(max-width: 2399px){.u-gc-13\\/13\\@to-colossal{--gc-start: 13;--gc-end: 13}}.u-padding-gutter{padding:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-gutter\\@from-tiny{padding:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-gutter\\@to-tiny{padding:var(--grid-gutter) !important}}.u-padding-xs{padding:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-xs\\@from-tiny{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-xs\\@to-tiny{padding:calc(5 * var(--vh, 1vh)) !important}}.u-padding-sm{padding:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-sm\\@from-tiny{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-sm\\@to-tiny{padding:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-md{padding:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-md\\@from-tiny{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-md\\@to-tiny{padding:calc(10 * var(--vh, 1vh)) !important}}.u-padding-lg{padding:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-lg\\@from-tiny{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-lg\\@to-tiny{padding:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-xl{padding:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-xl\\@from-tiny{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-xl\\@to-tiny{padding:calc(15 * var(--vh, 1vh)) !important}}.u-padding{padding:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding\\@from-tiny{padding:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding\\@to-tiny{padding:var(--grid-gutter) !important}}.u-padding-none{padding:0 !important}@media(min-width: 500px){.u-padding-none\\@from-tiny{padding:0 !important}}@media(max-width: 499px){.u-padding-none\\@to-tiny{padding:0 !important}}.u-padding-top-gutter{padding-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-top-gutter\\@from-tiny{padding-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-top-gutter\\@to-tiny{padding-top:var(--grid-gutter) !important}}.u-padding-top-xs{padding-top:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-xs\\@from-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-xs\\@to-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important}}.u-padding-top-sm{padding-top:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-sm\\@from-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-sm\\@to-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-top-md{padding-top:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-md\\@from-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-md\\@to-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important}}.u-padding-top-lg{padding-top:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-lg\\@from-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-lg\\@to-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-top-xl{padding-top:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-top-xl\\@from-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-top-xl\\@to-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important}}.u-padding-top{padding-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-top\\@from-tiny{padding-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-top\\@to-tiny{padding-top:var(--grid-gutter) !important}}.u-padding-top-none{padding-top:0 !important}@media(min-width: 500px){.u-padding-top-none\\@from-tiny{padding-top:0 !important}}@media(max-width: 499px){.u-padding-top-none\\@to-tiny{padding-top:0 !important}}.u-padding-right-gutter{padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-right-gutter\\@from-tiny{padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-right-gutter\\@to-tiny{padding-right:var(--grid-gutter) !important}}.u-padding-right-xs{padding-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-xs\\@from-tiny{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-xs\\@to-tiny{padding-right:calc(5 * var(--vh, 1vh)) !important}}.u-padding-right-sm{padding-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-sm\\@from-tiny{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-sm\\@to-tiny{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-right-md{padding-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-md\\@from-tiny{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-md\\@to-tiny{padding-right:calc(10 * var(--vh, 1vh)) !important}}.u-padding-right-lg{padding-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-lg\\@from-tiny{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-lg\\@to-tiny{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-right-xl{padding-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-right-xl\\@from-tiny{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-right-xl\\@to-tiny{padding-right:calc(15 * var(--vh, 1vh)) !important}}.u-padding-right{padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-right\\@from-tiny{padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-right\\@to-tiny{padding-right:var(--grid-gutter) !important}}.u-padding-right-none{padding-right:0 !important}@media(min-width: 500px){.u-padding-right-none\\@from-tiny{padding-right:0 !important}}@media(max-width: 499px){.u-padding-right-none\\@to-tiny{padding-right:0 !important}}.u-padding-bottom-gutter{padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-bottom-gutter\\@from-tiny{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-bottom-gutter\\@to-tiny{padding-bottom:var(--grid-gutter) !important}}.u-padding-bottom-xs{padding-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-xs\\@from-tiny{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-xs\\@to-tiny{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-padding-bottom-sm{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-sm\\@from-tiny{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-sm\\@to-tiny{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-bottom-md{padding-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-md\\@from-tiny{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-md\\@to-tiny{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-padding-bottom-lg{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-lg\\@from-tiny{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-lg\\@to-tiny{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-bottom-xl{padding-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-bottom-xl\\@from-tiny{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-bottom-xl\\@to-tiny{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-padding-bottom{padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-bottom\\@from-tiny{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-bottom\\@to-tiny{padding-bottom:var(--grid-gutter) !important}}.u-padding-bottom-none{padding-bottom:0 !important}@media(min-width: 500px){.u-padding-bottom-none\\@from-tiny{padding-bottom:0 !important}}@media(max-width: 499px){.u-padding-bottom-none\\@to-tiny{padding-bottom:0 !important}}.u-padding-left-gutter{padding-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-left-gutter\\@from-tiny{padding-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-left-gutter\\@to-tiny{padding-left:var(--grid-gutter) !important}}.u-padding-left-xs{padding-left:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-xs\\@from-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-xs\\@to-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important}}.u-padding-left-sm{padding-left:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-sm\\@from-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-sm\\@to-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-left-md{padding-left:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-md\\@from-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-md\\@to-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important}}.u-padding-left-lg{padding-left:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-lg\\@from-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-lg\\@to-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-left-xl{padding-left:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-left-xl\\@from-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-left-xl\\@to-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important}}.u-padding-left{padding-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-left\\@from-tiny{padding-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-left\\@to-tiny{padding-left:var(--grid-gutter) !important}}.u-padding-left-none{padding-left:0 !important}@media(min-width: 500px){.u-padding-left-none\\@from-tiny{padding-left:0 !important}}@media(max-width: 499px){.u-padding-left-none\\@to-tiny{padding-left:0 !important}}.u-padding-x-gutter{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-x-gutter\\@from-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-x-gutter\\@to-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}.u-padding-x-xs{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-xs\\@from-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-xs\\@to-tiny{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}.u-padding-x-sm{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-sm\\@from-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-sm\\@to-tiny{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-x-md{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-md\\@from-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-md\\@to-tiny{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}.u-padding-x-lg{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-lg\\@from-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-lg\\@to-tiny{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-x-xl{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-x-xl\\@from-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-x-xl\\@to-tiny{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}.u-padding-x{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-x\\@from-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-x\\@to-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}.u-padding-x-none{padding-left:0 !important;padding-right:0 !important}@media(min-width: 500px){.u-padding-x-none\\@from-tiny{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 499px){.u-padding-x-none\\@to-tiny{padding-left:0 !important;padding-right:0 !important}}.u-padding-y-gutter{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-y-gutter\\@from-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-y-gutter\\@to-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}.u-padding-y-xs{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-xs\\@from-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-xs\\@to-tiny{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-padding-y-sm{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-sm\\@from-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-sm\\@to-tiny{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-padding-y-md{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-md\\@from-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-md\\@to-tiny{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-padding-y-lg{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-lg\\@from-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-lg\\@to-tiny{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-padding-y-xl{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-padding-y-xl\\@from-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-padding-y-xl\\@to-tiny{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-padding-y{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-y\\@from-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-y\\@to-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}.u-padding-y-none{padding-top:0 !important;padding-bottom:0 !important}@media(min-width: 500px){.u-padding-y-none\\@from-tiny{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 499px){.u-padding-y-none\\@to-tiny{padding-top:0 !important;padding-bottom:0 !important}}.u-margin-gutter{margin:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-gutter\\@from-tiny{margin:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-gutter\\@to-tiny{margin:var(--grid-gutter) !important}}.u-margin-xs{margin:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-xs\\@from-tiny{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-xs\\@to-tiny{margin:calc(5 * var(--vh, 1vh)) !important}}.u-margin-sm{margin:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-sm\\@from-tiny{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-sm\\@to-tiny{margin:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-md{margin:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-md\\@from-tiny{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-md\\@to-tiny{margin:calc(10 * var(--vh, 1vh)) !important}}.u-margin-lg{margin:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-lg\\@from-tiny{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-lg\\@to-tiny{margin:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-xl{margin:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-xl\\@from-tiny{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-xl\\@to-tiny{margin:calc(15 * var(--vh, 1vh)) !important}}.u-margin{margin:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin\\@from-tiny{margin:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin\\@to-tiny{margin:var(--grid-gutter) !important}}.u-margin-none{margin:0 !important}@media(min-width: 500px){.u-margin-none\\@from-tiny{margin:0 !important}}@media(max-width: 499px){.u-margin-none\\@to-tiny{margin:0 !important}}.u-margin-top-gutter{margin-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-top-gutter\\@from-tiny{margin-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-top-gutter\\@to-tiny{margin-top:var(--grid-gutter) !important}}.u-margin-top-xs{margin-top:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-xs\\@from-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-xs\\@to-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important}}.u-margin-top-sm{margin-top:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-sm\\@from-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-sm\\@to-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-top-md{margin-top:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-md\\@from-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-md\\@to-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important}}.u-margin-top-lg{margin-top:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-lg\\@from-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-lg\\@to-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-top-xl{margin-top:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-top-xl\\@from-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-top-xl\\@to-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important}}.u-margin-top{margin-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-top\\@from-tiny{margin-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-top\\@to-tiny{margin-top:var(--grid-gutter) !important}}.u-margin-top-none{margin-top:0 !important}@media(min-width: 500px){.u-margin-top-none\\@from-tiny{margin-top:0 !important}}@media(max-width: 499px){.u-margin-top-none\\@to-tiny{margin-top:0 !important}}.u-margin-right-gutter{margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-right-gutter\\@from-tiny{margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-right-gutter\\@to-tiny{margin-right:var(--grid-gutter) !important}}.u-margin-right-xs{margin-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-xs\\@from-tiny{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-xs\\@to-tiny{margin-right:calc(5 * var(--vh, 1vh)) !important}}.u-margin-right-sm{margin-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-sm\\@from-tiny{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-sm\\@to-tiny{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-right-md{margin-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-md\\@from-tiny{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-md\\@to-tiny{margin-right:calc(10 * var(--vh, 1vh)) !important}}.u-margin-right-lg{margin-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-lg\\@from-tiny{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-lg\\@to-tiny{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-right-xl{margin-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-right-xl\\@from-tiny{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-right-xl\\@to-tiny{margin-right:calc(15 * var(--vh, 1vh)) !important}}.u-margin-right{margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-right\\@from-tiny{margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-right\\@to-tiny{margin-right:var(--grid-gutter) !important}}.u-margin-right-none{margin-right:0 !important}@media(min-width: 500px){.u-margin-right-none\\@from-tiny{margin-right:0 !important}}@media(max-width: 499px){.u-margin-right-none\\@to-tiny{margin-right:0 !important}}.u-margin-bottom-gutter{margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-bottom-gutter\\@from-tiny{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-bottom-gutter\\@to-tiny{margin-bottom:var(--grid-gutter) !important}}.u-margin-bottom-xs{margin-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-xs\\@from-tiny{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-xs\\@to-tiny{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-margin-bottom-sm{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-sm\\@from-tiny{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-sm\\@to-tiny{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-bottom-md{margin-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-md\\@from-tiny{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-md\\@to-tiny{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-margin-bottom-lg{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-lg\\@from-tiny{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-lg\\@to-tiny{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-bottom-xl{margin-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-bottom-xl\\@from-tiny{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-bottom-xl\\@to-tiny{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-margin-bottom{margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-bottom\\@from-tiny{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-bottom\\@to-tiny{margin-bottom:var(--grid-gutter) !important}}.u-margin-bottom-none{margin-bottom:0 !important}@media(min-width: 500px){.u-margin-bottom-none\\@from-tiny{margin-bottom:0 !important}}@media(max-width: 499px){.u-margin-bottom-none\\@to-tiny{margin-bottom:0 !important}}.u-margin-left-gutter{margin-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-left-gutter\\@from-tiny{margin-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-left-gutter\\@to-tiny{margin-left:var(--grid-gutter) !important}}.u-margin-left-xs{margin-left:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-xs\\@from-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-xs\\@to-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important}}.u-margin-left-sm{margin-left:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-sm\\@from-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-sm\\@to-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-left-md{margin-left:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-md\\@from-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-md\\@to-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important}}.u-margin-left-lg{margin-left:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-lg\\@from-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-lg\\@to-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-left-xl{margin-left:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-left-xl\\@from-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-left-xl\\@to-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important}}.u-margin-left{margin-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-left\\@from-tiny{margin-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-left\\@to-tiny{margin-left:var(--grid-gutter) !important}}.u-margin-left-none{margin-left:0 !important}@media(min-width: 500px){.u-margin-left-none\\@from-tiny{margin-left:0 !important}}@media(max-width: 499px){.u-margin-left-none\\@to-tiny{margin-left:0 !important}}.u-margin-x-gutter{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-x-gutter\\@from-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-x-gutter\\@to-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}.u-margin-x-xs{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-xs\\@from-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-xs\\@to-tiny{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}.u-margin-x-sm{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-sm\\@from-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-sm\\@to-tiny{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-x-md{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-md\\@from-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-md\\@to-tiny{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}.u-margin-x-lg{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-lg\\@from-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-lg\\@to-tiny{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-x-xl{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-x-xl\\@from-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-x-xl\\@to-tiny{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}.u-margin-x{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-x\\@from-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-x\\@to-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}.u-margin-x-none{margin-left:0 !important;margin-right:0 !important}@media(min-width: 500px){.u-margin-x-none\\@from-tiny{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 499px){.u-margin-x-none\\@to-tiny{margin-left:0 !important;margin-right:0 !important}}.u-margin-y-gutter{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-y-gutter\\@from-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-y-gutter\\@to-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}.u-margin-y-xs{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-xs\\@from-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-xs\\@to-tiny{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}.u-margin-y-sm{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-sm\\@from-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-sm\\@to-tiny{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}.u-margin-y-md{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-md\\@from-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-md\\@to-tiny{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}.u-margin-y-lg{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-lg\\@from-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-lg\\@to-tiny{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}.u-margin-y-xl{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}@media(min-width: 500px){.u-margin-y-xl\\@from-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 499px){.u-margin-y-xl\\@to-tiny{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}.u-margin-y{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-y\\@from-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-y\\@to-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}.u-margin-y-none{margin-top:0 !important;margin-bottom:0 !important}@media(min-width: 500px){.u-margin-y-none\\@from-tiny{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 499px){.u-margin-y-none\\@to-tiny{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 700px){.u-padding-gutter\\@from-small{padding:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-gutter\\@to-small{padding:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-xs\\@from-small{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-xs\\@to-small{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-sm\\@from-small{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-sm\\@to-small{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-md\\@from-small{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-md\\@to-small{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-lg\\@from-small{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-lg\\@to-small{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-xl\\@from-small{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-xl\\@to-small{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding\\@from-small{padding:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding\\@to-small{padding:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-none\\@from-small{padding:0 !important}}@media(max-width: 699px){.u-padding-none\\@to-small{padding:0 !important}}@media(min-width: 700px){.u-padding-top-gutter\\@from-small{padding-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-top-gutter\\@to-small{padding-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-top-xs\\@from-small{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-xs\\@to-small{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-sm\\@from-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-sm\\@to-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-md\\@from-small{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-md\\@to-small{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-lg\\@from-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-lg\\@to-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top-xl\\@from-small{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-top-xl\\@to-small{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-top\\@from-small{padding-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-top\\@to-small{padding-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-top-none\\@from-small{padding-top:0 !important}}@media(max-width: 699px){.u-padding-top-none\\@to-small{padding-top:0 !important}}@media(min-width: 700px){.u-padding-right-gutter\\@from-small{padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-right-gutter\\@to-small{padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-right-xs\\@from-small{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-xs\\@to-small{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-sm\\@from-small{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-sm\\@to-small{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-md\\@from-small{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-md\\@to-small{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-lg\\@from-small{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-lg\\@to-small{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right-xl\\@from-small{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-right-xl\\@to-small{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-right\\@from-small{padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-right\\@to-small{padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-right-none\\@from-small{padding-right:0 !important}}@media(max-width: 699px){.u-padding-right-none\\@to-small{padding-right:0 !important}}@media(min-width: 700px){.u-padding-bottom-gutter\\@from-small{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-bottom-gutter\\@to-small{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-bottom-xs\\@from-small{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-xs\\@to-small{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-sm\\@from-small{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-sm\\@to-small{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-md\\@from-small{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-md\\@to-small{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-lg\\@from-small{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-lg\\@to-small{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom-xl\\@from-small{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-bottom-xl\\@to-small{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-bottom\\@from-small{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-bottom\\@to-small{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-bottom-none\\@from-small{padding-bottom:0 !important}}@media(max-width: 699px){.u-padding-bottom-none\\@to-small{padding-bottom:0 !important}}@media(min-width: 700px){.u-padding-left-gutter\\@from-small{padding-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-left-gutter\\@to-small{padding-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-left-xs\\@from-small{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-xs\\@to-small{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-sm\\@from-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-sm\\@to-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-md\\@from-small{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-md\\@to-small{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-lg\\@from-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-lg\\@to-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left-xl\\@from-small{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-left-xl\\@to-small{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-left\\@from-small{padding-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-left\\@to-small{padding-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-left-none\\@from-small{padding-left:0 !important}}@media(max-width: 699px){.u-padding-left-none\\@to-small{padding-left:0 !important}}@media(min-width: 700px){.u-padding-x-gutter\\@from-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-x-gutter\\@to-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-x-xs\\@from-small{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-xs\\@to-small{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-sm\\@from-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-sm\\@to-small{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-md\\@from-small{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-md\\@to-small{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-lg\\@from-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-lg\\@to-small{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x-xl\\@from-small{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-x-xl\\@to-small{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-x\\@from-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-x\\@to-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-x-none\\@from-small{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 699px){.u-padding-x-none\\@to-small{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 700px){.u-padding-y-gutter\\@from-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-y-gutter\\@to-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-y-xs\\@from-small{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-xs\\@to-small{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-sm\\@from-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-sm\\@to-small{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-md\\@from-small{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-md\\@to-small{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-lg\\@from-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-lg\\@to-small{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y-xl\\@from-small{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-padding-y-xl\\@to-small{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-padding-y\\@from-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-y\\@to-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-y-none\\@from-small{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 699px){.u-padding-y-none\\@to-small{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 700px){.u-margin-gutter\\@from-small{margin:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-gutter\\@to-small{margin:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-xs\\@from-small{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-xs\\@to-small{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-sm\\@from-small{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-sm\\@to-small{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-md\\@from-small{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-md\\@to-small{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-lg\\@from-small{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-lg\\@to-small{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-xl\\@from-small{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-xl\\@to-small{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin\\@from-small{margin:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin\\@to-small{margin:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-none\\@from-small{margin:0 !important}}@media(max-width: 699px){.u-margin-none\\@to-small{margin:0 !important}}@media(min-width: 700px){.u-margin-top-gutter\\@from-small{margin-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-top-gutter\\@to-small{margin-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-top-xs\\@from-small{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-xs\\@to-small{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-sm\\@from-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-sm\\@to-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-md\\@from-small{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-md\\@to-small{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-lg\\@from-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-lg\\@to-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top-xl\\@from-small{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-top-xl\\@to-small{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-top\\@from-small{margin-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-top\\@to-small{margin-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-top-none\\@from-small{margin-top:0 !important}}@media(max-width: 699px){.u-margin-top-none\\@to-small{margin-top:0 !important}}@media(min-width: 700px){.u-margin-right-gutter\\@from-small{margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-right-gutter\\@to-small{margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-right-xs\\@from-small{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-xs\\@to-small{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-sm\\@from-small{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-sm\\@to-small{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-md\\@from-small{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-md\\@to-small{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-lg\\@from-small{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-lg\\@to-small{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right-xl\\@from-small{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-right-xl\\@to-small{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-right\\@from-small{margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-right\\@to-small{margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-right-none\\@from-small{margin-right:0 !important}}@media(max-width: 699px){.u-margin-right-none\\@to-small{margin-right:0 !important}}@media(min-width: 700px){.u-margin-bottom-gutter\\@from-small{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-bottom-gutter\\@to-small{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-bottom-xs\\@from-small{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-xs\\@to-small{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-sm\\@from-small{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-sm\\@to-small{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-md\\@from-small{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-md\\@to-small{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-lg\\@from-small{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-lg\\@to-small{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom-xl\\@from-small{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-bottom-xl\\@to-small{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-bottom\\@from-small{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-bottom\\@to-small{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-bottom-none\\@from-small{margin-bottom:0 !important}}@media(max-width: 699px){.u-margin-bottom-none\\@to-small{margin-bottom:0 !important}}@media(min-width: 700px){.u-margin-left-gutter\\@from-small{margin-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-left-gutter\\@to-small{margin-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-left-xs\\@from-small{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-xs\\@to-small{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-sm\\@from-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-sm\\@to-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-md\\@from-small{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-md\\@to-small{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-lg\\@from-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-lg\\@to-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left-xl\\@from-small{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-left-xl\\@to-small{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-left\\@from-small{margin-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-left\\@to-small{margin-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-left-none\\@from-small{margin-left:0 !important}}@media(max-width: 699px){.u-margin-left-none\\@to-small{margin-left:0 !important}}@media(min-width: 700px){.u-margin-x-gutter\\@from-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-x-gutter\\@to-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-x-xs\\@from-small{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-xs\\@to-small{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-sm\\@from-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-sm\\@to-small{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-md\\@from-small{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-md\\@to-small{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-lg\\@from-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-lg\\@to-small{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x-xl\\@from-small{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-x-xl\\@to-small{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-x\\@from-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-x\\@to-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-x-none\\@from-small{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 699px){.u-margin-x-none\\@to-small{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 700px){.u-margin-y-gutter\\@from-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-y-gutter\\@to-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-y-xs\\@from-small{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-xs\\@to-small{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-sm\\@from-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-sm\\@to-small{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-md\\@from-small{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-md\\@to-small{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-lg\\@from-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-lg\\@to-small{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y-xl\\@from-small{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 699px){.u-margin-y-xl\\@to-small{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 700px){.u-margin-y\\@from-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-y\\@to-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-y-none\\@from-small{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 699px){.u-margin-y-none\\@to-small{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1000px){.u-padding-gutter\\@from-medium{padding:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-gutter\\@to-medium{padding:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-xs\\@from-medium{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-xs\\@to-medium{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-sm\\@from-medium{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-sm\\@to-medium{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-md\\@from-medium{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-md\\@to-medium{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-lg\\@from-medium{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-lg\\@to-medium{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-xl\\@from-medium{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-xl\\@to-medium{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding\\@from-medium{padding:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding\\@to-medium{padding:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-none\\@from-medium{padding:0 !important}}@media(max-width: 999px){.u-padding-none\\@to-medium{padding:0 !important}}@media(min-width: 1000px){.u-padding-top-gutter\\@from-medium{padding-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-top-gutter\\@to-medium{padding-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-top-xs\\@from-medium{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-xs\\@to-medium{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-sm\\@from-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-sm\\@to-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-md\\@from-medium{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-md\\@to-medium{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-lg\\@from-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-lg\\@to-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top-xl\\@from-medium{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-top-xl\\@to-medium{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-top\\@from-medium{padding-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-top\\@to-medium{padding-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-top-none\\@from-medium{padding-top:0 !important}}@media(max-width: 999px){.u-padding-top-none\\@to-medium{padding-top:0 !important}}@media(min-width: 1000px){.u-padding-right-gutter\\@from-medium{padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-right-gutter\\@to-medium{padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-right-xs\\@from-medium{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-xs\\@to-medium{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-sm\\@from-medium{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-sm\\@to-medium{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-md\\@from-medium{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-md\\@to-medium{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-lg\\@from-medium{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-lg\\@to-medium{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right-xl\\@from-medium{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-right-xl\\@to-medium{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-right\\@from-medium{padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-right\\@to-medium{padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-right-none\\@from-medium{padding-right:0 !important}}@media(max-width: 999px){.u-padding-right-none\\@to-medium{padding-right:0 !important}}@media(min-width: 1000px){.u-padding-bottom-gutter\\@from-medium{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-bottom-gutter\\@to-medium{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-bottom-xs\\@from-medium{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-xs\\@to-medium{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-sm\\@from-medium{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-sm\\@to-medium{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-md\\@from-medium{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-md\\@to-medium{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-lg\\@from-medium{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-lg\\@to-medium{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom-xl\\@from-medium{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-bottom-xl\\@to-medium{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-bottom\\@from-medium{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-bottom\\@to-medium{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-bottom-none\\@from-medium{padding-bottom:0 !important}}@media(max-width: 999px){.u-padding-bottom-none\\@to-medium{padding-bottom:0 !important}}@media(min-width: 1000px){.u-padding-left-gutter\\@from-medium{padding-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-left-gutter\\@to-medium{padding-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-left-xs\\@from-medium{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-xs\\@to-medium{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-sm\\@from-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-sm\\@to-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-md\\@from-medium{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-md\\@to-medium{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-lg\\@from-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-lg\\@to-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left-xl\\@from-medium{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-left-xl\\@to-medium{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-left\\@from-medium{padding-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-left\\@to-medium{padding-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-left-none\\@from-medium{padding-left:0 !important}}@media(max-width: 999px){.u-padding-left-none\\@to-medium{padding-left:0 !important}}@media(min-width: 1000px){.u-padding-x-gutter\\@from-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-x-gutter\\@to-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-x-xs\\@from-medium{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-xs\\@to-medium{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-sm\\@from-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-sm\\@to-medium{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-md\\@from-medium{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-md\\@to-medium{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-lg\\@from-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-lg\\@to-medium{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x-xl\\@from-medium{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-x-xl\\@to-medium{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-x\\@from-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-x\\@to-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-x-none\\@from-medium{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 999px){.u-padding-x-none\\@to-medium{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1000px){.u-padding-y-gutter\\@from-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-y-gutter\\@to-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-y-xs\\@from-medium{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-xs\\@to-medium{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-sm\\@from-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-sm\\@to-medium{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-md\\@from-medium{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-md\\@to-medium{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-lg\\@from-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-lg\\@to-medium{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y-xl\\@from-medium{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-padding-y-xl\\@to-medium{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-padding-y\\@from-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-y\\@to-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-y-none\\@from-medium{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 999px){.u-padding-y-none\\@to-medium{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1000px){.u-margin-gutter\\@from-medium{margin:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-gutter\\@to-medium{margin:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-xs\\@from-medium{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-xs\\@to-medium{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-sm\\@from-medium{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-sm\\@to-medium{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-md\\@from-medium{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-md\\@to-medium{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-lg\\@from-medium{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-lg\\@to-medium{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-xl\\@from-medium{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-xl\\@to-medium{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin\\@from-medium{margin:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin\\@to-medium{margin:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-none\\@from-medium{margin:0 !important}}@media(max-width: 999px){.u-margin-none\\@to-medium{margin:0 !important}}@media(min-width: 1000px){.u-margin-top-gutter\\@from-medium{margin-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-top-gutter\\@to-medium{margin-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-top-xs\\@from-medium{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-xs\\@to-medium{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-sm\\@from-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-sm\\@to-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-md\\@from-medium{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-md\\@to-medium{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-lg\\@from-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-lg\\@to-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top-xl\\@from-medium{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-top-xl\\@to-medium{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-top\\@from-medium{margin-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-top\\@to-medium{margin-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-top-none\\@from-medium{margin-top:0 !important}}@media(max-width: 999px){.u-margin-top-none\\@to-medium{margin-top:0 !important}}@media(min-width: 1000px){.u-margin-right-gutter\\@from-medium{margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-right-gutter\\@to-medium{margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-right-xs\\@from-medium{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-xs\\@to-medium{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-sm\\@from-medium{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-sm\\@to-medium{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-md\\@from-medium{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-md\\@to-medium{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-lg\\@from-medium{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-lg\\@to-medium{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right-xl\\@from-medium{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-right-xl\\@to-medium{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-right\\@from-medium{margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-right\\@to-medium{margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-right-none\\@from-medium{margin-right:0 !important}}@media(max-width: 999px){.u-margin-right-none\\@to-medium{margin-right:0 !important}}@media(min-width: 1000px){.u-margin-bottom-gutter\\@from-medium{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-bottom-gutter\\@to-medium{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-bottom-xs\\@from-medium{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-xs\\@to-medium{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-sm\\@from-medium{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-sm\\@to-medium{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-md\\@from-medium{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-md\\@to-medium{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-lg\\@from-medium{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-lg\\@to-medium{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom-xl\\@from-medium{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-bottom-xl\\@to-medium{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-bottom\\@from-medium{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-bottom\\@to-medium{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-bottom-none\\@from-medium{margin-bottom:0 !important}}@media(max-width: 999px){.u-margin-bottom-none\\@to-medium{margin-bottom:0 !important}}@media(min-width: 1000px){.u-margin-left-gutter\\@from-medium{margin-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-left-gutter\\@to-medium{margin-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-left-xs\\@from-medium{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-xs\\@to-medium{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-sm\\@from-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-sm\\@to-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-md\\@from-medium{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-md\\@to-medium{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-lg\\@from-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-lg\\@to-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left-xl\\@from-medium{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-left-xl\\@to-medium{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-left\\@from-medium{margin-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-left\\@to-medium{margin-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-left-none\\@from-medium{margin-left:0 !important}}@media(max-width: 999px){.u-margin-left-none\\@to-medium{margin-left:0 !important}}@media(min-width: 1000px){.u-margin-x-gutter\\@from-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-x-gutter\\@to-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-x-xs\\@from-medium{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-xs\\@to-medium{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-sm\\@from-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-sm\\@to-medium{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-md\\@from-medium{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-md\\@to-medium{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-lg\\@from-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-lg\\@to-medium{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x-xl\\@from-medium{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-x-xl\\@to-medium{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-x\\@from-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-x\\@to-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-x-none\\@from-medium{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 999px){.u-margin-x-none\\@to-medium{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1000px){.u-margin-y-gutter\\@from-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-y-gutter\\@to-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-y-xs\\@from-medium{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-xs\\@to-medium{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-sm\\@from-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-sm\\@to-medium{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-md\\@from-medium{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-md\\@to-medium{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-lg\\@from-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-lg\\@to-medium{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y-xl\\@from-medium{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 999px){.u-margin-y-xl\\@to-medium{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1000px){.u-margin-y\\@from-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-y\\@to-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-y-none\\@from-medium{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 999px){.u-margin-y-none\\@to-medium{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1200px){.u-padding-gutter\\@from-large{padding:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-gutter\\@to-large{padding:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-xs\\@from-large{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-xs\\@to-large{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-sm\\@from-large{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-sm\\@to-large{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-md\\@from-large{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-md\\@to-large{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-lg\\@from-large{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-lg\\@to-large{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-xl\\@from-large{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-xl\\@to-large{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding\\@from-large{padding:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding\\@to-large{padding:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-none\\@from-large{padding:0 !important}}@media(max-width: 1199px){.u-padding-none\\@to-large{padding:0 !important}}@media(min-width: 1200px){.u-padding-top-gutter\\@from-large{padding-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-top-gutter\\@to-large{padding-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-top-xs\\@from-large{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-xs\\@to-large{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-sm\\@from-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-sm\\@to-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-md\\@from-large{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-md\\@to-large{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-lg\\@from-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-lg\\@to-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top-xl\\@from-large{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-top-xl\\@to-large{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-top\\@from-large{padding-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-top\\@to-large{padding-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-top-none\\@from-large{padding-top:0 !important}}@media(max-width: 1199px){.u-padding-top-none\\@to-large{padding-top:0 !important}}@media(min-width: 1200px){.u-padding-right-gutter\\@from-large{padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-right-gutter\\@to-large{padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-right-xs\\@from-large{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-xs\\@to-large{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-sm\\@from-large{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-sm\\@to-large{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-md\\@from-large{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-md\\@to-large{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-lg\\@from-large{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-lg\\@to-large{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right-xl\\@from-large{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-right-xl\\@to-large{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-right\\@from-large{padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-right\\@to-large{padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-right-none\\@from-large{padding-right:0 !important}}@media(max-width: 1199px){.u-padding-right-none\\@to-large{padding-right:0 !important}}@media(min-width: 1200px){.u-padding-bottom-gutter\\@from-large{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-bottom-gutter\\@to-large{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-bottom-xs\\@from-large{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-xs\\@to-large{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-sm\\@from-large{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-sm\\@to-large{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-md\\@from-large{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-md\\@to-large{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-lg\\@from-large{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-lg\\@to-large{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom-xl\\@from-large{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-bottom-xl\\@to-large{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-bottom\\@from-large{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-bottom\\@to-large{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-bottom-none\\@from-large{padding-bottom:0 !important}}@media(max-width: 1199px){.u-padding-bottom-none\\@to-large{padding-bottom:0 !important}}@media(min-width: 1200px){.u-padding-left-gutter\\@from-large{padding-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-left-gutter\\@to-large{padding-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-left-xs\\@from-large{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-xs\\@to-large{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-sm\\@from-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-sm\\@to-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-md\\@from-large{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-md\\@to-large{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-lg\\@from-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-lg\\@to-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left-xl\\@from-large{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-left-xl\\@to-large{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-left\\@from-large{padding-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-left\\@to-large{padding-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-left-none\\@from-large{padding-left:0 !important}}@media(max-width: 1199px){.u-padding-left-none\\@to-large{padding-left:0 !important}}@media(min-width: 1200px){.u-padding-x-gutter\\@from-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-x-gutter\\@to-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-x-xs\\@from-large{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-xs\\@to-large{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-sm\\@from-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-sm\\@to-large{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-md\\@from-large{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-md\\@to-large{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-lg\\@from-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-lg\\@to-large{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x-xl\\@from-large{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-x-xl\\@to-large{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-x\\@from-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-x\\@to-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-x-none\\@from-large{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1199px){.u-padding-x-none\\@to-large{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1200px){.u-padding-y-gutter\\@from-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-y-gutter\\@to-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-y-xs\\@from-large{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-xs\\@to-large{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-sm\\@from-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-sm\\@to-large{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-md\\@from-large{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-md\\@to-large{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-lg\\@from-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-lg\\@to-large{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y-xl\\@from-large{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-padding-y-xl\\@to-large{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-padding-y\\@from-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-y\\@to-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-y-none\\@from-large{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1199px){.u-padding-y-none\\@to-large{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1200px){.u-margin-gutter\\@from-large{margin:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-gutter\\@to-large{margin:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-xs\\@from-large{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-xs\\@to-large{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-sm\\@from-large{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-sm\\@to-large{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-md\\@from-large{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-md\\@to-large{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-lg\\@from-large{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-lg\\@to-large{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-xl\\@from-large{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-xl\\@to-large{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin\\@from-large{margin:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin\\@to-large{margin:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-none\\@from-large{margin:0 !important}}@media(max-width: 1199px){.u-margin-none\\@to-large{margin:0 !important}}@media(min-width: 1200px){.u-margin-top-gutter\\@from-large{margin-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-top-gutter\\@to-large{margin-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-top-xs\\@from-large{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-xs\\@to-large{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-sm\\@from-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-sm\\@to-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-md\\@from-large{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-md\\@to-large{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-lg\\@from-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-lg\\@to-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top-xl\\@from-large{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-top-xl\\@to-large{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-top\\@from-large{margin-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-top\\@to-large{margin-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-top-none\\@from-large{margin-top:0 !important}}@media(max-width: 1199px){.u-margin-top-none\\@to-large{margin-top:0 !important}}@media(min-width: 1200px){.u-margin-right-gutter\\@from-large{margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-right-gutter\\@to-large{margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-right-xs\\@from-large{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-xs\\@to-large{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-sm\\@from-large{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-sm\\@to-large{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-md\\@from-large{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-md\\@to-large{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-lg\\@from-large{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-lg\\@to-large{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right-xl\\@from-large{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-right-xl\\@to-large{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-right\\@from-large{margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-right\\@to-large{margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-right-none\\@from-large{margin-right:0 !important}}@media(max-width: 1199px){.u-margin-right-none\\@to-large{margin-right:0 !important}}@media(min-width: 1200px){.u-margin-bottom-gutter\\@from-large{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-bottom-gutter\\@to-large{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-bottom-xs\\@from-large{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-xs\\@to-large{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-sm\\@from-large{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-sm\\@to-large{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-md\\@from-large{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-md\\@to-large{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-lg\\@from-large{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-lg\\@to-large{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom-xl\\@from-large{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-bottom-xl\\@to-large{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-bottom\\@from-large{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-bottom\\@to-large{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-bottom-none\\@from-large{margin-bottom:0 !important}}@media(max-width: 1199px){.u-margin-bottom-none\\@to-large{margin-bottom:0 !important}}@media(min-width: 1200px){.u-margin-left-gutter\\@from-large{margin-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-left-gutter\\@to-large{margin-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-left-xs\\@from-large{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-xs\\@to-large{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-sm\\@from-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-sm\\@to-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-md\\@from-large{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-md\\@to-large{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-lg\\@from-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-lg\\@to-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left-xl\\@from-large{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-left-xl\\@to-large{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-left\\@from-large{margin-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-left\\@to-large{margin-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-left-none\\@from-large{margin-left:0 !important}}@media(max-width: 1199px){.u-margin-left-none\\@to-large{margin-left:0 !important}}@media(min-width: 1200px){.u-margin-x-gutter\\@from-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-x-gutter\\@to-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-x-xs\\@from-large{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-xs\\@to-large{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-sm\\@from-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-sm\\@to-large{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-md\\@from-large{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-md\\@to-large{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-lg\\@from-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-lg\\@to-large{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x-xl\\@from-large{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-x-xl\\@to-large{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-x\\@from-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-x\\@to-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-x-none\\@from-large{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1199px){.u-margin-x-none\\@to-large{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1200px){.u-margin-y-gutter\\@from-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-y-gutter\\@to-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-y-xs\\@from-large{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-xs\\@to-large{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-sm\\@from-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-sm\\@to-large{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-md\\@from-large{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-md\\@to-large{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-lg\\@from-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-lg\\@to-large{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y-xl\\@from-large{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1199px){.u-margin-y-xl\\@to-large{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1200px){.u-margin-y\\@from-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-y\\@to-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-y-none\\@from-large{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1199px){.u-margin-y-none\\@to-large{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1400px){.u-padding-gutter\\@from-big{padding:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-gutter\\@to-big{padding:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-xs\\@from-big{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-xs\\@to-big{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-sm\\@from-big{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-sm\\@to-big{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-md\\@from-big{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-md\\@to-big{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-lg\\@from-big{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-lg\\@to-big{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-xl\\@from-big{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-xl\\@to-big{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding\\@from-big{padding:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding\\@to-big{padding:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-none\\@from-big{padding:0 !important}}@media(max-width: 1399px){.u-padding-none\\@to-big{padding:0 !important}}@media(min-width: 1400px){.u-padding-top-gutter\\@from-big{padding-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-top-gutter\\@to-big{padding-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-top-xs\\@from-big{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-xs\\@to-big{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-sm\\@from-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-sm\\@to-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-md\\@from-big{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-md\\@to-big{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-lg\\@from-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-lg\\@to-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top-xl\\@from-big{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-top-xl\\@to-big{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-top\\@from-big{padding-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-top\\@to-big{padding-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-top-none\\@from-big{padding-top:0 !important}}@media(max-width: 1399px){.u-padding-top-none\\@to-big{padding-top:0 !important}}@media(min-width: 1400px){.u-padding-right-gutter\\@from-big{padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-right-gutter\\@to-big{padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-right-xs\\@from-big{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-xs\\@to-big{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-sm\\@from-big{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-sm\\@to-big{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-md\\@from-big{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-md\\@to-big{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-lg\\@from-big{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-lg\\@to-big{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right-xl\\@from-big{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-right-xl\\@to-big{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-right\\@from-big{padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-right\\@to-big{padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-right-none\\@from-big{padding-right:0 !important}}@media(max-width: 1399px){.u-padding-right-none\\@to-big{padding-right:0 !important}}@media(min-width: 1400px){.u-padding-bottom-gutter\\@from-big{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-bottom-gutter\\@to-big{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-bottom-xs\\@from-big{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-xs\\@to-big{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-sm\\@from-big{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-sm\\@to-big{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-md\\@from-big{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-md\\@to-big{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-lg\\@from-big{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-lg\\@to-big{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom-xl\\@from-big{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-bottom-xl\\@to-big{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-bottom\\@from-big{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-bottom\\@to-big{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-bottom-none\\@from-big{padding-bottom:0 !important}}@media(max-width: 1399px){.u-padding-bottom-none\\@to-big{padding-bottom:0 !important}}@media(min-width: 1400px){.u-padding-left-gutter\\@from-big{padding-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-left-gutter\\@to-big{padding-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-left-xs\\@from-big{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-xs\\@to-big{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-sm\\@from-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-sm\\@to-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-md\\@from-big{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-md\\@to-big{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-lg\\@from-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-lg\\@to-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left-xl\\@from-big{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-left-xl\\@to-big{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-left\\@from-big{padding-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-left\\@to-big{padding-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-left-none\\@from-big{padding-left:0 !important}}@media(max-width: 1399px){.u-padding-left-none\\@to-big{padding-left:0 !important}}@media(min-width: 1400px){.u-padding-x-gutter\\@from-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-x-gutter\\@to-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-x-xs\\@from-big{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-xs\\@to-big{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-sm\\@from-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-sm\\@to-big{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-md\\@from-big{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-md\\@to-big{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-lg\\@from-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-lg\\@to-big{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x-xl\\@from-big{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-x-xl\\@to-big{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-x\\@from-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-x\\@to-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-x-none\\@from-big{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1399px){.u-padding-x-none\\@to-big{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1400px){.u-padding-y-gutter\\@from-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-y-gutter\\@to-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-y-xs\\@from-big{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-xs\\@to-big{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-sm\\@from-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-sm\\@to-big{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-md\\@from-big{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-md\\@to-big{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-lg\\@from-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-lg\\@to-big{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y-xl\\@from-big{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-padding-y-xl\\@to-big{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-padding-y\\@from-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-y\\@to-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-y-none\\@from-big{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1399px){.u-padding-y-none\\@to-big{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1400px){.u-margin-gutter\\@from-big{margin:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-gutter\\@to-big{margin:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-xs\\@from-big{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-xs\\@to-big{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-sm\\@from-big{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-sm\\@to-big{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-md\\@from-big{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-md\\@to-big{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-lg\\@from-big{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-lg\\@to-big{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-xl\\@from-big{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-xl\\@to-big{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin\\@from-big{margin:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin\\@to-big{margin:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-none\\@from-big{margin:0 !important}}@media(max-width: 1399px){.u-margin-none\\@to-big{margin:0 !important}}@media(min-width: 1400px){.u-margin-top-gutter\\@from-big{margin-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-top-gutter\\@to-big{margin-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-top-xs\\@from-big{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-xs\\@to-big{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-sm\\@from-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-sm\\@to-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-md\\@from-big{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-md\\@to-big{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-lg\\@from-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-lg\\@to-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top-xl\\@from-big{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-top-xl\\@to-big{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-top\\@from-big{margin-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-top\\@to-big{margin-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-top-none\\@from-big{margin-top:0 !important}}@media(max-width: 1399px){.u-margin-top-none\\@to-big{margin-top:0 !important}}@media(min-width: 1400px){.u-margin-right-gutter\\@from-big{margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-right-gutter\\@to-big{margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-right-xs\\@from-big{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-xs\\@to-big{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-sm\\@from-big{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-sm\\@to-big{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-md\\@from-big{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-md\\@to-big{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-lg\\@from-big{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-lg\\@to-big{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right-xl\\@from-big{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-right-xl\\@to-big{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-right\\@from-big{margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-right\\@to-big{margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-right-none\\@from-big{margin-right:0 !important}}@media(max-width: 1399px){.u-margin-right-none\\@to-big{margin-right:0 !important}}@media(min-width: 1400px){.u-margin-bottom-gutter\\@from-big{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-bottom-gutter\\@to-big{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-bottom-xs\\@from-big{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-xs\\@to-big{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-sm\\@from-big{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-sm\\@to-big{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-md\\@from-big{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-md\\@to-big{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-lg\\@from-big{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-lg\\@to-big{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom-xl\\@from-big{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-bottom-xl\\@to-big{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-bottom\\@from-big{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-bottom\\@to-big{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-bottom-none\\@from-big{margin-bottom:0 !important}}@media(max-width: 1399px){.u-margin-bottom-none\\@to-big{margin-bottom:0 !important}}@media(min-width: 1400px){.u-margin-left-gutter\\@from-big{margin-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-left-gutter\\@to-big{margin-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-left-xs\\@from-big{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-xs\\@to-big{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-sm\\@from-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-sm\\@to-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-md\\@from-big{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-md\\@to-big{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-lg\\@from-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-lg\\@to-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left-xl\\@from-big{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-left-xl\\@to-big{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-left\\@from-big{margin-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-left\\@to-big{margin-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-left-none\\@from-big{margin-left:0 !important}}@media(max-width: 1399px){.u-margin-left-none\\@to-big{margin-left:0 !important}}@media(min-width: 1400px){.u-margin-x-gutter\\@from-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-x-gutter\\@to-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-x-xs\\@from-big{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-xs\\@to-big{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-sm\\@from-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-sm\\@to-big{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-md\\@from-big{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-md\\@to-big{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-lg\\@from-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-lg\\@to-big{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x-xl\\@from-big{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-x-xl\\@to-big{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-x\\@from-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-x\\@to-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-x-none\\@from-big{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1399px){.u-margin-x-none\\@to-big{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1400px){.u-margin-y-gutter\\@from-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-y-gutter\\@to-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-y-xs\\@from-big{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-xs\\@to-big{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-sm\\@from-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-sm\\@to-big{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-md\\@from-big{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-md\\@to-big{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-lg\\@from-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-lg\\@to-big{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y-xl\\@from-big{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1399px){.u-margin-y-xl\\@to-big{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1400px){.u-margin-y\\@from-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-y\\@to-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-y-none\\@from-big{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1399px){.u-margin-y-none\\@to-big{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1600px){.u-padding-gutter\\@from-huge{padding:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-gutter\\@to-huge{padding:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-xs\\@from-huge{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-xs\\@to-huge{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-sm\\@from-huge{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-sm\\@to-huge{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-md\\@from-huge{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-md\\@to-huge{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-lg\\@from-huge{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-lg\\@to-huge{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-xl\\@from-huge{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-xl\\@to-huge{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding\\@from-huge{padding:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding\\@to-huge{padding:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-none\\@from-huge{padding:0 !important}}@media(max-width: 1599px){.u-padding-none\\@to-huge{padding:0 !important}}@media(min-width: 1600px){.u-padding-top-gutter\\@from-huge{padding-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-top-gutter\\@to-huge{padding-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-top-xs\\@from-huge{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-xs\\@to-huge{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-sm\\@from-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-sm\\@to-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-md\\@from-huge{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-md\\@to-huge{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-lg\\@from-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-lg\\@to-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top-xl\\@from-huge{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-top-xl\\@to-huge{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-top\\@from-huge{padding-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-top\\@to-huge{padding-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-top-none\\@from-huge{padding-top:0 !important}}@media(max-width: 1599px){.u-padding-top-none\\@to-huge{padding-top:0 !important}}@media(min-width: 1600px){.u-padding-right-gutter\\@from-huge{padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-right-gutter\\@to-huge{padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-right-xs\\@from-huge{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-xs\\@to-huge{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-sm\\@from-huge{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-sm\\@to-huge{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-md\\@from-huge{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-md\\@to-huge{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-lg\\@from-huge{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-lg\\@to-huge{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right-xl\\@from-huge{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-right-xl\\@to-huge{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-right\\@from-huge{padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-right\\@to-huge{padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-right-none\\@from-huge{padding-right:0 !important}}@media(max-width: 1599px){.u-padding-right-none\\@to-huge{padding-right:0 !important}}@media(min-width: 1600px){.u-padding-bottom-gutter\\@from-huge{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-bottom-gutter\\@to-huge{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-bottom-xs\\@from-huge{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-xs\\@to-huge{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-sm\\@from-huge{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-sm\\@to-huge{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-md\\@from-huge{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-md\\@to-huge{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-lg\\@from-huge{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-lg\\@to-huge{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom-xl\\@from-huge{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-bottom-xl\\@to-huge{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-bottom\\@from-huge{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-bottom\\@to-huge{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-bottom-none\\@from-huge{padding-bottom:0 !important}}@media(max-width: 1599px){.u-padding-bottom-none\\@to-huge{padding-bottom:0 !important}}@media(min-width: 1600px){.u-padding-left-gutter\\@from-huge{padding-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-left-gutter\\@to-huge{padding-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-left-xs\\@from-huge{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-xs\\@to-huge{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-sm\\@from-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-sm\\@to-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-md\\@from-huge{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-md\\@to-huge{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-lg\\@from-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-lg\\@to-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left-xl\\@from-huge{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-left-xl\\@to-huge{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-left\\@from-huge{padding-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-left\\@to-huge{padding-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-left-none\\@from-huge{padding-left:0 !important}}@media(max-width: 1599px){.u-padding-left-none\\@to-huge{padding-left:0 !important}}@media(min-width: 1600px){.u-padding-x-gutter\\@from-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-x-gutter\\@to-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-x-xs\\@from-huge{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-xs\\@to-huge{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-sm\\@from-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-sm\\@to-huge{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-md\\@from-huge{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-md\\@to-huge{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-lg\\@from-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-lg\\@to-huge{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x-xl\\@from-huge{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-x-xl\\@to-huge{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-x\\@from-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-x\\@to-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-x-none\\@from-huge{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1599px){.u-padding-x-none\\@to-huge{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1600px){.u-padding-y-gutter\\@from-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-y-gutter\\@to-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-y-xs\\@from-huge{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-xs\\@to-huge{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-sm\\@from-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-sm\\@to-huge{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-md\\@from-huge{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-md\\@to-huge{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-lg\\@from-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-lg\\@to-huge{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y-xl\\@from-huge{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-padding-y-xl\\@to-huge{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-padding-y\\@from-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-y\\@to-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-y-none\\@from-huge{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1599px){.u-padding-y-none\\@to-huge{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1600px){.u-margin-gutter\\@from-huge{margin:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-gutter\\@to-huge{margin:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-xs\\@from-huge{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-xs\\@to-huge{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-sm\\@from-huge{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-sm\\@to-huge{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-md\\@from-huge{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-md\\@to-huge{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-lg\\@from-huge{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-lg\\@to-huge{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-xl\\@from-huge{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-xl\\@to-huge{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin\\@from-huge{margin:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin\\@to-huge{margin:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-none\\@from-huge{margin:0 !important}}@media(max-width: 1599px){.u-margin-none\\@to-huge{margin:0 !important}}@media(min-width: 1600px){.u-margin-top-gutter\\@from-huge{margin-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-top-gutter\\@to-huge{margin-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-top-xs\\@from-huge{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-xs\\@to-huge{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-sm\\@from-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-sm\\@to-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-md\\@from-huge{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-md\\@to-huge{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-lg\\@from-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-lg\\@to-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top-xl\\@from-huge{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-top-xl\\@to-huge{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-top\\@from-huge{margin-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-top\\@to-huge{margin-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-top-none\\@from-huge{margin-top:0 !important}}@media(max-width: 1599px){.u-margin-top-none\\@to-huge{margin-top:0 !important}}@media(min-width: 1600px){.u-margin-right-gutter\\@from-huge{margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-right-gutter\\@to-huge{margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-right-xs\\@from-huge{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-xs\\@to-huge{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-sm\\@from-huge{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-sm\\@to-huge{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-md\\@from-huge{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-md\\@to-huge{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-lg\\@from-huge{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-lg\\@to-huge{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right-xl\\@from-huge{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-right-xl\\@to-huge{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-right\\@from-huge{margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-right\\@to-huge{margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-right-none\\@from-huge{margin-right:0 !important}}@media(max-width: 1599px){.u-margin-right-none\\@to-huge{margin-right:0 !important}}@media(min-width: 1600px){.u-margin-bottom-gutter\\@from-huge{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-bottom-gutter\\@to-huge{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-bottom-xs\\@from-huge{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-xs\\@to-huge{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-sm\\@from-huge{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-sm\\@to-huge{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-md\\@from-huge{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-md\\@to-huge{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-lg\\@from-huge{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-lg\\@to-huge{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom-xl\\@from-huge{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-bottom-xl\\@to-huge{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-bottom\\@from-huge{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-bottom\\@to-huge{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-bottom-none\\@from-huge{margin-bottom:0 !important}}@media(max-width: 1599px){.u-margin-bottom-none\\@to-huge{margin-bottom:0 !important}}@media(min-width: 1600px){.u-margin-left-gutter\\@from-huge{margin-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-left-gutter\\@to-huge{margin-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-left-xs\\@from-huge{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-xs\\@to-huge{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-sm\\@from-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-sm\\@to-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-md\\@from-huge{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-md\\@to-huge{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-lg\\@from-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-lg\\@to-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left-xl\\@from-huge{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-left-xl\\@to-huge{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-left\\@from-huge{margin-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-left\\@to-huge{margin-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-left-none\\@from-huge{margin-left:0 !important}}@media(max-width: 1599px){.u-margin-left-none\\@to-huge{margin-left:0 !important}}@media(min-width: 1600px){.u-margin-x-gutter\\@from-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-x-gutter\\@to-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-x-xs\\@from-huge{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-xs\\@to-huge{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-sm\\@from-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-sm\\@to-huge{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-md\\@from-huge{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-md\\@to-huge{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-lg\\@from-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-lg\\@to-huge{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x-xl\\@from-huge{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-x-xl\\@to-huge{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-x\\@from-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-x\\@to-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-x-none\\@from-huge{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1599px){.u-margin-x-none\\@to-huge{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1600px){.u-margin-y-gutter\\@from-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-y-gutter\\@to-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-y-xs\\@from-huge{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-xs\\@to-huge{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-sm\\@from-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-sm\\@to-huge{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-md\\@from-huge{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-md\\@to-huge{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-lg\\@from-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-lg\\@to-huge{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y-xl\\@from-huge{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1599px){.u-margin-y-xl\\@to-huge{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1600px){.u-margin-y\\@from-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-y\\@to-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-y-none\\@from-huge{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1599px){.u-margin-y-none\\@to-huge{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1800px){.u-padding-gutter\\@from-enormous{padding:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-gutter\\@to-enormous{padding:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-xs\\@from-enormous{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-xs\\@to-enormous{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-sm\\@from-enormous{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-sm\\@to-enormous{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-md\\@from-enormous{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-md\\@to-enormous{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-lg\\@from-enormous{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-lg\\@to-enormous{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-xl\\@from-enormous{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-xl\\@to-enormous{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding\\@from-enormous{padding:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding\\@to-enormous{padding:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-none\\@from-enormous{padding:0 !important}}@media(max-width: 1799px){.u-padding-none\\@to-enormous{padding:0 !important}}@media(min-width: 1800px){.u-padding-top-gutter\\@from-enormous{padding-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-top-gutter\\@to-enormous{padding-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-top-xs\\@from-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-xs\\@to-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-sm\\@from-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-sm\\@to-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-md\\@from-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-md\\@to-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-lg\\@from-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-lg\\@to-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top-xl\\@from-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-top-xl\\@to-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-top\\@from-enormous{padding-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-top\\@to-enormous{padding-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-top-none\\@from-enormous{padding-top:0 !important}}@media(max-width: 1799px){.u-padding-top-none\\@to-enormous{padding-top:0 !important}}@media(min-width: 1800px){.u-padding-right-gutter\\@from-enormous{padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-right-gutter\\@to-enormous{padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-right-xs\\@from-enormous{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-xs\\@to-enormous{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-sm\\@from-enormous{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-sm\\@to-enormous{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-md\\@from-enormous{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-md\\@to-enormous{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-lg\\@from-enormous{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-lg\\@to-enormous{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right-xl\\@from-enormous{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-right-xl\\@to-enormous{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-right\\@from-enormous{padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-right\\@to-enormous{padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-right-none\\@from-enormous{padding-right:0 !important}}@media(max-width: 1799px){.u-padding-right-none\\@to-enormous{padding-right:0 !important}}@media(min-width: 1800px){.u-padding-bottom-gutter\\@from-enormous{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-bottom-gutter\\@to-enormous{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-bottom-xs\\@from-enormous{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-xs\\@to-enormous{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-sm\\@from-enormous{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-sm\\@to-enormous{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-md\\@from-enormous{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-md\\@to-enormous{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-lg\\@from-enormous{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-lg\\@to-enormous{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom-xl\\@from-enormous{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-bottom-xl\\@to-enormous{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-bottom\\@from-enormous{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-bottom\\@to-enormous{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-bottom-none\\@from-enormous{padding-bottom:0 !important}}@media(max-width: 1799px){.u-padding-bottom-none\\@to-enormous{padding-bottom:0 !important}}@media(min-width: 1800px){.u-padding-left-gutter\\@from-enormous{padding-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-left-gutter\\@to-enormous{padding-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-left-xs\\@from-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-xs\\@to-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-sm\\@from-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-sm\\@to-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-md\\@from-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-md\\@to-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-lg\\@from-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-lg\\@to-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left-xl\\@from-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-left-xl\\@to-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-left\\@from-enormous{padding-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-left\\@to-enormous{padding-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-left-none\\@from-enormous{padding-left:0 !important}}@media(max-width: 1799px){.u-padding-left-none\\@to-enormous{padding-left:0 !important}}@media(min-width: 1800px){.u-padding-x-gutter\\@from-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-x-gutter\\@to-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-x-xs\\@from-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-xs\\@to-enormous{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-sm\\@from-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-sm\\@to-enormous{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-md\\@from-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-md\\@to-enormous{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-lg\\@from-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-lg\\@to-enormous{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x-xl\\@from-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-x-xl\\@to-enormous{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-x\\@from-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-x\\@to-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-x-none\\@from-enormous{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1799px){.u-padding-x-none\\@to-enormous{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1800px){.u-padding-y-gutter\\@from-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-y-gutter\\@to-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-y-xs\\@from-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-xs\\@to-enormous{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-sm\\@from-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-sm\\@to-enormous{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-md\\@from-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-md\\@to-enormous{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-lg\\@from-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-lg\\@to-enormous{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y-xl\\@from-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-padding-y-xl\\@to-enormous{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-padding-y\\@from-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-y\\@to-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-y-none\\@from-enormous{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1799px){.u-padding-y-none\\@to-enormous{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1800px){.u-margin-gutter\\@from-enormous{margin:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-gutter\\@to-enormous{margin:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-xs\\@from-enormous{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-xs\\@to-enormous{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-sm\\@from-enormous{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-sm\\@to-enormous{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-md\\@from-enormous{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-md\\@to-enormous{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-lg\\@from-enormous{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-lg\\@to-enormous{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-xl\\@from-enormous{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-xl\\@to-enormous{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin\\@from-enormous{margin:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin\\@to-enormous{margin:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-none\\@from-enormous{margin:0 !important}}@media(max-width: 1799px){.u-margin-none\\@to-enormous{margin:0 !important}}@media(min-width: 1800px){.u-margin-top-gutter\\@from-enormous{margin-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-top-gutter\\@to-enormous{margin-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-top-xs\\@from-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-xs\\@to-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-sm\\@from-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-sm\\@to-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-md\\@from-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-md\\@to-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-lg\\@from-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-lg\\@to-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top-xl\\@from-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-top-xl\\@to-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-top\\@from-enormous{margin-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-top\\@to-enormous{margin-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-top-none\\@from-enormous{margin-top:0 !important}}@media(max-width: 1799px){.u-margin-top-none\\@to-enormous{margin-top:0 !important}}@media(min-width: 1800px){.u-margin-right-gutter\\@from-enormous{margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-right-gutter\\@to-enormous{margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-right-xs\\@from-enormous{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-xs\\@to-enormous{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-sm\\@from-enormous{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-sm\\@to-enormous{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-md\\@from-enormous{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-md\\@to-enormous{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-lg\\@from-enormous{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-lg\\@to-enormous{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right-xl\\@from-enormous{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-right-xl\\@to-enormous{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-right\\@from-enormous{margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-right\\@to-enormous{margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-right-none\\@from-enormous{margin-right:0 !important}}@media(max-width: 1799px){.u-margin-right-none\\@to-enormous{margin-right:0 !important}}@media(min-width: 1800px){.u-margin-bottom-gutter\\@from-enormous{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-bottom-gutter\\@to-enormous{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-bottom-xs\\@from-enormous{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-xs\\@to-enormous{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-sm\\@from-enormous{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-sm\\@to-enormous{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-md\\@from-enormous{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-md\\@to-enormous{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-lg\\@from-enormous{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-lg\\@to-enormous{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom-xl\\@from-enormous{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-bottom-xl\\@to-enormous{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-bottom\\@from-enormous{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-bottom\\@to-enormous{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-bottom-none\\@from-enormous{margin-bottom:0 !important}}@media(max-width: 1799px){.u-margin-bottom-none\\@to-enormous{margin-bottom:0 !important}}@media(min-width: 1800px){.u-margin-left-gutter\\@from-enormous{margin-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-left-gutter\\@to-enormous{margin-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-left-xs\\@from-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-xs\\@to-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-sm\\@from-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-sm\\@to-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-md\\@from-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-md\\@to-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-lg\\@from-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-lg\\@to-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left-xl\\@from-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-left-xl\\@to-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-left\\@from-enormous{margin-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-left\\@to-enormous{margin-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-left-none\\@from-enormous{margin-left:0 !important}}@media(max-width: 1799px){.u-margin-left-none\\@to-enormous{margin-left:0 !important}}@media(min-width: 1800px){.u-margin-x-gutter\\@from-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-x-gutter\\@to-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-x-xs\\@from-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-xs\\@to-enormous{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-sm\\@from-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-sm\\@to-enormous{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-md\\@from-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-md\\@to-enormous{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-lg\\@from-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-lg\\@to-enormous{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x-xl\\@from-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-x-xl\\@to-enormous{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-x\\@from-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-x\\@to-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-x-none\\@from-enormous{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1799px){.u-margin-x-none\\@to-enormous{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1800px){.u-margin-y-gutter\\@from-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-y-gutter\\@to-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-y-xs\\@from-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-xs\\@to-enormous{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-sm\\@from-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-sm\\@to-enormous{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-md\\@from-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-md\\@to-enormous{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-lg\\@from-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-lg\\@to-enormous{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y-xl\\@from-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1799px){.u-margin-y-xl\\@to-enormous{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 1800px){.u-margin-y\\@from-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-y\\@to-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-y-none\\@from-enormous{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1799px){.u-margin-y-none\\@to-enormous{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 2000px){.u-padding-gutter\\@from-gigantic{padding:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-gutter\\@to-gigantic{padding:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-xs\\@from-gigantic{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-xs\\@to-gigantic{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-sm\\@from-gigantic{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-sm\\@to-gigantic{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-md\\@from-gigantic{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-md\\@to-gigantic{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-lg\\@from-gigantic{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-lg\\@to-gigantic{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-xl\\@from-gigantic{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-xl\\@to-gigantic{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding\\@from-gigantic{padding:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding\\@to-gigantic{padding:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-none\\@from-gigantic{padding:0 !important}}@media(max-width: 1999px){.u-padding-none\\@to-gigantic{padding:0 !important}}@media(min-width: 2000px){.u-padding-top-gutter\\@from-gigantic{padding-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-top-gutter\\@to-gigantic{padding-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-top-xs\\@from-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-xs\\@to-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-sm\\@from-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-sm\\@to-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-md\\@from-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-md\\@to-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-lg\\@from-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-lg\\@to-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top-xl\\@from-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-top-xl\\@to-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-top\\@from-gigantic{padding-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-top\\@to-gigantic{padding-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-top-none\\@from-gigantic{padding-top:0 !important}}@media(max-width: 1999px){.u-padding-top-none\\@to-gigantic{padding-top:0 !important}}@media(min-width: 2000px){.u-padding-right-gutter\\@from-gigantic{padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-right-gutter\\@to-gigantic{padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-right-xs\\@from-gigantic{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-xs\\@to-gigantic{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-sm\\@from-gigantic{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-sm\\@to-gigantic{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-md\\@from-gigantic{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-md\\@to-gigantic{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-lg\\@from-gigantic{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-lg\\@to-gigantic{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right-xl\\@from-gigantic{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-right-xl\\@to-gigantic{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-right\\@from-gigantic{padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-right\\@to-gigantic{padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-right-none\\@from-gigantic{padding-right:0 !important}}@media(max-width: 1999px){.u-padding-right-none\\@to-gigantic{padding-right:0 !important}}@media(min-width: 2000px){.u-padding-bottom-gutter\\@from-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-bottom-gutter\\@to-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-bottom-xs\\@from-gigantic{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-xs\\@to-gigantic{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-sm\\@from-gigantic{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-sm\\@to-gigantic{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-md\\@from-gigantic{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-md\\@to-gigantic{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-lg\\@from-gigantic{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-lg\\@to-gigantic{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom-xl\\@from-gigantic{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-bottom-xl\\@to-gigantic{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-bottom\\@from-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-bottom\\@to-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-bottom-none\\@from-gigantic{padding-bottom:0 !important}}@media(max-width: 1999px){.u-padding-bottom-none\\@to-gigantic{padding-bottom:0 !important}}@media(min-width: 2000px){.u-padding-left-gutter\\@from-gigantic{padding-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-left-gutter\\@to-gigantic{padding-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-left-xs\\@from-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-xs\\@to-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-sm\\@from-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-sm\\@to-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-md\\@from-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-md\\@to-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-lg\\@from-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-lg\\@to-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left-xl\\@from-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-left-xl\\@to-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-left\\@from-gigantic{padding-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-left\\@to-gigantic{padding-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-left-none\\@from-gigantic{padding-left:0 !important}}@media(max-width: 1999px){.u-padding-left-none\\@to-gigantic{padding-left:0 !important}}@media(min-width: 2000px){.u-padding-x-gutter\\@from-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-x-gutter\\@to-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-x-xs\\@from-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-xs\\@to-gigantic{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-sm\\@from-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-sm\\@to-gigantic{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-md\\@from-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-md\\@to-gigantic{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-lg\\@from-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-lg\\@to-gigantic{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x-xl\\@from-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-x-xl\\@to-gigantic{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-x\\@from-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-x\\@to-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-x-none\\@from-gigantic{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1999px){.u-padding-x-none\\@to-gigantic{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 2000px){.u-padding-y-gutter\\@from-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-y-gutter\\@to-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-y-xs\\@from-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-xs\\@to-gigantic{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-sm\\@from-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-sm\\@to-gigantic{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-md\\@from-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-md\\@to-gigantic{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-lg\\@from-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-lg\\@to-gigantic{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y-xl\\@from-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-padding-y-xl\\@to-gigantic{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-padding-y\\@from-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-y\\@to-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-y-none\\@from-gigantic{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1999px){.u-padding-y-none\\@to-gigantic{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 2000px){.u-margin-gutter\\@from-gigantic{margin:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-gutter\\@to-gigantic{margin:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-xs\\@from-gigantic{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-xs\\@to-gigantic{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-sm\\@from-gigantic{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-sm\\@to-gigantic{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-md\\@from-gigantic{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-md\\@to-gigantic{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-lg\\@from-gigantic{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-lg\\@to-gigantic{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-xl\\@from-gigantic{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-xl\\@to-gigantic{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin\\@from-gigantic{margin:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin\\@to-gigantic{margin:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-none\\@from-gigantic{margin:0 !important}}@media(max-width: 1999px){.u-margin-none\\@to-gigantic{margin:0 !important}}@media(min-width: 2000px){.u-margin-top-gutter\\@from-gigantic{margin-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-top-gutter\\@to-gigantic{margin-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-top-xs\\@from-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-xs\\@to-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-sm\\@from-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-sm\\@to-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-md\\@from-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-md\\@to-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-lg\\@from-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-lg\\@to-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top-xl\\@from-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-top-xl\\@to-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-top\\@from-gigantic{margin-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-top\\@to-gigantic{margin-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-top-none\\@from-gigantic{margin-top:0 !important}}@media(max-width: 1999px){.u-margin-top-none\\@to-gigantic{margin-top:0 !important}}@media(min-width: 2000px){.u-margin-right-gutter\\@from-gigantic{margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-right-gutter\\@to-gigantic{margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-right-xs\\@from-gigantic{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-xs\\@to-gigantic{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-sm\\@from-gigantic{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-sm\\@to-gigantic{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-md\\@from-gigantic{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-md\\@to-gigantic{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-lg\\@from-gigantic{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-lg\\@to-gigantic{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right-xl\\@from-gigantic{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-right-xl\\@to-gigantic{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-right\\@from-gigantic{margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-right\\@to-gigantic{margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-right-none\\@from-gigantic{margin-right:0 !important}}@media(max-width: 1999px){.u-margin-right-none\\@to-gigantic{margin-right:0 !important}}@media(min-width: 2000px){.u-margin-bottom-gutter\\@from-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-bottom-gutter\\@to-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-bottom-xs\\@from-gigantic{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-xs\\@to-gigantic{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-sm\\@from-gigantic{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-sm\\@to-gigantic{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-md\\@from-gigantic{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-md\\@to-gigantic{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-lg\\@from-gigantic{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-lg\\@to-gigantic{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom-xl\\@from-gigantic{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-bottom-xl\\@to-gigantic{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-bottom\\@from-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-bottom\\@to-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-bottom-none\\@from-gigantic{margin-bottom:0 !important}}@media(max-width: 1999px){.u-margin-bottom-none\\@to-gigantic{margin-bottom:0 !important}}@media(min-width: 2000px){.u-margin-left-gutter\\@from-gigantic{margin-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-left-gutter\\@to-gigantic{margin-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-left-xs\\@from-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-xs\\@to-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-sm\\@from-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-sm\\@to-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-md\\@from-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-md\\@to-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-lg\\@from-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-lg\\@to-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left-xl\\@from-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-left-xl\\@to-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-left\\@from-gigantic{margin-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-left\\@to-gigantic{margin-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-left-none\\@from-gigantic{margin-left:0 !important}}@media(max-width: 1999px){.u-margin-left-none\\@to-gigantic{margin-left:0 !important}}@media(min-width: 2000px){.u-margin-x-gutter\\@from-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-x-gutter\\@to-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-x-xs\\@from-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-xs\\@to-gigantic{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-sm\\@from-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-sm\\@to-gigantic{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-md\\@from-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-md\\@to-gigantic{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-lg\\@from-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-lg\\@to-gigantic{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x-xl\\@from-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-x-xl\\@to-gigantic{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-x\\@from-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-x\\@to-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-x-none\\@from-gigantic{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1999px){.u-margin-x-none\\@to-gigantic{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 2000px){.u-margin-y-gutter\\@from-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-y-gutter\\@to-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-y-xs\\@from-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-xs\\@to-gigantic{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-sm\\@from-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-sm\\@to-gigantic{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-md\\@from-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-md\\@to-gigantic{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-lg\\@from-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-lg\\@to-gigantic{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y-xl\\@from-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 1999px){.u-margin-y-xl\\@to-gigantic{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2000px){.u-margin-y\\@from-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-y\\@to-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-y-none\\@from-gigantic{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1999px){.u-margin-y-none\\@to-gigantic{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 2400px){.u-padding-gutter\\@from-colossal{padding:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-gutter\\@to-colossal{padding:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-xs\\@from-colossal{padding:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-xs\\@to-colossal{padding:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-sm\\@from-colossal{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-sm\\@to-colossal{padding:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-md\\@from-colossal{padding:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-md\\@to-colossal{padding:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-lg\\@from-colossal{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-lg\\@to-colossal{padding:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-xl\\@from-colossal{padding:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-xl\\@to-colossal{padding:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding\\@from-colossal{padding:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding\\@to-colossal{padding:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-none\\@from-colossal{padding:0 !important}}@media(max-width: 2399px){.u-padding-none\\@to-colossal{padding:0 !important}}@media(min-width: 2400px){.u-padding-top-gutter\\@from-colossal{padding-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-top-gutter\\@to-colossal{padding-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-top-xs\\@from-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-xs\\@to-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-sm\\@from-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-sm\\@to-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-md\\@from-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-md\\@to-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-lg\\@from-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-lg\\@to-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top-xl\\@from-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-top-xl\\@to-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-top\\@from-colossal{padding-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-top\\@to-colossal{padding-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-top-none\\@from-colossal{padding-top:0 !important}}@media(max-width: 2399px){.u-padding-top-none\\@to-colossal{padding-top:0 !important}}@media(min-width: 2400px){.u-padding-right-gutter\\@from-colossal{padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-right-gutter\\@to-colossal{padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-right-xs\\@from-colossal{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-xs\\@to-colossal{padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-sm\\@from-colossal{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-sm\\@to-colossal{padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-md\\@from-colossal{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-md\\@to-colossal{padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-lg\\@from-colossal{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-lg\\@to-colossal{padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right-xl\\@from-colossal{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-right-xl\\@to-colossal{padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-right\\@from-colossal{padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-right\\@to-colossal{padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-right-none\\@from-colossal{padding-right:0 !important}}@media(max-width: 2399px){.u-padding-right-none\\@to-colossal{padding-right:0 !important}}@media(min-width: 2400px){.u-padding-bottom-gutter\\@from-colossal{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-bottom-gutter\\@to-colossal{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-bottom-xs\\@from-colossal{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-xs\\@to-colossal{padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-sm\\@from-colossal{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-sm\\@to-colossal{padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-md\\@from-colossal{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-md\\@to-colossal{padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-lg\\@from-colossal{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-lg\\@to-colossal{padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom-xl\\@from-colossal{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-bottom-xl\\@to-colossal{padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-bottom\\@from-colossal{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-bottom\\@to-colossal{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-bottom-none\\@from-colossal{padding-bottom:0 !important}}@media(max-width: 2399px){.u-padding-bottom-none\\@to-colossal{padding-bottom:0 !important}}@media(min-width: 2400px){.u-padding-left-gutter\\@from-colossal{padding-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-left-gutter\\@to-colossal{padding-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-left-xs\\@from-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-xs\\@to-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-sm\\@from-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-sm\\@to-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-md\\@from-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-md\\@to-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-lg\\@from-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-lg\\@to-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left-xl\\@from-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-left-xl\\@to-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-left\\@from-colossal{padding-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-left\\@to-colossal{padding-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-left-none\\@from-colossal{padding-left:0 !important}}@media(max-width: 2399px){.u-padding-left-none\\@to-colossal{padding-left:0 !important}}@media(min-width: 2400px){.u-padding-x-gutter\\@from-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-x-gutter\\@to-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-x-xs\\@from-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-xs\\@to-colossal{padding-left:calc(5 * var(--vh, 1vh)) !important;padding-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-sm\\@from-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-sm\\@to-colossal{padding-left:calc(7.5 * var(--vh, 1vh)) !important;padding-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-md\\@from-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-md\\@to-colossal{padding-left:calc(10 * var(--vh, 1vh)) !important;padding-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-lg\\@from-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-lg\\@to-colossal{padding-left:calc(12.5 * var(--vh, 1vh)) !important;padding-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x-xl\\@from-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-x-xl\\@to-colossal{padding-left:calc(15 * var(--vh, 1vh)) !important;padding-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-x\\@from-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-x\\@to-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-x-none\\@from-colossal{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 2399px){.u-padding-x-none\\@to-colossal{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 2400px){.u-padding-y-gutter\\@from-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-y-gutter\\@to-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-y-xs\\@from-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-xs\\@to-colossal{padding-top:calc(5 * var(--vh, 1vh)) !important;padding-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-sm\\@from-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-sm\\@to-colossal{padding-top:calc(7.5 * var(--vh, 1vh)) !important;padding-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-md\\@from-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-md\\@to-colossal{padding-top:calc(10 * var(--vh, 1vh)) !important;padding-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-lg\\@from-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-lg\\@to-colossal{padding-top:calc(12.5 * var(--vh, 1vh)) !important;padding-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y-xl\\@from-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-padding-y-xl\\@to-colossal{padding-top:calc(15 * var(--vh, 1vh)) !important;padding-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-padding-y\\@from-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-y\\@to-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-y-none\\@from-colossal{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 2399px){.u-padding-y-none\\@to-colossal{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 2400px){.u-margin-gutter\\@from-colossal{margin:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-gutter\\@to-colossal{margin:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-xs\\@from-colossal{margin:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-xs\\@to-colossal{margin:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-sm\\@from-colossal{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-sm\\@to-colossal{margin:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-md\\@from-colossal{margin:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-md\\@to-colossal{margin:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-lg\\@from-colossal{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-lg\\@to-colossal{margin:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-xl\\@from-colossal{margin:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-xl\\@to-colossal{margin:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin\\@from-colossal{margin:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin\\@to-colossal{margin:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-none\\@from-colossal{margin:0 !important}}@media(max-width: 2399px){.u-margin-none\\@to-colossal{margin:0 !important}}@media(min-width: 2400px){.u-margin-top-gutter\\@from-colossal{margin-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-top-gutter\\@to-colossal{margin-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-top-xs\\@from-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-xs\\@to-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-sm\\@from-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-sm\\@to-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-md\\@from-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-md\\@to-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-lg\\@from-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-lg\\@to-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top-xl\\@from-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-top-xl\\@to-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-top\\@from-colossal{margin-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-top\\@to-colossal{margin-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-top-none\\@from-colossal{margin-top:0 !important}}@media(max-width: 2399px){.u-margin-top-none\\@to-colossal{margin-top:0 !important}}@media(min-width: 2400px){.u-margin-right-gutter\\@from-colossal{margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-right-gutter\\@to-colossal{margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-right-xs\\@from-colossal{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-xs\\@to-colossal{margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-sm\\@from-colossal{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-sm\\@to-colossal{margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-md\\@from-colossal{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-md\\@to-colossal{margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-lg\\@from-colossal{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-lg\\@to-colossal{margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right-xl\\@from-colossal{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-right-xl\\@to-colossal{margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-right\\@from-colossal{margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-right\\@to-colossal{margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-right-none\\@from-colossal{margin-right:0 !important}}@media(max-width: 2399px){.u-margin-right-none\\@to-colossal{margin-right:0 !important}}@media(min-width: 2400px){.u-margin-bottom-gutter\\@from-colossal{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-bottom-gutter\\@to-colossal{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-bottom-xs\\@from-colossal{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-xs\\@to-colossal{margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-sm\\@from-colossal{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-sm\\@to-colossal{margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-md\\@from-colossal{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-md\\@to-colossal{margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-lg\\@from-colossal{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-lg\\@to-colossal{margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom-xl\\@from-colossal{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-bottom-xl\\@to-colossal{margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-bottom\\@from-colossal{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-bottom\\@to-colossal{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-bottom-none\\@from-colossal{margin-bottom:0 !important}}@media(max-width: 2399px){.u-margin-bottom-none\\@to-colossal{margin-bottom:0 !important}}@media(min-width: 2400px){.u-margin-left-gutter\\@from-colossal{margin-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-left-gutter\\@to-colossal{margin-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-left-xs\\@from-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-xs\\@to-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-sm\\@from-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-sm\\@to-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-md\\@from-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-md\\@to-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-lg\\@from-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-lg\\@to-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left-xl\\@from-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-left-xl\\@to-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-left\\@from-colossal{margin-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-left\\@to-colossal{margin-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-left-none\\@from-colossal{margin-left:0 !important}}@media(max-width: 2399px){.u-margin-left-none\\@to-colossal{margin-left:0 !important}}@media(min-width: 2400px){.u-margin-x-gutter\\@from-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-x-gutter\\@to-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-x-xs\\@from-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-xs\\@to-colossal{margin-left:calc(5 * var(--vh, 1vh)) !important;margin-right:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-sm\\@from-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-sm\\@to-colossal{margin-left:calc(7.5 * var(--vh, 1vh)) !important;margin-right:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-md\\@from-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-md\\@to-colossal{margin-left:calc(10 * var(--vh, 1vh)) !important;margin-right:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-lg\\@from-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-lg\\@to-colossal{margin-left:calc(12.5 * var(--vh, 1vh)) !important;margin-right:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x-xl\\@from-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-x-xl\\@to-colossal{margin-left:calc(15 * var(--vh, 1vh)) !important;margin-right:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-x\\@from-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-x\\@to-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-x-none\\@from-colossal{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 2399px){.u-margin-x-none\\@to-colossal{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 2400px){.u-margin-y-gutter\\@from-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-y-gutter\\@to-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-y-xs\\@from-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-xs\\@to-colossal{margin-top:calc(5 * var(--vh, 1vh)) !important;margin-bottom:calc(5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-sm\\@from-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-sm\\@to-colossal{margin-top:calc(7.5 * var(--vh, 1vh)) !important;margin-bottom:calc(7.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-md\\@from-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-md\\@to-colossal{margin-top:calc(10 * var(--vh, 1vh)) !important;margin-bottom:calc(10 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-lg\\@from-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-lg\\@to-colossal{margin-top:calc(12.5 * var(--vh, 1vh)) !important;margin-bottom:calc(12.5 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y-xl\\@from-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(max-width: 2399px){.u-margin-y-xl\\@to-colossal{margin-top:calc(15 * var(--vh, 1vh)) !important;margin-bottom:calc(15 * var(--vh, 1vh)) !important}}@media(min-width: 2400px){.u-margin-y\\@from-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-y\\@to-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-y-none\\@from-colossal{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 2399px){.u-margin-y-none\\@to-colossal{margin-top:0 !important;margin-bottom:0 !important}}"]} \ No newline at end of file +{"version":3,"sources":["main.css"],"names":[],"mappings":"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Y,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,WAAW,aAAa,CAAC,WAAW,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,YAAY,aAAa,CAAC,YAAY,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,YAA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C,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBA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AC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,yBAAyB,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,yBAAyB,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,yBAAyB,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,yBAAyB,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,mBAAmB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,qBAAqB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,sBAAsB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,oBAAoB,aAAa,CAAC,WAAW,CAAC,CAAC,0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C,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,uBAAuB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,qBAAqB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,wBAAwB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,sBAAsB,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,0BAA0B,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,wBAAwB,aAAa,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,yBAAyB,aAAa,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,4BAA4B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,0BAA0B,cAAc,CAAC,YAAY,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,yBAAyB,cAAc,CAAC,WAAW,CAAC,CAAC,0BAA0B,2BAA2B,cAAc,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","file":"main.css","sourcesContent":[":root{--grid-columns: 4;--grid-gutter: 0.625rem;--grid-margin: 0.625rem;--container-width: calc(100% - 2 * var(--grid-margin));--font-size-h1: clamp(36px, 0.0514285714 * calc(100 * var(--vw, 1vw)), 72px);--font-size-h2: 1.75rem;--font-size-h3: 1.5rem;--font-size-h4: 1.25rem;--font-size-h5: 1.125rem;--font-size-h6: 1rem}@media(min-width: 700px){:root{--grid-columns: 12;--grid-gutter: 1rem;--grid-margin: 1.25rem}}/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-0.25em}sup{top:-0.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}button,[type=button],[type=reset],[type=submit]{-webkit-appearance:button}button::-moz-focus-inner,[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner{border-style:none;padding:0}button:-moz-focusring,[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}html{box-sizing:border-box}template,[hidden]{display:none}*,:before,:after{box-sizing:inherit}address{font-style:inherit}dfn,cite,em,i{font-style:italic}b,strong{font-weight:700}a{text-decoration:none}a svg{pointer-events:none}ul,ol{margin:0;padding:0;list-style:none}p,figure{margin:0;padding:0}h1,h2,h3,h4,h5,h6{margin:0}a,area,button,input,label,select,textarea,[tabindex]{-ms-touch-action:manipulation;touch-action:manipulation}[hreflang]>abbr[title]{text-decoration:none}table{border-spacing:0;border-collapse:collapse}hr{display:block;margin:1em 0;padding:0;height:1px;border:0;border-top:1px solid #ccc}audio,canvas,iframe,img,svg,video{vertical-align:middle}audio:not([controls]){display:none;height:0}img,svg{max-width:100%;height:auto}img[width],img[height],svg[width],svg[height]{max-width:none}img{font-style:italic}svg{fill:currentColor}input,select,textarea{display:block;margin:0;padding:0;width:100%;outline:0;border:0;border-radius:0;background:none rgba(0,0,0,0);color:inherit;font:inherit;line-height:normal;appearance:none}select{text-transform:none}select::-ms-expand{display:none}select::-ms-value{background:none;color:inherit}textarea{overflow:auto;resize:vertical}button,.c-button{display:inline-block;overflow:visible;margin:0;padding:0;outline:0;border:0;background:none rgba(0,0,0,0);color:inherit;vertical-align:middle;text-align:center;text-decoration:none;text-transform:none;font:inherit;line-height:normal;cursor:pointer;user-select:none}button:focus,button:hover,.c-button:focus,.c-button:hover{text-decoration:none}html.lenis{height:auto}.lenis.lenis-smooth{scroll-behavior:auto}.lenis.lenis-smooth [data-lenis-prevent]{overscroll-behavior:contain}.lenis.lenis-stopped{overflow:hidden}.lenis.lenis-scrolling iframe{pointer-events:none}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-Bold.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-Bold.woff\") format(\"woff\");font-weight:700;font-style:normal}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-BoldIt.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-BoldIt.woff\") format(\"woff\");font-weight:700;font-style:italic}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-Regular.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-Regular.woff\") format(\"woff\");font-weight:400;font-style:normal}@font-face{font-display:swap;font-family:\"Source Sans\";src:url(\"../fonts/SourceSans3-RegularIt.woff2\") format(\"woff2\"),url(\"../fonts/SourceSans3-RegularIt.woff\") format(\"woff\");font-weight:400;font-style:italic}html{min-height:100%;line-height:1.5;font-family:\"Source Sans\",-apple-system,BlinkMacSystemFont,avenir next,avenir,segoe ui,helvetica neue,helvetica,Cantarell,Ubuntu,roboto,noto,arial,sans-serif;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media(max-width: 699px){html{font-size:14px}}@media(min-width: 700px)and (max-width: 999px){html{font-size:14px}}@media(min-width: 1000px)and (max-width: 1199px){html{font-size:15px}}@media(min-width: 1200px)and (max-width: 1599px){html{font-size:16px}}@media(min-width: 1600px)and (max-width: 1999px){html{font-size:17px}}@media(min-width: 2000px)and (max-width: 2399px){html{font-size:18px}}@media(min-width: 2400px){html{font-size:20px}}html.is-loading{cursor:wait}::selection{background-color:#fff;color:#000;text-shadow:none}a{color:#3297fd}a:focus,a:hover{color:#027dfa}.o-container{margin-right:auto;margin-left:auto;padding-left:var(--grid-margin);padding-right:var(--grid-margin)}.o-ratio{position:relative;display:block;overflow:hidden}.o-ratio:before{display:block;padding-bottom:100%;width:100%;content:\"\"}.o-ratio_content,.o-ratio>img,.o-ratio>iframe,.o-ratio>embed,.o-ratio>object{position:absolute;top:0;bottom:0;left:0;width:100%}.o-icon{display:inline-block;vertical-align:middle}.o-icon svg{--icon-height: calc(var(--icon-width) * math.div(1, (var(--icon-ratio))));display:block;width:var(--icon-width);height:var(--icon-height);fill:currentColor}.o-grid{display:grid;width:100%}.o-grid:is(ul,ol){margin:0;padding:0;list-style:none}.o-grid.-cols{grid-template-columns:repeat(var(--grid-columns), 1fr)}.o-grid.-col-12{grid-template-columns:repeat(12, 1fr)}.o-grid.-col-4{grid-template-columns:repeat(4, 1fr)}@media(min-width: 1000px){.o-grid.-col-12\\@from-medium{grid-template-columns:repeat(12, 1fr)}}.o-grid.-gutters{gap:var(--grid-gutter);column-gap:var(--grid-gutter)}.o-grid.-full-height{height:100%}.o-grid.-top-items{align-items:start}.o-grid.-right-items{justify-items:end}.o-grid.-bottom-items{align-items:end}.o-grid.-left-items{justify-items:start}.o-grid.-center-items{align-items:center;justify-items:center}.o-grid.-center-items-x{justify-items:center}.o-grid.-center-items-y{align-items:center}.o-grid.-stretch-items{align-items:stretch;justify-items:stretch}.o-grid.-top-cells{align-content:start}.o-grid.-right-cells{justify-content:end}.o-grid.-bottom-cells{align-content:end}.o-grid.-left-cells{justify-content:start}.o-grid.-center-cells{align-content:center;justify-content:center}.o-grid.-center-cells-x{justify-content:center}.o-grid.-center-cells-y{align-content:center}.o-grid.-stretch-cells{align-content:stretch;justify-content:stretch}.o-grid.-space-around-cells{align-content:space-around;justify-content:space-around}.o-grid.-space-around-cells-x{justify-content:space-around}.o-grid.-space-around-cells-y{align-content:space-around}.o-grid.-space-between-cells{justify-content:space-between;align-content:space-between}.o-grid.-space-between-cells-x{justify-content:space-between}.o-grid.-space-between-cells-y{align-content:space-between}.o-grid.-space-evenly-cells{justify-content:space-evenly;align-content:space-evenly}.o-grid.-space-evenly-cells-x{justify-content:space-evenly}.o-grid.-space-evenly-cells-y{align-content:space-evenly}.o-grid_item{grid-column-start:var(--gc-start, 1);grid-column-end:var(--gc-end, -1)}.o-grid_item.-align-end{align-self:end}.c-heading{margin-bottom:1.875rem}.c-heading.-h1{font-size:var(--font-size-h1)}.c-heading.-h2{font-size:var(--font-size-h2)}.c-heading.-h3{font-size:var(--font-size-h3)}.c-heading.-h4{font-size:var(--font-size-h4)}.c-heading.-h5{font-size:var(--font-size-h5)}.c-heading.-h6{font-size:var(--font-size-h6)}.c-button{padding:.9375rem 1.25rem;background-color:#d3d3d3}.c-button:focus,.c-button:hover{background-color:#a9a9a9}.c-form_item{position:relative;margin-bottom:1.875rem}.c-form_label,.c-form_checkboxLabel,.c-form_radioLabel{display:block;margin-bottom:.625rem}.c-form_input,.c-form_textarea,.c-form_select_input{padding:.625rem;border:1px solid #d3d3d3;background-color:#fff}.c-form_input:hover,.c-form_textarea:hover,.c-form_select_input:hover{border-color:#a9a9a9}.c-form_input:focus,.c-form_textarea:focus,.c-form_select_input:focus{border-color:dimgray}.c-form_input::placeholder,.c-form_textarea::placeholder,.c-form_select_input::placeholder{color:gray}.c-form_checkboxLabel,.c-form_radioLabel{position:relative;display:inline-block;margin-right:.625rem;margin-bottom:0;padding-left:1.75rem;cursor:pointer}.c-form_checkboxLabel::before,.c-form_radioLabel::before,.c-form_checkboxLabel::after,.c-form_radioLabel::after{position:absolute;top:50%;left:0;display:inline-block;margin-top:-0.5625rem;padding:0;width:1.125rem;height:1.125rem;content:\"\"}.c-form_checkboxLabel::before,.c-form_radioLabel::before{background-color:#fff;border:1px solid #d3d3d3}.c-form_checkboxLabel::after,.c-form_radioLabel::after{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2210.5%22%20viewBox%3D%220%200%2013%2010.5%22%20enable-background%3D%22new%200%200%2013%2010.5%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23424242%22%20d%3D%22M4.8%205.8L2.4%203.3%200%205.7l4.8%204.8L13%202.4c0%200-2.4-2.4-2.4-2.4L4.8%205.8z%22%2F%3E%3C%2Fsvg%3E\");background-position:center;background-size:.75rem;background-repeat:no-repeat;opacity:0}.c-form_checkboxLabel:hover::before,.c-form_radioLabel:hover::before{border-color:#a9a9a9}.c-form_checkbox:focus+.c-form_checkboxLabel::before,.c-form_radio:focus+.c-form_checkboxLabel::before,.c-form_checkbox:focus+.c-form_radioLabel::before,.c-form_radio:focus+.c-form_radioLabel::before{border-color:dimgray}.c-form_checkbox:checked+.c-form_checkboxLabel::after,.c-form_radio:checked+.c-form_checkboxLabel::after,.c-form_checkbox:checked+.c-form_radioLabel::after,.c-form_radio:checked+.c-form_radioLabel::after{opacity:1}.c-form_checkbox,.c-form_radio{position:absolute;width:0;opacity:0}.c-form_radioLabel::before,.c-form_radioLabel::after{border-radius:50%}.c-form_radioLabel::after{background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2213%22%20viewBox%3D%220%200%2013%2013%22%20enable-background%3D%22new%200%200%2013%2013%22%20xml%3Aspace%3D%22preserve%22%3E%3Ccircle%20fill%3D%22%23424242%22%20cx%3D%226.5%22%20cy%3D%226.5%22%20r%3D%226.5%22%2F%3E%3C%2Fsvg%3E\");background-size:.375rem}.c-form_select{position:relative;cursor:pointer}.c-form_select::after{position:absolute;top:0;right:0;bottom:0;z-index:2;width:2.5rem;background-image:url(\"data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20x%3D%220%22%20y%3D%220%22%20width%3D%2213%22%20height%3D%2211.3%22%20viewBox%3D%220%200%2013%2011.3%22%20enable-background%3D%22new%200%200%2013%2011.3%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23424242%22%20points%3D%226.5%2011.3%203.3%205.6%200%200%206.5%200%2013%200%209.8%205.6%20%22%2F%3E%3C%2Fsvg%3E\");background-position:center;background-size:.5rem;background-repeat:no-repeat;content:\"\";pointer-events:none}.c-form_select_input{position:relative;z-index:1;padding-right:2.5rem;cursor:pointer}.c-form_textarea{min-height:12.5rem}.u-2\\:1::before{padding-bottom:50%}.u-4\\:3::before{padding-bottom:75%}.u-16\\:9::before{padding-bottom:56.25%}.u-gc-1\\/1{--gc-start: 1;--gc-end: 1}@media(min-width: 500px){.u-gc-1\\/1\\@from-tiny{--gc-start: 1;--gc-end: 1}}@media(max-width: 499px){.u-gc-1\\/1\\@to-tiny{--gc-start: 1;--gc-end: 1}}.u-gc-1\\/2{--gc-start: 1;--gc-end: 2}@media(min-width: 500px){.u-gc-1\\/2\\@from-tiny{--gc-start: 1;--gc-end: 2}}@media(max-width: 499px){.u-gc-1\\/2\\@to-tiny{--gc-start: 1;--gc-end: 2}}.u-gc-1\\/3{--gc-start: 1;--gc-end: 3}@media(min-width: 500px){.u-gc-1\\/3\\@from-tiny{--gc-start: 1;--gc-end: 3}}@media(max-width: 499px){.u-gc-1\\/3\\@to-tiny{--gc-start: 1;--gc-end: 3}}.u-gc-1\\/4{--gc-start: 1;--gc-end: 4}@media(min-width: 500px){.u-gc-1\\/4\\@from-tiny{--gc-start: 1;--gc-end: 4}}@media(max-width: 499px){.u-gc-1\\/4\\@to-tiny{--gc-start: 1;--gc-end: 4}}.u-gc-1\\/5{--gc-start: 1;--gc-end: 5}@media(min-width: 500px){.u-gc-1\\/5\\@from-tiny{--gc-start: 1;--gc-end: 5}}@media(max-width: 499px){.u-gc-1\\/5\\@to-tiny{--gc-start: 1;--gc-end: 5}}.u-gc-1\\/6{--gc-start: 1;--gc-end: 6}@media(min-width: 500px){.u-gc-1\\/6\\@from-tiny{--gc-start: 1;--gc-end: 6}}@media(max-width: 499px){.u-gc-1\\/6\\@to-tiny{--gc-start: 1;--gc-end: 6}}.u-gc-1\\/7{--gc-start: 1;--gc-end: 7}@media(min-width: 500px){.u-gc-1\\/7\\@from-tiny{--gc-start: 1;--gc-end: 7}}@media(max-width: 499px){.u-gc-1\\/7\\@to-tiny{--gc-start: 1;--gc-end: 7}}.u-gc-1\\/8{--gc-start: 1;--gc-end: 8}@media(min-width: 500px){.u-gc-1\\/8\\@from-tiny{--gc-start: 1;--gc-end: 8}}@media(max-width: 499px){.u-gc-1\\/8\\@to-tiny{--gc-start: 1;--gc-end: 8}}.u-gc-1\\/9{--gc-start: 1;--gc-end: 9}@media(min-width: 500px){.u-gc-1\\/9\\@from-tiny{--gc-start: 1;--gc-end: 9}}@media(max-width: 499px){.u-gc-1\\/9\\@to-tiny{--gc-start: 1;--gc-end: 9}}.u-gc-1\\/10{--gc-start: 1;--gc-end: 10}@media(min-width: 500px){.u-gc-1\\/10\\@from-tiny{--gc-start: 1;--gc-end: 10}}@media(max-width: 499px){.u-gc-1\\/10\\@to-tiny{--gc-start: 1;--gc-end: 10}}.u-gc-1\\/11{--gc-start: 1;--gc-end: 11}@media(min-width: 500px){.u-gc-1\\/11\\@from-tiny{--gc-start: 1;--gc-end: 11}}@media(max-width: 499px){.u-gc-1\\/11\\@to-tiny{--gc-start: 1;--gc-end: 11}}.u-gc-1\\/12{--gc-start: 1;--gc-end: 12}@media(min-width: 500px){.u-gc-1\\/12\\@from-tiny{--gc-start: 1;--gc-end: 12}}@media(max-width: 499px){.u-gc-1\\/12\\@to-tiny{--gc-start: 1;--gc-end: 12}}.u-gc-1\\/13{--gc-start: 1;--gc-end: 13}@media(min-width: 500px){.u-gc-1\\/13\\@from-tiny{--gc-start: 1;--gc-end: 13}}@media(max-width: 499px){.u-gc-1\\/13\\@to-tiny{--gc-start: 1;--gc-end: 13}}.u-gc-2\\/1{--gc-start: 2;--gc-end: 1}@media(min-width: 500px){.u-gc-2\\/1\\@from-tiny{--gc-start: 2;--gc-end: 1}}@media(max-width: 499px){.u-gc-2\\/1\\@to-tiny{--gc-start: 2;--gc-end: 1}}.u-gc-2\\/2{--gc-start: 2;--gc-end: 2}@media(min-width: 500px){.u-gc-2\\/2\\@from-tiny{--gc-start: 2;--gc-end: 2}}@media(max-width: 499px){.u-gc-2\\/2\\@to-tiny{--gc-start: 2;--gc-end: 2}}.u-gc-2\\/3{--gc-start: 2;--gc-end: 3}@media(min-width: 500px){.u-gc-2\\/3\\@from-tiny{--gc-start: 2;--gc-end: 3}}@media(max-width: 499px){.u-gc-2\\/3\\@to-tiny{--gc-start: 2;--gc-end: 3}}.u-gc-2\\/4{--gc-start: 2;--gc-end: 4}@media(min-width: 500px){.u-gc-2\\/4\\@from-tiny{--gc-start: 2;--gc-end: 4}}@media(max-width: 499px){.u-gc-2\\/4\\@to-tiny{--gc-start: 2;--gc-end: 4}}.u-gc-2\\/5{--gc-start: 2;--gc-end: 5}@media(min-width: 500px){.u-gc-2\\/5\\@from-tiny{--gc-start: 2;--gc-end: 5}}@media(max-width: 499px){.u-gc-2\\/5\\@to-tiny{--gc-start: 2;--gc-end: 5}}.u-gc-2\\/6{--gc-start: 2;--gc-end: 6}@media(min-width: 500px){.u-gc-2\\/6\\@from-tiny{--gc-start: 2;--gc-end: 6}}@media(max-width: 499px){.u-gc-2\\/6\\@to-tiny{--gc-start: 2;--gc-end: 6}}.u-gc-2\\/7{--gc-start: 2;--gc-end: 7}@media(min-width: 500px){.u-gc-2\\/7\\@from-tiny{--gc-start: 2;--gc-end: 7}}@media(max-width: 499px){.u-gc-2\\/7\\@to-tiny{--gc-start: 2;--gc-end: 7}}.u-gc-2\\/8{--gc-start: 2;--gc-end: 8}@media(min-width: 500px){.u-gc-2\\/8\\@from-tiny{--gc-start: 2;--gc-end: 8}}@media(max-width: 499px){.u-gc-2\\/8\\@to-tiny{--gc-start: 2;--gc-end: 8}}.u-gc-2\\/9{--gc-start: 2;--gc-end: 9}@media(min-width: 500px){.u-gc-2\\/9\\@from-tiny{--gc-start: 2;--gc-end: 9}}@media(max-width: 499px){.u-gc-2\\/9\\@to-tiny{--gc-start: 2;--gc-end: 9}}.u-gc-2\\/10{--gc-start: 2;--gc-end: 10}@media(min-width: 500px){.u-gc-2\\/10\\@from-tiny{--gc-start: 2;--gc-end: 10}}@media(max-width: 499px){.u-gc-2\\/10\\@to-tiny{--gc-start: 2;--gc-end: 10}}.u-gc-2\\/11{--gc-start: 2;--gc-end: 11}@media(min-width: 500px){.u-gc-2\\/11\\@from-tiny{--gc-start: 2;--gc-end: 11}}@media(max-width: 499px){.u-gc-2\\/11\\@to-tiny{--gc-start: 2;--gc-end: 11}}.u-gc-2\\/12{--gc-start: 2;--gc-end: 12}@media(min-width: 500px){.u-gc-2\\/12\\@from-tiny{--gc-start: 2;--gc-end: 12}}@media(max-width: 499px){.u-gc-2\\/12\\@to-tiny{--gc-start: 2;--gc-end: 12}}.u-gc-2\\/13{--gc-start: 2;--gc-end: 13}@media(min-width: 500px){.u-gc-2\\/13\\@from-tiny{--gc-start: 2;--gc-end: 13}}@media(max-width: 499px){.u-gc-2\\/13\\@to-tiny{--gc-start: 2;--gc-end: 13}}.u-gc-3\\/1{--gc-start: 3;--gc-end: 1}@media(min-width: 500px){.u-gc-3\\/1\\@from-tiny{--gc-start: 3;--gc-end: 1}}@media(max-width: 499px){.u-gc-3\\/1\\@to-tiny{--gc-start: 3;--gc-end: 1}}.u-gc-3\\/2{--gc-start: 3;--gc-end: 2}@media(min-width: 500px){.u-gc-3\\/2\\@from-tiny{--gc-start: 3;--gc-end: 2}}@media(max-width: 499px){.u-gc-3\\/2\\@to-tiny{--gc-start: 3;--gc-end: 2}}.u-gc-3\\/3{--gc-start: 3;--gc-end: 3}@media(min-width: 500px){.u-gc-3\\/3\\@from-tiny{--gc-start: 3;--gc-end: 3}}@media(max-width: 499px){.u-gc-3\\/3\\@to-tiny{--gc-start: 3;--gc-end: 3}}.u-gc-3\\/4{--gc-start: 3;--gc-end: 4}@media(min-width: 500px){.u-gc-3\\/4\\@from-tiny{--gc-start: 3;--gc-end: 4}}@media(max-width: 499px){.u-gc-3\\/4\\@to-tiny{--gc-start: 3;--gc-end: 4}}.u-gc-3\\/5{--gc-start: 3;--gc-end: 5}@media(min-width: 500px){.u-gc-3\\/5\\@from-tiny{--gc-start: 3;--gc-end: 5}}@media(max-width: 499px){.u-gc-3\\/5\\@to-tiny{--gc-start: 3;--gc-end: 5}}.u-gc-3\\/6{--gc-start: 3;--gc-end: 6}@media(min-width: 500px){.u-gc-3\\/6\\@from-tiny{--gc-start: 3;--gc-end: 6}}@media(max-width: 499px){.u-gc-3\\/6\\@to-tiny{--gc-start: 3;--gc-end: 6}}.u-gc-3\\/7{--gc-start: 3;--gc-end: 7}@media(min-width: 500px){.u-gc-3\\/7\\@from-tiny{--gc-start: 3;--gc-end: 7}}@media(max-width: 499px){.u-gc-3\\/7\\@to-tiny{--gc-start: 3;--gc-end: 7}}.u-gc-3\\/8{--gc-start: 3;--gc-end: 8}@media(min-width: 500px){.u-gc-3\\/8\\@from-tiny{--gc-start: 3;--gc-end: 8}}@media(max-width: 499px){.u-gc-3\\/8\\@to-tiny{--gc-start: 3;--gc-end: 8}}.u-gc-3\\/9{--gc-start: 3;--gc-end: 9}@media(min-width: 500px){.u-gc-3\\/9\\@from-tiny{--gc-start: 3;--gc-end: 9}}@media(max-width: 499px){.u-gc-3\\/9\\@to-tiny{--gc-start: 3;--gc-end: 9}}.u-gc-3\\/10{--gc-start: 3;--gc-end: 10}@media(min-width: 500px){.u-gc-3\\/10\\@from-tiny{--gc-start: 3;--gc-end: 10}}@media(max-width: 499px){.u-gc-3\\/10\\@to-tiny{--gc-start: 3;--gc-end: 10}}.u-gc-3\\/11{--gc-start: 3;--gc-end: 11}@media(min-width: 500px){.u-gc-3\\/11\\@from-tiny{--gc-start: 3;--gc-end: 11}}@media(max-width: 499px){.u-gc-3\\/11\\@to-tiny{--gc-start: 3;--gc-end: 11}}.u-gc-3\\/12{--gc-start: 3;--gc-end: 12}@media(min-width: 500px){.u-gc-3\\/12\\@from-tiny{--gc-start: 3;--gc-end: 12}}@media(max-width: 499px){.u-gc-3\\/12\\@to-tiny{--gc-start: 3;--gc-end: 12}}.u-gc-3\\/13{--gc-start: 3;--gc-end: 13}@media(min-width: 500px){.u-gc-3\\/13\\@from-tiny{--gc-start: 3;--gc-end: 13}}@media(max-width: 499px){.u-gc-3\\/13\\@to-tiny{--gc-start: 3;--gc-end: 13}}.u-gc-4\\/1{--gc-start: 4;--gc-end: 1}@media(min-width: 500px){.u-gc-4\\/1\\@from-tiny{--gc-start: 4;--gc-end: 1}}@media(max-width: 499px){.u-gc-4\\/1\\@to-tiny{--gc-start: 4;--gc-end: 1}}.u-gc-4\\/2{--gc-start: 4;--gc-end: 2}@media(min-width: 500px){.u-gc-4\\/2\\@from-tiny{--gc-start: 4;--gc-end: 2}}@media(max-width: 499px){.u-gc-4\\/2\\@to-tiny{--gc-start: 4;--gc-end: 2}}.u-gc-4\\/3{--gc-start: 4;--gc-end: 3}@media(min-width: 500px){.u-gc-4\\/3\\@from-tiny{--gc-start: 4;--gc-end: 3}}@media(max-width: 499px){.u-gc-4\\/3\\@to-tiny{--gc-start: 4;--gc-end: 3}}.u-gc-4\\/4{--gc-start: 4;--gc-end: 4}@media(min-width: 500px){.u-gc-4\\/4\\@from-tiny{--gc-start: 4;--gc-end: 4}}@media(max-width: 499px){.u-gc-4\\/4\\@to-tiny{--gc-start: 4;--gc-end: 4}}.u-gc-4\\/5{--gc-start: 4;--gc-end: 5}@media(min-width: 500px){.u-gc-4\\/5\\@from-tiny{--gc-start: 4;--gc-end: 5}}@media(max-width: 499px){.u-gc-4\\/5\\@to-tiny{--gc-start: 4;--gc-end: 5}}.u-gc-4\\/6{--gc-start: 4;--gc-end: 6}@media(min-width: 500px){.u-gc-4\\/6\\@from-tiny{--gc-start: 4;--gc-end: 6}}@media(max-width: 499px){.u-gc-4\\/6\\@to-tiny{--gc-start: 4;--gc-end: 6}}.u-gc-4\\/7{--gc-start: 4;--gc-end: 7}@media(min-width: 500px){.u-gc-4\\/7\\@from-tiny{--gc-start: 4;--gc-end: 7}}@media(max-width: 499px){.u-gc-4\\/7\\@to-tiny{--gc-start: 4;--gc-end: 7}}.u-gc-4\\/8{--gc-start: 4;--gc-end: 8}@media(min-width: 500px){.u-gc-4\\/8\\@from-tiny{--gc-start: 4;--gc-end: 8}}@media(max-width: 499px){.u-gc-4\\/8\\@to-tiny{--gc-start: 4;--gc-end: 8}}.u-gc-4\\/9{--gc-start: 4;--gc-end: 9}@media(min-width: 500px){.u-gc-4\\/9\\@from-tiny{--gc-start: 4;--gc-end: 9}}@media(max-width: 499px){.u-gc-4\\/9\\@to-tiny{--gc-start: 4;--gc-end: 9}}.u-gc-4\\/10{--gc-start: 4;--gc-end: 10}@media(min-width: 500px){.u-gc-4\\/10\\@from-tiny{--gc-start: 4;--gc-end: 10}}@media(max-width: 499px){.u-gc-4\\/10\\@to-tiny{--gc-start: 4;--gc-end: 10}}.u-gc-4\\/11{--gc-start: 4;--gc-end: 11}@media(min-width: 500px){.u-gc-4\\/11\\@from-tiny{--gc-start: 4;--gc-end: 11}}@media(max-width: 499px){.u-gc-4\\/11\\@to-tiny{--gc-start: 4;--gc-end: 11}}.u-gc-4\\/12{--gc-start: 4;--gc-end: 12}@media(min-width: 500px){.u-gc-4\\/12\\@from-tiny{--gc-start: 4;--gc-end: 12}}@media(max-width: 499px){.u-gc-4\\/12\\@to-tiny{--gc-start: 4;--gc-end: 12}}.u-gc-4\\/13{--gc-start: 4;--gc-end: 13}@media(min-width: 500px){.u-gc-4\\/13\\@from-tiny{--gc-start: 4;--gc-end: 13}}@media(max-width: 499px){.u-gc-4\\/13\\@to-tiny{--gc-start: 4;--gc-end: 13}}.u-gc-5\\/1{--gc-start: 5;--gc-end: 1}@media(min-width: 500px){.u-gc-5\\/1\\@from-tiny{--gc-start: 5;--gc-end: 1}}@media(max-width: 499px){.u-gc-5\\/1\\@to-tiny{--gc-start: 5;--gc-end: 1}}.u-gc-5\\/2{--gc-start: 5;--gc-end: 2}@media(min-width: 500px){.u-gc-5\\/2\\@from-tiny{--gc-start: 5;--gc-end: 2}}@media(max-width: 499px){.u-gc-5\\/2\\@to-tiny{--gc-start: 5;--gc-end: 2}}.u-gc-5\\/3{--gc-start: 5;--gc-end: 3}@media(min-width: 500px){.u-gc-5\\/3\\@from-tiny{--gc-start: 5;--gc-end: 3}}@media(max-width: 499px){.u-gc-5\\/3\\@to-tiny{--gc-start: 5;--gc-end: 3}}.u-gc-5\\/4{--gc-start: 5;--gc-end: 4}@media(min-width: 500px){.u-gc-5\\/4\\@from-tiny{--gc-start: 5;--gc-end: 4}}@media(max-width: 499px){.u-gc-5\\/4\\@to-tiny{--gc-start: 5;--gc-end: 4}}.u-gc-5\\/5{--gc-start: 5;--gc-end: 5}@media(min-width: 500px){.u-gc-5\\/5\\@from-tiny{--gc-start: 5;--gc-end: 5}}@media(max-width: 499px){.u-gc-5\\/5\\@to-tiny{--gc-start: 5;--gc-end: 5}}.u-gc-5\\/6{--gc-start: 5;--gc-end: 6}@media(min-width: 500px){.u-gc-5\\/6\\@from-tiny{--gc-start: 5;--gc-end: 6}}@media(max-width: 499px){.u-gc-5\\/6\\@to-tiny{--gc-start: 5;--gc-end: 6}}.u-gc-5\\/7{--gc-start: 5;--gc-end: 7}@media(min-width: 500px){.u-gc-5\\/7\\@from-tiny{--gc-start: 5;--gc-end: 7}}@media(max-width: 499px){.u-gc-5\\/7\\@to-tiny{--gc-start: 5;--gc-end: 7}}.u-gc-5\\/8{--gc-start: 5;--gc-end: 8}@media(min-width: 500px){.u-gc-5\\/8\\@from-tiny{--gc-start: 5;--gc-end: 8}}@media(max-width: 499px){.u-gc-5\\/8\\@to-tiny{--gc-start: 5;--gc-end: 8}}.u-gc-5\\/9{--gc-start: 5;--gc-end: 9}@media(min-width: 500px){.u-gc-5\\/9\\@from-tiny{--gc-start: 5;--gc-end: 9}}@media(max-width: 499px){.u-gc-5\\/9\\@to-tiny{--gc-start: 5;--gc-end: 9}}.u-gc-5\\/10{--gc-start: 5;--gc-end: 10}@media(min-width: 500px){.u-gc-5\\/10\\@from-tiny{--gc-start: 5;--gc-end: 10}}@media(max-width: 499px){.u-gc-5\\/10\\@to-tiny{--gc-start: 5;--gc-end: 10}}.u-gc-5\\/11{--gc-start: 5;--gc-end: 11}@media(min-width: 500px){.u-gc-5\\/11\\@from-tiny{--gc-start: 5;--gc-end: 11}}@media(max-width: 499px){.u-gc-5\\/11\\@to-tiny{--gc-start: 5;--gc-end: 11}}.u-gc-5\\/12{--gc-start: 5;--gc-end: 12}@media(min-width: 500px){.u-gc-5\\/12\\@from-tiny{--gc-start: 5;--gc-end: 12}}@media(max-width: 499px){.u-gc-5\\/12\\@to-tiny{--gc-start: 5;--gc-end: 12}}.u-gc-5\\/13{--gc-start: 5;--gc-end: 13}@media(min-width: 500px){.u-gc-5\\/13\\@from-tiny{--gc-start: 5;--gc-end: 13}}@media(max-width: 499px){.u-gc-5\\/13\\@to-tiny{--gc-start: 5;--gc-end: 13}}.u-gc-6\\/1{--gc-start: 6;--gc-end: 1}@media(min-width: 500px){.u-gc-6\\/1\\@from-tiny{--gc-start: 6;--gc-end: 1}}@media(max-width: 499px){.u-gc-6\\/1\\@to-tiny{--gc-start: 6;--gc-end: 1}}.u-gc-6\\/2{--gc-start: 6;--gc-end: 2}@media(min-width: 500px){.u-gc-6\\/2\\@from-tiny{--gc-start: 6;--gc-end: 2}}@media(max-width: 499px){.u-gc-6\\/2\\@to-tiny{--gc-start: 6;--gc-end: 2}}.u-gc-6\\/3{--gc-start: 6;--gc-end: 3}@media(min-width: 500px){.u-gc-6\\/3\\@from-tiny{--gc-start: 6;--gc-end: 3}}@media(max-width: 499px){.u-gc-6\\/3\\@to-tiny{--gc-start: 6;--gc-end: 3}}.u-gc-6\\/4{--gc-start: 6;--gc-end: 4}@media(min-width: 500px){.u-gc-6\\/4\\@from-tiny{--gc-start: 6;--gc-end: 4}}@media(max-width: 499px){.u-gc-6\\/4\\@to-tiny{--gc-start: 6;--gc-end: 4}}.u-gc-6\\/5{--gc-start: 6;--gc-end: 5}@media(min-width: 500px){.u-gc-6\\/5\\@from-tiny{--gc-start: 6;--gc-end: 5}}@media(max-width: 499px){.u-gc-6\\/5\\@to-tiny{--gc-start: 6;--gc-end: 5}}.u-gc-6\\/6{--gc-start: 6;--gc-end: 6}@media(min-width: 500px){.u-gc-6\\/6\\@from-tiny{--gc-start: 6;--gc-end: 6}}@media(max-width: 499px){.u-gc-6\\/6\\@to-tiny{--gc-start: 6;--gc-end: 6}}.u-gc-6\\/7{--gc-start: 6;--gc-end: 7}@media(min-width: 500px){.u-gc-6\\/7\\@from-tiny{--gc-start: 6;--gc-end: 7}}@media(max-width: 499px){.u-gc-6\\/7\\@to-tiny{--gc-start: 6;--gc-end: 7}}.u-gc-6\\/8{--gc-start: 6;--gc-end: 8}@media(min-width: 500px){.u-gc-6\\/8\\@from-tiny{--gc-start: 6;--gc-end: 8}}@media(max-width: 499px){.u-gc-6\\/8\\@to-tiny{--gc-start: 6;--gc-end: 8}}.u-gc-6\\/9{--gc-start: 6;--gc-end: 9}@media(min-width: 500px){.u-gc-6\\/9\\@from-tiny{--gc-start: 6;--gc-end: 9}}@media(max-width: 499px){.u-gc-6\\/9\\@to-tiny{--gc-start: 6;--gc-end: 9}}.u-gc-6\\/10{--gc-start: 6;--gc-end: 10}@media(min-width: 500px){.u-gc-6\\/10\\@from-tiny{--gc-start: 6;--gc-end: 10}}@media(max-width: 499px){.u-gc-6\\/10\\@to-tiny{--gc-start: 6;--gc-end: 10}}.u-gc-6\\/11{--gc-start: 6;--gc-end: 11}@media(min-width: 500px){.u-gc-6\\/11\\@from-tiny{--gc-start: 6;--gc-end: 11}}@media(max-width: 499px){.u-gc-6\\/11\\@to-tiny{--gc-start: 6;--gc-end: 11}}.u-gc-6\\/12{--gc-start: 6;--gc-end: 12}@media(min-width: 500px){.u-gc-6\\/12\\@from-tiny{--gc-start: 6;--gc-end: 12}}@media(max-width: 499px){.u-gc-6\\/12\\@to-tiny{--gc-start: 6;--gc-end: 12}}.u-gc-6\\/13{--gc-start: 6;--gc-end: 13}@media(min-width: 500px){.u-gc-6\\/13\\@from-tiny{--gc-start: 6;--gc-end: 13}}@media(max-width: 499px){.u-gc-6\\/13\\@to-tiny{--gc-start: 6;--gc-end: 13}}.u-gc-7\\/1{--gc-start: 7;--gc-end: 1}@media(min-width: 500px){.u-gc-7\\/1\\@from-tiny{--gc-start: 7;--gc-end: 1}}@media(max-width: 499px){.u-gc-7\\/1\\@to-tiny{--gc-start: 7;--gc-end: 1}}.u-gc-7\\/2{--gc-start: 7;--gc-end: 2}@media(min-width: 500px){.u-gc-7\\/2\\@from-tiny{--gc-start: 7;--gc-end: 2}}@media(max-width: 499px){.u-gc-7\\/2\\@to-tiny{--gc-start: 7;--gc-end: 2}}.u-gc-7\\/3{--gc-start: 7;--gc-end: 3}@media(min-width: 500px){.u-gc-7\\/3\\@from-tiny{--gc-start: 7;--gc-end: 3}}@media(max-width: 499px){.u-gc-7\\/3\\@to-tiny{--gc-start: 7;--gc-end: 3}}.u-gc-7\\/4{--gc-start: 7;--gc-end: 4}@media(min-width: 500px){.u-gc-7\\/4\\@from-tiny{--gc-start: 7;--gc-end: 4}}@media(max-width: 499px){.u-gc-7\\/4\\@to-tiny{--gc-start: 7;--gc-end: 4}}.u-gc-7\\/5{--gc-start: 7;--gc-end: 5}@media(min-width: 500px){.u-gc-7\\/5\\@from-tiny{--gc-start: 7;--gc-end: 5}}@media(max-width: 499px){.u-gc-7\\/5\\@to-tiny{--gc-start: 7;--gc-end: 5}}.u-gc-7\\/6{--gc-start: 7;--gc-end: 6}@media(min-width: 500px){.u-gc-7\\/6\\@from-tiny{--gc-start: 7;--gc-end: 6}}@media(max-width: 499px){.u-gc-7\\/6\\@to-tiny{--gc-start: 7;--gc-end: 6}}.u-gc-7\\/7{--gc-start: 7;--gc-end: 7}@media(min-width: 500px){.u-gc-7\\/7\\@from-tiny{--gc-start: 7;--gc-end: 7}}@media(max-width: 499px){.u-gc-7\\/7\\@to-tiny{--gc-start: 7;--gc-end: 7}}.u-gc-7\\/8{--gc-start: 7;--gc-end: 8}@media(min-width: 500px){.u-gc-7\\/8\\@from-tiny{--gc-start: 7;--gc-end: 8}}@media(max-width: 499px){.u-gc-7\\/8\\@to-tiny{--gc-start: 7;--gc-end: 8}}.u-gc-7\\/9{--gc-start: 7;--gc-end: 9}@media(min-width: 500px){.u-gc-7\\/9\\@from-tiny{--gc-start: 7;--gc-end: 9}}@media(max-width: 499px){.u-gc-7\\/9\\@to-tiny{--gc-start: 7;--gc-end: 9}}.u-gc-7\\/10{--gc-start: 7;--gc-end: 10}@media(min-width: 500px){.u-gc-7\\/10\\@from-tiny{--gc-start: 7;--gc-end: 10}}@media(max-width: 499px){.u-gc-7\\/10\\@to-tiny{--gc-start: 7;--gc-end: 10}}.u-gc-7\\/11{--gc-start: 7;--gc-end: 11}@media(min-width: 500px){.u-gc-7\\/11\\@from-tiny{--gc-start: 7;--gc-end: 11}}@media(max-width: 499px){.u-gc-7\\/11\\@to-tiny{--gc-start: 7;--gc-end: 11}}.u-gc-7\\/12{--gc-start: 7;--gc-end: 12}@media(min-width: 500px){.u-gc-7\\/12\\@from-tiny{--gc-start: 7;--gc-end: 12}}@media(max-width: 499px){.u-gc-7\\/12\\@to-tiny{--gc-start: 7;--gc-end: 12}}.u-gc-7\\/13{--gc-start: 7;--gc-end: 13}@media(min-width: 500px){.u-gc-7\\/13\\@from-tiny{--gc-start: 7;--gc-end: 13}}@media(max-width: 499px){.u-gc-7\\/13\\@to-tiny{--gc-start: 7;--gc-end: 13}}.u-gc-8\\/1{--gc-start: 8;--gc-end: 1}@media(min-width: 500px){.u-gc-8\\/1\\@from-tiny{--gc-start: 8;--gc-end: 1}}@media(max-width: 499px){.u-gc-8\\/1\\@to-tiny{--gc-start: 8;--gc-end: 1}}.u-gc-8\\/2{--gc-start: 8;--gc-end: 2}@media(min-width: 500px){.u-gc-8\\/2\\@from-tiny{--gc-start: 8;--gc-end: 2}}@media(max-width: 499px){.u-gc-8\\/2\\@to-tiny{--gc-start: 8;--gc-end: 2}}.u-gc-8\\/3{--gc-start: 8;--gc-end: 3}@media(min-width: 500px){.u-gc-8\\/3\\@from-tiny{--gc-start: 8;--gc-end: 3}}@media(max-width: 499px){.u-gc-8\\/3\\@to-tiny{--gc-start: 8;--gc-end: 3}}.u-gc-8\\/4{--gc-start: 8;--gc-end: 4}@media(min-width: 500px){.u-gc-8\\/4\\@from-tiny{--gc-start: 8;--gc-end: 4}}@media(max-width: 499px){.u-gc-8\\/4\\@to-tiny{--gc-start: 8;--gc-end: 4}}.u-gc-8\\/5{--gc-start: 8;--gc-end: 5}@media(min-width: 500px){.u-gc-8\\/5\\@from-tiny{--gc-start: 8;--gc-end: 5}}@media(max-width: 499px){.u-gc-8\\/5\\@to-tiny{--gc-start: 8;--gc-end: 5}}.u-gc-8\\/6{--gc-start: 8;--gc-end: 6}@media(min-width: 500px){.u-gc-8\\/6\\@from-tiny{--gc-start: 8;--gc-end: 6}}@media(max-width: 499px){.u-gc-8\\/6\\@to-tiny{--gc-start: 8;--gc-end: 6}}.u-gc-8\\/7{--gc-start: 8;--gc-end: 7}@media(min-width: 500px){.u-gc-8\\/7\\@from-tiny{--gc-start: 8;--gc-end: 7}}@media(max-width: 499px){.u-gc-8\\/7\\@to-tiny{--gc-start: 8;--gc-end: 7}}.u-gc-8\\/8{--gc-start: 8;--gc-end: 8}@media(min-width: 500px){.u-gc-8\\/8\\@from-tiny{--gc-start: 8;--gc-end: 8}}@media(max-width: 499px){.u-gc-8\\/8\\@to-tiny{--gc-start: 8;--gc-end: 8}}.u-gc-8\\/9{--gc-start: 8;--gc-end: 9}@media(min-width: 500px){.u-gc-8\\/9\\@from-tiny{--gc-start: 8;--gc-end: 9}}@media(max-width: 499px){.u-gc-8\\/9\\@to-tiny{--gc-start: 8;--gc-end: 9}}.u-gc-8\\/10{--gc-start: 8;--gc-end: 10}@media(min-width: 500px){.u-gc-8\\/10\\@from-tiny{--gc-start: 8;--gc-end: 10}}@media(max-width: 499px){.u-gc-8\\/10\\@to-tiny{--gc-start: 8;--gc-end: 10}}.u-gc-8\\/11{--gc-start: 8;--gc-end: 11}@media(min-width: 500px){.u-gc-8\\/11\\@from-tiny{--gc-start: 8;--gc-end: 11}}@media(max-width: 499px){.u-gc-8\\/11\\@to-tiny{--gc-start: 8;--gc-end: 11}}.u-gc-8\\/12{--gc-start: 8;--gc-end: 12}@media(min-width: 500px){.u-gc-8\\/12\\@from-tiny{--gc-start: 8;--gc-end: 12}}@media(max-width: 499px){.u-gc-8\\/12\\@to-tiny{--gc-start: 8;--gc-end: 12}}.u-gc-8\\/13{--gc-start: 8;--gc-end: 13}@media(min-width: 500px){.u-gc-8\\/13\\@from-tiny{--gc-start: 8;--gc-end: 13}}@media(max-width: 499px){.u-gc-8\\/13\\@to-tiny{--gc-start: 8;--gc-end: 13}}.u-gc-9\\/1{--gc-start: 9;--gc-end: 1}@media(min-width: 500px){.u-gc-9\\/1\\@from-tiny{--gc-start: 9;--gc-end: 1}}@media(max-width: 499px){.u-gc-9\\/1\\@to-tiny{--gc-start: 9;--gc-end: 1}}.u-gc-9\\/2{--gc-start: 9;--gc-end: 2}@media(min-width: 500px){.u-gc-9\\/2\\@from-tiny{--gc-start: 9;--gc-end: 2}}@media(max-width: 499px){.u-gc-9\\/2\\@to-tiny{--gc-start: 9;--gc-end: 2}}.u-gc-9\\/3{--gc-start: 9;--gc-end: 3}@media(min-width: 500px){.u-gc-9\\/3\\@from-tiny{--gc-start: 9;--gc-end: 3}}@media(max-width: 499px){.u-gc-9\\/3\\@to-tiny{--gc-start: 9;--gc-end: 3}}.u-gc-9\\/4{--gc-start: 9;--gc-end: 4}@media(min-width: 500px){.u-gc-9\\/4\\@from-tiny{--gc-start: 9;--gc-end: 4}}@media(max-width: 499px){.u-gc-9\\/4\\@to-tiny{--gc-start: 9;--gc-end: 4}}.u-gc-9\\/5{--gc-start: 9;--gc-end: 5}@media(min-width: 500px){.u-gc-9\\/5\\@from-tiny{--gc-start: 9;--gc-end: 5}}@media(max-width: 499px){.u-gc-9\\/5\\@to-tiny{--gc-start: 9;--gc-end: 5}}.u-gc-9\\/6{--gc-start: 9;--gc-end: 6}@media(min-width: 500px){.u-gc-9\\/6\\@from-tiny{--gc-start: 9;--gc-end: 6}}@media(max-width: 499px){.u-gc-9\\/6\\@to-tiny{--gc-start: 9;--gc-end: 6}}.u-gc-9\\/7{--gc-start: 9;--gc-end: 7}@media(min-width: 500px){.u-gc-9\\/7\\@from-tiny{--gc-start: 9;--gc-end: 7}}@media(max-width: 499px){.u-gc-9\\/7\\@to-tiny{--gc-start: 9;--gc-end: 7}}.u-gc-9\\/8{--gc-start: 9;--gc-end: 8}@media(min-width: 500px){.u-gc-9\\/8\\@from-tiny{--gc-start: 9;--gc-end: 8}}@media(max-width: 499px){.u-gc-9\\/8\\@to-tiny{--gc-start: 9;--gc-end: 8}}.u-gc-9\\/9{--gc-start: 9;--gc-end: 9}@media(min-width: 500px){.u-gc-9\\/9\\@from-tiny{--gc-start: 9;--gc-end: 9}}@media(max-width: 499px){.u-gc-9\\/9\\@to-tiny{--gc-start: 9;--gc-end: 9}}.u-gc-9\\/10{--gc-start: 9;--gc-end: 10}@media(min-width: 500px){.u-gc-9\\/10\\@from-tiny{--gc-start: 9;--gc-end: 10}}@media(max-width: 499px){.u-gc-9\\/10\\@to-tiny{--gc-start: 9;--gc-end: 10}}.u-gc-9\\/11{--gc-start: 9;--gc-end: 11}@media(min-width: 500px){.u-gc-9\\/11\\@from-tiny{--gc-start: 9;--gc-end: 11}}@media(max-width: 499px){.u-gc-9\\/11\\@to-tiny{--gc-start: 9;--gc-end: 11}}.u-gc-9\\/12{--gc-start: 9;--gc-end: 12}@media(min-width: 500px){.u-gc-9\\/12\\@from-tiny{--gc-start: 9;--gc-end: 12}}@media(max-width: 499px){.u-gc-9\\/12\\@to-tiny{--gc-start: 9;--gc-end: 12}}.u-gc-9\\/13{--gc-start: 9;--gc-end: 13}@media(min-width: 500px){.u-gc-9\\/13\\@from-tiny{--gc-start: 9;--gc-end: 13}}@media(max-width: 499px){.u-gc-9\\/13\\@to-tiny{--gc-start: 9;--gc-end: 13}}.u-gc-10\\/1{--gc-start: 10;--gc-end: 1}@media(min-width: 500px){.u-gc-10\\/1\\@from-tiny{--gc-start: 10;--gc-end: 1}}@media(max-width: 499px){.u-gc-10\\/1\\@to-tiny{--gc-start: 10;--gc-end: 1}}.u-gc-10\\/2{--gc-start: 10;--gc-end: 2}@media(min-width: 500px){.u-gc-10\\/2\\@from-tiny{--gc-start: 10;--gc-end: 2}}@media(max-width: 499px){.u-gc-10\\/2\\@to-tiny{--gc-start: 10;--gc-end: 2}}.u-gc-10\\/3{--gc-start: 10;--gc-end: 3}@media(min-width: 500px){.u-gc-10\\/3\\@from-tiny{--gc-start: 10;--gc-end: 3}}@media(max-width: 499px){.u-gc-10\\/3\\@to-tiny{--gc-start: 10;--gc-end: 3}}.u-gc-10\\/4{--gc-start: 10;--gc-end: 4}@media(min-width: 500px){.u-gc-10\\/4\\@from-tiny{--gc-start: 10;--gc-end: 4}}@media(max-width: 499px){.u-gc-10\\/4\\@to-tiny{--gc-start: 10;--gc-end: 4}}.u-gc-10\\/5{--gc-start: 10;--gc-end: 5}@media(min-width: 500px){.u-gc-10\\/5\\@from-tiny{--gc-start: 10;--gc-end: 5}}@media(max-width: 499px){.u-gc-10\\/5\\@to-tiny{--gc-start: 10;--gc-end: 5}}.u-gc-10\\/6{--gc-start: 10;--gc-end: 6}@media(min-width: 500px){.u-gc-10\\/6\\@from-tiny{--gc-start: 10;--gc-end: 6}}@media(max-width: 499px){.u-gc-10\\/6\\@to-tiny{--gc-start: 10;--gc-end: 6}}.u-gc-10\\/7{--gc-start: 10;--gc-end: 7}@media(min-width: 500px){.u-gc-10\\/7\\@from-tiny{--gc-start: 10;--gc-end: 7}}@media(max-width: 499px){.u-gc-10\\/7\\@to-tiny{--gc-start: 10;--gc-end: 7}}.u-gc-10\\/8{--gc-start: 10;--gc-end: 8}@media(min-width: 500px){.u-gc-10\\/8\\@from-tiny{--gc-start: 10;--gc-end: 8}}@media(max-width: 499px){.u-gc-10\\/8\\@to-tiny{--gc-start: 10;--gc-end: 8}}.u-gc-10\\/9{--gc-start: 10;--gc-end: 9}@media(min-width: 500px){.u-gc-10\\/9\\@from-tiny{--gc-start: 10;--gc-end: 9}}@media(max-width: 499px){.u-gc-10\\/9\\@to-tiny{--gc-start: 10;--gc-end: 9}}.u-gc-10\\/10{--gc-start: 10;--gc-end: 10}@media(min-width: 500px){.u-gc-10\\/10\\@from-tiny{--gc-start: 10;--gc-end: 10}}@media(max-width: 499px){.u-gc-10\\/10\\@to-tiny{--gc-start: 10;--gc-end: 10}}.u-gc-10\\/11{--gc-start: 10;--gc-end: 11}@media(min-width: 500px){.u-gc-10\\/11\\@from-tiny{--gc-start: 10;--gc-end: 11}}@media(max-width: 499px){.u-gc-10\\/11\\@to-tiny{--gc-start: 10;--gc-end: 11}}.u-gc-10\\/12{--gc-start: 10;--gc-end: 12}@media(min-width: 500px){.u-gc-10\\/12\\@from-tiny{--gc-start: 10;--gc-end: 12}}@media(max-width: 499px){.u-gc-10\\/12\\@to-tiny{--gc-start: 10;--gc-end: 12}}.u-gc-10\\/13{--gc-start: 10;--gc-end: 13}@media(min-width: 500px){.u-gc-10\\/13\\@from-tiny{--gc-start: 10;--gc-end: 13}}@media(max-width: 499px){.u-gc-10\\/13\\@to-tiny{--gc-start: 10;--gc-end: 13}}.u-gc-11\\/1{--gc-start: 11;--gc-end: 1}@media(min-width: 500px){.u-gc-11\\/1\\@from-tiny{--gc-start: 11;--gc-end: 1}}@media(max-width: 499px){.u-gc-11\\/1\\@to-tiny{--gc-start: 11;--gc-end: 1}}.u-gc-11\\/2{--gc-start: 11;--gc-end: 2}@media(min-width: 500px){.u-gc-11\\/2\\@from-tiny{--gc-start: 11;--gc-end: 2}}@media(max-width: 499px){.u-gc-11\\/2\\@to-tiny{--gc-start: 11;--gc-end: 2}}.u-gc-11\\/3{--gc-start: 11;--gc-end: 3}@media(min-width: 500px){.u-gc-11\\/3\\@from-tiny{--gc-start: 11;--gc-end: 3}}@media(max-width: 499px){.u-gc-11\\/3\\@to-tiny{--gc-start: 11;--gc-end: 3}}.u-gc-11\\/4{--gc-start: 11;--gc-end: 4}@media(min-width: 500px){.u-gc-11\\/4\\@from-tiny{--gc-start: 11;--gc-end: 4}}@media(max-width: 499px){.u-gc-11\\/4\\@to-tiny{--gc-start: 11;--gc-end: 4}}.u-gc-11\\/5{--gc-start: 11;--gc-end: 5}@media(min-width: 500px){.u-gc-11\\/5\\@from-tiny{--gc-start: 11;--gc-end: 5}}@media(max-width: 499px){.u-gc-11\\/5\\@to-tiny{--gc-start: 11;--gc-end: 5}}.u-gc-11\\/6{--gc-start: 11;--gc-end: 6}@media(min-width: 500px){.u-gc-11\\/6\\@from-tiny{--gc-start: 11;--gc-end: 6}}@media(max-width: 499px){.u-gc-11\\/6\\@to-tiny{--gc-start: 11;--gc-end: 6}}.u-gc-11\\/7{--gc-start: 11;--gc-end: 7}@media(min-width: 500px){.u-gc-11\\/7\\@from-tiny{--gc-start: 11;--gc-end: 7}}@media(max-width: 499px){.u-gc-11\\/7\\@to-tiny{--gc-start: 11;--gc-end: 7}}.u-gc-11\\/8{--gc-start: 11;--gc-end: 8}@media(min-width: 500px){.u-gc-11\\/8\\@from-tiny{--gc-start: 11;--gc-end: 8}}@media(max-width: 499px){.u-gc-11\\/8\\@to-tiny{--gc-start: 11;--gc-end: 8}}.u-gc-11\\/9{--gc-start: 11;--gc-end: 9}@media(min-width: 500px){.u-gc-11\\/9\\@from-tiny{--gc-start: 11;--gc-end: 9}}@media(max-width: 499px){.u-gc-11\\/9\\@to-tiny{--gc-start: 11;--gc-end: 9}}.u-gc-11\\/10{--gc-start: 11;--gc-end: 10}@media(min-width: 500px){.u-gc-11\\/10\\@from-tiny{--gc-start: 11;--gc-end: 10}}@media(max-width: 499px){.u-gc-11\\/10\\@to-tiny{--gc-start: 11;--gc-end: 10}}.u-gc-11\\/11{--gc-start: 11;--gc-end: 11}@media(min-width: 500px){.u-gc-11\\/11\\@from-tiny{--gc-start: 11;--gc-end: 11}}@media(max-width: 499px){.u-gc-11\\/11\\@to-tiny{--gc-start: 11;--gc-end: 11}}.u-gc-11\\/12{--gc-start: 11;--gc-end: 12}@media(min-width: 500px){.u-gc-11\\/12\\@from-tiny{--gc-start: 11;--gc-end: 12}}@media(max-width: 499px){.u-gc-11\\/12\\@to-tiny{--gc-start: 11;--gc-end: 12}}.u-gc-11\\/13{--gc-start: 11;--gc-end: 13}@media(min-width: 500px){.u-gc-11\\/13\\@from-tiny{--gc-start: 11;--gc-end: 13}}@media(max-width: 499px){.u-gc-11\\/13\\@to-tiny{--gc-start: 11;--gc-end: 13}}.u-gc-12\\/1{--gc-start: 12;--gc-end: 1}@media(min-width: 500px){.u-gc-12\\/1\\@from-tiny{--gc-start: 12;--gc-end: 1}}@media(max-width: 499px){.u-gc-12\\/1\\@to-tiny{--gc-start: 12;--gc-end: 1}}.u-gc-12\\/2{--gc-start: 12;--gc-end: 2}@media(min-width: 500px){.u-gc-12\\/2\\@from-tiny{--gc-start: 12;--gc-end: 2}}@media(max-width: 499px){.u-gc-12\\/2\\@to-tiny{--gc-start: 12;--gc-end: 2}}.u-gc-12\\/3{--gc-start: 12;--gc-end: 3}@media(min-width: 500px){.u-gc-12\\/3\\@from-tiny{--gc-start: 12;--gc-end: 3}}@media(max-width: 499px){.u-gc-12\\/3\\@to-tiny{--gc-start: 12;--gc-end: 3}}.u-gc-12\\/4{--gc-start: 12;--gc-end: 4}@media(min-width: 500px){.u-gc-12\\/4\\@from-tiny{--gc-start: 12;--gc-end: 4}}@media(max-width: 499px){.u-gc-12\\/4\\@to-tiny{--gc-start: 12;--gc-end: 4}}.u-gc-12\\/5{--gc-start: 12;--gc-end: 5}@media(min-width: 500px){.u-gc-12\\/5\\@from-tiny{--gc-start: 12;--gc-end: 5}}@media(max-width: 499px){.u-gc-12\\/5\\@to-tiny{--gc-start: 12;--gc-end: 5}}.u-gc-12\\/6{--gc-start: 12;--gc-end: 6}@media(min-width: 500px){.u-gc-12\\/6\\@from-tiny{--gc-start: 12;--gc-end: 6}}@media(max-width: 499px){.u-gc-12\\/6\\@to-tiny{--gc-start: 12;--gc-end: 6}}.u-gc-12\\/7{--gc-start: 12;--gc-end: 7}@media(min-width: 500px){.u-gc-12\\/7\\@from-tiny{--gc-start: 12;--gc-end: 7}}@media(max-width: 499px){.u-gc-12\\/7\\@to-tiny{--gc-start: 12;--gc-end: 7}}.u-gc-12\\/8{--gc-start: 12;--gc-end: 8}@media(min-width: 500px){.u-gc-12\\/8\\@from-tiny{--gc-start: 12;--gc-end: 8}}@media(max-width: 499px){.u-gc-12\\/8\\@to-tiny{--gc-start: 12;--gc-end: 8}}.u-gc-12\\/9{--gc-start: 12;--gc-end: 9}@media(min-width: 500px){.u-gc-12\\/9\\@from-tiny{--gc-start: 12;--gc-end: 9}}@media(max-width: 499px){.u-gc-12\\/9\\@to-tiny{--gc-start: 12;--gc-end: 9}}.u-gc-12\\/10{--gc-start: 12;--gc-end: 10}@media(min-width: 500px){.u-gc-12\\/10\\@from-tiny{--gc-start: 12;--gc-end: 10}}@media(max-width: 499px){.u-gc-12\\/10\\@to-tiny{--gc-start: 12;--gc-end: 10}}.u-gc-12\\/11{--gc-start: 12;--gc-end: 11}@media(min-width: 500px){.u-gc-12\\/11\\@from-tiny{--gc-start: 12;--gc-end: 11}}@media(max-width: 499px){.u-gc-12\\/11\\@to-tiny{--gc-start: 12;--gc-end: 11}}.u-gc-12\\/12{--gc-start: 12;--gc-end: 12}@media(min-width: 500px){.u-gc-12\\/12\\@from-tiny{--gc-start: 12;--gc-end: 12}}@media(max-width: 499px){.u-gc-12\\/12\\@to-tiny{--gc-start: 12;--gc-end: 12}}.u-gc-12\\/13{--gc-start: 12;--gc-end: 13}@media(min-width: 500px){.u-gc-12\\/13\\@from-tiny{--gc-start: 12;--gc-end: 13}}@media(max-width: 499px){.u-gc-12\\/13\\@to-tiny{--gc-start: 12;--gc-end: 13}}.u-gc-13\\/1{--gc-start: 13;--gc-end: 1}@media(min-width: 500px){.u-gc-13\\/1\\@from-tiny{--gc-start: 13;--gc-end: 1}}@media(max-width: 499px){.u-gc-13\\/1\\@to-tiny{--gc-start: 13;--gc-end: 1}}.u-gc-13\\/2{--gc-start: 13;--gc-end: 2}@media(min-width: 500px){.u-gc-13\\/2\\@from-tiny{--gc-start: 13;--gc-end: 2}}@media(max-width: 499px){.u-gc-13\\/2\\@to-tiny{--gc-start: 13;--gc-end: 2}}.u-gc-13\\/3{--gc-start: 13;--gc-end: 3}@media(min-width: 500px){.u-gc-13\\/3\\@from-tiny{--gc-start: 13;--gc-end: 3}}@media(max-width: 499px){.u-gc-13\\/3\\@to-tiny{--gc-start: 13;--gc-end: 3}}.u-gc-13\\/4{--gc-start: 13;--gc-end: 4}@media(min-width: 500px){.u-gc-13\\/4\\@from-tiny{--gc-start: 13;--gc-end: 4}}@media(max-width: 499px){.u-gc-13\\/4\\@to-tiny{--gc-start: 13;--gc-end: 4}}.u-gc-13\\/5{--gc-start: 13;--gc-end: 5}@media(min-width: 500px){.u-gc-13\\/5\\@from-tiny{--gc-start: 13;--gc-end: 5}}@media(max-width: 499px){.u-gc-13\\/5\\@to-tiny{--gc-start: 13;--gc-end: 5}}.u-gc-13\\/6{--gc-start: 13;--gc-end: 6}@media(min-width: 500px){.u-gc-13\\/6\\@from-tiny{--gc-start: 13;--gc-end: 6}}@media(max-width: 499px){.u-gc-13\\/6\\@to-tiny{--gc-start: 13;--gc-end: 6}}.u-gc-13\\/7{--gc-start: 13;--gc-end: 7}@media(min-width: 500px){.u-gc-13\\/7\\@from-tiny{--gc-start: 13;--gc-end: 7}}@media(max-width: 499px){.u-gc-13\\/7\\@to-tiny{--gc-start: 13;--gc-end: 7}}.u-gc-13\\/8{--gc-start: 13;--gc-end: 8}@media(min-width: 500px){.u-gc-13\\/8\\@from-tiny{--gc-start: 13;--gc-end: 8}}@media(max-width: 499px){.u-gc-13\\/8\\@to-tiny{--gc-start: 13;--gc-end: 8}}.u-gc-13\\/9{--gc-start: 13;--gc-end: 9}@media(min-width: 500px){.u-gc-13\\/9\\@from-tiny{--gc-start: 13;--gc-end: 9}}@media(max-width: 499px){.u-gc-13\\/9\\@to-tiny{--gc-start: 13;--gc-end: 9}}.u-gc-13\\/10{--gc-start: 13;--gc-end: 10}@media(min-width: 500px){.u-gc-13\\/10\\@from-tiny{--gc-start: 13;--gc-end: 10}}@media(max-width: 499px){.u-gc-13\\/10\\@to-tiny{--gc-start: 13;--gc-end: 10}}.u-gc-13\\/11{--gc-start: 13;--gc-end: 11}@media(min-width: 500px){.u-gc-13\\/11\\@from-tiny{--gc-start: 13;--gc-end: 11}}@media(max-width: 499px){.u-gc-13\\/11\\@to-tiny{--gc-start: 13;--gc-end: 11}}.u-gc-13\\/12{--gc-start: 13;--gc-end: 12}@media(min-width: 500px){.u-gc-13\\/12\\@from-tiny{--gc-start: 13;--gc-end: 12}}@media(max-width: 499px){.u-gc-13\\/12\\@to-tiny{--gc-start: 13;--gc-end: 12}}.u-gc-13\\/13{--gc-start: 13;--gc-end: 13}@media(min-width: 500px){.u-gc-13\\/13\\@from-tiny{--gc-start: 13;--gc-end: 13}}@media(max-width: 499px){.u-gc-13\\/13\\@to-tiny{--gc-start: 13;--gc-end: 13}}@media(min-width: 700px){.u-gc-1\\/1\\@from-small{--gc-start: 1;--gc-end: 1}}@media(max-width: 699px){.u-gc-1\\/1\\@to-small{--gc-start: 1;--gc-end: 1}}@media(min-width: 700px){.u-gc-1\\/2\\@from-small{--gc-start: 1;--gc-end: 2}}@media(max-width: 699px){.u-gc-1\\/2\\@to-small{--gc-start: 1;--gc-end: 2}}@media(min-width: 700px){.u-gc-1\\/3\\@from-small{--gc-start: 1;--gc-end: 3}}@media(max-width: 699px){.u-gc-1\\/3\\@to-small{--gc-start: 1;--gc-end: 3}}@media(min-width: 700px){.u-gc-1\\/4\\@from-small{--gc-start: 1;--gc-end: 4}}@media(max-width: 699px){.u-gc-1\\/4\\@to-small{--gc-start: 1;--gc-end: 4}}@media(min-width: 700px){.u-gc-1\\/5\\@from-small{--gc-start: 1;--gc-end: 5}}@media(max-width: 699px){.u-gc-1\\/5\\@to-small{--gc-start: 1;--gc-end: 5}}@media(min-width: 700px){.u-gc-1\\/6\\@from-small{--gc-start: 1;--gc-end: 6}}@media(max-width: 699px){.u-gc-1\\/6\\@to-small{--gc-start: 1;--gc-end: 6}}@media(min-width: 700px){.u-gc-1\\/7\\@from-small{--gc-start: 1;--gc-end: 7}}@media(max-width: 699px){.u-gc-1\\/7\\@to-small{--gc-start: 1;--gc-end: 7}}@media(min-width: 700px){.u-gc-1\\/8\\@from-small{--gc-start: 1;--gc-end: 8}}@media(max-width: 699px){.u-gc-1\\/8\\@to-small{--gc-start: 1;--gc-end: 8}}@media(min-width: 700px){.u-gc-1\\/9\\@from-small{--gc-start: 1;--gc-end: 9}}@media(max-width: 699px){.u-gc-1\\/9\\@to-small{--gc-start: 1;--gc-end: 9}}@media(min-width: 700px){.u-gc-1\\/10\\@from-small{--gc-start: 1;--gc-end: 10}}@media(max-width: 699px){.u-gc-1\\/10\\@to-small{--gc-start: 1;--gc-end: 10}}@media(min-width: 700px){.u-gc-1\\/11\\@from-small{--gc-start: 1;--gc-end: 11}}@media(max-width: 699px){.u-gc-1\\/11\\@to-small{--gc-start: 1;--gc-end: 11}}@media(min-width: 700px){.u-gc-1\\/12\\@from-small{--gc-start: 1;--gc-end: 12}}@media(max-width: 699px){.u-gc-1\\/12\\@to-small{--gc-start: 1;--gc-end: 12}}@media(min-width: 700px){.u-gc-1\\/13\\@from-small{--gc-start: 1;--gc-end: 13}}@media(max-width: 699px){.u-gc-1\\/13\\@to-small{--gc-start: 1;--gc-end: 13}}@media(min-width: 700px){.u-gc-2\\/1\\@from-small{--gc-start: 2;--gc-end: 1}}@media(max-width: 699px){.u-gc-2\\/1\\@to-small{--gc-start: 2;--gc-end: 1}}@media(min-width: 700px){.u-gc-2\\/2\\@from-small{--gc-start: 2;--gc-end: 2}}@media(max-width: 699px){.u-gc-2\\/2\\@to-small{--gc-start: 2;--gc-end: 2}}@media(min-width: 700px){.u-gc-2\\/3\\@from-small{--gc-start: 2;--gc-end: 3}}@media(max-width: 699px){.u-gc-2\\/3\\@to-small{--gc-start: 2;--gc-end: 3}}@media(min-width: 700px){.u-gc-2\\/4\\@from-small{--gc-start: 2;--gc-end: 4}}@media(max-width: 699px){.u-gc-2\\/4\\@to-small{--gc-start: 2;--gc-end: 4}}@media(min-width: 700px){.u-gc-2\\/5\\@from-small{--gc-start: 2;--gc-end: 5}}@media(max-width: 699px){.u-gc-2\\/5\\@to-small{--gc-start: 2;--gc-end: 5}}@media(min-width: 700px){.u-gc-2\\/6\\@from-small{--gc-start: 2;--gc-end: 6}}@media(max-width: 699px){.u-gc-2\\/6\\@to-small{--gc-start: 2;--gc-end: 6}}@media(min-width: 700px){.u-gc-2\\/7\\@from-small{--gc-start: 2;--gc-end: 7}}@media(max-width: 699px){.u-gc-2\\/7\\@to-small{--gc-start: 2;--gc-end: 7}}@media(min-width: 700px){.u-gc-2\\/8\\@from-small{--gc-start: 2;--gc-end: 8}}@media(max-width: 699px){.u-gc-2\\/8\\@to-small{--gc-start: 2;--gc-end: 8}}@media(min-width: 700px){.u-gc-2\\/9\\@from-small{--gc-start: 2;--gc-end: 9}}@media(max-width: 699px){.u-gc-2\\/9\\@to-small{--gc-start: 2;--gc-end: 9}}@media(min-width: 700px){.u-gc-2\\/10\\@from-small{--gc-start: 2;--gc-end: 10}}@media(max-width: 699px){.u-gc-2\\/10\\@to-small{--gc-start: 2;--gc-end: 10}}@media(min-width: 700px){.u-gc-2\\/11\\@from-small{--gc-start: 2;--gc-end: 11}}@media(max-width: 699px){.u-gc-2\\/11\\@to-small{--gc-start: 2;--gc-end: 11}}@media(min-width: 700px){.u-gc-2\\/12\\@from-small{--gc-start: 2;--gc-end: 12}}@media(max-width: 699px){.u-gc-2\\/12\\@to-small{--gc-start: 2;--gc-end: 12}}@media(min-width: 700px){.u-gc-2\\/13\\@from-small{--gc-start: 2;--gc-end: 13}}@media(max-width: 699px){.u-gc-2\\/13\\@to-small{--gc-start: 2;--gc-end: 13}}@media(min-width: 700px){.u-gc-3\\/1\\@from-small{--gc-start: 3;--gc-end: 1}}@media(max-width: 699px){.u-gc-3\\/1\\@to-small{--gc-start: 3;--gc-end: 1}}@media(min-width: 700px){.u-gc-3\\/2\\@from-small{--gc-start: 3;--gc-end: 2}}@media(max-width: 699px){.u-gc-3\\/2\\@to-small{--gc-start: 3;--gc-end: 2}}@media(min-width: 700px){.u-gc-3\\/3\\@from-small{--gc-start: 3;--gc-end: 3}}@media(max-width: 699px){.u-gc-3\\/3\\@to-small{--gc-start: 3;--gc-end: 3}}@media(min-width: 700px){.u-gc-3\\/4\\@from-small{--gc-start: 3;--gc-end: 4}}@media(max-width: 699px){.u-gc-3\\/4\\@to-small{--gc-start: 3;--gc-end: 4}}@media(min-width: 700px){.u-gc-3\\/5\\@from-small{--gc-start: 3;--gc-end: 5}}@media(max-width: 699px){.u-gc-3\\/5\\@to-small{--gc-start: 3;--gc-end: 5}}@media(min-width: 700px){.u-gc-3\\/6\\@from-small{--gc-start: 3;--gc-end: 6}}@media(max-width: 699px){.u-gc-3\\/6\\@to-small{--gc-start: 3;--gc-end: 6}}@media(min-width: 700px){.u-gc-3\\/7\\@from-small{--gc-start: 3;--gc-end: 7}}@media(max-width: 699px){.u-gc-3\\/7\\@to-small{--gc-start: 3;--gc-end: 7}}@media(min-width: 700px){.u-gc-3\\/8\\@from-small{--gc-start: 3;--gc-end: 8}}@media(max-width: 699px){.u-gc-3\\/8\\@to-small{--gc-start: 3;--gc-end: 8}}@media(min-width: 700px){.u-gc-3\\/9\\@from-small{--gc-start: 3;--gc-end: 9}}@media(max-width: 699px){.u-gc-3\\/9\\@to-small{--gc-start: 3;--gc-end: 9}}@media(min-width: 700px){.u-gc-3\\/10\\@from-small{--gc-start: 3;--gc-end: 10}}@media(max-width: 699px){.u-gc-3\\/10\\@to-small{--gc-start: 3;--gc-end: 10}}@media(min-width: 700px){.u-gc-3\\/11\\@from-small{--gc-start: 3;--gc-end: 11}}@media(max-width: 699px){.u-gc-3\\/11\\@to-small{--gc-start: 3;--gc-end: 11}}@media(min-width: 700px){.u-gc-3\\/12\\@from-small{--gc-start: 3;--gc-end: 12}}@media(max-width: 699px){.u-gc-3\\/12\\@to-small{--gc-start: 3;--gc-end: 12}}@media(min-width: 700px){.u-gc-3\\/13\\@from-small{--gc-start: 3;--gc-end: 13}}@media(max-width: 699px){.u-gc-3\\/13\\@to-small{--gc-start: 3;--gc-end: 13}}@media(min-width: 700px){.u-gc-4\\/1\\@from-small{--gc-start: 4;--gc-end: 1}}@media(max-width: 699px){.u-gc-4\\/1\\@to-small{--gc-start: 4;--gc-end: 1}}@media(min-width: 700px){.u-gc-4\\/2\\@from-small{--gc-start: 4;--gc-end: 2}}@media(max-width: 699px){.u-gc-4\\/2\\@to-small{--gc-start: 4;--gc-end: 2}}@media(min-width: 700px){.u-gc-4\\/3\\@from-small{--gc-start: 4;--gc-end: 3}}@media(max-width: 699px){.u-gc-4\\/3\\@to-small{--gc-start: 4;--gc-end: 3}}@media(min-width: 700px){.u-gc-4\\/4\\@from-small{--gc-start: 4;--gc-end: 4}}@media(max-width: 699px){.u-gc-4\\/4\\@to-small{--gc-start: 4;--gc-end: 4}}@media(min-width: 700px){.u-gc-4\\/5\\@from-small{--gc-start: 4;--gc-end: 5}}@media(max-width: 699px){.u-gc-4\\/5\\@to-small{--gc-start: 4;--gc-end: 5}}@media(min-width: 700px){.u-gc-4\\/6\\@from-small{--gc-start: 4;--gc-end: 6}}@media(max-width: 699px){.u-gc-4\\/6\\@to-small{--gc-start: 4;--gc-end: 6}}@media(min-width: 700px){.u-gc-4\\/7\\@from-small{--gc-start: 4;--gc-end: 7}}@media(max-width: 699px){.u-gc-4\\/7\\@to-small{--gc-start: 4;--gc-end: 7}}@media(min-width: 700px){.u-gc-4\\/8\\@from-small{--gc-start: 4;--gc-end: 8}}@media(max-width: 699px){.u-gc-4\\/8\\@to-small{--gc-start: 4;--gc-end: 8}}@media(min-width: 700px){.u-gc-4\\/9\\@from-small{--gc-start: 4;--gc-end: 9}}@media(max-width: 699px){.u-gc-4\\/9\\@to-small{--gc-start: 4;--gc-end: 9}}@media(min-width: 700px){.u-gc-4\\/10\\@from-small{--gc-start: 4;--gc-end: 10}}@media(max-width: 699px){.u-gc-4\\/10\\@to-small{--gc-start: 4;--gc-end: 10}}@media(min-width: 700px){.u-gc-4\\/11\\@from-small{--gc-start: 4;--gc-end: 11}}@media(max-width: 699px){.u-gc-4\\/11\\@to-small{--gc-start: 4;--gc-end: 11}}@media(min-width: 700px){.u-gc-4\\/12\\@from-small{--gc-start: 4;--gc-end: 12}}@media(max-width: 699px){.u-gc-4\\/12\\@to-small{--gc-start: 4;--gc-end: 12}}@media(min-width: 700px){.u-gc-4\\/13\\@from-small{--gc-start: 4;--gc-end: 13}}@media(max-width: 699px){.u-gc-4\\/13\\@to-small{--gc-start: 4;--gc-end: 13}}@media(min-width: 700px){.u-gc-5\\/1\\@from-small{--gc-start: 5;--gc-end: 1}}@media(max-width: 699px){.u-gc-5\\/1\\@to-small{--gc-start: 5;--gc-end: 1}}@media(min-width: 700px){.u-gc-5\\/2\\@from-small{--gc-start: 5;--gc-end: 2}}@media(max-width: 699px){.u-gc-5\\/2\\@to-small{--gc-start: 5;--gc-end: 2}}@media(min-width: 700px){.u-gc-5\\/3\\@from-small{--gc-start: 5;--gc-end: 3}}@media(max-width: 699px){.u-gc-5\\/3\\@to-small{--gc-start: 5;--gc-end: 3}}@media(min-width: 700px){.u-gc-5\\/4\\@from-small{--gc-start: 5;--gc-end: 4}}@media(max-width: 699px){.u-gc-5\\/4\\@to-small{--gc-start: 5;--gc-end: 4}}@media(min-width: 700px){.u-gc-5\\/5\\@from-small{--gc-start: 5;--gc-end: 5}}@media(max-width: 699px){.u-gc-5\\/5\\@to-small{--gc-start: 5;--gc-end: 5}}@media(min-width: 700px){.u-gc-5\\/6\\@from-small{--gc-start: 5;--gc-end: 6}}@media(max-width: 699px){.u-gc-5\\/6\\@to-small{--gc-start: 5;--gc-end: 6}}@media(min-width: 700px){.u-gc-5\\/7\\@from-small{--gc-start: 5;--gc-end: 7}}@media(max-width: 699px){.u-gc-5\\/7\\@to-small{--gc-start: 5;--gc-end: 7}}@media(min-width: 700px){.u-gc-5\\/8\\@from-small{--gc-start: 5;--gc-end: 8}}@media(max-width: 699px){.u-gc-5\\/8\\@to-small{--gc-start: 5;--gc-end: 8}}@media(min-width: 700px){.u-gc-5\\/9\\@from-small{--gc-start: 5;--gc-end: 9}}@media(max-width: 699px){.u-gc-5\\/9\\@to-small{--gc-start: 5;--gc-end: 9}}@media(min-width: 700px){.u-gc-5\\/10\\@from-small{--gc-start: 5;--gc-end: 10}}@media(max-width: 699px){.u-gc-5\\/10\\@to-small{--gc-start: 5;--gc-end: 10}}@media(min-width: 700px){.u-gc-5\\/11\\@from-small{--gc-start: 5;--gc-end: 11}}@media(max-width: 699px){.u-gc-5\\/11\\@to-small{--gc-start: 5;--gc-end: 11}}@media(min-width: 700px){.u-gc-5\\/12\\@from-small{--gc-start: 5;--gc-end: 12}}@media(max-width: 699px){.u-gc-5\\/12\\@to-small{--gc-start: 5;--gc-end: 12}}@media(min-width: 700px){.u-gc-5\\/13\\@from-small{--gc-start: 5;--gc-end: 13}}@media(max-width: 699px){.u-gc-5\\/13\\@to-small{--gc-start: 5;--gc-end: 13}}@media(min-width: 700px){.u-gc-6\\/1\\@from-small{--gc-start: 6;--gc-end: 1}}@media(max-width: 699px){.u-gc-6\\/1\\@to-small{--gc-start: 6;--gc-end: 1}}@media(min-width: 700px){.u-gc-6\\/2\\@from-small{--gc-start: 6;--gc-end: 2}}@media(max-width: 699px){.u-gc-6\\/2\\@to-small{--gc-start: 6;--gc-end: 2}}@media(min-width: 700px){.u-gc-6\\/3\\@from-small{--gc-start: 6;--gc-end: 3}}@media(max-width: 699px){.u-gc-6\\/3\\@to-small{--gc-start: 6;--gc-end: 3}}@media(min-width: 700px){.u-gc-6\\/4\\@from-small{--gc-start: 6;--gc-end: 4}}@media(max-width: 699px){.u-gc-6\\/4\\@to-small{--gc-start: 6;--gc-end: 4}}@media(min-width: 700px){.u-gc-6\\/5\\@from-small{--gc-start: 6;--gc-end: 5}}@media(max-width: 699px){.u-gc-6\\/5\\@to-small{--gc-start: 6;--gc-end: 5}}@media(min-width: 700px){.u-gc-6\\/6\\@from-small{--gc-start: 6;--gc-end: 6}}@media(max-width: 699px){.u-gc-6\\/6\\@to-small{--gc-start: 6;--gc-end: 6}}@media(min-width: 700px){.u-gc-6\\/7\\@from-small{--gc-start: 6;--gc-end: 7}}@media(max-width: 699px){.u-gc-6\\/7\\@to-small{--gc-start: 6;--gc-end: 7}}@media(min-width: 700px){.u-gc-6\\/8\\@from-small{--gc-start: 6;--gc-end: 8}}@media(max-width: 699px){.u-gc-6\\/8\\@to-small{--gc-start: 6;--gc-end: 8}}@media(min-width: 700px){.u-gc-6\\/9\\@from-small{--gc-start: 6;--gc-end: 9}}@media(max-width: 699px){.u-gc-6\\/9\\@to-small{--gc-start: 6;--gc-end: 9}}@media(min-width: 700px){.u-gc-6\\/10\\@from-small{--gc-start: 6;--gc-end: 10}}@media(max-width: 699px){.u-gc-6\\/10\\@to-small{--gc-start: 6;--gc-end: 10}}@media(min-width: 700px){.u-gc-6\\/11\\@from-small{--gc-start: 6;--gc-end: 11}}@media(max-width: 699px){.u-gc-6\\/11\\@to-small{--gc-start: 6;--gc-end: 11}}@media(min-width: 700px){.u-gc-6\\/12\\@from-small{--gc-start: 6;--gc-end: 12}}@media(max-width: 699px){.u-gc-6\\/12\\@to-small{--gc-start: 6;--gc-end: 12}}@media(min-width: 700px){.u-gc-6\\/13\\@from-small{--gc-start: 6;--gc-end: 13}}@media(max-width: 699px){.u-gc-6\\/13\\@to-small{--gc-start: 6;--gc-end: 13}}@media(min-width: 700px){.u-gc-7\\/1\\@from-small{--gc-start: 7;--gc-end: 1}}@media(max-width: 699px){.u-gc-7\\/1\\@to-small{--gc-start: 7;--gc-end: 1}}@media(min-width: 700px){.u-gc-7\\/2\\@from-small{--gc-start: 7;--gc-end: 2}}@media(max-width: 699px){.u-gc-7\\/2\\@to-small{--gc-start: 7;--gc-end: 2}}@media(min-width: 700px){.u-gc-7\\/3\\@from-small{--gc-start: 7;--gc-end: 3}}@media(max-width: 699px){.u-gc-7\\/3\\@to-small{--gc-start: 7;--gc-end: 3}}@media(min-width: 700px){.u-gc-7\\/4\\@from-small{--gc-start: 7;--gc-end: 4}}@media(max-width: 699px){.u-gc-7\\/4\\@to-small{--gc-start: 7;--gc-end: 4}}@media(min-width: 700px){.u-gc-7\\/5\\@from-small{--gc-start: 7;--gc-end: 5}}@media(max-width: 699px){.u-gc-7\\/5\\@to-small{--gc-start: 7;--gc-end: 5}}@media(min-width: 700px){.u-gc-7\\/6\\@from-small{--gc-start: 7;--gc-end: 6}}@media(max-width: 699px){.u-gc-7\\/6\\@to-small{--gc-start: 7;--gc-end: 6}}@media(min-width: 700px){.u-gc-7\\/7\\@from-small{--gc-start: 7;--gc-end: 7}}@media(max-width: 699px){.u-gc-7\\/7\\@to-small{--gc-start: 7;--gc-end: 7}}@media(min-width: 700px){.u-gc-7\\/8\\@from-small{--gc-start: 7;--gc-end: 8}}@media(max-width: 699px){.u-gc-7\\/8\\@to-small{--gc-start: 7;--gc-end: 8}}@media(min-width: 700px){.u-gc-7\\/9\\@from-small{--gc-start: 7;--gc-end: 9}}@media(max-width: 699px){.u-gc-7\\/9\\@to-small{--gc-start: 7;--gc-end: 9}}@media(min-width: 700px){.u-gc-7\\/10\\@from-small{--gc-start: 7;--gc-end: 10}}@media(max-width: 699px){.u-gc-7\\/10\\@to-small{--gc-start: 7;--gc-end: 10}}@media(min-width: 700px){.u-gc-7\\/11\\@from-small{--gc-start: 7;--gc-end: 11}}@media(max-width: 699px){.u-gc-7\\/11\\@to-small{--gc-start: 7;--gc-end: 11}}@media(min-width: 700px){.u-gc-7\\/12\\@from-small{--gc-start: 7;--gc-end: 12}}@media(max-width: 699px){.u-gc-7\\/12\\@to-small{--gc-start: 7;--gc-end: 12}}@media(min-width: 700px){.u-gc-7\\/13\\@from-small{--gc-start: 7;--gc-end: 13}}@media(max-width: 699px){.u-gc-7\\/13\\@to-small{--gc-start: 7;--gc-end: 13}}@media(min-width: 700px){.u-gc-8\\/1\\@from-small{--gc-start: 8;--gc-end: 1}}@media(max-width: 699px){.u-gc-8\\/1\\@to-small{--gc-start: 8;--gc-end: 1}}@media(min-width: 700px){.u-gc-8\\/2\\@from-small{--gc-start: 8;--gc-end: 2}}@media(max-width: 699px){.u-gc-8\\/2\\@to-small{--gc-start: 8;--gc-end: 2}}@media(min-width: 700px){.u-gc-8\\/3\\@from-small{--gc-start: 8;--gc-end: 3}}@media(max-width: 699px){.u-gc-8\\/3\\@to-small{--gc-start: 8;--gc-end: 3}}@media(min-width: 700px){.u-gc-8\\/4\\@from-small{--gc-start: 8;--gc-end: 4}}@media(max-width: 699px){.u-gc-8\\/4\\@to-small{--gc-start: 8;--gc-end: 4}}@media(min-width: 700px){.u-gc-8\\/5\\@from-small{--gc-start: 8;--gc-end: 5}}@media(max-width: 699px){.u-gc-8\\/5\\@to-small{--gc-start: 8;--gc-end: 5}}@media(min-width: 700px){.u-gc-8\\/6\\@from-small{--gc-start: 8;--gc-end: 6}}@media(max-width: 699px){.u-gc-8\\/6\\@to-small{--gc-start: 8;--gc-end: 6}}@media(min-width: 700px){.u-gc-8\\/7\\@from-small{--gc-start: 8;--gc-end: 7}}@media(max-width: 699px){.u-gc-8\\/7\\@to-small{--gc-start: 8;--gc-end: 7}}@media(min-width: 700px){.u-gc-8\\/8\\@from-small{--gc-start: 8;--gc-end: 8}}@media(max-width: 699px){.u-gc-8\\/8\\@to-small{--gc-start: 8;--gc-end: 8}}@media(min-width: 700px){.u-gc-8\\/9\\@from-small{--gc-start: 8;--gc-end: 9}}@media(max-width: 699px){.u-gc-8\\/9\\@to-small{--gc-start: 8;--gc-end: 9}}@media(min-width: 700px){.u-gc-8\\/10\\@from-small{--gc-start: 8;--gc-end: 10}}@media(max-width: 699px){.u-gc-8\\/10\\@to-small{--gc-start: 8;--gc-end: 10}}@media(min-width: 700px){.u-gc-8\\/11\\@from-small{--gc-start: 8;--gc-end: 11}}@media(max-width: 699px){.u-gc-8\\/11\\@to-small{--gc-start: 8;--gc-end: 11}}@media(min-width: 700px){.u-gc-8\\/12\\@from-small{--gc-start: 8;--gc-end: 12}}@media(max-width: 699px){.u-gc-8\\/12\\@to-small{--gc-start: 8;--gc-end: 12}}@media(min-width: 700px){.u-gc-8\\/13\\@from-small{--gc-start: 8;--gc-end: 13}}@media(max-width: 699px){.u-gc-8\\/13\\@to-small{--gc-start: 8;--gc-end: 13}}@media(min-width: 700px){.u-gc-9\\/1\\@from-small{--gc-start: 9;--gc-end: 1}}@media(max-width: 699px){.u-gc-9\\/1\\@to-small{--gc-start: 9;--gc-end: 1}}@media(min-width: 700px){.u-gc-9\\/2\\@from-small{--gc-start: 9;--gc-end: 2}}@media(max-width: 699px){.u-gc-9\\/2\\@to-small{--gc-start: 9;--gc-end: 2}}@media(min-width: 700px){.u-gc-9\\/3\\@from-small{--gc-start: 9;--gc-end: 3}}@media(max-width: 699px){.u-gc-9\\/3\\@to-small{--gc-start: 9;--gc-end: 3}}@media(min-width: 700px){.u-gc-9\\/4\\@from-small{--gc-start: 9;--gc-end: 4}}@media(max-width: 699px){.u-gc-9\\/4\\@to-small{--gc-start: 9;--gc-end: 4}}@media(min-width: 700px){.u-gc-9\\/5\\@from-small{--gc-start: 9;--gc-end: 5}}@media(max-width: 699px){.u-gc-9\\/5\\@to-small{--gc-start: 9;--gc-end: 5}}@media(min-width: 700px){.u-gc-9\\/6\\@from-small{--gc-start: 9;--gc-end: 6}}@media(max-width: 699px){.u-gc-9\\/6\\@to-small{--gc-start: 9;--gc-end: 6}}@media(min-width: 700px){.u-gc-9\\/7\\@from-small{--gc-start: 9;--gc-end: 7}}@media(max-width: 699px){.u-gc-9\\/7\\@to-small{--gc-start: 9;--gc-end: 7}}@media(min-width: 700px){.u-gc-9\\/8\\@from-small{--gc-start: 9;--gc-end: 8}}@media(max-width: 699px){.u-gc-9\\/8\\@to-small{--gc-start: 9;--gc-end: 8}}@media(min-width: 700px){.u-gc-9\\/9\\@from-small{--gc-start: 9;--gc-end: 9}}@media(max-width: 699px){.u-gc-9\\/9\\@to-small{--gc-start: 9;--gc-end: 9}}@media(min-width: 700px){.u-gc-9\\/10\\@from-small{--gc-start: 9;--gc-end: 10}}@media(max-width: 699px){.u-gc-9\\/10\\@to-small{--gc-start: 9;--gc-end: 10}}@media(min-width: 700px){.u-gc-9\\/11\\@from-small{--gc-start: 9;--gc-end: 11}}@media(max-width: 699px){.u-gc-9\\/11\\@to-small{--gc-start: 9;--gc-end: 11}}@media(min-width: 700px){.u-gc-9\\/12\\@from-small{--gc-start: 9;--gc-end: 12}}@media(max-width: 699px){.u-gc-9\\/12\\@to-small{--gc-start: 9;--gc-end: 12}}@media(min-width: 700px){.u-gc-9\\/13\\@from-small{--gc-start: 9;--gc-end: 13}}@media(max-width: 699px){.u-gc-9\\/13\\@to-small{--gc-start: 9;--gc-end: 13}}@media(min-width: 700px){.u-gc-10\\/1\\@from-small{--gc-start: 10;--gc-end: 1}}@media(max-width: 699px){.u-gc-10\\/1\\@to-small{--gc-start: 10;--gc-end: 1}}@media(min-width: 700px){.u-gc-10\\/2\\@from-small{--gc-start: 10;--gc-end: 2}}@media(max-width: 699px){.u-gc-10\\/2\\@to-small{--gc-start: 10;--gc-end: 2}}@media(min-width: 700px){.u-gc-10\\/3\\@from-small{--gc-start: 10;--gc-end: 3}}@media(max-width: 699px){.u-gc-10\\/3\\@to-small{--gc-start: 10;--gc-end: 3}}@media(min-width: 700px){.u-gc-10\\/4\\@from-small{--gc-start: 10;--gc-end: 4}}@media(max-width: 699px){.u-gc-10\\/4\\@to-small{--gc-start: 10;--gc-end: 4}}@media(min-width: 700px){.u-gc-10\\/5\\@from-small{--gc-start: 10;--gc-end: 5}}@media(max-width: 699px){.u-gc-10\\/5\\@to-small{--gc-start: 10;--gc-end: 5}}@media(min-width: 700px){.u-gc-10\\/6\\@from-small{--gc-start: 10;--gc-end: 6}}@media(max-width: 699px){.u-gc-10\\/6\\@to-small{--gc-start: 10;--gc-end: 6}}@media(min-width: 700px){.u-gc-10\\/7\\@from-small{--gc-start: 10;--gc-end: 7}}@media(max-width: 699px){.u-gc-10\\/7\\@to-small{--gc-start: 10;--gc-end: 7}}@media(min-width: 700px){.u-gc-10\\/8\\@from-small{--gc-start: 10;--gc-end: 8}}@media(max-width: 699px){.u-gc-10\\/8\\@to-small{--gc-start: 10;--gc-end: 8}}@media(min-width: 700px){.u-gc-10\\/9\\@from-small{--gc-start: 10;--gc-end: 9}}@media(max-width: 699px){.u-gc-10\\/9\\@to-small{--gc-start: 10;--gc-end: 9}}@media(min-width: 700px){.u-gc-10\\/10\\@from-small{--gc-start: 10;--gc-end: 10}}@media(max-width: 699px){.u-gc-10\\/10\\@to-small{--gc-start: 10;--gc-end: 10}}@media(min-width: 700px){.u-gc-10\\/11\\@from-small{--gc-start: 10;--gc-end: 11}}@media(max-width: 699px){.u-gc-10\\/11\\@to-small{--gc-start: 10;--gc-end: 11}}@media(min-width: 700px){.u-gc-10\\/12\\@from-small{--gc-start: 10;--gc-end: 12}}@media(max-width: 699px){.u-gc-10\\/12\\@to-small{--gc-start: 10;--gc-end: 12}}@media(min-width: 700px){.u-gc-10\\/13\\@from-small{--gc-start: 10;--gc-end: 13}}@media(max-width: 699px){.u-gc-10\\/13\\@to-small{--gc-start: 10;--gc-end: 13}}@media(min-width: 700px){.u-gc-11\\/1\\@from-small{--gc-start: 11;--gc-end: 1}}@media(max-width: 699px){.u-gc-11\\/1\\@to-small{--gc-start: 11;--gc-end: 1}}@media(min-width: 700px){.u-gc-11\\/2\\@from-small{--gc-start: 11;--gc-end: 2}}@media(max-width: 699px){.u-gc-11\\/2\\@to-small{--gc-start: 11;--gc-end: 2}}@media(min-width: 700px){.u-gc-11\\/3\\@from-small{--gc-start: 11;--gc-end: 3}}@media(max-width: 699px){.u-gc-11\\/3\\@to-small{--gc-start: 11;--gc-end: 3}}@media(min-width: 700px){.u-gc-11\\/4\\@from-small{--gc-start: 11;--gc-end: 4}}@media(max-width: 699px){.u-gc-11\\/4\\@to-small{--gc-start: 11;--gc-end: 4}}@media(min-width: 700px){.u-gc-11\\/5\\@from-small{--gc-start: 11;--gc-end: 5}}@media(max-width: 699px){.u-gc-11\\/5\\@to-small{--gc-start: 11;--gc-end: 5}}@media(min-width: 700px){.u-gc-11\\/6\\@from-small{--gc-start: 11;--gc-end: 6}}@media(max-width: 699px){.u-gc-11\\/6\\@to-small{--gc-start: 11;--gc-end: 6}}@media(min-width: 700px){.u-gc-11\\/7\\@from-small{--gc-start: 11;--gc-end: 7}}@media(max-width: 699px){.u-gc-11\\/7\\@to-small{--gc-start: 11;--gc-end: 7}}@media(min-width: 700px){.u-gc-11\\/8\\@from-small{--gc-start: 11;--gc-end: 8}}@media(max-width: 699px){.u-gc-11\\/8\\@to-small{--gc-start: 11;--gc-end: 8}}@media(min-width: 700px){.u-gc-11\\/9\\@from-small{--gc-start: 11;--gc-end: 9}}@media(max-width: 699px){.u-gc-11\\/9\\@to-small{--gc-start: 11;--gc-end: 9}}@media(min-width: 700px){.u-gc-11\\/10\\@from-small{--gc-start: 11;--gc-end: 10}}@media(max-width: 699px){.u-gc-11\\/10\\@to-small{--gc-start: 11;--gc-end: 10}}@media(min-width: 700px){.u-gc-11\\/11\\@from-small{--gc-start: 11;--gc-end: 11}}@media(max-width: 699px){.u-gc-11\\/11\\@to-small{--gc-start: 11;--gc-end: 11}}@media(min-width: 700px){.u-gc-11\\/12\\@from-small{--gc-start: 11;--gc-end: 12}}@media(max-width: 699px){.u-gc-11\\/12\\@to-small{--gc-start: 11;--gc-end: 12}}@media(min-width: 700px){.u-gc-11\\/13\\@from-small{--gc-start: 11;--gc-end: 13}}@media(max-width: 699px){.u-gc-11\\/13\\@to-small{--gc-start: 11;--gc-end: 13}}@media(min-width: 700px){.u-gc-12\\/1\\@from-small{--gc-start: 12;--gc-end: 1}}@media(max-width: 699px){.u-gc-12\\/1\\@to-small{--gc-start: 12;--gc-end: 1}}@media(min-width: 700px){.u-gc-12\\/2\\@from-small{--gc-start: 12;--gc-end: 2}}@media(max-width: 699px){.u-gc-12\\/2\\@to-small{--gc-start: 12;--gc-end: 2}}@media(min-width: 700px){.u-gc-12\\/3\\@from-small{--gc-start: 12;--gc-end: 3}}@media(max-width: 699px){.u-gc-12\\/3\\@to-small{--gc-start: 12;--gc-end: 3}}@media(min-width: 700px){.u-gc-12\\/4\\@from-small{--gc-start: 12;--gc-end: 4}}@media(max-width: 699px){.u-gc-12\\/4\\@to-small{--gc-start: 12;--gc-end: 4}}@media(min-width: 700px){.u-gc-12\\/5\\@from-small{--gc-start: 12;--gc-end: 5}}@media(max-width: 699px){.u-gc-12\\/5\\@to-small{--gc-start: 12;--gc-end: 5}}@media(min-width: 700px){.u-gc-12\\/6\\@from-small{--gc-start: 12;--gc-end: 6}}@media(max-width: 699px){.u-gc-12\\/6\\@to-small{--gc-start: 12;--gc-end: 6}}@media(min-width: 700px){.u-gc-12\\/7\\@from-small{--gc-start: 12;--gc-end: 7}}@media(max-width: 699px){.u-gc-12\\/7\\@to-small{--gc-start: 12;--gc-end: 7}}@media(min-width: 700px){.u-gc-12\\/8\\@from-small{--gc-start: 12;--gc-end: 8}}@media(max-width: 699px){.u-gc-12\\/8\\@to-small{--gc-start: 12;--gc-end: 8}}@media(min-width: 700px){.u-gc-12\\/9\\@from-small{--gc-start: 12;--gc-end: 9}}@media(max-width: 699px){.u-gc-12\\/9\\@to-small{--gc-start: 12;--gc-end: 9}}@media(min-width: 700px){.u-gc-12\\/10\\@from-small{--gc-start: 12;--gc-end: 10}}@media(max-width: 699px){.u-gc-12\\/10\\@to-small{--gc-start: 12;--gc-end: 10}}@media(min-width: 700px){.u-gc-12\\/11\\@from-small{--gc-start: 12;--gc-end: 11}}@media(max-width: 699px){.u-gc-12\\/11\\@to-small{--gc-start: 12;--gc-end: 11}}@media(min-width: 700px){.u-gc-12\\/12\\@from-small{--gc-start: 12;--gc-end: 12}}@media(max-width: 699px){.u-gc-12\\/12\\@to-small{--gc-start: 12;--gc-end: 12}}@media(min-width: 700px){.u-gc-12\\/13\\@from-small{--gc-start: 12;--gc-end: 13}}@media(max-width: 699px){.u-gc-12\\/13\\@to-small{--gc-start: 12;--gc-end: 13}}@media(min-width: 700px){.u-gc-13\\/1\\@from-small{--gc-start: 13;--gc-end: 1}}@media(max-width: 699px){.u-gc-13\\/1\\@to-small{--gc-start: 13;--gc-end: 1}}@media(min-width: 700px){.u-gc-13\\/2\\@from-small{--gc-start: 13;--gc-end: 2}}@media(max-width: 699px){.u-gc-13\\/2\\@to-small{--gc-start: 13;--gc-end: 2}}@media(min-width: 700px){.u-gc-13\\/3\\@from-small{--gc-start: 13;--gc-end: 3}}@media(max-width: 699px){.u-gc-13\\/3\\@to-small{--gc-start: 13;--gc-end: 3}}@media(min-width: 700px){.u-gc-13\\/4\\@from-small{--gc-start: 13;--gc-end: 4}}@media(max-width: 699px){.u-gc-13\\/4\\@to-small{--gc-start: 13;--gc-end: 4}}@media(min-width: 700px){.u-gc-13\\/5\\@from-small{--gc-start: 13;--gc-end: 5}}@media(max-width: 699px){.u-gc-13\\/5\\@to-small{--gc-start: 13;--gc-end: 5}}@media(min-width: 700px){.u-gc-13\\/6\\@from-small{--gc-start: 13;--gc-end: 6}}@media(max-width: 699px){.u-gc-13\\/6\\@to-small{--gc-start: 13;--gc-end: 6}}@media(min-width: 700px){.u-gc-13\\/7\\@from-small{--gc-start: 13;--gc-end: 7}}@media(max-width: 699px){.u-gc-13\\/7\\@to-small{--gc-start: 13;--gc-end: 7}}@media(min-width: 700px){.u-gc-13\\/8\\@from-small{--gc-start: 13;--gc-end: 8}}@media(max-width: 699px){.u-gc-13\\/8\\@to-small{--gc-start: 13;--gc-end: 8}}@media(min-width: 700px){.u-gc-13\\/9\\@from-small{--gc-start: 13;--gc-end: 9}}@media(max-width: 699px){.u-gc-13\\/9\\@to-small{--gc-start: 13;--gc-end: 9}}@media(min-width: 700px){.u-gc-13\\/10\\@from-small{--gc-start: 13;--gc-end: 10}}@media(max-width: 699px){.u-gc-13\\/10\\@to-small{--gc-start: 13;--gc-end: 10}}@media(min-width: 700px){.u-gc-13\\/11\\@from-small{--gc-start: 13;--gc-end: 11}}@media(max-width: 699px){.u-gc-13\\/11\\@to-small{--gc-start: 13;--gc-end: 11}}@media(min-width: 700px){.u-gc-13\\/12\\@from-small{--gc-start: 13;--gc-end: 12}}@media(max-width: 699px){.u-gc-13\\/12\\@to-small{--gc-start: 13;--gc-end: 12}}@media(min-width: 700px){.u-gc-13\\/13\\@from-small{--gc-start: 13;--gc-end: 13}}@media(max-width: 699px){.u-gc-13\\/13\\@to-small{--gc-start: 13;--gc-end: 13}}@media(min-width: 1000px){.u-gc-1\\/1\\@from-medium{--gc-start: 1;--gc-end: 1}}@media(max-width: 999px){.u-gc-1\\/1\\@to-medium{--gc-start: 1;--gc-end: 1}}@media(min-width: 1000px){.u-gc-1\\/2\\@from-medium{--gc-start: 1;--gc-end: 2}}@media(max-width: 999px){.u-gc-1\\/2\\@to-medium{--gc-start: 1;--gc-end: 2}}@media(min-width: 1000px){.u-gc-1\\/3\\@from-medium{--gc-start: 1;--gc-end: 3}}@media(max-width: 999px){.u-gc-1\\/3\\@to-medium{--gc-start: 1;--gc-end: 3}}@media(min-width: 1000px){.u-gc-1\\/4\\@from-medium{--gc-start: 1;--gc-end: 4}}@media(max-width: 999px){.u-gc-1\\/4\\@to-medium{--gc-start: 1;--gc-end: 4}}@media(min-width: 1000px){.u-gc-1\\/5\\@from-medium{--gc-start: 1;--gc-end: 5}}@media(max-width: 999px){.u-gc-1\\/5\\@to-medium{--gc-start: 1;--gc-end: 5}}@media(min-width: 1000px){.u-gc-1\\/6\\@from-medium{--gc-start: 1;--gc-end: 6}}@media(max-width: 999px){.u-gc-1\\/6\\@to-medium{--gc-start: 1;--gc-end: 6}}@media(min-width: 1000px){.u-gc-1\\/7\\@from-medium{--gc-start: 1;--gc-end: 7}}@media(max-width: 999px){.u-gc-1\\/7\\@to-medium{--gc-start: 1;--gc-end: 7}}@media(min-width: 1000px){.u-gc-1\\/8\\@from-medium{--gc-start: 1;--gc-end: 8}}@media(max-width: 999px){.u-gc-1\\/8\\@to-medium{--gc-start: 1;--gc-end: 8}}@media(min-width: 1000px){.u-gc-1\\/9\\@from-medium{--gc-start: 1;--gc-end: 9}}@media(max-width: 999px){.u-gc-1\\/9\\@to-medium{--gc-start: 1;--gc-end: 9}}@media(min-width: 1000px){.u-gc-1\\/10\\@from-medium{--gc-start: 1;--gc-end: 10}}@media(max-width: 999px){.u-gc-1\\/10\\@to-medium{--gc-start: 1;--gc-end: 10}}@media(min-width: 1000px){.u-gc-1\\/11\\@from-medium{--gc-start: 1;--gc-end: 11}}@media(max-width: 999px){.u-gc-1\\/11\\@to-medium{--gc-start: 1;--gc-end: 11}}@media(min-width: 1000px){.u-gc-1\\/12\\@from-medium{--gc-start: 1;--gc-end: 12}}@media(max-width: 999px){.u-gc-1\\/12\\@to-medium{--gc-start: 1;--gc-end: 12}}@media(min-width: 1000px){.u-gc-1\\/13\\@from-medium{--gc-start: 1;--gc-end: 13}}@media(max-width: 999px){.u-gc-1\\/13\\@to-medium{--gc-start: 1;--gc-end: 13}}@media(min-width: 1000px){.u-gc-2\\/1\\@from-medium{--gc-start: 2;--gc-end: 1}}@media(max-width: 999px){.u-gc-2\\/1\\@to-medium{--gc-start: 2;--gc-end: 1}}@media(min-width: 1000px){.u-gc-2\\/2\\@from-medium{--gc-start: 2;--gc-end: 2}}@media(max-width: 999px){.u-gc-2\\/2\\@to-medium{--gc-start: 2;--gc-end: 2}}@media(min-width: 1000px){.u-gc-2\\/3\\@from-medium{--gc-start: 2;--gc-end: 3}}@media(max-width: 999px){.u-gc-2\\/3\\@to-medium{--gc-start: 2;--gc-end: 3}}@media(min-width: 1000px){.u-gc-2\\/4\\@from-medium{--gc-start: 2;--gc-end: 4}}@media(max-width: 999px){.u-gc-2\\/4\\@to-medium{--gc-start: 2;--gc-end: 4}}@media(min-width: 1000px){.u-gc-2\\/5\\@from-medium{--gc-start: 2;--gc-end: 5}}@media(max-width: 999px){.u-gc-2\\/5\\@to-medium{--gc-start: 2;--gc-end: 5}}@media(min-width: 1000px){.u-gc-2\\/6\\@from-medium{--gc-start: 2;--gc-end: 6}}@media(max-width: 999px){.u-gc-2\\/6\\@to-medium{--gc-start: 2;--gc-end: 6}}@media(min-width: 1000px){.u-gc-2\\/7\\@from-medium{--gc-start: 2;--gc-end: 7}}@media(max-width: 999px){.u-gc-2\\/7\\@to-medium{--gc-start: 2;--gc-end: 7}}@media(min-width: 1000px){.u-gc-2\\/8\\@from-medium{--gc-start: 2;--gc-end: 8}}@media(max-width: 999px){.u-gc-2\\/8\\@to-medium{--gc-start: 2;--gc-end: 8}}@media(min-width: 1000px){.u-gc-2\\/9\\@from-medium{--gc-start: 2;--gc-end: 9}}@media(max-width: 999px){.u-gc-2\\/9\\@to-medium{--gc-start: 2;--gc-end: 9}}@media(min-width: 1000px){.u-gc-2\\/10\\@from-medium{--gc-start: 2;--gc-end: 10}}@media(max-width: 999px){.u-gc-2\\/10\\@to-medium{--gc-start: 2;--gc-end: 10}}@media(min-width: 1000px){.u-gc-2\\/11\\@from-medium{--gc-start: 2;--gc-end: 11}}@media(max-width: 999px){.u-gc-2\\/11\\@to-medium{--gc-start: 2;--gc-end: 11}}@media(min-width: 1000px){.u-gc-2\\/12\\@from-medium{--gc-start: 2;--gc-end: 12}}@media(max-width: 999px){.u-gc-2\\/12\\@to-medium{--gc-start: 2;--gc-end: 12}}@media(min-width: 1000px){.u-gc-2\\/13\\@from-medium{--gc-start: 2;--gc-end: 13}}@media(max-width: 999px){.u-gc-2\\/13\\@to-medium{--gc-start: 2;--gc-end: 13}}@media(min-width: 1000px){.u-gc-3\\/1\\@from-medium{--gc-start: 3;--gc-end: 1}}@media(max-width: 999px){.u-gc-3\\/1\\@to-medium{--gc-start: 3;--gc-end: 1}}@media(min-width: 1000px){.u-gc-3\\/2\\@from-medium{--gc-start: 3;--gc-end: 2}}@media(max-width: 999px){.u-gc-3\\/2\\@to-medium{--gc-start: 3;--gc-end: 2}}@media(min-width: 1000px){.u-gc-3\\/3\\@from-medium{--gc-start: 3;--gc-end: 3}}@media(max-width: 999px){.u-gc-3\\/3\\@to-medium{--gc-start: 3;--gc-end: 3}}@media(min-width: 1000px){.u-gc-3\\/4\\@from-medium{--gc-start: 3;--gc-end: 4}}@media(max-width: 999px){.u-gc-3\\/4\\@to-medium{--gc-start: 3;--gc-end: 4}}@media(min-width: 1000px){.u-gc-3\\/5\\@from-medium{--gc-start: 3;--gc-end: 5}}@media(max-width: 999px){.u-gc-3\\/5\\@to-medium{--gc-start: 3;--gc-end: 5}}@media(min-width: 1000px){.u-gc-3\\/6\\@from-medium{--gc-start: 3;--gc-end: 6}}@media(max-width: 999px){.u-gc-3\\/6\\@to-medium{--gc-start: 3;--gc-end: 6}}@media(min-width: 1000px){.u-gc-3\\/7\\@from-medium{--gc-start: 3;--gc-end: 7}}@media(max-width: 999px){.u-gc-3\\/7\\@to-medium{--gc-start: 3;--gc-end: 7}}@media(min-width: 1000px){.u-gc-3\\/8\\@from-medium{--gc-start: 3;--gc-end: 8}}@media(max-width: 999px){.u-gc-3\\/8\\@to-medium{--gc-start: 3;--gc-end: 8}}@media(min-width: 1000px){.u-gc-3\\/9\\@from-medium{--gc-start: 3;--gc-end: 9}}@media(max-width: 999px){.u-gc-3\\/9\\@to-medium{--gc-start: 3;--gc-end: 9}}@media(min-width: 1000px){.u-gc-3\\/10\\@from-medium{--gc-start: 3;--gc-end: 10}}@media(max-width: 999px){.u-gc-3\\/10\\@to-medium{--gc-start: 3;--gc-end: 10}}@media(min-width: 1000px){.u-gc-3\\/11\\@from-medium{--gc-start: 3;--gc-end: 11}}@media(max-width: 999px){.u-gc-3\\/11\\@to-medium{--gc-start: 3;--gc-end: 11}}@media(min-width: 1000px){.u-gc-3\\/12\\@from-medium{--gc-start: 3;--gc-end: 12}}@media(max-width: 999px){.u-gc-3\\/12\\@to-medium{--gc-start: 3;--gc-end: 12}}@media(min-width: 1000px){.u-gc-3\\/13\\@from-medium{--gc-start: 3;--gc-end: 13}}@media(max-width: 999px){.u-gc-3\\/13\\@to-medium{--gc-start: 3;--gc-end: 13}}@media(min-width: 1000px){.u-gc-4\\/1\\@from-medium{--gc-start: 4;--gc-end: 1}}@media(max-width: 999px){.u-gc-4\\/1\\@to-medium{--gc-start: 4;--gc-end: 1}}@media(min-width: 1000px){.u-gc-4\\/2\\@from-medium{--gc-start: 4;--gc-end: 2}}@media(max-width: 999px){.u-gc-4\\/2\\@to-medium{--gc-start: 4;--gc-end: 2}}@media(min-width: 1000px){.u-gc-4\\/3\\@from-medium{--gc-start: 4;--gc-end: 3}}@media(max-width: 999px){.u-gc-4\\/3\\@to-medium{--gc-start: 4;--gc-end: 3}}@media(min-width: 1000px){.u-gc-4\\/4\\@from-medium{--gc-start: 4;--gc-end: 4}}@media(max-width: 999px){.u-gc-4\\/4\\@to-medium{--gc-start: 4;--gc-end: 4}}@media(min-width: 1000px){.u-gc-4\\/5\\@from-medium{--gc-start: 4;--gc-end: 5}}@media(max-width: 999px){.u-gc-4\\/5\\@to-medium{--gc-start: 4;--gc-end: 5}}@media(min-width: 1000px){.u-gc-4\\/6\\@from-medium{--gc-start: 4;--gc-end: 6}}@media(max-width: 999px){.u-gc-4\\/6\\@to-medium{--gc-start: 4;--gc-end: 6}}@media(min-width: 1000px){.u-gc-4\\/7\\@from-medium{--gc-start: 4;--gc-end: 7}}@media(max-width: 999px){.u-gc-4\\/7\\@to-medium{--gc-start: 4;--gc-end: 7}}@media(min-width: 1000px){.u-gc-4\\/8\\@from-medium{--gc-start: 4;--gc-end: 8}}@media(max-width: 999px){.u-gc-4\\/8\\@to-medium{--gc-start: 4;--gc-end: 8}}@media(min-width: 1000px){.u-gc-4\\/9\\@from-medium{--gc-start: 4;--gc-end: 9}}@media(max-width: 999px){.u-gc-4\\/9\\@to-medium{--gc-start: 4;--gc-end: 9}}@media(min-width: 1000px){.u-gc-4\\/10\\@from-medium{--gc-start: 4;--gc-end: 10}}@media(max-width: 999px){.u-gc-4\\/10\\@to-medium{--gc-start: 4;--gc-end: 10}}@media(min-width: 1000px){.u-gc-4\\/11\\@from-medium{--gc-start: 4;--gc-end: 11}}@media(max-width: 999px){.u-gc-4\\/11\\@to-medium{--gc-start: 4;--gc-end: 11}}@media(min-width: 1000px){.u-gc-4\\/12\\@from-medium{--gc-start: 4;--gc-end: 12}}@media(max-width: 999px){.u-gc-4\\/12\\@to-medium{--gc-start: 4;--gc-end: 12}}@media(min-width: 1000px){.u-gc-4\\/13\\@from-medium{--gc-start: 4;--gc-end: 13}}@media(max-width: 999px){.u-gc-4\\/13\\@to-medium{--gc-start: 4;--gc-end: 13}}@media(min-width: 1000px){.u-gc-5\\/1\\@from-medium{--gc-start: 5;--gc-end: 1}}@media(max-width: 999px){.u-gc-5\\/1\\@to-medium{--gc-start: 5;--gc-end: 1}}@media(min-width: 1000px){.u-gc-5\\/2\\@from-medium{--gc-start: 5;--gc-end: 2}}@media(max-width: 999px){.u-gc-5\\/2\\@to-medium{--gc-start: 5;--gc-end: 2}}@media(min-width: 1000px){.u-gc-5\\/3\\@from-medium{--gc-start: 5;--gc-end: 3}}@media(max-width: 999px){.u-gc-5\\/3\\@to-medium{--gc-start: 5;--gc-end: 3}}@media(min-width: 1000px){.u-gc-5\\/4\\@from-medium{--gc-start: 5;--gc-end: 4}}@media(max-width: 999px){.u-gc-5\\/4\\@to-medium{--gc-start: 5;--gc-end: 4}}@media(min-width: 1000px){.u-gc-5\\/5\\@from-medium{--gc-start: 5;--gc-end: 5}}@media(max-width: 999px){.u-gc-5\\/5\\@to-medium{--gc-start: 5;--gc-end: 5}}@media(min-width: 1000px){.u-gc-5\\/6\\@from-medium{--gc-start: 5;--gc-end: 6}}@media(max-width: 999px){.u-gc-5\\/6\\@to-medium{--gc-start: 5;--gc-end: 6}}@media(min-width: 1000px){.u-gc-5\\/7\\@from-medium{--gc-start: 5;--gc-end: 7}}@media(max-width: 999px){.u-gc-5\\/7\\@to-medium{--gc-start: 5;--gc-end: 7}}@media(min-width: 1000px){.u-gc-5\\/8\\@from-medium{--gc-start: 5;--gc-end: 8}}@media(max-width: 999px){.u-gc-5\\/8\\@to-medium{--gc-start: 5;--gc-end: 8}}@media(min-width: 1000px){.u-gc-5\\/9\\@from-medium{--gc-start: 5;--gc-end: 9}}@media(max-width: 999px){.u-gc-5\\/9\\@to-medium{--gc-start: 5;--gc-end: 9}}@media(min-width: 1000px){.u-gc-5\\/10\\@from-medium{--gc-start: 5;--gc-end: 10}}@media(max-width: 999px){.u-gc-5\\/10\\@to-medium{--gc-start: 5;--gc-end: 10}}@media(min-width: 1000px){.u-gc-5\\/11\\@from-medium{--gc-start: 5;--gc-end: 11}}@media(max-width: 999px){.u-gc-5\\/11\\@to-medium{--gc-start: 5;--gc-end: 11}}@media(min-width: 1000px){.u-gc-5\\/12\\@from-medium{--gc-start: 5;--gc-end: 12}}@media(max-width: 999px){.u-gc-5\\/12\\@to-medium{--gc-start: 5;--gc-end: 12}}@media(min-width: 1000px){.u-gc-5\\/13\\@from-medium{--gc-start: 5;--gc-end: 13}}@media(max-width: 999px){.u-gc-5\\/13\\@to-medium{--gc-start: 5;--gc-end: 13}}@media(min-width: 1000px){.u-gc-6\\/1\\@from-medium{--gc-start: 6;--gc-end: 1}}@media(max-width: 999px){.u-gc-6\\/1\\@to-medium{--gc-start: 6;--gc-end: 1}}@media(min-width: 1000px){.u-gc-6\\/2\\@from-medium{--gc-start: 6;--gc-end: 2}}@media(max-width: 999px){.u-gc-6\\/2\\@to-medium{--gc-start: 6;--gc-end: 2}}@media(min-width: 1000px){.u-gc-6\\/3\\@from-medium{--gc-start: 6;--gc-end: 3}}@media(max-width: 999px){.u-gc-6\\/3\\@to-medium{--gc-start: 6;--gc-end: 3}}@media(min-width: 1000px){.u-gc-6\\/4\\@from-medium{--gc-start: 6;--gc-end: 4}}@media(max-width: 999px){.u-gc-6\\/4\\@to-medium{--gc-start: 6;--gc-end: 4}}@media(min-width: 1000px){.u-gc-6\\/5\\@from-medium{--gc-start: 6;--gc-end: 5}}@media(max-width: 999px){.u-gc-6\\/5\\@to-medium{--gc-start: 6;--gc-end: 5}}@media(min-width: 1000px){.u-gc-6\\/6\\@from-medium{--gc-start: 6;--gc-end: 6}}@media(max-width: 999px){.u-gc-6\\/6\\@to-medium{--gc-start: 6;--gc-end: 6}}@media(min-width: 1000px){.u-gc-6\\/7\\@from-medium{--gc-start: 6;--gc-end: 7}}@media(max-width: 999px){.u-gc-6\\/7\\@to-medium{--gc-start: 6;--gc-end: 7}}@media(min-width: 1000px){.u-gc-6\\/8\\@from-medium{--gc-start: 6;--gc-end: 8}}@media(max-width: 999px){.u-gc-6\\/8\\@to-medium{--gc-start: 6;--gc-end: 8}}@media(min-width: 1000px){.u-gc-6\\/9\\@from-medium{--gc-start: 6;--gc-end: 9}}@media(max-width: 999px){.u-gc-6\\/9\\@to-medium{--gc-start: 6;--gc-end: 9}}@media(min-width: 1000px){.u-gc-6\\/10\\@from-medium{--gc-start: 6;--gc-end: 10}}@media(max-width: 999px){.u-gc-6\\/10\\@to-medium{--gc-start: 6;--gc-end: 10}}@media(min-width: 1000px){.u-gc-6\\/11\\@from-medium{--gc-start: 6;--gc-end: 11}}@media(max-width: 999px){.u-gc-6\\/11\\@to-medium{--gc-start: 6;--gc-end: 11}}@media(min-width: 1000px){.u-gc-6\\/12\\@from-medium{--gc-start: 6;--gc-end: 12}}@media(max-width: 999px){.u-gc-6\\/12\\@to-medium{--gc-start: 6;--gc-end: 12}}@media(min-width: 1000px){.u-gc-6\\/13\\@from-medium{--gc-start: 6;--gc-end: 13}}@media(max-width: 999px){.u-gc-6\\/13\\@to-medium{--gc-start: 6;--gc-end: 13}}@media(min-width: 1000px){.u-gc-7\\/1\\@from-medium{--gc-start: 7;--gc-end: 1}}@media(max-width: 999px){.u-gc-7\\/1\\@to-medium{--gc-start: 7;--gc-end: 1}}@media(min-width: 1000px){.u-gc-7\\/2\\@from-medium{--gc-start: 7;--gc-end: 2}}@media(max-width: 999px){.u-gc-7\\/2\\@to-medium{--gc-start: 7;--gc-end: 2}}@media(min-width: 1000px){.u-gc-7\\/3\\@from-medium{--gc-start: 7;--gc-end: 3}}@media(max-width: 999px){.u-gc-7\\/3\\@to-medium{--gc-start: 7;--gc-end: 3}}@media(min-width: 1000px){.u-gc-7\\/4\\@from-medium{--gc-start: 7;--gc-end: 4}}@media(max-width: 999px){.u-gc-7\\/4\\@to-medium{--gc-start: 7;--gc-end: 4}}@media(min-width: 1000px){.u-gc-7\\/5\\@from-medium{--gc-start: 7;--gc-end: 5}}@media(max-width: 999px){.u-gc-7\\/5\\@to-medium{--gc-start: 7;--gc-end: 5}}@media(min-width: 1000px){.u-gc-7\\/6\\@from-medium{--gc-start: 7;--gc-end: 6}}@media(max-width: 999px){.u-gc-7\\/6\\@to-medium{--gc-start: 7;--gc-end: 6}}@media(min-width: 1000px){.u-gc-7\\/7\\@from-medium{--gc-start: 7;--gc-end: 7}}@media(max-width: 999px){.u-gc-7\\/7\\@to-medium{--gc-start: 7;--gc-end: 7}}@media(min-width: 1000px){.u-gc-7\\/8\\@from-medium{--gc-start: 7;--gc-end: 8}}@media(max-width: 999px){.u-gc-7\\/8\\@to-medium{--gc-start: 7;--gc-end: 8}}@media(min-width: 1000px){.u-gc-7\\/9\\@from-medium{--gc-start: 7;--gc-end: 9}}@media(max-width: 999px){.u-gc-7\\/9\\@to-medium{--gc-start: 7;--gc-end: 9}}@media(min-width: 1000px){.u-gc-7\\/10\\@from-medium{--gc-start: 7;--gc-end: 10}}@media(max-width: 999px){.u-gc-7\\/10\\@to-medium{--gc-start: 7;--gc-end: 10}}@media(min-width: 1000px){.u-gc-7\\/11\\@from-medium{--gc-start: 7;--gc-end: 11}}@media(max-width: 999px){.u-gc-7\\/11\\@to-medium{--gc-start: 7;--gc-end: 11}}@media(min-width: 1000px){.u-gc-7\\/12\\@from-medium{--gc-start: 7;--gc-end: 12}}@media(max-width: 999px){.u-gc-7\\/12\\@to-medium{--gc-start: 7;--gc-end: 12}}@media(min-width: 1000px){.u-gc-7\\/13\\@from-medium{--gc-start: 7;--gc-end: 13}}@media(max-width: 999px){.u-gc-7\\/13\\@to-medium{--gc-start: 7;--gc-end: 13}}@media(min-width: 1000px){.u-gc-8\\/1\\@from-medium{--gc-start: 8;--gc-end: 1}}@media(max-width: 999px){.u-gc-8\\/1\\@to-medium{--gc-start: 8;--gc-end: 1}}@media(min-width: 1000px){.u-gc-8\\/2\\@from-medium{--gc-start: 8;--gc-end: 2}}@media(max-width: 999px){.u-gc-8\\/2\\@to-medium{--gc-start: 8;--gc-end: 2}}@media(min-width: 1000px){.u-gc-8\\/3\\@from-medium{--gc-start: 8;--gc-end: 3}}@media(max-width: 999px){.u-gc-8\\/3\\@to-medium{--gc-start: 8;--gc-end: 3}}@media(min-width: 1000px){.u-gc-8\\/4\\@from-medium{--gc-start: 8;--gc-end: 4}}@media(max-width: 999px){.u-gc-8\\/4\\@to-medium{--gc-start: 8;--gc-end: 4}}@media(min-width: 1000px){.u-gc-8\\/5\\@from-medium{--gc-start: 8;--gc-end: 5}}@media(max-width: 999px){.u-gc-8\\/5\\@to-medium{--gc-start: 8;--gc-end: 5}}@media(min-width: 1000px){.u-gc-8\\/6\\@from-medium{--gc-start: 8;--gc-end: 6}}@media(max-width: 999px){.u-gc-8\\/6\\@to-medium{--gc-start: 8;--gc-end: 6}}@media(min-width: 1000px){.u-gc-8\\/7\\@from-medium{--gc-start: 8;--gc-end: 7}}@media(max-width: 999px){.u-gc-8\\/7\\@to-medium{--gc-start: 8;--gc-end: 7}}@media(min-width: 1000px){.u-gc-8\\/8\\@from-medium{--gc-start: 8;--gc-end: 8}}@media(max-width: 999px){.u-gc-8\\/8\\@to-medium{--gc-start: 8;--gc-end: 8}}@media(min-width: 1000px){.u-gc-8\\/9\\@from-medium{--gc-start: 8;--gc-end: 9}}@media(max-width: 999px){.u-gc-8\\/9\\@to-medium{--gc-start: 8;--gc-end: 9}}@media(min-width: 1000px){.u-gc-8\\/10\\@from-medium{--gc-start: 8;--gc-end: 10}}@media(max-width: 999px){.u-gc-8\\/10\\@to-medium{--gc-start: 8;--gc-end: 10}}@media(min-width: 1000px){.u-gc-8\\/11\\@from-medium{--gc-start: 8;--gc-end: 11}}@media(max-width: 999px){.u-gc-8\\/11\\@to-medium{--gc-start: 8;--gc-end: 11}}@media(min-width: 1000px){.u-gc-8\\/12\\@from-medium{--gc-start: 8;--gc-end: 12}}@media(max-width: 999px){.u-gc-8\\/12\\@to-medium{--gc-start: 8;--gc-end: 12}}@media(min-width: 1000px){.u-gc-8\\/13\\@from-medium{--gc-start: 8;--gc-end: 13}}@media(max-width: 999px){.u-gc-8\\/13\\@to-medium{--gc-start: 8;--gc-end: 13}}@media(min-width: 1000px){.u-gc-9\\/1\\@from-medium{--gc-start: 9;--gc-end: 1}}@media(max-width: 999px){.u-gc-9\\/1\\@to-medium{--gc-start: 9;--gc-end: 1}}@media(min-width: 1000px){.u-gc-9\\/2\\@from-medium{--gc-start: 9;--gc-end: 2}}@media(max-width: 999px){.u-gc-9\\/2\\@to-medium{--gc-start: 9;--gc-end: 2}}@media(min-width: 1000px){.u-gc-9\\/3\\@from-medium{--gc-start: 9;--gc-end: 3}}@media(max-width: 999px){.u-gc-9\\/3\\@to-medium{--gc-start: 9;--gc-end: 3}}@media(min-width: 1000px){.u-gc-9\\/4\\@from-medium{--gc-start: 9;--gc-end: 4}}@media(max-width: 999px){.u-gc-9\\/4\\@to-medium{--gc-start: 9;--gc-end: 4}}@media(min-width: 1000px){.u-gc-9\\/5\\@from-medium{--gc-start: 9;--gc-end: 5}}@media(max-width: 999px){.u-gc-9\\/5\\@to-medium{--gc-start: 9;--gc-end: 5}}@media(min-width: 1000px){.u-gc-9\\/6\\@from-medium{--gc-start: 9;--gc-end: 6}}@media(max-width: 999px){.u-gc-9\\/6\\@to-medium{--gc-start: 9;--gc-end: 6}}@media(min-width: 1000px){.u-gc-9\\/7\\@from-medium{--gc-start: 9;--gc-end: 7}}@media(max-width: 999px){.u-gc-9\\/7\\@to-medium{--gc-start: 9;--gc-end: 7}}@media(min-width: 1000px){.u-gc-9\\/8\\@from-medium{--gc-start: 9;--gc-end: 8}}@media(max-width: 999px){.u-gc-9\\/8\\@to-medium{--gc-start: 9;--gc-end: 8}}@media(min-width: 1000px){.u-gc-9\\/9\\@from-medium{--gc-start: 9;--gc-end: 9}}@media(max-width: 999px){.u-gc-9\\/9\\@to-medium{--gc-start: 9;--gc-end: 9}}@media(min-width: 1000px){.u-gc-9\\/10\\@from-medium{--gc-start: 9;--gc-end: 10}}@media(max-width: 999px){.u-gc-9\\/10\\@to-medium{--gc-start: 9;--gc-end: 10}}@media(min-width: 1000px){.u-gc-9\\/11\\@from-medium{--gc-start: 9;--gc-end: 11}}@media(max-width: 999px){.u-gc-9\\/11\\@to-medium{--gc-start: 9;--gc-end: 11}}@media(min-width: 1000px){.u-gc-9\\/12\\@from-medium{--gc-start: 9;--gc-end: 12}}@media(max-width: 999px){.u-gc-9\\/12\\@to-medium{--gc-start: 9;--gc-end: 12}}@media(min-width: 1000px){.u-gc-9\\/13\\@from-medium{--gc-start: 9;--gc-end: 13}}@media(max-width: 999px){.u-gc-9\\/13\\@to-medium{--gc-start: 9;--gc-end: 13}}@media(min-width: 1000px){.u-gc-10\\/1\\@from-medium{--gc-start: 10;--gc-end: 1}}@media(max-width: 999px){.u-gc-10\\/1\\@to-medium{--gc-start: 10;--gc-end: 1}}@media(min-width: 1000px){.u-gc-10\\/2\\@from-medium{--gc-start: 10;--gc-end: 2}}@media(max-width: 999px){.u-gc-10\\/2\\@to-medium{--gc-start: 10;--gc-end: 2}}@media(min-width: 1000px){.u-gc-10\\/3\\@from-medium{--gc-start: 10;--gc-end: 3}}@media(max-width: 999px){.u-gc-10\\/3\\@to-medium{--gc-start: 10;--gc-end: 3}}@media(min-width: 1000px){.u-gc-10\\/4\\@from-medium{--gc-start: 10;--gc-end: 4}}@media(max-width: 999px){.u-gc-10\\/4\\@to-medium{--gc-start: 10;--gc-end: 4}}@media(min-width: 1000px){.u-gc-10\\/5\\@from-medium{--gc-start: 10;--gc-end: 5}}@media(max-width: 999px){.u-gc-10\\/5\\@to-medium{--gc-start: 10;--gc-end: 5}}@media(min-width: 1000px){.u-gc-10\\/6\\@from-medium{--gc-start: 10;--gc-end: 6}}@media(max-width: 999px){.u-gc-10\\/6\\@to-medium{--gc-start: 10;--gc-end: 6}}@media(min-width: 1000px){.u-gc-10\\/7\\@from-medium{--gc-start: 10;--gc-end: 7}}@media(max-width: 999px){.u-gc-10\\/7\\@to-medium{--gc-start: 10;--gc-end: 7}}@media(min-width: 1000px){.u-gc-10\\/8\\@from-medium{--gc-start: 10;--gc-end: 8}}@media(max-width: 999px){.u-gc-10\\/8\\@to-medium{--gc-start: 10;--gc-end: 8}}@media(min-width: 1000px){.u-gc-10\\/9\\@from-medium{--gc-start: 10;--gc-end: 9}}@media(max-width: 999px){.u-gc-10\\/9\\@to-medium{--gc-start: 10;--gc-end: 9}}@media(min-width: 1000px){.u-gc-10\\/10\\@from-medium{--gc-start: 10;--gc-end: 10}}@media(max-width: 999px){.u-gc-10\\/10\\@to-medium{--gc-start: 10;--gc-end: 10}}@media(min-width: 1000px){.u-gc-10\\/11\\@from-medium{--gc-start: 10;--gc-end: 11}}@media(max-width: 999px){.u-gc-10\\/11\\@to-medium{--gc-start: 10;--gc-end: 11}}@media(min-width: 1000px){.u-gc-10\\/12\\@from-medium{--gc-start: 10;--gc-end: 12}}@media(max-width: 999px){.u-gc-10\\/12\\@to-medium{--gc-start: 10;--gc-end: 12}}@media(min-width: 1000px){.u-gc-10\\/13\\@from-medium{--gc-start: 10;--gc-end: 13}}@media(max-width: 999px){.u-gc-10\\/13\\@to-medium{--gc-start: 10;--gc-end: 13}}@media(min-width: 1000px){.u-gc-11\\/1\\@from-medium{--gc-start: 11;--gc-end: 1}}@media(max-width: 999px){.u-gc-11\\/1\\@to-medium{--gc-start: 11;--gc-end: 1}}@media(min-width: 1000px){.u-gc-11\\/2\\@from-medium{--gc-start: 11;--gc-end: 2}}@media(max-width: 999px){.u-gc-11\\/2\\@to-medium{--gc-start: 11;--gc-end: 2}}@media(min-width: 1000px){.u-gc-11\\/3\\@from-medium{--gc-start: 11;--gc-end: 3}}@media(max-width: 999px){.u-gc-11\\/3\\@to-medium{--gc-start: 11;--gc-end: 3}}@media(min-width: 1000px){.u-gc-11\\/4\\@from-medium{--gc-start: 11;--gc-end: 4}}@media(max-width: 999px){.u-gc-11\\/4\\@to-medium{--gc-start: 11;--gc-end: 4}}@media(min-width: 1000px){.u-gc-11\\/5\\@from-medium{--gc-start: 11;--gc-end: 5}}@media(max-width: 999px){.u-gc-11\\/5\\@to-medium{--gc-start: 11;--gc-end: 5}}@media(min-width: 1000px){.u-gc-11\\/6\\@from-medium{--gc-start: 11;--gc-end: 6}}@media(max-width: 999px){.u-gc-11\\/6\\@to-medium{--gc-start: 11;--gc-end: 6}}@media(min-width: 1000px){.u-gc-11\\/7\\@from-medium{--gc-start: 11;--gc-end: 7}}@media(max-width: 999px){.u-gc-11\\/7\\@to-medium{--gc-start: 11;--gc-end: 7}}@media(min-width: 1000px){.u-gc-11\\/8\\@from-medium{--gc-start: 11;--gc-end: 8}}@media(max-width: 999px){.u-gc-11\\/8\\@to-medium{--gc-start: 11;--gc-end: 8}}@media(min-width: 1000px){.u-gc-11\\/9\\@from-medium{--gc-start: 11;--gc-end: 9}}@media(max-width: 999px){.u-gc-11\\/9\\@to-medium{--gc-start: 11;--gc-end: 9}}@media(min-width: 1000px){.u-gc-11\\/10\\@from-medium{--gc-start: 11;--gc-end: 10}}@media(max-width: 999px){.u-gc-11\\/10\\@to-medium{--gc-start: 11;--gc-end: 10}}@media(min-width: 1000px){.u-gc-11\\/11\\@from-medium{--gc-start: 11;--gc-end: 11}}@media(max-width: 999px){.u-gc-11\\/11\\@to-medium{--gc-start: 11;--gc-end: 11}}@media(min-width: 1000px){.u-gc-11\\/12\\@from-medium{--gc-start: 11;--gc-end: 12}}@media(max-width: 999px){.u-gc-11\\/12\\@to-medium{--gc-start: 11;--gc-end: 12}}@media(min-width: 1000px){.u-gc-11\\/13\\@from-medium{--gc-start: 11;--gc-end: 13}}@media(max-width: 999px){.u-gc-11\\/13\\@to-medium{--gc-start: 11;--gc-end: 13}}@media(min-width: 1000px){.u-gc-12\\/1\\@from-medium{--gc-start: 12;--gc-end: 1}}@media(max-width: 999px){.u-gc-12\\/1\\@to-medium{--gc-start: 12;--gc-end: 1}}@media(min-width: 1000px){.u-gc-12\\/2\\@from-medium{--gc-start: 12;--gc-end: 2}}@media(max-width: 999px){.u-gc-12\\/2\\@to-medium{--gc-start: 12;--gc-end: 2}}@media(min-width: 1000px){.u-gc-12\\/3\\@from-medium{--gc-start: 12;--gc-end: 3}}@media(max-width: 999px){.u-gc-12\\/3\\@to-medium{--gc-start: 12;--gc-end: 3}}@media(min-width: 1000px){.u-gc-12\\/4\\@from-medium{--gc-start: 12;--gc-end: 4}}@media(max-width: 999px){.u-gc-12\\/4\\@to-medium{--gc-start: 12;--gc-end: 4}}@media(min-width: 1000px){.u-gc-12\\/5\\@from-medium{--gc-start: 12;--gc-end: 5}}@media(max-width: 999px){.u-gc-12\\/5\\@to-medium{--gc-start: 12;--gc-end: 5}}@media(min-width: 1000px){.u-gc-12\\/6\\@from-medium{--gc-start: 12;--gc-end: 6}}@media(max-width: 999px){.u-gc-12\\/6\\@to-medium{--gc-start: 12;--gc-end: 6}}@media(min-width: 1000px){.u-gc-12\\/7\\@from-medium{--gc-start: 12;--gc-end: 7}}@media(max-width: 999px){.u-gc-12\\/7\\@to-medium{--gc-start: 12;--gc-end: 7}}@media(min-width: 1000px){.u-gc-12\\/8\\@from-medium{--gc-start: 12;--gc-end: 8}}@media(max-width: 999px){.u-gc-12\\/8\\@to-medium{--gc-start: 12;--gc-end: 8}}@media(min-width: 1000px){.u-gc-12\\/9\\@from-medium{--gc-start: 12;--gc-end: 9}}@media(max-width: 999px){.u-gc-12\\/9\\@to-medium{--gc-start: 12;--gc-end: 9}}@media(min-width: 1000px){.u-gc-12\\/10\\@from-medium{--gc-start: 12;--gc-end: 10}}@media(max-width: 999px){.u-gc-12\\/10\\@to-medium{--gc-start: 12;--gc-end: 10}}@media(min-width: 1000px){.u-gc-12\\/11\\@from-medium{--gc-start: 12;--gc-end: 11}}@media(max-width: 999px){.u-gc-12\\/11\\@to-medium{--gc-start: 12;--gc-end: 11}}@media(min-width: 1000px){.u-gc-12\\/12\\@from-medium{--gc-start: 12;--gc-end: 12}}@media(max-width: 999px){.u-gc-12\\/12\\@to-medium{--gc-start: 12;--gc-end: 12}}@media(min-width: 1000px){.u-gc-12\\/13\\@from-medium{--gc-start: 12;--gc-end: 13}}@media(max-width: 999px){.u-gc-12\\/13\\@to-medium{--gc-start: 12;--gc-end: 13}}@media(min-width: 1000px){.u-gc-13\\/1\\@from-medium{--gc-start: 13;--gc-end: 1}}@media(max-width: 999px){.u-gc-13\\/1\\@to-medium{--gc-start: 13;--gc-end: 1}}@media(min-width: 1000px){.u-gc-13\\/2\\@from-medium{--gc-start: 13;--gc-end: 2}}@media(max-width: 999px){.u-gc-13\\/2\\@to-medium{--gc-start: 13;--gc-end: 2}}@media(min-width: 1000px){.u-gc-13\\/3\\@from-medium{--gc-start: 13;--gc-end: 3}}@media(max-width: 999px){.u-gc-13\\/3\\@to-medium{--gc-start: 13;--gc-end: 3}}@media(min-width: 1000px){.u-gc-13\\/4\\@from-medium{--gc-start: 13;--gc-end: 4}}@media(max-width: 999px){.u-gc-13\\/4\\@to-medium{--gc-start: 13;--gc-end: 4}}@media(min-width: 1000px){.u-gc-13\\/5\\@from-medium{--gc-start: 13;--gc-end: 5}}@media(max-width: 999px){.u-gc-13\\/5\\@to-medium{--gc-start: 13;--gc-end: 5}}@media(min-width: 1000px){.u-gc-13\\/6\\@from-medium{--gc-start: 13;--gc-end: 6}}@media(max-width: 999px){.u-gc-13\\/6\\@to-medium{--gc-start: 13;--gc-end: 6}}@media(min-width: 1000px){.u-gc-13\\/7\\@from-medium{--gc-start: 13;--gc-end: 7}}@media(max-width: 999px){.u-gc-13\\/7\\@to-medium{--gc-start: 13;--gc-end: 7}}@media(min-width: 1000px){.u-gc-13\\/8\\@from-medium{--gc-start: 13;--gc-end: 8}}@media(max-width: 999px){.u-gc-13\\/8\\@to-medium{--gc-start: 13;--gc-end: 8}}@media(min-width: 1000px){.u-gc-13\\/9\\@from-medium{--gc-start: 13;--gc-end: 9}}@media(max-width: 999px){.u-gc-13\\/9\\@to-medium{--gc-start: 13;--gc-end: 9}}@media(min-width: 1000px){.u-gc-13\\/10\\@from-medium{--gc-start: 13;--gc-end: 10}}@media(max-width: 999px){.u-gc-13\\/10\\@to-medium{--gc-start: 13;--gc-end: 10}}@media(min-width: 1000px){.u-gc-13\\/11\\@from-medium{--gc-start: 13;--gc-end: 11}}@media(max-width: 999px){.u-gc-13\\/11\\@to-medium{--gc-start: 13;--gc-end: 11}}@media(min-width: 1000px){.u-gc-13\\/12\\@from-medium{--gc-start: 13;--gc-end: 12}}@media(max-width: 999px){.u-gc-13\\/12\\@to-medium{--gc-start: 13;--gc-end: 12}}@media(min-width: 1000px){.u-gc-13\\/13\\@from-medium{--gc-start: 13;--gc-end: 13}}@media(max-width: 999px){.u-gc-13\\/13\\@to-medium{--gc-start: 13;--gc-end: 13}}@media(min-width: 1200px){.u-gc-1\\/1\\@from-large{--gc-start: 1;--gc-end: 1}}@media(max-width: 1199px){.u-gc-1\\/1\\@to-large{--gc-start: 1;--gc-end: 1}}@media(min-width: 1200px){.u-gc-1\\/2\\@from-large{--gc-start: 1;--gc-end: 2}}@media(max-width: 1199px){.u-gc-1\\/2\\@to-large{--gc-start: 1;--gc-end: 2}}@media(min-width: 1200px){.u-gc-1\\/3\\@from-large{--gc-start: 1;--gc-end: 3}}@media(max-width: 1199px){.u-gc-1\\/3\\@to-large{--gc-start: 1;--gc-end: 3}}@media(min-width: 1200px){.u-gc-1\\/4\\@from-large{--gc-start: 1;--gc-end: 4}}@media(max-width: 1199px){.u-gc-1\\/4\\@to-large{--gc-start: 1;--gc-end: 4}}@media(min-width: 1200px){.u-gc-1\\/5\\@from-large{--gc-start: 1;--gc-end: 5}}@media(max-width: 1199px){.u-gc-1\\/5\\@to-large{--gc-start: 1;--gc-end: 5}}@media(min-width: 1200px){.u-gc-1\\/6\\@from-large{--gc-start: 1;--gc-end: 6}}@media(max-width: 1199px){.u-gc-1\\/6\\@to-large{--gc-start: 1;--gc-end: 6}}@media(min-width: 1200px){.u-gc-1\\/7\\@from-large{--gc-start: 1;--gc-end: 7}}@media(max-width: 1199px){.u-gc-1\\/7\\@to-large{--gc-start: 1;--gc-end: 7}}@media(min-width: 1200px){.u-gc-1\\/8\\@from-large{--gc-start: 1;--gc-end: 8}}@media(max-width: 1199px){.u-gc-1\\/8\\@to-large{--gc-start: 1;--gc-end: 8}}@media(min-width: 1200px){.u-gc-1\\/9\\@from-large{--gc-start: 1;--gc-end: 9}}@media(max-width: 1199px){.u-gc-1\\/9\\@to-large{--gc-start: 1;--gc-end: 9}}@media(min-width: 1200px){.u-gc-1\\/10\\@from-large{--gc-start: 1;--gc-end: 10}}@media(max-width: 1199px){.u-gc-1\\/10\\@to-large{--gc-start: 1;--gc-end: 10}}@media(min-width: 1200px){.u-gc-1\\/11\\@from-large{--gc-start: 1;--gc-end: 11}}@media(max-width: 1199px){.u-gc-1\\/11\\@to-large{--gc-start: 1;--gc-end: 11}}@media(min-width: 1200px){.u-gc-1\\/12\\@from-large{--gc-start: 1;--gc-end: 12}}@media(max-width: 1199px){.u-gc-1\\/12\\@to-large{--gc-start: 1;--gc-end: 12}}@media(min-width: 1200px){.u-gc-1\\/13\\@from-large{--gc-start: 1;--gc-end: 13}}@media(max-width: 1199px){.u-gc-1\\/13\\@to-large{--gc-start: 1;--gc-end: 13}}@media(min-width: 1200px){.u-gc-2\\/1\\@from-large{--gc-start: 2;--gc-end: 1}}@media(max-width: 1199px){.u-gc-2\\/1\\@to-large{--gc-start: 2;--gc-end: 1}}@media(min-width: 1200px){.u-gc-2\\/2\\@from-large{--gc-start: 2;--gc-end: 2}}@media(max-width: 1199px){.u-gc-2\\/2\\@to-large{--gc-start: 2;--gc-end: 2}}@media(min-width: 1200px){.u-gc-2\\/3\\@from-large{--gc-start: 2;--gc-end: 3}}@media(max-width: 1199px){.u-gc-2\\/3\\@to-large{--gc-start: 2;--gc-end: 3}}@media(min-width: 1200px){.u-gc-2\\/4\\@from-large{--gc-start: 2;--gc-end: 4}}@media(max-width: 1199px){.u-gc-2\\/4\\@to-large{--gc-start: 2;--gc-end: 4}}@media(min-width: 1200px){.u-gc-2\\/5\\@from-large{--gc-start: 2;--gc-end: 5}}@media(max-width: 1199px){.u-gc-2\\/5\\@to-large{--gc-start: 2;--gc-end: 5}}@media(min-width: 1200px){.u-gc-2\\/6\\@from-large{--gc-start: 2;--gc-end: 6}}@media(max-width: 1199px){.u-gc-2\\/6\\@to-large{--gc-start: 2;--gc-end: 6}}@media(min-width: 1200px){.u-gc-2\\/7\\@from-large{--gc-start: 2;--gc-end: 7}}@media(max-width: 1199px){.u-gc-2\\/7\\@to-large{--gc-start: 2;--gc-end: 7}}@media(min-width: 1200px){.u-gc-2\\/8\\@from-large{--gc-start: 2;--gc-end: 8}}@media(max-width: 1199px){.u-gc-2\\/8\\@to-large{--gc-start: 2;--gc-end: 8}}@media(min-width: 1200px){.u-gc-2\\/9\\@from-large{--gc-start: 2;--gc-end: 9}}@media(max-width: 1199px){.u-gc-2\\/9\\@to-large{--gc-start: 2;--gc-end: 9}}@media(min-width: 1200px){.u-gc-2\\/10\\@from-large{--gc-start: 2;--gc-end: 10}}@media(max-width: 1199px){.u-gc-2\\/10\\@to-large{--gc-start: 2;--gc-end: 10}}@media(min-width: 1200px){.u-gc-2\\/11\\@from-large{--gc-start: 2;--gc-end: 11}}@media(max-width: 1199px){.u-gc-2\\/11\\@to-large{--gc-start: 2;--gc-end: 11}}@media(min-width: 1200px){.u-gc-2\\/12\\@from-large{--gc-start: 2;--gc-end: 12}}@media(max-width: 1199px){.u-gc-2\\/12\\@to-large{--gc-start: 2;--gc-end: 12}}@media(min-width: 1200px){.u-gc-2\\/13\\@from-large{--gc-start: 2;--gc-end: 13}}@media(max-width: 1199px){.u-gc-2\\/13\\@to-large{--gc-start: 2;--gc-end: 13}}@media(min-width: 1200px){.u-gc-3\\/1\\@from-large{--gc-start: 3;--gc-end: 1}}@media(max-width: 1199px){.u-gc-3\\/1\\@to-large{--gc-start: 3;--gc-end: 1}}@media(min-width: 1200px){.u-gc-3\\/2\\@from-large{--gc-start: 3;--gc-end: 2}}@media(max-width: 1199px){.u-gc-3\\/2\\@to-large{--gc-start: 3;--gc-end: 2}}@media(min-width: 1200px){.u-gc-3\\/3\\@from-large{--gc-start: 3;--gc-end: 3}}@media(max-width: 1199px){.u-gc-3\\/3\\@to-large{--gc-start: 3;--gc-end: 3}}@media(min-width: 1200px){.u-gc-3\\/4\\@from-large{--gc-start: 3;--gc-end: 4}}@media(max-width: 1199px){.u-gc-3\\/4\\@to-large{--gc-start: 3;--gc-end: 4}}@media(min-width: 1200px){.u-gc-3\\/5\\@from-large{--gc-start: 3;--gc-end: 5}}@media(max-width: 1199px){.u-gc-3\\/5\\@to-large{--gc-start: 3;--gc-end: 5}}@media(min-width: 1200px){.u-gc-3\\/6\\@from-large{--gc-start: 3;--gc-end: 6}}@media(max-width: 1199px){.u-gc-3\\/6\\@to-large{--gc-start: 3;--gc-end: 6}}@media(min-width: 1200px){.u-gc-3\\/7\\@from-large{--gc-start: 3;--gc-end: 7}}@media(max-width: 1199px){.u-gc-3\\/7\\@to-large{--gc-start: 3;--gc-end: 7}}@media(min-width: 1200px){.u-gc-3\\/8\\@from-large{--gc-start: 3;--gc-end: 8}}@media(max-width: 1199px){.u-gc-3\\/8\\@to-large{--gc-start: 3;--gc-end: 8}}@media(min-width: 1200px){.u-gc-3\\/9\\@from-large{--gc-start: 3;--gc-end: 9}}@media(max-width: 1199px){.u-gc-3\\/9\\@to-large{--gc-start: 3;--gc-end: 9}}@media(min-width: 1200px){.u-gc-3\\/10\\@from-large{--gc-start: 3;--gc-end: 10}}@media(max-width: 1199px){.u-gc-3\\/10\\@to-large{--gc-start: 3;--gc-end: 10}}@media(min-width: 1200px){.u-gc-3\\/11\\@from-large{--gc-start: 3;--gc-end: 11}}@media(max-width: 1199px){.u-gc-3\\/11\\@to-large{--gc-start: 3;--gc-end: 11}}@media(min-width: 1200px){.u-gc-3\\/12\\@from-large{--gc-start: 3;--gc-end: 12}}@media(max-width: 1199px){.u-gc-3\\/12\\@to-large{--gc-start: 3;--gc-end: 12}}@media(min-width: 1200px){.u-gc-3\\/13\\@from-large{--gc-start: 3;--gc-end: 13}}@media(max-width: 1199px){.u-gc-3\\/13\\@to-large{--gc-start: 3;--gc-end: 13}}@media(min-width: 1200px){.u-gc-4\\/1\\@from-large{--gc-start: 4;--gc-end: 1}}@media(max-width: 1199px){.u-gc-4\\/1\\@to-large{--gc-start: 4;--gc-end: 1}}@media(min-width: 1200px){.u-gc-4\\/2\\@from-large{--gc-start: 4;--gc-end: 2}}@media(max-width: 1199px){.u-gc-4\\/2\\@to-large{--gc-start: 4;--gc-end: 2}}@media(min-width: 1200px){.u-gc-4\\/3\\@from-large{--gc-start: 4;--gc-end: 3}}@media(max-width: 1199px){.u-gc-4\\/3\\@to-large{--gc-start: 4;--gc-end: 3}}@media(min-width: 1200px){.u-gc-4\\/4\\@from-large{--gc-start: 4;--gc-end: 4}}@media(max-width: 1199px){.u-gc-4\\/4\\@to-large{--gc-start: 4;--gc-end: 4}}@media(min-width: 1200px){.u-gc-4\\/5\\@from-large{--gc-start: 4;--gc-end: 5}}@media(max-width: 1199px){.u-gc-4\\/5\\@to-large{--gc-start: 4;--gc-end: 5}}@media(min-width: 1200px){.u-gc-4\\/6\\@from-large{--gc-start: 4;--gc-end: 6}}@media(max-width: 1199px){.u-gc-4\\/6\\@to-large{--gc-start: 4;--gc-end: 6}}@media(min-width: 1200px){.u-gc-4\\/7\\@from-large{--gc-start: 4;--gc-end: 7}}@media(max-width: 1199px){.u-gc-4\\/7\\@to-large{--gc-start: 4;--gc-end: 7}}@media(min-width: 1200px){.u-gc-4\\/8\\@from-large{--gc-start: 4;--gc-end: 8}}@media(max-width: 1199px){.u-gc-4\\/8\\@to-large{--gc-start: 4;--gc-end: 8}}@media(min-width: 1200px){.u-gc-4\\/9\\@from-large{--gc-start: 4;--gc-end: 9}}@media(max-width: 1199px){.u-gc-4\\/9\\@to-large{--gc-start: 4;--gc-end: 9}}@media(min-width: 1200px){.u-gc-4\\/10\\@from-large{--gc-start: 4;--gc-end: 10}}@media(max-width: 1199px){.u-gc-4\\/10\\@to-large{--gc-start: 4;--gc-end: 10}}@media(min-width: 1200px){.u-gc-4\\/11\\@from-large{--gc-start: 4;--gc-end: 11}}@media(max-width: 1199px){.u-gc-4\\/11\\@to-large{--gc-start: 4;--gc-end: 11}}@media(min-width: 1200px){.u-gc-4\\/12\\@from-large{--gc-start: 4;--gc-end: 12}}@media(max-width: 1199px){.u-gc-4\\/12\\@to-large{--gc-start: 4;--gc-end: 12}}@media(min-width: 1200px){.u-gc-4\\/13\\@from-large{--gc-start: 4;--gc-end: 13}}@media(max-width: 1199px){.u-gc-4\\/13\\@to-large{--gc-start: 4;--gc-end: 13}}@media(min-width: 1200px){.u-gc-5\\/1\\@from-large{--gc-start: 5;--gc-end: 1}}@media(max-width: 1199px){.u-gc-5\\/1\\@to-large{--gc-start: 5;--gc-end: 1}}@media(min-width: 1200px){.u-gc-5\\/2\\@from-large{--gc-start: 5;--gc-end: 2}}@media(max-width: 1199px){.u-gc-5\\/2\\@to-large{--gc-start: 5;--gc-end: 2}}@media(min-width: 1200px){.u-gc-5\\/3\\@from-large{--gc-start: 5;--gc-end: 3}}@media(max-width: 1199px){.u-gc-5\\/3\\@to-large{--gc-start: 5;--gc-end: 3}}@media(min-width: 1200px){.u-gc-5\\/4\\@from-large{--gc-start: 5;--gc-end: 4}}@media(max-width: 1199px){.u-gc-5\\/4\\@to-large{--gc-start: 5;--gc-end: 4}}@media(min-width: 1200px){.u-gc-5\\/5\\@from-large{--gc-start: 5;--gc-end: 5}}@media(max-width: 1199px){.u-gc-5\\/5\\@to-large{--gc-start: 5;--gc-end: 5}}@media(min-width: 1200px){.u-gc-5\\/6\\@from-large{--gc-start: 5;--gc-end: 6}}@media(max-width: 1199px){.u-gc-5\\/6\\@to-large{--gc-start: 5;--gc-end: 6}}@media(min-width: 1200px){.u-gc-5\\/7\\@from-large{--gc-start: 5;--gc-end: 7}}@media(max-width: 1199px){.u-gc-5\\/7\\@to-large{--gc-start: 5;--gc-end: 7}}@media(min-width: 1200px){.u-gc-5\\/8\\@from-large{--gc-start: 5;--gc-end: 8}}@media(max-width: 1199px){.u-gc-5\\/8\\@to-large{--gc-start: 5;--gc-end: 8}}@media(min-width: 1200px){.u-gc-5\\/9\\@from-large{--gc-start: 5;--gc-end: 9}}@media(max-width: 1199px){.u-gc-5\\/9\\@to-large{--gc-start: 5;--gc-end: 9}}@media(min-width: 1200px){.u-gc-5\\/10\\@from-large{--gc-start: 5;--gc-end: 10}}@media(max-width: 1199px){.u-gc-5\\/10\\@to-large{--gc-start: 5;--gc-end: 10}}@media(min-width: 1200px){.u-gc-5\\/11\\@from-large{--gc-start: 5;--gc-end: 11}}@media(max-width: 1199px){.u-gc-5\\/11\\@to-large{--gc-start: 5;--gc-end: 11}}@media(min-width: 1200px){.u-gc-5\\/12\\@from-large{--gc-start: 5;--gc-end: 12}}@media(max-width: 1199px){.u-gc-5\\/12\\@to-large{--gc-start: 5;--gc-end: 12}}@media(min-width: 1200px){.u-gc-5\\/13\\@from-large{--gc-start: 5;--gc-end: 13}}@media(max-width: 1199px){.u-gc-5\\/13\\@to-large{--gc-start: 5;--gc-end: 13}}@media(min-width: 1200px){.u-gc-6\\/1\\@from-large{--gc-start: 6;--gc-end: 1}}@media(max-width: 1199px){.u-gc-6\\/1\\@to-large{--gc-start: 6;--gc-end: 1}}@media(min-width: 1200px){.u-gc-6\\/2\\@from-large{--gc-start: 6;--gc-end: 2}}@media(max-width: 1199px){.u-gc-6\\/2\\@to-large{--gc-start: 6;--gc-end: 2}}@media(min-width: 1200px){.u-gc-6\\/3\\@from-large{--gc-start: 6;--gc-end: 3}}@media(max-width: 1199px){.u-gc-6\\/3\\@to-large{--gc-start: 6;--gc-end: 3}}@media(min-width: 1200px){.u-gc-6\\/4\\@from-large{--gc-start: 6;--gc-end: 4}}@media(max-width: 1199px){.u-gc-6\\/4\\@to-large{--gc-start: 6;--gc-end: 4}}@media(min-width: 1200px){.u-gc-6\\/5\\@from-large{--gc-start: 6;--gc-end: 5}}@media(max-width: 1199px){.u-gc-6\\/5\\@to-large{--gc-start: 6;--gc-end: 5}}@media(min-width: 1200px){.u-gc-6\\/6\\@from-large{--gc-start: 6;--gc-end: 6}}@media(max-width: 1199px){.u-gc-6\\/6\\@to-large{--gc-start: 6;--gc-end: 6}}@media(min-width: 1200px){.u-gc-6\\/7\\@from-large{--gc-start: 6;--gc-end: 7}}@media(max-width: 1199px){.u-gc-6\\/7\\@to-large{--gc-start: 6;--gc-end: 7}}@media(min-width: 1200px){.u-gc-6\\/8\\@from-large{--gc-start: 6;--gc-end: 8}}@media(max-width: 1199px){.u-gc-6\\/8\\@to-large{--gc-start: 6;--gc-end: 8}}@media(min-width: 1200px){.u-gc-6\\/9\\@from-large{--gc-start: 6;--gc-end: 9}}@media(max-width: 1199px){.u-gc-6\\/9\\@to-large{--gc-start: 6;--gc-end: 9}}@media(min-width: 1200px){.u-gc-6\\/10\\@from-large{--gc-start: 6;--gc-end: 10}}@media(max-width: 1199px){.u-gc-6\\/10\\@to-large{--gc-start: 6;--gc-end: 10}}@media(min-width: 1200px){.u-gc-6\\/11\\@from-large{--gc-start: 6;--gc-end: 11}}@media(max-width: 1199px){.u-gc-6\\/11\\@to-large{--gc-start: 6;--gc-end: 11}}@media(min-width: 1200px){.u-gc-6\\/12\\@from-large{--gc-start: 6;--gc-end: 12}}@media(max-width: 1199px){.u-gc-6\\/12\\@to-large{--gc-start: 6;--gc-end: 12}}@media(min-width: 1200px){.u-gc-6\\/13\\@from-large{--gc-start: 6;--gc-end: 13}}@media(max-width: 1199px){.u-gc-6\\/13\\@to-large{--gc-start: 6;--gc-end: 13}}@media(min-width: 1200px){.u-gc-7\\/1\\@from-large{--gc-start: 7;--gc-end: 1}}@media(max-width: 1199px){.u-gc-7\\/1\\@to-large{--gc-start: 7;--gc-end: 1}}@media(min-width: 1200px){.u-gc-7\\/2\\@from-large{--gc-start: 7;--gc-end: 2}}@media(max-width: 1199px){.u-gc-7\\/2\\@to-large{--gc-start: 7;--gc-end: 2}}@media(min-width: 1200px){.u-gc-7\\/3\\@from-large{--gc-start: 7;--gc-end: 3}}@media(max-width: 1199px){.u-gc-7\\/3\\@to-large{--gc-start: 7;--gc-end: 3}}@media(min-width: 1200px){.u-gc-7\\/4\\@from-large{--gc-start: 7;--gc-end: 4}}@media(max-width: 1199px){.u-gc-7\\/4\\@to-large{--gc-start: 7;--gc-end: 4}}@media(min-width: 1200px){.u-gc-7\\/5\\@from-large{--gc-start: 7;--gc-end: 5}}@media(max-width: 1199px){.u-gc-7\\/5\\@to-large{--gc-start: 7;--gc-end: 5}}@media(min-width: 1200px){.u-gc-7\\/6\\@from-large{--gc-start: 7;--gc-end: 6}}@media(max-width: 1199px){.u-gc-7\\/6\\@to-large{--gc-start: 7;--gc-end: 6}}@media(min-width: 1200px){.u-gc-7\\/7\\@from-large{--gc-start: 7;--gc-end: 7}}@media(max-width: 1199px){.u-gc-7\\/7\\@to-large{--gc-start: 7;--gc-end: 7}}@media(min-width: 1200px){.u-gc-7\\/8\\@from-large{--gc-start: 7;--gc-end: 8}}@media(max-width: 1199px){.u-gc-7\\/8\\@to-large{--gc-start: 7;--gc-end: 8}}@media(min-width: 1200px){.u-gc-7\\/9\\@from-large{--gc-start: 7;--gc-end: 9}}@media(max-width: 1199px){.u-gc-7\\/9\\@to-large{--gc-start: 7;--gc-end: 9}}@media(min-width: 1200px){.u-gc-7\\/10\\@from-large{--gc-start: 7;--gc-end: 10}}@media(max-width: 1199px){.u-gc-7\\/10\\@to-large{--gc-start: 7;--gc-end: 10}}@media(min-width: 1200px){.u-gc-7\\/11\\@from-large{--gc-start: 7;--gc-end: 11}}@media(max-width: 1199px){.u-gc-7\\/11\\@to-large{--gc-start: 7;--gc-end: 11}}@media(min-width: 1200px){.u-gc-7\\/12\\@from-large{--gc-start: 7;--gc-end: 12}}@media(max-width: 1199px){.u-gc-7\\/12\\@to-large{--gc-start: 7;--gc-end: 12}}@media(min-width: 1200px){.u-gc-7\\/13\\@from-large{--gc-start: 7;--gc-end: 13}}@media(max-width: 1199px){.u-gc-7\\/13\\@to-large{--gc-start: 7;--gc-end: 13}}@media(min-width: 1200px){.u-gc-8\\/1\\@from-large{--gc-start: 8;--gc-end: 1}}@media(max-width: 1199px){.u-gc-8\\/1\\@to-large{--gc-start: 8;--gc-end: 1}}@media(min-width: 1200px){.u-gc-8\\/2\\@from-large{--gc-start: 8;--gc-end: 2}}@media(max-width: 1199px){.u-gc-8\\/2\\@to-large{--gc-start: 8;--gc-end: 2}}@media(min-width: 1200px){.u-gc-8\\/3\\@from-large{--gc-start: 8;--gc-end: 3}}@media(max-width: 1199px){.u-gc-8\\/3\\@to-large{--gc-start: 8;--gc-end: 3}}@media(min-width: 1200px){.u-gc-8\\/4\\@from-large{--gc-start: 8;--gc-end: 4}}@media(max-width: 1199px){.u-gc-8\\/4\\@to-large{--gc-start: 8;--gc-end: 4}}@media(min-width: 1200px){.u-gc-8\\/5\\@from-large{--gc-start: 8;--gc-end: 5}}@media(max-width: 1199px){.u-gc-8\\/5\\@to-large{--gc-start: 8;--gc-end: 5}}@media(min-width: 1200px){.u-gc-8\\/6\\@from-large{--gc-start: 8;--gc-end: 6}}@media(max-width: 1199px){.u-gc-8\\/6\\@to-large{--gc-start: 8;--gc-end: 6}}@media(min-width: 1200px){.u-gc-8\\/7\\@from-large{--gc-start: 8;--gc-end: 7}}@media(max-width: 1199px){.u-gc-8\\/7\\@to-large{--gc-start: 8;--gc-end: 7}}@media(min-width: 1200px){.u-gc-8\\/8\\@from-large{--gc-start: 8;--gc-end: 8}}@media(max-width: 1199px){.u-gc-8\\/8\\@to-large{--gc-start: 8;--gc-end: 8}}@media(min-width: 1200px){.u-gc-8\\/9\\@from-large{--gc-start: 8;--gc-end: 9}}@media(max-width: 1199px){.u-gc-8\\/9\\@to-large{--gc-start: 8;--gc-end: 9}}@media(min-width: 1200px){.u-gc-8\\/10\\@from-large{--gc-start: 8;--gc-end: 10}}@media(max-width: 1199px){.u-gc-8\\/10\\@to-large{--gc-start: 8;--gc-end: 10}}@media(min-width: 1200px){.u-gc-8\\/11\\@from-large{--gc-start: 8;--gc-end: 11}}@media(max-width: 1199px){.u-gc-8\\/11\\@to-large{--gc-start: 8;--gc-end: 11}}@media(min-width: 1200px){.u-gc-8\\/12\\@from-large{--gc-start: 8;--gc-end: 12}}@media(max-width: 1199px){.u-gc-8\\/12\\@to-large{--gc-start: 8;--gc-end: 12}}@media(min-width: 1200px){.u-gc-8\\/13\\@from-large{--gc-start: 8;--gc-end: 13}}@media(max-width: 1199px){.u-gc-8\\/13\\@to-large{--gc-start: 8;--gc-end: 13}}@media(min-width: 1200px){.u-gc-9\\/1\\@from-large{--gc-start: 9;--gc-end: 1}}@media(max-width: 1199px){.u-gc-9\\/1\\@to-large{--gc-start: 9;--gc-end: 1}}@media(min-width: 1200px){.u-gc-9\\/2\\@from-large{--gc-start: 9;--gc-end: 2}}@media(max-width: 1199px){.u-gc-9\\/2\\@to-large{--gc-start: 9;--gc-end: 2}}@media(min-width: 1200px){.u-gc-9\\/3\\@from-large{--gc-start: 9;--gc-end: 3}}@media(max-width: 1199px){.u-gc-9\\/3\\@to-large{--gc-start: 9;--gc-end: 3}}@media(min-width: 1200px){.u-gc-9\\/4\\@from-large{--gc-start: 9;--gc-end: 4}}@media(max-width: 1199px){.u-gc-9\\/4\\@to-large{--gc-start: 9;--gc-end: 4}}@media(min-width: 1200px){.u-gc-9\\/5\\@from-large{--gc-start: 9;--gc-end: 5}}@media(max-width: 1199px){.u-gc-9\\/5\\@to-large{--gc-start: 9;--gc-end: 5}}@media(min-width: 1200px){.u-gc-9\\/6\\@from-large{--gc-start: 9;--gc-end: 6}}@media(max-width: 1199px){.u-gc-9\\/6\\@to-large{--gc-start: 9;--gc-end: 6}}@media(min-width: 1200px){.u-gc-9\\/7\\@from-large{--gc-start: 9;--gc-end: 7}}@media(max-width: 1199px){.u-gc-9\\/7\\@to-large{--gc-start: 9;--gc-end: 7}}@media(min-width: 1200px){.u-gc-9\\/8\\@from-large{--gc-start: 9;--gc-end: 8}}@media(max-width: 1199px){.u-gc-9\\/8\\@to-large{--gc-start: 9;--gc-end: 8}}@media(min-width: 1200px){.u-gc-9\\/9\\@from-large{--gc-start: 9;--gc-end: 9}}@media(max-width: 1199px){.u-gc-9\\/9\\@to-large{--gc-start: 9;--gc-end: 9}}@media(min-width: 1200px){.u-gc-9\\/10\\@from-large{--gc-start: 9;--gc-end: 10}}@media(max-width: 1199px){.u-gc-9\\/10\\@to-large{--gc-start: 9;--gc-end: 10}}@media(min-width: 1200px){.u-gc-9\\/11\\@from-large{--gc-start: 9;--gc-end: 11}}@media(max-width: 1199px){.u-gc-9\\/11\\@to-large{--gc-start: 9;--gc-end: 11}}@media(min-width: 1200px){.u-gc-9\\/12\\@from-large{--gc-start: 9;--gc-end: 12}}@media(max-width: 1199px){.u-gc-9\\/12\\@to-large{--gc-start: 9;--gc-end: 12}}@media(min-width: 1200px){.u-gc-9\\/13\\@from-large{--gc-start: 9;--gc-end: 13}}@media(max-width: 1199px){.u-gc-9\\/13\\@to-large{--gc-start: 9;--gc-end: 13}}@media(min-width: 1200px){.u-gc-10\\/1\\@from-large{--gc-start: 10;--gc-end: 1}}@media(max-width: 1199px){.u-gc-10\\/1\\@to-large{--gc-start: 10;--gc-end: 1}}@media(min-width: 1200px){.u-gc-10\\/2\\@from-large{--gc-start: 10;--gc-end: 2}}@media(max-width: 1199px){.u-gc-10\\/2\\@to-large{--gc-start: 10;--gc-end: 2}}@media(min-width: 1200px){.u-gc-10\\/3\\@from-large{--gc-start: 10;--gc-end: 3}}@media(max-width: 1199px){.u-gc-10\\/3\\@to-large{--gc-start: 10;--gc-end: 3}}@media(min-width: 1200px){.u-gc-10\\/4\\@from-large{--gc-start: 10;--gc-end: 4}}@media(max-width: 1199px){.u-gc-10\\/4\\@to-large{--gc-start: 10;--gc-end: 4}}@media(min-width: 1200px){.u-gc-10\\/5\\@from-large{--gc-start: 10;--gc-end: 5}}@media(max-width: 1199px){.u-gc-10\\/5\\@to-large{--gc-start: 10;--gc-end: 5}}@media(min-width: 1200px){.u-gc-10\\/6\\@from-large{--gc-start: 10;--gc-end: 6}}@media(max-width: 1199px){.u-gc-10\\/6\\@to-large{--gc-start: 10;--gc-end: 6}}@media(min-width: 1200px){.u-gc-10\\/7\\@from-large{--gc-start: 10;--gc-end: 7}}@media(max-width: 1199px){.u-gc-10\\/7\\@to-large{--gc-start: 10;--gc-end: 7}}@media(min-width: 1200px){.u-gc-10\\/8\\@from-large{--gc-start: 10;--gc-end: 8}}@media(max-width: 1199px){.u-gc-10\\/8\\@to-large{--gc-start: 10;--gc-end: 8}}@media(min-width: 1200px){.u-gc-10\\/9\\@from-large{--gc-start: 10;--gc-end: 9}}@media(max-width: 1199px){.u-gc-10\\/9\\@to-large{--gc-start: 10;--gc-end: 9}}@media(min-width: 1200px){.u-gc-10\\/10\\@from-large{--gc-start: 10;--gc-end: 10}}@media(max-width: 1199px){.u-gc-10\\/10\\@to-large{--gc-start: 10;--gc-end: 10}}@media(min-width: 1200px){.u-gc-10\\/11\\@from-large{--gc-start: 10;--gc-end: 11}}@media(max-width: 1199px){.u-gc-10\\/11\\@to-large{--gc-start: 10;--gc-end: 11}}@media(min-width: 1200px){.u-gc-10\\/12\\@from-large{--gc-start: 10;--gc-end: 12}}@media(max-width: 1199px){.u-gc-10\\/12\\@to-large{--gc-start: 10;--gc-end: 12}}@media(min-width: 1200px){.u-gc-10\\/13\\@from-large{--gc-start: 10;--gc-end: 13}}@media(max-width: 1199px){.u-gc-10\\/13\\@to-large{--gc-start: 10;--gc-end: 13}}@media(min-width: 1200px){.u-gc-11\\/1\\@from-large{--gc-start: 11;--gc-end: 1}}@media(max-width: 1199px){.u-gc-11\\/1\\@to-large{--gc-start: 11;--gc-end: 1}}@media(min-width: 1200px){.u-gc-11\\/2\\@from-large{--gc-start: 11;--gc-end: 2}}@media(max-width: 1199px){.u-gc-11\\/2\\@to-large{--gc-start: 11;--gc-end: 2}}@media(min-width: 1200px){.u-gc-11\\/3\\@from-large{--gc-start: 11;--gc-end: 3}}@media(max-width: 1199px){.u-gc-11\\/3\\@to-large{--gc-start: 11;--gc-end: 3}}@media(min-width: 1200px){.u-gc-11\\/4\\@from-large{--gc-start: 11;--gc-end: 4}}@media(max-width: 1199px){.u-gc-11\\/4\\@to-large{--gc-start: 11;--gc-end: 4}}@media(min-width: 1200px){.u-gc-11\\/5\\@from-large{--gc-start: 11;--gc-end: 5}}@media(max-width: 1199px){.u-gc-11\\/5\\@to-large{--gc-start: 11;--gc-end: 5}}@media(min-width: 1200px){.u-gc-11\\/6\\@from-large{--gc-start: 11;--gc-end: 6}}@media(max-width: 1199px){.u-gc-11\\/6\\@to-large{--gc-start: 11;--gc-end: 6}}@media(min-width: 1200px){.u-gc-11\\/7\\@from-large{--gc-start: 11;--gc-end: 7}}@media(max-width: 1199px){.u-gc-11\\/7\\@to-large{--gc-start: 11;--gc-end: 7}}@media(min-width: 1200px){.u-gc-11\\/8\\@from-large{--gc-start: 11;--gc-end: 8}}@media(max-width: 1199px){.u-gc-11\\/8\\@to-large{--gc-start: 11;--gc-end: 8}}@media(min-width: 1200px){.u-gc-11\\/9\\@from-large{--gc-start: 11;--gc-end: 9}}@media(max-width: 1199px){.u-gc-11\\/9\\@to-large{--gc-start: 11;--gc-end: 9}}@media(min-width: 1200px){.u-gc-11\\/10\\@from-large{--gc-start: 11;--gc-end: 10}}@media(max-width: 1199px){.u-gc-11\\/10\\@to-large{--gc-start: 11;--gc-end: 10}}@media(min-width: 1200px){.u-gc-11\\/11\\@from-large{--gc-start: 11;--gc-end: 11}}@media(max-width: 1199px){.u-gc-11\\/11\\@to-large{--gc-start: 11;--gc-end: 11}}@media(min-width: 1200px){.u-gc-11\\/12\\@from-large{--gc-start: 11;--gc-end: 12}}@media(max-width: 1199px){.u-gc-11\\/12\\@to-large{--gc-start: 11;--gc-end: 12}}@media(min-width: 1200px){.u-gc-11\\/13\\@from-large{--gc-start: 11;--gc-end: 13}}@media(max-width: 1199px){.u-gc-11\\/13\\@to-large{--gc-start: 11;--gc-end: 13}}@media(min-width: 1200px){.u-gc-12\\/1\\@from-large{--gc-start: 12;--gc-end: 1}}@media(max-width: 1199px){.u-gc-12\\/1\\@to-large{--gc-start: 12;--gc-end: 1}}@media(min-width: 1200px){.u-gc-12\\/2\\@from-large{--gc-start: 12;--gc-end: 2}}@media(max-width: 1199px){.u-gc-12\\/2\\@to-large{--gc-start: 12;--gc-end: 2}}@media(min-width: 1200px){.u-gc-12\\/3\\@from-large{--gc-start: 12;--gc-end: 3}}@media(max-width: 1199px){.u-gc-12\\/3\\@to-large{--gc-start: 12;--gc-end: 3}}@media(min-width: 1200px){.u-gc-12\\/4\\@from-large{--gc-start: 12;--gc-end: 4}}@media(max-width: 1199px){.u-gc-12\\/4\\@to-large{--gc-start: 12;--gc-end: 4}}@media(min-width: 1200px){.u-gc-12\\/5\\@from-large{--gc-start: 12;--gc-end: 5}}@media(max-width: 1199px){.u-gc-12\\/5\\@to-large{--gc-start: 12;--gc-end: 5}}@media(min-width: 1200px){.u-gc-12\\/6\\@from-large{--gc-start: 12;--gc-end: 6}}@media(max-width: 1199px){.u-gc-12\\/6\\@to-large{--gc-start: 12;--gc-end: 6}}@media(min-width: 1200px){.u-gc-12\\/7\\@from-large{--gc-start: 12;--gc-end: 7}}@media(max-width: 1199px){.u-gc-12\\/7\\@to-large{--gc-start: 12;--gc-end: 7}}@media(min-width: 1200px){.u-gc-12\\/8\\@from-large{--gc-start: 12;--gc-end: 8}}@media(max-width: 1199px){.u-gc-12\\/8\\@to-large{--gc-start: 12;--gc-end: 8}}@media(min-width: 1200px){.u-gc-12\\/9\\@from-large{--gc-start: 12;--gc-end: 9}}@media(max-width: 1199px){.u-gc-12\\/9\\@to-large{--gc-start: 12;--gc-end: 9}}@media(min-width: 1200px){.u-gc-12\\/10\\@from-large{--gc-start: 12;--gc-end: 10}}@media(max-width: 1199px){.u-gc-12\\/10\\@to-large{--gc-start: 12;--gc-end: 10}}@media(min-width: 1200px){.u-gc-12\\/11\\@from-large{--gc-start: 12;--gc-end: 11}}@media(max-width: 1199px){.u-gc-12\\/11\\@to-large{--gc-start: 12;--gc-end: 11}}@media(min-width: 1200px){.u-gc-12\\/12\\@from-large{--gc-start: 12;--gc-end: 12}}@media(max-width: 1199px){.u-gc-12\\/12\\@to-large{--gc-start: 12;--gc-end: 12}}@media(min-width: 1200px){.u-gc-12\\/13\\@from-large{--gc-start: 12;--gc-end: 13}}@media(max-width: 1199px){.u-gc-12\\/13\\@to-large{--gc-start: 12;--gc-end: 13}}@media(min-width: 1200px){.u-gc-13\\/1\\@from-large{--gc-start: 13;--gc-end: 1}}@media(max-width: 1199px){.u-gc-13\\/1\\@to-large{--gc-start: 13;--gc-end: 1}}@media(min-width: 1200px){.u-gc-13\\/2\\@from-large{--gc-start: 13;--gc-end: 2}}@media(max-width: 1199px){.u-gc-13\\/2\\@to-large{--gc-start: 13;--gc-end: 2}}@media(min-width: 1200px){.u-gc-13\\/3\\@from-large{--gc-start: 13;--gc-end: 3}}@media(max-width: 1199px){.u-gc-13\\/3\\@to-large{--gc-start: 13;--gc-end: 3}}@media(min-width: 1200px){.u-gc-13\\/4\\@from-large{--gc-start: 13;--gc-end: 4}}@media(max-width: 1199px){.u-gc-13\\/4\\@to-large{--gc-start: 13;--gc-end: 4}}@media(min-width: 1200px){.u-gc-13\\/5\\@from-large{--gc-start: 13;--gc-end: 5}}@media(max-width: 1199px){.u-gc-13\\/5\\@to-large{--gc-start: 13;--gc-end: 5}}@media(min-width: 1200px){.u-gc-13\\/6\\@from-large{--gc-start: 13;--gc-end: 6}}@media(max-width: 1199px){.u-gc-13\\/6\\@to-large{--gc-start: 13;--gc-end: 6}}@media(min-width: 1200px){.u-gc-13\\/7\\@from-large{--gc-start: 13;--gc-end: 7}}@media(max-width: 1199px){.u-gc-13\\/7\\@to-large{--gc-start: 13;--gc-end: 7}}@media(min-width: 1200px){.u-gc-13\\/8\\@from-large{--gc-start: 13;--gc-end: 8}}@media(max-width: 1199px){.u-gc-13\\/8\\@to-large{--gc-start: 13;--gc-end: 8}}@media(min-width: 1200px){.u-gc-13\\/9\\@from-large{--gc-start: 13;--gc-end: 9}}@media(max-width: 1199px){.u-gc-13\\/9\\@to-large{--gc-start: 13;--gc-end: 9}}@media(min-width: 1200px){.u-gc-13\\/10\\@from-large{--gc-start: 13;--gc-end: 10}}@media(max-width: 1199px){.u-gc-13\\/10\\@to-large{--gc-start: 13;--gc-end: 10}}@media(min-width: 1200px){.u-gc-13\\/11\\@from-large{--gc-start: 13;--gc-end: 11}}@media(max-width: 1199px){.u-gc-13\\/11\\@to-large{--gc-start: 13;--gc-end: 11}}@media(min-width: 1200px){.u-gc-13\\/12\\@from-large{--gc-start: 13;--gc-end: 12}}@media(max-width: 1199px){.u-gc-13\\/12\\@to-large{--gc-start: 13;--gc-end: 12}}@media(min-width: 1200px){.u-gc-13\\/13\\@from-large{--gc-start: 13;--gc-end: 13}}@media(max-width: 1199px){.u-gc-13\\/13\\@to-large{--gc-start: 13;--gc-end: 13}}@media(min-width: 1400px){.u-gc-1\\/1\\@from-big{--gc-start: 1;--gc-end: 1}}@media(max-width: 1399px){.u-gc-1\\/1\\@to-big{--gc-start: 1;--gc-end: 1}}@media(min-width: 1400px){.u-gc-1\\/2\\@from-big{--gc-start: 1;--gc-end: 2}}@media(max-width: 1399px){.u-gc-1\\/2\\@to-big{--gc-start: 1;--gc-end: 2}}@media(min-width: 1400px){.u-gc-1\\/3\\@from-big{--gc-start: 1;--gc-end: 3}}@media(max-width: 1399px){.u-gc-1\\/3\\@to-big{--gc-start: 1;--gc-end: 3}}@media(min-width: 1400px){.u-gc-1\\/4\\@from-big{--gc-start: 1;--gc-end: 4}}@media(max-width: 1399px){.u-gc-1\\/4\\@to-big{--gc-start: 1;--gc-end: 4}}@media(min-width: 1400px){.u-gc-1\\/5\\@from-big{--gc-start: 1;--gc-end: 5}}@media(max-width: 1399px){.u-gc-1\\/5\\@to-big{--gc-start: 1;--gc-end: 5}}@media(min-width: 1400px){.u-gc-1\\/6\\@from-big{--gc-start: 1;--gc-end: 6}}@media(max-width: 1399px){.u-gc-1\\/6\\@to-big{--gc-start: 1;--gc-end: 6}}@media(min-width: 1400px){.u-gc-1\\/7\\@from-big{--gc-start: 1;--gc-end: 7}}@media(max-width: 1399px){.u-gc-1\\/7\\@to-big{--gc-start: 1;--gc-end: 7}}@media(min-width: 1400px){.u-gc-1\\/8\\@from-big{--gc-start: 1;--gc-end: 8}}@media(max-width: 1399px){.u-gc-1\\/8\\@to-big{--gc-start: 1;--gc-end: 8}}@media(min-width: 1400px){.u-gc-1\\/9\\@from-big{--gc-start: 1;--gc-end: 9}}@media(max-width: 1399px){.u-gc-1\\/9\\@to-big{--gc-start: 1;--gc-end: 9}}@media(min-width: 1400px){.u-gc-1\\/10\\@from-big{--gc-start: 1;--gc-end: 10}}@media(max-width: 1399px){.u-gc-1\\/10\\@to-big{--gc-start: 1;--gc-end: 10}}@media(min-width: 1400px){.u-gc-1\\/11\\@from-big{--gc-start: 1;--gc-end: 11}}@media(max-width: 1399px){.u-gc-1\\/11\\@to-big{--gc-start: 1;--gc-end: 11}}@media(min-width: 1400px){.u-gc-1\\/12\\@from-big{--gc-start: 1;--gc-end: 12}}@media(max-width: 1399px){.u-gc-1\\/12\\@to-big{--gc-start: 1;--gc-end: 12}}@media(min-width: 1400px){.u-gc-1\\/13\\@from-big{--gc-start: 1;--gc-end: 13}}@media(max-width: 1399px){.u-gc-1\\/13\\@to-big{--gc-start: 1;--gc-end: 13}}@media(min-width: 1400px){.u-gc-2\\/1\\@from-big{--gc-start: 2;--gc-end: 1}}@media(max-width: 1399px){.u-gc-2\\/1\\@to-big{--gc-start: 2;--gc-end: 1}}@media(min-width: 1400px){.u-gc-2\\/2\\@from-big{--gc-start: 2;--gc-end: 2}}@media(max-width: 1399px){.u-gc-2\\/2\\@to-big{--gc-start: 2;--gc-end: 2}}@media(min-width: 1400px){.u-gc-2\\/3\\@from-big{--gc-start: 2;--gc-end: 3}}@media(max-width: 1399px){.u-gc-2\\/3\\@to-big{--gc-start: 2;--gc-end: 3}}@media(min-width: 1400px){.u-gc-2\\/4\\@from-big{--gc-start: 2;--gc-end: 4}}@media(max-width: 1399px){.u-gc-2\\/4\\@to-big{--gc-start: 2;--gc-end: 4}}@media(min-width: 1400px){.u-gc-2\\/5\\@from-big{--gc-start: 2;--gc-end: 5}}@media(max-width: 1399px){.u-gc-2\\/5\\@to-big{--gc-start: 2;--gc-end: 5}}@media(min-width: 1400px){.u-gc-2\\/6\\@from-big{--gc-start: 2;--gc-end: 6}}@media(max-width: 1399px){.u-gc-2\\/6\\@to-big{--gc-start: 2;--gc-end: 6}}@media(min-width: 1400px){.u-gc-2\\/7\\@from-big{--gc-start: 2;--gc-end: 7}}@media(max-width: 1399px){.u-gc-2\\/7\\@to-big{--gc-start: 2;--gc-end: 7}}@media(min-width: 1400px){.u-gc-2\\/8\\@from-big{--gc-start: 2;--gc-end: 8}}@media(max-width: 1399px){.u-gc-2\\/8\\@to-big{--gc-start: 2;--gc-end: 8}}@media(min-width: 1400px){.u-gc-2\\/9\\@from-big{--gc-start: 2;--gc-end: 9}}@media(max-width: 1399px){.u-gc-2\\/9\\@to-big{--gc-start: 2;--gc-end: 9}}@media(min-width: 1400px){.u-gc-2\\/10\\@from-big{--gc-start: 2;--gc-end: 10}}@media(max-width: 1399px){.u-gc-2\\/10\\@to-big{--gc-start: 2;--gc-end: 10}}@media(min-width: 1400px){.u-gc-2\\/11\\@from-big{--gc-start: 2;--gc-end: 11}}@media(max-width: 1399px){.u-gc-2\\/11\\@to-big{--gc-start: 2;--gc-end: 11}}@media(min-width: 1400px){.u-gc-2\\/12\\@from-big{--gc-start: 2;--gc-end: 12}}@media(max-width: 1399px){.u-gc-2\\/12\\@to-big{--gc-start: 2;--gc-end: 12}}@media(min-width: 1400px){.u-gc-2\\/13\\@from-big{--gc-start: 2;--gc-end: 13}}@media(max-width: 1399px){.u-gc-2\\/13\\@to-big{--gc-start: 2;--gc-end: 13}}@media(min-width: 1400px){.u-gc-3\\/1\\@from-big{--gc-start: 3;--gc-end: 1}}@media(max-width: 1399px){.u-gc-3\\/1\\@to-big{--gc-start: 3;--gc-end: 1}}@media(min-width: 1400px){.u-gc-3\\/2\\@from-big{--gc-start: 3;--gc-end: 2}}@media(max-width: 1399px){.u-gc-3\\/2\\@to-big{--gc-start: 3;--gc-end: 2}}@media(min-width: 1400px){.u-gc-3\\/3\\@from-big{--gc-start: 3;--gc-end: 3}}@media(max-width: 1399px){.u-gc-3\\/3\\@to-big{--gc-start: 3;--gc-end: 3}}@media(min-width: 1400px){.u-gc-3\\/4\\@from-big{--gc-start: 3;--gc-end: 4}}@media(max-width: 1399px){.u-gc-3\\/4\\@to-big{--gc-start: 3;--gc-end: 4}}@media(min-width: 1400px){.u-gc-3\\/5\\@from-big{--gc-start: 3;--gc-end: 5}}@media(max-width: 1399px){.u-gc-3\\/5\\@to-big{--gc-start: 3;--gc-end: 5}}@media(min-width: 1400px){.u-gc-3\\/6\\@from-big{--gc-start: 3;--gc-end: 6}}@media(max-width: 1399px){.u-gc-3\\/6\\@to-big{--gc-start: 3;--gc-end: 6}}@media(min-width: 1400px){.u-gc-3\\/7\\@from-big{--gc-start: 3;--gc-end: 7}}@media(max-width: 1399px){.u-gc-3\\/7\\@to-big{--gc-start: 3;--gc-end: 7}}@media(min-width: 1400px){.u-gc-3\\/8\\@from-big{--gc-start: 3;--gc-end: 8}}@media(max-width: 1399px){.u-gc-3\\/8\\@to-big{--gc-start: 3;--gc-end: 8}}@media(min-width: 1400px){.u-gc-3\\/9\\@from-big{--gc-start: 3;--gc-end: 9}}@media(max-width: 1399px){.u-gc-3\\/9\\@to-big{--gc-start: 3;--gc-end: 9}}@media(min-width: 1400px){.u-gc-3\\/10\\@from-big{--gc-start: 3;--gc-end: 10}}@media(max-width: 1399px){.u-gc-3\\/10\\@to-big{--gc-start: 3;--gc-end: 10}}@media(min-width: 1400px){.u-gc-3\\/11\\@from-big{--gc-start: 3;--gc-end: 11}}@media(max-width: 1399px){.u-gc-3\\/11\\@to-big{--gc-start: 3;--gc-end: 11}}@media(min-width: 1400px){.u-gc-3\\/12\\@from-big{--gc-start: 3;--gc-end: 12}}@media(max-width: 1399px){.u-gc-3\\/12\\@to-big{--gc-start: 3;--gc-end: 12}}@media(min-width: 1400px){.u-gc-3\\/13\\@from-big{--gc-start: 3;--gc-end: 13}}@media(max-width: 1399px){.u-gc-3\\/13\\@to-big{--gc-start: 3;--gc-end: 13}}@media(min-width: 1400px){.u-gc-4\\/1\\@from-big{--gc-start: 4;--gc-end: 1}}@media(max-width: 1399px){.u-gc-4\\/1\\@to-big{--gc-start: 4;--gc-end: 1}}@media(min-width: 1400px){.u-gc-4\\/2\\@from-big{--gc-start: 4;--gc-end: 2}}@media(max-width: 1399px){.u-gc-4\\/2\\@to-big{--gc-start: 4;--gc-end: 2}}@media(min-width: 1400px){.u-gc-4\\/3\\@from-big{--gc-start: 4;--gc-end: 3}}@media(max-width: 1399px){.u-gc-4\\/3\\@to-big{--gc-start: 4;--gc-end: 3}}@media(min-width: 1400px){.u-gc-4\\/4\\@from-big{--gc-start: 4;--gc-end: 4}}@media(max-width: 1399px){.u-gc-4\\/4\\@to-big{--gc-start: 4;--gc-end: 4}}@media(min-width: 1400px){.u-gc-4\\/5\\@from-big{--gc-start: 4;--gc-end: 5}}@media(max-width: 1399px){.u-gc-4\\/5\\@to-big{--gc-start: 4;--gc-end: 5}}@media(min-width: 1400px){.u-gc-4\\/6\\@from-big{--gc-start: 4;--gc-end: 6}}@media(max-width: 1399px){.u-gc-4\\/6\\@to-big{--gc-start: 4;--gc-end: 6}}@media(min-width: 1400px){.u-gc-4\\/7\\@from-big{--gc-start: 4;--gc-end: 7}}@media(max-width: 1399px){.u-gc-4\\/7\\@to-big{--gc-start: 4;--gc-end: 7}}@media(min-width: 1400px){.u-gc-4\\/8\\@from-big{--gc-start: 4;--gc-end: 8}}@media(max-width: 1399px){.u-gc-4\\/8\\@to-big{--gc-start: 4;--gc-end: 8}}@media(min-width: 1400px){.u-gc-4\\/9\\@from-big{--gc-start: 4;--gc-end: 9}}@media(max-width: 1399px){.u-gc-4\\/9\\@to-big{--gc-start: 4;--gc-end: 9}}@media(min-width: 1400px){.u-gc-4\\/10\\@from-big{--gc-start: 4;--gc-end: 10}}@media(max-width: 1399px){.u-gc-4\\/10\\@to-big{--gc-start: 4;--gc-end: 10}}@media(min-width: 1400px){.u-gc-4\\/11\\@from-big{--gc-start: 4;--gc-end: 11}}@media(max-width: 1399px){.u-gc-4\\/11\\@to-big{--gc-start: 4;--gc-end: 11}}@media(min-width: 1400px){.u-gc-4\\/12\\@from-big{--gc-start: 4;--gc-end: 12}}@media(max-width: 1399px){.u-gc-4\\/12\\@to-big{--gc-start: 4;--gc-end: 12}}@media(min-width: 1400px){.u-gc-4\\/13\\@from-big{--gc-start: 4;--gc-end: 13}}@media(max-width: 1399px){.u-gc-4\\/13\\@to-big{--gc-start: 4;--gc-end: 13}}@media(min-width: 1400px){.u-gc-5\\/1\\@from-big{--gc-start: 5;--gc-end: 1}}@media(max-width: 1399px){.u-gc-5\\/1\\@to-big{--gc-start: 5;--gc-end: 1}}@media(min-width: 1400px){.u-gc-5\\/2\\@from-big{--gc-start: 5;--gc-end: 2}}@media(max-width: 1399px){.u-gc-5\\/2\\@to-big{--gc-start: 5;--gc-end: 2}}@media(min-width: 1400px){.u-gc-5\\/3\\@from-big{--gc-start: 5;--gc-end: 3}}@media(max-width: 1399px){.u-gc-5\\/3\\@to-big{--gc-start: 5;--gc-end: 3}}@media(min-width: 1400px){.u-gc-5\\/4\\@from-big{--gc-start: 5;--gc-end: 4}}@media(max-width: 1399px){.u-gc-5\\/4\\@to-big{--gc-start: 5;--gc-end: 4}}@media(min-width: 1400px){.u-gc-5\\/5\\@from-big{--gc-start: 5;--gc-end: 5}}@media(max-width: 1399px){.u-gc-5\\/5\\@to-big{--gc-start: 5;--gc-end: 5}}@media(min-width: 1400px){.u-gc-5\\/6\\@from-big{--gc-start: 5;--gc-end: 6}}@media(max-width: 1399px){.u-gc-5\\/6\\@to-big{--gc-start: 5;--gc-end: 6}}@media(min-width: 1400px){.u-gc-5\\/7\\@from-big{--gc-start: 5;--gc-end: 7}}@media(max-width: 1399px){.u-gc-5\\/7\\@to-big{--gc-start: 5;--gc-end: 7}}@media(min-width: 1400px){.u-gc-5\\/8\\@from-big{--gc-start: 5;--gc-end: 8}}@media(max-width: 1399px){.u-gc-5\\/8\\@to-big{--gc-start: 5;--gc-end: 8}}@media(min-width: 1400px){.u-gc-5\\/9\\@from-big{--gc-start: 5;--gc-end: 9}}@media(max-width: 1399px){.u-gc-5\\/9\\@to-big{--gc-start: 5;--gc-end: 9}}@media(min-width: 1400px){.u-gc-5\\/10\\@from-big{--gc-start: 5;--gc-end: 10}}@media(max-width: 1399px){.u-gc-5\\/10\\@to-big{--gc-start: 5;--gc-end: 10}}@media(min-width: 1400px){.u-gc-5\\/11\\@from-big{--gc-start: 5;--gc-end: 11}}@media(max-width: 1399px){.u-gc-5\\/11\\@to-big{--gc-start: 5;--gc-end: 11}}@media(min-width: 1400px){.u-gc-5\\/12\\@from-big{--gc-start: 5;--gc-end: 12}}@media(max-width: 1399px){.u-gc-5\\/12\\@to-big{--gc-start: 5;--gc-end: 12}}@media(min-width: 1400px){.u-gc-5\\/13\\@from-big{--gc-start: 5;--gc-end: 13}}@media(max-width: 1399px){.u-gc-5\\/13\\@to-big{--gc-start: 5;--gc-end: 13}}@media(min-width: 1400px){.u-gc-6\\/1\\@from-big{--gc-start: 6;--gc-end: 1}}@media(max-width: 1399px){.u-gc-6\\/1\\@to-big{--gc-start: 6;--gc-end: 1}}@media(min-width: 1400px){.u-gc-6\\/2\\@from-big{--gc-start: 6;--gc-end: 2}}@media(max-width: 1399px){.u-gc-6\\/2\\@to-big{--gc-start: 6;--gc-end: 2}}@media(min-width: 1400px){.u-gc-6\\/3\\@from-big{--gc-start: 6;--gc-end: 3}}@media(max-width: 1399px){.u-gc-6\\/3\\@to-big{--gc-start: 6;--gc-end: 3}}@media(min-width: 1400px){.u-gc-6\\/4\\@from-big{--gc-start: 6;--gc-end: 4}}@media(max-width: 1399px){.u-gc-6\\/4\\@to-big{--gc-start: 6;--gc-end: 4}}@media(min-width: 1400px){.u-gc-6\\/5\\@from-big{--gc-start: 6;--gc-end: 5}}@media(max-width: 1399px){.u-gc-6\\/5\\@to-big{--gc-start: 6;--gc-end: 5}}@media(min-width: 1400px){.u-gc-6\\/6\\@from-big{--gc-start: 6;--gc-end: 6}}@media(max-width: 1399px){.u-gc-6\\/6\\@to-big{--gc-start: 6;--gc-end: 6}}@media(min-width: 1400px){.u-gc-6\\/7\\@from-big{--gc-start: 6;--gc-end: 7}}@media(max-width: 1399px){.u-gc-6\\/7\\@to-big{--gc-start: 6;--gc-end: 7}}@media(min-width: 1400px){.u-gc-6\\/8\\@from-big{--gc-start: 6;--gc-end: 8}}@media(max-width: 1399px){.u-gc-6\\/8\\@to-big{--gc-start: 6;--gc-end: 8}}@media(min-width: 1400px){.u-gc-6\\/9\\@from-big{--gc-start: 6;--gc-end: 9}}@media(max-width: 1399px){.u-gc-6\\/9\\@to-big{--gc-start: 6;--gc-end: 9}}@media(min-width: 1400px){.u-gc-6\\/10\\@from-big{--gc-start: 6;--gc-end: 10}}@media(max-width: 1399px){.u-gc-6\\/10\\@to-big{--gc-start: 6;--gc-end: 10}}@media(min-width: 1400px){.u-gc-6\\/11\\@from-big{--gc-start: 6;--gc-end: 11}}@media(max-width: 1399px){.u-gc-6\\/11\\@to-big{--gc-start: 6;--gc-end: 11}}@media(min-width: 1400px){.u-gc-6\\/12\\@from-big{--gc-start: 6;--gc-end: 12}}@media(max-width: 1399px){.u-gc-6\\/12\\@to-big{--gc-start: 6;--gc-end: 12}}@media(min-width: 1400px){.u-gc-6\\/13\\@from-big{--gc-start: 6;--gc-end: 13}}@media(max-width: 1399px){.u-gc-6\\/13\\@to-big{--gc-start: 6;--gc-end: 13}}@media(min-width: 1400px){.u-gc-7\\/1\\@from-big{--gc-start: 7;--gc-end: 1}}@media(max-width: 1399px){.u-gc-7\\/1\\@to-big{--gc-start: 7;--gc-end: 1}}@media(min-width: 1400px){.u-gc-7\\/2\\@from-big{--gc-start: 7;--gc-end: 2}}@media(max-width: 1399px){.u-gc-7\\/2\\@to-big{--gc-start: 7;--gc-end: 2}}@media(min-width: 1400px){.u-gc-7\\/3\\@from-big{--gc-start: 7;--gc-end: 3}}@media(max-width: 1399px){.u-gc-7\\/3\\@to-big{--gc-start: 7;--gc-end: 3}}@media(min-width: 1400px){.u-gc-7\\/4\\@from-big{--gc-start: 7;--gc-end: 4}}@media(max-width: 1399px){.u-gc-7\\/4\\@to-big{--gc-start: 7;--gc-end: 4}}@media(min-width: 1400px){.u-gc-7\\/5\\@from-big{--gc-start: 7;--gc-end: 5}}@media(max-width: 1399px){.u-gc-7\\/5\\@to-big{--gc-start: 7;--gc-end: 5}}@media(min-width: 1400px){.u-gc-7\\/6\\@from-big{--gc-start: 7;--gc-end: 6}}@media(max-width: 1399px){.u-gc-7\\/6\\@to-big{--gc-start: 7;--gc-end: 6}}@media(min-width: 1400px){.u-gc-7\\/7\\@from-big{--gc-start: 7;--gc-end: 7}}@media(max-width: 1399px){.u-gc-7\\/7\\@to-big{--gc-start: 7;--gc-end: 7}}@media(min-width: 1400px){.u-gc-7\\/8\\@from-big{--gc-start: 7;--gc-end: 8}}@media(max-width: 1399px){.u-gc-7\\/8\\@to-big{--gc-start: 7;--gc-end: 8}}@media(min-width: 1400px){.u-gc-7\\/9\\@from-big{--gc-start: 7;--gc-end: 9}}@media(max-width: 1399px){.u-gc-7\\/9\\@to-big{--gc-start: 7;--gc-end: 9}}@media(min-width: 1400px){.u-gc-7\\/10\\@from-big{--gc-start: 7;--gc-end: 10}}@media(max-width: 1399px){.u-gc-7\\/10\\@to-big{--gc-start: 7;--gc-end: 10}}@media(min-width: 1400px){.u-gc-7\\/11\\@from-big{--gc-start: 7;--gc-end: 11}}@media(max-width: 1399px){.u-gc-7\\/11\\@to-big{--gc-start: 7;--gc-end: 11}}@media(min-width: 1400px){.u-gc-7\\/12\\@from-big{--gc-start: 7;--gc-end: 12}}@media(max-width: 1399px){.u-gc-7\\/12\\@to-big{--gc-start: 7;--gc-end: 12}}@media(min-width: 1400px){.u-gc-7\\/13\\@from-big{--gc-start: 7;--gc-end: 13}}@media(max-width: 1399px){.u-gc-7\\/13\\@to-big{--gc-start: 7;--gc-end: 13}}@media(min-width: 1400px){.u-gc-8\\/1\\@from-big{--gc-start: 8;--gc-end: 1}}@media(max-width: 1399px){.u-gc-8\\/1\\@to-big{--gc-start: 8;--gc-end: 1}}@media(min-width: 1400px){.u-gc-8\\/2\\@from-big{--gc-start: 8;--gc-end: 2}}@media(max-width: 1399px){.u-gc-8\\/2\\@to-big{--gc-start: 8;--gc-end: 2}}@media(min-width: 1400px){.u-gc-8\\/3\\@from-big{--gc-start: 8;--gc-end: 3}}@media(max-width: 1399px){.u-gc-8\\/3\\@to-big{--gc-start: 8;--gc-end: 3}}@media(min-width: 1400px){.u-gc-8\\/4\\@from-big{--gc-start: 8;--gc-end: 4}}@media(max-width: 1399px){.u-gc-8\\/4\\@to-big{--gc-start: 8;--gc-end: 4}}@media(min-width: 1400px){.u-gc-8\\/5\\@from-big{--gc-start: 8;--gc-end: 5}}@media(max-width: 1399px){.u-gc-8\\/5\\@to-big{--gc-start: 8;--gc-end: 5}}@media(min-width: 1400px){.u-gc-8\\/6\\@from-big{--gc-start: 8;--gc-end: 6}}@media(max-width: 1399px){.u-gc-8\\/6\\@to-big{--gc-start: 8;--gc-end: 6}}@media(min-width: 1400px){.u-gc-8\\/7\\@from-big{--gc-start: 8;--gc-end: 7}}@media(max-width: 1399px){.u-gc-8\\/7\\@to-big{--gc-start: 8;--gc-end: 7}}@media(min-width: 1400px){.u-gc-8\\/8\\@from-big{--gc-start: 8;--gc-end: 8}}@media(max-width: 1399px){.u-gc-8\\/8\\@to-big{--gc-start: 8;--gc-end: 8}}@media(min-width: 1400px){.u-gc-8\\/9\\@from-big{--gc-start: 8;--gc-end: 9}}@media(max-width: 1399px){.u-gc-8\\/9\\@to-big{--gc-start: 8;--gc-end: 9}}@media(min-width: 1400px){.u-gc-8\\/10\\@from-big{--gc-start: 8;--gc-end: 10}}@media(max-width: 1399px){.u-gc-8\\/10\\@to-big{--gc-start: 8;--gc-end: 10}}@media(min-width: 1400px){.u-gc-8\\/11\\@from-big{--gc-start: 8;--gc-end: 11}}@media(max-width: 1399px){.u-gc-8\\/11\\@to-big{--gc-start: 8;--gc-end: 11}}@media(min-width: 1400px){.u-gc-8\\/12\\@from-big{--gc-start: 8;--gc-end: 12}}@media(max-width: 1399px){.u-gc-8\\/12\\@to-big{--gc-start: 8;--gc-end: 12}}@media(min-width: 1400px){.u-gc-8\\/13\\@from-big{--gc-start: 8;--gc-end: 13}}@media(max-width: 1399px){.u-gc-8\\/13\\@to-big{--gc-start: 8;--gc-end: 13}}@media(min-width: 1400px){.u-gc-9\\/1\\@from-big{--gc-start: 9;--gc-end: 1}}@media(max-width: 1399px){.u-gc-9\\/1\\@to-big{--gc-start: 9;--gc-end: 1}}@media(min-width: 1400px){.u-gc-9\\/2\\@from-big{--gc-start: 9;--gc-end: 2}}@media(max-width: 1399px){.u-gc-9\\/2\\@to-big{--gc-start: 9;--gc-end: 2}}@media(min-width: 1400px){.u-gc-9\\/3\\@from-big{--gc-start: 9;--gc-end: 3}}@media(max-width: 1399px){.u-gc-9\\/3\\@to-big{--gc-start: 9;--gc-end: 3}}@media(min-width: 1400px){.u-gc-9\\/4\\@from-big{--gc-start: 9;--gc-end: 4}}@media(max-width: 1399px){.u-gc-9\\/4\\@to-big{--gc-start: 9;--gc-end: 4}}@media(min-width: 1400px){.u-gc-9\\/5\\@from-big{--gc-start: 9;--gc-end: 5}}@media(max-width: 1399px){.u-gc-9\\/5\\@to-big{--gc-start: 9;--gc-end: 5}}@media(min-width: 1400px){.u-gc-9\\/6\\@from-big{--gc-start: 9;--gc-end: 6}}@media(max-width: 1399px){.u-gc-9\\/6\\@to-big{--gc-start: 9;--gc-end: 6}}@media(min-width: 1400px){.u-gc-9\\/7\\@from-big{--gc-start: 9;--gc-end: 7}}@media(max-width: 1399px){.u-gc-9\\/7\\@to-big{--gc-start: 9;--gc-end: 7}}@media(min-width: 1400px){.u-gc-9\\/8\\@from-big{--gc-start: 9;--gc-end: 8}}@media(max-width: 1399px){.u-gc-9\\/8\\@to-big{--gc-start: 9;--gc-end: 8}}@media(min-width: 1400px){.u-gc-9\\/9\\@from-big{--gc-start: 9;--gc-end: 9}}@media(max-width: 1399px){.u-gc-9\\/9\\@to-big{--gc-start: 9;--gc-end: 9}}@media(min-width: 1400px){.u-gc-9\\/10\\@from-big{--gc-start: 9;--gc-end: 10}}@media(max-width: 1399px){.u-gc-9\\/10\\@to-big{--gc-start: 9;--gc-end: 10}}@media(min-width: 1400px){.u-gc-9\\/11\\@from-big{--gc-start: 9;--gc-end: 11}}@media(max-width: 1399px){.u-gc-9\\/11\\@to-big{--gc-start: 9;--gc-end: 11}}@media(min-width: 1400px){.u-gc-9\\/12\\@from-big{--gc-start: 9;--gc-end: 12}}@media(max-width: 1399px){.u-gc-9\\/12\\@to-big{--gc-start: 9;--gc-end: 12}}@media(min-width: 1400px){.u-gc-9\\/13\\@from-big{--gc-start: 9;--gc-end: 13}}@media(max-width: 1399px){.u-gc-9\\/13\\@to-big{--gc-start: 9;--gc-end: 13}}@media(min-width: 1400px){.u-gc-10\\/1\\@from-big{--gc-start: 10;--gc-end: 1}}@media(max-width: 1399px){.u-gc-10\\/1\\@to-big{--gc-start: 10;--gc-end: 1}}@media(min-width: 1400px){.u-gc-10\\/2\\@from-big{--gc-start: 10;--gc-end: 2}}@media(max-width: 1399px){.u-gc-10\\/2\\@to-big{--gc-start: 10;--gc-end: 2}}@media(min-width: 1400px){.u-gc-10\\/3\\@from-big{--gc-start: 10;--gc-end: 3}}@media(max-width: 1399px){.u-gc-10\\/3\\@to-big{--gc-start: 10;--gc-end: 3}}@media(min-width: 1400px){.u-gc-10\\/4\\@from-big{--gc-start: 10;--gc-end: 4}}@media(max-width: 1399px){.u-gc-10\\/4\\@to-big{--gc-start: 10;--gc-end: 4}}@media(min-width: 1400px){.u-gc-10\\/5\\@from-big{--gc-start: 10;--gc-end: 5}}@media(max-width: 1399px){.u-gc-10\\/5\\@to-big{--gc-start: 10;--gc-end: 5}}@media(min-width: 1400px){.u-gc-10\\/6\\@from-big{--gc-start: 10;--gc-end: 6}}@media(max-width: 1399px){.u-gc-10\\/6\\@to-big{--gc-start: 10;--gc-end: 6}}@media(min-width: 1400px){.u-gc-10\\/7\\@from-big{--gc-start: 10;--gc-end: 7}}@media(max-width: 1399px){.u-gc-10\\/7\\@to-big{--gc-start: 10;--gc-end: 7}}@media(min-width: 1400px){.u-gc-10\\/8\\@from-big{--gc-start: 10;--gc-end: 8}}@media(max-width: 1399px){.u-gc-10\\/8\\@to-big{--gc-start: 10;--gc-end: 8}}@media(min-width: 1400px){.u-gc-10\\/9\\@from-big{--gc-start: 10;--gc-end: 9}}@media(max-width: 1399px){.u-gc-10\\/9\\@to-big{--gc-start: 10;--gc-end: 9}}@media(min-width: 1400px){.u-gc-10\\/10\\@from-big{--gc-start: 10;--gc-end: 10}}@media(max-width: 1399px){.u-gc-10\\/10\\@to-big{--gc-start: 10;--gc-end: 10}}@media(min-width: 1400px){.u-gc-10\\/11\\@from-big{--gc-start: 10;--gc-end: 11}}@media(max-width: 1399px){.u-gc-10\\/11\\@to-big{--gc-start: 10;--gc-end: 11}}@media(min-width: 1400px){.u-gc-10\\/12\\@from-big{--gc-start: 10;--gc-end: 12}}@media(max-width: 1399px){.u-gc-10\\/12\\@to-big{--gc-start: 10;--gc-end: 12}}@media(min-width: 1400px){.u-gc-10\\/13\\@from-big{--gc-start: 10;--gc-end: 13}}@media(max-width: 1399px){.u-gc-10\\/13\\@to-big{--gc-start: 10;--gc-end: 13}}@media(min-width: 1400px){.u-gc-11\\/1\\@from-big{--gc-start: 11;--gc-end: 1}}@media(max-width: 1399px){.u-gc-11\\/1\\@to-big{--gc-start: 11;--gc-end: 1}}@media(min-width: 1400px){.u-gc-11\\/2\\@from-big{--gc-start: 11;--gc-end: 2}}@media(max-width: 1399px){.u-gc-11\\/2\\@to-big{--gc-start: 11;--gc-end: 2}}@media(min-width: 1400px){.u-gc-11\\/3\\@from-big{--gc-start: 11;--gc-end: 3}}@media(max-width: 1399px){.u-gc-11\\/3\\@to-big{--gc-start: 11;--gc-end: 3}}@media(min-width: 1400px){.u-gc-11\\/4\\@from-big{--gc-start: 11;--gc-end: 4}}@media(max-width: 1399px){.u-gc-11\\/4\\@to-big{--gc-start: 11;--gc-end: 4}}@media(min-width: 1400px){.u-gc-11\\/5\\@from-big{--gc-start: 11;--gc-end: 5}}@media(max-width: 1399px){.u-gc-11\\/5\\@to-big{--gc-start: 11;--gc-end: 5}}@media(min-width: 1400px){.u-gc-11\\/6\\@from-big{--gc-start: 11;--gc-end: 6}}@media(max-width: 1399px){.u-gc-11\\/6\\@to-big{--gc-start: 11;--gc-end: 6}}@media(min-width: 1400px){.u-gc-11\\/7\\@from-big{--gc-start: 11;--gc-end: 7}}@media(max-width: 1399px){.u-gc-11\\/7\\@to-big{--gc-start: 11;--gc-end: 7}}@media(min-width: 1400px){.u-gc-11\\/8\\@from-big{--gc-start: 11;--gc-end: 8}}@media(max-width: 1399px){.u-gc-11\\/8\\@to-big{--gc-start: 11;--gc-end: 8}}@media(min-width: 1400px){.u-gc-11\\/9\\@from-big{--gc-start: 11;--gc-end: 9}}@media(max-width: 1399px){.u-gc-11\\/9\\@to-big{--gc-start: 11;--gc-end: 9}}@media(min-width: 1400px){.u-gc-11\\/10\\@from-big{--gc-start: 11;--gc-end: 10}}@media(max-width: 1399px){.u-gc-11\\/10\\@to-big{--gc-start: 11;--gc-end: 10}}@media(min-width: 1400px){.u-gc-11\\/11\\@from-big{--gc-start: 11;--gc-end: 11}}@media(max-width: 1399px){.u-gc-11\\/11\\@to-big{--gc-start: 11;--gc-end: 11}}@media(min-width: 1400px){.u-gc-11\\/12\\@from-big{--gc-start: 11;--gc-end: 12}}@media(max-width: 1399px){.u-gc-11\\/12\\@to-big{--gc-start: 11;--gc-end: 12}}@media(min-width: 1400px){.u-gc-11\\/13\\@from-big{--gc-start: 11;--gc-end: 13}}@media(max-width: 1399px){.u-gc-11\\/13\\@to-big{--gc-start: 11;--gc-end: 13}}@media(min-width: 1400px){.u-gc-12\\/1\\@from-big{--gc-start: 12;--gc-end: 1}}@media(max-width: 1399px){.u-gc-12\\/1\\@to-big{--gc-start: 12;--gc-end: 1}}@media(min-width: 1400px){.u-gc-12\\/2\\@from-big{--gc-start: 12;--gc-end: 2}}@media(max-width: 1399px){.u-gc-12\\/2\\@to-big{--gc-start: 12;--gc-end: 2}}@media(min-width: 1400px){.u-gc-12\\/3\\@from-big{--gc-start: 12;--gc-end: 3}}@media(max-width: 1399px){.u-gc-12\\/3\\@to-big{--gc-start: 12;--gc-end: 3}}@media(min-width: 1400px){.u-gc-12\\/4\\@from-big{--gc-start: 12;--gc-end: 4}}@media(max-width: 1399px){.u-gc-12\\/4\\@to-big{--gc-start: 12;--gc-end: 4}}@media(min-width: 1400px){.u-gc-12\\/5\\@from-big{--gc-start: 12;--gc-end: 5}}@media(max-width: 1399px){.u-gc-12\\/5\\@to-big{--gc-start: 12;--gc-end: 5}}@media(min-width: 1400px){.u-gc-12\\/6\\@from-big{--gc-start: 12;--gc-end: 6}}@media(max-width: 1399px){.u-gc-12\\/6\\@to-big{--gc-start: 12;--gc-end: 6}}@media(min-width: 1400px){.u-gc-12\\/7\\@from-big{--gc-start: 12;--gc-end: 7}}@media(max-width: 1399px){.u-gc-12\\/7\\@to-big{--gc-start: 12;--gc-end: 7}}@media(min-width: 1400px){.u-gc-12\\/8\\@from-big{--gc-start: 12;--gc-end: 8}}@media(max-width: 1399px){.u-gc-12\\/8\\@to-big{--gc-start: 12;--gc-end: 8}}@media(min-width: 1400px){.u-gc-12\\/9\\@from-big{--gc-start: 12;--gc-end: 9}}@media(max-width: 1399px){.u-gc-12\\/9\\@to-big{--gc-start: 12;--gc-end: 9}}@media(min-width: 1400px){.u-gc-12\\/10\\@from-big{--gc-start: 12;--gc-end: 10}}@media(max-width: 1399px){.u-gc-12\\/10\\@to-big{--gc-start: 12;--gc-end: 10}}@media(min-width: 1400px){.u-gc-12\\/11\\@from-big{--gc-start: 12;--gc-end: 11}}@media(max-width: 1399px){.u-gc-12\\/11\\@to-big{--gc-start: 12;--gc-end: 11}}@media(min-width: 1400px){.u-gc-12\\/12\\@from-big{--gc-start: 12;--gc-end: 12}}@media(max-width: 1399px){.u-gc-12\\/12\\@to-big{--gc-start: 12;--gc-end: 12}}@media(min-width: 1400px){.u-gc-12\\/13\\@from-big{--gc-start: 12;--gc-end: 13}}@media(max-width: 1399px){.u-gc-12\\/13\\@to-big{--gc-start: 12;--gc-end: 13}}@media(min-width: 1400px){.u-gc-13\\/1\\@from-big{--gc-start: 13;--gc-end: 1}}@media(max-width: 1399px){.u-gc-13\\/1\\@to-big{--gc-start: 13;--gc-end: 1}}@media(min-width: 1400px){.u-gc-13\\/2\\@from-big{--gc-start: 13;--gc-end: 2}}@media(max-width: 1399px){.u-gc-13\\/2\\@to-big{--gc-start: 13;--gc-end: 2}}@media(min-width: 1400px){.u-gc-13\\/3\\@from-big{--gc-start: 13;--gc-end: 3}}@media(max-width: 1399px){.u-gc-13\\/3\\@to-big{--gc-start: 13;--gc-end: 3}}@media(min-width: 1400px){.u-gc-13\\/4\\@from-big{--gc-start: 13;--gc-end: 4}}@media(max-width: 1399px){.u-gc-13\\/4\\@to-big{--gc-start: 13;--gc-end: 4}}@media(min-width: 1400px){.u-gc-13\\/5\\@from-big{--gc-start: 13;--gc-end: 5}}@media(max-width: 1399px){.u-gc-13\\/5\\@to-big{--gc-start: 13;--gc-end: 5}}@media(min-width: 1400px){.u-gc-13\\/6\\@from-big{--gc-start: 13;--gc-end: 6}}@media(max-width: 1399px){.u-gc-13\\/6\\@to-big{--gc-start: 13;--gc-end: 6}}@media(min-width: 1400px){.u-gc-13\\/7\\@from-big{--gc-start: 13;--gc-end: 7}}@media(max-width: 1399px){.u-gc-13\\/7\\@to-big{--gc-start: 13;--gc-end: 7}}@media(min-width: 1400px){.u-gc-13\\/8\\@from-big{--gc-start: 13;--gc-end: 8}}@media(max-width: 1399px){.u-gc-13\\/8\\@to-big{--gc-start: 13;--gc-end: 8}}@media(min-width: 1400px){.u-gc-13\\/9\\@from-big{--gc-start: 13;--gc-end: 9}}@media(max-width: 1399px){.u-gc-13\\/9\\@to-big{--gc-start: 13;--gc-end: 9}}@media(min-width: 1400px){.u-gc-13\\/10\\@from-big{--gc-start: 13;--gc-end: 10}}@media(max-width: 1399px){.u-gc-13\\/10\\@to-big{--gc-start: 13;--gc-end: 10}}@media(min-width: 1400px){.u-gc-13\\/11\\@from-big{--gc-start: 13;--gc-end: 11}}@media(max-width: 1399px){.u-gc-13\\/11\\@to-big{--gc-start: 13;--gc-end: 11}}@media(min-width: 1400px){.u-gc-13\\/12\\@from-big{--gc-start: 13;--gc-end: 12}}@media(max-width: 1399px){.u-gc-13\\/12\\@to-big{--gc-start: 13;--gc-end: 12}}@media(min-width: 1400px){.u-gc-13\\/13\\@from-big{--gc-start: 13;--gc-end: 13}}@media(max-width: 1399px){.u-gc-13\\/13\\@to-big{--gc-start: 13;--gc-end: 13}}@media(min-width: 1600px){.u-gc-1\\/1\\@from-huge{--gc-start: 1;--gc-end: 1}}@media(max-width: 1599px){.u-gc-1\\/1\\@to-huge{--gc-start: 1;--gc-end: 1}}@media(min-width: 1600px){.u-gc-1\\/2\\@from-huge{--gc-start: 1;--gc-end: 2}}@media(max-width: 1599px){.u-gc-1\\/2\\@to-huge{--gc-start: 1;--gc-end: 2}}@media(min-width: 1600px){.u-gc-1\\/3\\@from-huge{--gc-start: 1;--gc-end: 3}}@media(max-width: 1599px){.u-gc-1\\/3\\@to-huge{--gc-start: 1;--gc-end: 3}}@media(min-width: 1600px){.u-gc-1\\/4\\@from-huge{--gc-start: 1;--gc-end: 4}}@media(max-width: 1599px){.u-gc-1\\/4\\@to-huge{--gc-start: 1;--gc-end: 4}}@media(min-width: 1600px){.u-gc-1\\/5\\@from-huge{--gc-start: 1;--gc-end: 5}}@media(max-width: 1599px){.u-gc-1\\/5\\@to-huge{--gc-start: 1;--gc-end: 5}}@media(min-width: 1600px){.u-gc-1\\/6\\@from-huge{--gc-start: 1;--gc-end: 6}}@media(max-width: 1599px){.u-gc-1\\/6\\@to-huge{--gc-start: 1;--gc-end: 6}}@media(min-width: 1600px){.u-gc-1\\/7\\@from-huge{--gc-start: 1;--gc-end: 7}}@media(max-width: 1599px){.u-gc-1\\/7\\@to-huge{--gc-start: 1;--gc-end: 7}}@media(min-width: 1600px){.u-gc-1\\/8\\@from-huge{--gc-start: 1;--gc-end: 8}}@media(max-width: 1599px){.u-gc-1\\/8\\@to-huge{--gc-start: 1;--gc-end: 8}}@media(min-width: 1600px){.u-gc-1\\/9\\@from-huge{--gc-start: 1;--gc-end: 9}}@media(max-width: 1599px){.u-gc-1\\/9\\@to-huge{--gc-start: 1;--gc-end: 9}}@media(min-width: 1600px){.u-gc-1\\/10\\@from-huge{--gc-start: 1;--gc-end: 10}}@media(max-width: 1599px){.u-gc-1\\/10\\@to-huge{--gc-start: 1;--gc-end: 10}}@media(min-width: 1600px){.u-gc-1\\/11\\@from-huge{--gc-start: 1;--gc-end: 11}}@media(max-width: 1599px){.u-gc-1\\/11\\@to-huge{--gc-start: 1;--gc-end: 11}}@media(min-width: 1600px){.u-gc-1\\/12\\@from-huge{--gc-start: 1;--gc-end: 12}}@media(max-width: 1599px){.u-gc-1\\/12\\@to-huge{--gc-start: 1;--gc-end: 12}}@media(min-width: 1600px){.u-gc-1\\/13\\@from-huge{--gc-start: 1;--gc-end: 13}}@media(max-width: 1599px){.u-gc-1\\/13\\@to-huge{--gc-start: 1;--gc-end: 13}}@media(min-width: 1600px){.u-gc-2\\/1\\@from-huge{--gc-start: 2;--gc-end: 1}}@media(max-width: 1599px){.u-gc-2\\/1\\@to-huge{--gc-start: 2;--gc-end: 1}}@media(min-width: 1600px){.u-gc-2\\/2\\@from-huge{--gc-start: 2;--gc-end: 2}}@media(max-width: 1599px){.u-gc-2\\/2\\@to-huge{--gc-start: 2;--gc-end: 2}}@media(min-width: 1600px){.u-gc-2\\/3\\@from-huge{--gc-start: 2;--gc-end: 3}}@media(max-width: 1599px){.u-gc-2\\/3\\@to-huge{--gc-start: 2;--gc-end: 3}}@media(min-width: 1600px){.u-gc-2\\/4\\@from-huge{--gc-start: 2;--gc-end: 4}}@media(max-width: 1599px){.u-gc-2\\/4\\@to-huge{--gc-start: 2;--gc-end: 4}}@media(min-width: 1600px){.u-gc-2\\/5\\@from-huge{--gc-start: 2;--gc-end: 5}}@media(max-width: 1599px){.u-gc-2\\/5\\@to-huge{--gc-start: 2;--gc-end: 5}}@media(min-width: 1600px){.u-gc-2\\/6\\@from-huge{--gc-start: 2;--gc-end: 6}}@media(max-width: 1599px){.u-gc-2\\/6\\@to-huge{--gc-start: 2;--gc-end: 6}}@media(min-width: 1600px){.u-gc-2\\/7\\@from-huge{--gc-start: 2;--gc-end: 7}}@media(max-width: 1599px){.u-gc-2\\/7\\@to-huge{--gc-start: 2;--gc-end: 7}}@media(min-width: 1600px){.u-gc-2\\/8\\@from-huge{--gc-start: 2;--gc-end: 8}}@media(max-width: 1599px){.u-gc-2\\/8\\@to-huge{--gc-start: 2;--gc-end: 8}}@media(min-width: 1600px){.u-gc-2\\/9\\@from-huge{--gc-start: 2;--gc-end: 9}}@media(max-width: 1599px){.u-gc-2\\/9\\@to-huge{--gc-start: 2;--gc-end: 9}}@media(min-width: 1600px){.u-gc-2\\/10\\@from-huge{--gc-start: 2;--gc-end: 10}}@media(max-width: 1599px){.u-gc-2\\/10\\@to-huge{--gc-start: 2;--gc-end: 10}}@media(min-width: 1600px){.u-gc-2\\/11\\@from-huge{--gc-start: 2;--gc-end: 11}}@media(max-width: 1599px){.u-gc-2\\/11\\@to-huge{--gc-start: 2;--gc-end: 11}}@media(min-width: 1600px){.u-gc-2\\/12\\@from-huge{--gc-start: 2;--gc-end: 12}}@media(max-width: 1599px){.u-gc-2\\/12\\@to-huge{--gc-start: 2;--gc-end: 12}}@media(min-width: 1600px){.u-gc-2\\/13\\@from-huge{--gc-start: 2;--gc-end: 13}}@media(max-width: 1599px){.u-gc-2\\/13\\@to-huge{--gc-start: 2;--gc-end: 13}}@media(min-width: 1600px){.u-gc-3\\/1\\@from-huge{--gc-start: 3;--gc-end: 1}}@media(max-width: 1599px){.u-gc-3\\/1\\@to-huge{--gc-start: 3;--gc-end: 1}}@media(min-width: 1600px){.u-gc-3\\/2\\@from-huge{--gc-start: 3;--gc-end: 2}}@media(max-width: 1599px){.u-gc-3\\/2\\@to-huge{--gc-start: 3;--gc-end: 2}}@media(min-width: 1600px){.u-gc-3\\/3\\@from-huge{--gc-start: 3;--gc-end: 3}}@media(max-width: 1599px){.u-gc-3\\/3\\@to-huge{--gc-start: 3;--gc-end: 3}}@media(min-width: 1600px){.u-gc-3\\/4\\@from-huge{--gc-start: 3;--gc-end: 4}}@media(max-width: 1599px){.u-gc-3\\/4\\@to-huge{--gc-start: 3;--gc-end: 4}}@media(min-width: 1600px){.u-gc-3\\/5\\@from-huge{--gc-start: 3;--gc-end: 5}}@media(max-width: 1599px){.u-gc-3\\/5\\@to-huge{--gc-start: 3;--gc-end: 5}}@media(min-width: 1600px){.u-gc-3\\/6\\@from-huge{--gc-start: 3;--gc-end: 6}}@media(max-width: 1599px){.u-gc-3\\/6\\@to-huge{--gc-start: 3;--gc-end: 6}}@media(min-width: 1600px){.u-gc-3\\/7\\@from-huge{--gc-start: 3;--gc-end: 7}}@media(max-width: 1599px){.u-gc-3\\/7\\@to-huge{--gc-start: 3;--gc-end: 7}}@media(min-width: 1600px){.u-gc-3\\/8\\@from-huge{--gc-start: 3;--gc-end: 8}}@media(max-width: 1599px){.u-gc-3\\/8\\@to-huge{--gc-start: 3;--gc-end: 8}}@media(min-width: 1600px){.u-gc-3\\/9\\@from-huge{--gc-start: 3;--gc-end: 9}}@media(max-width: 1599px){.u-gc-3\\/9\\@to-huge{--gc-start: 3;--gc-end: 9}}@media(min-width: 1600px){.u-gc-3\\/10\\@from-huge{--gc-start: 3;--gc-end: 10}}@media(max-width: 1599px){.u-gc-3\\/10\\@to-huge{--gc-start: 3;--gc-end: 10}}@media(min-width: 1600px){.u-gc-3\\/11\\@from-huge{--gc-start: 3;--gc-end: 11}}@media(max-width: 1599px){.u-gc-3\\/11\\@to-huge{--gc-start: 3;--gc-end: 11}}@media(min-width: 1600px){.u-gc-3\\/12\\@from-huge{--gc-start: 3;--gc-end: 12}}@media(max-width: 1599px){.u-gc-3\\/12\\@to-huge{--gc-start: 3;--gc-end: 12}}@media(min-width: 1600px){.u-gc-3\\/13\\@from-huge{--gc-start: 3;--gc-end: 13}}@media(max-width: 1599px){.u-gc-3\\/13\\@to-huge{--gc-start: 3;--gc-end: 13}}@media(min-width: 1600px){.u-gc-4\\/1\\@from-huge{--gc-start: 4;--gc-end: 1}}@media(max-width: 1599px){.u-gc-4\\/1\\@to-huge{--gc-start: 4;--gc-end: 1}}@media(min-width: 1600px){.u-gc-4\\/2\\@from-huge{--gc-start: 4;--gc-end: 2}}@media(max-width: 1599px){.u-gc-4\\/2\\@to-huge{--gc-start: 4;--gc-end: 2}}@media(min-width: 1600px){.u-gc-4\\/3\\@from-huge{--gc-start: 4;--gc-end: 3}}@media(max-width: 1599px){.u-gc-4\\/3\\@to-huge{--gc-start: 4;--gc-end: 3}}@media(min-width: 1600px){.u-gc-4\\/4\\@from-huge{--gc-start: 4;--gc-end: 4}}@media(max-width: 1599px){.u-gc-4\\/4\\@to-huge{--gc-start: 4;--gc-end: 4}}@media(min-width: 1600px){.u-gc-4\\/5\\@from-huge{--gc-start: 4;--gc-end: 5}}@media(max-width: 1599px){.u-gc-4\\/5\\@to-huge{--gc-start: 4;--gc-end: 5}}@media(min-width: 1600px){.u-gc-4\\/6\\@from-huge{--gc-start: 4;--gc-end: 6}}@media(max-width: 1599px){.u-gc-4\\/6\\@to-huge{--gc-start: 4;--gc-end: 6}}@media(min-width: 1600px){.u-gc-4\\/7\\@from-huge{--gc-start: 4;--gc-end: 7}}@media(max-width: 1599px){.u-gc-4\\/7\\@to-huge{--gc-start: 4;--gc-end: 7}}@media(min-width: 1600px){.u-gc-4\\/8\\@from-huge{--gc-start: 4;--gc-end: 8}}@media(max-width: 1599px){.u-gc-4\\/8\\@to-huge{--gc-start: 4;--gc-end: 8}}@media(min-width: 1600px){.u-gc-4\\/9\\@from-huge{--gc-start: 4;--gc-end: 9}}@media(max-width: 1599px){.u-gc-4\\/9\\@to-huge{--gc-start: 4;--gc-end: 9}}@media(min-width: 1600px){.u-gc-4\\/10\\@from-huge{--gc-start: 4;--gc-end: 10}}@media(max-width: 1599px){.u-gc-4\\/10\\@to-huge{--gc-start: 4;--gc-end: 10}}@media(min-width: 1600px){.u-gc-4\\/11\\@from-huge{--gc-start: 4;--gc-end: 11}}@media(max-width: 1599px){.u-gc-4\\/11\\@to-huge{--gc-start: 4;--gc-end: 11}}@media(min-width: 1600px){.u-gc-4\\/12\\@from-huge{--gc-start: 4;--gc-end: 12}}@media(max-width: 1599px){.u-gc-4\\/12\\@to-huge{--gc-start: 4;--gc-end: 12}}@media(min-width: 1600px){.u-gc-4\\/13\\@from-huge{--gc-start: 4;--gc-end: 13}}@media(max-width: 1599px){.u-gc-4\\/13\\@to-huge{--gc-start: 4;--gc-end: 13}}@media(min-width: 1600px){.u-gc-5\\/1\\@from-huge{--gc-start: 5;--gc-end: 1}}@media(max-width: 1599px){.u-gc-5\\/1\\@to-huge{--gc-start: 5;--gc-end: 1}}@media(min-width: 1600px){.u-gc-5\\/2\\@from-huge{--gc-start: 5;--gc-end: 2}}@media(max-width: 1599px){.u-gc-5\\/2\\@to-huge{--gc-start: 5;--gc-end: 2}}@media(min-width: 1600px){.u-gc-5\\/3\\@from-huge{--gc-start: 5;--gc-end: 3}}@media(max-width: 1599px){.u-gc-5\\/3\\@to-huge{--gc-start: 5;--gc-end: 3}}@media(min-width: 1600px){.u-gc-5\\/4\\@from-huge{--gc-start: 5;--gc-end: 4}}@media(max-width: 1599px){.u-gc-5\\/4\\@to-huge{--gc-start: 5;--gc-end: 4}}@media(min-width: 1600px){.u-gc-5\\/5\\@from-huge{--gc-start: 5;--gc-end: 5}}@media(max-width: 1599px){.u-gc-5\\/5\\@to-huge{--gc-start: 5;--gc-end: 5}}@media(min-width: 1600px){.u-gc-5\\/6\\@from-huge{--gc-start: 5;--gc-end: 6}}@media(max-width: 1599px){.u-gc-5\\/6\\@to-huge{--gc-start: 5;--gc-end: 6}}@media(min-width: 1600px){.u-gc-5\\/7\\@from-huge{--gc-start: 5;--gc-end: 7}}@media(max-width: 1599px){.u-gc-5\\/7\\@to-huge{--gc-start: 5;--gc-end: 7}}@media(min-width: 1600px){.u-gc-5\\/8\\@from-huge{--gc-start: 5;--gc-end: 8}}@media(max-width: 1599px){.u-gc-5\\/8\\@to-huge{--gc-start: 5;--gc-end: 8}}@media(min-width: 1600px){.u-gc-5\\/9\\@from-huge{--gc-start: 5;--gc-end: 9}}@media(max-width: 1599px){.u-gc-5\\/9\\@to-huge{--gc-start: 5;--gc-end: 9}}@media(min-width: 1600px){.u-gc-5\\/10\\@from-huge{--gc-start: 5;--gc-end: 10}}@media(max-width: 1599px){.u-gc-5\\/10\\@to-huge{--gc-start: 5;--gc-end: 10}}@media(min-width: 1600px){.u-gc-5\\/11\\@from-huge{--gc-start: 5;--gc-end: 11}}@media(max-width: 1599px){.u-gc-5\\/11\\@to-huge{--gc-start: 5;--gc-end: 11}}@media(min-width: 1600px){.u-gc-5\\/12\\@from-huge{--gc-start: 5;--gc-end: 12}}@media(max-width: 1599px){.u-gc-5\\/12\\@to-huge{--gc-start: 5;--gc-end: 12}}@media(min-width: 1600px){.u-gc-5\\/13\\@from-huge{--gc-start: 5;--gc-end: 13}}@media(max-width: 1599px){.u-gc-5\\/13\\@to-huge{--gc-start: 5;--gc-end: 13}}@media(min-width: 1600px){.u-gc-6\\/1\\@from-huge{--gc-start: 6;--gc-end: 1}}@media(max-width: 1599px){.u-gc-6\\/1\\@to-huge{--gc-start: 6;--gc-end: 1}}@media(min-width: 1600px){.u-gc-6\\/2\\@from-huge{--gc-start: 6;--gc-end: 2}}@media(max-width: 1599px){.u-gc-6\\/2\\@to-huge{--gc-start: 6;--gc-end: 2}}@media(min-width: 1600px){.u-gc-6\\/3\\@from-huge{--gc-start: 6;--gc-end: 3}}@media(max-width: 1599px){.u-gc-6\\/3\\@to-huge{--gc-start: 6;--gc-end: 3}}@media(min-width: 1600px){.u-gc-6\\/4\\@from-huge{--gc-start: 6;--gc-end: 4}}@media(max-width: 1599px){.u-gc-6\\/4\\@to-huge{--gc-start: 6;--gc-end: 4}}@media(min-width: 1600px){.u-gc-6\\/5\\@from-huge{--gc-start: 6;--gc-end: 5}}@media(max-width: 1599px){.u-gc-6\\/5\\@to-huge{--gc-start: 6;--gc-end: 5}}@media(min-width: 1600px){.u-gc-6\\/6\\@from-huge{--gc-start: 6;--gc-end: 6}}@media(max-width: 1599px){.u-gc-6\\/6\\@to-huge{--gc-start: 6;--gc-end: 6}}@media(min-width: 1600px){.u-gc-6\\/7\\@from-huge{--gc-start: 6;--gc-end: 7}}@media(max-width: 1599px){.u-gc-6\\/7\\@to-huge{--gc-start: 6;--gc-end: 7}}@media(min-width: 1600px){.u-gc-6\\/8\\@from-huge{--gc-start: 6;--gc-end: 8}}@media(max-width: 1599px){.u-gc-6\\/8\\@to-huge{--gc-start: 6;--gc-end: 8}}@media(min-width: 1600px){.u-gc-6\\/9\\@from-huge{--gc-start: 6;--gc-end: 9}}@media(max-width: 1599px){.u-gc-6\\/9\\@to-huge{--gc-start: 6;--gc-end: 9}}@media(min-width: 1600px){.u-gc-6\\/10\\@from-huge{--gc-start: 6;--gc-end: 10}}@media(max-width: 1599px){.u-gc-6\\/10\\@to-huge{--gc-start: 6;--gc-end: 10}}@media(min-width: 1600px){.u-gc-6\\/11\\@from-huge{--gc-start: 6;--gc-end: 11}}@media(max-width: 1599px){.u-gc-6\\/11\\@to-huge{--gc-start: 6;--gc-end: 11}}@media(min-width: 1600px){.u-gc-6\\/12\\@from-huge{--gc-start: 6;--gc-end: 12}}@media(max-width: 1599px){.u-gc-6\\/12\\@to-huge{--gc-start: 6;--gc-end: 12}}@media(min-width: 1600px){.u-gc-6\\/13\\@from-huge{--gc-start: 6;--gc-end: 13}}@media(max-width: 1599px){.u-gc-6\\/13\\@to-huge{--gc-start: 6;--gc-end: 13}}@media(min-width: 1600px){.u-gc-7\\/1\\@from-huge{--gc-start: 7;--gc-end: 1}}@media(max-width: 1599px){.u-gc-7\\/1\\@to-huge{--gc-start: 7;--gc-end: 1}}@media(min-width: 1600px){.u-gc-7\\/2\\@from-huge{--gc-start: 7;--gc-end: 2}}@media(max-width: 1599px){.u-gc-7\\/2\\@to-huge{--gc-start: 7;--gc-end: 2}}@media(min-width: 1600px){.u-gc-7\\/3\\@from-huge{--gc-start: 7;--gc-end: 3}}@media(max-width: 1599px){.u-gc-7\\/3\\@to-huge{--gc-start: 7;--gc-end: 3}}@media(min-width: 1600px){.u-gc-7\\/4\\@from-huge{--gc-start: 7;--gc-end: 4}}@media(max-width: 1599px){.u-gc-7\\/4\\@to-huge{--gc-start: 7;--gc-end: 4}}@media(min-width: 1600px){.u-gc-7\\/5\\@from-huge{--gc-start: 7;--gc-end: 5}}@media(max-width: 1599px){.u-gc-7\\/5\\@to-huge{--gc-start: 7;--gc-end: 5}}@media(min-width: 1600px){.u-gc-7\\/6\\@from-huge{--gc-start: 7;--gc-end: 6}}@media(max-width: 1599px){.u-gc-7\\/6\\@to-huge{--gc-start: 7;--gc-end: 6}}@media(min-width: 1600px){.u-gc-7\\/7\\@from-huge{--gc-start: 7;--gc-end: 7}}@media(max-width: 1599px){.u-gc-7\\/7\\@to-huge{--gc-start: 7;--gc-end: 7}}@media(min-width: 1600px){.u-gc-7\\/8\\@from-huge{--gc-start: 7;--gc-end: 8}}@media(max-width: 1599px){.u-gc-7\\/8\\@to-huge{--gc-start: 7;--gc-end: 8}}@media(min-width: 1600px){.u-gc-7\\/9\\@from-huge{--gc-start: 7;--gc-end: 9}}@media(max-width: 1599px){.u-gc-7\\/9\\@to-huge{--gc-start: 7;--gc-end: 9}}@media(min-width: 1600px){.u-gc-7\\/10\\@from-huge{--gc-start: 7;--gc-end: 10}}@media(max-width: 1599px){.u-gc-7\\/10\\@to-huge{--gc-start: 7;--gc-end: 10}}@media(min-width: 1600px){.u-gc-7\\/11\\@from-huge{--gc-start: 7;--gc-end: 11}}@media(max-width: 1599px){.u-gc-7\\/11\\@to-huge{--gc-start: 7;--gc-end: 11}}@media(min-width: 1600px){.u-gc-7\\/12\\@from-huge{--gc-start: 7;--gc-end: 12}}@media(max-width: 1599px){.u-gc-7\\/12\\@to-huge{--gc-start: 7;--gc-end: 12}}@media(min-width: 1600px){.u-gc-7\\/13\\@from-huge{--gc-start: 7;--gc-end: 13}}@media(max-width: 1599px){.u-gc-7\\/13\\@to-huge{--gc-start: 7;--gc-end: 13}}@media(min-width: 1600px){.u-gc-8\\/1\\@from-huge{--gc-start: 8;--gc-end: 1}}@media(max-width: 1599px){.u-gc-8\\/1\\@to-huge{--gc-start: 8;--gc-end: 1}}@media(min-width: 1600px){.u-gc-8\\/2\\@from-huge{--gc-start: 8;--gc-end: 2}}@media(max-width: 1599px){.u-gc-8\\/2\\@to-huge{--gc-start: 8;--gc-end: 2}}@media(min-width: 1600px){.u-gc-8\\/3\\@from-huge{--gc-start: 8;--gc-end: 3}}@media(max-width: 1599px){.u-gc-8\\/3\\@to-huge{--gc-start: 8;--gc-end: 3}}@media(min-width: 1600px){.u-gc-8\\/4\\@from-huge{--gc-start: 8;--gc-end: 4}}@media(max-width: 1599px){.u-gc-8\\/4\\@to-huge{--gc-start: 8;--gc-end: 4}}@media(min-width: 1600px){.u-gc-8\\/5\\@from-huge{--gc-start: 8;--gc-end: 5}}@media(max-width: 1599px){.u-gc-8\\/5\\@to-huge{--gc-start: 8;--gc-end: 5}}@media(min-width: 1600px){.u-gc-8\\/6\\@from-huge{--gc-start: 8;--gc-end: 6}}@media(max-width: 1599px){.u-gc-8\\/6\\@to-huge{--gc-start: 8;--gc-end: 6}}@media(min-width: 1600px){.u-gc-8\\/7\\@from-huge{--gc-start: 8;--gc-end: 7}}@media(max-width: 1599px){.u-gc-8\\/7\\@to-huge{--gc-start: 8;--gc-end: 7}}@media(min-width: 1600px){.u-gc-8\\/8\\@from-huge{--gc-start: 8;--gc-end: 8}}@media(max-width: 1599px){.u-gc-8\\/8\\@to-huge{--gc-start: 8;--gc-end: 8}}@media(min-width: 1600px){.u-gc-8\\/9\\@from-huge{--gc-start: 8;--gc-end: 9}}@media(max-width: 1599px){.u-gc-8\\/9\\@to-huge{--gc-start: 8;--gc-end: 9}}@media(min-width: 1600px){.u-gc-8\\/10\\@from-huge{--gc-start: 8;--gc-end: 10}}@media(max-width: 1599px){.u-gc-8\\/10\\@to-huge{--gc-start: 8;--gc-end: 10}}@media(min-width: 1600px){.u-gc-8\\/11\\@from-huge{--gc-start: 8;--gc-end: 11}}@media(max-width: 1599px){.u-gc-8\\/11\\@to-huge{--gc-start: 8;--gc-end: 11}}@media(min-width: 1600px){.u-gc-8\\/12\\@from-huge{--gc-start: 8;--gc-end: 12}}@media(max-width: 1599px){.u-gc-8\\/12\\@to-huge{--gc-start: 8;--gc-end: 12}}@media(min-width: 1600px){.u-gc-8\\/13\\@from-huge{--gc-start: 8;--gc-end: 13}}@media(max-width: 1599px){.u-gc-8\\/13\\@to-huge{--gc-start: 8;--gc-end: 13}}@media(min-width: 1600px){.u-gc-9\\/1\\@from-huge{--gc-start: 9;--gc-end: 1}}@media(max-width: 1599px){.u-gc-9\\/1\\@to-huge{--gc-start: 9;--gc-end: 1}}@media(min-width: 1600px){.u-gc-9\\/2\\@from-huge{--gc-start: 9;--gc-end: 2}}@media(max-width: 1599px){.u-gc-9\\/2\\@to-huge{--gc-start: 9;--gc-end: 2}}@media(min-width: 1600px){.u-gc-9\\/3\\@from-huge{--gc-start: 9;--gc-end: 3}}@media(max-width: 1599px){.u-gc-9\\/3\\@to-huge{--gc-start: 9;--gc-end: 3}}@media(min-width: 1600px){.u-gc-9\\/4\\@from-huge{--gc-start: 9;--gc-end: 4}}@media(max-width: 1599px){.u-gc-9\\/4\\@to-huge{--gc-start: 9;--gc-end: 4}}@media(min-width: 1600px){.u-gc-9\\/5\\@from-huge{--gc-start: 9;--gc-end: 5}}@media(max-width: 1599px){.u-gc-9\\/5\\@to-huge{--gc-start: 9;--gc-end: 5}}@media(min-width: 1600px){.u-gc-9\\/6\\@from-huge{--gc-start: 9;--gc-end: 6}}@media(max-width: 1599px){.u-gc-9\\/6\\@to-huge{--gc-start: 9;--gc-end: 6}}@media(min-width: 1600px){.u-gc-9\\/7\\@from-huge{--gc-start: 9;--gc-end: 7}}@media(max-width: 1599px){.u-gc-9\\/7\\@to-huge{--gc-start: 9;--gc-end: 7}}@media(min-width: 1600px){.u-gc-9\\/8\\@from-huge{--gc-start: 9;--gc-end: 8}}@media(max-width: 1599px){.u-gc-9\\/8\\@to-huge{--gc-start: 9;--gc-end: 8}}@media(min-width: 1600px){.u-gc-9\\/9\\@from-huge{--gc-start: 9;--gc-end: 9}}@media(max-width: 1599px){.u-gc-9\\/9\\@to-huge{--gc-start: 9;--gc-end: 9}}@media(min-width: 1600px){.u-gc-9\\/10\\@from-huge{--gc-start: 9;--gc-end: 10}}@media(max-width: 1599px){.u-gc-9\\/10\\@to-huge{--gc-start: 9;--gc-end: 10}}@media(min-width: 1600px){.u-gc-9\\/11\\@from-huge{--gc-start: 9;--gc-end: 11}}@media(max-width: 1599px){.u-gc-9\\/11\\@to-huge{--gc-start: 9;--gc-end: 11}}@media(min-width: 1600px){.u-gc-9\\/12\\@from-huge{--gc-start: 9;--gc-end: 12}}@media(max-width: 1599px){.u-gc-9\\/12\\@to-huge{--gc-start: 9;--gc-end: 12}}@media(min-width: 1600px){.u-gc-9\\/13\\@from-huge{--gc-start: 9;--gc-end: 13}}@media(max-width: 1599px){.u-gc-9\\/13\\@to-huge{--gc-start: 9;--gc-end: 13}}@media(min-width: 1600px){.u-gc-10\\/1\\@from-huge{--gc-start: 10;--gc-end: 1}}@media(max-width: 1599px){.u-gc-10\\/1\\@to-huge{--gc-start: 10;--gc-end: 1}}@media(min-width: 1600px){.u-gc-10\\/2\\@from-huge{--gc-start: 10;--gc-end: 2}}@media(max-width: 1599px){.u-gc-10\\/2\\@to-huge{--gc-start: 10;--gc-end: 2}}@media(min-width: 1600px){.u-gc-10\\/3\\@from-huge{--gc-start: 10;--gc-end: 3}}@media(max-width: 1599px){.u-gc-10\\/3\\@to-huge{--gc-start: 10;--gc-end: 3}}@media(min-width: 1600px){.u-gc-10\\/4\\@from-huge{--gc-start: 10;--gc-end: 4}}@media(max-width: 1599px){.u-gc-10\\/4\\@to-huge{--gc-start: 10;--gc-end: 4}}@media(min-width: 1600px){.u-gc-10\\/5\\@from-huge{--gc-start: 10;--gc-end: 5}}@media(max-width: 1599px){.u-gc-10\\/5\\@to-huge{--gc-start: 10;--gc-end: 5}}@media(min-width: 1600px){.u-gc-10\\/6\\@from-huge{--gc-start: 10;--gc-end: 6}}@media(max-width: 1599px){.u-gc-10\\/6\\@to-huge{--gc-start: 10;--gc-end: 6}}@media(min-width: 1600px){.u-gc-10\\/7\\@from-huge{--gc-start: 10;--gc-end: 7}}@media(max-width: 1599px){.u-gc-10\\/7\\@to-huge{--gc-start: 10;--gc-end: 7}}@media(min-width: 1600px){.u-gc-10\\/8\\@from-huge{--gc-start: 10;--gc-end: 8}}@media(max-width: 1599px){.u-gc-10\\/8\\@to-huge{--gc-start: 10;--gc-end: 8}}@media(min-width: 1600px){.u-gc-10\\/9\\@from-huge{--gc-start: 10;--gc-end: 9}}@media(max-width: 1599px){.u-gc-10\\/9\\@to-huge{--gc-start: 10;--gc-end: 9}}@media(min-width: 1600px){.u-gc-10\\/10\\@from-huge{--gc-start: 10;--gc-end: 10}}@media(max-width: 1599px){.u-gc-10\\/10\\@to-huge{--gc-start: 10;--gc-end: 10}}@media(min-width: 1600px){.u-gc-10\\/11\\@from-huge{--gc-start: 10;--gc-end: 11}}@media(max-width: 1599px){.u-gc-10\\/11\\@to-huge{--gc-start: 10;--gc-end: 11}}@media(min-width: 1600px){.u-gc-10\\/12\\@from-huge{--gc-start: 10;--gc-end: 12}}@media(max-width: 1599px){.u-gc-10\\/12\\@to-huge{--gc-start: 10;--gc-end: 12}}@media(min-width: 1600px){.u-gc-10\\/13\\@from-huge{--gc-start: 10;--gc-end: 13}}@media(max-width: 1599px){.u-gc-10\\/13\\@to-huge{--gc-start: 10;--gc-end: 13}}@media(min-width: 1600px){.u-gc-11\\/1\\@from-huge{--gc-start: 11;--gc-end: 1}}@media(max-width: 1599px){.u-gc-11\\/1\\@to-huge{--gc-start: 11;--gc-end: 1}}@media(min-width: 1600px){.u-gc-11\\/2\\@from-huge{--gc-start: 11;--gc-end: 2}}@media(max-width: 1599px){.u-gc-11\\/2\\@to-huge{--gc-start: 11;--gc-end: 2}}@media(min-width: 1600px){.u-gc-11\\/3\\@from-huge{--gc-start: 11;--gc-end: 3}}@media(max-width: 1599px){.u-gc-11\\/3\\@to-huge{--gc-start: 11;--gc-end: 3}}@media(min-width: 1600px){.u-gc-11\\/4\\@from-huge{--gc-start: 11;--gc-end: 4}}@media(max-width: 1599px){.u-gc-11\\/4\\@to-huge{--gc-start: 11;--gc-end: 4}}@media(min-width: 1600px){.u-gc-11\\/5\\@from-huge{--gc-start: 11;--gc-end: 5}}@media(max-width: 1599px){.u-gc-11\\/5\\@to-huge{--gc-start: 11;--gc-end: 5}}@media(min-width: 1600px){.u-gc-11\\/6\\@from-huge{--gc-start: 11;--gc-end: 6}}@media(max-width: 1599px){.u-gc-11\\/6\\@to-huge{--gc-start: 11;--gc-end: 6}}@media(min-width: 1600px){.u-gc-11\\/7\\@from-huge{--gc-start: 11;--gc-end: 7}}@media(max-width: 1599px){.u-gc-11\\/7\\@to-huge{--gc-start: 11;--gc-end: 7}}@media(min-width: 1600px){.u-gc-11\\/8\\@from-huge{--gc-start: 11;--gc-end: 8}}@media(max-width: 1599px){.u-gc-11\\/8\\@to-huge{--gc-start: 11;--gc-end: 8}}@media(min-width: 1600px){.u-gc-11\\/9\\@from-huge{--gc-start: 11;--gc-end: 9}}@media(max-width: 1599px){.u-gc-11\\/9\\@to-huge{--gc-start: 11;--gc-end: 9}}@media(min-width: 1600px){.u-gc-11\\/10\\@from-huge{--gc-start: 11;--gc-end: 10}}@media(max-width: 1599px){.u-gc-11\\/10\\@to-huge{--gc-start: 11;--gc-end: 10}}@media(min-width: 1600px){.u-gc-11\\/11\\@from-huge{--gc-start: 11;--gc-end: 11}}@media(max-width: 1599px){.u-gc-11\\/11\\@to-huge{--gc-start: 11;--gc-end: 11}}@media(min-width: 1600px){.u-gc-11\\/12\\@from-huge{--gc-start: 11;--gc-end: 12}}@media(max-width: 1599px){.u-gc-11\\/12\\@to-huge{--gc-start: 11;--gc-end: 12}}@media(min-width: 1600px){.u-gc-11\\/13\\@from-huge{--gc-start: 11;--gc-end: 13}}@media(max-width: 1599px){.u-gc-11\\/13\\@to-huge{--gc-start: 11;--gc-end: 13}}@media(min-width: 1600px){.u-gc-12\\/1\\@from-huge{--gc-start: 12;--gc-end: 1}}@media(max-width: 1599px){.u-gc-12\\/1\\@to-huge{--gc-start: 12;--gc-end: 1}}@media(min-width: 1600px){.u-gc-12\\/2\\@from-huge{--gc-start: 12;--gc-end: 2}}@media(max-width: 1599px){.u-gc-12\\/2\\@to-huge{--gc-start: 12;--gc-end: 2}}@media(min-width: 1600px){.u-gc-12\\/3\\@from-huge{--gc-start: 12;--gc-end: 3}}@media(max-width: 1599px){.u-gc-12\\/3\\@to-huge{--gc-start: 12;--gc-end: 3}}@media(min-width: 1600px){.u-gc-12\\/4\\@from-huge{--gc-start: 12;--gc-end: 4}}@media(max-width: 1599px){.u-gc-12\\/4\\@to-huge{--gc-start: 12;--gc-end: 4}}@media(min-width: 1600px){.u-gc-12\\/5\\@from-huge{--gc-start: 12;--gc-end: 5}}@media(max-width: 1599px){.u-gc-12\\/5\\@to-huge{--gc-start: 12;--gc-end: 5}}@media(min-width: 1600px){.u-gc-12\\/6\\@from-huge{--gc-start: 12;--gc-end: 6}}@media(max-width: 1599px){.u-gc-12\\/6\\@to-huge{--gc-start: 12;--gc-end: 6}}@media(min-width: 1600px){.u-gc-12\\/7\\@from-huge{--gc-start: 12;--gc-end: 7}}@media(max-width: 1599px){.u-gc-12\\/7\\@to-huge{--gc-start: 12;--gc-end: 7}}@media(min-width: 1600px){.u-gc-12\\/8\\@from-huge{--gc-start: 12;--gc-end: 8}}@media(max-width: 1599px){.u-gc-12\\/8\\@to-huge{--gc-start: 12;--gc-end: 8}}@media(min-width: 1600px){.u-gc-12\\/9\\@from-huge{--gc-start: 12;--gc-end: 9}}@media(max-width: 1599px){.u-gc-12\\/9\\@to-huge{--gc-start: 12;--gc-end: 9}}@media(min-width: 1600px){.u-gc-12\\/10\\@from-huge{--gc-start: 12;--gc-end: 10}}@media(max-width: 1599px){.u-gc-12\\/10\\@to-huge{--gc-start: 12;--gc-end: 10}}@media(min-width: 1600px){.u-gc-12\\/11\\@from-huge{--gc-start: 12;--gc-end: 11}}@media(max-width: 1599px){.u-gc-12\\/11\\@to-huge{--gc-start: 12;--gc-end: 11}}@media(min-width: 1600px){.u-gc-12\\/12\\@from-huge{--gc-start: 12;--gc-end: 12}}@media(max-width: 1599px){.u-gc-12\\/12\\@to-huge{--gc-start: 12;--gc-end: 12}}@media(min-width: 1600px){.u-gc-12\\/13\\@from-huge{--gc-start: 12;--gc-end: 13}}@media(max-width: 1599px){.u-gc-12\\/13\\@to-huge{--gc-start: 12;--gc-end: 13}}@media(min-width: 1600px){.u-gc-13\\/1\\@from-huge{--gc-start: 13;--gc-end: 1}}@media(max-width: 1599px){.u-gc-13\\/1\\@to-huge{--gc-start: 13;--gc-end: 1}}@media(min-width: 1600px){.u-gc-13\\/2\\@from-huge{--gc-start: 13;--gc-end: 2}}@media(max-width: 1599px){.u-gc-13\\/2\\@to-huge{--gc-start: 13;--gc-end: 2}}@media(min-width: 1600px){.u-gc-13\\/3\\@from-huge{--gc-start: 13;--gc-end: 3}}@media(max-width: 1599px){.u-gc-13\\/3\\@to-huge{--gc-start: 13;--gc-end: 3}}@media(min-width: 1600px){.u-gc-13\\/4\\@from-huge{--gc-start: 13;--gc-end: 4}}@media(max-width: 1599px){.u-gc-13\\/4\\@to-huge{--gc-start: 13;--gc-end: 4}}@media(min-width: 1600px){.u-gc-13\\/5\\@from-huge{--gc-start: 13;--gc-end: 5}}@media(max-width: 1599px){.u-gc-13\\/5\\@to-huge{--gc-start: 13;--gc-end: 5}}@media(min-width: 1600px){.u-gc-13\\/6\\@from-huge{--gc-start: 13;--gc-end: 6}}@media(max-width: 1599px){.u-gc-13\\/6\\@to-huge{--gc-start: 13;--gc-end: 6}}@media(min-width: 1600px){.u-gc-13\\/7\\@from-huge{--gc-start: 13;--gc-end: 7}}@media(max-width: 1599px){.u-gc-13\\/7\\@to-huge{--gc-start: 13;--gc-end: 7}}@media(min-width: 1600px){.u-gc-13\\/8\\@from-huge{--gc-start: 13;--gc-end: 8}}@media(max-width: 1599px){.u-gc-13\\/8\\@to-huge{--gc-start: 13;--gc-end: 8}}@media(min-width: 1600px){.u-gc-13\\/9\\@from-huge{--gc-start: 13;--gc-end: 9}}@media(max-width: 1599px){.u-gc-13\\/9\\@to-huge{--gc-start: 13;--gc-end: 9}}@media(min-width: 1600px){.u-gc-13\\/10\\@from-huge{--gc-start: 13;--gc-end: 10}}@media(max-width: 1599px){.u-gc-13\\/10\\@to-huge{--gc-start: 13;--gc-end: 10}}@media(min-width: 1600px){.u-gc-13\\/11\\@from-huge{--gc-start: 13;--gc-end: 11}}@media(max-width: 1599px){.u-gc-13\\/11\\@to-huge{--gc-start: 13;--gc-end: 11}}@media(min-width: 1600px){.u-gc-13\\/12\\@from-huge{--gc-start: 13;--gc-end: 12}}@media(max-width: 1599px){.u-gc-13\\/12\\@to-huge{--gc-start: 13;--gc-end: 12}}@media(min-width: 1600px){.u-gc-13\\/13\\@from-huge{--gc-start: 13;--gc-end: 13}}@media(max-width: 1599px){.u-gc-13\\/13\\@to-huge{--gc-start: 13;--gc-end: 13}}@media(min-width: 1800px){.u-gc-1\\/1\\@from-enormous{--gc-start: 1;--gc-end: 1}}@media(max-width: 1799px){.u-gc-1\\/1\\@to-enormous{--gc-start: 1;--gc-end: 1}}@media(min-width: 1800px){.u-gc-1\\/2\\@from-enormous{--gc-start: 1;--gc-end: 2}}@media(max-width: 1799px){.u-gc-1\\/2\\@to-enormous{--gc-start: 1;--gc-end: 2}}@media(min-width: 1800px){.u-gc-1\\/3\\@from-enormous{--gc-start: 1;--gc-end: 3}}@media(max-width: 1799px){.u-gc-1\\/3\\@to-enormous{--gc-start: 1;--gc-end: 3}}@media(min-width: 1800px){.u-gc-1\\/4\\@from-enormous{--gc-start: 1;--gc-end: 4}}@media(max-width: 1799px){.u-gc-1\\/4\\@to-enormous{--gc-start: 1;--gc-end: 4}}@media(min-width: 1800px){.u-gc-1\\/5\\@from-enormous{--gc-start: 1;--gc-end: 5}}@media(max-width: 1799px){.u-gc-1\\/5\\@to-enormous{--gc-start: 1;--gc-end: 5}}@media(min-width: 1800px){.u-gc-1\\/6\\@from-enormous{--gc-start: 1;--gc-end: 6}}@media(max-width: 1799px){.u-gc-1\\/6\\@to-enormous{--gc-start: 1;--gc-end: 6}}@media(min-width: 1800px){.u-gc-1\\/7\\@from-enormous{--gc-start: 1;--gc-end: 7}}@media(max-width: 1799px){.u-gc-1\\/7\\@to-enormous{--gc-start: 1;--gc-end: 7}}@media(min-width: 1800px){.u-gc-1\\/8\\@from-enormous{--gc-start: 1;--gc-end: 8}}@media(max-width: 1799px){.u-gc-1\\/8\\@to-enormous{--gc-start: 1;--gc-end: 8}}@media(min-width: 1800px){.u-gc-1\\/9\\@from-enormous{--gc-start: 1;--gc-end: 9}}@media(max-width: 1799px){.u-gc-1\\/9\\@to-enormous{--gc-start: 1;--gc-end: 9}}@media(min-width: 1800px){.u-gc-1\\/10\\@from-enormous{--gc-start: 1;--gc-end: 10}}@media(max-width: 1799px){.u-gc-1\\/10\\@to-enormous{--gc-start: 1;--gc-end: 10}}@media(min-width: 1800px){.u-gc-1\\/11\\@from-enormous{--gc-start: 1;--gc-end: 11}}@media(max-width: 1799px){.u-gc-1\\/11\\@to-enormous{--gc-start: 1;--gc-end: 11}}@media(min-width: 1800px){.u-gc-1\\/12\\@from-enormous{--gc-start: 1;--gc-end: 12}}@media(max-width: 1799px){.u-gc-1\\/12\\@to-enormous{--gc-start: 1;--gc-end: 12}}@media(min-width: 1800px){.u-gc-1\\/13\\@from-enormous{--gc-start: 1;--gc-end: 13}}@media(max-width: 1799px){.u-gc-1\\/13\\@to-enormous{--gc-start: 1;--gc-end: 13}}@media(min-width: 1800px){.u-gc-2\\/1\\@from-enormous{--gc-start: 2;--gc-end: 1}}@media(max-width: 1799px){.u-gc-2\\/1\\@to-enormous{--gc-start: 2;--gc-end: 1}}@media(min-width: 1800px){.u-gc-2\\/2\\@from-enormous{--gc-start: 2;--gc-end: 2}}@media(max-width: 1799px){.u-gc-2\\/2\\@to-enormous{--gc-start: 2;--gc-end: 2}}@media(min-width: 1800px){.u-gc-2\\/3\\@from-enormous{--gc-start: 2;--gc-end: 3}}@media(max-width: 1799px){.u-gc-2\\/3\\@to-enormous{--gc-start: 2;--gc-end: 3}}@media(min-width: 1800px){.u-gc-2\\/4\\@from-enormous{--gc-start: 2;--gc-end: 4}}@media(max-width: 1799px){.u-gc-2\\/4\\@to-enormous{--gc-start: 2;--gc-end: 4}}@media(min-width: 1800px){.u-gc-2\\/5\\@from-enormous{--gc-start: 2;--gc-end: 5}}@media(max-width: 1799px){.u-gc-2\\/5\\@to-enormous{--gc-start: 2;--gc-end: 5}}@media(min-width: 1800px){.u-gc-2\\/6\\@from-enormous{--gc-start: 2;--gc-end: 6}}@media(max-width: 1799px){.u-gc-2\\/6\\@to-enormous{--gc-start: 2;--gc-end: 6}}@media(min-width: 1800px){.u-gc-2\\/7\\@from-enormous{--gc-start: 2;--gc-end: 7}}@media(max-width: 1799px){.u-gc-2\\/7\\@to-enormous{--gc-start: 2;--gc-end: 7}}@media(min-width: 1800px){.u-gc-2\\/8\\@from-enormous{--gc-start: 2;--gc-end: 8}}@media(max-width: 1799px){.u-gc-2\\/8\\@to-enormous{--gc-start: 2;--gc-end: 8}}@media(min-width: 1800px){.u-gc-2\\/9\\@from-enormous{--gc-start: 2;--gc-end: 9}}@media(max-width: 1799px){.u-gc-2\\/9\\@to-enormous{--gc-start: 2;--gc-end: 9}}@media(min-width: 1800px){.u-gc-2\\/10\\@from-enormous{--gc-start: 2;--gc-end: 10}}@media(max-width: 1799px){.u-gc-2\\/10\\@to-enormous{--gc-start: 2;--gc-end: 10}}@media(min-width: 1800px){.u-gc-2\\/11\\@from-enormous{--gc-start: 2;--gc-end: 11}}@media(max-width: 1799px){.u-gc-2\\/11\\@to-enormous{--gc-start: 2;--gc-end: 11}}@media(min-width: 1800px){.u-gc-2\\/12\\@from-enormous{--gc-start: 2;--gc-end: 12}}@media(max-width: 1799px){.u-gc-2\\/12\\@to-enormous{--gc-start: 2;--gc-end: 12}}@media(min-width: 1800px){.u-gc-2\\/13\\@from-enormous{--gc-start: 2;--gc-end: 13}}@media(max-width: 1799px){.u-gc-2\\/13\\@to-enormous{--gc-start: 2;--gc-end: 13}}@media(min-width: 1800px){.u-gc-3\\/1\\@from-enormous{--gc-start: 3;--gc-end: 1}}@media(max-width: 1799px){.u-gc-3\\/1\\@to-enormous{--gc-start: 3;--gc-end: 1}}@media(min-width: 1800px){.u-gc-3\\/2\\@from-enormous{--gc-start: 3;--gc-end: 2}}@media(max-width: 1799px){.u-gc-3\\/2\\@to-enormous{--gc-start: 3;--gc-end: 2}}@media(min-width: 1800px){.u-gc-3\\/3\\@from-enormous{--gc-start: 3;--gc-end: 3}}@media(max-width: 1799px){.u-gc-3\\/3\\@to-enormous{--gc-start: 3;--gc-end: 3}}@media(min-width: 1800px){.u-gc-3\\/4\\@from-enormous{--gc-start: 3;--gc-end: 4}}@media(max-width: 1799px){.u-gc-3\\/4\\@to-enormous{--gc-start: 3;--gc-end: 4}}@media(min-width: 1800px){.u-gc-3\\/5\\@from-enormous{--gc-start: 3;--gc-end: 5}}@media(max-width: 1799px){.u-gc-3\\/5\\@to-enormous{--gc-start: 3;--gc-end: 5}}@media(min-width: 1800px){.u-gc-3\\/6\\@from-enormous{--gc-start: 3;--gc-end: 6}}@media(max-width: 1799px){.u-gc-3\\/6\\@to-enormous{--gc-start: 3;--gc-end: 6}}@media(min-width: 1800px){.u-gc-3\\/7\\@from-enormous{--gc-start: 3;--gc-end: 7}}@media(max-width: 1799px){.u-gc-3\\/7\\@to-enormous{--gc-start: 3;--gc-end: 7}}@media(min-width: 1800px){.u-gc-3\\/8\\@from-enormous{--gc-start: 3;--gc-end: 8}}@media(max-width: 1799px){.u-gc-3\\/8\\@to-enormous{--gc-start: 3;--gc-end: 8}}@media(min-width: 1800px){.u-gc-3\\/9\\@from-enormous{--gc-start: 3;--gc-end: 9}}@media(max-width: 1799px){.u-gc-3\\/9\\@to-enormous{--gc-start: 3;--gc-end: 9}}@media(min-width: 1800px){.u-gc-3\\/10\\@from-enormous{--gc-start: 3;--gc-end: 10}}@media(max-width: 1799px){.u-gc-3\\/10\\@to-enormous{--gc-start: 3;--gc-end: 10}}@media(min-width: 1800px){.u-gc-3\\/11\\@from-enormous{--gc-start: 3;--gc-end: 11}}@media(max-width: 1799px){.u-gc-3\\/11\\@to-enormous{--gc-start: 3;--gc-end: 11}}@media(min-width: 1800px){.u-gc-3\\/12\\@from-enormous{--gc-start: 3;--gc-end: 12}}@media(max-width: 1799px){.u-gc-3\\/12\\@to-enormous{--gc-start: 3;--gc-end: 12}}@media(min-width: 1800px){.u-gc-3\\/13\\@from-enormous{--gc-start: 3;--gc-end: 13}}@media(max-width: 1799px){.u-gc-3\\/13\\@to-enormous{--gc-start: 3;--gc-end: 13}}@media(min-width: 1800px){.u-gc-4\\/1\\@from-enormous{--gc-start: 4;--gc-end: 1}}@media(max-width: 1799px){.u-gc-4\\/1\\@to-enormous{--gc-start: 4;--gc-end: 1}}@media(min-width: 1800px){.u-gc-4\\/2\\@from-enormous{--gc-start: 4;--gc-end: 2}}@media(max-width: 1799px){.u-gc-4\\/2\\@to-enormous{--gc-start: 4;--gc-end: 2}}@media(min-width: 1800px){.u-gc-4\\/3\\@from-enormous{--gc-start: 4;--gc-end: 3}}@media(max-width: 1799px){.u-gc-4\\/3\\@to-enormous{--gc-start: 4;--gc-end: 3}}@media(min-width: 1800px){.u-gc-4\\/4\\@from-enormous{--gc-start: 4;--gc-end: 4}}@media(max-width: 1799px){.u-gc-4\\/4\\@to-enormous{--gc-start: 4;--gc-end: 4}}@media(min-width: 1800px){.u-gc-4\\/5\\@from-enormous{--gc-start: 4;--gc-end: 5}}@media(max-width: 1799px){.u-gc-4\\/5\\@to-enormous{--gc-start: 4;--gc-end: 5}}@media(min-width: 1800px){.u-gc-4\\/6\\@from-enormous{--gc-start: 4;--gc-end: 6}}@media(max-width: 1799px){.u-gc-4\\/6\\@to-enormous{--gc-start: 4;--gc-end: 6}}@media(min-width: 1800px){.u-gc-4\\/7\\@from-enormous{--gc-start: 4;--gc-end: 7}}@media(max-width: 1799px){.u-gc-4\\/7\\@to-enormous{--gc-start: 4;--gc-end: 7}}@media(min-width: 1800px){.u-gc-4\\/8\\@from-enormous{--gc-start: 4;--gc-end: 8}}@media(max-width: 1799px){.u-gc-4\\/8\\@to-enormous{--gc-start: 4;--gc-end: 8}}@media(min-width: 1800px){.u-gc-4\\/9\\@from-enormous{--gc-start: 4;--gc-end: 9}}@media(max-width: 1799px){.u-gc-4\\/9\\@to-enormous{--gc-start: 4;--gc-end: 9}}@media(min-width: 1800px){.u-gc-4\\/10\\@from-enormous{--gc-start: 4;--gc-end: 10}}@media(max-width: 1799px){.u-gc-4\\/10\\@to-enormous{--gc-start: 4;--gc-end: 10}}@media(min-width: 1800px){.u-gc-4\\/11\\@from-enormous{--gc-start: 4;--gc-end: 11}}@media(max-width: 1799px){.u-gc-4\\/11\\@to-enormous{--gc-start: 4;--gc-end: 11}}@media(min-width: 1800px){.u-gc-4\\/12\\@from-enormous{--gc-start: 4;--gc-end: 12}}@media(max-width: 1799px){.u-gc-4\\/12\\@to-enormous{--gc-start: 4;--gc-end: 12}}@media(min-width: 1800px){.u-gc-4\\/13\\@from-enormous{--gc-start: 4;--gc-end: 13}}@media(max-width: 1799px){.u-gc-4\\/13\\@to-enormous{--gc-start: 4;--gc-end: 13}}@media(min-width: 1800px){.u-gc-5\\/1\\@from-enormous{--gc-start: 5;--gc-end: 1}}@media(max-width: 1799px){.u-gc-5\\/1\\@to-enormous{--gc-start: 5;--gc-end: 1}}@media(min-width: 1800px){.u-gc-5\\/2\\@from-enormous{--gc-start: 5;--gc-end: 2}}@media(max-width: 1799px){.u-gc-5\\/2\\@to-enormous{--gc-start: 5;--gc-end: 2}}@media(min-width: 1800px){.u-gc-5\\/3\\@from-enormous{--gc-start: 5;--gc-end: 3}}@media(max-width: 1799px){.u-gc-5\\/3\\@to-enormous{--gc-start: 5;--gc-end: 3}}@media(min-width: 1800px){.u-gc-5\\/4\\@from-enormous{--gc-start: 5;--gc-end: 4}}@media(max-width: 1799px){.u-gc-5\\/4\\@to-enormous{--gc-start: 5;--gc-end: 4}}@media(min-width: 1800px){.u-gc-5\\/5\\@from-enormous{--gc-start: 5;--gc-end: 5}}@media(max-width: 1799px){.u-gc-5\\/5\\@to-enormous{--gc-start: 5;--gc-end: 5}}@media(min-width: 1800px){.u-gc-5\\/6\\@from-enormous{--gc-start: 5;--gc-end: 6}}@media(max-width: 1799px){.u-gc-5\\/6\\@to-enormous{--gc-start: 5;--gc-end: 6}}@media(min-width: 1800px){.u-gc-5\\/7\\@from-enormous{--gc-start: 5;--gc-end: 7}}@media(max-width: 1799px){.u-gc-5\\/7\\@to-enormous{--gc-start: 5;--gc-end: 7}}@media(min-width: 1800px){.u-gc-5\\/8\\@from-enormous{--gc-start: 5;--gc-end: 8}}@media(max-width: 1799px){.u-gc-5\\/8\\@to-enormous{--gc-start: 5;--gc-end: 8}}@media(min-width: 1800px){.u-gc-5\\/9\\@from-enormous{--gc-start: 5;--gc-end: 9}}@media(max-width: 1799px){.u-gc-5\\/9\\@to-enormous{--gc-start: 5;--gc-end: 9}}@media(min-width: 1800px){.u-gc-5\\/10\\@from-enormous{--gc-start: 5;--gc-end: 10}}@media(max-width: 1799px){.u-gc-5\\/10\\@to-enormous{--gc-start: 5;--gc-end: 10}}@media(min-width: 1800px){.u-gc-5\\/11\\@from-enormous{--gc-start: 5;--gc-end: 11}}@media(max-width: 1799px){.u-gc-5\\/11\\@to-enormous{--gc-start: 5;--gc-end: 11}}@media(min-width: 1800px){.u-gc-5\\/12\\@from-enormous{--gc-start: 5;--gc-end: 12}}@media(max-width: 1799px){.u-gc-5\\/12\\@to-enormous{--gc-start: 5;--gc-end: 12}}@media(min-width: 1800px){.u-gc-5\\/13\\@from-enormous{--gc-start: 5;--gc-end: 13}}@media(max-width: 1799px){.u-gc-5\\/13\\@to-enormous{--gc-start: 5;--gc-end: 13}}@media(min-width: 1800px){.u-gc-6\\/1\\@from-enormous{--gc-start: 6;--gc-end: 1}}@media(max-width: 1799px){.u-gc-6\\/1\\@to-enormous{--gc-start: 6;--gc-end: 1}}@media(min-width: 1800px){.u-gc-6\\/2\\@from-enormous{--gc-start: 6;--gc-end: 2}}@media(max-width: 1799px){.u-gc-6\\/2\\@to-enormous{--gc-start: 6;--gc-end: 2}}@media(min-width: 1800px){.u-gc-6\\/3\\@from-enormous{--gc-start: 6;--gc-end: 3}}@media(max-width: 1799px){.u-gc-6\\/3\\@to-enormous{--gc-start: 6;--gc-end: 3}}@media(min-width: 1800px){.u-gc-6\\/4\\@from-enormous{--gc-start: 6;--gc-end: 4}}@media(max-width: 1799px){.u-gc-6\\/4\\@to-enormous{--gc-start: 6;--gc-end: 4}}@media(min-width: 1800px){.u-gc-6\\/5\\@from-enormous{--gc-start: 6;--gc-end: 5}}@media(max-width: 1799px){.u-gc-6\\/5\\@to-enormous{--gc-start: 6;--gc-end: 5}}@media(min-width: 1800px){.u-gc-6\\/6\\@from-enormous{--gc-start: 6;--gc-end: 6}}@media(max-width: 1799px){.u-gc-6\\/6\\@to-enormous{--gc-start: 6;--gc-end: 6}}@media(min-width: 1800px){.u-gc-6\\/7\\@from-enormous{--gc-start: 6;--gc-end: 7}}@media(max-width: 1799px){.u-gc-6\\/7\\@to-enormous{--gc-start: 6;--gc-end: 7}}@media(min-width: 1800px){.u-gc-6\\/8\\@from-enormous{--gc-start: 6;--gc-end: 8}}@media(max-width: 1799px){.u-gc-6\\/8\\@to-enormous{--gc-start: 6;--gc-end: 8}}@media(min-width: 1800px){.u-gc-6\\/9\\@from-enormous{--gc-start: 6;--gc-end: 9}}@media(max-width: 1799px){.u-gc-6\\/9\\@to-enormous{--gc-start: 6;--gc-end: 9}}@media(min-width: 1800px){.u-gc-6\\/10\\@from-enormous{--gc-start: 6;--gc-end: 10}}@media(max-width: 1799px){.u-gc-6\\/10\\@to-enormous{--gc-start: 6;--gc-end: 10}}@media(min-width: 1800px){.u-gc-6\\/11\\@from-enormous{--gc-start: 6;--gc-end: 11}}@media(max-width: 1799px){.u-gc-6\\/11\\@to-enormous{--gc-start: 6;--gc-end: 11}}@media(min-width: 1800px){.u-gc-6\\/12\\@from-enormous{--gc-start: 6;--gc-end: 12}}@media(max-width: 1799px){.u-gc-6\\/12\\@to-enormous{--gc-start: 6;--gc-end: 12}}@media(min-width: 1800px){.u-gc-6\\/13\\@from-enormous{--gc-start: 6;--gc-end: 13}}@media(max-width: 1799px){.u-gc-6\\/13\\@to-enormous{--gc-start: 6;--gc-end: 13}}@media(min-width: 1800px){.u-gc-7\\/1\\@from-enormous{--gc-start: 7;--gc-end: 1}}@media(max-width: 1799px){.u-gc-7\\/1\\@to-enormous{--gc-start: 7;--gc-end: 1}}@media(min-width: 1800px){.u-gc-7\\/2\\@from-enormous{--gc-start: 7;--gc-end: 2}}@media(max-width: 1799px){.u-gc-7\\/2\\@to-enormous{--gc-start: 7;--gc-end: 2}}@media(min-width: 1800px){.u-gc-7\\/3\\@from-enormous{--gc-start: 7;--gc-end: 3}}@media(max-width: 1799px){.u-gc-7\\/3\\@to-enormous{--gc-start: 7;--gc-end: 3}}@media(min-width: 1800px){.u-gc-7\\/4\\@from-enormous{--gc-start: 7;--gc-end: 4}}@media(max-width: 1799px){.u-gc-7\\/4\\@to-enormous{--gc-start: 7;--gc-end: 4}}@media(min-width: 1800px){.u-gc-7\\/5\\@from-enormous{--gc-start: 7;--gc-end: 5}}@media(max-width: 1799px){.u-gc-7\\/5\\@to-enormous{--gc-start: 7;--gc-end: 5}}@media(min-width: 1800px){.u-gc-7\\/6\\@from-enormous{--gc-start: 7;--gc-end: 6}}@media(max-width: 1799px){.u-gc-7\\/6\\@to-enormous{--gc-start: 7;--gc-end: 6}}@media(min-width: 1800px){.u-gc-7\\/7\\@from-enormous{--gc-start: 7;--gc-end: 7}}@media(max-width: 1799px){.u-gc-7\\/7\\@to-enormous{--gc-start: 7;--gc-end: 7}}@media(min-width: 1800px){.u-gc-7\\/8\\@from-enormous{--gc-start: 7;--gc-end: 8}}@media(max-width: 1799px){.u-gc-7\\/8\\@to-enormous{--gc-start: 7;--gc-end: 8}}@media(min-width: 1800px){.u-gc-7\\/9\\@from-enormous{--gc-start: 7;--gc-end: 9}}@media(max-width: 1799px){.u-gc-7\\/9\\@to-enormous{--gc-start: 7;--gc-end: 9}}@media(min-width: 1800px){.u-gc-7\\/10\\@from-enormous{--gc-start: 7;--gc-end: 10}}@media(max-width: 1799px){.u-gc-7\\/10\\@to-enormous{--gc-start: 7;--gc-end: 10}}@media(min-width: 1800px){.u-gc-7\\/11\\@from-enormous{--gc-start: 7;--gc-end: 11}}@media(max-width: 1799px){.u-gc-7\\/11\\@to-enormous{--gc-start: 7;--gc-end: 11}}@media(min-width: 1800px){.u-gc-7\\/12\\@from-enormous{--gc-start: 7;--gc-end: 12}}@media(max-width: 1799px){.u-gc-7\\/12\\@to-enormous{--gc-start: 7;--gc-end: 12}}@media(min-width: 1800px){.u-gc-7\\/13\\@from-enormous{--gc-start: 7;--gc-end: 13}}@media(max-width: 1799px){.u-gc-7\\/13\\@to-enormous{--gc-start: 7;--gc-end: 13}}@media(min-width: 1800px){.u-gc-8\\/1\\@from-enormous{--gc-start: 8;--gc-end: 1}}@media(max-width: 1799px){.u-gc-8\\/1\\@to-enormous{--gc-start: 8;--gc-end: 1}}@media(min-width: 1800px){.u-gc-8\\/2\\@from-enormous{--gc-start: 8;--gc-end: 2}}@media(max-width: 1799px){.u-gc-8\\/2\\@to-enormous{--gc-start: 8;--gc-end: 2}}@media(min-width: 1800px){.u-gc-8\\/3\\@from-enormous{--gc-start: 8;--gc-end: 3}}@media(max-width: 1799px){.u-gc-8\\/3\\@to-enormous{--gc-start: 8;--gc-end: 3}}@media(min-width: 1800px){.u-gc-8\\/4\\@from-enormous{--gc-start: 8;--gc-end: 4}}@media(max-width: 1799px){.u-gc-8\\/4\\@to-enormous{--gc-start: 8;--gc-end: 4}}@media(min-width: 1800px){.u-gc-8\\/5\\@from-enormous{--gc-start: 8;--gc-end: 5}}@media(max-width: 1799px){.u-gc-8\\/5\\@to-enormous{--gc-start: 8;--gc-end: 5}}@media(min-width: 1800px){.u-gc-8\\/6\\@from-enormous{--gc-start: 8;--gc-end: 6}}@media(max-width: 1799px){.u-gc-8\\/6\\@to-enormous{--gc-start: 8;--gc-end: 6}}@media(min-width: 1800px){.u-gc-8\\/7\\@from-enormous{--gc-start: 8;--gc-end: 7}}@media(max-width: 1799px){.u-gc-8\\/7\\@to-enormous{--gc-start: 8;--gc-end: 7}}@media(min-width: 1800px){.u-gc-8\\/8\\@from-enormous{--gc-start: 8;--gc-end: 8}}@media(max-width: 1799px){.u-gc-8\\/8\\@to-enormous{--gc-start: 8;--gc-end: 8}}@media(min-width: 1800px){.u-gc-8\\/9\\@from-enormous{--gc-start: 8;--gc-end: 9}}@media(max-width: 1799px){.u-gc-8\\/9\\@to-enormous{--gc-start: 8;--gc-end: 9}}@media(min-width: 1800px){.u-gc-8\\/10\\@from-enormous{--gc-start: 8;--gc-end: 10}}@media(max-width: 1799px){.u-gc-8\\/10\\@to-enormous{--gc-start: 8;--gc-end: 10}}@media(min-width: 1800px){.u-gc-8\\/11\\@from-enormous{--gc-start: 8;--gc-end: 11}}@media(max-width: 1799px){.u-gc-8\\/11\\@to-enormous{--gc-start: 8;--gc-end: 11}}@media(min-width: 1800px){.u-gc-8\\/12\\@from-enormous{--gc-start: 8;--gc-end: 12}}@media(max-width: 1799px){.u-gc-8\\/12\\@to-enormous{--gc-start: 8;--gc-end: 12}}@media(min-width: 1800px){.u-gc-8\\/13\\@from-enormous{--gc-start: 8;--gc-end: 13}}@media(max-width: 1799px){.u-gc-8\\/13\\@to-enormous{--gc-start: 8;--gc-end: 13}}@media(min-width: 1800px){.u-gc-9\\/1\\@from-enormous{--gc-start: 9;--gc-end: 1}}@media(max-width: 1799px){.u-gc-9\\/1\\@to-enormous{--gc-start: 9;--gc-end: 1}}@media(min-width: 1800px){.u-gc-9\\/2\\@from-enormous{--gc-start: 9;--gc-end: 2}}@media(max-width: 1799px){.u-gc-9\\/2\\@to-enormous{--gc-start: 9;--gc-end: 2}}@media(min-width: 1800px){.u-gc-9\\/3\\@from-enormous{--gc-start: 9;--gc-end: 3}}@media(max-width: 1799px){.u-gc-9\\/3\\@to-enormous{--gc-start: 9;--gc-end: 3}}@media(min-width: 1800px){.u-gc-9\\/4\\@from-enormous{--gc-start: 9;--gc-end: 4}}@media(max-width: 1799px){.u-gc-9\\/4\\@to-enormous{--gc-start: 9;--gc-end: 4}}@media(min-width: 1800px){.u-gc-9\\/5\\@from-enormous{--gc-start: 9;--gc-end: 5}}@media(max-width: 1799px){.u-gc-9\\/5\\@to-enormous{--gc-start: 9;--gc-end: 5}}@media(min-width: 1800px){.u-gc-9\\/6\\@from-enormous{--gc-start: 9;--gc-end: 6}}@media(max-width: 1799px){.u-gc-9\\/6\\@to-enormous{--gc-start: 9;--gc-end: 6}}@media(min-width: 1800px){.u-gc-9\\/7\\@from-enormous{--gc-start: 9;--gc-end: 7}}@media(max-width: 1799px){.u-gc-9\\/7\\@to-enormous{--gc-start: 9;--gc-end: 7}}@media(min-width: 1800px){.u-gc-9\\/8\\@from-enormous{--gc-start: 9;--gc-end: 8}}@media(max-width: 1799px){.u-gc-9\\/8\\@to-enormous{--gc-start: 9;--gc-end: 8}}@media(min-width: 1800px){.u-gc-9\\/9\\@from-enormous{--gc-start: 9;--gc-end: 9}}@media(max-width: 1799px){.u-gc-9\\/9\\@to-enormous{--gc-start: 9;--gc-end: 9}}@media(min-width: 1800px){.u-gc-9\\/10\\@from-enormous{--gc-start: 9;--gc-end: 10}}@media(max-width: 1799px){.u-gc-9\\/10\\@to-enormous{--gc-start: 9;--gc-end: 10}}@media(min-width: 1800px){.u-gc-9\\/11\\@from-enormous{--gc-start: 9;--gc-end: 11}}@media(max-width: 1799px){.u-gc-9\\/11\\@to-enormous{--gc-start: 9;--gc-end: 11}}@media(min-width: 1800px){.u-gc-9\\/12\\@from-enormous{--gc-start: 9;--gc-end: 12}}@media(max-width: 1799px){.u-gc-9\\/12\\@to-enormous{--gc-start: 9;--gc-end: 12}}@media(min-width: 1800px){.u-gc-9\\/13\\@from-enormous{--gc-start: 9;--gc-end: 13}}@media(max-width: 1799px){.u-gc-9\\/13\\@to-enormous{--gc-start: 9;--gc-end: 13}}@media(min-width: 1800px){.u-gc-10\\/1\\@from-enormous{--gc-start: 10;--gc-end: 1}}@media(max-width: 1799px){.u-gc-10\\/1\\@to-enormous{--gc-start: 10;--gc-end: 1}}@media(min-width: 1800px){.u-gc-10\\/2\\@from-enormous{--gc-start: 10;--gc-end: 2}}@media(max-width: 1799px){.u-gc-10\\/2\\@to-enormous{--gc-start: 10;--gc-end: 2}}@media(min-width: 1800px){.u-gc-10\\/3\\@from-enormous{--gc-start: 10;--gc-end: 3}}@media(max-width: 1799px){.u-gc-10\\/3\\@to-enormous{--gc-start: 10;--gc-end: 3}}@media(min-width: 1800px){.u-gc-10\\/4\\@from-enormous{--gc-start: 10;--gc-end: 4}}@media(max-width: 1799px){.u-gc-10\\/4\\@to-enormous{--gc-start: 10;--gc-end: 4}}@media(min-width: 1800px){.u-gc-10\\/5\\@from-enormous{--gc-start: 10;--gc-end: 5}}@media(max-width: 1799px){.u-gc-10\\/5\\@to-enormous{--gc-start: 10;--gc-end: 5}}@media(min-width: 1800px){.u-gc-10\\/6\\@from-enormous{--gc-start: 10;--gc-end: 6}}@media(max-width: 1799px){.u-gc-10\\/6\\@to-enormous{--gc-start: 10;--gc-end: 6}}@media(min-width: 1800px){.u-gc-10\\/7\\@from-enormous{--gc-start: 10;--gc-end: 7}}@media(max-width: 1799px){.u-gc-10\\/7\\@to-enormous{--gc-start: 10;--gc-end: 7}}@media(min-width: 1800px){.u-gc-10\\/8\\@from-enormous{--gc-start: 10;--gc-end: 8}}@media(max-width: 1799px){.u-gc-10\\/8\\@to-enormous{--gc-start: 10;--gc-end: 8}}@media(min-width: 1800px){.u-gc-10\\/9\\@from-enormous{--gc-start: 10;--gc-end: 9}}@media(max-width: 1799px){.u-gc-10\\/9\\@to-enormous{--gc-start: 10;--gc-end: 9}}@media(min-width: 1800px){.u-gc-10\\/10\\@from-enormous{--gc-start: 10;--gc-end: 10}}@media(max-width: 1799px){.u-gc-10\\/10\\@to-enormous{--gc-start: 10;--gc-end: 10}}@media(min-width: 1800px){.u-gc-10\\/11\\@from-enormous{--gc-start: 10;--gc-end: 11}}@media(max-width: 1799px){.u-gc-10\\/11\\@to-enormous{--gc-start: 10;--gc-end: 11}}@media(min-width: 1800px){.u-gc-10\\/12\\@from-enormous{--gc-start: 10;--gc-end: 12}}@media(max-width: 1799px){.u-gc-10\\/12\\@to-enormous{--gc-start: 10;--gc-end: 12}}@media(min-width: 1800px){.u-gc-10\\/13\\@from-enormous{--gc-start: 10;--gc-end: 13}}@media(max-width: 1799px){.u-gc-10\\/13\\@to-enormous{--gc-start: 10;--gc-end: 13}}@media(min-width: 1800px){.u-gc-11\\/1\\@from-enormous{--gc-start: 11;--gc-end: 1}}@media(max-width: 1799px){.u-gc-11\\/1\\@to-enormous{--gc-start: 11;--gc-end: 1}}@media(min-width: 1800px){.u-gc-11\\/2\\@from-enormous{--gc-start: 11;--gc-end: 2}}@media(max-width: 1799px){.u-gc-11\\/2\\@to-enormous{--gc-start: 11;--gc-end: 2}}@media(min-width: 1800px){.u-gc-11\\/3\\@from-enormous{--gc-start: 11;--gc-end: 3}}@media(max-width: 1799px){.u-gc-11\\/3\\@to-enormous{--gc-start: 11;--gc-end: 3}}@media(min-width: 1800px){.u-gc-11\\/4\\@from-enormous{--gc-start: 11;--gc-end: 4}}@media(max-width: 1799px){.u-gc-11\\/4\\@to-enormous{--gc-start: 11;--gc-end: 4}}@media(min-width: 1800px){.u-gc-11\\/5\\@from-enormous{--gc-start: 11;--gc-end: 5}}@media(max-width: 1799px){.u-gc-11\\/5\\@to-enormous{--gc-start: 11;--gc-end: 5}}@media(min-width: 1800px){.u-gc-11\\/6\\@from-enormous{--gc-start: 11;--gc-end: 6}}@media(max-width: 1799px){.u-gc-11\\/6\\@to-enormous{--gc-start: 11;--gc-end: 6}}@media(min-width: 1800px){.u-gc-11\\/7\\@from-enormous{--gc-start: 11;--gc-end: 7}}@media(max-width: 1799px){.u-gc-11\\/7\\@to-enormous{--gc-start: 11;--gc-end: 7}}@media(min-width: 1800px){.u-gc-11\\/8\\@from-enormous{--gc-start: 11;--gc-end: 8}}@media(max-width: 1799px){.u-gc-11\\/8\\@to-enormous{--gc-start: 11;--gc-end: 8}}@media(min-width: 1800px){.u-gc-11\\/9\\@from-enormous{--gc-start: 11;--gc-end: 9}}@media(max-width: 1799px){.u-gc-11\\/9\\@to-enormous{--gc-start: 11;--gc-end: 9}}@media(min-width: 1800px){.u-gc-11\\/10\\@from-enormous{--gc-start: 11;--gc-end: 10}}@media(max-width: 1799px){.u-gc-11\\/10\\@to-enormous{--gc-start: 11;--gc-end: 10}}@media(min-width: 1800px){.u-gc-11\\/11\\@from-enormous{--gc-start: 11;--gc-end: 11}}@media(max-width: 1799px){.u-gc-11\\/11\\@to-enormous{--gc-start: 11;--gc-end: 11}}@media(min-width: 1800px){.u-gc-11\\/12\\@from-enormous{--gc-start: 11;--gc-end: 12}}@media(max-width: 1799px){.u-gc-11\\/12\\@to-enormous{--gc-start: 11;--gc-end: 12}}@media(min-width: 1800px){.u-gc-11\\/13\\@from-enormous{--gc-start: 11;--gc-end: 13}}@media(max-width: 1799px){.u-gc-11\\/13\\@to-enormous{--gc-start: 11;--gc-end: 13}}@media(min-width: 1800px){.u-gc-12\\/1\\@from-enormous{--gc-start: 12;--gc-end: 1}}@media(max-width: 1799px){.u-gc-12\\/1\\@to-enormous{--gc-start: 12;--gc-end: 1}}@media(min-width: 1800px){.u-gc-12\\/2\\@from-enormous{--gc-start: 12;--gc-end: 2}}@media(max-width: 1799px){.u-gc-12\\/2\\@to-enormous{--gc-start: 12;--gc-end: 2}}@media(min-width: 1800px){.u-gc-12\\/3\\@from-enormous{--gc-start: 12;--gc-end: 3}}@media(max-width: 1799px){.u-gc-12\\/3\\@to-enormous{--gc-start: 12;--gc-end: 3}}@media(min-width: 1800px){.u-gc-12\\/4\\@from-enormous{--gc-start: 12;--gc-end: 4}}@media(max-width: 1799px){.u-gc-12\\/4\\@to-enormous{--gc-start: 12;--gc-end: 4}}@media(min-width: 1800px){.u-gc-12\\/5\\@from-enormous{--gc-start: 12;--gc-end: 5}}@media(max-width: 1799px){.u-gc-12\\/5\\@to-enormous{--gc-start: 12;--gc-end: 5}}@media(min-width: 1800px){.u-gc-12\\/6\\@from-enormous{--gc-start: 12;--gc-end: 6}}@media(max-width: 1799px){.u-gc-12\\/6\\@to-enormous{--gc-start: 12;--gc-end: 6}}@media(min-width: 1800px){.u-gc-12\\/7\\@from-enormous{--gc-start: 12;--gc-end: 7}}@media(max-width: 1799px){.u-gc-12\\/7\\@to-enormous{--gc-start: 12;--gc-end: 7}}@media(min-width: 1800px){.u-gc-12\\/8\\@from-enormous{--gc-start: 12;--gc-end: 8}}@media(max-width: 1799px){.u-gc-12\\/8\\@to-enormous{--gc-start: 12;--gc-end: 8}}@media(min-width: 1800px){.u-gc-12\\/9\\@from-enormous{--gc-start: 12;--gc-end: 9}}@media(max-width: 1799px){.u-gc-12\\/9\\@to-enormous{--gc-start: 12;--gc-end: 9}}@media(min-width: 1800px){.u-gc-12\\/10\\@from-enormous{--gc-start: 12;--gc-end: 10}}@media(max-width: 1799px){.u-gc-12\\/10\\@to-enormous{--gc-start: 12;--gc-end: 10}}@media(min-width: 1800px){.u-gc-12\\/11\\@from-enormous{--gc-start: 12;--gc-end: 11}}@media(max-width: 1799px){.u-gc-12\\/11\\@to-enormous{--gc-start: 12;--gc-end: 11}}@media(min-width: 1800px){.u-gc-12\\/12\\@from-enormous{--gc-start: 12;--gc-end: 12}}@media(max-width: 1799px){.u-gc-12\\/12\\@to-enormous{--gc-start: 12;--gc-end: 12}}@media(min-width: 1800px){.u-gc-12\\/13\\@from-enormous{--gc-start: 12;--gc-end: 13}}@media(max-width: 1799px){.u-gc-12\\/13\\@to-enormous{--gc-start: 12;--gc-end: 13}}@media(min-width: 1800px){.u-gc-13\\/1\\@from-enormous{--gc-start: 13;--gc-end: 1}}@media(max-width: 1799px){.u-gc-13\\/1\\@to-enormous{--gc-start: 13;--gc-end: 1}}@media(min-width: 1800px){.u-gc-13\\/2\\@from-enormous{--gc-start: 13;--gc-end: 2}}@media(max-width: 1799px){.u-gc-13\\/2\\@to-enormous{--gc-start: 13;--gc-end: 2}}@media(min-width: 1800px){.u-gc-13\\/3\\@from-enormous{--gc-start: 13;--gc-end: 3}}@media(max-width: 1799px){.u-gc-13\\/3\\@to-enormous{--gc-start: 13;--gc-end: 3}}@media(min-width: 1800px){.u-gc-13\\/4\\@from-enormous{--gc-start: 13;--gc-end: 4}}@media(max-width: 1799px){.u-gc-13\\/4\\@to-enormous{--gc-start: 13;--gc-end: 4}}@media(min-width: 1800px){.u-gc-13\\/5\\@from-enormous{--gc-start: 13;--gc-end: 5}}@media(max-width: 1799px){.u-gc-13\\/5\\@to-enormous{--gc-start: 13;--gc-end: 5}}@media(min-width: 1800px){.u-gc-13\\/6\\@from-enormous{--gc-start: 13;--gc-end: 6}}@media(max-width: 1799px){.u-gc-13\\/6\\@to-enormous{--gc-start: 13;--gc-end: 6}}@media(min-width: 1800px){.u-gc-13\\/7\\@from-enormous{--gc-start: 13;--gc-end: 7}}@media(max-width: 1799px){.u-gc-13\\/7\\@to-enormous{--gc-start: 13;--gc-end: 7}}@media(min-width: 1800px){.u-gc-13\\/8\\@from-enormous{--gc-start: 13;--gc-end: 8}}@media(max-width: 1799px){.u-gc-13\\/8\\@to-enormous{--gc-start: 13;--gc-end: 8}}@media(min-width: 1800px){.u-gc-13\\/9\\@from-enormous{--gc-start: 13;--gc-end: 9}}@media(max-width: 1799px){.u-gc-13\\/9\\@to-enormous{--gc-start: 13;--gc-end: 9}}@media(min-width: 1800px){.u-gc-13\\/10\\@from-enormous{--gc-start: 13;--gc-end: 10}}@media(max-width: 1799px){.u-gc-13\\/10\\@to-enormous{--gc-start: 13;--gc-end: 10}}@media(min-width: 1800px){.u-gc-13\\/11\\@from-enormous{--gc-start: 13;--gc-end: 11}}@media(max-width: 1799px){.u-gc-13\\/11\\@to-enormous{--gc-start: 13;--gc-end: 11}}@media(min-width: 1800px){.u-gc-13\\/12\\@from-enormous{--gc-start: 13;--gc-end: 12}}@media(max-width: 1799px){.u-gc-13\\/12\\@to-enormous{--gc-start: 13;--gc-end: 12}}@media(min-width: 1800px){.u-gc-13\\/13\\@from-enormous{--gc-start: 13;--gc-end: 13}}@media(max-width: 1799px){.u-gc-13\\/13\\@to-enormous{--gc-start: 13;--gc-end: 13}}@media(min-width: 2000px){.u-gc-1\\/1\\@from-gigantic{--gc-start: 1;--gc-end: 1}}@media(max-width: 1999px){.u-gc-1\\/1\\@to-gigantic{--gc-start: 1;--gc-end: 1}}@media(min-width: 2000px){.u-gc-1\\/2\\@from-gigantic{--gc-start: 1;--gc-end: 2}}@media(max-width: 1999px){.u-gc-1\\/2\\@to-gigantic{--gc-start: 1;--gc-end: 2}}@media(min-width: 2000px){.u-gc-1\\/3\\@from-gigantic{--gc-start: 1;--gc-end: 3}}@media(max-width: 1999px){.u-gc-1\\/3\\@to-gigantic{--gc-start: 1;--gc-end: 3}}@media(min-width: 2000px){.u-gc-1\\/4\\@from-gigantic{--gc-start: 1;--gc-end: 4}}@media(max-width: 1999px){.u-gc-1\\/4\\@to-gigantic{--gc-start: 1;--gc-end: 4}}@media(min-width: 2000px){.u-gc-1\\/5\\@from-gigantic{--gc-start: 1;--gc-end: 5}}@media(max-width: 1999px){.u-gc-1\\/5\\@to-gigantic{--gc-start: 1;--gc-end: 5}}@media(min-width: 2000px){.u-gc-1\\/6\\@from-gigantic{--gc-start: 1;--gc-end: 6}}@media(max-width: 1999px){.u-gc-1\\/6\\@to-gigantic{--gc-start: 1;--gc-end: 6}}@media(min-width: 2000px){.u-gc-1\\/7\\@from-gigantic{--gc-start: 1;--gc-end: 7}}@media(max-width: 1999px){.u-gc-1\\/7\\@to-gigantic{--gc-start: 1;--gc-end: 7}}@media(min-width: 2000px){.u-gc-1\\/8\\@from-gigantic{--gc-start: 1;--gc-end: 8}}@media(max-width: 1999px){.u-gc-1\\/8\\@to-gigantic{--gc-start: 1;--gc-end: 8}}@media(min-width: 2000px){.u-gc-1\\/9\\@from-gigantic{--gc-start: 1;--gc-end: 9}}@media(max-width: 1999px){.u-gc-1\\/9\\@to-gigantic{--gc-start: 1;--gc-end: 9}}@media(min-width: 2000px){.u-gc-1\\/10\\@from-gigantic{--gc-start: 1;--gc-end: 10}}@media(max-width: 1999px){.u-gc-1\\/10\\@to-gigantic{--gc-start: 1;--gc-end: 10}}@media(min-width: 2000px){.u-gc-1\\/11\\@from-gigantic{--gc-start: 1;--gc-end: 11}}@media(max-width: 1999px){.u-gc-1\\/11\\@to-gigantic{--gc-start: 1;--gc-end: 11}}@media(min-width: 2000px){.u-gc-1\\/12\\@from-gigantic{--gc-start: 1;--gc-end: 12}}@media(max-width: 1999px){.u-gc-1\\/12\\@to-gigantic{--gc-start: 1;--gc-end: 12}}@media(min-width: 2000px){.u-gc-1\\/13\\@from-gigantic{--gc-start: 1;--gc-end: 13}}@media(max-width: 1999px){.u-gc-1\\/13\\@to-gigantic{--gc-start: 1;--gc-end: 13}}@media(min-width: 2000px){.u-gc-2\\/1\\@from-gigantic{--gc-start: 2;--gc-end: 1}}@media(max-width: 1999px){.u-gc-2\\/1\\@to-gigantic{--gc-start: 2;--gc-end: 1}}@media(min-width: 2000px){.u-gc-2\\/2\\@from-gigantic{--gc-start: 2;--gc-end: 2}}@media(max-width: 1999px){.u-gc-2\\/2\\@to-gigantic{--gc-start: 2;--gc-end: 2}}@media(min-width: 2000px){.u-gc-2\\/3\\@from-gigantic{--gc-start: 2;--gc-end: 3}}@media(max-width: 1999px){.u-gc-2\\/3\\@to-gigantic{--gc-start: 2;--gc-end: 3}}@media(min-width: 2000px){.u-gc-2\\/4\\@from-gigantic{--gc-start: 2;--gc-end: 4}}@media(max-width: 1999px){.u-gc-2\\/4\\@to-gigantic{--gc-start: 2;--gc-end: 4}}@media(min-width: 2000px){.u-gc-2\\/5\\@from-gigantic{--gc-start: 2;--gc-end: 5}}@media(max-width: 1999px){.u-gc-2\\/5\\@to-gigantic{--gc-start: 2;--gc-end: 5}}@media(min-width: 2000px){.u-gc-2\\/6\\@from-gigantic{--gc-start: 2;--gc-end: 6}}@media(max-width: 1999px){.u-gc-2\\/6\\@to-gigantic{--gc-start: 2;--gc-end: 6}}@media(min-width: 2000px){.u-gc-2\\/7\\@from-gigantic{--gc-start: 2;--gc-end: 7}}@media(max-width: 1999px){.u-gc-2\\/7\\@to-gigantic{--gc-start: 2;--gc-end: 7}}@media(min-width: 2000px){.u-gc-2\\/8\\@from-gigantic{--gc-start: 2;--gc-end: 8}}@media(max-width: 1999px){.u-gc-2\\/8\\@to-gigantic{--gc-start: 2;--gc-end: 8}}@media(min-width: 2000px){.u-gc-2\\/9\\@from-gigantic{--gc-start: 2;--gc-end: 9}}@media(max-width: 1999px){.u-gc-2\\/9\\@to-gigantic{--gc-start: 2;--gc-end: 9}}@media(min-width: 2000px){.u-gc-2\\/10\\@from-gigantic{--gc-start: 2;--gc-end: 10}}@media(max-width: 1999px){.u-gc-2\\/10\\@to-gigantic{--gc-start: 2;--gc-end: 10}}@media(min-width: 2000px){.u-gc-2\\/11\\@from-gigantic{--gc-start: 2;--gc-end: 11}}@media(max-width: 1999px){.u-gc-2\\/11\\@to-gigantic{--gc-start: 2;--gc-end: 11}}@media(min-width: 2000px){.u-gc-2\\/12\\@from-gigantic{--gc-start: 2;--gc-end: 12}}@media(max-width: 1999px){.u-gc-2\\/12\\@to-gigantic{--gc-start: 2;--gc-end: 12}}@media(min-width: 2000px){.u-gc-2\\/13\\@from-gigantic{--gc-start: 2;--gc-end: 13}}@media(max-width: 1999px){.u-gc-2\\/13\\@to-gigantic{--gc-start: 2;--gc-end: 13}}@media(min-width: 2000px){.u-gc-3\\/1\\@from-gigantic{--gc-start: 3;--gc-end: 1}}@media(max-width: 1999px){.u-gc-3\\/1\\@to-gigantic{--gc-start: 3;--gc-end: 1}}@media(min-width: 2000px){.u-gc-3\\/2\\@from-gigantic{--gc-start: 3;--gc-end: 2}}@media(max-width: 1999px){.u-gc-3\\/2\\@to-gigantic{--gc-start: 3;--gc-end: 2}}@media(min-width: 2000px){.u-gc-3\\/3\\@from-gigantic{--gc-start: 3;--gc-end: 3}}@media(max-width: 1999px){.u-gc-3\\/3\\@to-gigantic{--gc-start: 3;--gc-end: 3}}@media(min-width: 2000px){.u-gc-3\\/4\\@from-gigantic{--gc-start: 3;--gc-end: 4}}@media(max-width: 1999px){.u-gc-3\\/4\\@to-gigantic{--gc-start: 3;--gc-end: 4}}@media(min-width: 2000px){.u-gc-3\\/5\\@from-gigantic{--gc-start: 3;--gc-end: 5}}@media(max-width: 1999px){.u-gc-3\\/5\\@to-gigantic{--gc-start: 3;--gc-end: 5}}@media(min-width: 2000px){.u-gc-3\\/6\\@from-gigantic{--gc-start: 3;--gc-end: 6}}@media(max-width: 1999px){.u-gc-3\\/6\\@to-gigantic{--gc-start: 3;--gc-end: 6}}@media(min-width: 2000px){.u-gc-3\\/7\\@from-gigantic{--gc-start: 3;--gc-end: 7}}@media(max-width: 1999px){.u-gc-3\\/7\\@to-gigantic{--gc-start: 3;--gc-end: 7}}@media(min-width: 2000px){.u-gc-3\\/8\\@from-gigantic{--gc-start: 3;--gc-end: 8}}@media(max-width: 1999px){.u-gc-3\\/8\\@to-gigantic{--gc-start: 3;--gc-end: 8}}@media(min-width: 2000px){.u-gc-3\\/9\\@from-gigantic{--gc-start: 3;--gc-end: 9}}@media(max-width: 1999px){.u-gc-3\\/9\\@to-gigantic{--gc-start: 3;--gc-end: 9}}@media(min-width: 2000px){.u-gc-3\\/10\\@from-gigantic{--gc-start: 3;--gc-end: 10}}@media(max-width: 1999px){.u-gc-3\\/10\\@to-gigantic{--gc-start: 3;--gc-end: 10}}@media(min-width: 2000px){.u-gc-3\\/11\\@from-gigantic{--gc-start: 3;--gc-end: 11}}@media(max-width: 1999px){.u-gc-3\\/11\\@to-gigantic{--gc-start: 3;--gc-end: 11}}@media(min-width: 2000px){.u-gc-3\\/12\\@from-gigantic{--gc-start: 3;--gc-end: 12}}@media(max-width: 1999px){.u-gc-3\\/12\\@to-gigantic{--gc-start: 3;--gc-end: 12}}@media(min-width: 2000px){.u-gc-3\\/13\\@from-gigantic{--gc-start: 3;--gc-end: 13}}@media(max-width: 1999px){.u-gc-3\\/13\\@to-gigantic{--gc-start: 3;--gc-end: 13}}@media(min-width: 2000px){.u-gc-4\\/1\\@from-gigantic{--gc-start: 4;--gc-end: 1}}@media(max-width: 1999px){.u-gc-4\\/1\\@to-gigantic{--gc-start: 4;--gc-end: 1}}@media(min-width: 2000px){.u-gc-4\\/2\\@from-gigantic{--gc-start: 4;--gc-end: 2}}@media(max-width: 1999px){.u-gc-4\\/2\\@to-gigantic{--gc-start: 4;--gc-end: 2}}@media(min-width: 2000px){.u-gc-4\\/3\\@from-gigantic{--gc-start: 4;--gc-end: 3}}@media(max-width: 1999px){.u-gc-4\\/3\\@to-gigantic{--gc-start: 4;--gc-end: 3}}@media(min-width: 2000px){.u-gc-4\\/4\\@from-gigantic{--gc-start: 4;--gc-end: 4}}@media(max-width: 1999px){.u-gc-4\\/4\\@to-gigantic{--gc-start: 4;--gc-end: 4}}@media(min-width: 2000px){.u-gc-4\\/5\\@from-gigantic{--gc-start: 4;--gc-end: 5}}@media(max-width: 1999px){.u-gc-4\\/5\\@to-gigantic{--gc-start: 4;--gc-end: 5}}@media(min-width: 2000px){.u-gc-4\\/6\\@from-gigantic{--gc-start: 4;--gc-end: 6}}@media(max-width: 1999px){.u-gc-4\\/6\\@to-gigantic{--gc-start: 4;--gc-end: 6}}@media(min-width: 2000px){.u-gc-4\\/7\\@from-gigantic{--gc-start: 4;--gc-end: 7}}@media(max-width: 1999px){.u-gc-4\\/7\\@to-gigantic{--gc-start: 4;--gc-end: 7}}@media(min-width: 2000px){.u-gc-4\\/8\\@from-gigantic{--gc-start: 4;--gc-end: 8}}@media(max-width: 1999px){.u-gc-4\\/8\\@to-gigantic{--gc-start: 4;--gc-end: 8}}@media(min-width: 2000px){.u-gc-4\\/9\\@from-gigantic{--gc-start: 4;--gc-end: 9}}@media(max-width: 1999px){.u-gc-4\\/9\\@to-gigantic{--gc-start: 4;--gc-end: 9}}@media(min-width: 2000px){.u-gc-4\\/10\\@from-gigantic{--gc-start: 4;--gc-end: 10}}@media(max-width: 1999px){.u-gc-4\\/10\\@to-gigantic{--gc-start: 4;--gc-end: 10}}@media(min-width: 2000px){.u-gc-4\\/11\\@from-gigantic{--gc-start: 4;--gc-end: 11}}@media(max-width: 1999px){.u-gc-4\\/11\\@to-gigantic{--gc-start: 4;--gc-end: 11}}@media(min-width: 2000px){.u-gc-4\\/12\\@from-gigantic{--gc-start: 4;--gc-end: 12}}@media(max-width: 1999px){.u-gc-4\\/12\\@to-gigantic{--gc-start: 4;--gc-end: 12}}@media(min-width: 2000px){.u-gc-4\\/13\\@from-gigantic{--gc-start: 4;--gc-end: 13}}@media(max-width: 1999px){.u-gc-4\\/13\\@to-gigantic{--gc-start: 4;--gc-end: 13}}@media(min-width: 2000px){.u-gc-5\\/1\\@from-gigantic{--gc-start: 5;--gc-end: 1}}@media(max-width: 1999px){.u-gc-5\\/1\\@to-gigantic{--gc-start: 5;--gc-end: 1}}@media(min-width: 2000px){.u-gc-5\\/2\\@from-gigantic{--gc-start: 5;--gc-end: 2}}@media(max-width: 1999px){.u-gc-5\\/2\\@to-gigantic{--gc-start: 5;--gc-end: 2}}@media(min-width: 2000px){.u-gc-5\\/3\\@from-gigantic{--gc-start: 5;--gc-end: 3}}@media(max-width: 1999px){.u-gc-5\\/3\\@to-gigantic{--gc-start: 5;--gc-end: 3}}@media(min-width: 2000px){.u-gc-5\\/4\\@from-gigantic{--gc-start: 5;--gc-end: 4}}@media(max-width: 1999px){.u-gc-5\\/4\\@to-gigantic{--gc-start: 5;--gc-end: 4}}@media(min-width: 2000px){.u-gc-5\\/5\\@from-gigantic{--gc-start: 5;--gc-end: 5}}@media(max-width: 1999px){.u-gc-5\\/5\\@to-gigantic{--gc-start: 5;--gc-end: 5}}@media(min-width: 2000px){.u-gc-5\\/6\\@from-gigantic{--gc-start: 5;--gc-end: 6}}@media(max-width: 1999px){.u-gc-5\\/6\\@to-gigantic{--gc-start: 5;--gc-end: 6}}@media(min-width: 2000px){.u-gc-5\\/7\\@from-gigantic{--gc-start: 5;--gc-end: 7}}@media(max-width: 1999px){.u-gc-5\\/7\\@to-gigantic{--gc-start: 5;--gc-end: 7}}@media(min-width: 2000px){.u-gc-5\\/8\\@from-gigantic{--gc-start: 5;--gc-end: 8}}@media(max-width: 1999px){.u-gc-5\\/8\\@to-gigantic{--gc-start: 5;--gc-end: 8}}@media(min-width: 2000px){.u-gc-5\\/9\\@from-gigantic{--gc-start: 5;--gc-end: 9}}@media(max-width: 1999px){.u-gc-5\\/9\\@to-gigantic{--gc-start: 5;--gc-end: 9}}@media(min-width: 2000px){.u-gc-5\\/10\\@from-gigantic{--gc-start: 5;--gc-end: 10}}@media(max-width: 1999px){.u-gc-5\\/10\\@to-gigantic{--gc-start: 5;--gc-end: 10}}@media(min-width: 2000px){.u-gc-5\\/11\\@from-gigantic{--gc-start: 5;--gc-end: 11}}@media(max-width: 1999px){.u-gc-5\\/11\\@to-gigantic{--gc-start: 5;--gc-end: 11}}@media(min-width: 2000px){.u-gc-5\\/12\\@from-gigantic{--gc-start: 5;--gc-end: 12}}@media(max-width: 1999px){.u-gc-5\\/12\\@to-gigantic{--gc-start: 5;--gc-end: 12}}@media(min-width: 2000px){.u-gc-5\\/13\\@from-gigantic{--gc-start: 5;--gc-end: 13}}@media(max-width: 1999px){.u-gc-5\\/13\\@to-gigantic{--gc-start: 5;--gc-end: 13}}@media(min-width: 2000px){.u-gc-6\\/1\\@from-gigantic{--gc-start: 6;--gc-end: 1}}@media(max-width: 1999px){.u-gc-6\\/1\\@to-gigantic{--gc-start: 6;--gc-end: 1}}@media(min-width: 2000px){.u-gc-6\\/2\\@from-gigantic{--gc-start: 6;--gc-end: 2}}@media(max-width: 1999px){.u-gc-6\\/2\\@to-gigantic{--gc-start: 6;--gc-end: 2}}@media(min-width: 2000px){.u-gc-6\\/3\\@from-gigantic{--gc-start: 6;--gc-end: 3}}@media(max-width: 1999px){.u-gc-6\\/3\\@to-gigantic{--gc-start: 6;--gc-end: 3}}@media(min-width: 2000px){.u-gc-6\\/4\\@from-gigantic{--gc-start: 6;--gc-end: 4}}@media(max-width: 1999px){.u-gc-6\\/4\\@to-gigantic{--gc-start: 6;--gc-end: 4}}@media(min-width: 2000px){.u-gc-6\\/5\\@from-gigantic{--gc-start: 6;--gc-end: 5}}@media(max-width: 1999px){.u-gc-6\\/5\\@to-gigantic{--gc-start: 6;--gc-end: 5}}@media(min-width: 2000px){.u-gc-6\\/6\\@from-gigantic{--gc-start: 6;--gc-end: 6}}@media(max-width: 1999px){.u-gc-6\\/6\\@to-gigantic{--gc-start: 6;--gc-end: 6}}@media(min-width: 2000px){.u-gc-6\\/7\\@from-gigantic{--gc-start: 6;--gc-end: 7}}@media(max-width: 1999px){.u-gc-6\\/7\\@to-gigantic{--gc-start: 6;--gc-end: 7}}@media(min-width: 2000px){.u-gc-6\\/8\\@from-gigantic{--gc-start: 6;--gc-end: 8}}@media(max-width: 1999px){.u-gc-6\\/8\\@to-gigantic{--gc-start: 6;--gc-end: 8}}@media(min-width: 2000px){.u-gc-6\\/9\\@from-gigantic{--gc-start: 6;--gc-end: 9}}@media(max-width: 1999px){.u-gc-6\\/9\\@to-gigantic{--gc-start: 6;--gc-end: 9}}@media(min-width: 2000px){.u-gc-6\\/10\\@from-gigantic{--gc-start: 6;--gc-end: 10}}@media(max-width: 1999px){.u-gc-6\\/10\\@to-gigantic{--gc-start: 6;--gc-end: 10}}@media(min-width: 2000px){.u-gc-6\\/11\\@from-gigantic{--gc-start: 6;--gc-end: 11}}@media(max-width: 1999px){.u-gc-6\\/11\\@to-gigantic{--gc-start: 6;--gc-end: 11}}@media(min-width: 2000px){.u-gc-6\\/12\\@from-gigantic{--gc-start: 6;--gc-end: 12}}@media(max-width: 1999px){.u-gc-6\\/12\\@to-gigantic{--gc-start: 6;--gc-end: 12}}@media(min-width: 2000px){.u-gc-6\\/13\\@from-gigantic{--gc-start: 6;--gc-end: 13}}@media(max-width: 1999px){.u-gc-6\\/13\\@to-gigantic{--gc-start: 6;--gc-end: 13}}@media(min-width: 2000px){.u-gc-7\\/1\\@from-gigantic{--gc-start: 7;--gc-end: 1}}@media(max-width: 1999px){.u-gc-7\\/1\\@to-gigantic{--gc-start: 7;--gc-end: 1}}@media(min-width: 2000px){.u-gc-7\\/2\\@from-gigantic{--gc-start: 7;--gc-end: 2}}@media(max-width: 1999px){.u-gc-7\\/2\\@to-gigantic{--gc-start: 7;--gc-end: 2}}@media(min-width: 2000px){.u-gc-7\\/3\\@from-gigantic{--gc-start: 7;--gc-end: 3}}@media(max-width: 1999px){.u-gc-7\\/3\\@to-gigantic{--gc-start: 7;--gc-end: 3}}@media(min-width: 2000px){.u-gc-7\\/4\\@from-gigantic{--gc-start: 7;--gc-end: 4}}@media(max-width: 1999px){.u-gc-7\\/4\\@to-gigantic{--gc-start: 7;--gc-end: 4}}@media(min-width: 2000px){.u-gc-7\\/5\\@from-gigantic{--gc-start: 7;--gc-end: 5}}@media(max-width: 1999px){.u-gc-7\\/5\\@to-gigantic{--gc-start: 7;--gc-end: 5}}@media(min-width: 2000px){.u-gc-7\\/6\\@from-gigantic{--gc-start: 7;--gc-end: 6}}@media(max-width: 1999px){.u-gc-7\\/6\\@to-gigantic{--gc-start: 7;--gc-end: 6}}@media(min-width: 2000px){.u-gc-7\\/7\\@from-gigantic{--gc-start: 7;--gc-end: 7}}@media(max-width: 1999px){.u-gc-7\\/7\\@to-gigantic{--gc-start: 7;--gc-end: 7}}@media(min-width: 2000px){.u-gc-7\\/8\\@from-gigantic{--gc-start: 7;--gc-end: 8}}@media(max-width: 1999px){.u-gc-7\\/8\\@to-gigantic{--gc-start: 7;--gc-end: 8}}@media(min-width: 2000px){.u-gc-7\\/9\\@from-gigantic{--gc-start: 7;--gc-end: 9}}@media(max-width: 1999px){.u-gc-7\\/9\\@to-gigantic{--gc-start: 7;--gc-end: 9}}@media(min-width: 2000px){.u-gc-7\\/10\\@from-gigantic{--gc-start: 7;--gc-end: 10}}@media(max-width: 1999px){.u-gc-7\\/10\\@to-gigantic{--gc-start: 7;--gc-end: 10}}@media(min-width: 2000px){.u-gc-7\\/11\\@from-gigantic{--gc-start: 7;--gc-end: 11}}@media(max-width: 1999px){.u-gc-7\\/11\\@to-gigantic{--gc-start: 7;--gc-end: 11}}@media(min-width: 2000px){.u-gc-7\\/12\\@from-gigantic{--gc-start: 7;--gc-end: 12}}@media(max-width: 1999px){.u-gc-7\\/12\\@to-gigantic{--gc-start: 7;--gc-end: 12}}@media(min-width: 2000px){.u-gc-7\\/13\\@from-gigantic{--gc-start: 7;--gc-end: 13}}@media(max-width: 1999px){.u-gc-7\\/13\\@to-gigantic{--gc-start: 7;--gc-end: 13}}@media(min-width: 2000px){.u-gc-8\\/1\\@from-gigantic{--gc-start: 8;--gc-end: 1}}@media(max-width: 1999px){.u-gc-8\\/1\\@to-gigantic{--gc-start: 8;--gc-end: 1}}@media(min-width: 2000px){.u-gc-8\\/2\\@from-gigantic{--gc-start: 8;--gc-end: 2}}@media(max-width: 1999px){.u-gc-8\\/2\\@to-gigantic{--gc-start: 8;--gc-end: 2}}@media(min-width: 2000px){.u-gc-8\\/3\\@from-gigantic{--gc-start: 8;--gc-end: 3}}@media(max-width: 1999px){.u-gc-8\\/3\\@to-gigantic{--gc-start: 8;--gc-end: 3}}@media(min-width: 2000px){.u-gc-8\\/4\\@from-gigantic{--gc-start: 8;--gc-end: 4}}@media(max-width: 1999px){.u-gc-8\\/4\\@to-gigantic{--gc-start: 8;--gc-end: 4}}@media(min-width: 2000px){.u-gc-8\\/5\\@from-gigantic{--gc-start: 8;--gc-end: 5}}@media(max-width: 1999px){.u-gc-8\\/5\\@to-gigantic{--gc-start: 8;--gc-end: 5}}@media(min-width: 2000px){.u-gc-8\\/6\\@from-gigantic{--gc-start: 8;--gc-end: 6}}@media(max-width: 1999px){.u-gc-8\\/6\\@to-gigantic{--gc-start: 8;--gc-end: 6}}@media(min-width: 2000px){.u-gc-8\\/7\\@from-gigantic{--gc-start: 8;--gc-end: 7}}@media(max-width: 1999px){.u-gc-8\\/7\\@to-gigantic{--gc-start: 8;--gc-end: 7}}@media(min-width: 2000px){.u-gc-8\\/8\\@from-gigantic{--gc-start: 8;--gc-end: 8}}@media(max-width: 1999px){.u-gc-8\\/8\\@to-gigantic{--gc-start: 8;--gc-end: 8}}@media(min-width: 2000px){.u-gc-8\\/9\\@from-gigantic{--gc-start: 8;--gc-end: 9}}@media(max-width: 1999px){.u-gc-8\\/9\\@to-gigantic{--gc-start: 8;--gc-end: 9}}@media(min-width: 2000px){.u-gc-8\\/10\\@from-gigantic{--gc-start: 8;--gc-end: 10}}@media(max-width: 1999px){.u-gc-8\\/10\\@to-gigantic{--gc-start: 8;--gc-end: 10}}@media(min-width: 2000px){.u-gc-8\\/11\\@from-gigantic{--gc-start: 8;--gc-end: 11}}@media(max-width: 1999px){.u-gc-8\\/11\\@to-gigantic{--gc-start: 8;--gc-end: 11}}@media(min-width: 2000px){.u-gc-8\\/12\\@from-gigantic{--gc-start: 8;--gc-end: 12}}@media(max-width: 1999px){.u-gc-8\\/12\\@to-gigantic{--gc-start: 8;--gc-end: 12}}@media(min-width: 2000px){.u-gc-8\\/13\\@from-gigantic{--gc-start: 8;--gc-end: 13}}@media(max-width: 1999px){.u-gc-8\\/13\\@to-gigantic{--gc-start: 8;--gc-end: 13}}@media(min-width: 2000px){.u-gc-9\\/1\\@from-gigantic{--gc-start: 9;--gc-end: 1}}@media(max-width: 1999px){.u-gc-9\\/1\\@to-gigantic{--gc-start: 9;--gc-end: 1}}@media(min-width: 2000px){.u-gc-9\\/2\\@from-gigantic{--gc-start: 9;--gc-end: 2}}@media(max-width: 1999px){.u-gc-9\\/2\\@to-gigantic{--gc-start: 9;--gc-end: 2}}@media(min-width: 2000px){.u-gc-9\\/3\\@from-gigantic{--gc-start: 9;--gc-end: 3}}@media(max-width: 1999px){.u-gc-9\\/3\\@to-gigantic{--gc-start: 9;--gc-end: 3}}@media(min-width: 2000px){.u-gc-9\\/4\\@from-gigantic{--gc-start: 9;--gc-end: 4}}@media(max-width: 1999px){.u-gc-9\\/4\\@to-gigantic{--gc-start: 9;--gc-end: 4}}@media(min-width: 2000px){.u-gc-9\\/5\\@from-gigantic{--gc-start: 9;--gc-end: 5}}@media(max-width: 1999px){.u-gc-9\\/5\\@to-gigantic{--gc-start: 9;--gc-end: 5}}@media(min-width: 2000px){.u-gc-9\\/6\\@from-gigantic{--gc-start: 9;--gc-end: 6}}@media(max-width: 1999px){.u-gc-9\\/6\\@to-gigantic{--gc-start: 9;--gc-end: 6}}@media(min-width: 2000px){.u-gc-9\\/7\\@from-gigantic{--gc-start: 9;--gc-end: 7}}@media(max-width: 1999px){.u-gc-9\\/7\\@to-gigantic{--gc-start: 9;--gc-end: 7}}@media(min-width: 2000px){.u-gc-9\\/8\\@from-gigantic{--gc-start: 9;--gc-end: 8}}@media(max-width: 1999px){.u-gc-9\\/8\\@to-gigantic{--gc-start: 9;--gc-end: 8}}@media(min-width: 2000px){.u-gc-9\\/9\\@from-gigantic{--gc-start: 9;--gc-end: 9}}@media(max-width: 1999px){.u-gc-9\\/9\\@to-gigantic{--gc-start: 9;--gc-end: 9}}@media(min-width: 2000px){.u-gc-9\\/10\\@from-gigantic{--gc-start: 9;--gc-end: 10}}@media(max-width: 1999px){.u-gc-9\\/10\\@to-gigantic{--gc-start: 9;--gc-end: 10}}@media(min-width: 2000px){.u-gc-9\\/11\\@from-gigantic{--gc-start: 9;--gc-end: 11}}@media(max-width: 1999px){.u-gc-9\\/11\\@to-gigantic{--gc-start: 9;--gc-end: 11}}@media(min-width: 2000px){.u-gc-9\\/12\\@from-gigantic{--gc-start: 9;--gc-end: 12}}@media(max-width: 1999px){.u-gc-9\\/12\\@to-gigantic{--gc-start: 9;--gc-end: 12}}@media(min-width: 2000px){.u-gc-9\\/13\\@from-gigantic{--gc-start: 9;--gc-end: 13}}@media(max-width: 1999px){.u-gc-9\\/13\\@to-gigantic{--gc-start: 9;--gc-end: 13}}@media(min-width: 2000px){.u-gc-10\\/1\\@from-gigantic{--gc-start: 10;--gc-end: 1}}@media(max-width: 1999px){.u-gc-10\\/1\\@to-gigantic{--gc-start: 10;--gc-end: 1}}@media(min-width: 2000px){.u-gc-10\\/2\\@from-gigantic{--gc-start: 10;--gc-end: 2}}@media(max-width: 1999px){.u-gc-10\\/2\\@to-gigantic{--gc-start: 10;--gc-end: 2}}@media(min-width: 2000px){.u-gc-10\\/3\\@from-gigantic{--gc-start: 10;--gc-end: 3}}@media(max-width: 1999px){.u-gc-10\\/3\\@to-gigantic{--gc-start: 10;--gc-end: 3}}@media(min-width: 2000px){.u-gc-10\\/4\\@from-gigantic{--gc-start: 10;--gc-end: 4}}@media(max-width: 1999px){.u-gc-10\\/4\\@to-gigantic{--gc-start: 10;--gc-end: 4}}@media(min-width: 2000px){.u-gc-10\\/5\\@from-gigantic{--gc-start: 10;--gc-end: 5}}@media(max-width: 1999px){.u-gc-10\\/5\\@to-gigantic{--gc-start: 10;--gc-end: 5}}@media(min-width: 2000px){.u-gc-10\\/6\\@from-gigantic{--gc-start: 10;--gc-end: 6}}@media(max-width: 1999px){.u-gc-10\\/6\\@to-gigantic{--gc-start: 10;--gc-end: 6}}@media(min-width: 2000px){.u-gc-10\\/7\\@from-gigantic{--gc-start: 10;--gc-end: 7}}@media(max-width: 1999px){.u-gc-10\\/7\\@to-gigantic{--gc-start: 10;--gc-end: 7}}@media(min-width: 2000px){.u-gc-10\\/8\\@from-gigantic{--gc-start: 10;--gc-end: 8}}@media(max-width: 1999px){.u-gc-10\\/8\\@to-gigantic{--gc-start: 10;--gc-end: 8}}@media(min-width: 2000px){.u-gc-10\\/9\\@from-gigantic{--gc-start: 10;--gc-end: 9}}@media(max-width: 1999px){.u-gc-10\\/9\\@to-gigantic{--gc-start: 10;--gc-end: 9}}@media(min-width: 2000px){.u-gc-10\\/10\\@from-gigantic{--gc-start: 10;--gc-end: 10}}@media(max-width: 1999px){.u-gc-10\\/10\\@to-gigantic{--gc-start: 10;--gc-end: 10}}@media(min-width: 2000px){.u-gc-10\\/11\\@from-gigantic{--gc-start: 10;--gc-end: 11}}@media(max-width: 1999px){.u-gc-10\\/11\\@to-gigantic{--gc-start: 10;--gc-end: 11}}@media(min-width: 2000px){.u-gc-10\\/12\\@from-gigantic{--gc-start: 10;--gc-end: 12}}@media(max-width: 1999px){.u-gc-10\\/12\\@to-gigantic{--gc-start: 10;--gc-end: 12}}@media(min-width: 2000px){.u-gc-10\\/13\\@from-gigantic{--gc-start: 10;--gc-end: 13}}@media(max-width: 1999px){.u-gc-10\\/13\\@to-gigantic{--gc-start: 10;--gc-end: 13}}@media(min-width: 2000px){.u-gc-11\\/1\\@from-gigantic{--gc-start: 11;--gc-end: 1}}@media(max-width: 1999px){.u-gc-11\\/1\\@to-gigantic{--gc-start: 11;--gc-end: 1}}@media(min-width: 2000px){.u-gc-11\\/2\\@from-gigantic{--gc-start: 11;--gc-end: 2}}@media(max-width: 1999px){.u-gc-11\\/2\\@to-gigantic{--gc-start: 11;--gc-end: 2}}@media(min-width: 2000px){.u-gc-11\\/3\\@from-gigantic{--gc-start: 11;--gc-end: 3}}@media(max-width: 1999px){.u-gc-11\\/3\\@to-gigantic{--gc-start: 11;--gc-end: 3}}@media(min-width: 2000px){.u-gc-11\\/4\\@from-gigantic{--gc-start: 11;--gc-end: 4}}@media(max-width: 1999px){.u-gc-11\\/4\\@to-gigantic{--gc-start: 11;--gc-end: 4}}@media(min-width: 2000px){.u-gc-11\\/5\\@from-gigantic{--gc-start: 11;--gc-end: 5}}@media(max-width: 1999px){.u-gc-11\\/5\\@to-gigantic{--gc-start: 11;--gc-end: 5}}@media(min-width: 2000px){.u-gc-11\\/6\\@from-gigantic{--gc-start: 11;--gc-end: 6}}@media(max-width: 1999px){.u-gc-11\\/6\\@to-gigantic{--gc-start: 11;--gc-end: 6}}@media(min-width: 2000px){.u-gc-11\\/7\\@from-gigantic{--gc-start: 11;--gc-end: 7}}@media(max-width: 1999px){.u-gc-11\\/7\\@to-gigantic{--gc-start: 11;--gc-end: 7}}@media(min-width: 2000px){.u-gc-11\\/8\\@from-gigantic{--gc-start: 11;--gc-end: 8}}@media(max-width: 1999px){.u-gc-11\\/8\\@to-gigantic{--gc-start: 11;--gc-end: 8}}@media(min-width: 2000px){.u-gc-11\\/9\\@from-gigantic{--gc-start: 11;--gc-end: 9}}@media(max-width: 1999px){.u-gc-11\\/9\\@to-gigantic{--gc-start: 11;--gc-end: 9}}@media(min-width: 2000px){.u-gc-11\\/10\\@from-gigantic{--gc-start: 11;--gc-end: 10}}@media(max-width: 1999px){.u-gc-11\\/10\\@to-gigantic{--gc-start: 11;--gc-end: 10}}@media(min-width: 2000px){.u-gc-11\\/11\\@from-gigantic{--gc-start: 11;--gc-end: 11}}@media(max-width: 1999px){.u-gc-11\\/11\\@to-gigantic{--gc-start: 11;--gc-end: 11}}@media(min-width: 2000px){.u-gc-11\\/12\\@from-gigantic{--gc-start: 11;--gc-end: 12}}@media(max-width: 1999px){.u-gc-11\\/12\\@to-gigantic{--gc-start: 11;--gc-end: 12}}@media(min-width: 2000px){.u-gc-11\\/13\\@from-gigantic{--gc-start: 11;--gc-end: 13}}@media(max-width: 1999px){.u-gc-11\\/13\\@to-gigantic{--gc-start: 11;--gc-end: 13}}@media(min-width: 2000px){.u-gc-12\\/1\\@from-gigantic{--gc-start: 12;--gc-end: 1}}@media(max-width: 1999px){.u-gc-12\\/1\\@to-gigantic{--gc-start: 12;--gc-end: 1}}@media(min-width: 2000px){.u-gc-12\\/2\\@from-gigantic{--gc-start: 12;--gc-end: 2}}@media(max-width: 1999px){.u-gc-12\\/2\\@to-gigantic{--gc-start: 12;--gc-end: 2}}@media(min-width: 2000px){.u-gc-12\\/3\\@from-gigantic{--gc-start: 12;--gc-end: 3}}@media(max-width: 1999px){.u-gc-12\\/3\\@to-gigantic{--gc-start: 12;--gc-end: 3}}@media(min-width: 2000px){.u-gc-12\\/4\\@from-gigantic{--gc-start: 12;--gc-end: 4}}@media(max-width: 1999px){.u-gc-12\\/4\\@to-gigantic{--gc-start: 12;--gc-end: 4}}@media(min-width: 2000px){.u-gc-12\\/5\\@from-gigantic{--gc-start: 12;--gc-end: 5}}@media(max-width: 1999px){.u-gc-12\\/5\\@to-gigantic{--gc-start: 12;--gc-end: 5}}@media(min-width: 2000px){.u-gc-12\\/6\\@from-gigantic{--gc-start: 12;--gc-end: 6}}@media(max-width: 1999px){.u-gc-12\\/6\\@to-gigantic{--gc-start: 12;--gc-end: 6}}@media(min-width: 2000px){.u-gc-12\\/7\\@from-gigantic{--gc-start: 12;--gc-end: 7}}@media(max-width: 1999px){.u-gc-12\\/7\\@to-gigantic{--gc-start: 12;--gc-end: 7}}@media(min-width: 2000px){.u-gc-12\\/8\\@from-gigantic{--gc-start: 12;--gc-end: 8}}@media(max-width: 1999px){.u-gc-12\\/8\\@to-gigantic{--gc-start: 12;--gc-end: 8}}@media(min-width: 2000px){.u-gc-12\\/9\\@from-gigantic{--gc-start: 12;--gc-end: 9}}@media(max-width: 1999px){.u-gc-12\\/9\\@to-gigantic{--gc-start: 12;--gc-end: 9}}@media(min-width: 2000px){.u-gc-12\\/10\\@from-gigantic{--gc-start: 12;--gc-end: 10}}@media(max-width: 1999px){.u-gc-12\\/10\\@to-gigantic{--gc-start: 12;--gc-end: 10}}@media(min-width: 2000px){.u-gc-12\\/11\\@from-gigantic{--gc-start: 12;--gc-end: 11}}@media(max-width: 1999px){.u-gc-12\\/11\\@to-gigantic{--gc-start: 12;--gc-end: 11}}@media(min-width: 2000px){.u-gc-12\\/12\\@from-gigantic{--gc-start: 12;--gc-end: 12}}@media(max-width: 1999px){.u-gc-12\\/12\\@to-gigantic{--gc-start: 12;--gc-end: 12}}@media(min-width: 2000px){.u-gc-12\\/13\\@from-gigantic{--gc-start: 12;--gc-end: 13}}@media(max-width: 1999px){.u-gc-12\\/13\\@to-gigantic{--gc-start: 12;--gc-end: 13}}@media(min-width: 2000px){.u-gc-13\\/1\\@from-gigantic{--gc-start: 13;--gc-end: 1}}@media(max-width: 1999px){.u-gc-13\\/1\\@to-gigantic{--gc-start: 13;--gc-end: 1}}@media(min-width: 2000px){.u-gc-13\\/2\\@from-gigantic{--gc-start: 13;--gc-end: 2}}@media(max-width: 1999px){.u-gc-13\\/2\\@to-gigantic{--gc-start: 13;--gc-end: 2}}@media(min-width: 2000px){.u-gc-13\\/3\\@from-gigantic{--gc-start: 13;--gc-end: 3}}@media(max-width: 1999px){.u-gc-13\\/3\\@to-gigantic{--gc-start: 13;--gc-end: 3}}@media(min-width: 2000px){.u-gc-13\\/4\\@from-gigantic{--gc-start: 13;--gc-end: 4}}@media(max-width: 1999px){.u-gc-13\\/4\\@to-gigantic{--gc-start: 13;--gc-end: 4}}@media(min-width: 2000px){.u-gc-13\\/5\\@from-gigantic{--gc-start: 13;--gc-end: 5}}@media(max-width: 1999px){.u-gc-13\\/5\\@to-gigantic{--gc-start: 13;--gc-end: 5}}@media(min-width: 2000px){.u-gc-13\\/6\\@from-gigantic{--gc-start: 13;--gc-end: 6}}@media(max-width: 1999px){.u-gc-13\\/6\\@to-gigantic{--gc-start: 13;--gc-end: 6}}@media(min-width: 2000px){.u-gc-13\\/7\\@from-gigantic{--gc-start: 13;--gc-end: 7}}@media(max-width: 1999px){.u-gc-13\\/7\\@to-gigantic{--gc-start: 13;--gc-end: 7}}@media(min-width: 2000px){.u-gc-13\\/8\\@from-gigantic{--gc-start: 13;--gc-end: 8}}@media(max-width: 1999px){.u-gc-13\\/8\\@to-gigantic{--gc-start: 13;--gc-end: 8}}@media(min-width: 2000px){.u-gc-13\\/9\\@from-gigantic{--gc-start: 13;--gc-end: 9}}@media(max-width: 1999px){.u-gc-13\\/9\\@to-gigantic{--gc-start: 13;--gc-end: 9}}@media(min-width: 2000px){.u-gc-13\\/10\\@from-gigantic{--gc-start: 13;--gc-end: 10}}@media(max-width: 1999px){.u-gc-13\\/10\\@to-gigantic{--gc-start: 13;--gc-end: 10}}@media(min-width: 2000px){.u-gc-13\\/11\\@from-gigantic{--gc-start: 13;--gc-end: 11}}@media(max-width: 1999px){.u-gc-13\\/11\\@to-gigantic{--gc-start: 13;--gc-end: 11}}@media(min-width: 2000px){.u-gc-13\\/12\\@from-gigantic{--gc-start: 13;--gc-end: 12}}@media(max-width: 1999px){.u-gc-13\\/12\\@to-gigantic{--gc-start: 13;--gc-end: 12}}@media(min-width: 2000px){.u-gc-13\\/13\\@from-gigantic{--gc-start: 13;--gc-end: 13}}@media(max-width: 1999px){.u-gc-13\\/13\\@to-gigantic{--gc-start: 13;--gc-end: 13}}@media(min-width: 2400px){.u-gc-1\\/1\\@from-colossal{--gc-start: 1;--gc-end: 1}}@media(max-width: 2399px){.u-gc-1\\/1\\@to-colossal{--gc-start: 1;--gc-end: 1}}@media(min-width: 2400px){.u-gc-1\\/2\\@from-colossal{--gc-start: 1;--gc-end: 2}}@media(max-width: 2399px){.u-gc-1\\/2\\@to-colossal{--gc-start: 1;--gc-end: 2}}@media(min-width: 2400px){.u-gc-1\\/3\\@from-colossal{--gc-start: 1;--gc-end: 3}}@media(max-width: 2399px){.u-gc-1\\/3\\@to-colossal{--gc-start: 1;--gc-end: 3}}@media(min-width: 2400px){.u-gc-1\\/4\\@from-colossal{--gc-start: 1;--gc-end: 4}}@media(max-width: 2399px){.u-gc-1\\/4\\@to-colossal{--gc-start: 1;--gc-end: 4}}@media(min-width: 2400px){.u-gc-1\\/5\\@from-colossal{--gc-start: 1;--gc-end: 5}}@media(max-width: 2399px){.u-gc-1\\/5\\@to-colossal{--gc-start: 1;--gc-end: 5}}@media(min-width: 2400px){.u-gc-1\\/6\\@from-colossal{--gc-start: 1;--gc-end: 6}}@media(max-width: 2399px){.u-gc-1\\/6\\@to-colossal{--gc-start: 1;--gc-end: 6}}@media(min-width: 2400px){.u-gc-1\\/7\\@from-colossal{--gc-start: 1;--gc-end: 7}}@media(max-width: 2399px){.u-gc-1\\/7\\@to-colossal{--gc-start: 1;--gc-end: 7}}@media(min-width: 2400px){.u-gc-1\\/8\\@from-colossal{--gc-start: 1;--gc-end: 8}}@media(max-width: 2399px){.u-gc-1\\/8\\@to-colossal{--gc-start: 1;--gc-end: 8}}@media(min-width: 2400px){.u-gc-1\\/9\\@from-colossal{--gc-start: 1;--gc-end: 9}}@media(max-width: 2399px){.u-gc-1\\/9\\@to-colossal{--gc-start: 1;--gc-end: 9}}@media(min-width: 2400px){.u-gc-1\\/10\\@from-colossal{--gc-start: 1;--gc-end: 10}}@media(max-width: 2399px){.u-gc-1\\/10\\@to-colossal{--gc-start: 1;--gc-end: 10}}@media(min-width: 2400px){.u-gc-1\\/11\\@from-colossal{--gc-start: 1;--gc-end: 11}}@media(max-width: 2399px){.u-gc-1\\/11\\@to-colossal{--gc-start: 1;--gc-end: 11}}@media(min-width: 2400px){.u-gc-1\\/12\\@from-colossal{--gc-start: 1;--gc-end: 12}}@media(max-width: 2399px){.u-gc-1\\/12\\@to-colossal{--gc-start: 1;--gc-end: 12}}@media(min-width: 2400px){.u-gc-1\\/13\\@from-colossal{--gc-start: 1;--gc-end: 13}}@media(max-width: 2399px){.u-gc-1\\/13\\@to-colossal{--gc-start: 1;--gc-end: 13}}@media(min-width: 2400px){.u-gc-2\\/1\\@from-colossal{--gc-start: 2;--gc-end: 1}}@media(max-width: 2399px){.u-gc-2\\/1\\@to-colossal{--gc-start: 2;--gc-end: 1}}@media(min-width: 2400px){.u-gc-2\\/2\\@from-colossal{--gc-start: 2;--gc-end: 2}}@media(max-width: 2399px){.u-gc-2\\/2\\@to-colossal{--gc-start: 2;--gc-end: 2}}@media(min-width: 2400px){.u-gc-2\\/3\\@from-colossal{--gc-start: 2;--gc-end: 3}}@media(max-width: 2399px){.u-gc-2\\/3\\@to-colossal{--gc-start: 2;--gc-end: 3}}@media(min-width: 2400px){.u-gc-2\\/4\\@from-colossal{--gc-start: 2;--gc-end: 4}}@media(max-width: 2399px){.u-gc-2\\/4\\@to-colossal{--gc-start: 2;--gc-end: 4}}@media(min-width: 2400px){.u-gc-2\\/5\\@from-colossal{--gc-start: 2;--gc-end: 5}}@media(max-width: 2399px){.u-gc-2\\/5\\@to-colossal{--gc-start: 2;--gc-end: 5}}@media(min-width: 2400px){.u-gc-2\\/6\\@from-colossal{--gc-start: 2;--gc-end: 6}}@media(max-width: 2399px){.u-gc-2\\/6\\@to-colossal{--gc-start: 2;--gc-end: 6}}@media(min-width: 2400px){.u-gc-2\\/7\\@from-colossal{--gc-start: 2;--gc-end: 7}}@media(max-width: 2399px){.u-gc-2\\/7\\@to-colossal{--gc-start: 2;--gc-end: 7}}@media(min-width: 2400px){.u-gc-2\\/8\\@from-colossal{--gc-start: 2;--gc-end: 8}}@media(max-width: 2399px){.u-gc-2\\/8\\@to-colossal{--gc-start: 2;--gc-end: 8}}@media(min-width: 2400px){.u-gc-2\\/9\\@from-colossal{--gc-start: 2;--gc-end: 9}}@media(max-width: 2399px){.u-gc-2\\/9\\@to-colossal{--gc-start: 2;--gc-end: 9}}@media(min-width: 2400px){.u-gc-2\\/10\\@from-colossal{--gc-start: 2;--gc-end: 10}}@media(max-width: 2399px){.u-gc-2\\/10\\@to-colossal{--gc-start: 2;--gc-end: 10}}@media(min-width: 2400px){.u-gc-2\\/11\\@from-colossal{--gc-start: 2;--gc-end: 11}}@media(max-width: 2399px){.u-gc-2\\/11\\@to-colossal{--gc-start: 2;--gc-end: 11}}@media(min-width: 2400px){.u-gc-2\\/12\\@from-colossal{--gc-start: 2;--gc-end: 12}}@media(max-width: 2399px){.u-gc-2\\/12\\@to-colossal{--gc-start: 2;--gc-end: 12}}@media(min-width: 2400px){.u-gc-2\\/13\\@from-colossal{--gc-start: 2;--gc-end: 13}}@media(max-width: 2399px){.u-gc-2\\/13\\@to-colossal{--gc-start: 2;--gc-end: 13}}@media(min-width: 2400px){.u-gc-3\\/1\\@from-colossal{--gc-start: 3;--gc-end: 1}}@media(max-width: 2399px){.u-gc-3\\/1\\@to-colossal{--gc-start: 3;--gc-end: 1}}@media(min-width: 2400px){.u-gc-3\\/2\\@from-colossal{--gc-start: 3;--gc-end: 2}}@media(max-width: 2399px){.u-gc-3\\/2\\@to-colossal{--gc-start: 3;--gc-end: 2}}@media(min-width: 2400px){.u-gc-3\\/3\\@from-colossal{--gc-start: 3;--gc-end: 3}}@media(max-width: 2399px){.u-gc-3\\/3\\@to-colossal{--gc-start: 3;--gc-end: 3}}@media(min-width: 2400px){.u-gc-3\\/4\\@from-colossal{--gc-start: 3;--gc-end: 4}}@media(max-width: 2399px){.u-gc-3\\/4\\@to-colossal{--gc-start: 3;--gc-end: 4}}@media(min-width: 2400px){.u-gc-3\\/5\\@from-colossal{--gc-start: 3;--gc-end: 5}}@media(max-width: 2399px){.u-gc-3\\/5\\@to-colossal{--gc-start: 3;--gc-end: 5}}@media(min-width: 2400px){.u-gc-3\\/6\\@from-colossal{--gc-start: 3;--gc-end: 6}}@media(max-width: 2399px){.u-gc-3\\/6\\@to-colossal{--gc-start: 3;--gc-end: 6}}@media(min-width: 2400px){.u-gc-3\\/7\\@from-colossal{--gc-start: 3;--gc-end: 7}}@media(max-width: 2399px){.u-gc-3\\/7\\@to-colossal{--gc-start: 3;--gc-end: 7}}@media(min-width: 2400px){.u-gc-3\\/8\\@from-colossal{--gc-start: 3;--gc-end: 8}}@media(max-width: 2399px){.u-gc-3\\/8\\@to-colossal{--gc-start: 3;--gc-end: 8}}@media(min-width: 2400px){.u-gc-3\\/9\\@from-colossal{--gc-start: 3;--gc-end: 9}}@media(max-width: 2399px){.u-gc-3\\/9\\@to-colossal{--gc-start: 3;--gc-end: 9}}@media(min-width: 2400px){.u-gc-3\\/10\\@from-colossal{--gc-start: 3;--gc-end: 10}}@media(max-width: 2399px){.u-gc-3\\/10\\@to-colossal{--gc-start: 3;--gc-end: 10}}@media(min-width: 2400px){.u-gc-3\\/11\\@from-colossal{--gc-start: 3;--gc-end: 11}}@media(max-width: 2399px){.u-gc-3\\/11\\@to-colossal{--gc-start: 3;--gc-end: 11}}@media(min-width: 2400px){.u-gc-3\\/12\\@from-colossal{--gc-start: 3;--gc-end: 12}}@media(max-width: 2399px){.u-gc-3\\/12\\@to-colossal{--gc-start: 3;--gc-end: 12}}@media(min-width: 2400px){.u-gc-3\\/13\\@from-colossal{--gc-start: 3;--gc-end: 13}}@media(max-width: 2399px){.u-gc-3\\/13\\@to-colossal{--gc-start: 3;--gc-end: 13}}@media(min-width: 2400px){.u-gc-4\\/1\\@from-colossal{--gc-start: 4;--gc-end: 1}}@media(max-width: 2399px){.u-gc-4\\/1\\@to-colossal{--gc-start: 4;--gc-end: 1}}@media(min-width: 2400px){.u-gc-4\\/2\\@from-colossal{--gc-start: 4;--gc-end: 2}}@media(max-width: 2399px){.u-gc-4\\/2\\@to-colossal{--gc-start: 4;--gc-end: 2}}@media(min-width: 2400px){.u-gc-4\\/3\\@from-colossal{--gc-start: 4;--gc-end: 3}}@media(max-width: 2399px){.u-gc-4\\/3\\@to-colossal{--gc-start: 4;--gc-end: 3}}@media(min-width: 2400px){.u-gc-4\\/4\\@from-colossal{--gc-start: 4;--gc-end: 4}}@media(max-width: 2399px){.u-gc-4\\/4\\@to-colossal{--gc-start: 4;--gc-end: 4}}@media(min-width: 2400px){.u-gc-4\\/5\\@from-colossal{--gc-start: 4;--gc-end: 5}}@media(max-width: 2399px){.u-gc-4\\/5\\@to-colossal{--gc-start: 4;--gc-end: 5}}@media(min-width: 2400px){.u-gc-4\\/6\\@from-colossal{--gc-start: 4;--gc-end: 6}}@media(max-width: 2399px){.u-gc-4\\/6\\@to-colossal{--gc-start: 4;--gc-end: 6}}@media(min-width: 2400px){.u-gc-4\\/7\\@from-colossal{--gc-start: 4;--gc-end: 7}}@media(max-width: 2399px){.u-gc-4\\/7\\@to-colossal{--gc-start: 4;--gc-end: 7}}@media(min-width: 2400px){.u-gc-4\\/8\\@from-colossal{--gc-start: 4;--gc-end: 8}}@media(max-width: 2399px){.u-gc-4\\/8\\@to-colossal{--gc-start: 4;--gc-end: 8}}@media(min-width: 2400px){.u-gc-4\\/9\\@from-colossal{--gc-start: 4;--gc-end: 9}}@media(max-width: 2399px){.u-gc-4\\/9\\@to-colossal{--gc-start: 4;--gc-end: 9}}@media(min-width: 2400px){.u-gc-4\\/10\\@from-colossal{--gc-start: 4;--gc-end: 10}}@media(max-width: 2399px){.u-gc-4\\/10\\@to-colossal{--gc-start: 4;--gc-end: 10}}@media(min-width: 2400px){.u-gc-4\\/11\\@from-colossal{--gc-start: 4;--gc-end: 11}}@media(max-width: 2399px){.u-gc-4\\/11\\@to-colossal{--gc-start: 4;--gc-end: 11}}@media(min-width: 2400px){.u-gc-4\\/12\\@from-colossal{--gc-start: 4;--gc-end: 12}}@media(max-width: 2399px){.u-gc-4\\/12\\@to-colossal{--gc-start: 4;--gc-end: 12}}@media(min-width: 2400px){.u-gc-4\\/13\\@from-colossal{--gc-start: 4;--gc-end: 13}}@media(max-width: 2399px){.u-gc-4\\/13\\@to-colossal{--gc-start: 4;--gc-end: 13}}@media(min-width: 2400px){.u-gc-5\\/1\\@from-colossal{--gc-start: 5;--gc-end: 1}}@media(max-width: 2399px){.u-gc-5\\/1\\@to-colossal{--gc-start: 5;--gc-end: 1}}@media(min-width: 2400px){.u-gc-5\\/2\\@from-colossal{--gc-start: 5;--gc-end: 2}}@media(max-width: 2399px){.u-gc-5\\/2\\@to-colossal{--gc-start: 5;--gc-end: 2}}@media(min-width: 2400px){.u-gc-5\\/3\\@from-colossal{--gc-start: 5;--gc-end: 3}}@media(max-width: 2399px){.u-gc-5\\/3\\@to-colossal{--gc-start: 5;--gc-end: 3}}@media(min-width: 2400px){.u-gc-5\\/4\\@from-colossal{--gc-start: 5;--gc-end: 4}}@media(max-width: 2399px){.u-gc-5\\/4\\@to-colossal{--gc-start: 5;--gc-end: 4}}@media(min-width: 2400px){.u-gc-5\\/5\\@from-colossal{--gc-start: 5;--gc-end: 5}}@media(max-width: 2399px){.u-gc-5\\/5\\@to-colossal{--gc-start: 5;--gc-end: 5}}@media(min-width: 2400px){.u-gc-5\\/6\\@from-colossal{--gc-start: 5;--gc-end: 6}}@media(max-width: 2399px){.u-gc-5\\/6\\@to-colossal{--gc-start: 5;--gc-end: 6}}@media(min-width: 2400px){.u-gc-5\\/7\\@from-colossal{--gc-start: 5;--gc-end: 7}}@media(max-width: 2399px){.u-gc-5\\/7\\@to-colossal{--gc-start: 5;--gc-end: 7}}@media(min-width: 2400px){.u-gc-5\\/8\\@from-colossal{--gc-start: 5;--gc-end: 8}}@media(max-width: 2399px){.u-gc-5\\/8\\@to-colossal{--gc-start: 5;--gc-end: 8}}@media(min-width: 2400px){.u-gc-5\\/9\\@from-colossal{--gc-start: 5;--gc-end: 9}}@media(max-width: 2399px){.u-gc-5\\/9\\@to-colossal{--gc-start: 5;--gc-end: 9}}@media(min-width: 2400px){.u-gc-5\\/10\\@from-colossal{--gc-start: 5;--gc-end: 10}}@media(max-width: 2399px){.u-gc-5\\/10\\@to-colossal{--gc-start: 5;--gc-end: 10}}@media(min-width: 2400px){.u-gc-5\\/11\\@from-colossal{--gc-start: 5;--gc-end: 11}}@media(max-width: 2399px){.u-gc-5\\/11\\@to-colossal{--gc-start: 5;--gc-end: 11}}@media(min-width: 2400px){.u-gc-5\\/12\\@from-colossal{--gc-start: 5;--gc-end: 12}}@media(max-width: 2399px){.u-gc-5\\/12\\@to-colossal{--gc-start: 5;--gc-end: 12}}@media(min-width: 2400px){.u-gc-5\\/13\\@from-colossal{--gc-start: 5;--gc-end: 13}}@media(max-width: 2399px){.u-gc-5\\/13\\@to-colossal{--gc-start: 5;--gc-end: 13}}@media(min-width: 2400px){.u-gc-6\\/1\\@from-colossal{--gc-start: 6;--gc-end: 1}}@media(max-width: 2399px){.u-gc-6\\/1\\@to-colossal{--gc-start: 6;--gc-end: 1}}@media(min-width: 2400px){.u-gc-6\\/2\\@from-colossal{--gc-start: 6;--gc-end: 2}}@media(max-width: 2399px){.u-gc-6\\/2\\@to-colossal{--gc-start: 6;--gc-end: 2}}@media(min-width: 2400px){.u-gc-6\\/3\\@from-colossal{--gc-start: 6;--gc-end: 3}}@media(max-width: 2399px){.u-gc-6\\/3\\@to-colossal{--gc-start: 6;--gc-end: 3}}@media(min-width: 2400px){.u-gc-6\\/4\\@from-colossal{--gc-start: 6;--gc-end: 4}}@media(max-width: 2399px){.u-gc-6\\/4\\@to-colossal{--gc-start: 6;--gc-end: 4}}@media(min-width: 2400px){.u-gc-6\\/5\\@from-colossal{--gc-start: 6;--gc-end: 5}}@media(max-width: 2399px){.u-gc-6\\/5\\@to-colossal{--gc-start: 6;--gc-end: 5}}@media(min-width: 2400px){.u-gc-6\\/6\\@from-colossal{--gc-start: 6;--gc-end: 6}}@media(max-width: 2399px){.u-gc-6\\/6\\@to-colossal{--gc-start: 6;--gc-end: 6}}@media(min-width: 2400px){.u-gc-6\\/7\\@from-colossal{--gc-start: 6;--gc-end: 7}}@media(max-width: 2399px){.u-gc-6\\/7\\@to-colossal{--gc-start: 6;--gc-end: 7}}@media(min-width: 2400px){.u-gc-6\\/8\\@from-colossal{--gc-start: 6;--gc-end: 8}}@media(max-width: 2399px){.u-gc-6\\/8\\@to-colossal{--gc-start: 6;--gc-end: 8}}@media(min-width: 2400px){.u-gc-6\\/9\\@from-colossal{--gc-start: 6;--gc-end: 9}}@media(max-width: 2399px){.u-gc-6\\/9\\@to-colossal{--gc-start: 6;--gc-end: 9}}@media(min-width: 2400px){.u-gc-6\\/10\\@from-colossal{--gc-start: 6;--gc-end: 10}}@media(max-width: 2399px){.u-gc-6\\/10\\@to-colossal{--gc-start: 6;--gc-end: 10}}@media(min-width: 2400px){.u-gc-6\\/11\\@from-colossal{--gc-start: 6;--gc-end: 11}}@media(max-width: 2399px){.u-gc-6\\/11\\@to-colossal{--gc-start: 6;--gc-end: 11}}@media(min-width: 2400px){.u-gc-6\\/12\\@from-colossal{--gc-start: 6;--gc-end: 12}}@media(max-width: 2399px){.u-gc-6\\/12\\@to-colossal{--gc-start: 6;--gc-end: 12}}@media(min-width: 2400px){.u-gc-6\\/13\\@from-colossal{--gc-start: 6;--gc-end: 13}}@media(max-width: 2399px){.u-gc-6\\/13\\@to-colossal{--gc-start: 6;--gc-end: 13}}@media(min-width: 2400px){.u-gc-7\\/1\\@from-colossal{--gc-start: 7;--gc-end: 1}}@media(max-width: 2399px){.u-gc-7\\/1\\@to-colossal{--gc-start: 7;--gc-end: 1}}@media(min-width: 2400px){.u-gc-7\\/2\\@from-colossal{--gc-start: 7;--gc-end: 2}}@media(max-width: 2399px){.u-gc-7\\/2\\@to-colossal{--gc-start: 7;--gc-end: 2}}@media(min-width: 2400px){.u-gc-7\\/3\\@from-colossal{--gc-start: 7;--gc-end: 3}}@media(max-width: 2399px){.u-gc-7\\/3\\@to-colossal{--gc-start: 7;--gc-end: 3}}@media(min-width: 2400px){.u-gc-7\\/4\\@from-colossal{--gc-start: 7;--gc-end: 4}}@media(max-width: 2399px){.u-gc-7\\/4\\@to-colossal{--gc-start: 7;--gc-end: 4}}@media(min-width: 2400px){.u-gc-7\\/5\\@from-colossal{--gc-start: 7;--gc-end: 5}}@media(max-width: 2399px){.u-gc-7\\/5\\@to-colossal{--gc-start: 7;--gc-end: 5}}@media(min-width: 2400px){.u-gc-7\\/6\\@from-colossal{--gc-start: 7;--gc-end: 6}}@media(max-width: 2399px){.u-gc-7\\/6\\@to-colossal{--gc-start: 7;--gc-end: 6}}@media(min-width: 2400px){.u-gc-7\\/7\\@from-colossal{--gc-start: 7;--gc-end: 7}}@media(max-width: 2399px){.u-gc-7\\/7\\@to-colossal{--gc-start: 7;--gc-end: 7}}@media(min-width: 2400px){.u-gc-7\\/8\\@from-colossal{--gc-start: 7;--gc-end: 8}}@media(max-width: 2399px){.u-gc-7\\/8\\@to-colossal{--gc-start: 7;--gc-end: 8}}@media(min-width: 2400px){.u-gc-7\\/9\\@from-colossal{--gc-start: 7;--gc-end: 9}}@media(max-width: 2399px){.u-gc-7\\/9\\@to-colossal{--gc-start: 7;--gc-end: 9}}@media(min-width: 2400px){.u-gc-7\\/10\\@from-colossal{--gc-start: 7;--gc-end: 10}}@media(max-width: 2399px){.u-gc-7\\/10\\@to-colossal{--gc-start: 7;--gc-end: 10}}@media(min-width: 2400px){.u-gc-7\\/11\\@from-colossal{--gc-start: 7;--gc-end: 11}}@media(max-width: 2399px){.u-gc-7\\/11\\@to-colossal{--gc-start: 7;--gc-end: 11}}@media(min-width: 2400px){.u-gc-7\\/12\\@from-colossal{--gc-start: 7;--gc-end: 12}}@media(max-width: 2399px){.u-gc-7\\/12\\@to-colossal{--gc-start: 7;--gc-end: 12}}@media(min-width: 2400px){.u-gc-7\\/13\\@from-colossal{--gc-start: 7;--gc-end: 13}}@media(max-width: 2399px){.u-gc-7\\/13\\@to-colossal{--gc-start: 7;--gc-end: 13}}@media(min-width: 2400px){.u-gc-8\\/1\\@from-colossal{--gc-start: 8;--gc-end: 1}}@media(max-width: 2399px){.u-gc-8\\/1\\@to-colossal{--gc-start: 8;--gc-end: 1}}@media(min-width: 2400px){.u-gc-8\\/2\\@from-colossal{--gc-start: 8;--gc-end: 2}}@media(max-width: 2399px){.u-gc-8\\/2\\@to-colossal{--gc-start: 8;--gc-end: 2}}@media(min-width: 2400px){.u-gc-8\\/3\\@from-colossal{--gc-start: 8;--gc-end: 3}}@media(max-width: 2399px){.u-gc-8\\/3\\@to-colossal{--gc-start: 8;--gc-end: 3}}@media(min-width: 2400px){.u-gc-8\\/4\\@from-colossal{--gc-start: 8;--gc-end: 4}}@media(max-width: 2399px){.u-gc-8\\/4\\@to-colossal{--gc-start: 8;--gc-end: 4}}@media(min-width: 2400px){.u-gc-8\\/5\\@from-colossal{--gc-start: 8;--gc-end: 5}}@media(max-width: 2399px){.u-gc-8\\/5\\@to-colossal{--gc-start: 8;--gc-end: 5}}@media(min-width: 2400px){.u-gc-8\\/6\\@from-colossal{--gc-start: 8;--gc-end: 6}}@media(max-width: 2399px){.u-gc-8\\/6\\@to-colossal{--gc-start: 8;--gc-end: 6}}@media(min-width: 2400px){.u-gc-8\\/7\\@from-colossal{--gc-start: 8;--gc-end: 7}}@media(max-width: 2399px){.u-gc-8\\/7\\@to-colossal{--gc-start: 8;--gc-end: 7}}@media(min-width: 2400px){.u-gc-8\\/8\\@from-colossal{--gc-start: 8;--gc-end: 8}}@media(max-width: 2399px){.u-gc-8\\/8\\@to-colossal{--gc-start: 8;--gc-end: 8}}@media(min-width: 2400px){.u-gc-8\\/9\\@from-colossal{--gc-start: 8;--gc-end: 9}}@media(max-width: 2399px){.u-gc-8\\/9\\@to-colossal{--gc-start: 8;--gc-end: 9}}@media(min-width: 2400px){.u-gc-8\\/10\\@from-colossal{--gc-start: 8;--gc-end: 10}}@media(max-width: 2399px){.u-gc-8\\/10\\@to-colossal{--gc-start: 8;--gc-end: 10}}@media(min-width: 2400px){.u-gc-8\\/11\\@from-colossal{--gc-start: 8;--gc-end: 11}}@media(max-width: 2399px){.u-gc-8\\/11\\@to-colossal{--gc-start: 8;--gc-end: 11}}@media(min-width: 2400px){.u-gc-8\\/12\\@from-colossal{--gc-start: 8;--gc-end: 12}}@media(max-width: 2399px){.u-gc-8\\/12\\@to-colossal{--gc-start: 8;--gc-end: 12}}@media(min-width: 2400px){.u-gc-8\\/13\\@from-colossal{--gc-start: 8;--gc-end: 13}}@media(max-width: 2399px){.u-gc-8\\/13\\@to-colossal{--gc-start: 8;--gc-end: 13}}@media(min-width: 2400px){.u-gc-9\\/1\\@from-colossal{--gc-start: 9;--gc-end: 1}}@media(max-width: 2399px){.u-gc-9\\/1\\@to-colossal{--gc-start: 9;--gc-end: 1}}@media(min-width: 2400px){.u-gc-9\\/2\\@from-colossal{--gc-start: 9;--gc-end: 2}}@media(max-width: 2399px){.u-gc-9\\/2\\@to-colossal{--gc-start: 9;--gc-end: 2}}@media(min-width: 2400px){.u-gc-9\\/3\\@from-colossal{--gc-start: 9;--gc-end: 3}}@media(max-width: 2399px){.u-gc-9\\/3\\@to-colossal{--gc-start: 9;--gc-end: 3}}@media(min-width: 2400px){.u-gc-9\\/4\\@from-colossal{--gc-start: 9;--gc-end: 4}}@media(max-width: 2399px){.u-gc-9\\/4\\@to-colossal{--gc-start: 9;--gc-end: 4}}@media(min-width: 2400px){.u-gc-9\\/5\\@from-colossal{--gc-start: 9;--gc-end: 5}}@media(max-width: 2399px){.u-gc-9\\/5\\@to-colossal{--gc-start: 9;--gc-end: 5}}@media(min-width: 2400px){.u-gc-9\\/6\\@from-colossal{--gc-start: 9;--gc-end: 6}}@media(max-width: 2399px){.u-gc-9\\/6\\@to-colossal{--gc-start: 9;--gc-end: 6}}@media(min-width: 2400px){.u-gc-9\\/7\\@from-colossal{--gc-start: 9;--gc-end: 7}}@media(max-width: 2399px){.u-gc-9\\/7\\@to-colossal{--gc-start: 9;--gc-end: 7}}@media(min-width: 2400px){.u-gc-9\\/8\\@from-colossal{--gc-start: 9;--gc-end: 8}}@media(max-width: 2399px){.u-gc-9\\/8\\@to-colossal{--gc-start: 9;--gc-end: 8}}@media(min-width: 2400px){.u-gc-9\\/9\\@from-colossal{--gc-start: 9;--gc-end: 9}}@media(max-width: 2399px){.u-gc-9\\/9\\@to-colossal{--gc-start: 9;--gc-end: 9}}@media(min-width: 2400px){.u-gc-9\\/10\\@from-colossal{--gc-start: 9;--gc-end: 10}}@media(max-width: 2399px){.u-gc-9\\/10\\@to-colossal{--gc-start: 9;--gc-end: 10}}@media(min-width: 2400px){.u-gc-9\\/11\\@from-colossal{--gc-start: 9;--gc-end: 11}}@media(max-width: 2399px){.u-gc-9\\/11\\@to-colossal{--gc-start: 9;--gc-end: 11}}@media(min-width: 2400px){.u-gc-9\\/12\\@from-colossal{--gc-start: 9;--gc-end: 12}}@media(max-width: 2399px){.u-gc-9\\/12\\@to-colossal{--gc-start: 9;--gc-end: 12}}@media(min-width: 2400px){.u-gc-9\\/13\\@from-colossal{--gc-start: 9;--gc-end: 13}}@media(max-width: 2399px){.u-gc-9\\/13\\@to-colossal{--gc-start: 9;--gc-end: 13}}@media(min-width: 2400px){.u-gc-10\\/1\\@from-colossal{--gc-start: 10;--gc-end: 1}}@media(max-width: 2399px){.u-gc-10\\/1\\@to-colossal{--gc-start: 10;--gc-end: 1}}@media(min-width: 2400px){.u-gc-10\\/2\\@from-colossal{--gc-start: 10;--gc-end: 2}}@media(max-width: 2399px){.u-gc-10\\/2\\@to-colossal{--gc-start: 10;--gc-end: 2}}@media(min-width: 2400px){.u-gc-10\\/3\\@from-colossal{--gc-start: 10;--gc-end: 3}}@media(max-width: 2399px){.u-gc-10\\/3\\@to-colossal{--gc-start: 10;--gc-end: 3}}@media(min-width: 2400px){.u-gc-10\\/4\\@from-colossal{--gc-start: 10;--gc-end: 4}}@media(max-width: 2399px){.u-gc-10\\/4\\@to-colossal{--gc-start: 10;--gc-end: 4}}@media(min-width: 2400px){.u-gc-10\\/5\\@from-colossal{--gc-start: 10;--gc-end: 5}}@media(max-width: 2399px){.u-gc-10\\/5\\@to-colossal{--gc-start: 10;--gc-end: 5}}@media(min-width: 2400px){.u-gc-10\\/6\\@from-colossal{--gc-start: 10;--gc-end: 6}}@media(max-width: 2399px){.u-gc-10\\/6\\@to-colossal{--gc-start: 10;--gc-end: 6}}@media(min-width: 2400px){.u-gc-10\\/7\\@from-colossal{--gc-start: 10;--gc-end: 7}}@media(max-width: 2399px){.u-gc-10\\/7\\@to-colossal{--gc-start: 10;--gc-end: 7}}@media(min-width: 2400px){.u-gc-10\\/8\\@from-colossal{--gc-start: 10;--gc-end: 8}}@media(max-width: 2399px){.u-gc-10\\/8\\@to-colossal{--gc-start: 10;--gc-end: 8}}@media(min-width: 2400px){.u-gc-10\\/9\\@from-colossal{--gc-start: 10;--gc-end: 9}}@media(max-width: 2399px){.u-gc-10\\/9\\@to-colossal{--gc-start: 10;--gc-end: 9}}@media(min-width: 2400px){.u-gc-10\\/10\\@from-colossal{--gc-start: 10;--gc-end: 10}}@media(max-width: 2399px){.u-gc-10\\/10\\@to-colossal{--gc-start: 10;--gc-end: 10}}@media(min-width: 2400px){.u-gc-10\\/11\\@from-colossal{--gc-start: 10;--gc-end: 11}}@media(max-width: 2399px){.u-gc-10\\/11\\@to-colossal{--gc-start: 10;--gc-end: 11}}@media(min-width: 2400px){.u-gc-10\\/12\\@from-colossal{--gc-start: 10;--gc-end: 12}}@media(max-width: 2399px){.u-gc-10\\/12\\@to-colossal{--gc-start: 10;--gc-end: 12}}@media(min-width: 2400px){.u-gc-10\\/13\\@from-colossal{--gc-start: 10;--gc-end: 13}}@media(max-width: 2399px){.u-gc-10\\/13\\@to-colossal{--gc-start: 10;--gc-end: 13}}@media(min-width: 2400px){.u-gc-11\\/1\\@from-colossal{--gc-start: 11;--gc-end: 1}}@media(max-width: 2399px){.u-gc-11\\/1\\@to-colossal{--gc-start: 11;--gc-end: 1}}@media(min-width: 2400px){.u-gc-11\\/2\\@from-colossal{--gc-start: 11;--gc-end: 2}}@media(max-width: 2399px){.u-gc-11\\/2\\@to-colossal{--gc-start: 11;--gc-end: 2}}@media(min-width: 2400px){.u-gc-11\\/3\\@from-colossal{--gc-start: 11;--gc-end: 3}}@media(max-width: 2399px){.u-gc-11\\/3\\@to-colossal{--gc-start: 11;--gc-end: 3}}@media(min-width: 2400px){.u-gc-11\\/4\\@from-colossal{--gc-start: 11;--gc-end: 4}}@media(max-width: 2399px){.u-gc-11\\/4\\@to-colossal{--gc-start: 11;--gc-end: 4}}@media(min-width: 2400px){.u-gc-11\\/5\\@from-colossal{--gc-start: 11;--gc-end: 5}}@media(max-width: 2399px){.u-gc-11\\/5\\@to-colossal{--gc-start: 11;--gc-end: 5}}@media(min-width: 2400px){.u-gc-11\\/6\\@from-colossal{--gc-start: 11;--gc-end: 6}}@media(max-width: 2399px){.u-gc-11\\/6\\@to-colossal{--gc-start: 11;--gc-end: 6}}@media(min-width: 2400px){.u-gc-11\\/7\\@from-colossal{--gc-start: 11;--gc-end: 7}}@media(max-width: 2399px){.u-gc-11\\/7\\@to-colossal{--gc-start: 11;--gc-end: 7}}@media(min-width: 2400px){.u-gc-11\\/8\\@from-colossal{--gc-start: 11;--gc-end: 8}}@media(max-width: 2399px){.u-gc-11\\/8\\@to-colossal{--gc-start: 11;--gc-end: 8}}@media(min-width: 2400px){.u-gc-11\\/9\\@from-colossal{--gc-start: 11;--gc-end: 9}}@media(max-width: 2399px){.u-gc-11\\/9\\@to-colossal{--gc-start: 11;--gc-end: 9}}@media(min-width: 2400px){.u-gc-11\\/10\\@from-colossal{--gc-start: 11;--gc-end: 10}}@media(max-width: 2399px){.u-gc-11\\/10\\@to-colossal{--gc-start: 11;--gc-end: 10}}@media(min-width: 2400px){.u-gc-11\\/11\\@from-colossal{--gc-start: 11;--gc-end: 11}}@media(max-width: 2399px){.u-gc-11\\/11\\@to-colossal{--gc-start: 11;--gc-end: 11}}@media(min-width: 2400px){.u-gc-11\\/12\\@from-colossal{--gc-start: 11;--gc-end: 12}}@media(max-width: 2399px){.u-gc-11\\/12\\@to-colossal{--gc-start: 11;--gc-end: 12}}@media(min-width: 2400px){.u-gc-11\\/13\\@from-colossal{--gc-start: 11;--gc-end: 13}}@media(max-width: 2399px){.u-gc-11\\/13\\@to-colossal{--gc-start: 11;--gc-end: 13}}@media(min-width: 2400px){.u-gc-12\\/1\\@from-colossal{--gc-start: 12;--gc-end: 1}}@media(max-width: 2399px){.u-gc-12\\/1\\@to-colossal{--gc-start: 12;--gc-end: 1}}@media(min-width: 2400px){.u-gc-12\\/2\\@from-colossal{--gc-start: 12;--gc-end: 2}}@media(max-width: 2399px){.u-gc-12\\/2\\@to-colossal{--gc-start: 12;--gc-end: 2}}@media(min-width: 2400px){.u-gc-12\\/3\\@from-colossal{--gc-start: 12;--gc-end: 3}}@media(max-width: 2399px){.u-gc-12\\/3\\@to-colossal{--gc-start: 12;--gc-end: 3}}@media(min-width: 2400px){.u-gc-12\\/4\\@from-colossal{--gc-start: 12;--gc-end: 4}}@media(max-width: 2399px){.u-gc-12\\/4\\@to-colossal{--gc-start: 12;--gc-end: 4}}@media(min-width: 2400px){.u-gc-12\\/5\\@from-colossal{--gc-start: 12;--gc-end: 5}}@media(max-width: 2399px){.u-gc-12\\/5\\@to-colossal{--gc-start: 12;--gc-end: 5}}@media(min-width: 2400px){.u-gc-12\\/6\\@from-colossal{--gc-start: 12;--gc-end: 6}}@media(max-width: 2399px){.u-gc-12\\/6\\@to-colossal{--gc-start: 12;--gc-end: 6}}@media(min-width: 2400px){.u-gc-12\\/7\\@from-colossal{--gc-start: 12;--gc-end: 7}}@media(max-width: 2399px){.u-gc-12\\/7\\@to-colossal{--gc-start: 12;--gc-end: 7}}@media(min-width: 2400px){.u-gc-12\\/8\\@from-colossal{--gc-start: 12;--gc-end: 8}}@media(max-width: 2399px){.u-gc-12\\/8\\@to-colossal{--gc-start: 12;--gc-end: 8}}@media(min-width: 2400px){.u-gc-12\\/9\\@from-colossal{--gc-start: 12;--gc-end: 9}}@media(max-width: 2399px){.u-gc-12\\/9\\@to-colossal{--gc-start: 12;--gc-end: 9}}@media(min-width: 2400px){.u-gc-12\\/10\\@from-colossal{--gc-start: 12;--gc-end: 10}}@media(max-width: 2399px){.u-gc-12\\/10\\@to-colossal{--gc-start: 12;--gc-end: 10}}@media(min-width: 2400px){.u-gc-12\\/11\\@from-colossal{--gc-start: 12;--gc-end: 11}}@media(max-width: 2399px){.u-gc-12\\/11\\@to-colossal{--gc-start: 12;--gc-end: 11}}@media(min-width: 2400px){.u-gc-12\\/12\\@from-colossal{--gc-start: 12;--gc-end: 12}}@media(max-width: 2399px){.u-gc-12\\/12\\@to-colossal{--gc-start: 12;--gc-end: 12}}@media(min-width: 2400px){.u-gc-12\\/13\\@from-colossal{--gc-start: 12;--gc-end: 13}}@media(max-width: 2399px){.u-gc-12\\/13\\@to-colossal{--gc-start: 12;--gc-end: 13}}@media(min-width: 2400px){.u-gc-13\\/1\\@from-colossal{--gc-start: 13;--gc-end: 1}}@media(max-width: 2399px){.u-gc-13\\/1\\@to-colossal{--gc-start: 13;--gc-end: 1}}@media(min-width: 2400px){.u-gc-13\\/2\\@from-colossal{--gc-start: 13;--gc-end: 2}}@media(max-width: 2399px){.u-gc-13\\/2\\@to-colossal{--gc-start: 13;--gc-end: 2}}@media(min-width: 2400px){.u-gc-13\\/3\\@from-colossal{--gc-start: 13;--gc-end: 3}}@media(max-width: 2399px){.u-gc-13\\/3\\@to-colossal{--gc-start: 13;--gc-end: 3}}@media(min-width: 2400px){.u-gc-13\\/4\\@from-colossal{--gc-start: 13;--gc-end: 4}}@media(max-width: 2399px){.u-gc-13\\/4\\@to-colossal{--gc-start: 13;--gc-end: 4}}@media(min-width: 2400px){.u-gc-13\\/5\\@from-colossal{--gc-start: 13;--gc-end: 5}}@media(max-width: 2399px){.u-gc-13\\/5\\@to-colossal{--gc-start: 13;--gc-end: 5}}@media(min-width: 2400px){.u-gc-13\\/6\\@from-colossal{--gc-start: 13;--gc-end: 6}}@media(max-width: 2399px){.u-gc-13\\/6\\@to-colossal{--gc-start: 13;--gc-end: 6}}@media(min-width: 2400px){.u-gc-13\\/7\\@from-colossal{--gc-start: 13;--gc-end: 7}}@media(max-width: 2399px){.u-gc-13\\/7\\@to-colossal{--gc-start: 13;--gc-end: 7}}@media(min-width: 2400px){.u-gc-13\\/8\\@from-colossal{--gc-start: 13;--gc-end: 8}}@media(max-width: 2399px){.u-gc-13\\/8\\@to-colossal{--gc-start: 13;--gc-end: 8}}@media(min-width: 2400px){.u-gc-13\\/9\\@from-colossal{--gc-start: 13;--gc-end: 9}}@media(max-width: 2399px){.u-gc-13\\/9\\@to-colossal{--gc-start: 13;--gc-end: 9}}@media(min-width: 2400px){.u-gc-13\\/10\\@from-colossal{--gc-start: 13;--gc-end: 10}}@media(max-width: 2399px){.u-gc-13\\/10\\@to-colossal{--gc-start: 13;--gc-end: 10}}@media(min-width: 2400px){.u-gc-13\\/11\\@from-colossal{--gc-start: 13;--gc-end: 11}}@media(max-width: 2399px){.u-gc-13\\/11\\@to-colossal{--gc-start: 13;--gc-end: 11}}@media(min-width: 2400px){.u-gc-13\\/12\\@from-colossal{--gc-start: 13;--gc-end: 12}}@media(max-width: 2399px){.u-gc-13\\/12\\@to-colossal{--gc-start: 13;--gc-end: 12}}@media(min-width: 2400px){.u-gc-13\\/13\\@from-colossal{--gc-start: 13;--gc-end: 13}}@media(max-width: 2399px){.u-gc-13\\/13\\@to-colossal{--gc-start: 13;--gc-end: 13}}.u-padding-gutter{padding:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-gutter\\@from-tiny{padding:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-gutter\\@to-tiny{padding:var(--grid-gutter) !important}}.u-padding-xs{padding:vh(5) !important}@media(min-width: 500px){.u-padding-xs\\@from-tiny{padding:vh(5) !important}}@media(max-width: 499px){.u-padding-xs\\@to-tiny{padding:vh(5) !important}}.u-padding-sm{padding:vh(7.5) !important}@media(min-width: 500px){.u-padding-sm\\@from-tiny{padding:vh(7.5) !important}}@media(max-width: 499px){.u-padding-sm\\@to-tiny{padding:vh(7.5) !important}}.u-padding-md{padding:vh(10) !important}@media(min-width: 500px){.u-padding-md\\@from-tiny{padding:vh(10) !important}}@media(max-width: 499px){.u-padding-md\\@to-tiny{padding:vh(10) !important}}.u-padding-lg{padding:vh(12.5) !important}@media(min-width: 500px){.u-padding-lg\\@from-tiny{padding:vh(12.5) !important}}@media(max-width: 499px){.u-padding-lg\\@to-tiny{padding:vh(12.5) !important}}.u-padding-xl{padding:vh(15) !important}@media(min-width: 500px){.u-padding-xl\\@from-tiny{padding:vh(15) !important}}@media(max-width: 499px){.u-padding-xl\\@to-tiny{padding:vh(15) !important}}.u-padding{padding:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding\\@from-tiny{padding:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding\\@to-tiny{padding:var(--grid-gutter) !important}}.u-padding-none{padding:0 !important}@media(min-width: 500px){.u-padding-none\\@from-tiny{padding:0 !important}}@media(max-width: 499px){.u-padding-none\\@to-tiny{padding:0 !important}}.u-padding-top-gutter{padding-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-top-gutter\\@from-tiny{padding-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-top-gutter\\@to-tiny{padding-top:var(--grid-gutter) !important}}.u-padding-top-xs{padding-top:vh(5) !important}@media(min-width: 500px){.u-padding-top-xs\\@from-tiny{padding-top:vh(5) !important}}@media(max-width: 499px){.u-padding-top-xs\\@to-tiny{padding-top:vh(5) !important}}.u-padding-top-sm{padding-top:vh(7.5) !important}@media(min-width: 500px){.u-padding-top-sm\\@from-tiny{padding-top:vh(7.5) !important}}@media(max-width: 499px){.u-padding-top-sm\\@to-tiny{padding-top:vh(7.5) !important}}.u-padding-top-md{padding-top:vh(10) !important}@media(min-width: 500px){.u-padding-top-md\\@from-tiny{padding-top:vh(10) !important}}@media(max-width: 499px){.u-padding-top-md\\@to-tiny{padding-top:vh(10) !important}}.u-padding-top-lg{padding-top:vh(12.5) !important}@media(min-width: 500px){.u-padding-top-lg\\@from-tiny{padding-top:vh(12.5) !important}}@media(max-width: 499px){.u-padding-top-lg\\@to-tiny{padding-top:vh(12.5) !important}}.u-padding-top-xl{padding-top:vh(15) !important}@media(min-width: 500px){.u-padding-top-xl\\@from-tiny{padding-top:vh(15) !important}}@media(max-width: 499px){.u-padding-top-xl\\@to-tiny{padding-top:vh(15) !important}}.u-padding-top{padding-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-top\\@from-tiny{padding-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-top\\@to-tiny{padding-top:var(--grid-gutter) !important}}.u-padding-top-none{padding-top:0 !important}@media(min-width: 500px){.u-padding-top-none\\@from-tiny{padding-top:0 !important}}@media(max-width: 499px){.u-padding-top-none\\@to-tiny{padding-top:0 !important}}.u-padding-right-gutter{padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-right-gutter\\@from-tiny{padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-right-gutter\\@to-tiny{padding-right:var(--grid-gutter) !important}}.u-padding-right-xs{padding-right:vh(5) !important}@media(min-width: 500px){.u-padding-right-xs\\@from-tiny{padding-right:vh(5) !important}}@media(max-width: 499px){.u-padding-right-xs\\@to-tiny{padding-right:vh(5) !important}}.u-padding-right-sm{padding-right:vh(7.5) !important}@media(min-width: 500px){.u-padding-right-sm\\@from-tiny{padding-right:vh(7.5) !important}}@media(max-width: 499px){.u-padding-right-sm\\@to-tiny{padding-right:vh(7.5) !important}}.u-padding-right-md{padding-right:vh(10) !important}@media(min-width: 500px){.u-padding-right-md\\@from-tiny{padding-right:vh(10) !important}}@media(max-width: 499px){.u-padding-right-md\\@to-tiny{padding-right:vh(10) !important}}.u-padding-right-lg{padding-right:vh(12.5) !important}@media(min-width: 500px){.u-padding-right-lg\\@from-tiny{padding-right:vh(12.5) !important}}@media(max-width: 499px){.u-padding-right-lg\\@to-tiny{padding-right:vh(12.5) !important}}.u-padding-right-xl{padding-right:vh(15) !important}@media(min-width: 500px){.u-padding-right-xl\\@from-tiny{padding-right:vh(15) !important}}@media(max-width: 499px){.u-padding-right-xl\\@to-tiny{padding-right:vh(15) !important}}.u-padding-right{padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-right\\@from-tiny{padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-right\\@to-tiny{padding-right:var(--grid-gutter) !important}}.u-padding-right-none{padding-right:0 !important}@media(min-width: 500px){.u-padding-right-none\\@from-tiny{padding-right:0 !important}}@media(max-width: 499px){.u-padding-right-none\\@to-tiny{padding-right:0 !important}}.u-padding-bottom-gutter{padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-bottom-gutter\\@from-tiny{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-bottom-gutter\\@to-tiny{padding-bottom:var(--grid-gutter) !important}}.u-padding-bottom-xs{padding-bottom:vh(5) !important}@media(min-width: 500px){.u-padding-bottom-xs\\@from-tiny{padding-bottom:vh(5) !important}}@media(max-width: 499px){.u-padding-bottom-xs\\@to-tiny{padding-bottom:vh(5) !important}}.u-padding-bottom-sm{padding-bottom:vh(7.5) !important}@media(min-width: 500px){.u-padding-bottom-sm\\@from-tiny{padding-bottom:vh(7.5) !important}}@media(max-width: 499px){.u-padding-bottom-sm\\@to-tiny{padding-bottom:vh(7.5) !important}}.u-padding-bottom-md{padding-bottom:vh(10) !important}@media(min-width: 500px){.u-padding-bottom-md\\@from-tiny{padding-bottom:vh(10) !important}}@media(max-width: 499px){.u-padding-bottom-md\\@to-tiny{padding-bottom:vh(10) !important}}.u-padding-bottom-lg{padding-bottom:vh(12.5) !important}@media(min-width: 500px){.u-padding-bottom-lg\\@from-tiny{padding-bottom:vh(12.5) !important}}@media(max-width: 499px){.u-padding-bottom-lg\\@to-tiny{padding-bottom:vh(12.5) !important}}.u-padding-bottom-xl{padding-bottom:vh(15) !important}@media(min-width: 500px){.u-padding-bottom-xl\\@from-tiny{padding-bottom:vh(15) !important}}@media(max-width: 499px){.u-padding-bottom-xl\\@to-tiny{padding-bottom:vh(15) !important}}.u-padding-bottom{padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-bottom\\@from-tiny{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-bottom\\@to-tiny{padding-bottom:var(--grid-gutter) !important}}.u-padding-bottom-none{padding-bottom:0 !important}@media(min-width: 500px){.u-padding-bottom-none\\@from-tiny{padding-bottom:0 !important}}@media(max-width: 499px){.u-padding-bottom-none\\@to-tiny{padding-bottom:0 !important}}.u-padding-left-gutter{padding-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-left-gutter\\@from-tiny{padding-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-left-gutter\\@to-tiny{padding-left:var(--grid-gutter) !important}}.u-padding-left-xs{padding-left:vh(5) !important}@media(min-width: 500px){.u-padding-left-xs\\@from-tiny{padding-left:vh(5) !important}}@media(max-width: 499px){.u-padding-left-xs\\@to-tiny{padding-left:vh(5) !important}}.u-padding-left-sm{padding-left:vh(7.5) !important}@media(min-width: 500px){.u-padding-left-sm\\@from-tiny{padding-left:vh(7.5) !important}}@media(max-width: 499px){.u-padding-left-sm\\@to-tiny{padding-left:vh(7.5) !important}}.u-padding-left-md{padding-left:vh(10) !important}@media(min-width: 500px){.u-padding-left-md\\@from-tiny{padding-left:vh(10) !important}}@media(max-width: 499px){.u-padding-left-md\\@to-tiny{padding-left:vh(10) !important}}.u-padding-left-lg{padding-left:vh(12.5) !important}@media(min-width: 500px){.u-padding-left-lg\\@from-tiny{padding-left:vh(12.5) !important}}@media(max-width: 499px){.u-padding-left-lg\\@to-tiny{padding-left:vh(12.5) !important}}.u-padding-left-xl{padding-left:vh(15) !important}@media(min-width: 500px){.u-padding-left-xl\\@from-tiny{padding-left:vh(15) !important}}@media(max-width: 499px){.u-padding-left-xl\\@to-tiny{padding-left:vh(15) !important}}.u-padding-left{padding-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-left\\@from-tiny{padding-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-left\\@to-tiny{padding-left:var(--grid-gutter) !important}}.u-padding-left-none{padding-left:0 !important}@media(min-width: 500px){.u-padding-left-none\\@from-tiny{padding-left:0 !important}}@media(max-width: 499px){.u-padding-left-none\\@to-tiny{padding-left:0 !important}}.u-padding-x-gutter{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-x-gutter\\@from-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-x-gutter\\@to-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}.u-padding-x-xs{padding-left:vh(5) !important;padding-right:vh(5) !important}@media(min-width: 500px){.u-padding-x-xs\\@from-tiny{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 499px){.u-padding-x-xs\\@to-tiny{padding-left:vh(5) !important;padding-right:vh(5) !important}}.u-padding-x-sm{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}@media(min-width: 500px){.u-padding-x-sm\\@from-tiny{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 499px){.u-padding-x-sm\\@to-tiny{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}.u-padding-x-md{padding-left:vh(10) !important;padding-right:vh(10) !important}@media(min-width: 500px){.u-padding-x-md\\@from-tiny{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 499px){.u-padding-x-md\\@to-tiny{padding-left:vh(10) !important;padding-right:vh(10) !important}}.u-padding-x-lg{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}@media(min-width: 500px){.u-padding-x-lg\\@from-tiny{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 499px){.u-padding-x-lg\\@to-tiny{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}.u-padding-x-xl{padding-left:vh(15) !important;padding-right:vh(15) !important}@media(min-width: 500px){.u-padding-x-xl\\@from-tiny{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 499px){.u-padding-x-xl\\@to-tiny{padding-left:vh(15) !important;padding-right:vh(15) !important}}.u-padding-x{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-x\\@from-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-x\\@to-tiny{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}.u-padding-x-none{padding-left:0 !important;padding-right:0 !important}@media(min-width: 500px){.u-padding-x-none\\@from-tiny{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 499px){.u-padding-x-none\\@to-tiny{padding-left:0 !important;padding-right:0 !important}}.u-padding-y-gutter{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-y-gutter\\@from-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-y-gutter\\@to-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}.u-padding-y-xs{padding-top:vh(5) !important;padding-bottom:vh(5) !important}@media(min-width: 500px){.u-padding-y-xs\\@from-tiny{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 499px){.u-padding-y-xs\\@to-tiny{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}.u-padding-y-sm{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}@media(min-width: 500px){.u-padding-y-sm\\@from-tiny{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 499px){.u-padding-y-sm\\@to-tiny{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}.u-padding-y-md{padding-top:vh(10) !important;padding-bottom:vh(10) !important}@media(min-width: 500px){.u-padding-y-md\\@from-tiny{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 499px){.u-padding-y-md\\@to-tiny{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}.u-padding-y-lg{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}@media(min-width: 500px){.u-padding-y-lg\\@from-tiny{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 499px){.u-padding-y-lg\\@to-tiny{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}.u-padding-y-xl{padding-top:vh(15) !important;padding-bottom:vh(15) !important}@media(min-width: 500px){.u-padding-y-xl\\@from-tiny{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 499px){.u-padding-y-xl\\@to-tiny{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}.u-padding-y{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-padding-y\\@from-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-padding-y\\@to-tiny{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}.u-padding-y-none{padding-top:0 !important;padding-bottom:0 !important}@media(min-width: 500px){.u-padding-y-none\\@from-tiny{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 499px){.u-padding-y-none\\@to-tiny{padding-top:0 !important;padding-bottom:0 !important}}.u-margin-gutter{margin:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-gutter\\@from-tiny{margin:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-gutter\\@to-tiny{margin:var(--grid-gutter) !important}}.u-margin-xs{margin:vh(5) !important}@media(min-width: 500px){.u-margin-xs\\@from-tiny{margin:vh(5) !important}}@media(max-width: 499px){.u-margin-xs\\@to-tiny{margin:vh(5) !important}}.u-margin-sm{margin:vh(7.5) !important}@media(min-width: 500px){.u-margin-sm\\@from-tiny{margin:vh(7.5) !important}}@media(max-width: 499px){.u-margin-sm\\@to-tiny{margin:vh(7.5) !important}}.u-margin-md{margin:vh(10) !important}@media(min-width: 500px){.u-margin-md\\@from-tiny{margin:vh(10) !important}}@media(max-width: 499px){.u-margin-md\\@to-tiny{margin:vh(10) !important}}.u-margin-lg{margin:vh(12.5) !important}@media(min-width: 500px){.u-margin-lg\\@from-tiny{margin:vh(12.5) !important}}@media(max-width: 499px){.u-margin-lg\\@to-tiny{margin:vh(12.5) !important}}.u-margin-xl{margin:vh(15) !important}@media(min-width: 500px){.u-margin-xl\\@from-tiny{margin:vh(15) !important}}@media(max-width: 499px){.u-margin-xl\\@to-tiny{margin:vh(15) !important}}.u-margin{margin:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin\\@from-tiny{margin:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin\\@to-tiny{margin:var(--grid-gutter) !important}}.u-margin-none{margin:0 !important}@media(min-width: 500px){.u-margin-none\\@from-tiny{margin:0 !important}}@media(max-width: 499px){.u-margin-none\\@to-tiny{margin:0 !important}}.u-margin-top-gutter{margin-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-top-gutter\\@from-tiny{margin-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-top-gutter\\@to-tiny{margin-top:var(--grid-gutter) !important}}.u-margin-top-xs{margin-top:vh(5) !important}@media(min-width: 500px){.u-margin-top-xs\\@from-tiny{margin-top:vh(5) !important}}@media(max-width: 499px){.u-margin-top-xs\\@to-tiny{margin-top:vh(5) !important}}.u-margin-top-sm{margin-top:vh(7.5) !important}@media(min-width: 500px){.u-margin-top-sm\\@from-tiny{margin-top:vh(7.5) !important}}@media(max-width: 499px){.u-margin-top-sm\\@to-tiny{margin-top:vh(7.5) !important}}.u-margin-top-md{margin-top:vh(10) !important}@media(min-width: 500px){.u-margin-top-md\\@from-tiny{margin-top:vh(10) !important}}@media(max-width: 499px){.u-margin-top-md\\@to-tiny{margin-top:vh(10) !important}}.u-margin-top-lg{margin-top:vh(12.5) !important}@media(min-width: 500px){.u-margin-top-lg\\@from-tiny{margin-top:vh(12.5) !important}}@media(max-width: 499px){.u-margin-top-lg\\@to-tiny{margin-top:vh(12.5) !important}}.u-margin-top-xl{margin-top:vh(15) !important}@media(min-width: 500px){.u-margin-top-xl\\@from-tiny{margin-top:vh(15) !important}}@media(max-width: 499px){.u-margin-top-xl\\@to-tiny{margin-top:vh(15) !important}}.u-margin-top{margin-top:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-top\\@from-tiny{margin-top:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-top\\@to-tiny{margin-top:var(--grid-gutter) !important}}.u-margin-top-none{margin-top:0 !important}@media(min-width: 500px){.u-margin-top-none\\@from-tiny{margin-top:0 !important}}@media(max-width: 499px){.u-margin-top-none\\@to-tiny{margin-top:0 !important}}.u-margin-right-gutter{margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-right-gutter\\@from-tiny{margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-right-gutter\\@to-tiny{margin-right:var(--grid-gutter) !important}}.u-margin-right-xs{margin-right:vh(5) !important}@media(min-width: 500px){.u-margin-right-xs\\@from-tiny{margin-right:vh(5) !important}}@media(max-width: 499px){.u-margin-right-xs\\@to-tiny{margin-right:vh(5) !important}}.u-margin-right-sm{margin-right:vh(7.5) !important}@media(min-width: 500px){.u-margin-right-sm\\@from-tiny{margin-right:vh(7.5) !important}}@media(max-width: 499px){.u-margin-right-sm\\@to-tiny{margin-right:vh(7.5) !important}}.u-margin-right-md{margin-right:vh(10) !important}@media(min-width: 500px){.u-margin-right-md\\@from-tiny{margin-right:vh(10) !important}}@media(max-width: 499px){.u-margin-right-md\\@to-tiny{margin-right:vh(10) !important}}.u-margin-right-lg{margin-right:vh(12.5) !important}@media(min-width: 500px){.u-margin-right-lg\\@from-tiny{margin-right:vh(12.5) !important}}@media(max-width: 499px){.u-margin-right-lg\\@to-tiny{margin-right:vh(12.5) !important}}.u-margin-right-xl{margin-right:vh(15) !important}@media(min-width: 500px){.u-margin-right-xl\\@from-tiny{margin-right:vh(15) !important}}@media(max-width: 499px){.u-margin-right-xl\\@to-tiny{margin-right:vh(15) !important}}.u-margin-right{margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-right\\@from-tiny{margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-right\\@to-tiny{margin-right:var(--grid-gutter) !important}}.u-margin-right-none{margin-right:0 !important}@media(min-width: 500px){.u-margin-right-none\\@from-tiny{margin-right:0 !important}}@media(max-width: 499px){.u-margin-right-none\\@to-tiny{margin-right:0 !important}}.u-margin-bottom-gutter{margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-bottom-gutter\\@from-tiny{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-bottom-gutter\\@to-tiny{margin-bottom:var(--grid-gutter) !important}}.u-margin-bottom-xs{margin-bottom:vh(5) !important}@media(min-width: 500px){.u-margin-bottom-xs\\@from-tiny{margin-bottom:vh(5) !important}}@media(max-width: 499px){.u-margin-bottom-xs\\@to-tiny{margin-bottom:vh(5) !important}}.u-margin-bottom-sm{margin-bottom:vh(7.5) !important}@media(min-width: 500px){.u-margin-bottom-sm\\@from-tiny{margin-bottom:vh(7.5) !important}}@media(max-width: 499px){.u-margin-bottom-sm\\@to-tiny{margin-bottom:vh(7.5) !important}}.u-margin-bottom-md{margin-bottom:vh(10) !important}@media(min-width: 500px){.u-margin-bottom-md\\@from-tiny{margin-bottom:vh(10) !important}}@media(max-width: 499px){.u-margin-bottom-md\\@to-tiny{margin-bottom:vh(10) !important}}.u-margin-bottom-lg{margin-bottom:vh(12.5) !important}@media(min-width: 500px){.u-margin-bottom-lg\\@from-tiny{margin-bottom:vh(12.5) !important}}@media(max-width: 499px){.u-margin-bottom-lg\\@to-tiny{margin-bottom:vh(12.5) !important}}.u-margin-bottom-xl{margin-bottom:vh(15) !important}@media(min-width: 500px){.u-margin-bottom-xl\\@from-tiny{margin-bottom:vh(15) !important}}@media(max-width: 499px){.u-margin-bottom-xl\\@to-tiny{margin-bottom:vh(15) !important}}.u-margin-bottom{margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-bottom\\@from-tiny{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-bottom\\@to-tiny{margin-bottom:var(--grid-gutter) !important}}.u-margin-bottom-none{margin-bottom:0 !important}@media(min-width: 500px){.u-margin-bottom-none\\@from-tiny{margin-bottom:0 !important}}@media(max-width: 499px){.u-margin-bottom-none\\@to-tiny{margin-bottom:0 !important}}.u-margin-left-gutter{margin-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-left-gutter\\@from-tiny{margin-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-left-gutter\\@to-tiny{margin-left:var(--grid-gutter) !important}}.u-margin-left-xs{margin-left:vh(5) !important}@media(min-width: 500px){.u-margin-left-xs\\@from-tiny{margin-left:vh(5) !important}}@media(max-width: 499px){.u-margin-left-xs\\@to-tiny{margin-left:vh(5) !important}}.u-margin-left-sm{margin-left:vh(7.5) !important}@media(min-width: 500px){.u-margin-left-sm\\@from-tiny{margin-left:vh(7.5) !important}}@media(max-width: 499px){.u-margin-left-sm\\@to-tiny{margin-left:vh(7.5) !important}}.u-margin-left-md{margin-left:vh(10) !important}@media(min-width: 500px){.u-margin-left-md\\@from-tiny{margin-left:vh(10) !important}}@media(max-width: 499px){.u-margin-left-md\\@to-tiny{margin-left:vh(10) !important}}.u-margin-left-lg{margin-left:vh(12.5) !important}@media(min-width: 500px){.u-margin-left-lg\\@from-tiny{margin-left:vh(12.5) !important}}@media(max-width: 499px){.u-margin-left-lg\\@to-tiny{margin-left:vh(12.5) !important}}.u-margin-left-xl{margin-left:vh(15) !important}@media(min-width: 500px){.u-margin-left-xl\\@from-tiny{margin-left:vh(15) !important}}@media(max-width: 499px){.u-margin-left-xl\\@to-tiny{margin-left:vh(15) !important}}.u-margin-left{margin-left:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-left\\@from-tiny{margin-left:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-left\\@to-tiny{margin-left:var(--grid-gutter) !important}}.u-margin-left-none{margin-left:0 !important}@media(min-width: 500px){.u-margin-left-none\\@from-tiny{margin-left:0 !important}}@media(max-width: 499px){.u-margin-left-none\\@to-tiny{margin-left:0 !important}}.u-margin-x-gutter{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-x-gutter\\@from-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-x-gutter\\@to-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}.u-margin-x-xs{margin-left:vh(5) !important;margin-right:vh(5) !important}@media(min-width: 500px){.u-margin-x-xs\\@from-tiny{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 499px){.u-margin-x-xs\\@to-tiny{margin-left:vh(5) !important;margin-right:vh(5) !important}}.u-margin-x-sm{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}@media(min-width: 500px){.u-margin-x-sm\\@from-tiny{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 499px){.u-margin-x-sm\\@to-tiny{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}.u-margin-x-md{margin-left:vh(10) !important;margin-right:vh(10) !important}@media(min-width: 500px){.u-margin-x-md\\@from-tiny{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 499px){.u-margin-x-md\\@to-tiny{margin-left:vh(10) !important;margin-right:vh(10) !important}}.u-margin-x-lg{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}@media(min-width: 500px){.u-margin-x-lg\\@from-tiny{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 499px){.u-margin-x-lg\\@to-tiny{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}.u-margin-x-xl{margin-left:vh(15) !important;margin-right:vh(15) !important}@media(min-width: 500px){.u-margin-x-xl\\@from-tiny{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 499px){.u-margin-x-xl\\@to-tiny{margin-left:vh(15) !important;margin-right:vh(15) !important}}.u-margin-x{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-x\\@from-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-x\\@to-tiny{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}.u-margin-x-none{margin-left:0 !important;margin-right:0 !important}@media(min-width: 500px){.u-margin-x-none\\@from-tiny{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 499px){.u-margin-x-none\\@to-tiny{margin-left:0 !important;margin-right:0 !important}}.u-margin-y-gutter{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-y-gutter\\@from-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-y-gutter\\@to-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}.u-margin-y-xs{margin-top:vh(5) !important;margin-bottom:vh(5) !important}@media(min-width: 500px){.u-margin-y-xs\\@from-tiny{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 499px){.u-margin-y-xs\\@to-tiny{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}.u-margin-y-sm{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}@media(min-width: 500px){.u-margin-y-sm\\@from-tiny{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 499px){.u-margin-y-sm\\@to-tiny{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}.u-margin-y-md{margin-top:vh(10) !important;margin-bottom:vh(10) !important}@media(min-width: 500px){.u-margin-y-md\\@from-tiny{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 499px){.u-margin-y-md\\@to-tiny{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}.u-margin-y-lg{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}@media(min-width: 500px){.u-margin-y-lg\\@from-tiny{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 499px){.u-margin-y-lg\\@to-tiny{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}.u-margin-y-xl{margin-top:vh(15) !important;margin-bottom:vh(15) !important}@media(min-width: 500px){.u-margin-y-xl\\@from-tiny{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 499px){.u-margin-y-xl\\@to-tiny{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}.u-margin-y{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}@media(min-width: 500px){.u-margin-y\\@from-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 499px){.u-margin-y\\@to-tiny{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}.u-margin-y-none{margin-top:0 !important;margin-bottom:0 !important}@media(min-width: 500px){.u-margin-y-none\\@from-tiny{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 499px){.u-margin-y-none\\@to-tiny{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 700px){.u-padding-gutter\\@from-small{padding:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-gutter\\@to-small{padding:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-xs\\@from-small{padding:vh(5) !important}}@media(max-width: 699px){.u-padding-xs\\@to-small{padding:vh(5) !important}}@media(min-width: 700px){.u-padding-sm\\@from-small{padding:vh(7.5) !important}}@media(max-width: 699px){.u-padding-sm\\@to-small{padding:vh(7.5) !important}}@media(min-width: 700px){.u-padding-md\\@from-small{padding:vh(10) !important}}@media(max-width: 699px){.u-padding-md\\@to-small{padding:vh(10) !important}}@media(min-width: 700px){.u-padding-lg\\@from-small{padding:vh(12.5) !important}}@media(max-width: 699px){.u-padding-lg\\@to-small{padding:vh(12.5) !important}}@media(min-width: 700px){.u-padding-xl\\@from-small{padding:vh(15) !important}}@media(max-width: 699px){.u-padding-xl\\@to-small{padding:vh(15) !important}}@media(min-width: 700px){.u-padding\\@from-small{padding:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding\\@to-small{padding:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-none\\@from-small{padding:0 !important}}@media(max-width: 699px){.u-padding-none\\@to-small{padding:0 !important}}@media(min-width: 700px){.u-padding-top-gutter\\@from-small{padding-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-top-gutter\\@to-small{padding-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-top-xs\\@from-small{padding-top:vh(5) !important}}@media(max-width: 699px){.u-padding-top-xs\\@to-small{padding-top:vh(5) !important}}@media(min-width: 700px){.u-padding-top-sm\\@from-small{padding-top:vh(7.5) !important}}@media(max-width: 699px){.u-padding-top-sm\\@to-small{padding-top:vh(7.5) !important}}@media(min-width: 700px){.u-padding-top-md\\@from-small{padding-top:vh(10) !important}}@media(max-width: 699px){.u-padding-top-md\\@to-small{padding-top:vh(10) !important}}@media(min-width: 700px){.u-padding-top-lg\\@from-small{padding-top:vh(12.5) !important}}@media(max-width: 699px){.u-padding-top-lg\\@to-small{padding-top:vh(12.5) !important}}@media(min-width: 700px){.u-padding-top-xl\\@from-small{padding-top:vh(15) !important}}@media(max-width: 699px){.u-padding-top-xl\\@to-small{padding-top:vh(15) !important}}@media(min-width: 700px){.u-padding-top\\@from-small{padding-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-top\\@to-small{padding-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-top-none\\@from-small{padding-top:0 !important}}@media(max-width: 699px){.u-padding-top-none\\@to-small{padding-top:0 !important}}@media(min-width: 700px){.u-padding-right-gutter\\@from-small{padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-right-gutter\\@to-small{padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-right-xs\\@from-small{padding-right:vh(5) !important}}@media(max-width: 699px){.u-padding-right-xs\\@to-small{padding-right:vh(5) !important}}@media(min-width: 700px){.u-padding-right-sm\\@from-small{padding-right:vh(7.5) !important}}@media(max-width: 699px){.u-padding-right-sm\\@to-small{padding-right:vh(7.5) !important}}@media(min-width: 700px){.u-padding-right-md\\@from-small{padding-right:vh(10) !important}}@media(max-width: 699px){.u-padding-right-md\\@to-small{padding-right:vh(10) !important}}@media(min-width: 700px){.u-padding-right-lg\\@from-small{padding-right:vh(12.5) !important}}@media(max-width: 699px){.u-padding-right-lg\\@to-small{padding-right:vh(12.5) !important}}@media(min-width: 700px){.u-padding-right-xl\\@from-small{padding-right:vh(15) !important}}@media(max-width: 699px){.u-padding-right-xl\\@to-small{padding-right:vh(15) !important}}@media(min-width: 700px){.u-padding-right\\@from-small{padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-right\\@to-small{padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-right-none\\@from-small{padding-right:0 !important}}@media(max-width: 699px){.u-padding-right-none\\@to-small{padding-right:0 !important}}@media(min-width: 700px){.u-padding-bottom-gutter\\@from-small{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-bottom-gutter\\@to-small{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-bottom-xs\\@from-small{padding-bottom:vh(5) !important}}@media(max-width: 699px){.u-padding-bottom-xs\\@to-small{padding-bottom:vh(5) !important}}@media(min-width: 700px){.u-padding-bottom-sm\\@from-small{padding-bottom:vh(7.5) !important}}@media(max-width: 699px){.u-padding-bottom-sm\\@to-small{padding-bottom:vh(7.5) !important}}@media(min-width: 700px){.u-padding-bottom-md\\@from-small{padding-bottom:vh(10) !important}}@media(max-width: 699px){.u-padding-bottom-md\\@to-small{padding-bottom:vh(10) !important}}@media(min-width: 700px){.u-padding-bottom-lg\\@from-small{padding-bottom:vh(12.5) !important}}@media(max-width: 699px){.u-padding-bottom-lg\\@to-small{padding-bottom:vh(12.5) !important}}@media(min-width: 700px){.u-padding-bottom-xl\\@from-small{padding-bottom:vh(15) !important}}@media(max-width: 699px){.u-padding-bottom-xl\\@to-small{padding-bottom:vh(15) !important}}@media(min-width: 700px){.u-padding-bottom\\@from-small{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-bottom\\@to-small{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-bottom-none\\@from-small{padding-bottom:0 !important}}@media(max-width: 699px){.u-padding-bottom-none\\@to-small{padding-bottom:0 !important}}@media(min-width: 700px){.u-padding-left-gutter\\@from-small{padding-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-left-gutter\\@to-small{padding-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-left-xs\\@from-small{padding-left:vh(5) !important}}@media(max-width: 699px){.u-padding-left-xs\\@to-small{padding-left:vh(5) !important}}@media(min-width: 700px){.u-padding-left-sm\\@from-small{padding-left:vh(7.5) !important}}@media(max-width: 699px){.u-padding-left-sm\\@to-small{padding-left:vh(7.5) !important}}@media(min-width: 700px){.u-padding-left-md\\@from-small{padding-left:vh(10) !important}}@media(max-width: 699px){.u-padding-left-md\\@to-small{padding-left:vh(10) !important}}@media(min-width: 700px){.u-padding-left-lg\\@from-small{padding-left:vh(12.5) !important}}@media(max-width: 699px){.u-padding-left-lg\\@to-small{padding-left:vh(12.5) !important}}@media(min-width: 700px){.u-padding-left-xl\\@from-small{padding-left:vh(15) !important}}@media(max-width: 699px){.u-padding-left-xl\\@to-small{padding-left:vh(15) !important}}@media(min-width: 700px){.u-padding-left\\@from-small{padding-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-left\\@to-small{padding-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-left-none\\@from-small{padding-left:0 !important}}@media(max-width: 699px){.u-padding-left-none\\@to-small{padding-left:0 !important}}@media(min-width: 700px){.u-padding-x-gutter\\@from-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-x-gutter\\@to-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-x-xs\\@from-small{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 699px){.u-padding-x-xs\\@to-small{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 700px){.u-padding-x-sm\\@from-small{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 699px){.u-padding-x-sm\\@to-small{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 700px){.u-padding-x-md\\@from-small{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 699px){.u-padding-x-md\\@to-small{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 700px){.u-padding-x-lg\\@from-small{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 699px){.u-padding-x-lg\\@to-small{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 700px){.u-padding-x-xl\\@from-small{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 699px){.u-padding-x-xl\\@to-small{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 700px){.u-padding-x\\@from-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-x\\@to-small{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-x-none\\@from-small{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 699px){.u-padding-x-none\\@to-small{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 700px){.u-padding-y-gutter\\@from-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-y-gutter\\@to-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-y-xs\\@from-small{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 699px){.u-padding-y-xs\\@to-small{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 700px){.u-padding-y-sm\\@from-small{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 699px){.u-padding-y-sm\\@to-small{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 700px){.u-padding-y-md\\@from-small{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 699px){.u-padding-y-md\\@to-small{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 700px){.u-padding-y-lg\\@from-small{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 699px){.u-padding-y-lg\\@to-small{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 700px){.u-padding-y-xl\\@from-small{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 699px){.u-padding-y-xl\\@to-small{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 700px){.u-padding-y\\@from-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-padding-y\\@to-small{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-padding-y-none\\@from-small{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 699px){.u-padding-y-none\\@to-small{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 700px){.u-margin-gutter\\@from-small{margin:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-gutter\\@to-small{margin:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-xs\\@from-small{margin:vh(5) !important}}@media(max-width: 699px){.u-margin-xs\\@to-small{margin:vh(5) !important}}@media(min-width: 700px){.u-margin-sm\\@from-small{margin:vh(7.5) !important}}@media(max-width: 699px){.u-margin-sm\\@to-small{margin:vh(7.5) !important}}@media(min-width: 700px){.u-margin-md\\@from-small{margin:vh(10) !important}}@media(max-width: 699px){.u-margin-md\\@to-small{margin:vh(10) !important}}@media(min-width: 700px){.u-margin-lg\\@from-small{margin:vh(12.5) !important}}@media(max-width: 699px){.u-margin-lg\\@to-small{margin:vh(12.5) !important}}@media(min-width: 700px){.u-margin-xl\\@from-small{margin:vh(15) !important}}@media(max-width: 699px){.u-margin-xl\\@to-small{margin:vh(15) !important}}@media(min-width: 700px){.u-margin\\@from-small{margin:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin\\@to-small{margin:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-none\\@from-small{margin:0 !important}}@media(max-width: 699px){.u-margin-none\\@to-small{margin:0 !important}}@media(min-width: 700px){.u-margin-top-gutter\\@from-small{margin-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-top-gutter\\@to-small{margin-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-top-xs\\@from-small{margin-top:vh(5) !important}}@media(max-width: 699px){.u-margin-top-xs\\@to-small{margin-top:vh(5) !important}}@media(min-width: 700px){.u-margin-top-sm\\@from-small{margin-top:vh(7.5) !important}}@media(max-width: 699px){.u-margin-top-sm\\@to-small{margin-top:vh(7.5) !important}}@media(min-width: 700px){.u-margin-top-md\\@from-small{margin-top:vh(10) !important}}@media(max-width: 699px){.u-margin-top-md\\@to-small{margin-top:vh(10) !important}}@media(min-width: 700px){.u-margin-top-lg\\@from-small{margin-top:vh(12.5) !important}}@media(max-width: 699px){.u-margin-top-lg\\@to-small{margin-top:vh(12.5) !important}}@media(min-width: 700px){.u-margin-top-xl\\@from-small{margin-top:vh(15) !important}}@media(max-width: 699px){.u-margin-top-xl\\@to-small{margin-top:vh(15) !important}}@media(min-width: 700px){.u-margin-top\\@from-small{margin-top:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-top\\@to-small{margin-top:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-top-none\\@from-small{margin-top:0 !important}}@media(max-width: 699px){.u-margin-top-none\\@to-small{margin-top:0 !important}}@media(min-width: 700px){.u-margin-right-gutter\\@from-small{margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-right-gutter\\@to-small{margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-right-xs\\@from-small{margin-right:vh(5) !important}}@media(max-width: 699px){.u-margin-right-xs\\@to-small{margin-right:vh(5) !important}}@media(min-width: 700px){.u-margin-right-sm\\@from-small{margin-right:vh(7.5) !important}}@media(max-width: 699px){.u-margin-right-sm\\@to-small{margin-right:vh(7.5) !important}}@media(min-width: 700px){.u-margin-right-md\\@from-small{margin-right:vh(10) !important}}@media(max-width: 699px){.u-margin-right-md\\@to-small{margin-right:vh(10) !important}}@media(min-width: 700px){.u-margin-right-lg\\@from-small{margin-right:vh(12.5) !important}}@media(max-width: 699px){.u-margin-right-lg\\@to-small{margin-right:vh(12.5) !important}}@media(min-width: 700px){.u-margin-right-xl\\@from-small{margin-right:vh(15) !important}}@media(max-width: 699px){.u-margin-right-xl\\@to-small{margin-right:vh(15) !important}}@media(min-width: 700px){.u-margin-right\\@from-small{margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-right\\@to-small{margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-right-none\\@from-small{margin-right:0 !important}}@media(max-width: 699px){.u-margin-right-none\\@to-small{margin-right:0 !important}}@media(min-width: 700px){.u-margin-bottom-gutter\\@from-small{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-bottom-gutter\\@to-small{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-bottom-xs\\@from-small{margin-bottom:vh(5) !important}}@media(max-width: 699px){.u-margin-bottom-xs\\@to-small{margin-bottom:vh(5) !important}}@media(min-width: 700px){.u-margin-bottom-sm\\@from-small{margin-bottom:vh(7.5) !important}}@media(max-width: 699px){.u-margin-bottom-sm\\@to-small{margin-bottom:vh(7.5) !important}}@media(min-width: 700px){.u-margin-bottom-md\\@from-small{margin-bottom:vh(10) !important}}@media(max-width: 699px){.u-margin-bottom-md\\@to-small{margin-bottom:vh(10) !important}}@media(min-width: 700px){.u-margin-bottom-lg\\@from-small{margin-bottom:vh(12.5) !important}}@media(max-width: 699px){.u-margin-bottom-lg\\@to-small{margin-bottom:vh(12.5) !important}}@media(min-width: 700px){.u-margin-bottom-xl\\@from-small{margin-bottom:vh(15) !important}}@media(max-width: 699px){.u-margin-bottom-xl\\@to-small{margin-bottom:vh(15) !important}}@media(min-width: 700px){.u-margin-bottom\\@from-small{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-bottom\\@to-small{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-bottom-none\\@from-small{margin-bottom:0 !important}}@media(max-width: 699px){.u-margin-bottom-none\\@to-small{margin-bottom:0 !important}}@media(min-width: 700px){.u-margin-left-gutter\\@from-small{margin-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-left-gutter\\@to-small{margin-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-left-xs\\@from-small{margin-left:vh(5) !important}}@media(max-width: 699px){.u-margin-left-xs\\@to-small{margin-left:vh(5) !important}}@media(min-width: 700px){.u-margin-left-sm\\@from-small{margin-left:vh(7.5) !important}}@media(max-width: 699px){.u-margin-left-sm\\@to-small{margin-left:vh(7.5) !important}}@media(min-width: 700px){.u-margin-left-md\\@from-small{margin-left:vh(10) !important}}@media(max-width: 699px){.u-margin-left-md\\@to-small{margin-left:vh(10) !important}}@media(min-width: 700px){.u-margin-left-lg\\@from-small{margin-left:vh(12.5) !important}}@media(max-width: 699px){.u-margin-left-lg\\@to-small{margin-left:vh(12.5) !important}}@media(min-width: 700px){.u-margin-left-xl\\@from-small{margin-left:vh(15) !important}}@media(max-width: 699px){.u-margin-left-xl\\@to-small{margin-left:vh(15) !important}}@media(min-width: 700px){.u-margin-left\\@from-small{margin-left:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-left\\@to-small{margin-left:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-left-none\\@from-small{margin-left:0 !important}}@media(max-width: 699px){.u-margin-left-none\\@to-small{margin-left:0 !important}}@media(min-width: 700px){.u-margin-x-gutter\\@from-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-x-gutter\\@to-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-x-xs\\@from-small{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 699px){.u-margin-x-xs\\@to-small{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 700px){.u-margin-x-sm\\@from-small{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 699px){.u-margin-x-sm\\@to-small{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 700px){.u-margin-x-md\\@from-small{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 699px){.u-margin-x-md\\@to-small{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 700px){.u-margin-x-lg\\@from-small{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 699px){.u-margin-x-lg\\@to-small{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 700px){.u-margin-x-xl\\@from-small{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 699px){.u-margin-x-xl\\@to-small{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 700px){.u-margin-x\\@from-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-x\\@to-small{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-x-none\\@from-small{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 699px){.u-margin-x-none\\@to-small{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 700px){.u-margin-y-gutter\\@from-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-y-gutter\\@to-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-y-xs\\@from-small{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 699px){.u-margin-y-xs\\@to-small{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 700px){.u-margin-y-sm\\@from-small{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 699px){.u-margin-y-sm\\@to-small{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 700px){.u-margin-y-md\\@from-small{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 699px){.u-margin-y-md\\@to-small{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 700px){.u-margin-y-lg\\@from-small{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 699px){.u-margin-y-lg\\@to-small{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 700px){.u-margin-y-xl\\@from-small{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 699px){.u-margin-y-xl\\@to-small{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 700px){.u-margin-y\\@from-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 699px){.u-margin-y\\@to-small{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 700px){.u-margin-y-none\\@from-small{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 699px){.u-margin-y-none\\@to-small{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1000px){.u-padding-gutter\\@from-medium{padding:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-gutter\\@to-medium{padding:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-xs\\@from-medium{padding:vh(5) !important}}@media(max-width: 999px){.u-padding-xs\\@to-medium{padding:vh(5) !important}}@media(min-width: 1000px){.u-padding-sm\\@from-medium{padding:vh(7.5) !important}}@media(max-width: 999px){.u-padding-sm\\@to-medium{padding:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-md\\@from-medium{padding:vh(10) !important}}@media(max-width: 999px){.u-padding-md\\@to-medium{padding:vh(10) !important}}@media(min-width: 1000px){.u-padding-lg\\@from-medium{padding:vh(12.5) !important}}@media(max-width: 999px){.u-padding-lg\\@to-medium{padding:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-xl\\@from-medium{padding:vh(15) !important}}@media(max-width: 999px){.u-padding-xl\\@to-medium{padding:vh(15) !important}}@media(min-width: 1000px){.u-padding\\@from-medium{padding:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding\\@to-medium{padding:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-none\\@from-medium{padding:0 !important}}@media(max-width: 999px){.u-padding-none\\@to-medium{padding:0 !important}}@media(min-width: 1000px){.u-padding-top-gutter\\@from-medium{padding-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-top-gutter\\@to-medium{padding-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-top-xs\\@from-medium{padding-top:vh(5) !important}}@media(max-width: 999px){.u-padding-top-xs\\@to-medium{padding-top:vh(5) !important}}@media(min-width: 1000px){.u-padding-top-sm\\@from-medium{padding-top:vh(7.5) !important}}@media(max-width: 999px){.u-padding-top-sm\\@to-medium{padding-top:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-top-md\\@from-medium{padding-top:vh(10) !important}}@media(max-width: 999px){.u-padding-top-md\\@to-medium{padding-top:vh(10) !important}}@media(min-width: 1000px){.u-padding-top-lg\\@from-medium{padding-top:vh(12.5) !important}}@media(max-width: 999px){.u-padding-top-lg\\@to-medium{padding-top:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-top-xl\\@from-medium{padding-top:vh(15) !important}}@media(max-width: 999px){.u-padding-top-xl\\@to-medium{padding-top:vh(15) !important}}@media(min-width: 1000px){.u-padding-top\\@from-medium{padding-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-top\\@to-medium{padding-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-top-none\\@from-medium{padding-top:0 !important}}@media(max-width: 999px){.u-padding-top-none\\@to-medium{padding-top:0 !important}}@media(min-width: 1000px){.u-padding-right-gutter\\@from-medium{padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-right-gutter\\@to-medium{padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-right-xs\\@from-medium{padding-right:vh(5) !important}}@media(max-width: 999px){.u-padding-right-xs\\@to-medium{padding-right:vh(5) !important}}@media(min-width: 1000px){.u-padding-right-sm\\@from-medium{padding-right:vh(7.5) !important}}@media(max-width: 999px){.u-padding-right-sm\\@to-medium{padding-right:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-right-md\\@from-medium{padding-right:vh(10) !important}}@media(max-width: 999px){.u-padding-right-md\\@to-medium{padding-right:vh(10) !important}}@media(min-width: 1000px){.u-padding-right-lg\\@from-medium{padding-right:vh(12.5) !important}}@media(max-width: 999px){.u-padding-right-lg\\@to-medium{padding-right:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-right-xl\\@from-medium{padding-right:vh(15) !important}}@media(max-width: 999px){.u-padding-right-xl\\@to-medium{padding-right:vh(15) !important}}@media(min-width: 1000px){.u-padding-right\\@from-medium{padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-right\\@to-medium{padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-right-none\\@from-medium{padding-right:0 !important}}@media(max-width: 999px){.u-padding-right-none\\@to-medium{padding-right:0 !important}}@media(min-width: 1000px){.u-padding-bottom-gutter\\@from-medium{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-bottom-gutter\\@to-medium{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-bottom-xs\\@from-medium{padding-bottom:vh(5) !important}}@media(max-width: 999px){.u-padding-bottom-xs\\@to-medium{padding-bottom:vh(5) !important}}@media(min-width: 1000px){.u-padding-bottom-sm\\@from-medium{padding-bottom:vh(7.5) !important}}@media(max-width: 999px){.u-padding-bottom-sm\\@to-medium{padding-bottom:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-bottom-md\\@from-medium{padding-bottom:vh(10) !important}}@media(max-width: 999px){.u-padding-bottom-md\\@to-medium{padding-bottom:vh(10) !important}}@media(min-width: 1000px){.u-padding-bottom-lg\\@from-medium{padding-bottom:vh(12.5) !important}}@media(max-width: 999px){.u-padding-bottom-lg\\@to-medium{padding-bottom:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-bottom-xl\\@from-medium{padding-bottom:vh(15) !important}}@media(max-width: 999px){.u-padding-bottom-xl\\@to-medium{padding-bottom:vh(15) !important}}@media(min-width: 1000px){.u-padding-bottom\\@from-medium{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-bottom\\@to-medium{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-bottom-none\\@from-medium{padding-bottom:0 !important}}@media(max-width: 999px){.u-padding-bottom-none\\@to-medium{padding-bottom:0 !important}}@media(min-width: 1000px){.u-padding-left-gutter\\@from-medium{padding-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-left-gutter\\@to-medium{padding-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-left-xs\\@from-medium{padding-left:vh(5) !important}}@media(max-width: 999px){.u-padding-left-xs\\@to-medium{padding-left:vh(5) !important}}@media(min-width: 1000px){.u-padding-left-sm\\@from-medium{padding-left:vh(7.5) !important}}@media(max-width: 999px){.u-padding-left-sm\\@to-medium{padding-left:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-left-md\\@from-medium{padding-left:vh(10) !important}}@media(max-width: 999px){.u-padding-left-md\\@to-medium{padding-left:vh(10) !important}}@media(min-width: 1000px){.u-padding-left-lg\\@from-medium{padding-left:vh(12.5) !important}}@media(max-width: 999px){.u-padding-left-lg\\@to-medium{padding-left:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-left-xl\\@from-medium{padding-left:vh(15) !important}}@media(max-width: 999px){.u-padding-left-xl\\@to-medium{padding-left:vh(15) !important}}@media(min-width: 1000px){.u-padding-left\\@from-medium{padding-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-left\\@to-medium{padding-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-left-none\\@from-medium{padding-left:0 !important}}@media(max-width: 999px){.u-padding-left-none\\@to-medium{padding-left:0 !important}}@media(min-width: 1000px){.u-padding-x-gutter\\@from-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-x-gutter\\@to-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-x-xs\\@from-medium{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 999px){.u-padding-x-xs\\@to-medium{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 1000px){.u-padding-x-sm\\@from-medium{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 999px){.u-padding-x-sm\\@to-medium{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-x-md\\@from-medium{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 999px){.u-padding-x-md\\@to-medium{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 1000px){.u-padding-x-lg\\@from-medium{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 999px){.u-padding-x-lg\\@to-medium{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-x-xl\\@from-medium{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 999px){.u-padding-x-xl\\@to-medium{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 1000px){.u-padding-x\\@from-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-x\\@to-medium{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-x-none\\@from-medium{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 999px){.u-padding-x-none\\@to-medium{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1000px){.u-padding-y-gutter\\@from-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-y-gutter\\@to-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-y-xs\\@from-medium{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 999px){.u-padding-y-xs\\@to-medium{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 1000px){.u-padding-y-sm\\@from-medium{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 999px){.u-padding-y-sm\\@to-medium{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 1000px){.u-padding-y-md\\@from-medium{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 999px){.u-padding-y-md\\@to-medium{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 1000px){.u-padding-y-lg\\@from-medium{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 999px){.u-padding-y-lg\\@to-medium{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 1000px){.u-padding-y-xl\\@from-medium{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 999px){.u-padding-y-xl\\@to-medium{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 1000px){.u-padding-y\\@from-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-padding-y\\@to-medium{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-padding-y-none\\@from-medium{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 999px){.u-padding-y-none\\@to-medium{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1000px){.u-margin-gutter\\@from-medium{margin:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-gutter\\@to-medium{margin:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-xs\\@from-medium{margin:vh(5) !important}}@media(max-width: 999px){.u-margin-xs\\@to-medium{margin:vh(5) !important}}@media(min-width: 1000px){.u-margin-sm\\@from-medium{margin:vh(7.5) !important}}@media(max-width: 999px){.u-margin-sm\\@to-medium{margin:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-md\\@from-medium{margin:vh(10) !important}}@media(max-width: 999px){.u-margin-md\\@to-medium{margin:vh(10) !important}}@media(min-width: 1000px){.u-margin-lg\\@from-medium{margin:vh(12.5) !important}}@media(max-width: 999px){.u-margin-lg\\@to-medium{margin:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-xl\\@from-medium{margin:vh(15) !important}}@media(max-width: 999px){.u-margin-xl\\@to-medium{margin:vh(15) !important}}@media(min-width: 1000px){.u-margin\\@from-medium{margin:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin\\@to-medium{margin:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-none\\@from-medium{margin:0 !important}}@media(max-width: 999px){.u-margin-none\\@to-medium{margin:0 !important}}@media(min-width: 1000px){.u-margin-top-gutter\\@from-medium{margin-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-top-gutter\\@to-medium{margin-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-top-xs\\@from-medium{margin-top:vh(5) !important}}@media(max-width: 999px){.u-margin-top-xs\\@to-medium{margin-top:vh(5) !important}}@media(min-width: 1000px){.u-margin-top-sm\\@from-medium{margin-top:vh(7.5) !important}}@media(max-width: 999px){.u-margin-top-sm\\@to-medium{margin-top:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-top-md\\@from-medium{margin-top:vh(10) !important}}@media(max-width: 999px){.u-margin-top-md\\@to-medium{margin-top:vh(10) !important}}@media(min-width: 1000px){.u-margin-top-lg\\@from-medium{margin-top:vh(12.5) !important}}@media(max-width: 999px){.u-margin-top-lg\\@to-medium{margin-top:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-top-xl\\@from-medium{margin-top:vh(15) !important}}@media(max-width: 999px){.u-margin-top-xl\\@to-medium{margin-top:vh(15) !important}}@media(min-width: 1000px){.u-margin-top\\@from-medium{margin-top:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-top\\@to-medium{margin-top:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-top-none\\@from-medium{margin-top:0 !important}}@media(max-width: 999px){.u-margin-top-none\\@to-medium{margin-top:0 !important}}@media(min-width: 1000px){.u-margin-right-gutter\\@from-medium{margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-right-gutter\\@to-medium{margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-right-xs\\@from-medium{margin-right:vh(5) !important}}@media(max-width: 999px){.u-margin-right-xs\\@to-medium{margin-right:vh(5) !important}}@media(min-width: 1000px){.u-margin-right-sm\\@from-medium{margin-right:vh(7.5) !important}}@media(max-width: 999px){.u-margin-right-sm\\@to-medium{margin-right:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-right-md\\@from-medium{margin-right:vh(10) !important}}@media(max-width: 999px){.u-margin-right-md\\@to-medium{margin-right:vh(10) !important}}@media(min-width: 1000px){.u-margin-right-lg\\@from-medium{margin-right:vh(12.5) !important}}@media(max-width: 999px){.u-margin-right-lg\\@to-medium{margin-right:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-right-xl\\@from-medium{margin-right:vh(15) !important}}@media(max-width: 999px){.u-margin-right-xl\\@to-medium{margin-right:vh(15) !important}}@media(min-width: 1000px){.u-margin-right\\@from-medium{margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-right\\@to-medium{margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-right-none\\@from-medium{margin-right:0 !important}}@media(max-width: 999px){.u-margin-right-none\\@to-medium{margin-right:0 !important}}@media(min-width: 1000px){.u-margin-bottom-gutter\\@from-medium{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-bottom-gutter\\@to-medium{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-bottom-xs\\@from-medium{margin-bottom:vh(5) !important}}@media(max-width: 999px){.u-margin-bottom-xs\\@to-medium{margin-bottom:vh(5) !important}}@media(min-width: 1000px){.u-margin-bottom-sm\\@from-medium{margin-bottom:vh(7.5) !important}}@media(max-width: 999px){.u-margin-bottom-sm\\@to-medium{margin-bottom:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-bottom-md\\@from-medium{margin-bottom:vh(10) !important}}@media(max-width: 999px){.u-margin-bottom-md\\@to-medium{margin-bottom:vh(10) !important}}@media(min-width: 1000px){.u-margin-bottom-lg\\@from-medium{margin-bottom:vh(12.5) !important}}@media(max-width: 999px){.u-margin-bottom-lg\\@to-medium{margin-bottom:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-bottom-xl\\@from-medium{margin-bottom:vh(15) !important}}@media(max-width: 999px){.u-margin-bottom-xl\\@to-medium{margin-bottom:vh(15) !important}}@media(min-width: 1000px){.u-margin-bottom\\@from-medium{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-bottom\\@to-medium{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-bottom-none\\@from-medium{margin-bottom:0 !important}}@media(max-width: 999px){.u-margin-bottom-none\\@to-medium{margin-bottom:0 !important}}@media(min-width: 1000px){.u-margin-left-gutter\\@from-medium{margin-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-left-gutter\\@to-medium{margin-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-left-xs\\@from-medium{margin-left:vh(5) !important}}@media(max-width: 999px){.u-margin-left-xs\\@to-medium{margin-left:vh(5) !important}}@media(min-width: 1000px){.u-margin-left-sm\\@from-medium{margin-left:vh(7.5) !important}}@media(max-width: 999px){.u-margin-left-sm\\@to-medium{margin-left:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-left-md\\@from-medium{margin-left:vh(10) !important}}@media(max-width: 999px){.u-margin-left-md\\@to-medium{margin-left:vh(10) !important}}@media(min-width: 1000px){.u-margin-left-lg\\@from-medium{margin-left:vh(12.5) !important}}@media(max-width: 999px){.u-margin-left-lg\\@to-medium{margin-left:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-left-xl\\@from-medium{margin-left:vh(15) !important}}@media(max-width: 999px){.u-margin-left-xl\\@to-medium{margin-left:vh(15) !important}}@media(min-width: 1000px){.u-margin-left\\@from-medium{margin-left:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-left\\@to-medium{margin-left:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-left-none\\@from-medium{margin-left:0 !important}}@media(max-width: 999px){.u-margin-left-none\\@to-medium{margin-left:0 !important}}@media(min-width: 1000px){.u-margin-x-gutter\\@from-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-x-gutter\\@to-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-x-xs\\@from-medium{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 999px){.u-margin-x-xs\\@to-medium{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 1000px){.u-margin-x-sm\\@from-medium{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 999px){.u-margin-x-sm\\@to-medium{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-x-md\\@from-medium{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 999px){.u-margin-x-md\\@to-medium{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 1000px){.u-margin-x-lg\\@from-medium{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 999px){.u-margin-x-lg\\@to-medium{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-x-xl\\@from-medium{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 999px){.u-margin-x-xl\\@to-medium{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 1000px){.u-margin-x\\@from-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-x\\@to-medium{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-x-none\\@from-medium{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 999px){.u-margin-x-none\\@to-medium{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1000px){.u-margin-y-gutter\\@from-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-y-gutter\\@to-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-y-xs\\@from-medium{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 999px){.u-margin-y-xs\\@to-medium{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 1000px){.u-margin-y-sm\\@from-medium{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 999px){.u-margin-y-sm\\@to-medium{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 1000px){.u-margin-y-md\\@from-medium{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 999px){.u-margin-y-md\\@to-medium{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 1000px){.u-margin-y-lg\\@from-medium{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 999px){.u-margin-y-lg\\@to-medium{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 1000px){.u-margin-y-xl\\@from-medium{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 999px){.u-margin-y-xl\\@to-medium{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 1000px){.u-margin-y\\@from-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 999px){.u-margin-y\\@to-medium{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1000px){.u-margin-y-none\\@from-medium{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 999px){.u-margin-y-none\\@to-medium{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1200px){.u-padding-gutter\\@from-large{padding:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-gutter\\@to-large{padding:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-xs\\@from-large{padding:vh(5) !important}}@media(max-width: 1199px){.u-padding-xs\\@to-large{padding:vh(5) !important}}@media(min-width: 1200px){.u-padding-sm\\@from-large{padding:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-sm\\@to-large{padding:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-md\\@from-large{padding:vh(10) !important}}@media(max-width: 1199px){.u-padding-md\\@to-large{padding:vh(10) !important}}@media(min-width: 1200px){.u-padding-lg\\@from-large{padding:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-lg\\@to-large{padding:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-xl\\@from-large{padding:vh(15) !important}}@media(max-width: 1199px){.u-padding-xl\\@to-large{padding:vh(15) !important}}@media(min-width: 1200px){.u-padding\\@from-large{padding:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding\\@to-large{padding:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-none\\@from-large{padding:0 !important}}@media(max-width: 1199px){.u-padding-none\\@to-large{padding:0 !important}}@media(min-width: 1200px){.u-padding-top-gutter\\@from-large{padding-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-top-gutter\\@to-large{padding-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-top-xs\\@from-large{padding-top:vh(5) !important}}@media(max-width: 1199px){.u-padding-top-xs\\@to-large{padding-top:vh(5) !important}}@media(min-width: 1200px){.u-padding-top-sm\\@from-large{padding-top:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-top-sm\\@to-large{padding-top:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-top-md\\@from-large{padding-top:vh(10) !important}}@media(max-width: 1199px){.u-padding-top-md\\@to-large{padding-top:vh(10) !important}}@media(min-width: 1200px){.u-padding-top-lg\\@from-large{padding-top:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-top-lg\\@to-large{padding-top:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-top-xl\\@from-large{padding-top:vh(15) !important}}@media(max-width: 1199px){.u-padding-top-xl\\@to-large{padding-top:vh(15) !important}}@media(min-width: 1200px){.u-padding-top\\@from-large{padding-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-top\\@to-large{padding-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-top-none\\@from-large{padding-top:0 !important}}@media(max-width: 1199px){.u-padding-top-none\\@to-large{padding-top:0 !important}}@media(min-width: 1200px){.u-padding-right-gutter\\@from-large{padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-right-gutter\\@to-large{padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-right-xs\\@from-large{padding-right:vh(5) !important}}@media(max-width: 1199px){.u-padding-right-xs\\@to-large{padding-right:vh(5) !important}}@media(min-width: 1200px){.u-padding-right-sm\\@from-large{padding-right:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-right-sm\\@to-large{padding-right:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-right-md\\@from-large{padding-right:vh(10) !important}}@media(max-width: 1199px){.u-padding-right-md\\@to-large{padding-right:vh(10) !important}}@media(min-width: 1200px){.u-padding-right-lg\\@from-large{padding-right:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-right-lg\\@to-large{padding-right:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-right-xl\\@from-large{padding-right:vh(15) !important}}@media(max-width: 1199px){.u-padding-right-xl\\@to-large{padding-right:vh(15) !important}}@media(min-width: 1200px){.u-padding-right\\@from-large{padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-right\\@to-large{padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-right-none\\@from-large{padding-right:0 !important}}@media(max-width: 1199px){.u-padding-right-none\\@to-large{padding-right:0 !important}}@media(min-width: 1200px){.u-padding-bottom-gutter\\@from-large{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-bottom-gutter\\@to-large{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-bottom-xs\\@from-large{padding-bottom:vh(5) !important}}@media(max-width: 1199px){.u-padding-bottom-xs\\@to-large{padding-bottom:vh(5) !important}}@media(min-width: 1200px){.u-padding-bottom-sm\\@from-large{padding-bottom:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-bottom-sm\\@to-large{padding-bottom:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-bottom-md\\@from-large{padding-bottom:vh(10) !important}}@media(max-width: 1199px){.u-padding-bottom-md\\@to-large{padding-bottom:vh(10) !important}}@media(min-width: 1200px){.u-padding-bottom-lg\\@from-large{padding-bottom:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-bottom-lg\\@to-large{padding-bottom:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-bottom-xl\\@from-large{padding-bottom:vh(15) !important}}@media(max-width: 1199px){.u-padding-bottom-xl\\@to-large{padding-bottom:vh(15) !important}}@media(min-width: 1200px){.u-padding-bottom\\@from-large{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-bottom\\@to-large{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-bottom-none\\@from-large{padding-bottom:0 !important}}@media(max-width: 1199px){.u-padding-bottom-none\\@to-large{padding-bottom:0 !important}}@media(min-width: 1200px){.u-padding-left-gutter\\@from-large{padding-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-left-gutter\\@to-large{padding-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-left-xs\\@from-large{padding-left:vh(5) !important}}@media(max-width: 1199px){.u-padding-left-xs\\@to-large{padding-left:vh(5) !important}}@media(min-width: 1200px){.u-padding-left-sm\\@from-large{padding-left:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-left-sm\\@to-large{padding-left:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-left-md\\@from-large{padding-left:vh(10) !important}}@media(max-width: 1199px){.u-padding-left-md\\@to-large{padding-left:vh(10) !important}}@media(min-width: 1200px){.u-padding-left-lg\\@from-large{padding-left:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-left-lg\\@to-large{padding-left:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-left-xl\\@from-large{padding-left:vh(15) !important}}@media(max-width: 1199px){.u-padding-left-xl\\@to-large{padding-left:vh(15) !important}}@media(min-width: 1200px){.u-padding-left\\@from-large{padding-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-left\\@to-large{padding-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-left-none\\@from-large{padding-left:0 !important}}@media(max-width: 1199px){.u-padding-left-none\\@to-large{padding-left:0 !important}}@media(min-width: 1200px){.u-padding-x-gutter\\@from-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-x-gutter\\@to-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-x-xs\\@from-large{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 1199px){.u-padding-x-xs\\@to-large{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 1200px){.u-padding-x-sm\\@from-large{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-x-sm\\@to-large{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-x-md\\@from-large{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 1199px){.u-padding-x-md\\@to-large{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 1200px){.u-padding-x-lg\\@from-large{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-x-lg\\@to-large{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-x-xl\\@from-large{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 1199px){.u-padding-x-xl\\@to-large{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 1200px){.u-padding-x\\@from-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-x\\@to-large{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-x-none\\@from-large{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1199px){.u-padding-x-none\\@to-large{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1200px){.u-padding-y-gutter\\@from-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-y-gutter\\@to-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-y-xs\\@from-large{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 1199px){.u-padding-y-xs\\@to-large{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 1200px){.u-padding-y-sm\\@from-large{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 1199px){.u-padding-y-sm\\@to-large{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 1200px){.u-padding-y-md\\@from-large{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 1199px){.u-padding-y-md\\@to-large{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 1200px){.u-padding-y-lg\\@from-large{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 1199px){.u-padding-y-lg\\@to-large{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 1200px){.u-padding-y-xl\\@from-large{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 1199px){.u-padding-y-xl\\@to-large{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 1200px){.u-padding-y\\@from-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-padding-y\\@to-large{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-padding-y-none\\@from-large{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1199px){.u-padding-y-none\\@to-large{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1200px){.u-margin-gutter\\@from-large{margin:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-gutter\\@to-large{margin:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-xs\\@from-large{margin:vh(5) !important}}@media(max-width: 1199px){.u-margin-xs\\@to-large{margin:vh(5) !important}}@media(min-width: 1200px){.u-margin-sm\\@from-large{margin:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-sm\\@to-large{margin:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-md\\@from-large{margin:vh(10) !important}}@media(max-width: 1199px){.u-margin-md\\@to-large{margin:vh(10) !important}}@media(min-width: 1200px){.u-margin-lg\\@from-large{margin:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-lg\\@to-large{margin:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-xl\\@from-large{margin:vh(15) !important}}@media(max-width: 1199px){.u-margin-xl\\@to-large{margin:vh(15) !important}}@media(min-width: 1200px){.u-margin\\@from-large{margin:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin\\@to-large{margin:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-none\\@from-large{margin:0 !important}}@media(max-width: 1199px){.u-margin-none\\@to-large{margin:0 !important}}@media(min-width: 1200px){.u-margin-top-gutter\\@from-large{margin-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-top-gutter\\@to-large{margin-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-top-xs\\@from-large{margin-top:vh(5) !important}}@media(max-width: 1199px){.u-margin-top-xs\\@to-large{margin-top:vh(5) !important}}@media(min-width: 1200px){.u-margin-top-sm\\@from-large{margin-top:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-top-sm\\@to-large{margin-top:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-top-md\\@from-large{margin-top:vh(10) !important}}@media(max-width: 1199px){.u-margin-top-md\\@to-large{margin-top:vh(10) !important}}@media(min-width: 1200px){.u-margin-top-lg\\@from-large{margin-top:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-top-lg\\@to-large{margin-top:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-top-xl\\@from-large{margin-top:vh(15) !important}}@media(max-width: 1199px){.u-margin-top-xl\\@to-large{margin-top:vh(15) !important}}@media(min-width: 1200px){.u-margin-top\\@from-large{margin-top:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-top\\@to-large{margin-top:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-top-none\\@from-large{margin-top:0 !important}}@media(max-width: 1199px){.u-margin-top-none\\@to-large{margin-top:0 !important}}@media(min-width: 1200px){.u-margin-right-gutter\\@from-large{margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-right-gutter\\@to-large{margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-right-xs\\@from-large{margin-right:vh(5) !important}}@media(max-width: 1199px){.u-margin-right-xs\\@to-large{margin-right:vh(5) !important}}@media(min-width: 1200px){.u-margin-right-sm\\@from-large{margin-right:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-right-sm\\@to-large{margin-right:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-right-md\\@from-large{margin-right:vh(10) !important}}@media(max-width: 1199px){.u-margin-right-md\\@to-large{margin-right:vh(10) !important}}@media(min-width: 1200px){.u-margin-right-lg\\@from-large{margin-right:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-right-lg\\@to-large{margin-right:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-right-xl\\@from-large{margin-right:vh(15) !important}}@media(max-width: 1199px){.u-margin-right-xl\\@to-large{margin-right:vh(15) !important}}@media(min-width: 1200px){.u-margin-right\\@from-large{margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-right\\@to-large{margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-right-none\\@from-large{margin-right:0 !important}}@media(max-width: 1199px){.u-margin-right-none\\@to-large{margin-right:0 !important}}@media(min-width: 1200px){.u-margin-bottom-gutter\\@from-large{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-bottom-gutter\\@to-large{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-bottom-xs\\@from-large{margin-bottom:vh(5) !important}}@media(max-width: 1199px){.u-margin-bottom-xs\\@to-large{margin-bottom:vh(5) !important}}@media(min-width: 1200px){.u-margin-bottom-sm\\@from-large{margin-bottom:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-bottom-sm\\@to-large{margin-bottom:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-bottom-md\\@from-large{margin-bottom:vh(10) !important}}@media(max-width: 1199px){.u-margin-bottom-md\\@to-large{margin-bottom:vh(10) !important}}@media(min-width: 1200px){.u-margin-bottom-lg\\@from-large{margin-bottom:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-bottom-lg\\@to-large{margin-bottom:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-bottom-xl\\@from-large{margin-bottom:vh(15) !important}}@media(max-width: 1199px){.u-margin-bottom-xl\\@to-large{margin-bottom:vh(15) !important}}@media(min-width: 1200px){.u-margin-bottom\\@from-large{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-bottom\\@to-large{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-bottom-none\\@from-large{margin-bottom:0 !important}}@media(max-width: 1199px){.u-margin-bottom-none\\@to-large{margin-bottom:0 !important}}@media(min-width: 1200px){.u-margin-left-gutter\\@from-large{margin-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-left-gutter\\@to-large{margin-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-left-xs\\@from-large{margin-left:vh(5) !important}}@media(max-width: 1199px){.u-margin-left-xs\\@to-large{margin-left:vh(5) !important}}@media(min-width: 1200px){.u-margin-left-sm\\@from-large{margin-left:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-left-sm\\@to-large{margin-left:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-left-md\\@from-large{margin-left:vh(10) !important}}@media(max-width: 1199px){.u-margin-left-md\\@to-large{margin-left:vh(10) !important}}@media(min-width: 1200px){.u-margin-left-lg\\@from-large{margin-left:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-left-lg\\@to-large{margin-left:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-left-xl\\@from-large{margin-left:vh(15) !important}}@media(max-width: 1199px){.u-margin-left-xl\\@to-large{margin-left:vh(15) !important}}@media(min-width: 1200px){.u-margin-left\\@from-large{margin-left:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-left\\@to-large{margin-left:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-left-none\\@from-large{margin-left:0 !important}}@media(max-width: 1199px){.u-margin-left-none\\@to-large{margin-left:0 !important}}@media(min-width: 1200px){.u-margin-x-gutter\\@from-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-x-gutter\\@to-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-x-xs\\@from-large{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 1199px){.u-margin-x-xs\\@to-large{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 1200px){.u-margin-x-sm\\@from-large{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-x-sm\\@to-large{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-x-md\\@from-large{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 1199px){.u-margin-x-md\\@to-large{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 1200px){.u-margin-x-lg\\@from-large{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-x-lg\\@to-large{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-x-xl\\@from-large{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 1199px){.u-margin-x-xl\\@to-large{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 1200px){.u-margin-x\\@from-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-x\\@to-large{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-x-none\\@from-large{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1199px){.u-margin-x-none\\@to-large{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1200px){.u-margin-y-gutter\\@from-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-y-gutter\\@to-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-y-xs\\@from-large{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 1199px){.u-margin-y-xs\\@to-large{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 1200px){.u-margin-y-sm\\@from-large{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 1199px){.u-margin-y-sm\\@to-large{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 1200px){.u-margin-y-md\\@from-large{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 1199px){.u-margin-y-md\\@to-large{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 1200px){.u-margin-y-lg\\@from-large{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 1199px){.u-margin-y-lg\\@to-large{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 1200px){.u-margin-y-xl\\@from-large{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 1199px){.u-margin-y-xl\\@to-large{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 1200px){.u-margin-y\\@from-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1199px){.u-margin-y\\@to-large{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1200px){.u-margin-y-none\\@from-large{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1199px){.u-margin-y-none\\@to-large{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1400px){.u-padding-gutter\\@from-big{padding:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-gutter\\@to-big{padding:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-xs\\@from-big{padding:vh(5) !important}}@media(max-width: 1399px){.u-padding-xs\\@to-big{padding:vh(5) !important}}@media(min-width: 1400px){.u-padding-sm\\@from-big{padding:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-sm\\@to-big{padding:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-md\\@from-big{padding:vh(10) !important}}@media(max-width: 1399px){.u-padding-md\\@to-big{padding:vh(10) !important}}@media(min-width: 1400px){.u-padding-lg\\@from-big{padding:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-lg\\@to-big{padding:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-xl\\@from-big{padding:vh(15) !important}}@media(max-width: 1399px){.u-padding-xl\\@to-big{padding:vh(15) !important}}@media(min-width: 1400px){.u-padding\\@from-big{padding:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding\\@to-big{padding:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-none\\@from-big{padding:0 !important}}@media(max-width: 1399px){.u-padding-none\\@to-big{padding:0 !important}}@media(min-width: 1400px){.u-padding-top-gutter\\@from-big{padding-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-top-gutter\\@to-big{padding-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-top-xs\\@from-big{padding-top:vh(5) !important}}@media(max-width: 1399px){.u-padding-top-xs\\@to-big{padding-top:vh(5) !important}}@media(min-width: 1400px){.u-padding-top-sm\\@from-big{padding-top:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-top-sm\\@to-big{padding-top:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-top-md\\@from-big{padding-top:vh(10) !important}}@media(max-width: 1399px){.u-padding-top-md\\@to-big{padding-top:vh(10) !important}}@media(min-width: 1400px){.u-padding-top-lg\\@from-big{padding-top:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-top-lg\\@to-big{padding-top:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-top-xl\\@from-big{padding-top:vh(15) !important}}@media(max-width: 1399px){.u-padding-top-xl\\@to-big{padding-top:vh(15) !important}}@media(min-width: 1400px){.u-padding-top\\@from-big{padding-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-top\\@to-big{padding-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-top-none\\@from-big{padding-top:0 !important}}@media(max-width: 1399px){.u-padding-top-none\\@to-big{padding-top:0 !important}}@media(min-width: 1400px){.u-padding-right-gutter\\@from-big{padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-right-gutter\\@to-big{padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-right-xs\\@from-big{padding-right:vh(5) !important}}@media(max-width: 1399px){.u-padding-right-xs\\@to-big{padding-right:vh(5) !important}}@media(min-width: 1400px){.u-padding-right-sm\\@from-big{padding-right:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-right-sm\\@to-big{padding-right:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-right-md\\@from-big{padding-right:vh(10) !important}}@media(max-width: 1399px){.u-padding-right-md\\@to-big{padding-right:vh(10) !important}}@media(min-width: 1400px){.u-padding-right-lg\\@from-big{padding-right:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-right-lg\\@to-big{padding-right:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-right-xl\\@from-big{padding-right:vh(15) !important}}@media(max-width: 1399px){.u-padding-right-xl\\@to-big{padding-right:vh(15) !important}}@media(min-width: 1400px){.u-padding-right\\@from-big{padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-right\\@to-big{padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-right-none\\@from-big{padding-right:0 !important}}@media(max-width: 1399px){.u-padding-right-none\\@to-big{padding-right:0 !important}}@media(min-width: 1400px){.u-padding-bottom-gutter\\@from-big{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-bottom-gutter\\@to-big{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-bottom-xs\\@from-big{padding-bottom:vh(5) !important}}@media(max-width: 1399px){.u-padding-bottom-xs\\@to-big{padding-bottom:vh(5) !important}}@media(min-width: 1400px){.u-padding-bottom-sm\\@from-big{padding-bottom:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-bottom-sm\\@to-big{padding-bottom:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-bottom-md\\@from-big{padding-bottom:vh(10) !important}}@media(max-width: 1399px){.u-padding-bottom-md\\@to-big{padding-bottom:vh(10) !important}}@media(min-width: 1400px){.u-padding-bottom-lg\\@from-big{padding-bottom:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-bottom-lg\\@to-big{padding-bottom:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-bottom-xl\\@from-big{padding-bottom:vh(15) !important}}@media(max-width: 1399px){.u-padding-bottom-xl\\@to-big{padding-bottom:vh(15) !important}}@media(min-width: 1400px){.u-padding-bottom\\@from-big{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-bottom\\@to-big{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-bottom-none\\@from-big{padding-bottom:0 !important}}@media(max-width: 1399px){.u-padding-bottom-none\\@to-big{padding-bottom:0 !important}}@media(min-width: 1400px){.u-padding-left-gutter\\@from-big{padding-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-left-gutter\\@to-big{padding-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-left-xs\\@from-big{padding-left:vh(5) !important}}@media(max-width: 1399px){.u-padding-left-xs\\@to-big{padding-left:vh(5) !important}}@media(min-width: 1400px){.u-padding-left-sm\\@from-big{padding-left:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-left-sm\\@to-big{padding-left:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-left-md\\@from-big{padding-left:vh(10) !important}}@media(max-width: 1399px){.u-padding-left-md\\@to-big{padding-left:vh(10) !important}}@media(min-width: 1400px){.u-padding-left-lg\\@from-big{padding-left:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-left-lg\\@to-big{padding-left:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-left-xl\\@from-big{padding-left:vh(15) !important}}@media(max-width: 1399px){.u-padding-left-xl\\@to-big{padding-left:vh(15) !important}}@media(min-width: 1400px){.u-padding-left\\@from-big{padding-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-left\\@to-big{padding-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-left-none\\@from-big{padding-left:0 !important}}@media(max-width: 1399px){.u-padding-left-none\\@to-big{padding-left:0 !important}}@media(min-width: 1400px){.u-padding-x-gutter\\@from-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-x-gutter\\@to-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-x-xs\\@from-big{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 1399px){.u-padding-x-xs\\@to-big{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 1400px){.u-padding-x-sm\\@from-big{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-x-sm\\@to-big{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-x-md\\@from-big{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 1399px){.u-padding-x-md\\@to-big{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 1400px){.u-padding-x-lg\\@from-big{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-x-lg\\@to-big{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-x-xl\\@from-big{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 1399px){.u-padding-x-xl\\@to-big{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 1400px){.u-padding-x\\@from-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-x\\@to-big{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-x-none\\@from-big{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1399px){.u-padding-x-none\\@to-big{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1400px){.u-padding-y-gutter\\@from-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-y-gutter\\@to-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-y-xs\\@from-big{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 1399px){.u-padding-y-xs\\@to-big{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 1400px){.u-padding-y-sm\\@from-big{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 1399px){.u-padding-y-sm\\@to-big{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 1400px){.u-padding-y-md\\@from-big{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 1399px){.u-padding-y-md\\@to-big{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 1400px){.u-padding-y-lg\\@from-big{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 1399px){.u-padding-y-lg\\@to-big{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 1400px){.u-padding-y-xl\\@from-big{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 1399px){.u-padding-y-xl\\@to-big{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 1400px){.u-padding-y\\@from-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-padding-y\\@to-big{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-padding-y-none\\@from-big{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1399px){.u-padding-y-none\\@to-big{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1400px){.u-margin-gutter\\@from-big{margin:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-gutter\\@to-big{margin:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-xs\\@from-big{margin:vh(5) !important}}@media(max-width: 1399px){.u-margin-xs\\@to-big{margin:vh(5) !important}}@media(min-width: 1400px){.u-margin-sm\\@from-big{margin:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-sm\\@to-big{margin:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-md\\@from-big{margin:vh(10) !important}}@media(max-width: 1399px){.u-margin-md\\@to-big{margin:vh(10) !important}}@media(min-width: 1400px){.u-margin-lg\\@from-big{margin:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-lg\\@to-big{margin:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-xl\\@from-big{margin:vh(15) !important}}@media(max-width: 1399px){.u-margin-xl\\@to-big{margin:vh(15) !important}}@media(min-width: 1400px){.u-margin\\@from-big{margin:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin\\@to-big{margin:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-none\\@from-big{margin:0 !important}}@media(max-width: 1399px){.u-margin-none\\@to-big{margin:0 !important}}@media(min-width: 1400px){.u-margin-top-gutter\\@from-big{margin-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-top-gutter\\@to-big{margin-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-top-xs\\@from-big{margin-top:vh(5) !important}}@media(max-width: 1399px){.u-margin-top-xs\\@to-big{margin-top:vh(5) !important}}@media(min-width: 1400px){.u-margin-top-sm\\@from-big{margin-top:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-top-sm\\@to-big{margin-top:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-top-md\\@from-big{margin-top:vh(10) !important}}@media(max-width: 1399px){.u-margin-top-md\\@to-big{margin-top:vh(10) !important}}@media(min-width: 1400px){.u-margin-top-lg\\@from-big{margin-top:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-top-lg\\@to-big{margin-top:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-top-xl\\@from-big{margin-top:vh(15) !important}}@media(max-width: 1399px){.u-margin-top-xl\\@to-big{margin-top:vh(15) !important}}@media(min-width: 1400px){.u-margin-top\\@from-big{margin-top:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-top\\@to-big{margin-top:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-top-none\\@from-big{margin-top:0 !important}}@media(max-width: 1399px){.u-margin-top-none\\@to-big{margin-top:0 !important}}@media(min-width: 1400px){.u-margin-right-gutter\\@from-big{margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-right-gutter\\@to-big{margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-right-xs\\@from-big{margin-right:vh(5) !important}}@media(max-width: 1399px){.u-margin-right-xs\\@to-big{margin-right:vh(5) !important}}@media(min-width: 1400px){.u-margin-right-sm\\@from-big{margin-right:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-right-sm\\@to-big{margin-right:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-right-md\\@from-big{margin-right:vh(10) !important}}@media(max-width: 1399px){.u-margin-right-md\\@to-big{margin-right:vh(10) !important}}@media(min-width: 1400px){.u-margin-right-lg\\@from-big{margin-right:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-right-lg\\@to-big{margin-right:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-right-xl\\@from-big{margin-right:vh(15) !important}}@media(max-width: 1399px){.u-margin-right-xl\\@to-big{margin-right:vh(15) !important}}@media(min-width: 1400px){.u-margin-right\\@from-big{margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-right\\@to-big{margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-right-none\\@from-big{margin-right:0 !important}}@media(max-width: 1399px){.u-margin-right-none\\@to-big{margin-right:0 !important}}@media(min-width: 1400px){.u-margin-bottom-gutter\\@from-big{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-bottom-gutter\\@to-big{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-bottom-xs\\@from-big{margin-bottom:vh(5) !important}}@media(max-width: 1399px){.u-margin-bottom-xs\\@to-big{margin-bottom:vh(5) !important}}@media(min-width: 1400px){.u-margin-bottom-sm\\@from-big{margin-bottom:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-bottom-sm\\@to-big{margin-bottom:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-bottom-md\\@from-big{margin-bottom:vh(10) !important}}@media(max-width: 1399px){.u-margin-bottom-md\\@to-big{margin-bottom:vh(10) !important}}@media(min-width: 1400px){.u-margin-bottom-lg\\@from-big{margin-bottom:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-bottom-lg\\@to-big{margin-bottom:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-bottom-xl\\@from-big{margin-bottom:vh(15) !important}}@media(max-width: 1399px){.u-margin-bottom-xl\\@to-big{margin-bottom:vh(15) !important}}@media(min-width: 1400px){.u-margin-bottom\\@from-big{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-bottom\\@to-big{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-bottom-none\\@from-big{margin-bottom:0 !important}}@media(max-width: 1399px){.u-margin-bottom-none\\@to-big{margin-bottom:0 !important}}@media(min-width: 1400px){.u-margin-left-gutter\\@from-big{margin-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-left-gutter\\@to-big{margin-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-left-xs\\@from-big{margin-left:vh(5) !important}}@media(max-width: 1399px){.u-margin-left-xs\\@to-big{margin-left:vh(5) !important}}@media(min-width: 1400px){.u-margin-left-sm\\@from-big{margin-left:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-left-sm\\@to-big{margin-left:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-left-md\\@from-big{margin-left:vh(10) !important}}@media(max-width: 1399px){.u-margin-left-md\\@to-big{margin-left:vh(10) !important}}@media(min-width: 1400px){.u-margin-left-lg\\@from-big{margin-left:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-left-lg\\@to-big{margin-left:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-left-xl\\@from-big{margin-left:vh(15) !important}}@media(max-width: 1399px){.u-margin-left-xl\\@to-big{margin-left:vh(15) !important}}@media(min-width: 1400px){.u-margin-left\\@from-big{margin-left:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-left\\@to-big{margin-left:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-left-none\\@from-big{margin-left:0 !important}}@media(max-width: 1399px){.u-margin-left-none\\@to-big{margin-left:0 !important}}@media(min-width: 1400px){.u-margin-x-gutter\\@from-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-x-gutter\\@to-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-x-xs\\@from-big{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 1399px){.u-margin-x-xs\\@to-big{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 1400px){.u-margin-x-sm\\@from-big{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-x-sm\\@to-big{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-x-md\\@from-big{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 1399px){.u-margin-x-md\\@to-big{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 1400px){.u-margin-x-lg\\@from-big{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-x-lg\\@to-big{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-x-xl\\@from-big{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 1399px){.u-margin-x-xl\\@to-big{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 1400px){.u-margin-x\\@from-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-x\\@to-big{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-x-none\\@from-big{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1399px){.u-margin-x-none\\@to-big{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1400px){.u-margin-y-gutter\\@from-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-y-gutter\\@to-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-y-xs\\@from-big{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 1399px){.u-margin-y-xs\\@to-big{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 1400px){.u-margin-y-sm\\@from-big{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 1399px){.u-margin-y-sm\\@to-big{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 1400px){.u-margin-y-md\\@from-big{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 1399px){.u-margin-y-md\\@to-big{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 1400px){.u-margin-y-lg\\@from-big{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 1399px){.u-margin-y-lg\\@to-big{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 1400px){.u-margin-y-xl\\@from-big{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 1399px){.u-margin-y-xl\\@to-big{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 1400px){.u-margin-y\\@from-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1399px){.u-margin-y\\@to-big{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1400px){.u-margin-y-none\\@from-big{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1399px){.u-margin-y-none\\@to-big{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1600px){.u-padding-gutter\\@from-huge{padding:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-gutter\\@to-huge{padding:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-xs\\@from-huge{padding:vh(5) !important}}@media(max-width: 1599px){.u-padding-xs\\@to-huge{padding:vh(5) !important}}@media(min-width: 1600px){.u-padding-sm\\@from-huge{padding:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-sm\\@to-huge{padding:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-md\\@from-huge{padding:vh(10) !important}}@media(max-width: 1599px){.u-padding-md\\@to-huge{padding:vh(10) !important}}@media(min-width: 1600px){.u-padding-lg\\@from-huge{padding:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-lg\\@to-huge{padding:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-xl\\@from-huge{padding:vh(15) !important}}@media(max-width: 1599px){.u-padding-xl\\@to-huge{padding:vh(15) !important}}@media(min-width: 1600px){.u-padding\\@from-huge{padding:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding\\@to-huge{padding:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-none\\@from-huge{padding:0 !important}}@media(max-width: 1599px){.u-padding-none\\@to-huge{padding:0 !important}}@media(min-width: 1600px){.u-padding-top-gutter\\@from-huge{padding-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-top-gutter\\@to-huge{padding-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-top-xs\\@from-huge{padding-top:vh(5) !important}}@media(max-width: 1599px){.u-padding-top-xs\\@to-huge{padding-top:vh(5) !important}}@media(min-width: 1600px){.u-padding-top-sm\\@from-huge{padding-top:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-top-sm\\@to-huge{padding-top:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-top-md\\@from-huge{padding-top:vh(10) !important}}@media(max-width: 1599px){.u-padding-top-md\\@to-huge{padding-top:vh(10) !important}}@media(min-width: 1600px){.u-padding-top-lg\\@from-huge{padding-top:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-top-lg\\@to-huge{padding-top:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-top-xl\\@from-huge{padding-top:vh(15) !important}}@media(max-width: 1599px){.u-padding-top-xl\\@to-huge{padding-top:vh(15) !important}}@media(min-width: 1600px){.u-padding-top\\@from-huge{padding-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-top\\@to-huge{padding-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-top-none\\@from-huge{padding-top:0 !important}}@media(max-width: 1599px){.u-padding-top-none\\@to-huge{padding-top:0 !important}}@media(min-width: 1600px){.u-padding-right-gutter\\@from-huge{padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-right-gutter\\@to-huge{padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-right-xs\\@from-huge{padding-right:vh(5) !important}}@media(max-width: 1599px){.u-padding-right-xs\\@to-huge{padding-right:vh(5) !important}}@media(min-width: 1600px){.u-padding-right-sm\\@from-huge{padding-right:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-right-sm\\@to-huge{padding-right:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-right-md\\@from-huge{padding-right:vh(10) !important}}@media(max-width: 1599px){.u-padding-right-md\\@to-huge{padding-right:vh(10) !important}}@media(min-width: 1600px){.u-padding-right-lg\\@from-huge{padding-right:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-right-lg\\@to-huge{padding-right:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-right-xl\\@from-huge{padding-right:vh(15) !important}}@media(max-width: 1599px){.u-padding-right-xl\\@to-huge{padding-right:vh(15) !important}}@media(min-width: 1600px){.u-padding-right\\@from-huge{padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-right\\@to-huge{padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-right-none\\@from-huge{padding-right:0 !important}}@media(max-width: 1599px){.u-padding-right-none\\@to-huge{padding-right:0 !important}}@media(min-width: 1600px){.u-padding-bottom-gutter\\@from-huge{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-bottom-gutter\\@to-huge{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-bottom-xs\\@from-huge{padding-bottom:vh(5) !important}}@media(max-width: 1599px){.u-padding-bottom-xs\\@to-huge{padding-bottom:vh(5) !important}}@media(min-width: 1600px){.u-padding-bottom-sm\\@from-huge{padding-bottom:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-bottom-sm\\@to-huge{padding-bottom:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-bottom-md\\@from-huge{padding-bottom:vh(10) !important}}@media(max-width: 1599px){.u-padding-bottom-md\\@to-huge{padding-bottom:vh(10) !important}}@media(min-width: 1600px){.u-padding-bottom-lg\\@from-huge{padding-bottom:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-bottom-lg\\@to-huge{padding-bottom:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-bottom-xl\\@from-huge{padding-bottom:vh(15) !important}}@media(max-width: 1599px){.u-padding-bottom-xl\\@to-huge{padding-bottom:vh(15) !important}}@media(min-width: 1600px){.u-padding-bottom\\@from-huge{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-bottom\\@to-huge{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-bottom-none\\@from-huge{padding-bottom:0 !important}}@media(max-width: 1599px){.u-padding-bottom-none\\@to-huge{padding-bottom:0 !important}}@media(min-width: 1600px){.u-padding-left-gutter\\@from-huge{padding-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-left-gutter\\@to-huge{padding-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-left-xs\\@from-huge{padding-left:vh(5) !important}}@media(max-width: 1599px){.u-padding-left-xs\\@to-huge{padding-left:vh(5) !important}}@media(min-width: 1600px){.u-padding-left-sm\\@from-huge{padding-left:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-left-sm\\@to-huge{padding-left:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-left-md\\@from-huge{padding-left:vh(10) !important}}@media(max-width: 1599px){.u-padding-left-md\\@to-huge{padding-left:vh(10) !important}}@media(min-width: 1600px){.u-padding-left-lg\\@from-huge{padding-left:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-left-lg\\@to-huge{padding-left:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-left-xl\\@from-huge{padding-left:vh(15) !important}}@media(max-width: 1599px){.u-padding-left-xl\\@to-huge{padding-left:vh(15) !important}}@media(min-width: 1600px){.u-padding-left\\@from-huge{padding-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-left\\@to-huge{padding-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-left-none\\@from-huge{padding-left:0 !important}}@media(max-width: 1599px){.u-padding-left-none\\@to-huge{padding-left:0 !important}}@media(min-width: 1600px){.u-padding-x-gutter\\@from-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-x-gutter\\@to-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-x-xs\\@from-huge{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 1599px){.u-padding-x-xs\\@to-huge{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 1600px){.u-padding-x-sm\\@from-huge{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-x-sm\\@to-huge{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-x-md\\@from-huge{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 1599px){.u-padding-x-md\\@to-huge{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 1600px){.u-padding-x-lg\\@from-huge{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-x-lg\\@to-huge{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-x-xl\\@from-huge{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 1599px){.u-padding-x-xl\\@to-huge{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 1600px){.u-padding-x\\@from-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-x\\@to-huge{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-x-none\\@from-huge{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1599px){.u-padding-x-none\\@to-huge{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1600px){.u-padding-y-gutter\\@from-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-y-gutter\\@to-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-y-xs\\@from-huge{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 1599px){.u-padding-y-xs\\@to-huge{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 1600px){.u-padding-y-sm\\@from-huge{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 1599px){.u-padding-y-sm\\@to-huge{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 1600px){.u-padding-y-md\\@from-huge{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 1599px){.u-padding-y-md\\@to-huge{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 1600px){.u-padding-y-lg\\@from-huge{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 1599px){.u-padding-y-lg\\@to-huge{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 1600px){.u-padding-y-xl\\@from-huge{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 1599px){.u-padding-y-xl\\@to-huge{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 1600px){.u-padding-y\\@from-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-padding-y\\@to-huge{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-padding-y-none\\@from-huge{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1599px){.u-padding-y-none\\@to-huge{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1600px){.u-margin-gutter\\@from-huge{margin:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-gutter\\@to-huge{margin:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-xs\\@from-huge{margin:vh(5) !important}}@media(max-width: 1599px){.u-margin-xs\\@to-huge{margin:vh(5) !important}}@media(min-width: 1600px){.u-margin-sm\\@from-huge{margin:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-sm\\@to-huge{margin:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-md\\@from-huge{margin:vh(10) !important}}@media(max-width: 1599px){.u-margin-md\\@to-huge{margin:vh(10) !important}}@media(min-width: 1600px){.u-margin-lg\\@from-huge{margin:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-lg\\@to-huge{margin:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-xl\\@from-huge{margin:vh(15) !important}}@media(max-width: 1599px){.u-margin-xl\\@to-huge{margin:vh(15) !important}}@media(min-width: 1600px){.u-margin\\@from-huge{margin:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin\\@to-huge{margin:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-none\\@from-huge{margin:0 !important}}@media(max-width: 1599px){.u-margin-none\\@to-huge{margin:0 !important}}@media(min-width: 1600px){.u-margin-top-gutter\\@from-huge{margin-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-top-gutter\\@to-huge{margin-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-top-xs\\@from-huge{margin-top:vh(5) !important}}@media(max-width: 1599px){.u-margin-top-xs\\@to-huge{margin-top:vh(5) !important}}@media(min-width: 1600px){.u-margin-top-sm\\@from-huge{margin-top:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-top-sm\\@to-huge{margin-top:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-top-md\\@from-huge{margin-top:vh(10) !important}}@media(max-width: 1599px){.u-margin-top-md\\@to-huge{margin-top:vh(10) !important}}@media(min-width: 1600px){.u-margin-top-lg\\@from-huge{margin-top:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-top-lg\\@to-huge{margin-top:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-top-xl\\@from-huge{margin-top:vh(15) !important}}@media(max-width: 1599px){.u-margin-top-xl\\@to-huge{margin-top:vh(15) !important}}@media(min-width: 1600px){.u-margin-top\\@from-huge{margin-top:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-top\\@to-huge{margin-top:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-top-none\\@from-huge{margin-top:0 !important}}@media(max-width: 1599px){.u-margin-top-none\\@to-huge{margin-top:0 !important}}@media(min-width: 1600px){.u-margin-right-gutter\\@from-huge{margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-right-gutter\\@to-huge{margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-right-xs\\@from-huge{margin-right:vh(5) !important}}@media(max-width: 1599px){.u-margin-right-xs\\@to-huge{margin-right:vh(5) !important}}@media(min-width: 1600px){.u-margin-right-sm\\@from-huge{margin-right:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-right-sm\\@to-huge{margin-right:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-right-md\\@from-huge{margin-right:vh(10) !important}}@media(max-width: 1599px){.u-margin-right-md\\@to-huge{margin-right:vh(10) !important}}@media(min-width: 1600px){.u-margin-right-lg\\@from-huge{margin-right:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-right-lg\\@to-huge{margin-right:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-right-xl\\@from-huge{margin-right:vh(15) !important}}@media(max-width: 1599px){.u-margin-right-xl\\@to-huge{margin-right:vh(15) !important}}@media(min-width: 1600px){.u-margin-right\\@from-huge{margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-right\\@to-huge{margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-right-none\\@from-huge{margin-right:0 !important}}@media(max-width: 1599px){.u-margin-right-none\\@to-huge{margin-right:0 !important}}@media(min-width: 1600px){.u-margin-bottom-gutter\\@from-huge{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-bottom-gutter\\@to-huge{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-bottom-xs\\@from-huge{margin-bottom:vh(5) !important}}@media(max-width: 1599px){.u-margin-bottom-xs\\@to-huge{margin-bottom:vh(5) !important}}@media(min-width: 1600px){.u-margin-bottom-sm\\@from-huge{margin-bottom:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-bottom-sm\\@to-huge{margin-bottom:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-bottom-md\\@from-huge{margin-bottom:vh(10) !important}}@media(max-width: 1599px){.u-margin-bottom-md\\@to-huge{margin-bottom:vh(10) !important}}@media(min-width: 1600px){.u-margin-bottom-lg\\@from-huge{margin-bottom:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-bottom-lg\\@to-huge{margin-bottom:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-bottom-xl\\@from-huge{margin-bottom:vh(15) !important}}@media(max-width: 1599px){.u-margin-bottom-xl\\@to-huge{margin-bottom:vh(15) !important}}@media(min-width: 1600px){.u-margin-bottom\\@from-huge{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-bottom\\@to-huge{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-bottom-none\\@from-huge{margin-bottom:0 !important}}@media(max-width: 1599px){.u-margin-bottom-none\\@to-huge{margin-bottom:0 !important}}@media(min-width: 1600px){.u-margin-left-gutter\\@from-huge{margin-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-left-gutter\\@to-huge{margin-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-left-xs\\@from-huge{margin-left:vh(5) !important}}@media(max-width: 1599px){.u-margin-left-xs\\@to-huge{margin-left:vh(5) !important}}@media(min-width: 1600px){.u-margin-left-sm\\@from-huge{margin-left:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-left-sm\\@to-huge{margin-left:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-left-md\\@from-huge{margin-left:vh(10) !important}}@media(max-width: 1599px){.u-margin-left-md\\@to-huge{margin-left:vh(10) !important}}@media(min-width: 1600px){.u-margin-left-lg\\@from-huge{margin-left:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-left-lg\\@to-huge{margin-left:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-left-xl\\@from-huge{margin-left:vh(15) !important}}@media(max-width: 1599px){.u-margin-left-xl\\@to-huge{margin-left:vh(15) !important}}@media(min-width: 1600px){.u-margin-left\\@from-huge{margin-left:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-left\\@to-huge{margin-left:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-left-none\\@from-huge{margin-left:0 !important}}@media(max-width: 1599px){.u-margin-left-none\\@to-huge{margin-left:0 !important}}@media(min-width: 1600px){.u-margin-x-gutter\\@from-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-x-gutter\\@to-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-x-xs\\@from-huge{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 1599px){.u-margin-x-xs\\@to-huge{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 1600px){.u-margin-x-sm\\@from-huge{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-x-sm\\@to-huge{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-x-md\\@from-huge{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 1599px){.u-margin-x-md\\@to-huge{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 1600px){.u-margin-x-lg\\@from-huge{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-x-lg\\@to-huge{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-x-xl\\@from-huge{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 1599px){.u-margin-x-xl\\@to-huge{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 1600px){.u-margin-x\\@from-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-x\\@to-huge{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-x-none\\@from-huge{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1599px){.u-margin-x-none\\@to-huge{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1600px){.u-margin-y-gutter\\@from-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-y-gutter\\@to-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-y-xs\\@from-huge{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 1599px){.u-margin-y-xs\\@to-huge{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 1600px){.u-margin-y-sm\\@from-huge{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 1599px){.u-margin-y-sm\\@to-huge{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 1600px){.u-margin-y-md\\@from-huge{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 1599px){.u-margin-y-md\\@to-huge{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 1600px){.u-margin-y-lg\\@from-huge{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 1599px){.u-margin-y-lg\\@to-huge{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 1600px){.u-margin-y-xl\\@from-huge{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 1599px){.u-margin-y-xl\\@to-huge{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 1600px){.u-margin-y\\@from-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1599px){.u-margin-y\\@to-huge{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1600px){.u-margin-y-none\\@from-huge{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1599px){.u-margin-y-none\\@to-huge{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 1800px){.u-padding-gutter\\@from-enormous{padding:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-gutter\\@to-enormous{padding:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-xs\\@from-enormous{padding:vh(5) !important}}@media(max-width: 1799px){.u-padding-xs\\@to-enormous{padding:vh(5) !important}}@media(min-width: 1800px){.u-padding-sm\\@from-enormous{padding:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-sm\\@to-enormous{padding:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-md\\@from-enormous{padding:vh(10) !important}}@media(max-width: 1799px){.u-padding-md\\@to-enormous{padding:vh(10) !important}}@media(min-width: 1800px){.u-padding-lg\\@from-enormous{padding:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-lg\\@to-enormous{padding:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-xl\\@from-enormous{padding:vh(15) !important}}@media(max-width: 1799px){.u-padding-xl\\@to-enormous{padding:vh(15) !important}}@media(min-width: 1800px){.u-padding\\@from-enormous{padding:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding\\@to-enormous{padding:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-none\\@from-enormous{padding:0 !important}}@media(max-width: 1799px){.u-padding-none\\@to-enormous{padding:0 !important}}@media(min-width: 1800px){.u-padding-top-gutter\\@from-enormous{padding-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-top-gutter\\@to-enormous{padding-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-top-xs\\@from-enormous{padding-top:vh(5) !important}}@media(max-width: 1799px){.u-padding-top-xs\\@to-enormous{padding-top:vh(5) !important}}@media(min-width: 1800px){.u-padding-top-sm\\@from-enormous{padding-top:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-top-sm\\@to-enormous{padding-top:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-top-md\\@from-enormous{padding-top:vh(10) !important}}@media(max-width: 1799px){.u-padding-top-md\\@to-enormous{padding-top:vh(10) !important}}@media(min-width: 1800px){.u-padding-top-lg\\@from-enormous{padding-top:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-top-lg\\@to-enormous{padding-top:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-top-xl\\@from-enormous{padding-top:vh(15) !important}}@media(max-width: 1799px){.u-padding-top-xl\\@to-enormous{padding-top:vh(15) !important}}@media(min-width: 1800px){.u-padding-top\\@from-enormous{padding-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-top\\@to-enormous{padding-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-top-none\\@from-enormous{padding-top:0 !important}}@media(max-width: 1799px){.u-padding-top-none\\@to-enormous{padding-top:0 !important}}@media(min-width: 1800px){.u-padding-right-gutter\\@from-enormous{padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-right-gutter\\@to-enormous{padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-right-xs\\@from-enormous{padding-right:vh(5) !important}}@media(max-width: 1799px){.u-padding-right-xs\\@to-enormous{padding-right:vh(5) !important}}@media(min-width: 1800px){.u-padding-right-sm\\@from-enormous{padding-right:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-right-sm\\@to-enormous{padding-right:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-right-md\\@from-enormous{padding-right:vh(10) !important}}@media(max-width: 1799px){.u-padding-right-md\\@to-enormous{padding-right:vh(10) !important}}@media(min-width: 1800px){.u-padding-right-lg\\@from-enormous{padding-right:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-right-lg\\@to-enormous{padding-right:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-right-xl\\@from-enormous{padding-right:vh(15) !important}}@media(max-width: 1799px){.u-padding-right-xl\\@to-enormous{padding-right:vh(15) !important}}@media(min-width: 1800px){.u-padding-right\\@from-enormous{padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-right\\@to-enormous{padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-right-none\\@from-enormous{padding-right:0 !important}}@media(max-width: 1799px){.u-padding-right-none\\@to-enormous{padding-right:0 !important}}@media(min-width: 1800px){.u-padding-bottom-gutter\\@from-enormous{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-bottom-gutter\\@to-enormous{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-bottom-xs\\@from-enormous{padding-bottom:vh(5) !important}}@media(max-width: 1799px){.u-padding-bottom-xs\\@to-enormous{padding-bottom:vh(5) !important}}@media(min-width: 1800px){.u-padding-bottom-sm\\@from-enormous{padding-bottom:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-bottom-sm\\@to-enormous{padding-bottom:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-bottom-md\\@from-enormous{padding-bottom:vh(10) !important}}@media(max-width: 1799px){.u-padding-bottom-md\\@to-enormous{padding-bottom:vh(10) !important}}@media(min-width: 1800px){.u-padding-bottom-lg\\@from-enormous{padding-bottom:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-bottom-lg\\@to-enormous{padding-bottom:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-bottom-xl\\@from-enormous{padding-bottom:vh(15) !important}}@media(max-width: 1799px){.u-padding-bottom-xl\\@to-enormous{padding-bottom:vh(15) !important}}@media(min-width: 1800px){.u-padding-bottom\\@from-enormous{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-bottom\\@to-enormous{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-bottom-none\\@from-enormous{padding-bottom:0 !important}}@media(max-width: 1799px){.u-padding-bottom-none\\@to-enormous{padding-bottom:0 !important}}@media(min-width: 1800px){.u-padding-left-gutter\\@from-enormous{padding-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-left-gutter\\@to-enormous{padding-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-left-xs\\@from-enormous{padding-left:vh(5) !important}}@media(max-width: 1799px){.u-padding-left-xs\\@to-enormous{padding-left:vh(5) !important}}@media(min-width: 1800px){.u-padding-left-sm\\@from-enormous{padding-left:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-left-sm\\@to-enormous{padding-left:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-left-md\\@from-enormous{padding-left:vh(10) !important}}@media(max-width: 1799px){.u-padding-left-md\\@to-enormous{padding-left:vh(10) !important}}@media(min-width: 1800px){.u-padding-left-lg\\@from-enormous{padding-left:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-left-lg\\@to-enormous{padding-left:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-left-xl\\@from-enormous{padding-left:vh(15) !important}}@media(max-width: 1799px){.u-padding-left-xl\\@to-enormous{padding-left:vh(15) !important}}@media(min-width: 1800px){.u-padding-left\\@from-enormous{padding-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-left\\@to-enormous{padding-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-left-none\\@from-enormous{padding-left:0 !important}}@media(max-width: 1799px){.u-padding-left-none\\@to-enormous{padding-left:0 !important}}@media(min-width: 1800px){.u-padding-x-gutter\\@from-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-x-gutter\\@to-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-x-xs\\@from-enormous{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 1799px){.u-padding-x-xs\\@to-enormous{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 1800px){.u-padding-x-sm\\@from-enormous{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-x-sm\\@to-enormous{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-x-md\\@from-enormous{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 1799px){.u-padding-x-md\\@to-enormous{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 1800px){.u-padding-x-lg\\@from-enormous{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-x-lg\\@to-enormous{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-x-xl\\@from-enormous{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 1799px){.u-padding-x-xl\\@to-enormous{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 1800px){.u-padding-x\\@from-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-x\\@to-enormous{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-x-none\\@from-enormous{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1799px){.u-padding-x-none\\@to-enormous{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 1800px){.u-padding-y-gutter\\@from-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-y-gutter\\@to-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-y-xs\\@from-enormous{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 1799px){.u-padding-y-xs\\@to-enormous{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 1800px){.u-padding-y-sm\\@from-enormous{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 1799px){.u-padding-y-sm\\@to-enormous{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 1800px){.u-padding-y-md\\@from-enormous{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 1799px){.u-padding-y-md\\@to-enormous{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 1800px){.u-padding-y-lg\\@from-enormous{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 1799px){.u-padding-y-lg\\@to-enormous{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 1800px){.u-padding-y-xl\\@from-enormous{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 1799px){.u-padding-y-xl\\@to-enormous{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 1800px){.u-padding-y\\@from-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-padding-y\\@to-enormous{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-padding-y-none\\@from-enormous{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1799px){.u-padding-y-none\\@to-enormous{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 1800px){.u-margin-gutter\\@from-enormous{margin:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-gutter\\@to-enormous{margin:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-xs\\@from-enormous{margin:vh(5) !important}}@media(max-width: 1799px){.u-margin-xs\\@to-enormous{margin:vh(5) !important}}@media(min-width: 1800px){.u-margin-sm\\@from-enormous{margin:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-sm\\@to-enormous{margin:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-md\\@from-enormous{margin:vh(10) !important}}@media(max-width: 1799px){.u-margin-md\\@to-enormous{margin:vh(10) !important}}@media(min-width: 1800px){.u-margin-lg\\@from-enormous{margin:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-lg\\@to-enormous{margin:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-xl\\@from-enormous{margin:vh(15) !important}}@media(max-width: 1799px){.u-margin-xl\\@to-enormous{margin:vh(15) !important}}@media(min-width: 1800px){.u-margin\\@from-enormous{margin:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin\\@to-enormous{margin:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-none\\@from-enormous{margin:0 !important}}@media(max-width: 1799px){.u-margin-none\\@to-enormous{margin:0 !important}}@media(min-width: 1800px){.u-margin-top-gutter\\@from-enormous{margin-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-top-gutter\\@to-enormous{margin-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-top-xs\\@from-enormous{margin-top:vh(5) !important}}@media(max-width: 1799px){.u-margin-top-xs\\@to-enormous{margin-top:vh(5) !important}}@media(min-width: 1800px){.u-margin-top-sm\\@from-enormous{margin-top:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-top-sm\\@to-enormous{margin-top:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-top-md\\@from-enormous{margin-top:vh(10) !important}}@media(max-width: 1799px){.u-margin-top-md\\@to-enormous{margin-top:vh(10) !important}}@media(min-width: 1800px){.u-margin-top-lg\\@from-enormous{margin-top:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-top-lg\\@to-enormous{margin-top:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-top-xl\\@from-enormous{margin-top:vh(15) !important}}@media(max-width: 1799px){.u-margin-top-xl\\@to-enormous{margin-top:vh(15) !important}}@media(min-width: 1800px){.u-margin-top\\@from-enormous{margin-top:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-top\\@to-enormous{margin-top:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-top-none\\@from-enormous{margin-top:0 !important}}@media(max-width: 1799px){.u-margin-top-none\\@to-enormous{margin-top:0 !important}}@media(min-width: 1800px){.u-margin-right-gutter\\@from-enormous{margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-right-gutter\\@to-enormous{margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-right-xs\\@from-enormous{margin-right:vh(5) !important}}@media(max-width: 1799px){.u-margin-right-xs\\@to-enormous{margin-right:vh(5) !important}}@media(min-width: 1800px){.u-margin-right-sm\\@from-enormous{margin-right:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-right-sm\\@to-enormous{margin-right:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-right-md\\@from-enormous{margin-right:vh(10) !important}}@media(max-width: 1799px){.u-margin-right-md\\@to-enormous{margin-right:vh(10) !important}}@media(min-width: 1800px){.u-margin-right-lg\\@from-enormous{margin-right:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-right-lg\\@to-enormous{margin-right:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-right-xl\\@from-enormous{margin-right:vh(15) !important}}@media(max-width: 1799px){.u-margin-right-xl\\@to-enormous{margin-right:vh(15) !important}}@media(min-width: 1800px){.u-margin-right\\@from-enormous{margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-right\\@to-enormous{margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-right-none\\@from-enormous{margin-right:0 !important}}@media(max-width: 1799px){.u-margin-right-none\\@to-enormous{margin-right:0 !important}}@media(min-width: 1800px){.u-margin-bottom-gutter\\@from-enormous{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-bottom-gutter\\@to-enormous{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-bottom-xs\\@from-enormous{margin-bottom:vh(5) !important}}@media(max-width: 1799px){.u-margin-bottom-xs\\@to-enormous{margin-bottom:vh(5) !important}}@media(min-width: 1800px){.u-margin-bottom-sm\\@from-enormous{margin-bottom:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-bottom-sm\\@to-enormous{margin-bottom:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-bottom-md\\@from-enormous{margin-bottom:vh(10) !important}}@media(max-width: 1799px){.u-margin-bottom-md\\@to-enormous{margin-bottom:vh(10) !important}}@media(min-width: 1800px){.u-margin-bottom-lg\\@from-enormous{margin-bottom:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-bottom-lg\\@to-enormous{margin-bottom:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-bottom-xl\\@from-enormous{margin-bottom:vh(15) !important}}@media(max-width: 1799px){.u-margin-bottom-xl\\@to-enormous{margin-bottom:vh(15) !important}}@media(min-width: 1800px){.u-margin-bottom\\@from-enormous{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-bottom\\@to-enormous{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-bottom-none\\@from-enormous{margin-bottom:0 !important}}@media(max-width: 1799px){.u-margin-bottom-none\\@to-enormous{margin-bottom:0 !important}}@media(min-width: 1800px){.u-margin-left-gutter\\@from-enormous{margin-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-left-gutter\\@to-enormous{margin-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-left-xs\\@from-enormous{margin-left:vh(5) !important}}@media(max-width: 1799px){.u-margin-left-xs\\@to-enormous{margin-left:vh(5) !important}}@media(min-width: 1800px){.u-margin-left-sm\\@from-enormous{margin-left:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-left-sm\\@to-enormous{margin-left:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-left-md\\@from-enormous{margin-left:vh(10) !important}}@media(max-width: 1799px){.u-margin-left-md\\@to-enormous{margin-left:vh(10) !important}}@media(min-width: 1800px){.u-margin-left-lg\\@from-enormous{margin-left:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-left-lg\\@to-enormous{margin-left:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-left-xl\\@from-enormous{margin-left:vh(15) !important}}@media(max-width: 1799px){.u-margin-left-xl\\@to-enormous{margin-left:vh(15) !important}}@media(min-width: 1800px){.u-margin-left\\@from-enormous{margin-left:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-left\\@to-enormous{margin-left:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-left-none\\@from-enormous{margin-left:0 !important}}@media(max-width: 1799px){.u-margin-left-none\\@to-enormous{margin-left:0 !important}}@media(min-width: 1800px){.u-margin-x-gutter\\@from-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-x-gutter\\@to-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-x-xs\\@from-enormous{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 1799px){.u-margin-x-xs\\@to-enormous{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 1800px){.u-margin-x-sm\\@from-enormous{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-x-sm\\@to-enormous{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-x-md\\@from-enormous{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 1799px){.u-margin-x-md\\@to-enormous{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 1800px){.u-margin-x-lg\\@from-enormous{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-x-lg\\@to-enormous{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-x-xl\\@from-enormous{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 1799px){.u-margin-x-xl\\@to-enormous{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 1800px){.u-margin-x\\@from-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-x\\@to-enormous{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-x-none\\@from-enormous{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1799px){.u-margin-x-none\\@to-enormous{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 1800px){.u-margin-y-gutter\\@from-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-y-gutter\\@to-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-y-xs\\@from-enormous{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 1799px){.u-margin-y-xs\\@to-enormous{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 1800px){.u-margin-y-sm\\@from-enormous{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 1799px){.u-margin-y-sm\\@to-enormous{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 1800px){.u-margin-y-md\\@from-enormous{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 1799px){.u-margin-y-md\\@to-enormous{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 1800px){.u-margin-y-lg\\@from-enormous{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 1799px){.u-margin-y-lg\\@to-enormous{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 1800px){.u-margin-y-xl\\@from-enormous{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 1799px){.u-margin-y-xl\\@to-enormous{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 1800px){.u-margin-y\\@from-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1799px){.u-margin-y\\@to-enormous{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 1800px){.u-margin-y-none\\@from-enormous{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1799px){.u-margin-y-none\\@to-enormous{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 2000px){.u-padding-gutter\\@from-gigantic{padding:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-gutter\\@to-gigantic{padding:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-xs\\@from-gigantic{padding:vh(5) !important}}@media(max-width: 1999px){.u-padding-xs\\@to-gigantic{padding:vh(5) !important}}@media(min-width: 2000px){.u-padding-sm\\@from-gigantic{padding:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-sm\\@to-gigantic{padding:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-md\\@from-gigantic{padding:vh(10) !important}}@media(max-width: 1999px){.u-padding-md\\@to-gigantic{padding:vh(10) !important}}@media(min-width: 2000px){.u-padding-lg\\@from-gigantic{padding:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-lg\\@to-gigantic{padding:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-xl\\@from-gigantic{padding:vh(15) !important}}@media(max-width: 1999px){.u-padding-xl\\@to-gigantic{padding:vh(15) !important}}@media(min-width: 2000px){.u-padding\\@from-gigantic{padding:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding\\@to-gigantic{padding:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-none\\@from-gigantic{padding:0 !important}}@media(max-width: 1999px){.u-padding-none\\@to-gigantic{padding:0 !important}}@media(min-width: 2000px){.u-padding-top-gutter\\@from-gigantic{padding-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-top-gutter\\@to-gigantic{padding-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-top-xs\\@from-gigantic{padding-top:vh(5) !important}}@media(max-width: 1999px){.u-padding-top-xs\\@to-gigantic{padding-top:vh(5) !important}}@media(min-width: 2000px){.u-padding-top-sm\\@from-gigantic{padding-top:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-top-sm\\@to-gigantic{padding-top:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-top-md\\@from-gigantic{padding-top:vh(10) !important}}@media(max-width: 1999px){.u-padding-top-md\\@to-gigantic{padding-top:vh(10) !important}}@media(min-width: 2000px){.u-padding-top-lg\\@from-gigantic{padding-top:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-top-lg\\@to-gigantic{padding-top:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-top-xl\\@from-gigantic{padding-top:vh(15) !important}}@media(max-width: 1999px){.u-padding-top-xl\\@to-gigantic{padding-top:vh(15) !important}}@media(min-width: 2000px){.u-padding-top\\@from-gigantic{padding-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-top\\@to-gigantic{padding-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-top-none\\@from-gigantic{padding-top:0 !important}}@media(max-width: 1999px){.u-padding-top-none\\@to-gigantic{padding-top:0 !important}}@media(min-width: 2000px){.u-padding-right-gutter\\@from-gigantic{padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-right-gutter\\@to-gigantic{padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-right-xs\\@from-gigantic{padding-right:vh(5) !important}}@media(max-width: 1999px){.u-padding-right-xs\\@to-gigantic{padding-right:vh(5) !important}}@media(min-width: 2000px){.u-padding-right-sm\\@from-gigantic{padding-right:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-right-sm\\@to-gigantic{padding-right:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-right-md\\@from-gigantic{padding-right:vh(10) !important}}@media(max-width: 1999px){.u-padding-right-md\\@to-gigantic{padding-right:vh(10) !important}}@media(min-width: 2000px){.u-padding-right-lg\\@from-gigantic{padding-right:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-right-lg\\@to-gigantic{padding-right:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-right-xl\\@from-gigantic{padding-right:vh(15) !important}}@media(max-width: 1999px){.u-padding-right-xl\\@to-gigantic{padding-right:vh(15) !important}}@media(min-width: 2000px){.u-padding-right\\@from-gigantic{padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-right\\@to-gigantic{padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-right-none\\@from-gigantic{padding-right:0 !important}}@media(max-width: 1999px){.u-padding-right-none\\@to-gigantic{padding-right:0 !important}}@media(min-width: 2000px){.u-padding-bottom-gutter\\@from-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-bottom-gutter\\@to-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-bottom-xs\\@from-gigantic{padding-bottom:vh(5) !important}}@media(max-width: 1999px){.u-padding-bottom-xs\\@to-gigantic{padding-bottom:vh(5) !important}}@media(min-width: 2000px){.u-padding-bottom-sm\\@from-gigantic{padding-bottom:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-bottom-sm\\@to-gigantic{padding-bottom:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-bottom-md\\@from-gigantic{padding-bottom:vh(10) !important}}@media(max-width: 1999px){.u-padding-bottom-md\\@to-gigantic{padding-bottom:vh(10) !important}}@media(min-width: 2000px){.u-padding-bottom-lg\\@from-gigantic{padding-bottom:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-bottom-lg\\@to-gigantic{padding-bottom:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-bottom-xl\\@from-gigantic{padding-bottom:vh(15) !important}}@media(max-width: 1999px){.u-padding-bottom-xl\\@to-gigantic{padding-bottom:vh(15) !important}}@media(min-width: 2000px){.u-padding-bottom\\@from-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-bottom\\@to-gigantic{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-bottom-none\\@from-gigantic{padding-bottom:0 !important}}@media(max-width: 1999px){.u-padding-bottom-none\\@to-gigantic{padding-bottom:0 !important}}@media(min-width: 2000px){.u-padding-left-gutter\\@from-gigantic{padding-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-left-gutter\\@to-gigantic{padding-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-left-xs\\@from-gigantic{padding-left:vh(5) !important}}@media(max-width: 1999px){.u-padding-left-xs\\@to-gigantic{padding-left:vh(5) !important}}@media(min-width: 2000px){.u-padding-left-sm\\@from-gigantic{padding-left:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-left-sm\\@to-gigantic{padding-left:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-left-md\\@from-gigantic{padding-left:vh(10) !important}}@media(max-width: 1999px){.u-padding-left-md\\@to-gigantic{padding-left:vh(10) !important}}@media(min-width: 2000px){.u-padding-left-lg\\@from-gigantic{padding-left:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-left-lg\\@to-gigantic{padding-left:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-left-xl\\@from-gigantic{padding-left:vh(15) !important}}@media(max-width: 1999px){.u-padding-left-xl\\@to-gigantic{padding-left:vh(15) !important}}@media(min-width: 2000px){.u-padding-left\\@from-gigantic{padding-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-left\\@to-gigantic{padding-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-left-none\\@from-gigantic{padding-left:0 !important}}@media(max-width: 1999px){.u-padding-left-none\\@to-gigantic{padding-left:0 !important}}@media(min-width: 2000px){.u-padding-x-gutter\\@from-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-x-gutter\\@to-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-x-xs\\@from-gigantic{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 1999px){.u-padding-x-xs\\@to-gigantic{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 2000px){.u-padding-x-sm\\@from-gigantic{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-x-sm\\@to-gigantic{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-x-md\\@from-gigantic{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 1999px){.u-padding-x-md\\@to-gigantic{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 2000px){.u-padding-x-lg\\@from-gigantic{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-x-lg\\@to-gigantic{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-x-xl\\@from-gigantic{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 1999px){.u-padding-x-xl\\@to-gigantic{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 2000px){.u-padding-x\\@from-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-x\\@to-gigantic{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-x-none\\@from-gigantic{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 1999px){.u-padding-x-none\\@to-gigantic{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 2000px){.u-padding-y-gutter\\@from-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-y-gutter\\@to-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-y-xs\\@from-gigantic{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 1999px){.u-padding-y-xs\\@to-gigantic{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 2000px){.u-padding-y-sm\\@from-gigantic{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 1999px){.u-padding-y-sm\\@to-gigantic{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 2000px){.u-padding-y-md\\@from-gigantic{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 1999px){.u-padding-y-md\\@to-gigantic{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 2000px){.u-padding-y-lg\\@from-gigantic{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 1999px){.u-padding-y-lg\\@to-gigantic{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 2000px){.u-padding-y-xl\\@from-gigantic{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 1999px){.u-padding-y-xl\\@to-gigantic{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 2000px){.u-padding-y\\@from-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-padding-y\\@to-gigantic{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-padding-y-none\\@from-gigantic{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 1999px){.u-padding-y-none\\@to-gigantic{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 2000px){.u-margin-gutter\\@from-gigantic{margin:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-gutter\\@to-gigantic{margin:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-xs\\@from-gigantic{margin:vh(5) !important}}@media(max-width: 1999px){.u-margin-xs\\@to-gigantic{margin:vh(5) !important}}@media(min-width: 2000px){.u-margin-sm\\@from-gigantic{margin:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-sm\\@to-gigantic{margin:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-md\\@from-gigantic{margin:vh(10) !important}}@media(max-width: 1999px){.u-margin-md\\@to-gigantic{margin:vh(10) !important}}@media(min-width: 2000px){.u-margin-lg\\@from-gigantic{margin:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-lg\\@to-gigantic{margin:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-xl\\@from-gigantic{margin:vh(15) !important}}@media(max-width: 1999px){.u-margin-xl\\@to-gigantic{margin:vh(15) !important}}@media(min-width: 2000px){.u-margin\\@from-gigantic{margin:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin\\@to-gigantic{margin:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-none\\@from-gigantic{margin:0 !important}}@media(max-width: 1999px){.u-margin-none\\@to-gigantic{margin:0 !important}}@media(min-width: 2000px){.u-margin-top-gutter\\@from-gigantic{margin-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-top-gutter\\@to-gigantic{margin-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-top-xs\\@from-gigantic{margin-top:vh(5) !important}}@media(max-width: 1999px){.u-margin-top-xs\\@to-gigantic{margin-top:vh(5) !important}}@media(min-width: 2000px){.u-margin-top-sm\\@from-gigantic{margin-top:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-top-sm\\@to-gigantic{margin-top:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-top-md\\@from-gigantic{margin-top:vh(10) !important}}@media(max-width: 1999px){.u-margin-top-md\\@to-gigantic{margin-top:vh(10) !important}}@media(min-width: 2000px){.u-margin-top-lg\\@from-gigantic{margin-top:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-top-lg\\@to-gigantic{margin-top:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-top-xl\\@from-gigantic{margin-top:vh(15) !important}}@media(max-width: 1999px){.u-margin-top-xl\\@to-gigantic{margin-top:vh(15) !important}}@media(min-width: 2000px){.u-margin-top\\@from-gigantic{margin-top:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-top\\@to-gigantic{margin-top:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-top-none\\@from-gigantic{margin-top:0 !important}}@media(max-width: 1999px){.u-margin-top-none\\@to-gigantic{margin-top:0 !important}}@media(min-width: 2000px){.u-margin-right-gutter\\@from-gigantic{margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-right-gutter\\@to-gigantic{margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-right-xs\\@from-gigantic{margin-right:vh(5) !important}}@media(max-width: 1999px){.u-margin-right-xs\\@to-gigantic{margin-right:vh(5) !important}}@media(min-width: 2000px){.u-margin-right-sm\\@from-gigantic{margin-right:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-right-sm\\@to-gigantic{margin-right:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-right-md\\@from-gigantic{margin-right:vh(10) !important}}@media(max-width: 1999px){.u-margin-right-md\\@to-gigantic{margin-right:vh(10) !important}}@media(min-width: 2000px){.u-margin-right-lg\\@from-gigantic{margin-right:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-right-lg\\@to-gigantic{margin-right:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-right-xl\\@from-gigantic{margin-right:vh(15) !important}}@media(max-width: 1999px){.u-margin-right-xl\\@to-gigantic{margin-right:vh(15) !important}}@media(min-width: 2000px){.u-margin-right\\@from-gigantic{margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-right\\@to-gigantic{margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-right-none\\@from-gigantic{margin-right:0 !important}}@media(max-width: 1999px){.u-margin-right-none\\@to-gigantic{margin-right:0 !important}}@media(min-width: 2000px){.u-margin-bottom-gutter\\@from-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-bottom-gutter\\@to-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-bottom-xs\\@from-gigantic{margin-bottom:vh(5) !important}}@media(max-width: 1999px){.u-margin-bottom-xs\\@to-gigantic{margin-bottom:vh(5) !important}}@media(min-width: 2000px){.u-margin-bottom-sm\\@from-gigantic{margin-bottom:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-bottom-sm\\@to-gigantic{margin-bottom:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-bottom-md\\@from-gigantic{margin-bottom:vh(10) !important}}@media(max-width: 1999px){.u-margin-bottom-md\\@to-gigantic{margin-bottom:vh(10) !important}}@media(min-width: 2000px){.u-margin-bottom-lg\\@from-gigantic{margin-bottom:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-bottom-lg\\@to-gigantic{margin-bottom:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-bottom-xl\\@from-gigantic{margin-bottom:vh(15) !important}}@media(max-width: 1999px){.u-margin-bottom-xl\\@to-gigantic{margin-bottom:vh(15) !important}}@media(min-width: 2000px){.u-margin-bottom\\@from-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-bottom\\@to-gigantic{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-bottom-none\\@from-gigantic{margin-bottom:0 !important}}@media(max-width: 1999px){.u-margin-bottom-none\\@to-gigantic{margin-bottom:0 !important}}@media(min-width: 2000px){.u-margin-left-gutter\\@from-gigantic{margin-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-left-gutter\\@to-gigantic{margin-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-left-xs\\@from-gigantic{margin-left:vh(5) !important}}@media(max-width: 1999px){.u-margin-left-xs\\@to-gigantic{margin-left:vh(5) !important}}@media(min-width: 2000px){.u-margin-left-sm\\@from-gigantic{margin-left:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-left-sm\\@to-gigantic{margin-left:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-left-md\\@from-gigantic{margin-left:vh(10) !important}}@media(max-width: 1999px){.u-margin-left-md\\@to-gigantic{margin-left:vh(10) !important}}@media(min-width: 2000px){.u-margin-left-lg\\@from-gigantic{margin-left:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-left-lg\\@to-gigantic{margin-left:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-left-xl\\@from-gigantic{margin-left:vh(15) !important}}@media(max-width: 1999px){.u-margin-left-xl\\@to-gigantic{margin-left:vh(15) !important}}@media(min-width: 2000px){.u-margin-left\\@from-gigantic{margin-left:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-left\\@to-gigantic{margin-left:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-left-none\\@from-gigantic{margin-left:0 !important}}@media(max-width: 1999px){.u-margin-left-none\\@to-gigantic{margin-left:0 !important}}@media(min-width: 2000px){.u-margin-x-gutter\\@from-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-x-gutter\\@to-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-x-xs\\@from-gigantic{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 1999px){.u-margin-x-xs\\@to-gigantic{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 2000px){.u-margin-x-sm\\@from-gigantic{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-x-sm\\@to-gigantic{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-x-md\\@from-gigantic{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 1999px){.u-margin-x-md\\@to-gigantic{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 2000px){.u-margin-x-lg\\@from-gigantic{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-x-lg\\@to-gigantic{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-x-xl\\@from-gigantic{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 1999px){.u-margin-x-xl\\@to-gigantic{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 2000px){.u-margin-x\\@from-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-x\\@to-gigantic{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-x-none\\@from-gigantic{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 1999px){.u-margin-x-none\\@to-gigantic{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 2000px){.u-margin-y-gutter\\@from-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-y-gutter\\@to-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-y-xs\\@from-gigantic{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 1999px){.u-margin-y-xs\\@to-gigantic{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 2000px){.u-margin-y-sm\\@from-gigantic{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 1999px){.u-margin-y-sm\\@to-gigantic{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 2000px){.u-margin-y-md\\@from-gigantic{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 1999px){.u-margin-y-md\\@to-gigantic{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 2000px){.u-margin-y-lg\\@from-gigantic{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 1999px){.u-margin-y-lg\\@to-gigantic{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 2000px){.u-margin-y-xl\\@from-gigantic{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 1999px){.u-margin-y-xl\\@to-gigantic{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 2000px){.u-margin-y\\@from-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 1999px){.u-margin-y\\@to-gigantic{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2000px){.u-margin-y-none\\@from-gigantic{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 1999px){.u-margin-y-none\\@to-gigantic{margin-top:0 !important;margin-bottom:0 !important}}@media(min-width: 2400px){.u-padding-gutter\\@from-colossal{padding:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-gutter\\@to-colossal{padding:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-xs\\@from-colossal{padding:vh(5) !important}}@media(max-width: 2399px){.u-padding-xs\\@to-colossal{padding:vh(5) !important}}@media(min-width: 2400px){.u-padding-sm\\@from-colossal{padding:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-sm\\@to-colossal{padding:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-md\\@from-colossal{padding:vh(10) !important}}@media(max-width: 2399px){.u-padding-md\\@to-colossal{padding:vh(10) !important}}@media(min-width: 2400px){.u-padding-lg\\@from-colossal{padding:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-lg\\@to-colossal{padding:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-xl\\@from-colossal{padding:vh(15) !important}}@media(max-width: 2399px){.u-padding-xl\\@to-colossal{padding:vh(15) !important}}@media(min-width: 2400px){.u-padding\\@from-colossal{padding:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding\\@to-colossal{padding:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-none\\@from-colossal{padding:0 !important}}@media(max-width: 2399px){.u-padding-none\\@to-colossal{padding:0 !important}}@media(min-width: 2400px){.u-padding-top-gutter\\@from-colossal{padding-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-top-gutter\\@to-colossal{padding-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-top-xs\\@from-colossal{padding-top:vh(5) !important}}@media(max-width: 2399px){.u-padding-top-xs\\@to-colossal{padding-top:vh(5) !important}}@media(min-width: 2400px){.u-padding-top-sm\\@from-colossal{padding-top:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-top-sm\\@to-colossal{padding-top:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-top-md\\@from-colossal{padding-top:vh(10) !important}}@media(max-width: 2399px){.u-padding-top-md\\@to-colossal{padding-top:vh(10) !important}}@media(min-width: 2400px){.u-padding-top-lg\\@from-colossal{padding-top:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-top-lg\\@to-colossal{padding-top:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-top-xl\\@from-colossal{padding-top:vh(15) !important}}@media(max-width: 2399px){.u-padding-top-xl\\@to-colossal{padding-top:vh(15) !important}}@media(min-width: 2400px){.u-padding-top\\@from-colossal{padding-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-top\\@to-colossal{padding-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-top-none\\@from-colossal{padding-top:0 !important}}@media(max-width: 2399px){.u-padding-top-none\\@to-colossal{padding-top:0 !important}}@media(min-width: 2400px){.u-padding-right-gutter\\@from-colossal{padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-right-gutter\\@to-colossal{padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-right-xs\\@from-colossal{padding-right:vh(5) !important}}@media(max-width: 2399px){.u-padding-right-xs\\@to-colossal{padding-right:vh(5) !important}}@media(min-width: 2400px){.u-padding-right-sm\\@from-colossal{padding-right:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-right-sm\\@to-colossal{padding-right:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-right-md\\@from-colossal{padding-right:vh(10) !important}}@media(max-width: 2399px){.u-padding-right-md\\@to-colossal{padding-right:vh(10) !important}}@media(min-width: 2400px){.u-padding-right-lg\\@from-colossal{padding-right:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-right-lg\\@to-colossal{padding-right:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-right-xl\\@from-colossal{padding-right:vh(15) !important}}@media(max-width: 2399px){.u-padding-right-xl\\@to-colossal{padding-right:vh(15) !important}}@media(min-width: 2400px){.u-padding-right\\@from-colossal{padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-right\\@to-colossal{padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-right-none\\@from-colossal{padding-right:0 !important}}@media(max-width: 2399px){.u-padding-right-none\\@to-colossal{padding-right:0 !important}}@media(min-width: 2400px){.u-padding-bottom-gutter\\@from-colossal{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-bottom-gutter\\@to-colossal{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-bottom-xs\\@from-colossal{padding-bottom:vh(5) !important}}@media(max-width: 2399px){.u-padding-bottom-xs\\@to-colossal{padding-bottom:vh(5) !important}}@media(min-width: 2400px){.u-padding-bottom-sm\\@from-colossal{padding-bottom:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-bottom-sm\\@to-colossal{padding-bottom:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-bottom-md\\@from-colossal{padding-bottom:vh(10) !important}}@media(max-width: 2399px){.u-padding-bottom-md\\@to-colossal{padding-bottom:vh(10) !important}}@media(min-width: 2400px){.u-padding-bottom-lg\\@from-colossal{padding-bottom:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-bottom-lg\\@to-colossal{padding-bottom:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-bottom-xl\\@from-colossal{padding-bottom:vh(15) !important}}@media(max-width: 2399px){.u-padding-bottom-xl\\@to-colossal{padding-bottom:vh(15) !important}}@media(min-width: 2400px){.u-padding-bottom\\@from-colossal{padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-bottom\\@to-colossal{padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-bottom-none\\@from-colossal{padding-bottom:0 !important}}@media(max-width: 2399px){.u-padding-bottom-none\\@to-colossal{padding-bottom:0 !important}}@media(min-width: 2400px){.u-padding-left-gutter\\@from-colossal{padding-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-left-gutter\\@to-colossal{padding-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-left-xs\\@from-colossal{padding-left:vh(5) !important}}@media(max-width: 2399px){.u-padding-left-xs\\@to-colossal{padding-left:vh(5) !important}}@media(min-width: 2400px){.u-padding-left-sm\\@from-colossal{padding-left:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-left-sm\\@to-colossal{padding-left:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-left-md\\@from-colossal{padding-left:vh(10) !important}}@media(max-width: 2399px){.u-padding-left-md\\@to-colossal{padding-left:vh(10) !important}}@media(min-width: 2400px){.u-padding-left-lg\\@from-colossal{padding-left:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-left-lg\\@to-colossal{padding-left:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-left-xl\\@from-colossal{padding-left:vh(15) !important}}@media(max-width: 2399px){.u-padding-left-xl\\@to-colossal{padding-left:vh(15) !important}}@media(min-width: 2400px){.u-padding-left\\@from-colossal{padding-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-left\\@to-colossal{padding-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-left-none\\@from-colossal{padding-left:0 !important}}@media(max-width: 2399px){.u-padding-left-none\\@to-colossal{padding-left:0 !important}}@media(min-width: 2400px){.u-padding-x-gutter\\@from-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-x-gutter\\@to-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-x-xs\\@from-colossal{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(max-width: 2399px){.u-padding-x-xs\\@to-colossal{padding-left:vh(5) !important;padding-right:vh(5) !important}}@media(min-width: 2400px){.u-padding-x-sm\\@from-colossal{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-x-sm\\@to-colossal{padding-left:vh(7.5) !important;padding-right:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-x-md\\@from-colossal{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(max-width: 2399px){.u-padding-x-md\\@to-colossal{padding-left:vh(10) !important;padding-right:vh(10) !important}}@media(min-width: 2400px){.u-padding-x-lg\\@from-colossal{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-x-lg\\@to-colossal{padding-left:vh(12.5) !important;padding-right:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-x-xl\\@from-colossal{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(max-width: 2399px){.u-padding-x-xl\\@to-colossal{padding-left:vh(15) !important;padding-right:vh(15) !important}}@media(min-width: 2400px){.u-padding-x\\@from-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-x\\@to-colossal{padding-left:var(--grid-gutter) !important;padding-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-x-none\\@from-colossal{padding-left:0 !important;padding-right:0 !important}}@media(max-width: 2399px){.u-padding-x-none\\@to-colossal{padding-left:0 !important;padding-right:0 !important}}@media(min-width: 2400px){.u-padding-y-gutter\\@from-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-y-gutter\\@to-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-y-xs\\@from-colossal{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(max-width: 2399px){.u-padding-y-xs\\@to-colossal{padding-top:vh(5) !important;padding-bottom:vh(5) !important}}@media(min-width: 2400px){.u-padding-y-sm\\@from-colossal{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(max-width: 2399px){.u-padding-y-sm\\@to-colossal{padding-top:vh(7.5) !important;padding-bottom:vh(7.5) !important}}@media(min-width: 2400px){.u-padding-y-md\\@from-colossal{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(max-width: 2399px){.u-padding-y-md\\@to-colossal{padding-top:vh(10) !important;padding-bottom:vh(10) !important}}@media(min-width: 2400px){.u-padding-y-lg\\@from-colossal{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(max-width: 2399px){.u-padding-y-lg\\@to-colossal{padding-top:vh(12.5) !important;padding-bottom:vh(12.5) !important}}@media(min-width: 2400px){.u-padding-y-xl\\@from-colossal{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(max-width: 2399px){.u-padding-y-xl\\@to-colossal{padding-top:vh(15) !important;padding-bottom:vh(15) !important}}@media(min-width: 2400px){.u-padding-y\\@from-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-padding-y\\@to-colossal{padding-top:var(--grid-gutter) !important;padding-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-padding-y-none\\@from-colossal{padding-top:0 !important;padding-bottom:0 !important}}@media(max-width: 2399px){.u-padding-y-none\\@to-colossal{padding-top:0 !important;padding-bottom:0 !important}}@media(min-width: 2400px){.u-margin-gutter\\@from-colossal{margin:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-gutter\\@to-colossal{margin:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-xs\\@from-colossal{margin:vh(5) !important}}@media(max-width: 2399px){.u-margin-xs\\@to-colossal{margin:vh(5) !important}}@media(min-width: 2400px){.u-margin-sm\\@from-colossal{margin:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-sm\\@to-colossal{margin:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-md\\@from-colossal{margin:vh(10) !important}}@media(max-width: 2399px){.u-margin-md\\@to-colossal{margin:vh(10) !important}}@media(min-width: 2400px){.u-margin-lg\\@from-colossal{margin:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-lg\\@to-colossal{margin:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-xl\\@from-colossal{margin:vh(15) !important}}@media(max-width: 2399px){.u-margin-xl\\@to-colossal{margin:vh(15) !important}}@media(min-width: 2400px){.u-margin\\@from-colossal{margin:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin\\@to-colossal{margin:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-none\\@from-colossal{margin:0 !important}}@media(max-width: 2399px){.u-margin-none\\@to-colossal{margin:0 !important}}@media(min-width: 2400px){.u-margin-top-gutter\\@from-colossal{margin-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-top-gutter\\@to-colossal{margin-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-top-xs\\@from-colossal{margin-top:vh(5) !important}}@media(max-width: 2399px){.u-margin-top-xs\\@to-colossal{margin-top:vh(5) !important}}@media(min-width: 2400px){.u-margin-top-sm\\@from-colossal{margin-top:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-top-sm\\@to-colossal{margin-top:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-top-md\\@from-colossal{margin-top:vh(10) !important}}@media(max-width: 2399px){.u-margin-top-md\\@to-colossal{margin-top:vh(10) !important}}@media(min-width: 2400px){.u-margin-top-lg\\@from-colossal{margin-top:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-top-lg\\@to-colossal{margin-top:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-top-xl\\@from-colossal{margin-top:vh(15) !important}}@media(max-width: 2399px){.u-margin-top-xl\\@to-colossal{margin-top:vh(15) !important}}@media(min-width: 2400px){.u-margin-top\\@from-colossal{margin-top:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-top\\@to-colossal{margin-top:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-top-none\\@from-colossal{margin-top:0 !important}}@media(max-width: 2399px){.u-margin-top-none\\@to-colossal{margin-top:0 !important}}@media(min-width: 2400px){.u-margin-right-gutter\\@from-colossal{margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-right-gutter\\@to-colossal{margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-right-xs\\@from-colossal{margin-right:vh(5) !important}}@media(max-width: 2399px){.u-margin-right-xs\\@to-colossal{margin-right:vh(5) !important}}@media(min-width: 2400px){.u-margin-right-sm\\@from-colossal{margin-right:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-right-sm\\@to-colossal{margin-right:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-right-md\\@from-colossal{margin-right:vh(10) !important}}@media(max-width: 2399px){.u-margin-right-md\\@to-colossal{margin-right:vh(10) !important}}@media(min-width: 2400px){.u-margin-right-lg\\@from-colossal{margin-right:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-right-lg\\@to-colossal{margin-right:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-right-xl\\@from-colossal{margin-right:vh(15) !important}}@media(max-width: 2399px){.u-margin-right-xl\\@to-colossal{margin-right:vh(15) !important}}@media(min-width: 2400px){.u-margin-right\\@from-colossal{margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-right\\@to-colossal{margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-right-none\\@from-colossal{margin-right:0 !important}}@media(max-width: 2399px){.u-margin-right-none\\@to-colossal{margin-right:0 !important}}@media(min-width: 2400px){.u-margin-bottom-gutter\\@from-colossal{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-bottom-gutter\\@to-colossal{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-bottom-xs\\@from-colossal{margin-bottom:vh(5) !important}}@media(max-width: 2399px){.u-margin-bottom-xs\\@to-colossal{margin-bottom:vh(5) !important}}@media(min-width: 2400px){.u-margin-bottom-sm\\@from-colossal{margin-bottom:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-bottom-sm\\@to-colossal{margin-bottom:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-bottom-md\\@from-colossal{margin-bottom:vh(10) !important}}@media(max-width: 2399px){.u-margin-bottom-md\\@to-colossal{margin-bottom:vh(10) !important}}@media(min-width: 2400px){.u-margin-bottom-lg\\@from-colossal{margin-bottom:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-bottom-lg\\@to-colossal{margin-bottom:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-bottom-xl\\@from-colossal{margin-bottom:vh(15) !important}}@media(max-width: 2399px){.u-margin-bottom-xl\\@to-colossal{margin-bottom:vh(15) !important}}@media(min-width: 2400px){.u-margin-bottom\\@from-colossal{margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-bottom\\@to-colossal{margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-bottom-none\\@from-colossal{margin-bottom:0 !important}}@media(max-width: 2399px){.u-margin-bottom-none\\@to-colossal{margin-bottom:0 !important}}@media(min-width: 2400px){.u-margin-left-gutter\\@from-colossal{margin-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-left-gutter\\@to-colossal{margin-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-left-xs\\@from-colossal{margin-left:vh(5) !important}}@media(max-width: 2399px){.u-margin-left-xs\\@to-colossal{margin-left:vh(5) !important}}@media(min-width: 2400px){.u-margin-left-sm\\@from-colossal{margin-left:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-left-sm\\@to-colossal{margin-left:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-left-md\\@from-colossal{margin-left:vh(10) !important}}@media(max-width: 2399px){.u-margin-left-md\\@to-colossal{margin-left:vh(10) !important}}@media(min-width: 2400px){.u-margin-left-lg\\@from-colossal{margin-left:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-left-lg\\@to-colossal{margin-left:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-left-xl\\@from-colossal{margin-left:vh(15) !important}}@media(max-width: 2399px){.u-margin-left-xl\\@to-colossal{margin-left:vh(15) !important}}@media(min-width: 2400px){.u-margin-left\\@from-colossal{margin-left:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-left\\@to-colossal{margin-left:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-left-none\\@from-colossal{margin-left:0 !important}}@media(max-width: 2399px){.u-margin-left-none\\@to-colossal{margin-left:0 !important}}@media(min-width: 2400px){.u-margin-x-gutter\\@from-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-x-gutter\\@to-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-x-xs\\@from-colossal{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(max-width: 2399px){.u-margin-x-xs\\@to-colossal{margin-left:vh(5) !important;margin-right:vh(5) !important}}@media(min-width: 2400px){.u-margin-x-sm\\@from-colossal{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-x-sm\\@to-colossal{margin-left:vh(7.5) !important;margin-right:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-x-md\\@from-colossal{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(max-width: 2399px){.u-margin-x-md\\@to-colossal{margin-left:vh(10) !important;margin-right:vh(10) !important}}@media(min-width: 2400px){.u-margin-x-lg\\@from-colossal{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-x-lg\\@to-colossal{margin-left:vh(12.5) !important;margin-right:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-x-xl\\@from-colossal{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(max-width: 2399px){.u-margin-x-xl\\@to-colossal{margin-left:vh(15) !important;margin-right:vh(15) !important}}@media(min-width: 2400px){.u-margin-x\\@from-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-x\\@to-colossal{margin-left:var(--grid-gutter) !important;margin-right:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-x-none\\@from-colossal{margin-left:0 !important;margin-right:0 !important}}@media(max-width: 2399px){.u-margin-x-none\\@to-colossal{margin-left:0 !important;margin-right:0 !important}}@media(min-width: 2400px){.u-margin-y-gutter\\@from-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-y-gutter\\@to-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-y-xs\\@from-colossal{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(max-width: 2399px){.u-margin-y-xs\\@to-colossal{margin-top:vh(5) !important;margin-bottom:vh(5) !important}}@media(min-width: 2400px){.u-margin-y-sm\\@from-colossal{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(max-width: 2399px){.u-margin-y-sm\\@to-colossal{margin-top:vh(7.5) !important;margin-bottom:vh(7.5) !important}}@media(min-width: 2400px){.u-margin-y-md\\@from-colossal{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(max-width: 2399px){.u-margin-y-md\\@to-colossal{margin-top:vh(10) !important;margin-bottom:vh(10) !important}}@media(min-width: 2400px){.u-margin-y-lg\\@from-colossal{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(max-width: 2399px){.u-margin-y-lg\\@to-colossal{margin-top:vh(12.5) !important;margin-bottom:vh(12.5) !important}}@media(min-width: 2400px){.u-margin-y-xl\\@from-colossal{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(max-width: 2399px){.u-margin-y-xl\\@to-colossal{margin-top:vh(15) !important;margin-bottom:vh(15) !important}}@media(min-width: 2400px){.u-margin-y\\@from-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(max-width: 2399px){.u-margin-y\\@to-colossal{margin-top:var(--grid-gutter) !important;margin-bottom:var(--grid-gutter) !important}}@media(min-width: 2400px){.u-margin-y-none\\@from-colossal{margin-top:0 !important;margin-bottom:0 !important}}@media(max-width: 2399px){.u-margin-y-none\\@to-colossal{margin-top:0 !important;margin-bottom:0 !important}}"]} \ No newline at end of file