{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/s8KoqWSd7OOFVFWjfSWd/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/ppddkoJk4PRPRx1H9k6h/yPsDYSgzqp0uxPLBCgJr/QObON56vl.js", "ssg:https://framerusercontent.com/modules/6iCcgwvqsNyRLKv6F1qL/ujsD2y8Ll8S4HUhhQYuX/fjyVc4jD3.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/v3QDS3fr6ZB3hNqxjZQR/VToLSFFKhDrdOcHyKOli/vfZ8Tj9xR.js", "ssg:https://framerusercontent.com/modules/dUO0NFpZlGhbs1431rZn/KaEjW3iOV0nmyViONrtR/YlG7eJng5.js", "ssg:https://framerusercontent.com/modules/j4hxZoFDtwzpSIQczMMV/s5XdUfyjjycy1puRjS5V/Az6MmHxe4.js", "ssg:https://framerusercontent.com/modules/bjPAGBgRIzPrppC0Px7m/wI9G4D4LKcS1DfYq92kC/BW56A5l99.js", "ssg:https://framerusercontent.com/modules/ghuOQBHh43ZQUhy86Iq0/aHZkxQK87YP6wToJMiTN/LDekglqvl.js", "ssg:https://framerusercontent.com/modules/3WD7WvwwvTzBbbwyNH6Y/j6QaqaUWewaFy1QFPL5X/QMuEq11PS.js"],
  "sourcesContent": ["function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),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(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),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})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);useEffect(()=>{const anchorLinks=[...document.querySelectorAll(\"a[href]\")];const handleClick=(e,href)=>{e.preventDefault();const decodedHref=decodeURIComponent(href);lenis.current.scrollTo(decodedHref);};anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{const href=`#${a.href.split(\"#\").pop()}`;a.addEventListener(\"click\",e=>handleClick(e,href));});return()=>{anchorLinks.filter(a=>a.href.includes(\"#\")).forEach(a=>{const href=`#${a.href.split(\"#\").pop()}`;a.removeEventListener(\"click\",e=>handleClick(e,href));});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (ae47b7e)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay-Medium\",\"FR;InterDisplay-Bold\",\"FR;InterDisplay-BoldItalic\",\"FR;InterDisplay-MediumItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/fXvVh2JeZlehNcEhKHpHH0frSl0.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/7pScaNeb6M7n2HF2jKemDqzCIr4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/qS4UjQYyATcVV9rODk0Zx9KhkY8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/VfD2n20yM7v0hrUEBHEyafsmMBY.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/4oIO9fB59bn3cKFWz7piCj28z9s.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/TBccIZR9kIpkRce5i9ATfPp7a4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/F5Lmfd3fCAu7TwiYbI4DLWw4ks.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/A5P4nkYCJlLQxGxaS1lzG8PNSc.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/vuPfygr1n1zYxscvWgGI8hRf3LE.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/jplzYzqFHXreyADwk9yrkQlWQ.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/sSIKP2TfVPvfK7YVENPE5H87A.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/gawbeo7iEJSRZ4kcrh6YRrU8o.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/xSzma7KIWAdctStaX171ey3lams.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/8E92vrr3j1gDqzepmeSbD2u0JxA.woff2\",weight:\"500\"}]}];export const css=['.framer-5wcJU .framer-styles-preset-1b995d8:not(.rich-text-wrapper), .framer-5wcJU .framer-styles-preset-1b995d8.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 15px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.02em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-5wcJU\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay\",\"FR;InterDisplay-Bold\",\"FR;InterDisplay-BoldItalic\",\"FR;InterDisplay-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/fXvVh2JeZlehNcEhKHpHH0frSl0.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/7pScaNeb6M7n2HF2jKemDqzCIr4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/qS4UjQYyATcVV9rODk0Zx9KhkY8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/VfD2n20yM7v0hrUEBHEyafsmMBY.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/4oIO9fB59bn3cKFWz7piCj28z9s.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/TBccIZR9kIpkRce5i9ATfPp7a4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/F5Lmfd3fCAu7TwiYbI4DLWw4ks.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/THWAFHoAcmqLMy81E8hCSdziVKA.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/sQxGYWDlRkDr0eOKqiNRl6g5rs.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NNTAT1XAm8ZRkr824inYPkjNeL4.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/P2qr9PAWBt905929rHfxmneMUG0.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/2BmSa4TZZvFKAZg2DydxTbvKlTU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/djqIk3Er2JcAcz7Rup88BdINEw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/KMFW46iYsEZaUBwXbwPc9nQm71o.woff2\",weight:\"400\"}]}];export const css=['.framer-tpL1W .framer-styles-preset-1v525k0:not(.rich-text-wrapper), .framer-tpL1W .framer-styles-preset-1v525k0.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-tpL1W .framer-styles-preset-1v525k0:not(.rich-text-wrapper), .framer-tpL1W .framer-styles-preset-1v525k0.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-tpL1W .framer-styles-preset-1v525k0:not(.rich-text-wrapper), .framer-tpL1W .framer-styles-preset-1v525k0.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-tpL1W\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (259a342)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={iF2XvNDhD:{hover:true},nSEeVzCaE:{hover:true},PxEXcEXKh:{hover:true},XtjW1dQ59:{hover:true}};const cycleOrder=[\"nSEeVzCaE\",\"XtjW1dQ59\",\"iF2XvNDhD\",\"PxEXcEXKh\"];const serializationHash=\"framer-jG4wM\";const variantClassNames={iF2XvNDhD:\"framer-v-1t8s3hc\",nSEeVzCaE:\"framer-v-v8it5u\",PxEXcEXKh:\"framer-v-nftb4u\",XtjW1dQ59:\"framer-v-in9g8f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};const transition2={delay:0,duration:.8,ease:[0,0,1,1],type:\"tween\"};const transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Bottom:\"iF2XvNDhD\",Left:\"PxEXcEXKh\",Right:\"XtjW1dQ59\",Top:\"nSEeVzCaE\"};const getProps=({buttonText,height,id,link,width,...props})=>{return{...props,GS3bSUXSK:link??props.GS3bSUXSK,ofLqZhEO8:buttonText??props.ofLqZhEO8??\"Running stroke\",variant:humanReadableVariantMap[props.variant]??props.variant??\"nSEeVzCaE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ofLqZhEO8,GS3bSUXSK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nSEeVzCaE\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear17vk1v4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),800);});useOnVariantChange(baseVariant,{PxEXcEXKh:onAppear17vk1v4});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({PxEXcEXKh:{value:transition2},XtjW1dQ59:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:GS3bSUXSK,motionChild:true,nodeId:\"nSEeVzCaE\",openInNewTab:false,scopeId:\"vfZ8Tj9xR\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-v8it5u\",className,classNames)} framer-1eqmve6`,\"data-border\":true,\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"nSEeVzCaE\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(0, 0, 253))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{\"nSEeVzCaE-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\"},iF2XvNDhD:{backgroundColor:\"rgba(0, 0, 0, 0)\"},PxEXcEXKh:{backgroundColor:\"rgba(0, 0, 0, 0)\"},XtjW1dQ59:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(30, 25, 38))\"}},...addPropertyOverrides({\"iF2XvNDhD-hover\":{\"data-framer-name\":undefined},\"nSEeVzCaE-hover\":{\"data-framer-name\":undefined},\"PxEXcEXKh-hover\":{\"data-framer-name\":undefined},\"XtjW1dQ59-hover\":{\"data-framer-name\":undefined},iF2XvNDhD:{\"data-framer-name\":\"Bottom\"},PxEXcEXKh:{\"data-framer-name\":\"Left\",\"data-highlight\":true},XtjW1dQ59:{\"data-framer-name\":\"Right\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uyb7jx\",layoutDependency:layoutDependency,layoutId:\"C4CqOwMJh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.375em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(0, 0, 253)))\"},children:\"Running stroke\"})}),className:\"framer-17lv1yp\",\"data-framer-name\":\"Text\",fonts:[\"FR;InterDisplay-Medium\"],layoutDependency:layoutDependency,layoutId:\"yNLgJCrbq\",style:{\"--extracted-r6o4lv\":\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(0, 0, 253))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:ofLqZhEO8,variants:{XtjW1dQ59:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({XtjW1dQ59:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.375em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Running stroke\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yejwci\",\"data-framer-name\":\"Icon Flip\",layoutDependency:layoutDependency,layoutId:\"A9sWQwkzF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-103za2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Rr1sbUurN-container\",nodeId:\"Rr1sbUurN\",rendersWithMotion:true,scopeId:\"vfZ8Tj9xR\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(0, 0, 253))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"Rr1sbUurN\",layoutId:\"Rr1sbUurN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({XtjW1dQ59:{color:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1m962pa-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bMHNVUuov-container\",nodeId:\"bMHNVUuov\",rendersWithMotion:true,scopeId:\"vfZ8Tj9xR\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(0, 0, 253))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"bMHNVUuov\",layoutId:\"bMHNVUuov\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"XtjW1dQ59-hover\":{color:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jG4wM.framer-1eqmve6, .framer-jG4wM .framer-1eqmve6 { display: block; }\",\".framer-jG4wM.framer-v8it5u { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 48px; justify-content: center; overflow: visible; padding: 14px 14px 14px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jG4wM .framer-uyb7jx { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-jG4wM .framer-17lv1yp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jG4wM .framer-1yejwci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 18px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; }\",\".framer-jG4wM .framer-103za2-container { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; z-index: 1; }\",\".framer-jG4wM .framer-1m962pa-container { bottom: -22px; flex: none; height: 18px; left: -22px; position: absolute; width: 18px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jG4wM.framer-v8it5u, .framer-jG4wM .framer-uyb7jx, .framer-jG4wM .framer-1yejwci { gap: 0px; } .framer-jG4wM.framer-v8it5u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jG4wM.framer-v8it5u > :first-child { margin-top: 0px; } .framer-jG4wM.framer-v8it5u > :last-child { margin-bottom: 0px; } .framer-jG4wM .framer-uyb7jx > *, .framer-jG4wM .framer-1yejwci > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jG4wM .framer-uyb7jx > :first-child, .framer-jG4wM .framer-1yejwci > :first-child { margin-left: 0px; } .framer-jG4wM .framer-uyb7jx > :last-child, .framer-jG4wM .framer-1yejwci > :last-child { margin-right: 0px; } }\",\".framer-jG4wM.framer-v-v8it5u.hover .framer-103za2-container, .framer-jG4wM.framer-v-in9g8f.hover .framer-103za2-container, .framer-jG4wM.framer-v-1t8s3hc.hover .framer-103za2-container, .framer-jG4wM.framer-v-nftb4u.hover .framer-103za2-container { left: unset; right: -22px; top: -22px; }\",\".framer-jG4wM.framer-v-v8it5u.hover .framer-1m962pa-container { bottom: unset; left: calc(50.00000000000002% - 18px / 2); top: calc(50.00000000000002% - 18px / 2); }\",\".framer-jG4wM.framer-v-in9g8f.hover .framer-1m962pa-container, .framer-jG4wM.framer-v-1t8s3hc.hover .framer-1m962pa-container, .framer-jG4wM.framer-v-nftb4u.hover .framer-1m962pa-container { bottom: 0px; left: 0px; }\",'.framer-jG4wM[data-border=\"true\"]::after, .framer-jG4wM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 158\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"XtjW1dQ59\":{\"layout\":[\"auto\",\"fixed\"]},\"iF2XvNDhD\":{\"layout\":[\"auto\",\"fixed\"]},\"PxEXcEXKh\":{\"layout\":[\"auto\",\"fixed\"]},\"xFa13AOH0\":{\"layout\":[\"auto\",\"fixed\"]},\"xGWsNhSOt\":{\"layout\":[\"auto\",\"fixed\"]},\"vNacmtaKG\":{\"layout\":[\"auto\",\"fixed\"]},\"gSyQBEOBy\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"ofLqZhEO8\":\"buttonText\",\"GS3bSUXSK\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervfZ8Tj9xR=withCSS(Component,css,\"framer-jG4wM\");export default FramervfZ8Tj9xR;FramervfZ8Tj9xR.displayName=\"Button/Running-Stroke\";FramervfZ8Tj9xR.defaultProps={height:48,width:158};addPropertyControls(FramervfZ8Tj9xR,{variant:{options:[\"nSEeVzCaE\",\"XtjW1dQ59\",\"iF2XvNDhD\",\"PxEXcEXKh\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},ofLqZhEO8:{defaultValue:\"Running stroke\",displayTextArea:false,title:\"Button text\",type:ControlType.String},GS3bSUXSK:{title:\"Link\",type:ControlType.Link}});addFonts(FramervfZ8Tj9xR,[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervfZ8Tj9xR\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"158\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"ofLqZhEO8\\\":\\\"buttonText\\\",\\\"GS3bSUXSK\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"XtjW1dQ59\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iF2XvNDhD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"PxEXcEXKh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xFa13AOH0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"xGWsNhSOt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"vNacmtaKG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gSyQBEOBy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"48\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vfZ8Tj9xR.map", "// Generated by Framer (9f68555)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-500\",\"GF;Inter-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]}];export const css=['.framer-xsYXd .framer-styles-preset-1q3l3un:not(.rich-text-wrapper), .framer-xsYXd .framer-styles-preset-1q3l3un.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-xsYXd .framer-styles-preset-1q3l3un:not(.rich-text-wrapper), .framer-xsYXd .framer-styles-preset-1q3l3un.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-xsYXd .framer-styles-preset-1q3l3un:not(.rich-text-wrapper), .framer-xsYXd .framer-styles-preset-1q3l3un.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, #1d322d); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-xsYXd\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c56cc2c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ppddkoJk4PRPRx1H9k6h/yPsDYSgzqp0uxPLBCgJr/QObON56vl.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/dUO0NFpZlGhbs1431rZn/KaEjW3iOV0nmyViONrtR/YlG7eJng5.js\";const enabledGestures={KBIIdMrvV:{hover:true}};const cycleOrder=[\"KBIIdMrvV\",\"M0ame0W3e\",\"P41BMnign\"];const serializationHash=\"framer-mUtKi\";const variantClassNames={KBIIdMrvV:\"framer-v-1sbdmmg\",M0ame0W3e:\"framer-v-ftywzn\",P41BMnign:\"framer-v-eyfocf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:212,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Active:\"M0ame0W3e\",Default:\"KBIIdMrvV\",mobile:\"P41BMnign\"};const getProps=({click,height,id,link,pageName,width,...props})=>{return{...props,nOARGIk5g:click??props.nOARGIk5g,variant:humanReadableVariantMap[props.variant]??props.variant??\"KBIIdMrvV\",vr3GalQZm:pageName??props.vr3GalQZm??\"Home\",x7kSahbL4:link??props.x7kSahbL4};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,x7kSahbL4,vr3GalQZm,nOARGIk5g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KBIIdMrvV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1tmoh2u=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(nOARGIk5g){const res=await nOARGIk5g(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:x7kSahbL4,nodeId:\"KBIIdMrvV\",...addPropertyOverrides({P41BMnign:{smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1sbdmmg\",className,classNames)} framer-146ny47`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KBIIdMrvV\",onTap:onTap1tmoh2u,ref:ref??ref1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11,...style},variants:{M0ame0W3e:{backgroundColor:\"var(--token-8870a9c4-2a9d-46c2-84fc-3470fbec519e, rgba(0, 0, 0, 0.05))\"}},...addPropertyOverrides({\"KBIIdMrvV-hover\":{\"data-framer-name\":undefined},M0ame0W3e:{\"data-framer-name\":\"Active\"},P41BMnign:{\"data-framer-name\":\"mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",children:\"Home\"})}),className:\"framer-jzmbbb\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aw_DIsc5G\",text:vr3GalQZm,variants:{\"KBIIdMrvV-hover\":{\"--extracted-r6o4lv\":\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(255, 119, 56))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"KBIIdMrvV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(255, 119, 56)))\"},children:\"Home\"})})},P41BMnign:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1q3l3un\",\"data-styles-preset\":\"YlG7eJng5\",children:\"Home\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mUtKi.framer-146ny47, .framer-mUtKi .framer-146ny47 { display: block; }\",\".framer-mUtKi.framer-1sbdmmg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 30px; justify-content: center; overflow: hidden; padding: 0px 12px 0px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-mUtKi .framer-jzmbbb { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mUtKi.framer-1sbdmmg { gap: 0px; } .framer-mUtKi.framer-1sbdmmg > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-mUtKi.framer-1sbdmmg > :first-child { margin-left: 0px; } .framer-mUtKi.framer-1sbdmmg > :last-child { margin-right: 0px; } }\",\".framer-mUtKi.framer-v-eyfocf.framer-1sbdmmg { height: min-content; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 66\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"M0ame0W3e\":{\"layout\":[\"auto\",\"fixed\"]},\"P41BMnign\":{\"layout\":[\"auto\",\"auto\"]},\"dKZd7mlJe\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"x7kSahbL4\":\"link\",\"vr3GalQZm\":\"pageName\",\"nOARGIk5g\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAz6MmHxe4=withCSS(Component,css,\"framer-mUtKi\");export default FramerAz6MmHxe4;FramerAz6MmHxe4.displayName=\"Navigation / Nav - Link - Single\";FramerAz6MmHxe4.defaultProps={height:30,width:66};addPropertyControls(FramerAz6MmHxe4,{variant:{options:[\"KBIIdMrvV\",\"M0ame0W3e\",\"P41BMnign\"],optionTitles:[\"Default\",\"Active\",\"mobile\"],title:\"Variant\",type:ControlType.Enum},x7kSahbL4:{title:\"Link\",type:ControlType.Link},vr3GalQZm:{defaultValue:\"Home\",displayTextArea:false,title:\"Page Name\",type:ControlType.String},nOARGIk5g:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerAz6MmHxe4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAz6MmHxe4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"x7kSahbL4\\\":\\\"link\\\",\\\"vr3GalQZm\\\":\\\"pageName\\\",\\\"nOARGIk5g\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"M0ame0W3e\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"P41BMnign\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dKZd7mlJe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"66\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (915daba)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/6iCcgwvqsNyRLKv6F1qL/ujsD2y8Ll8S4HUhhQYuX/fjyVc4jD3.js\";const serializationHash=\"framer-Ajanx\";const variantClassNames={gfwKZBxAi:\"framer-v-3255u3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,link,title,width,...props})=>{return{...props,Tzpt4fE6f:click??props.Tzpt4fE6f,UshclB94X:title??props.UshclB94X??\"About Me\",XOMIpcMb1:link??props.XOMIpcMb1};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UshclB94X,XOMIpcMb1,Tzpt4fE6f,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"gfwKZBxAi\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap12ltn52=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Tzpt4fE6f){const res=await Tzpt4fE6f(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:XOMIpcMb1,motionChild:true,nodeId:\"gfwKZBxAi\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-3255u3\",className,classNames)} framer-y2n6cn`,\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gfwKZBxAi\",onTap:onTap12ltn52,ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1v525k0\",\"data-styles-preset\":\"fjyVc4jD3\",children:\"About Me\"})}),className:\"framer-1k5z61i\",\"data-framer-name\":\"Link\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bBPfEPtms\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:UshclB94X,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ajanx.framer-y2n6cn, .framer-Ajanx .framer-y2n6cn { display: block; }\",\".framer-Ajanx.framer-3255u3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Ajanx .framer-1k5z61i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ajanx.framer-3255u3 { gap: 0px; } .framer-Ajanx.framer-3255u3 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ajanx.framer-3255u3 > :first-child { margin-left: 0px; } .framer-Ajanx.framer-3255u3 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 38\n * @framerIntrinsicWidth 99\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"UshclB94X\":\"title\",\"XOMIpcMb1\":\"link\",\"Tzpt4fE6f\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBW56A5l99=withCSS(Component,css,\"framer-Ajanx\");export default FramerBW56A5l99;FramerBW56A5l99.displayName=\"Nav / Item 2\";FramerBW56A5l99.defaultProps={height:38,width:99};addPropertyControls(FramerBW56A5l99,{UshclB94X:{defaultValue:\"About Me\",displayTextArea:false,title:\"Title\",type:ControlType.String},XOMIpcMb1:{title:\"Link\",type:ControlType.Link},Tzpt4fE6f:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerBW56A5l99,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBW56A5l99\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"38\",\"framerVariables\":\"{\\\"UshclB94X\\\":\\\"title\\\",\\\"XOMIpcMb1\\\":\\\"link\\\",\\\"Tzpt4fE6f\\\":\\\"click\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"99\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (455587d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavigationNavLinkSingle from\"https://framerusercontent.com/modules/j4hxZoFDtwzpSIQczMMV/s5XdUfyjjycy1puRjS5V/Az6MmHxe4.js\";import NavItem2 from\"https://framerusercontent.com/modules/bjPAGBgRIzPrppC0Px7m/wI9G4D4LKcS1DfYq92kC/BW56A5l99.js\";import ButtonRunningStroke from\"https://framerusercontent.com/modules/v3QDS3fr6ZB3hNqxjZQR/VToLSFFKhDrdOcHyKOli/vfZ8Tj9xR.js\";const ButtonRunningStrokeFonts=getFonts(ButtonRunningStroke);const NavigationNavLinkSingleFonts=getFonts(NavigationNavLinkSingle);const NavItem2Fonts=getFonts(NavItem2);const cycleOrder=[\"Y6Muk5gpv\",\"uI65Kuiar\",\"l6x10obfc\",\"RJESUOqfl\",\"BEn4D_bL2\"];const serializationHash=\"framer-E8d83\";const variantClassNames={BEn4D_bL2:\"framer-v-rabd0x\",l6x10obfc:\"framer-v-8wmte5\",RJESUOqfl:\"framer-v-1gxdvdk\",uI65Kuiar:\"framer-v-16gbl9e\",Y6Muk5gpv:\"framer-v-195ki3b\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={duration:0,type:\"tween\"};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"OJ3ybOaAn\":return\"M0ame0W3e\";default:return\"KBIIdMrvV\";}};const convertFromEnum1=(value,activeLocale)=>{switch(value){case\"Y2NgVSzxp\":return\"M0ame0W3e\";default:return\"KBIIdMrvV\";}};const convertFromEnum2=(value,activeLocale)=>{switch(value){case\"KHmCAiZun\":return\"M0ame0W3e\";default:return\"KBIIdMrvV\";}};const convertFromEnum3=(value,activeLocale)=>{switch(value){case\"AEo5PpUoG\":return\"M0ame0W3e\";default:return\"KBIIdMrvV\";}};const transition3={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={About:\"KHmCAiZun\",Blogs:\"AEo5PpUoG\",Changelog:\"OJ3ybOaAn\",Contact:\"l6Hp5cyuM\",Doc:\"kA87AlclE\",Home:\"jcV_yFltq\",Projects:\"Y2NgVSzxp\",Reviews:\"nrcCICgod\",Services:\"AljqF7WF7\",Waitlist:\"mxqQWiqG0\"};const humanReadableVariantMap={\"Phone Open\":\"BEn4D_bL2\",\"Tablet Open\":\"RJESUOqfl\",Desktop:\"Y6Muk5gpv\",Phone:\"uI65Kuiar\",Tablet:\"l6x10obfc\"};const getProps=({activePage,height,id,width,...props})=>{return{...props,gGSU0bs4G:humanReadableEnumMap[activePage]??activePage??props.gGSU0bs4G??\"jcV_yFltq\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Y6Muk5gpv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,gGSU0bs4G,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y6Muk5gpv\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapvv7flj=activeVariantCallback(async(...args)=>{setVariant(\"RJESUOqfl\");});const onTap1bjok2q=activeVariantCallback(async(...args)=>{setVariant(\"l6x10obfc\");});const onTap1l5q03k=activeVariantCallback(async(...args)=>{setVariant(\"uI65Kuiar\");});const Tzpt4fE6f1l5q03k=activeVariantCallback(async(...args)=>{setVariant(\"uI65Kuiar\");});const onTapieiks8=activeVariantCallback(async(...args)=>{setVariant(\"BEn4D_bL2\");});const onTap5kl2y3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uI65Kuiar\"),200);});const Tzpt4fE6f5kl2y3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uI65Kuiar\"),200);});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"uI65Kuiar\",\"BEn4D_bL2\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"l6x10obfc\",\"RJESUOqfl\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"l6x10obfc\")return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"RJESUOqfl\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"l6x10obfc\")return true;return false;};const router=useRouter();const isDisplayed5=()=>{if([\"l6x10obfc\",\"RJESUOqfl\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"RJESUOqfl\")return true;return false;};const isDisplayed7=()=>{if([\"uI65Kuiar\",\"BEn4D_bL2\"].includes(baseVariant))return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"BEn4D_bL2\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"uI65Kuiar\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({BEn4D_bL2:{value:transition2},l6x10obfc:{value:transition2},RJESUOqfl:{value:transition2},uI65Kuiar:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-195ki3b\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"Y6Muk5gpv\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(20px)\",backgroundColor:\"rgba(255, 255, 255, 0.5)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,WebkitBackdropFilter:\"blur(20px)\",...style},variants:{BEn4D_bL2:{backdropFilter:\"blur(32px)\",backgroundColor:\"rgba(255, 255, 255, 0.7)\",WebkitBackdropFilter:\"blur(32px)\"},l6x10obfc:{backdropFilter:\"blur(32px)\",backgroundColor:\"rgba(255, 255, 255, 0.8)\",WebkitBackdropFilter:\"blur(32px)\"},RJESUOqfl:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(242, 243, 243)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},uI65Kuiar:{backdropFilter:\"blur(32px)\",backgroundColor:\"rgba(255, 255, 255, 0.7)\",WebkitBackdropFilter:\"blur(32px)\"}},...addPropertyOverrides({BEn4D_bL2:{\"data-framer-name\":\"Phone Open\"},l6x10obfc:{\"data-framer-name\":\"Tablet\"},RJESUOqfl:{\"data-framer-name\":\"Tablet Open\"},uI65Kuiar:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aabujr\",layoutDependency:layoutDependency,layoutId:\"iphoqzHaR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a8qe5x\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"Mjgu4Jr92\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ueiKkVaj3\"},motionChild:true,nodeId:\"bu4ys_Ka8\",openInNewTab:false,scopeId:\"LDekglqvl\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-wlfjwy framer-11uolsd\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"bu4ys_Ka8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mv00s1\",\"data-framer-name\":\"logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PpQ1x3Me0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 153 34\"><path d=\"M 149.851 4.516 L 150.535 4.561 L 151.369 6.672 L 152.211 4.561 L 152.925 4.523 L 152.925 8.217 L 152.249 8.217 L 152.211 6.37 L 152.038 6.823 C 151.94 7.071 151.79 7.35 151.7 7.448 C 151.61 7.539 151.452 7.622 151.347 7.622 C 151.242 7.622 151.099 7.561 151.031 7.486 C 150.964 7.411 150.828 7.147 150.558 6.446 L 150.52 8.217 L 149.844 8.217 Z M 40.58 11.233 L 40.91 12.235 C 41.091 12.778 41.94 15.319 42.796 17.867 C 43.653 20.415 44.359 22.518 44.375 22.541 C 44.39 22.564 45.058 20.558 45.862 18.093 C 46.674 15.628 47.501 13.072 48.094 11.233 L 52.528 11.233 L 52.498 11.406 C 52.483 11.497 51.048 15.477 49.304 20.242 C 47.561 25.014 45.983 29.303 45.795 29.778 C 45.614 30.253 45.299 30.932 45.103 31.286 C 44.878 31.693 44.555 32.123 44.224 32.462 C 43.818 32.877 43.548 33.065 43.059 33.299 C 42.706 33.472 42.203 33.661 41.932 33.729 C 41.662 33.796 41.076 33.879 40.632 33.925 C 40.099 33.977 39.543 33.977 38.979 33.925 C 38.513 33.887 37.964 33.819 37.762 33.781 C 37.551 33.736 37.378 33.691 37.378 33.683 C 37.371 33.668 37.288 32.929 37.19 32.025 C 37.093 31.128 37.025 30.374 37.048 30.351 C 37.07 30.329 37.288 30.344 37.536 30.389 C 37.784 30.442 38.34 30.479 38.776 30.479 C 39.415 30.479 39.648 30.442 40.016 30.306 C 40.339 30.185 40.58 30.019 40.88 29.71 C 41.106 29.477 41.414 29.054 41.564 28.76 C 41.714 28.474 41.895 28.052 42.083 27.441 L 39.039 19.397 C 37.363 14.964 35.996 11.323 35.996 11.293 C 35.996 11.255 37.025 11.233 40.58 11.233 Z M 22.206 0.06 C 22.371 0.075 22.672 0.143 22.882 0.203 C 23.085 0.271 23.423 0.407 23.634 0.513 C 23.837 0.618 24.228 0.927 24.491 1.199 C 24.821 1.53 25.054 1.87 25.219 2.224 C 25.355 2.518 25.505 2.978 25.55 3.264 C 25.588 3.543 25.603 3.95 25.58 4.169 C 25.55 4.38 25.482 4.734 25.43 4.938 C 25.37 5.149 25.227 5.488 25.107 5.692 C 24.986 5.903 24.671 6.287 24.408 6.551 C 24.115 6.845 23.762 7.109 23.484 7.245 C 23.236 7.358 22.845 7.494 22.619 7.546 C 22.394 7.591 21.92 7.622 21.567 7.599 C 21.116 7.576 20.778 7.509 19.914 7.162 L 19.628 7.403 C 19.478 7.531 19.027 7.938 17.923 8.979 L 18.118 9.408 C 18.231 9.642 18.381 10.011 18.449 10.215 C 18.516 10.426 18.614 10.916 18.659 11.308 C 18.734 11.941 18.727 12.107 18.584 12.778 C 18.494 13.246 18.321 13.766 18.141 14.135 C 17.923 14.58 17.69 14.904 17.246 15.372 C 16.916 15.711 16.442 16.133 16.194 16.299 C 15.946 16.457 15.548 16.668 15.308 16.759 C 14.977 16.887 14.872 16.962 14.879 17.075 C 14.879 17.158 14.932 17.716 14.992 18.319 C 15.052 18.922 15.097 19.473 15.105 19.548 C 15.105 19.646 15.24 19.714 15.646 19.835 C 15.946 19.925 16.36 20.106 16.57 20.242 C 16.773 20.377 17.171 20.717 17.442 21.003 C 17.712 21.29 18.013 21.674 18.111 21.862 C 18.201 22.051 18.343 22.458 18.419 22.767 C 18.501 23.076 18.561 23.536 18.561 23.785 C 18.561 24.034 18.509 24.441 18.449 24.69 C 18.381 24.938 18.223 25.36 18.088 25.624 C 17.938 25.926 17.645 26.31 17.314 26.642 C 16.961 26.989 16.608 27.26 16.299 27.411 C 16.036 27.547 15.646 27.69 15.443 27.743 C 15.232 27.788 14.781 27.826 14.428 27.826 C 14.075 27.826 13.602 27.765 13.376 27.697 C 13.151 27.637 12.76 27.471 12.512 27.328 C 12.242 27.185 11.851 26.861 11.535 26.521 C 11.242 26.205 10.911 25.76 10.791 25.511 C 10.671 25.27 10.528 24.833 10.468 24.539 C 10.393 24.199 10.37 23.807 10.393 23.446 C 10.423 23.137 10.506 22.677 10.596 22.428 C 10.678 22.179 10.829 21.84 10.926 21.674 C 11.024 21.508 11.235 21.222 11.4 21.041 C 11.558 20.86 11.858 20.573 12.076 20.415 C 12.294 20.257 12.625 20.061 12.813 19.978 C 13 19.895 13.166 19.804 13.181 19.774 C 13.196 19.737 13.158 19.171 13.106 18.508 C 13.046 17.844 12.985 17.271 12.97 17.226 C 12.955 17.188 12.647 17.083 12.279 17.007 C 11.851 16.917 11.362 16.736 10.934 16.517 C 10.393 16.239 10.13 16.042 9.619 15.53 C 9.198 15.1 8.882 14.701 8.702 14.354 C 8.552 14.067 8.356 13.6 8.259 13.306 C 8.161 13.004 8.071 12.477 8.003 11.353 L 6.012 10.856 L 5.426 11.444 C 4.967 11.911 4.749 12.077 4.396 12.213 C 4.148 12.303 3.705 12.401 3.419 12.424 C 3.111 12.446 2.72 12.416 2.48 12.364 C 2.254 12.311 1.901 12.19 1.706 12.092 C 1.51 11.994 1.18 11.745 0.977 11.534 C 0.767 11.331 0.519 11.014 0.413 10.841 C 0.308 10.66 0.173 10.328 0.113 10.102 C 0.053 9.876 0 9.499 0 9.273 C 0 9.046 0.045 8.692 0.098 8.481 C 0.158 8.278 0.263 7.968 0.346 7.803 C 0.421 7.644 0.654 7.32 0.864 7.101 C 1.067 6.875 1.375 6.611 1.541 6.521 C 1.706 6.423 2.006 6.287 2.217 6.219 C 2.42 6.152 2.811 6.091 3.081 6.091 C 3.352 6.091 3.735 6.129 3.945 6.182 C 4.148 6.227 4.486 6.363 4.697 6.483 C 4.9 6.604 5.245 6.89 5.463 7.117 C 5.681 7.35 5.937 7.697 6.027 7.901 C 6.117 8.097 6.222 8.421 6.35 8.986 L 7.364 9.242 C 7.921 9.378 8.409 9.491 8.454 9.499 C 8.492 9.499 8.634 9.303 8.77 9.062 C 8.897 8.828 9.206 8.421 9.446 8.164 C 9.686 7.908 10.1 7.539 10.37 7.35 C 10.641 7.162 11.114 6.913 11.422 6.792 C 11.731 6.672 12.242 6.536 12.55 6.483 C 12.888 6.423 13.339 6.408 13.677 6.438 C 13.985 6.468 14.443 6.544 14.691 6.604 C 14.939 6.672 15.36 6.823 15.631 6.951 C 15.901 7.079 16.217 7.26 16.345 7.358 C 16.465 7.456 16.623 7.539 16.683 7.539 C 16.743 7.539 17.194 7.162 18.569 5.843 L 18.381 5.39 C 18.276 5.141 18.148 4.749 18.103 4.523 C 18.058 4.297 18.035 3.852 18.05 3.543 C 18.08 3.144 18.163 2.804 18.336 2.375 C 18.531 1.9 18.697 1.658 19.08 1.259 C 19.35 0.972 19.711 0.663 19.876 0.565 C 20.042 0.467 20.327 0.332 20.515 0.264 C 20.703 0.196 21.086 0.113 21.379 0.083 C 21.665 0.053 22.041 0.045 22.206 0.06 Z M 146.838 4.523 L 149.318 4.523 L 149.318 5.202 L 148.416 5.202 L 148.416 8.217 L 147.74 8.217 L 147.74 5.202 L 146.838 5.202 Z M 112.496 5.277 L 116.854 5.277 L 116.854 9.273 L 112.496 9.273 Z M 108.227 5.775 C 108.272 5.797 108.302 6.868 108.287 11.384 L 111.143 11.384 L 111.143 14.851 L 108.287 14.851 L 108.287 19.186 C 108.287 22.873 108.302 23.559 108.4 23.785 C 108.46 23.928 108.618 24.117 108.753 24.199 C 108.919 24.305 109.136 24.35 109.415 24.35 C 109.64 24.35 110.113 24.267 110.467 24.169 C 110.82 24.064 111.113 23.988 111.12 23.996 C 111.135 24.003 111.211 24.622 111.293 25.368 C 111.376 26.114 111.459 26.868 111.519 27.366 L 110.933 27.547 C 110.617 27.645 110.151 27.773 109.903 27.826 C 109.625 27.893 108.979 27.931 108.212 27.931 C 107.055 27.931 106.935 27.916 106.386 27.72 C 106.07 27.607 105.627 27.403 105.409 27.26 C 105.191 27.125 104.928 26.913 104.816 26.793 C 104.703 26.672 104.53 26.386 104.425 26.16 C 104.32 25.933 104.177 25.511 104.102 25.217 C 103.996 24.757 103.974 24.071 103.929 14.851 L 101.975 14.851 L 101.975 11.384 L 103.929 11.384 L 103.966 8.195 L 106.063 6.966 C 107.213 6.295 108.19 5.76 108.227 5.775 Z M 29.458 10.893 C 30.179 10.909 31.081 10.976 31.464 11.044 C 31.847 11.105 32.441 11.248 32.779 11.361 C 33.125 11.482 33.568 11.67 33.779 11.798 C 33.982 11.926 34.32 12.16 34.515 12.326 C 34.718 12.492 35.034 12.831 35.222 13.08 C 35.409 13.329 35.695 13.803 35.853 14.135 C 36.011 14.467 36.161 14.844 36.236 15.191 L 34.29 15.552 C 33.223 15.748 32.306 15.914 32.253 15.907 C 32.201 15.907 32.08 15.726 31.983 15.515 C 31.893 15.296 31.712 15.002 31.592 14.859 C 31.472 14.723 31.224 14.52 31.036 14.414 C 30.848 14.301 30.51 14.173 30.284 14.12 C 30.059 14.067 29.495 14.022 29.044 14.022 C 28.586 14.022 27.977 14.075 27.692 14.135 C 27.399 14.203 27.031 14.331 26.865 14.429 C 26.685 14.535 26.512 14.716 26.429 14.882 C 26.362 15.032 26.302 15.221 26.302 15.304 C 26.302 15.387 26.354 15.56 26.414 15.681 C 26.474 15.809 26.617 15.975 26.73 16.05 C 26.843 16.133 27.241 16.299 27.617 16.427 C 27.985 16.548 29.135 16.864 30.172 17.121 C 31.201 17.369 32.404 17.701 32.839 17.844 C 33.275 17.988 33.944 18.266 34.335 18.462 C 34.831 18.704 35.199 18.96 35.56 19.299 C 35.92 19.639 36.161 19.94 36.326 20.279 C 36.461 20.551 36.612 20.973 36.664 21.222 C 36.732 21.508 36.755 22.006 36.732 22.579 C 36.702 23.355 36.664 23.566 36.477 24.049 C 36.356 24.358 36.101 24.833 35.913 25.104 C 35.718 25.376 35.334 25.805 35.049 26.069 C 34.741 26.356 34.275 26.68 33.891 26.876 C 33.538 27.057 33.035 27.268 32.764 27.351 C 32.494 27.434 31.938 27.562 31.524 27.63 C 31.013 27.72 30.367 27.765 29.495 27.765 C 28.789 27.765 27.947 27.728 27.617 27.675 C 27.286 27.622 26.745 27.517 26.414 27.426 C 26.084 27.343 25.528 27.14 25.174 26.974 C 24.821 26.808 24.333 26.529 24.085 26.356 C 23.837 26.175 23.431 25.813 23.183 25.549 C 22.927 25.285 22.589 24.833 22.416 24.539 C 22.251 24.252 22.011 23.747 21.89 23.431 C 21.778 23.106 21.71 22.82 21.74 22.79 C 21.778 22.752 22.762 22.586 23.919 22.413 C 25.084 22.239 26.046 22.089 26.054 22.089 C 26.069 22.089 26.091 22.202 26.114 22.337 C 26.129 22.466 26.249 22.782 26.369 23.031 C 26.497 23.287 26.745 23.627 26.955 23.823 C 27.151 24.003 27.481 24.23 27.692 24.32 C 27.895 24.411 28.323 24.531 28.631 24.584 C 28.969 24.637 29.465 24.652 29.871 24.629 C 30.239 24.599 30.765 24.516 31.036 24.433 C 31.306 24.35 31.667 24.177 31.84 24.056 C 32.028 23.921 32.223 23.687 32.313 23.506 C 32.396 23.325 32.456 23.084 32.456 22.956 C 32.464 22.835 32.396 22.594 32.321 22.428 C 32.216 22.209 32.08 22.081 31.832 21.96 C 31.637 21.862 30.6 21.568 29.51 21.305 C 28.428 21.033 27.068 20.664 26.489 20.475 C 25.911 20.287 25.114 19.978 24.723 19.782 C 24.182 19.51 23.889 19.299 23.521 18.93 C 23.251 18.658 22.92 18.229 22.792 17.98 C 22.657 17.731 22.499 17.309 22.439 17.038 C 22.371 16.766 22.319 16.223 22.319 15.831 C 22.319 15.424 22.371 14.919 22.439 14.663 C 22.507 14.414 22.679 13.977 22.83 13.683 C 23.01 13.344 23.303 12.952 23.671 12.582 C 24.13 12.122 24.37 11.949 24.949 11.662 C 25.34 11.474 25.948 11.248 26.302 11.165 C 26.655 11.082 27.211 10.976 27.542 10.939 C 27.872 10.901 28.736 10.878 29.458 10.893 Z M 63.199 10.893 C 63.672 10.916 64.281 10.984 64.552 11.052 C 64.822 11.12 65.363 11.323 65.754 11.512 C 66.287 11.768 66.588 11.964 66.941 12.318 C 67.257 12.62 67.512 12.967 67.7 13.344 C 67.858 13.653 68.046 14.128 68.114 14.399 C 68.174 14.67 68.264 15.228 68.309 15.643 C 68.347 16.058 68.377 18.885 68.384 27.441 L 64.026 27.441 L 64.026 22.375 C 64.026 19.246 63.995 17.053 63.943 16.661 C 63.898 16.276 63.785 15.846 63.665 15.575 C 63.545 15.319 63.327 15.01 63.139 14.844 C 62.966 14.678 62.725 14.505 62.613 14.444 C 62.5 14.391 62.207 14.301 61.959 14.248 C 61.688 14.195 61.343 14.18 61.095 14.218 C 60.869 14.248 60.509 14.331 60.306 14.399 C 60.095 14.467 59.78 14.625 59.592 14.753 C 59.404 14.882 59.111 15.138 58.931 15.334 C 58.758 15.522 58.54 15.824 58.457 16.005 C 58.367 16.178 58.239 16.54 58.179 16.811 C 58.081 17.226 58.059 18.116 58.014 27.441 L 53.655 27.441 L 53.655 11.233 L 57.638 11.233 L 57.638 13.532 L 58.104 13.027 C 58.367 12.756 58.765 12.379 58.991 12.198 C 59.216 12.017 59.637 11.753 59.93 11.595 C 60.216 11.444 60.674 11.248 60.944 11.165 C 61.215 11.074 61.636 10.976 61.884 10.939 C 62.132 10.893 62.725 10.878 63.199 10.893 Z M 76.876 10.871 C 77.349 10.863 78.131 10.893 78.604 10.939 C 79.078 10.984 79.769 11.097 80.145 11.195 C 80.513 11.286 81.024 11.466 81.272 11.595 C 81.52 11.715 81.926 11.972 82.174 12.16 C 82.422 12.348 82.73 12.65 82.865 12.831 C 82.993 13.004 83.173 13.329 83.263 13.532 C 83.353 13.743 83.481 14.15 83.541 14.437 C 83.631 14.859 83.669 15.952 83.759 24.765 L 83.955 25.481 C 84.06 25.873 84.248 26.446 84.383 26.748 C 84.511 27.042 84.616 27.328 84.616 27.366 C 84.616 27.419 83.864 27.441 80.408 27.441 L 80.31 27.2 C 80.25 27.064 80.13 26.68 79.852 25.745 L 79.25 26.22 C 78.912 26.484 78.304 26.861 77.89 27.072 C 77.477 27.275 76.936 27.494 76.688 27.554 C 76.44 27.622 75.929 27.705 75.561 27.75 C 75.08 27.803 74.659 27.803 74.095 27.743 C 73.659 27.69 73.051 27.577 72.743 27.471 C 72.435 27.373 71.961 27.17 71.698 27.011 C 71.435 26.853 71.007 26.499 70.744 26.22 C 70.481 25.933 70.173 25.526 70.06 25.315 C 69.955 25.097 69.797 24.727 69.722 24.501 C 69.632 24.245 69.556 23.785 69.534 23.295 C 69.496 22.684 69.519 22.368 69.624 21.9 C 69.699 21.568 69.872 21.078 70.007 20.807 C 70.143 20.536 70.406 20.151 70.586 19.94 C 70.766 19.737 71.112 19.427 71.36 19.262 C 71.6 19.096 72.074 18.839 72.404 18.704 C 72.735 18.568 73.374 18.357 73.832 18.236 C 74.283 18.123 75.185 17.92 75.824 17.791 C 76.462 17.663 77.424 17.445 77.965 17.309 C 78.499 17.166 79.078 17 79.543 16.804 L 79.491 16.261 C 79.461 15.967 79.393 15.583 79.341 15.417 C 79.288 15.251 79.108 14.98 78.942 14.814 C 78.717 14.58 78.521 14.474 78.153 14.369 C 77.808 14.271 77.402 14.226 76.801 14.218 C 76.124 14.218 75.839 14.248 75.486 14.361 C 75.215 14.452 74.907 14.633 74.696 14.821 C 74.486 15.01 74.261 15.334 74.103 15.65 C 73.96 15.937 73.84 16.178 73.84 16.193 C 73.832 16.208 72.976 16.058 71.931 15.869 C 70.886 15.688 70.007 15.53 69.977 15.53 C 69.947 15.53 69.947 15.424 69.985 15.289 C 70.015 15.153 70.15 14.784 70.285 14.474 C 70.413 14.165 70.676 13.675 70.864 13.381 C 71.059 13.095 71.428 12.658 71.698 12.409 C 71.961 12.168 72.382 11.858 72.63 11.723 C 72.878 11.587 73.351 11.391 73.682 11.286 C 74.013 11.18 74.554 11.059 74.884 11.014 C 75.215 10.969 75.606 10.924 75.749 10.909 C 75.891 10.893 76.402 10.878 76.876 10.871 Z M 78.972 19.842 C 78.709 19.917 77.965 20.098 77.327 20.242 C 76.688 20.392 75.921 20.581 75.636 20.664 C 75.343 20.754 74.99 20.882 74.847 20.958 C 74.704 21.026 74.441 21.252 74.261 21.455 C 74.058 21.689 73.915 21.953 73.862 22.164 C 73.802 22.405 73.802 22.624 73.862 22.918 C 73.907 23.152 74.05 23.498 74.185 23.702 C 74.321 23.905 74.569 24.162 74.734 24.275 C 74.899 24.38 75.132 24.516 75.26 24.569 C 75.38 24.622 75.688 24.682 75.936 24.705 C 76.237 24.735 76.55 24.707 76.876 24.622 C 77.146 24.546 77.545 24.403 77.77 24.29 C 77.995 24.177 78.364 23.921 78.589 23.709 C 78.83 23.483 79.063 23.174 79.175 22.941 C 79.288 22.684 79.386 22.285 79.431 21.81 C 79.476 21.403 79.498 20.762 79.483 20.385 L 79.453 19.706 Z M 94.648 10.863 C 94.941 10.863 95.415 10.893 95.7 10.931 C 95.993 10.976 96.482 11.097 96.79 11.203 C 97.098 11.308 97.571 11.519 97.842 11.678 C 98.112 11.836 98.548 12.152 98.811 12.371 C 99.074 12.597 99.495 13.027 99.743 13.344 C 99.991 13.653 100.352 14.248 100.555 14.663 C 100.758 15.078 100.991 15.666 101.073 15.982 C 101.156 16.291 101.276 16.864 101.336 17.264 C 101.404 17.678 101.449 18.515 101.449 19.262 C 101.449 19.993 101.404 20.845 101.344 21.259 C 101.284 21.651 101.141 22.277 101.036 22.654 C 100.923 23.023 100.728 23.566 100.592 23.86 C 100.464 24.147 100.201 24.607 100.021 24.878 C 99.841 25.142 99.442 25.624 99.127 25.933 C 98.811 26.242 98.285 26.672 97.955 26.876 C 97.624 27.079 97.083 27.343 96.752 27.456 C 96.422 27.569 95.828 27.697 95.437 27.743 C 94.941 27.795 94.535 27.795 94.084 27.743 C 93.731 27.705 93.258 27.615 93.032 27.547 C 92.807 27.479 92.454 27.336 92.243 27.23 C 92.04 27.125 91.717 26.936 91.529 26.808 C 91.342 26.68 90.928 26.318 90.019 25.443 L 90.027 33.548 L 85.743 33.548 L 85.743 11.233 L 89.801 11.233 L 89.801 13.419 L 90.162 12.989 C 90.357 12.756 90.718 12.394 90.966 12.198 C 91.214 11.994 91.672 11.7 91.98 11.534 C 92.288 11.376 92.747 11.188 92.995 11.112 C 93.243 11.044 93.596 10.961 93.784 10.931 C 93.972 10.893 94.363 10.871 94.648 10.863 Z M 91.62 14.964 C 91.402 15.13 91.116 15.402 90.981 15.568 C 90.853 15.733 90.65 16.05 90.545 16.284 C 90.432 16.51 90.275 16.917 90.207 17.188 C 90.094 17.58 90.072 17.965 90.072 19.111 C 90.072 20.355 90.094 20.634 90.237 21.222 C 90.335 21.591 90.538 22.134 90.688 22.42 C 90.846 22.707 91.139 23.114 91.342 23.325 C 91.552 23.536 91.928 23.815 92.168 23.943 C 92.416 24.079 92.837 24.23 93.108 24.282 C 93.483 24.35 93.716 24.35 94.122 24.282 C 94.415 24.237 94.836 24.109 95.061 23.996 C 95.287 23.883 95.655 23.611 95.873 23.393 C 96.113 23.144 96.361 22.782 96.527 22.443 C 96.67 22.141 96.835 21.629 96.903 21.297 C 96.97 20.965 97.045 20.287 97.068 19.789 C 97.098 19.246 97.075 18.583 97.023 18.131 C 96.97 17.716 96.842 17.121 96.745 16.811 C 96.639 16.495 96.459 16.088 96.339 15.907 C 96.226 15.718 95.941 15.387 95.708 15.168 C 95.475 14.949 95.091 14.686 94.858 14.572 C 94.498 14.399 94.295 14.361 93.709 14.339 C 93.115 14.324 92.912 14.346 92.506 14.49 C 92.236 14.58 91.83 14.799 91.62 14.964 Z M 125.985 11.09 C 126.653 11.082 127.39 11.127 127.788 11.188 C 128.164 11.255 128.652 11.353 128.878 11.421 C 129.103 11.489 129.531 11.662 129.817 11.806 C 130.11 11.949 130.576 12.243 130.869 12.454 C 131.155 12.673 131.591 13.102 131.831 13.419 C 132.079 13.728 132.417 14.256 132.582 14.588 C 132.748 14.919 132.966 15.417 133.063 15.696 C 133.161 15.975 133.214 16.223 133.184 16.239 C 133.146 16.254 132.244 16.427 131.17 16.615 C 130.095 16.811 129.171 16.977 129.111 16.985 C 129.043 16.992 128.96 16.849 128.878 16.585 C 128.81 16.352 128.682 16.035 128.592 15.869 C 128.509 15.703 128.344 15.462 128.224 15.334 C 128.111 15.206 127.878 15.017 127.713 14.904 C 127.548 14.799 127.209 14.655 126.961 14.588 C 126.713 14.527 126.33 14.474 126.12 14.474 C 125.902 14.474 125.541 14.512 125.331 14.557 C 125.113 14.603 124.752 14.731 124.527 14.836 C 124.309 14.949 123.963 15.198 123.76 15.394 C 123.557 15.598 123.294 15.96 123.167 16.223 C 123.046 16.487 122.888 16.947 122.821 17.264 C 122.761 17.573 122.686 18.266 122.663 18.809 C 122.64 19.39 122.656 20.106 122.716 20.581 C 122.768 21.011 122.858 21.553 122.919 21.787 C 122.971 22.013 123.114 22.405 123.234 22.654 C 123.347 22.903 123.595 23.257 123.775 23.446 C 123.956 23.634 124.256 23.883 124.444 23.988 C 124.632 24.101 125 24.245 125.271 24.313 C 125.616 24.403 125.939 24.433 126.36 24.403 C 126.811 24.38 127.082 24.313 127.442 24.154 C 127.735 24.019 128.044 23.8 128.239 23.596 C 128.412 23.408 128.637 23.069 128.742 22.842 C 128.855 22.609 128.998 22.194 129.058 21.915 C 129.163 21.478 129.201 21.41 129.351 21.41 C 129.441 21.41 130.396 21.561 131.47 21.749 C 132.545 21.938 133.432 22.096 133.439 22.104 C 133.439 22.119 133.364 22.413 133.266 22.767 C 133.161 23.114 132.928 23.725 132.74 24.124 C 132.552 24.516 132.252 25.044 132.071 25.293 C 131.899 25.541 131.568 25.918 131.35 26.129 C 131.125 26.341 130.726 26.65 130.456 26.823 C 130.185 27.004 129.712 27.245 129.404 27.373 C 129.096 27.501 128.555 27.675 128.201 27.75 C 127.826 27.841 127.119 27.916 126.473 27.939 C 125.819 27.969 125.128 27.954 124.745 27.901 C 124.391 27.856 123.903 27.765 123.655 27.697 C 123.407 27.637 122.949 27.479 122.64 27.351 C 122.332 27.23 121.806 26.944 121.476 26.725 C 121.145 26.506 120.642 26.077 120.348 25.768 C 120.055 25.466 119.665 24.961 119.469 24.652 C 119.274 24.335 119.018 23.83 118.891 23.521 C 118.77 23.204 118.598 22.662 118.515 22.315 C 118.432 21.96 118.327 21.38 118.289 21.033 C 118.244 20.679 118.207 20 118.207 19.525 C 118.207 19.043 118.244 18.364 118.289 18.018 C 118.327 17.663 118.432 17.083 118.515 16.736 C 118.598 16.382 118.77 15.839 118.891 15.53 C 119.018 15.213 119.274 14.708 119.469 14.399 C 119.665 14.082 120.025 13.615 120.273 13.351 C 120.521 13.087 120.912 12.725 121.138 12.552 C 121.363 12.371 121.769 12.107 122.039 11.964 C 122.31 11.813 122.783 11.61 123.091 11.504 C 123.399 11.399 123.925 11.263 124.256 11.203 C 124.594 11.142 125.353 11.09 125.985 11.09 Z M 141.991 11.112 C 143.441 11.135 143.93 11.172 144.471 11.293 C 144.847 11.368 145.365 11.527 145.636 11.64 C 145.906 11.753 146.357 12.002 146.65 12.198 C 146.936 12.394 147.304 12.718 147.469 12.929 C 147.627 13.133 147.845 13.479 147.943 13.698 C 148.04 13.917 148.176 14.391 148.243 14.753 C 148.356 15.326 148.378 15.99 148.386 19.865 C 148.393 22.873 148.424 24.493 148.484 24.878 C 148.529 25.187 148.619 25.624 148.679 25.858 C 148.739 26.084 148.904 26.552 149.055 26.891 C 149.198 27.238 149.295 27.532 149.265 27.554 C 149.243 27.569 148.281 27.592 145.034 27.592 L 144.809 26.853 C 144.681 26.454 144.561 26.077 144.546 26.024 C 144.523 25.964 144.283 26.114 143.892 26.423 C 143.546 26.695 143.013 27.049 142.705 27.207 C 142.397 27.373 141.841 27.599 141.465 27.713 C 140.849 27.901 140.683 27.916 139.549 27.924 C 138.466 27.924 138.234 27.909 137.708 27.75 C 137.377 27.66 136.873 27.456 136.58 27.305 C 136.229 27.125 135.866 26.843 135.491 26.461 C 135.115 26.084 134.847 25.732 134.687 25.406 C 134.559 25.134 134.394 24.712 134.326 24.463 C 134.258 24.192 134.206 23.694 134.206 23.219 C 134.198 22.707 134.243 22.254 134.326 21.938 C 134.401 21.666 134.551 21.259 134.664 21.033 C 134.777 20.799 135.002 20.445 135.168 20.242 C 135.333 20.031 135.633 19.737 135.836 19.586 C 136.039 19.435 136.422 19.201 136.693 19.066 C 136.964 18.937 137.49 18.726 137.858 18.606 C 138.234 18.485 139.278 18.236 140.187 18.048 C 141.097 17.859 142.164 17.626 142.555 17.52 C 142.945 17.422 143.456 17.279 144.095 17.06 L 144.095 16.389 C 144.088 15.892 144.05 15.65 143.952 15.454 C 143.877 15.304 143.727 15.093 143.614 14.98 C 143.509 14.866 143.231 14.701 143.005 14.61 C 142.705 14.497 142.352 14.444 141.69 14.414 C 140.916 14.376 140.713 14.399 140.247 14.535 C 139.804 14.67 139.631 14.768 139.338 15.055 C 139.135 15.258 138.872 15.635 138.504 16.397 L 136.565 16.042 C 135.498 15.846 134.619 15.688 134.611 15.688 C 134.596 15.681 134.672 15.447 134.769 15.168 C 134.867 14.889 135.04 14.474 135.153 14.248 C 135.265 14.015 135.506 13.63 135.679 13.381 C 135.851 13.133 136.197 12.748 136.438 12.529 C 136.686 12.303 137.151 11.994 137.482 11.828 C 137.813 11.662 138.354 11.466 138.684 11.384 C 139.015 11.301 139.489 11.195 139.736 11.157 C 139.984 11.12 140.999 11.105 141.991 11.112 Z M 141.089 20.664 C 140.511 20.799 139.849 21.003 139.624 21.109 C 139.383 21.222 139.09 21.448 138.925 21.636 C 138.767 21.825 138.602 22.111 138.564 22.277 C 138.519 22.443 138.497 22.744 138.519 22.956 C 138.542 23.159 138.624 23.468 138.707 23.634 C 138.79 23.8 139.008 24.071 139.188 24.245 C 139.368 24.418 139.631 24.622 139.774 24.697 C 139.984 24.81 140.202 24.84 140.864 24.84 C 141.668 24.84 141.705 24.833 142.276 24.554 C 142.592 24.403 143.035 24.109 143.253 23.905 C 143.509 23.664 143.719 23.37 143.87 23.061 C 144.08 22.594 144.088 22.533 144.118 21.237 C 144.133 20.505 144.118 19.902 144.088 19.91 C 144.05 19.917 143.599 20.031 143.081 20.166 C 142.562 20.294 141.668 20.521 141.089 20.664 Z M 112.496 11.384 L 116.854 11.384 L 116.854 27.592 L 112.496 27.592 Z\" fill=\"rgb(0, 5, 253)\"></path></svg>',svgContentId:12836609747,withExternalLayout:true,...addPropertyOverrides({l6x10obfc:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 123 28\"><path d=\"M 120.469 3.719 L 121.018 3.756 L 121.689 5.494 L 122.366 3.756 L 122.94 3.725 L 122.94 6.767 L 122.396 6.767 L 122.366 5.246 L 122.227 5.619 C 122.148 5.823 122.027 6.053 121.955 6.134 C 121.882 6.208 121.756 6.277 121.671 6.277 C 121.586 6.277 121.472 6.227 121.417 6.165 C 121.363 6.103 121.254 5.886 121.037 5.308 L 121.006 6.767 L 120.463 6.767 Z M 32.623 9.25 L 32.889 10.076 C 33.034 10.523 33.716 12.615 34.405 14.714 C 35.094 16.812 35.662 18.545 35.674 18.563 C 35.686 18.582 36.223 16.93 36.87 14.9 C 37.522 12.87 38.187 10.765 38.664 9.25 L 42.228 9.25 L 42.204 9.393 C 42.192 9.468 41.038 12.746 39.637 16.67 C 38.235 20.599 36.966 24.132 36.815 24.523 C 36.67 24.914 36.417 25.473 36.26 25.765 C 36.078 26.1 35.819 26.454 35.553 26.733 C 35.227 27.075 35.009 27.23 34.616 27.423 C 34.332 27.565 33.928 27.721 33.71 27.776 C 33.493 27.832 33.022 27.901 32.665 27.938 C 32.236 27.981 31.789 27.981 31.336 27.938 C 30.961 27.907 30.52 27.851 30.357 27.82 C 30.188 27.783 30.049 27.745 30.049 27.739 C 30.043 27.727 29.977 27.118 29.898 26.373 C 29.82 25.635 29.765 25.014 29.783 24.995 C 29.802 24.976 29.977 24.989 30.176 25.026 C 30.375 25.07 30.822 25.101 31.173 25.101 C 31.686 25.101 31.874 25.07 32.17 24.958 C 32.429 24.858 32.623 24.722 32.864 24.467 C 33.046 24.275 33.293 23.927 33.414 23.685 C 33.535 23.449 33.68 23.101 33.831 22.599 L 31.384 15.974 C 30.037 12.324 28.938 9.325 28.938 9.3 C 28.938 9.269 29.765 9.25 32.623 9.25 Z M 17.852 0.05 C 17.985 0.062 18.226 0.118 18.396 0.168 C 18.559 0.223 18.831 0.335 19 0.422 C 19.163 0.509 19.477 0.764 19.688 0.987 C 19.954 1.26 20.142 1.54 20.274 1.831 C 20.383 2.074 20.504 2.452 20.54 2.688 C 20.57 2.918 20.583 3.253 20.564 3.433 C 20.54 3.607 20.486 3.899 20.444 4.066 C 20.395 4.24 20.281 4.52 20.184 4.687 C 20.087 4.861 19.833 5.178 19.622 5.395 C 19.386 5.637 19.102 5.854 18.879 5.966 C 18.68 6.059 18.365 6.171 18.184 6.215 C 18.003 6.252 17.622 6.277 17.338 6.258 C 16.976 6.239 16.704 6.184 16.009 5.898 L 15.78 6.097 C 15.659 6.202 15.296 6.537 14.408 7.394 L 14.565 7.748 C 14.656 7.941 14.777 8.245 14.831 8.412 C 14.886 8.586 14.964 8.99 15 9.313 C 15.061 9.834 15.055 9.971 14.94 10.523 C 14.868 10.908 14.729 11.337 14.584 11.641 C 14.408 12.007 14.221 12.274 13.865 12.659 C 13.599 12.938 13.218 13.286 13.019 13.423 C 12.82 13.553 12.499 13.727 12.306 13.801 C 12.04 13.907 11.956 13.969 11.962 14.062 C 11.962 14.13 12.004 14.59 12.052 15.086 C 12.101 15.583 12.137 16.036 12.143 16.098 C 12.143 16.179 12.252 16.235 12.578 16.334 C 12.82 16.409 13.152 16.558 13.321 16.67 C 13.484 16.781 13.804 17.061 14.022 17.297 C 14.239 17.533 14.481 17.849 14.559 18.004 C 14.632 18.16 14.747 18.495 14.807 18.749 C 14.874 19.004 14.922 19.383 14.922 19.588 C 14.922 19.792 14.88 20.128 14.831 20.333 C 14.777 20.537 14.65 20.885 14.541 21.102 C 14.42 21.351 14.185 21.667 13.919 21.941 C 13.635 22.226 13.351 22.45 13.103 22.574 C 12.892 22.686 12.578 22.803 12.415 22.847 C 12.246 22.884 11.883 22.915 11.599 22.915 C 11.315 22.915 10.935 22.866 10.753 22.81 C 10.572 22.76 10.258 22.623 10.059 22.505 C 9.841 22.388 9.527 22.121 9.273 21.841 C 9.038 21.58 8.772 21.214 8.675 21.009 C 8.579 20.811 8.464 20.45 8.415 20.208 C 8.355 19.929 8.337 19.606 8.355 19.308 C 8.379 19.054 8.446 18.675 8.518 18.47 C 8.585 18.265 8.705 17.986 8.784 17.849 C 8.863 17.713 9.032 17.477 9.165 17.328 C 9.291 17.179 9.533 16.943 9.708 16.812 C 9.883 16.682 10.149 16.521 10.3 16.452 C 10.451 16.384 10.584 16.309 10.596 16.285 C 10.608 16.254 10.578 15.788 10.536 15.242 C 10.488 14.695 10.439 14.223 10.427 14.186 C 10.415 14.155 10.167 14.068 9.871 14.006 C 9.527 13.932 9.134 13.783 8.79 13.603 C 8.355 13.373 8.144 13.211 7.733 12.789 C 7.394 12.435 7.141 12.106 6.996 11.821 C 6.875 11.585 6.718 11.2 6.639 10.958 C 6.561 10.709 6.488 10.275 6.434 9.35 L 4.833 8.94 L 4.362 9.424 C 3.993 9.809 3.818 9.946 3.534 10.058 C 3.335 10.132 2.978 10.213 2.749 10.231 C 2.501 10.25 2.187 10.225 1.994 10.182 C 1.812 10.138 1.528 10.039 1.371 9.958 C 1.214 9.878 0.948 9.673 0.785 9.499 C 0.616 9.331 0.417 9.07 0.332 8.928 C 0.248 8.779 0.139 8.505 0.091 8.319 C 0.042 8.133 0 7.823 0 7.636 C 0 7.45 0.036 7.158 0.079 6.984 C 0.127 6.817 0.211 6.562 0.278 6.426 C 0.338 6.295 0.526 6.028 0.695 5.848 C 0.858 5.662 1.106 5.445 1.238 5.37 C 1.371 5.29 1.613 5.178 1.782 5.122 C 1.945 5.066 2.259 5.016 2.477 5.016 C 2.694 5.016 3.003 5.047 3.172 5.091 C 3.335 5.128 3.607 5.24 3.776 5.339 C 3.939 5.439 4.217 5.674 4.392 5.861 C 4.567 6.053 4.773 6.339 4.845 6.506 C 4.918 6.668 5.002 6.935 5.105 7.4 L 5.92 7.611 C 6.367 7.723 6.76 7.816 6.796 7.823 C 6.827 7.823 6.941 7.661 7.05 7.462 C 7.153 7.27 7.401 6.935 7.594 6.724 C 7.787 6.513 8.119 6.208 8.337 6.053 C 8.554 5.898 8.935 5.693 9.183 5.594 C 9.43 5.494 9.841 5.383 10.089 5.339 C 10.361 5.29 10.723 5.277 10.995 5.302 C 11.243 5.327 11.611 5.389 11.811 5.439 C 12.01 5.494 12.348 5.619 12.566 5.724 C 12.783 5.83 13.037 5.979 13.14 6.059 C 13.236 6.14 13.363 6.208 13.412 6.208 C 13.46 6.208 13.822 5.898 14.928 4.811 L 14.777 4.439 C 14.692 4.234 14.59 3.911 14.553 3.725 C 14.517 3.539 14.499 3.172 14.511 2.918 C 14.535 2.589 14.602 2.309 14.741 1.956 C 14.898 1.564 15.031 1.366 15.339 1.037 C 15.556 0.801 15.846 0.546 15.979 0.466 C 16.112 0.385 16.342 0.273 16.493 0.217 C 16.644 0.161 16.952 0.093 17.187 0.068 C 17.417 0.043 17.719 0.037 17.852 0.05 Z M 118.046 3.725 L 120.04 3.725 L 120.04 4.284 L 119.315 4.284 L 119.315 6.767 L 118.771 6.767 L 118.771 4.284 L 118.046 4.284 Z M 90.438 4.346 L 93.942 4.346 L 93.942 7.636 L 90.438 7.636 Z M 87.006 4.756 C 87.042 4.774 87.067 5.656 87.055 9.375 L 89.35 9.375 L 89.35 12.231 L 87.055 12.231 L 87.055 15.8 C 87.055 18.836 87.067 19.401 87.145 19.588 C 87.193 19.705 87.32 19.861 87.429 19.929 C 87.562 20.016 87.737 20.053 87.961 20.053 C 88.142 20.053 88.523 19.985 88.806 19.904 C 89.09 19.817 89.326 19.755 89.332 19.761 C 89.344 19.768 89.405 20.277 89.471 20.891 C 89.537 21.506 89.604 22.127 89.652 22.537 L 89.181 22.686 C 88.927 22.766 88.553 22.872 88.353 22.915 C 88.13 22.971 87.61 23.002 86.994 23.002 C 86.064 23.002 85.967 22.99 85.526 22.828 C 85.272 22.735 84.916 22.568 84.741 22.45 C 84.566 22.338 84.354 22.164 84.263 22.065 C 84.173 21.965 84.034 21.729 83.949 21.543 C 83.865 21.357 83.75 21.009 83.69 20.767 C 83.605 20.388 83.587 19.823 83.551 12.231 L 81.98 12.231 L 81.98 9.375 L 83.551 9.375 L 83.581 6.748 L 85.266 5.737 C 86.191 5.184 86.976 4.743 87.006 4.756 Z M 23.682 8.971 C 24.262 8.984 24.987 9.039 25.295 9.095 C 25.603 9.145 26.08 9.263 26.352 9.356 C 26.63 9.455 26.986 9.611 27.155 9.716 C 27.319 9.822 27.59 10.014 27.747 10.151 C 27.911 10.287 28.164 10.567 28.315 10.772 C 28.466 10.976 28.696 11.368 28.823 11.641 C 28.95 11.914 29.071 12.224 29.131 12.51 L 27.566 12.808 C 26.708 12.969 25.971 13.106 25.929 13.1 C 25.887 13.1 25.79 12.951 25.712 12.777 C 25.639 12.597 25.494 12.355 25.397 12.237 C 25.301 12.125 25.101 11.957 24.95 11.87 C 24.799 11.777 24.528 11.672 24.346 11.628 C 24.165 11.585 23.712 11.548 23.349 11.548 C 22.981 11.548 22.492 11.591 22.262 11.641 C 22.026 11.697 21.73 11.802 21.597 11.883 C 21.453 11.97 21.314 12.119 21.247 12.255 C 21.193 12.38 21.144 12.535 21.144 12.603 C 21.144 12.671 21.187 12.814 21.235 12.913 C 21.283 13.019 21.398 13.156 21.489 13.218 C 21.579 13.286 21.9 13.423 22.202 13.528 C 22.498 13.627 23.422 13.888 24.256 14.099 C 25.083 14.304 26.05 14.577 26.4 14.695 C 26.751 14.813 27.288 15.043 27.603 15.204 C 28.001 15.403 28.297 15.614 28.587 15.894 C 28.877 16.173 29.071 16.421 29.203 16.701 C 29.312 16.924 29.433 17.272 29.475 17.477 C 29.53 17.713 29.548 18.122 29.53 18.594 C 29.506 19.234 29.475 19.407 29.324 19.805 C 29.228 20.059 29.022 20.45 28.871 20.674 C 28.714 20.897 28.406 21.251 28.176 21.469 C 27.929 21.705 27.554 21.972 27.246 22.133 C 26.962 22.282 26.557 22.456 26.34 22.524 C 26.122 22.592 25.675 22.698 25.343 22.754 C 24.932 22.828 24.413 22.866 23.712 22.866 C 23.144 22.866 22.467 22.835 22.202 22.791 C 21.936 22.748 21.501 22.661 21.235 22.586 C 20.969 22.518 20.522 22.35 20.238 22.214 C 19.954 22.077 19.562 21.847 19.362 21.705 C 19.163 21.556 18.837 21.258 18.637 21.04 C 18.432 20.823 18.16 20.45 18.021 20.208 C 17.888 19.972 17.695 19.556 17.598 19.296 C 17.508 19.029 17.453 18.793 17.477 18.768 C 17.508 18.737 18.299 18.6 19.229 18.458 C 20.166 18.315 20.939 18.191 20.945 18.191 C 20.957 18.191 20.975 18.284 20.993 18.396 C 21.005 18.501 21.102 18.762 21.199 18.967 C 21.301 19.178 21.501 19.457 21.67 19.619 C 21.827 19.768 22.093 19.954 22.262 20.028 C 22.425 20.103 22.769 20.202 23.017 20.246 C 23.289 20.289 23.688 20.301 24.014 20.283 C 24.31 20.258 24.733 20.19 24.95 20.121 C 25.168 20.053 25.458 19.91 25.597 19.811 C 25.748 19.699 25.905 19.507 25.977 19.358 C 26.044 19.209 26.092 19.01 26.092 18.905 C 26.098 18.805 26.044 18.607 25.983 18.47 C 25.899 18.29 25.79 18.184 25.591 18.085 C 25.434 18.004 24.6 17.762 23.724 17.545 C 22.854 17.321 21.761 17.017 21.295 16.862 C 20.83 16.707 20.19 16.452 19.876 16.291 C 19.441 16.067 19.205 15.894 18.909 15.589 C 18.692 15.366 18.426 15.012 18.323 14.807 C 18.214 14.602 18.088 14.254 18.039 14.031 C 17.985 13.807 17.943 13.36 17.943 13.038 C 17.943 12.702 17.985 12.286 18.039 12.075 C 18.094 11.87 18.233 11.51 18.353 11.268 C 18.498 10.989 18.734 10.666 19.03 10.362 C 19.398 9.983 19.592 9.84 20.057 9.604 C 20.371 9.449 20.86 9.263 21.144 9.195 C 21.428 9.126 21.875 9.039 22.141 9.008 C 22.407 8.977 23.102 8.959 23.682 8.971 Z M 50.807 8.971 C 51.188 8.99 51.677 9.046 51.894 9.101 C 52.112 9.157 52.547 9.325 52.861 9.48 C 53.29 9.691 53.532 9.853 53.816 10.145 C 54.069 10.393 54.275 10.678 54.426 10.989 C 54.553 11.243 54.704 11.635 54.758 11.858 C 54.806 12.082 54.879 12.541 54.915 12.882 C 54.945 13.224 54.969 15.552 54.975 22.599 L 51.472 22.599 L 51.472 18.427 C 51.472 15.85 51.447 14.043 51.405 13.721 C 51.369 13.404 51.278 13.05 51.182 12.827 C 51.085 12.615 50.91 12.361 50.759 12.224 C 50.62 12.088 50.426 11.945 50.336 11.895 C 50.245 11.852 50.01 11.777 49.81 11.734 C 49.593 11.69 49.315 11.678 49.115 11.709 C 48.934 11.734 48.644 11.802 48.481 11.858 C 48.312 11.914 48.058 12.044 47.907 12.15 C 47.756 12.255 47.521 12.466 47.376 12.628 C 47.237 12.783 47.061 13.031 46.995 13.18 C 46.922 13.323 46.82 13.621 46.771 13.845 C 46.693 14.186 46.675 14.919 46.639 22.599 L 43.135 22.599 L 43.135 9.25 L 46.336 9.25 L 46.336 11.144 L 46.711 10.728 C 46.922 10.505 47.243 10.194 47.424 10.045 C 47.605 9.896 47.943 9.679 48.179 9.548 C 48.409 9.424 48.777 9.263 48.995 9.195 C 49.212 9.12 49.55 9.039 49.75 9.008 C 49.949 8.971 50.426 8.959 50.807 8.971 Z M 61.802 8.952 C 62.183 8.946 62.811 8.971 63.192 9.008 C 63.572 9.046 64.128 9.139 64.43 9.219 C 64.726 9.294 65.137 9.443 65.336 9.548 C 65.536 9.648 65.862 9.859 66.061 10.014 C 66.261 10.169 66.508 10.418 66.617 10.567 C 66.72 10.709 66.865 10.976 66.937 11.144 C 67.01 11.318 67.112 11.653 67.161 11.889 C 67.233 12.237 67.263 13.137 67.336 20.395 L 67.493 20.984 C 67.578 21.307 67.729 21.779 67.837 22.027 C 67.94 22.27 68.025 22.505 68.025 22.537 C 68.025 22.58 67.42 22.599 64.641 22.599 L 64.563 22.4 C 64.515 22.288 64.418 21.972 64.194 21.202 L 63.711 21.593 C 63.439 21.81 62.95 22.121 62.618 22.294 C 62.285 22.462 61.85 22.642 61.651 22.692 C 61.452 22.748 61.041 22.816 60.745 22.853 C 60.358 22.897 60.02 22.897 59.567 22.847 C 59.216 22.803 58.727 22.71 58.479 22.623 C 58.232 22.543 57.851 22.375 57.64 22.245 C 57.428 22.114 57.084 21.823 56.872 21.593 C 56.661 21.357 56.413 21.022 56.323 20.848 C 56.238 20.668 56.111 20.364 56.051 20.177 C 55.978 19.966 55.918 19.588 55.9 19.184 C 55.87 18.681 55.888 18.42 55.972 18.035 C 56.033 17.762 56.172 17.359 56.28 17.135 C 56.389 16.912 56.601 16.595 56.746 16.421 C 56.891 16.254 57.168 15.999 57.368 15.862 C 57.561 15.726 57.942 15.515 58.208 15.403 C 58.473 15.291 58.987 15.117 59.355 15.018 C 59.718 14.925 60.443 14.757 60.956 14.652 C 61.47 14.546 62.243 14.366 62.678 14.254 C 63.107 14.137 63.572 14 63.947 13.839 L 63.904 13.392 C 63.88 13.149 63.826 12.833 63.784 12.696 C 63.741 12.56 63.596 12.336 63.463 12.199 C 63.282 12.007 63.125 11.92 62.829 11.833 C 62.551 11.752 62.225 11.715 61.742 11.709 C 61.198 11.709 60.968 11.734 60.684 11.827 C 60.467 11.901 60.219 12.05 60.05 12.206 C 59.881 12.361 59.7 12.628 59.573 12.889 C 59.458 13.125 59.361 13.323 59.361 13.336 C 59.355 13.348 58.667 13.224 57.827 13.069 C 56.987 12.92 56.28 12.789 56.256 12.789 C 56.232 12.789 56.232 12.702 56.262 12.591 C 56.286 12.479 56.395 12.175 56.504 11.92 C 56.607 11.666 56.818 11.262 56.969 11.02 C 57.126 10.784 57.422 10.424 57.64 10.219 C 57.851 10.02 58.189 9.766 58.389 9.654 C 58.588 9.542 58.969 9.381 59.235 9.294 C 59.5 9.207 59.935 9.108 60.201 9.07 C 60.467 9.033 60.781 8.996 60.896 8.984 C 61.011 8.971 61.421 8.959 61.802 8.952 Z M 63.488 16.341 C 63.276 16.403 62.678 16.552 62.165 16.67 C 61.651 16.794 61.035 16.949 60.805 17.017 C 60.57 17.092 60.286 17.197 60.171 17.259 C 60.056 17.315 59.845 17.501 59.7 17.669 C 59.537 17.862 59.422 18.079 59.38 18.253 C 59.331 18.451 59.331 18.631 59.38 18.874 C 59.416 19.066 59.531 19.352 59.639 19.519 C 59.748 19.687 59.947 19.898 60.08 19.991 C 60.213 20.078 60.4 20.19 60.503 20.233 C 60.6 20.277 60.848 20.326 61.047 20.345 C 61.289 20.37 61.54 20.347 61.802 20.277 C 62.02 20.215 62.34 20.097 62.521 20.003 C 62.702 19.91 62.998 19.699 63.179 19.525 C 63.373 19.339 63.56 19.085 63.651 18.892 C 63.741 18.681 63.82 18.352 63.856 17.961 C 63.892 17.626 63.91 17.098 63.898 16.788 L 63.874 16.229 Z M 76.09 8.946 C 76.325 8.946 76.706 8.971 76.935 9.002 C 77.171 9.039 77.564 9.139 77.811 9.226 C 78.059 9.313 78.44 9.486 78.657 9.617 C 78.875 9.747 79.225 10.008 79.436 10.188 C 79.648 10.374 79.986 10.728 80.186 10.989 C 80.385 11.243 80.675 11.734 80.838 12.075 C 81.001 12.417 81.188 12.901 81.255 13.162 C 81.321 13.416 81.418 13.888 81.466 14.217 C 81.521 14.559 81.557 15.248 81.557 15.862 C 81.557 16.465 81.521 17.166 81.472 17.508 C 81.424 17.831 81.309 18.346 81.225 18.656 C 81.134 18.96 80.977 19.407 80.868 19.65 C 80.766 19.886 80.554 20.264 80.409 20.488 C 80.264 20.705 79.944 21.102 79.69 21.357 C 79.436 21.611 79.014 21.965 78.748 22.133 C 78.482 22.301 78.047 22.518 77.781 22.611 C 77.515 22.704 77.038 22.81 76.724 22.847 C 76.325 22.89 75.999 22.89 75.637 22.847 C 75.353 22.816 74.972 22.741 74.791 22.686 C 74.61 22.63 74.326 22.512 74.156 22.425 C 73.993 22.338 73.734 22.183 73.583 22.077 C 73.431 21.972 73.099 21.674 72.368 20.953 L 72.374 27.627 L 68.931 27.627 L 68.931 9.25 L 72.193 9.25 L 72.193 11.051 L 72.483 10.697 C 72.64 10.505 72.93 10.207 73.129 10.045 C 73.329 9.878 73.697 9.635 73.945 9.499 C 74.193 9.368 74.561 9.213 74.761 9.151 C 74.96 9.095 75.244 9.027 75.395 9.002 C 75.546 8.971 75.86 8.952 76.09 8.946 Z M 73.655 12.324 C 73.48 12.46 73.25 12.684 73.141 12.82 C 73.039 12.957 72.876 13.218 72.791 13.41 C 72.7 13.596 72.574 13.932 72.519 14.155 C 72.429 14.478 72.411 14.795 72.411 15.738 C 72.411 16.763 72.429 16.992 72.543 17.477 C 72.622 17.781 72.785 18.228 72.906 18.464 C 73.033 18.7 73.268 19.035 73.431 19.209 C 73.601 19.383 73.903 19.612 74.096 19.718 C 74.295 19.83 74.634 19.954 74.851 19.997 C 75.153 20.053 75.341 20.053 75.667 19.997 C 75.902 19.96 76.241 19.854 76.422 19.761 C 76.603 19.668 76.899 19.445 77.074 19.265 C 77.268 19.06 77.467 18.762 77.6 18.482 C 77.715 18.234 77.848 17.812 77.902 17.539 C 77.956 17.266 78.017 16.707 78.035 16.297 C 78.059 15.85 78.041 15.304 77.999 14.931 C 77.956 14.59 77.854 14.099 77.775 13.845 C 77.691 13.584 77.546 13.249 77.449 13.1 C 77.358 12.945 77.129 12.671 76.941 12.491 C 76.754 12.311 76.446 12.094 76.259 12.001 C 75.969 11.858 75.806 11.827 75.334 11.808 C 74.857 11.796 74.694 11.815 74.368 11.933 C 74.15 12.007 73.824 12.187 73.655 12.324 Z M 101.282 9.133 C 101.819 9.126 102.411 9.164 102.732 9.213 C 103.034 9.269 103.426 9.35 103.608 9.406 C 103.789 9.462 104.133 9.604 104.363 9.722 C 104.598 9.84 104.973 10.082 105.208 10.256 C 105.438 10.436 105.788 10.79 105.982 11.051 C 106.181 11.305 106.453 11.74 106.586 12.013 C 106.719 12.286 106.894 12.696 106.973 12.926 C 107.051 13.156 107.093 13.36 107.069 13.373 C 107.039 13.385 106.314 13.528 105.45 13.683 C 104.586 13.845 103.843 13.981 103.795 13.988 C 103.74 13.994 103.674 13.876 103.608 13.658 C 103.553 13.466 103.45 13.205 103.378 13.069 C 103.312 12.932 103.179 12.733 103.082 12.628 C 102.991 12.522 102.804 12.367 102.671 12.274 C 102.538 12.187 102.266 12.069 102.067 12.013 C 101.868 11.964 101.56 11.92 101.39 11.92 C 101.215 11.92 100.925 11.951 100.756 11.988 C 100.581 12.026 100.291 12.131 100.11 12.218 C 99.934 12.311 99.657 12.516 99.493 12.678 C 99.33 12.845 99.119 13.143 99.016 13.36 C 98.92 13.578 98.793 13.956 98.738 14.217 C 98.69 14.472 98.63 15.043 98.611 15.49 C 98.593 15.968 98.605 16.558 98.654 16.949 C 98.696 17.303 98.769 17.75 98.817 17.942 C 98.859 18.129 98.974 18.451 99.071 18.656 C 99.161 18.861 99.361 19.153 99.506 19.308 C 99.651 19.463 99.892 19.668 100.043 19.755 C 100.194 19.848 100.49 19.966 100.708 20.022 C 100.986 20.097 101.245 20.121 101.584 20.097 C 101.946 20.078 102.164 20.022 102.454 19.892 C 102.689 19.78 102.937 19.6 103.094 19.432 C 103.233 19.277 103.414 18.998 103.499 18.811 C 103.589 18.619 103.704 18.278 103.753 18.048 C 103.837 17.688 103.867 17.632 103.988 17.632 C 104.061 17.632 104.828 17.756 105.692 17.911 C 106.556 18.066 107.269 18.197 107.275 18.203 C 107.275 18.215 107.214 18.458 107.136 18.749 C 107.051 19.035 106.864 19.538 106.713 19.867 C 106.562 20.19 106.32 20.624 106.175 20.829 C 106.036 21.034 105.77 21.345 105.595 21.518 C 105.414 21.692 105.094 21.947 104.876 22.09 C 104.659 22.239 104.278 22.437 104.03 22.543 C 103.783 22.648 103.348 22.791 103.064 22.853 C 102.762 22.928 102.194 22.99 101.674 23.008 C 101.149 23.033 100.593 23.021 100.285 22.977 C 100.001 22.94 99.608 22.866 99.409 22.81 C 99.21 22.76 98.841 22.63 98.593 22.524 C 98.346 22.425 97.923 22.189 97.657 22.009 C 97.391 21.829 96.986 21.475 96.751 21.22 C 96.515 20.972 96.201 20.556 96.044 20.301 C 95.887 20.041 95.681 19.625 95.579 19.37 C 95.482 19.109 95.343 18.662 95.277 18.377 C 95.21 18.085 95.126 17.607 95.095 17.321 C 95.059 17.03 95.029 16.471 95.029 16.08 C 95.029 15.682 95.059 15.124 95.095 14.838 C 95.126 14.546 95.21 14.068 95.277 13.783 C 95.343 13.491 95.482 13.044 95.579 12.789 C 95.681 12.529 95.887 12.113 96.044 11.858 C 96.201 11.597 96.491 11.212 96.69 10.995 C 96.89 10.778 97.204 10.48 97.385 10.337 C 97.566 10.188 97.893 9.971 98.11 9.853 C 98.328 9.729 98.708 9.561 98.956 9.474 C 99.203 9.387 99.626 9.275 99.892 9.226 C 100.164 9.176 100.774 9.133 101.282 9.133 Z M 114.15 9.151 C 115.316 9.17 115.708 9.201 116.143 9.3 C 116.445 9.362 116.862 9.493 117.08 9.586 C 117.297 9.679 117.66 9.884 117.895 10.045 C 118.125 10.207 118.421 10.474 118.554 10.647 C 118.68 10.815 118.856 11.101 118.934 11.281 C 119.013 11.461 119.122 11.852 119.176 12.15 C 119.266 12.622 119.285 13.168 119.291 16.359 C 119.297 18.836 119.321 20.171 119.369 20.488 C 119.405 20.742 119.478 21.102 119.526 21.295 C 119.575 21.481 119.708 21.866 119.828 22.145 C 119.943 22.431 120.022 22.673 119.997 22.692 C 119.979 22.704 119.206 22.723 116.596 22.723 L 116.415 22.114 C 116.312 21.785 116.216 21.475 116.204 21.431 C 116.185 21.382 115.992 21.506 115.678 21.76 C 115.4 21.984 114.971 22.276 114.723 22.406 C 114.476 22.543 114.029 22.729 113.727 22.822 C 113.231 22.977 113.098 22.99 112.186 22.996 C 111.316 22.996 111.129 22.984 110.706 22.853 C 110.44 22.779 110.035 22.611 109.8 22.487 C 109.518 22.338 109.226 22.106 108.924 21.792 C 108.622 21.481 108.406 21.191 108.277 20.922 C 108.175 20.699 108.042 20.351 107.987 20.146 C 107.933 19.923 107.891 19.513 107.891 19.122 C 107.885 18.7 107.921 18.327 107.987 18.066 C 108.048 17.843 108.169 17.508 108.259 17.321 C 108.35 17.129 108.531 16.837 108.664 16.67 C 108.797 16.496 109.039 16.254 109.202 16.129 C 109.365 16.005 109.673 15.813 109.89 15.701 C 110.108 15.596 110.531 15.422 110.827 15.322 C 111.129 15.223 111.969 15.018 112.7 14.863 C 113.431 14.708 114.289 14.515 114.603 14.428 C 114.917 14.348 115.328 14.23 115.841 14.05 L 115.841 13.497 C 115.835 13.087 115.805 12.889 115.726 12.727 C 115.666 12.603 115.545 12.429 115.454 12.336 C 115.37 12.243 115.146 12.106 114.965 12.032 C 114.723 11.939 114.44 11.895 113.908 11.87 C 113.286 11.839 113.123 11.858 112.748 11.97 C 112.392 12.082 112.253 12.162 112.017 12.398 C 111.854 12.566 111.642 12.876 111.346 13.503 L 109.788 13.211 C 108.93 13.05 108.223 12.92 108.217 12.92 C 108.205 12.913 108.265 12.721 108.344 12.491 C 108.422 12.262 108.561 11.92 108.652 11.734 C 108.743 11.541 108.936 11.225 109.075 11.02 C 109.214 10.815 109.492 10.498 109.685 10.318 C 109.884 10.132 110.259 9.878 110.525 9.741 C 110.791 9.604 111.226 9.443 111.491 9.375 C 111.757 9.306 112.138 9.219 112.337 9.188 C 112.537 9.157 113.352 9.145 114.15 9.151 Z M 113.425 17.017 C 112.959 17.129 112.428 17.297 112.247 17.384 C 112.053 17.477 111.818 17.663 111.685 17.818 C 111.558 17.973 111.425 18.209 111.395 18.346 C 111.359 18.482 111.34 18.731 111.359 18.905 C 111.377 19.072 111.443 19.327 111.51 19.463 C 111.576 19.6 111.751 19.823 111.896 19.966 C 112.041 20.109 112.253 20.277 112.367 20.339 C 112.537 20.432 112.712 20.457 113.243 20.457 C 113.89 20.457 113.92 20.45 114.379 20.221 C 114.633 20.097 114.989 19.854 115.164 19.687 C 115.37 19.488 115.539 19.246 115.66 18.992 C 115.829 18.607 115.835 18.557 115.859 17.489 C 115.871 16.887 115.859 16.39 115.835 16.396 C 115.805 16.403 115.442 16.496 115.026 16.607 C 114.609 16.713 113.89 16.899 113.425 17.017 Z M 90.438 9.375 L 93.942 9.375 L 93.942 22.723 L 90.438 22.723 Z\" fill=\"rgb(0, 5, 253)\"></path></svg>',svgContentId:12201946976},RJESUOqfl:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 127 28\"><path d=\"M 124.386 3.719 L 124.954 3.756 L 125.646 5.494 L 126.345 3.756 L 126.938 3.725 L 126.938 6.767 L 126.376 6.767 L 126.345 5.246 L 126.202 5.619 C 126.12 5.823 125.996 6.053 125.921 6.134 C 125.846 6.208 125.715 6.277 125.628 6.277 C 125.54 6.277 125.422 6.227 125.366 6.165 C 125.31 6.103 125.197 5.886 124.973 5.308 L 124.942 6.767 L 124.38 6.767 Z M 33.684 9.25 L 33.958 10.076 C 34.108 10.523 34.813 12.615 35.524 14.714 C 36.235 16.812 36.821 18.545 36.834 18.563 C 36.846 18.582 37.401 16.93 38.069 14.9 C 38.742 12.87 39.429 10.765 39.921 9.25 L 43.602 9.25 L 43.577 9.393 C 43.564 9.468 42.373 12.746 40.926 16.67 C 39.479 20.599 38.169 24.132 38.013 24.523 C 37.863 24.914 37.601 25.473 37.439 25.765 C 37.252 26.1 36.983 26.454 36.709 26.733 C 36.372 27.075 36.148 27.23 35.742 27.423 C 35.449 27.565 35.031 27.721 34.806 27.776 C 34.582 27.832 34.095 27.901 33.727 27.938 C 33.284 27.981 32.823 27.981 32.355 27.938 C 31.968 27.907 31.513 27.851 31.345 27.82 C 31.17 27.783 31.026 27.745 31.026 27.739 C 31.02 27.727 30.952 27.118 30.87 26.373 C 30.789 25.635 30.733 25.014 30.752 24.995 C 30.771 24.976 30.952 24.989 31.157 25.026 C 31.363 25.07 31.825 25.101 32.187 25.101 C 32.717 25.101 32.91 25.07 33.216 24.958 C 33.484 24.858 33.684 24.722 33.933 24.467 C 34.12 24.275 34.376 23.927 34.501 23.685 C 34.626 23.449 34.775 23.101 34.931 22.599 L 32.405 15.974 C 31.014 12.324 29.879 9.325 29.879 9.3 C 29.879 9.269 30.733 9.25 33.684 9.25 Z M 18.432 0.05 C 18.57 0.062 18.819 0.118 18.994 0.168 C 19.162 0.223 19.443 0.335 19.618 0.422 C 19.786 0.509 20.11 0.764 20.329 0.987 C 20.603 1.26 20.797 1.54 20.934 1.831 C 21.046 2.074 21.171 2.452 21.208 2.688 C 21.239 2.918 21.252 3.253 21.233 3.433 C 21.208 3.607 21.152 3.899 21.108 4.066 C 21.059 4.24 20.94 4.52 20.84 4.687 C 20.74 4.861 20.478 5.178 20.26 5.395 C 20.017 5.637 19.724 5.854 19.493 5.966 C 19.287 6.059 18.963 6.171 18.776 6.215 C 18.588 6.252 18.195 6.277 17.902 6.258 C 17.528 6.239 17.247 6.184 16.53 5.898 L 16.293 6.097 C 16.168 6.202 15.794 6.537 14.877 7.394 L 15.039 7.748 C 15.133 7.941 15.257 8.245 15.314 8.412 C 15.37 8.586 15.451 8.99 15.488 9.313 C 15.551 9.834 15.544 9.971 15.426 10.523 C 15.351 10.908 15.208 11.337 15.058 11.641 C 14.877 12.007 14.684 12.274 14.316 12.659 C 14.041 12.938 13.648 13.286 13.442 13.423 C 13.236 13.553 12.906 13.727 12.706 13.801 C 12.432 13.907 12.344 13.969 12.351 14.062 C 12.351 14.13 12.394 14.59 12.444 15.086 C 12.494 15.583 12.532 16.036 12.538 16.098 C 12.538 16.179 12.65 16.235 12.987 16.334 C 13.236 16.409 13.58 16.558 13.754 16.67 C 13.923 16.781 14.253 17.061 14.478 17.297 C 14.702 17.533 14.952 17.849 15.033 18.004 C 15.108 18.16 15.226 18.495 15.289 18.749 C 15.357 19.004 15.407 19.383 15.407 19.588 C 15.407 19.792 15.364 20.128 15.314 20.333 C 15.257 20.537 15.126 20.885 15.014 21.102 C 14.889 21.351 14.646 21.667 14.372 21.941 C 14.079 22.226 13.785 22.45 13.53 22.574 C 13.311 22.686 12.987 22.803 12.819 22.847 C 12.644 22.884 12.27 22.915 11.976 22.915 C 11.683 22.915 11.29 22.866 11.103 22.81 C 10.916 22.76 10.592 22.623 10.386 22.505 C 10.161 22.388 9.837 22.121 9.575 21.841 C 9.332 21.58 9.057 21.214 8.957 21.009 C 8.858 20.811 8.739 20.45 8.689 20.208 C 8.627 19.929 8.608 19.606 8.627 19.308 C 8.652 19.054 8.72 18.675 8.795 18.47 C 8.864 18.265 8.989 17.986 9.07 17.849 C 9.151 17.713 9.325 17.477 9.463 17.328 C 9.594 17.179 9.843 16.943 10.024 16.812 C 10.205 16.682 10.479 16.521 10.635 16.452 C 10.791 16.384 10.928 16.309 10.941 16.285 C 10.953 16.254 10.922 15.788 10.879 15.242 C 10.829 14.695 10.779 14.223 10.766 14.186 C 10.754 14.155 10.498 14.068 10.192 14.006 C 9.837 13.932 9.431 13.783 9.076 13.603 C 8.627 13.373 8.408 13.211 7.984 12.789 C 7.635 12.435 7.373 12.106 7.223 11.821 C 7.099 11.585 6.936 11.2 6.855 10.958 C 6.774 10.709 6.699 10.275 6.643 9.35 L 4.99 8.94 L 4.504 9.424 C 4.123 9.809 3.942 9.946 3.649 10.058 C 3.443 10.132 3.075 10.213 2.838 10.231 C 2.582 10.25 2.258 10.225 2.058 10.182 C 1.871 10.138 1.578 10.039 1.416 9.958 C 1.254 9.878 0.979 9.673 0.811 9.499 C 0.636 9.331 0.43 9.07 0.343 8.928 C 0.256 8.779 0.143 8.505 0.094 8.319 C 0.044 8.133 0 7.823 0 7.636 C 0 7.45 0.037 7.158 0.081 6.984 C 0.131 6.817 0.218 6.562 0.287 6.426 C 0.349 6.295 0.543 6.028 0.717 5.848 C 0.886 5.662 1.142 5.445 1.279 5.37 C 1.416 5.29 1.665 5.178 1.84 5.122 C 2.009 5.066 2.333 5.016 2.557 5.016 C 2.782 5.016 3.1 5.047 3.275 5.091 C 3.443 5.128 3.724 5.24 3.899 5.339 C 4.067 5.439 4.354 5.674 4.535 5.861 C 4.716 6.053 4.928 6.339 5.003 6.506 C 5.078 6.668 5.165 6.935 5.271 7.4 L 6.113 7.611 C 6.575 7.723 6.98 7.816 7.017 7.823 C 7.049 7.823 7.167 7.661 7.279 7.462 C 7.385 7.27 7.641 6.935 7.841 6.724 C 8.04 6.513 8.383 6.208 8.608 6.053 C 8.833 5.898 9.226 5.693 9.481 5.594 C 9.737 5.494 10.161 5.383 10.417 5.339 C 10.698 5.29 11.072 5.277 11.353 5.302 C 11.608 5.327 11.989 5.389 12.195 5.439 C 12.401 5.494 12.75 5.619 12.974 5.724 C 13.199 5.83 13.461 5.979 13.567 6.059 C 13.667 6.14 13.798 6.208 13.848 6.208 C 13.898 6.208 14.272 5.898 15.413 4.811 L 15.257 4.439 C 15.17 4.234 15.064 3.911 15.027 3.725 C 14.989 3.539 14.971 3.172 14.983 2.918 C 15.008 2.589 15.077 2.309 15.22 1.956 C 15.382 1.564 15.519 1.366 15.838 1.037 C 16.062 0.801 16.362 0.546 16.499 0.466 C 16.636 0.385 16.873 0.273 17.029 0.217 C 17.185 0.161 17.503 0.093 17.746 0.068 C 17.983 0.043 18.295 0.037 18.432 0.05 Z M 121.885 3.725 L 123.944 3.725 L 123.944 4.284 L 123.195 4.284 L 123.195 6.767 L 122.634 6.767 L 122.634 4.284 L 121.885 4.284 Z M 93.379 4.346 L 96.997 4.346 L 96.997 7.636 L 93.379 7.636 Z M 89.836 4.756 C 89.873 4.774 89.898 5.656 89.886 9.375 L 92.256 9.375 L 92.256 12.231 L 89.886 12.231 L 89.886 15.8 C 89.886 18.836 89.898 19.401 89.979 19.588 C 90.029 19.705 90.16 19.861 90.272 19.929 C 90.41 20.016 90.59 20.053 90.821 20.053 C 91.008 20.053 91.401 19.985 91.695 19.904 C 91.988 19.817 92.231 19.755 92.237 19.761 C 92.25 19.768 92.312 20.277 92.381 20.891 C 92.449 21.506 92.518 22.127 92.568 22.537 L 92.081 22.686 C 91.819 22.766 91.433 22.872 91.227 22.915 C 90.996 22.971 90.459 23.002 89.823 23.002 C 88.863 23.002 88.763 22.99 88.307 22.828 C 88.045 22.735 87.677 22.568 87.497 22.45 C 87.316 22.338 87.097 22.164 87.004 22.065 C 86.91 21.965 86.767 21.729 86.679 21.543 C 86.592 21.357 86.474 21.009 86.411 20.767 C 86.324 20.388 86.305 19.823 86.268 12.231 L 84.646 12.231 L 84.646 9.375 L 86.268 9.375 L 86.299 6.748 L 88.039 5.737 C 88.994 5.184 89.804 4.743 89.836 4.756 Z M 24.452 8.971 C 25.051 8.984 25.799 9.039 26.117 9.095 C 26.435 9.145 26.928 9.263 27.209 9.356 C 27.496 9.455 27.864 9.611 28.039 9.716 C 28.207 9.822 28.488 10.014 28.65 10.151 C 28.818 10.287 29.08 10.567 29.236 10.772 C 29.392 10.976 29.629 11.368 29.76 11.641 C 29.891 11.914 30.016 12.224 30.078 12.51 L 28.463 12.808 C 27.577 12.969 26.816 13.106 26.772 13.1 C 26.729 13.1 26.629 12.951 26.548 12.777 C 26.473 12.597 26.323 12.355 26.223 12.237 C 26.124 12.125 25.918 11.957 25.762 11.87 C 25.606 11.777 25.325 11.672 25.138 11.628 C 24.951 11.585 24.483 11.548 24.109 11.548 C 23.728 11.548 23.223 11.591 22.986 11.641 C 22.743 11.697 22.437 11.802 22.3 11.883 C 22.15 11.97 22.007 12.119 21.938 12.255 C 21.882 12.38 21.832 12.535 21.832 12.603 C 21.832 12.671 21.876 12.814 21.926 12.913 C 21.975 13.019 22.094 13.156 22.188 13.218 C 22.281 13.286 22.612 13.423 22.924 13.528 C 23.229 13.627 24.184 13.888 25.044 14.099 C 25.899 14.304 26.897 14.577 27.259 14.695 C 27.621 14.813 28.176 15.043 28.5 15.204 C 28.912 15.403 29.217 15.614 29.517 15.894 C 29.816 16.173 30.016 16.421 30.153 16.701 C 30.265 16.924 30.39 17.272 30.434 17.477 C 30.49 17.713 30.509 18.122 30.49 18.594 C 30.465 19.234 30.434 19.407 30.278 19.805 C 30.178 20.059 29.966 20.45 29.81 20.674 C 29.648 20.897 29.33 21.251 29.093 21.469 C 28.837 21.705 28.45 21.972 28.132 22.133 C 27.839 22.282 27.421 22.456 27.196 22.524 C 26.972 22.592 26.51 22.698 26.167 22.754 C 25.743 22.828 25.207 22.866 24.483 22.866 C 23.897 22.866 23.198 22.835 22.924 22.791 C 22.649 22.748 22.2 22.661 21.926 22.586 C 21.651 22.518 21.19 22.35 20.896 22.214 C 20.603 22.077 20.198 21.847 19.992 21.705 C 19.786 21.556 19.449 21.258 19.243 21.04 C 19.031 20.823 18.751 20.45 18.607 20.208 C 18.47 19.972 18.27 19.556 18.17 19.296 C 18.077 19.029 18.021 18.793 18.046 18.768 C 18.077 18.737 18.894 18.6 19.855 18.458 C 20.822 18.315 21.62 18.191 21.626 18.191 C 21.639 18.191 21.657 18.284 21.676 18.396 C 21.689 18.501 21.788 18.762 21.888 18.967 C 21.994 19.178 22.2 19.457 22.375 19.619 C 22.537 19.768 22.811 19.954 22.986 20.028 C 23.154 20.103 23.51 20.202 23.766 20.246 C 24.046 20.289 24.458 20.301 24.795 20.283 C 25.101 20.258 25.537 20.19 25.762 20.121 C 25.986 20.053 26.286 19.91 26.429 19.811 C 26.585 19.699 26.747 19.507 26.822 19.358 C 26.891 19.209 26.941 19.01 26.941 18.905 C 26.947 18.805 26.891 18.607 26.828 18.47 C 26.741 18.29 26.629 18.184 26.423 18.085 C 26.261 18.004 25.4 17.762 24.496 17.545 C 23.597 17.321 22.468 17.017 21.988 16.862 C 21.508 16.707 20.846 16.452 20.522 16.291 C 20.073 16.067 19.83 15.894 19.524 15.589 C 19.3 15.366 19.025 15.012 18.919 14.807 C 18.807 14.602 18.676 14.254 18.626 14.031 C 18.57 13.807 18.526 13.36 18.526 13.038 C 18.526 12.702 18.57 12.286 18.626 12.075 C 18.682 11.87 18.825 11.51 18.95 11.268 C 19.1 10.989 19.343 10.666 19.649 10.362 C 20.029 9.983 20.229 9.84 20.709 9.604 C 21.034 9.449 21.539 9.263 21.832 9.195 C 22.125 9.126 22.587 9.039 22.861 9.008 C 23.136 8.977 23.853 8.959 24.452 8.971 Z M 52.459 8.971 C 52.852 8.99 53.357 9.046 53.582 9.101 C 53.807 9.157 54.256 9.325 54.58 9.48 C 55.023 9.691 55.272 9.853 55.566 10.145 C 55.828 10.393 56.04 10.678 56.196 10.989 C 56.327 11.243 56.483 11.635 56.539 11.858 C 56.589 12.082 56.663 12.541 56.701 12.882 C 56.732 13.224 56.757 15.552 56.763 22.599 L 53.145 22.599 L 53.145 18.427 C 53.145 15.85 53.12 14.043 53.077 13.721 C 53.039 13.404 52.946 13.05 52.846 12.827 C 52.746 12.615 52.565 12.361 52.409 12.224 C 52.266 12.088 52.066 11.945 51.973 11.895 C 51.879 11.852 51.636 11.777 51.43 11.734 C 51.205 11.69 50.919 11.678 50.713 11.709 C 50.526 11.734 50.226 11.802 50.058 11.858 C 49.883 11.914 49.621 12.044 49.465 12.15 C 49.309 12.255 49.066 12.466 48.916 12.628 C 48.773 12.783 48.592 13.031 48.523 13.18 C 48.448 13.323 48.342 13.621 48.292 13.845 C 48.211 14.186 48.193 14.919 48.155 22.599 L 44.537 22.599 L 44.537 9.25 L 47.843 9.25 L 47.843 11.144 L 48.23 10.728 C 48.448 10.505 48.779 10.194 48.966 10.045 C 49.153 9.896 49.503 9.679 49.746 9.548 C 49.983 9.424 50.363 9.263 50.588 9.195 C 50.812 9.12 51.162 9.039 51.368 9.008 C 51.573 8.971 52.066 8.959 52.459 8.971 Z M 63.812 8.952 C 64.205 8.946 64.854 8.971 65.247 9.008 C 65.64 9.046 66.213 9.139 66.525 9.219 C 66.831 9.294 67.255 9.443 67.461 9.548 C 67.667 9.648 68.004 9.859 68.209 10.014 C 68.415 10.169 68.671 10.418 68.783 10.567 C 68.889 10.709 69.039 10.976 69.114 11.144 C 69.189 11.318 69.295 11.653 69.345 11.889 C 69.42 12.237 69.451 13.137 69.526 20.395 L 69.688 20.984 C 69.775 21.307 69.931 21.779 70.043 22.027 C 70.149 22.27 70.237 22.505 70.237 22.537 C 70.237 22.58 69.613 22.599 66.744 22.599 L 66.663 22.4 C 66.613 22.288 66.513 21.972 66.282 21.202 L 65.783 21.593 C 65.502 21.81 64.997 22.121 64.654 22.294 C 64.311 22.462 63.862 22.642 63.656 22.692 C 63.45 22.748 63.026 22.816 62.72 22.853 C 62.321 22.897 61.972 22.897 61.504 22.847 C 61.142 22.803 60.637 22.71 60.381 22.623 C 60.125 22.543 59.732 22.375 59.514 22.245 C 59.296 22.114 58.94 21.823 58.722 21.593 C 58.504 21.357 58.248 21.022 58.154 20.848 C 58.067 20.668 57.936 20.364 57.874 20.177 C 57.799 19.966 57.736 19.588 57.718 19.184 C 57.686 18.681 57.705 18.42 57.792 18.035 C 57.855 17.762 57.998 17.359 58.111 17.135 C 58.223 16.912 58.441 16.595 58.591 16.421 C 58.741 16.254 59.028 15.999 59.233 15.862 C 59.433 15.726 59.826 15.515 60.1 15.403 C 60.375 15.291 60.905 15.117 61.286 15.018 C 61.66 14.925 62.408 14.757 62.939 14.652 C 63.469 14.546 64.267 14.366 64.716 14.254 C 65.159 14.137 65.64 14 66.026 13.839 L 65.983 13.392 C 65.958 13.149 65.902 12.833 65.858 12.696 C 65.814 12.56 65.664 12.336 65.527 12.199 C 65.34 12.007 65.178 11.92 64.872 11.833 C 64.585 11.752 64.249 11.715 63.75 11.709 C 63.188 11.709 62.951 11.734 62.658 11.827 C 62.433 11.901 62.178 12.05 62.003 12.206 C 61.828 12.361 61.641 12.628 61.51 12.889 C 61.392 13.125 61.292 13.323 61.292 13.336 C 61.286 13.348 60.575 13.224 59.707 13.069 C 58.84 12.92 58.111 12.789 58.086 12.789 C 58.061 12.789 58.061 12.702 58.092 12.591 C 58.117 12.479 58.229 12.175 58.341 11.92 C 58.447 11.666 58.666 11.262 58.822 11.02 C 58.984 10.784 59.29 10.424 59.514 10.219 C 59.732 10.02 60.082 9.766 60.288 9.654 C 60.493 9.542 60.886 9.381 61.161 9.294 C 61.435 9.207 61.884 9.108 62.159 9.07 C 62.433 9.033 62.758 8.996 62.876 8.984 C 62.995 8.971 63.419 8.959 63.812 8.952 Z M 65.552 16.341 C 65.334 16.403 64.716 16.552 64.186 16.67 C 63.656 16.794 63.02 16.949 62.783 17.017 C 62.539 17.092 62.246 17.197 62.128 17.259 C 62.009 17.315 61.791 17.501 61.641 17.669 C 61.473 17.862 61.354 18.079 61.311 18.253 C 61.261 18.451 61.261 18.631 61.311 18.874 C 61.348 19.066 61.467 19.352 61.579 19.519 C 61.691 19.687 61.897 19.898 62.034 19.991 C 62.171 20.078 62.365 20.19 62.471 20.233 C 62.571 20.277 62.826 20.326 63.032 20.345 C 63.282 20.37 63.542 20.347 63.812 20.277 C 64.036 20.215 64.367 20.097 64.554 20.003 C 64.741 19.91 65.047 19.699 65.234 19.525 C 65.434 19.339 65.627 19.085 65.721 18.892 C 65.814 18.681 65.895 18.352 65.933 17.961 C 65.97 17.626 65.989 17.098 65.976 16.788 L 65.951 16.229 Z M 78.564 8.946 C 78.807 8.946 79.2 8.971 79.437 9.002 C 79.681 9.039 80.086 9.139 80.342 9.226 C 80.598 9.313 80.991 9.486 81.215 9.617 C 81.44 9.747 81.801 10.008 82.02 10.188 C 82.238 10.374 82.587 10.728 82.793 10.989 C 82.999 11.243 83.299 11.734 83.467 12.075 C 83.635 12.417 83.829 12.901 83.897 13.162 C 83.966 13.416 84.066 13.888 84.116 14.217 C 84.172 14.559 84.209 15.248 84.209 15.862 C 84.209 16.465 84.172 17.166 84.122 17.508 C 84.072 17.831 83.953 18.346 83.866 18.656 C 83.773 18.96 83.61 19.407 83.498 19.65 C 83.392 19.886 83.174 20.264 83.024 20.488 C 82.874 20.705 82.544 21.102 82.282 21.357 C 82.02 21.611 81.583 21.965 81.309 22.133 C 81.034 22.301 80.585 22.518 80.311 22.611 C 80.036 22.704 79.543 22.81 79.219 22.847 C 78.807 22.89 78.471 22.89 78.096 22.847 C 77.803 22.816 77.41 22.741 77.223 22.686 C 77.036 22.63 76.743 22.512 76.568 22.425 C 76.4 22.338 76.131 22.183 75.975 22.077 C 75.82 21.972 75.476 21.674 74.722 20.953 L 74.728 27.627 L 71.172 27.627 L 71.172 9.25 L 74.541 9.25 L 74.541 11.051 L 74.84 10.697 C 75.002 10.505 75.302 10.207 75.508 10.045 C 75.713 9.878 76.094 9.635 76.35 9.499 C 76.605 9.368 76.986 9.213 77.192 9.151 C 77.398 9.095 77.691 9.027 77.847 9.002 C 78.003 8.971 78.327 8.952 78.564 8.946 Z M 76.05 12.324 C 75.869 12.46 75.632 12.684 75.52 12.82 C 75.414 12.957 75.246 13.218 75.158 13.41 C 75.065 13.596 74.934 13.932 74.878 14.155 C 74.784 14.478 74.765 14.795 74.765 15.738 C 74.765 16.763 74.784 16.992 74.903 17.477 C 74.984 17.781 75.152 18.228 75.277 18.464 C 75.408 18.7 75.651 19.035 75.819 19.209 C 75.994 19.383 76.306 19.612 76.506 19.718 C 76.711 19.83 77.061 19.954 77.285 19.997 C 77.597 20.053 77.791 20.053 78.127 19.997 C 78.371 19.96 78.72 19.854 78.907 19.761 C 79.094 19.668 79.4 19.445 79.581 19.265 C 79.78 19.06 79.986 18.762 80.124 18.482 C 80.242 18.234 80.379 17.812 80.435 17.539 C 80.492 17.266 80.554 16.707 80.573 16.297 C 80.598 15.85 80.579 15.304 80.535 14.931 C 80.492 14.59 80.386 14.099 80.304 13.845 C 80.217 13.584 80.067 13.249 79.968 13.1 C 79.874 12.945 79.637 12.671 79.444 12.491 C 79.25 12.311 78.932 12.094 78.739 12.001 C 78.439 11.858 78.271 11.827 77.784 11.808 C 77.292 11.796 77.123 11.815 76.786 11.933 C 76.562 12.007 76.225 12.187 76.05 12.324 Z M 104.575 9.133 C 105.131 9.126 105.742 9.164 106.072 9.213 C 106.384 9.269 106.79 9.35 106.977 9.406 C 107.164 9.462 107.52 9.604 107.757 9.722 C 108 9.84 108.387 10.082 108.63 10.256 C 108.867 10.436 109.229 10.79 109.428 11.051 C 109.634 11.305 109.915 11.74 110.052 12.013 C 110.189 12.286 110.37 12.696 110.451 12.926 C 110.532 13.156 110.576 13.36 110.551 13.373 C 110.52 13.385 109.771 13.528 108.879 13.683 C 107.987 13.845 107.22 13.981 107.17 13.988 C 107.114 13.994 107.046 13.876 106.977 13.658 C 106.921 13.466 106.815 13.205 106.74 13.069 C 106.671 12.932 106.534 12.733 106.434 12.628 C 106.341 12.522 106.147 12.367 106.01 12.274 C 105.873 12.187 105.592 12.069 105.386 12.013 C 105.18 11.964 104.862 11.92 104.688 11.92 C 104.507 11.92 104.207 11.951 104.033 11.988 C 103.852 12.026 103.552 12.131 103.365 12.218 C 103.184 12.311 102.897 12.516 102.729 12.678 C 102.561 12.845 102.342 13.143 102.236 13.36 C 102.136 13.578 102.005 13.956 101.949 14.217 C 101.899 14.472 101.837 15.043 101.818 15.49 C 101.8 15.968 101.812 16.558 101.862 16.949 C 101.906 17.303 101.981 17.75 102.03 17.942 C 102.074 18.129 102.193 18.451 102.292 18.656 C 102.386 18.861 102.592 19.153 102.742 19.308 C 102.891 19.463 103.141 19.668 103.297 19.755 C 103.453 19.848 103.758 19.966 103.983 20.022 C 104.27 20.097 104.538 20.121 104.887 20.097 C 105.262 20.078 105.486 20.022 105.786 19.892 C 106.029 19.78 106.285 19.6 106.447 19.432 C 106.59 19.277 106.777 18.998 106.865 18.811 C 106.958 18.619 107.077 18.278 107.127 18.048 C 107.214 17.688 107.245 17.632 107.37 17.632 C 107.445 17.632 108.237 17.756 109.129 17.911 C 110.021 18.066 110.757 18.197 110.763 18.203 C 110.763 18.215 110.701 18.458 110.62 18.749 C 110.532 19.035 110.339 19.538 110.183 19.867 C 110.027 20.19 109.778 20.624 109.628 20.829 C 109.484 21.034 109.21 21.345 109.029 21.518 C 108.842 21.692 108.511 21.947 108.287 22.09 C 108.062 22.239 107.669 22.437 107.414 22.543 C 107.158 22.648 106.709 22.791 106.416 22.853 C 106.104 22.928 105.517 22.99 104.981 23.008 C 104.438 23.033 103.864 23.021 103.546 22.977 C 103.253 22.94 102.848 22.866 102.642 22.81 C 102.436 22.76 102.055 22.63 101.8 22.524 C 101.544 22.425 101.107 22.189 100.833 22.009 C 100.558 21.829 100.14 21.475 99.897 21.22 C 99.654 20.972 99.329 20.556 99.167 20.301 C 99.005 20.041 98.793 19.625 98.687 19.37 C 98.587 19.109 98.444 18.662 98.375 18.377 C 98.306 18.085 98.219 17.607 98.188 17.321 C 98.151 17.03 98.119 16.471 98.119 16.08 C 98.119 15.682 98.151 15.124 98.188 14.838 C 98.219 14.546 98.306 14.068 98.375 13.783 C 98.444 13.491 98.587 13.044 98.687 12.789 C 98.793 12.529 99.005 12.113 99.167 11.858 C 99.329 11.597 99.629 11.212 99.835 10.995 C 100.041 10.778 100.365 10.48 100.552 10.337 C 100.739 10.188 101.076 9.971 101.301 9.853 C 101.525 9.729 101.918 9.561 102.174 9.474 C 102.43 9.387 102.866 9.275 103.141 9.226 C 103.421 9.176 104.051 9.133 104.575 9.133 Z M 117.862 9.151 C 119.066 9.17 119.471 9.201 119.92 9.3 C 120.232 9.362 120.662 9.493 120.887 9.586 C 121.112 9.679 121.486 9.884 121.729 10.045 C 121.966 10.207 122.272 10.474 122.409 10.647 C 122.54 10.815 122.721 11.101 122.802 11.281 C 122.883 11.461 122.995 11.852 123.052 12.15 C 123.145 12.622 123.164 13.168 123.17 16.359 C 123.176 18.836 123.201 20.171 123.251 20.488 C 123.289 20.742 123.363 21.102 123.413 21.295 C 123.463 21.481 123.6 21.866 123.725 22.145 C 123.844 22.431 123.925 22.673 123.9 22.692 C 123.881 22.704 123.083 22.723 120.388 22.723 L 120.201 22.114 C 120.095 21.785 119.995 21.475 119.983 21.431 C 119.964 21.382 119.764 21.506 119.44 21.76 C 119.153 21.984 118.71 22.276 118.454 22.406 C 118.199 22.543 117.737 22.729 117.425 22.822 C 116.914 22.977 116.776 22.99 115.834 22.996 C 114.936 22.996 114.743 22.984 114.306 22.853 C 114.032 22.779 113.614 22.611 113.371 22.487 C 113.079 22.338 112.778 22.106 112.466 21.792 C 112.154 21.481 111.932 21.191 111.799 20.922 C 111.693 20.699 111.555 20.351 111.499 20.146 C 111.443 19.923 111.399 19.513 111.399 19.122 C 111.393 18.7 111.431 18.327 111.499 18.066 C 111.562 17.843 111.686 17.508 111.78 17.321 C 111.874 17.129 112.061 16.837 112.198 16.67 C 112.335 16.496 112.585 16.254 112.753 16.129 C 112.921 16.005 113.24 15.813 113.464 15.701 C 113.689 15.596 114.125 15.422 114.431 15.322 C 114.743 15.223 115.61 15.018 116.365 14.863 C 117.119 14.708 118.005 14.515 118.33 14.428 C 118.654 14.348 119.078 14.23 119.608 14.05 L 119.608 13.497 C 119.602 13.087 119.571 12.889 119.49 12.727 C 119.427 12.603 119.303 12.429 119.209 12.336 C 119.122 12.243 118.891 12.106 118.704 12.032 C 118.454 11.939 118.161 11.895 117.612 11.87 C 116.97 11.839 116.801 11.858 116.415 11.97 C 116.047 12.082 115.903 12.162 115.66 12.398 C 115.491 12.566 115.273 12.876 114.967 13.503 L 113.358 13.211 C 112.472 13.05 111.743 12.92 111.736 12.92 C 111.724 12.913 111.786 12.721 111.867 12.491 C 111.948 12.262 112.092 11.92 112.185 11.734 C 112.279 11.541 112.479 11.225 112.622 11.02 C 112.766 10.815 113.052 10.498 113.252 10.318 C 113.458 10.132 113.845 9.878 114.119 9.741 C 114.394 9.604 114.843 9.443 115.117 9.375 C 115.392 9.306 115.785 9.219 115.99 9.188 C 116.196 9.157 117.038 9.145 117.862 9.151 Z M 117.113 17.017 C 116.633 17.129 116.084 17.297 115.897 17.384 C 115.697 17.477 115.454 17.663 115.317 17.818 C 115.186 17.973 115.049 18.209 115.017 18.346 C 114.98 18.482 114.961 18.731 114.98 18.905 C 114.999 19.072 115.067 19.327 115.136 19.463 C 115.204 19.6 115.385 19.823 115.535 19.966 C 115.685 20.109 115.903 20.277 116.022 20.339 C 116.196 20.432 116.377 20.457 116.926 20.457 C 117.594 20.457 117.625 20.45 118.099 20.221 C 118.361 20.097 118.729 19.854 118.91 19.687 C 119.122 19.488 119.296 19.246 119.421 18.992 C 119.596 18.607 119.602 18.557 119.627 17.489 C 119.639 16.887 119.627 16.39 119.602 16.396 C 119.571 16.403 119.197 16.496 118.766 16.607 C 118.336 16.713 117.594 16.899 117.113 17.017 Z M 93.379 9.375 L 96.997 9.375 L 96.997 22.723 L 93.379 22.723 Z\" fill=\"rgb(0, 5, 253)\"></path></svg>',svgContentId:9460946161}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-43vvuv\",layoutDependency:layoutDependency,layoutId:\"cFtF2azQw\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3uq2nl\",\"data-framer-name\":\"Hamburger\",layoutDependency:layoutDependency,layoutId:\"yh3Xwpl_s\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"0px 1.3436836425447838px 0.5374734570179134px -0.625px rgba(0, 0, 0, 0.09), 0px 3.184767494094558px 1.273906997637823px -1.25px rgba(0, 0, 0, 0.09), 0px 5.80934510345105px 2.3237380413804196px -1.875px rgba(0, 0, 0, 0.08), 0px 9.658024572418071px 3.8632098289672276px -2.5px rgba(0, 0, 0, 0.08), 0px 15.596922177565284px 6.238768871026112px -3.125px rgba(0, 0, 0, 0.07), 0px 25.530614085937845px 10.212245634375137px -3.75px rgba(0, 0, 0, 0.06), 0px 43.96199341069441px 17.58479736427776px -4.375px rgba(0, 0, 0, 0.04), 0px 80px 31.999999999999993px -5px rgba(0, 0, 0, 0)\"},variants:{l6x10obfc:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.24087492070975708px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 2.288533303243457px 0.9154133212973826px -3.333333333333333px rgba(0, 0, 0, 0.07), 0px 10px 3.999999999999999px -5px rgba(0, 0, 0, 0)\"},RJESUOqfl:{backgroundColor:\"rgba(255, 255, 255, 0.2)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.24087492070975708px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 2.288533303243457px 0.9154133212973826px -3.333333333333333px rgba(0, 0, 0, 0.07), 0px 10px 3.999999999999999px -5px rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({l6x10obfc:{\"data-highlight\":true,onTap:onTapvv7flj},RJESUOqfl:{\"data-highlight\":true,onTap:onTap1bjok2q}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vw7nai\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"QdyA5yY4T\",style:{backgroundColor:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(112, 36, 186))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{RJESUOqfl:{rotate:-45}}}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ffk3r\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"jg_Jk8L24\",style:{backgroundColor:\"var(--token-441e6b96-cded-437c-bbd4-5862cce7caef, rgb(112, 36, 186))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{RJESUOqfl:{rotate:45}}}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vlxb3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"jRqnNeCuN\",svg:'<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 12H18V10H0V12ZM0 7H18V5H0V7ZM0 0V2H18V0H0Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O9HKScYjf\"},implicitPathVariables:undefined},{href:{webPageId:\"O9HKScYjf\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({l6x10obfc:{height:44,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||64)-0-64)/1*0)+0+10+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u3j0lo-container\",layoutDependency:layoutDependency,layoutId:\"nlFvVh8t5-container\",nodeId:\"nlFvVh8t5\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:resolvedLinks[0],height:\"100%\",id:\"nlFvVh8t5\",layoutId:\"nlFvVh8t5\",ofLqZhEO8:\"Let's talk\",style:{height:\"100%\"},variant:\"nSEeVzCaE\",width:\"100%\",...addPropertyOverrides({l6x10obfc:{GS3bSUXSK:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qv2cc2\",layoutDependency:layoutDependency,layoutId:\"k7kbMS19K\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2zyys\",\"data-framer-name\":\"Nav\",layoutDependency:layoutDependency,layoutId:\"MYkhlXLtR\",style:{backdropFilter:\"blur(5px)\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(5px)\"},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(40+((componentViewport?.height||80)-80-48)/2)+0+0+9,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1togux5-container\",layoutDependency:layoutDependency,layoutId:\"GO8G9Mo_q-container\",nodeId:\"GO8G9Mo_q\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavigationNavLinkSingle,{height:\"100%\",id:\"GO8G9Mo_q\",layoutId:\"GO8G9Mo_q\",variant:convertFromEnum(gGSU0bs4G,activeLocale),vr3GalQZm:\"Home\",width:\"100%\",x7kSahbL4:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"juPkkn8Ze\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(40+((componentViewport?.height||80)-80-48)/2)+0+0+9,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vtdybj-container\",layoutDependency:layoutDependency,layoutId:\"iPVgd40Ol-container\",nodeId:\"iPVgd40Ol\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavigationNavLinkSingle,{height:\"100%\",id:\"iPVgd40Ol\",layoutId:\"iPVgd40Ol\",variant:convertFromEnum1(gGSU0bs4G,activeLocale),vr3GalQZm:\"About us\",width:\"100%\",x7kSahbL4:resolvedLinks2[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HsCPlt3Ok\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(40+((componentViewport?.height||80)-80-48)/2)+0+0+9,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uceh4-container\",layoutDependency:layoutDependency,layoutId:\"vdpK8LGh5-container\",nodeId:\"vdpK8LGh5\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavigationNavLinkSingle,{height:\"100%\",id:\"vdpK8LGh5\",layoutId:\"vdpK8LGh5\",variant:convertFromEnum2(gGSU0bs4G,activeLocale),vr3GalQZm:\"Our solutions\",width:\"100%\",x7kSahbL4:resolvedLinks3[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"g7KDNl1yI\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(40+((componentViewport?.height||80)-80-48)/2)+0+0+9,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9u9ag2-container\",layoutDependency:layoutDependency,layoutId:\"EqQ8To3O9-container\",nodeId:\"EqQ8To3O9\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavigationNavLinkSingle,{height:\"100%\",id:\"EqQ8To3O9\",layoutId:\"EqQ8To3O9\",variant:convertFromEnum3(gGSU0bs4G,activeLocale),vr3GalQZm:\"Pharma partnership\",width:\"100%\",x7kSahbL4:resolvedLinks4[0]})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(40+((componentViewport?.height||80)-80-48)/2)+0+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-71xnz7-container\",layoutDependency:layoutDependency,layoutId:\"NDO6D9Vwe-container\",nodeId:\"NDO6D9Vwe\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:resolvedLinks5[0],height:\"100%\",id:\"NDO6D9Vwe\",layoutId:\"NDO6D9Vwe\",ofLqZhEO8:\"Let's talk\",variant:\"nSEeVzCaE\",width:\"100%\"})})})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2ajtz\",layoutDependency:layoutDependency,layoutId:\"cDnkZxDD3\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(Transition,{value:transition3,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-va1dz7\",\"data-framer-name\":\"Nav\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ba2jMC3RL\",onTap:onTap1l5q03k,style:{backdropFilter:\"blur(5px)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(5px)\"},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({RJESUOqfl:{y:(componentViewport?.y||0)+0+0+0+96+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bmo760-container\",\"data-framer-name\":\"Benefits\",layoutDependency:layoutDependency,layoutId:\"TRfcXey0p-container\",name:\"Benefits\",nodeId:\"TRfcXey0p\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"TRfcXey0p\",layoutId:\"TRfcXey0p\",name:\"Benefits\",Tzpt4fE6f:Tzpt4fE6f1l5q03k,UshclB94X:\"Home\",width:\"100%\",XOMIpcMb1:resolvedLinks6[0],...addPropertyOverrides({RJESUOqfl:{XOMIpcMb1:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"juPkkn8Ze\"},implicitPathVariables:undefined},{href:{webPageId:\"juPkkn8Ze\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({RJESUOqfl:{y:(componentViewport?.y||0)+0+0+0+96+0+0+0+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bipta3-container\",\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"SQEPI9F61-container\",name:\"Features\",nodeId:\"SQEPI9F61\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"SQEPI9F61\",layoutId:\"SQEPI9F61\",name:\"Features\",Tzpt4fE6f:Tzpt4fE6f1l5q03k,UshclB94X:\"About us\",width:\"100%\",XOMIpcMb1:resolvedLinks7[0],...addPropertyOverrides({RJESUOqfl:{XOMIpcMb1:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HsCPlt3Ok\"},implicitPathVariables:undefined},{href:{webPageId:\"HsCPlt3Ok\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({RJESUOqfl:{y:(componentViewport?.y||0)+0+0+0+96+0+0+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s8169e-container\",\"data-framer-name\":\"Testimonials\",layoutDependency:layoutDependency,layoutId:\"hegS5qiOc-container\",name:\"Testimonials\",nodeId:\"hegS5qiOc\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"hegS5qiOc\",layoutId:\"hegS5qiOc\",name:\"Testimonials\",Tzpt4fE6f:Tzpt4fE6f1l5q03k,UshclB94X:\"Our solutions\",width:\"100%\",XOMIpcMb1:resolvedLinks8[0],...addPropertyOverrides({RJESUOqfl:{XOMIpcMb1:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"g7KDNl1yI\"},implicitPathVariables:undefined},{href:{webPageId:\"g7KDNl1yI\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({RJESUOqfl:{y:(componentViewport?.y||0)+0+0+0+96+0+0+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jmogr7-container\",\"data-framer-name\":\"FAQs\",layoutDependency:layoutDependency,layoutId:\"I9eU29IP6-container\",name:\"FAQs\",nodeId:\"I9eU29IP6\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"I9eU29IP6\",layoutId:\"I9eU29IP6\",name:\"FAQs\",Tzpt4fE6f:Tzpt4fE6f1l5q03k,UshclB94X:\"Pharma partnerships\",width:\"100%\",XOMIpcMb1:resolvedLinks9[0],...addPropertyOverrides({RJESUOqfl:{XOMIpcMb1:resolvedLinks9[1]}},baseVariant,gestureVariant)})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined},{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,...addPropertyOverrides({RJESUOqfl:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+96+0+288}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1k8jtmb-container\",layoutDependency:layoutDependency,layoutId:\"IdowJC0vB-container\",nodeId:\"IdowJC0vB\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:resolvedLinks10[0],height:\"100%\",id:\"IdowJC0vB\",layoutId:\"IdowJC0vB\",ofLqZhEO8:\"Let's talk\",style:{height:\"100%\",width:\"100%\"},variant:\"nSEeVzCaE\",width:\"100%\",...addPropertyOverrides({RJESUOqfl:{GS3bSUXSK:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4njb0u\",layoutDependency:layoutDependency,layoutId:\"zDe95OoXb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bhsubh\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"V5KxeXMlZ\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ueiKkVaj3\"},motionChild:true,nodeId:\"SZeM86MHi\",scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ihgge framer-11uolsd\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"SZeM86MHi\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ovhg0g\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:451,intrinsicWidth:2036,layoutDependency:layoutDependency,layoutId:\"WXiMBLCnj\",svg:'<svg width=\"2036\" height=\"451\" viewBox=\"0 0 2036 451\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1994.1 59.8992L2003.2 60.4992L2014.3 88.4992L2025.5 60.4992L2035 59.9992V108.999H2026L2025.5 84.4992L2023.2 90.4992C2021.9 93.7992 2019.9 97.4992 2018.7 98.7992C2017.5 99.9992 2015.4 101.099 2014 101.099C2012.6 101.099 2010.7 100.299 2009.8 99.2992C2008.9 98.2992 2007.1 94.7992 2003.5 85.4992L2003 108.999H1994L1994.1 59.8992ZM540 148.999L544.4 162.299C546.8 169.499 558.1 203.199 569.5 236.999C580.9 270.799 590.3 298.699 590.5 298.999C590.7 299.299 599.6 272.699 610.3 239.999C621.1 207.299 632.1 173.399 640 148.999H699L698.6 151.299C698.4 152.499 679.3 205.299 656.1 268.499C632.9 331.799 611.9 388.699 609.4 394.999C607 401.299 602.8 410.299 600.2 414.999C597.2 420.399 592.9 426.099 588.5 430.599C583.1 436.099 579.5 438.599 573 441.699C568.3 443.999 561.6 446.499 558 447.399C554.4 448.299 546.6 449.399 540.7 449.999C533.6 450.699 526.2 450.699 518.7 449.999C512.5 449.499 505.2 448.599 502.5 448.099C499.7 447.499 497.4 446.899 497.4 446.799C497.3 446.599 496.2 436.799 494.9 424.799C493.6 412.899 492.7 402.899 493 402.599C493.3 402.299 496.2 402.499 499.5 403.099C502.8 403.799 510.2 404.299 516 404.299C524.5 404.299 527.6 403.799 532.5 401.999C536.8 400.399 540 398.199 544 394.099C547 390.999 551.1 385.399 553.1 381.499C555.1 377.699 557.5 372.099 560 363.999L519.5 257.299C497.2 198.499 479 150.199 479 149.799C479 149.299 492.7 148.999 540 148.999ZM295.5 0.79922C297.7 0.99922 301.7 1.89921 304.5 2.69921C307.2 3.59921 311.7 5.39922 314.5 6.79922C317.2 8.19922 322.4 12.2992 325.9 15.8992C330.3 20.2992 333.4 24.7992 335.6 29.4992C337.4 33.3992 339.4 39.4992 340 43.2992C340.5 46.9992 340.7 52.3992 340.4 55.2992C340 58.0992 339.1 62.7992 338.4 65.4992C337.6 68.2992 335.7 72.7992 334.1 75.4992C332.5 78.2992 328.3 83.3992 324.8 86.8992C320.9 90.7992 316.2 94.2992 312.5 96.0992C309.2 97.5992 304 99.3992 301 100.099C298 100.699 291.7 101.099 287 100.799C281 100.499 276.5 99.5992 265 94.9992L261.2 98.1992C259.2 99.8992 253.2 105.299 238.5 119.099L241.1 124.799C242.6 127.899 244.6 132.799 245.5 135.499C246.4 138.299 247.7 144.799 248.3 149.999C249.3 158.399 249.2 160.599 247.3 169.499C246.1 175.699 243.8 182.599 241.4 187.499C238.5 193.399 235.4 197.699 229.5 203.899C225.1 208.399 218.8 213.999 215.5 216.199C212.2 218.299 206.9 221.099 203.7 222.299C199.3 223.999 197.9 224.999 198 226.499C198 227.599 198.7 234.999 199.5 242.999C200.3 250.999 200.9 258.299 201 259.299C201 260.599 202.8 261.499 208.2 263.099C212.2 264.299 217.7 266.699 220.5 268.499C223.2 270.299 228.5 274.799 232.1 278.599C235.7 282.399 239.7 287.499 241 289.999C242.2 292.499 244.1 297.899 245.1 301.999C246.2 306.099 247 312.199 247 315.499C247 318.799 246.3 324.199 245.5 327.499C244.6 330.799 242.5 336.399 240.7 339.899C238.7 343.899 234.8 348.999 230.4 353.399C225.7 357.999 221 361.599 216.9 363.599C213.4 365.399 208.2 367.299 205.5 367.999C202.7 368.599 196.7 369.099 192 369.099C187.3 369.099 181 368.299 178 367.399C175 366.599 169.8 364.399 166.5 362.499C162.9 360.599 157.7 356.299 153.5 351.799C149.6 347.599 145.2 341.699 143.6 338.399C142 335.199 140.1 329.399 139.3 325.499C138.3 320.999 138 315.799 138.3 310.999C138.7 306.899 139.8 300.799 141 297.499C142.1 294.199 144.1 289.699 145.4 287.499C146.7 285.299 149.5 281.499 151.7 279.099C153.8 276.699 157.8 272.899 160.7 270.799C163.6 268.699 168 266.099 170.5 264.999C173 263.899 175.2 262.699 175.4 262.299C175.6 261.799 175.1 254.299 174.4 245.499C173.6 236.699 172.8 229.099 172.6 228.499C172.4 227.999 168.3 226.599 163.4 225.599C157.7 224.399 151.2 221.999 145.5 219.099C138.3 215.399 134.8 212.799 128 205.999C122.4 200.299 118.2 194.999 115.8 190.399C113.8 186.599 111.2 180.399 109.9 176.499C108.6 172.499 107.4 165.499 106.5 150.599L80 143.999L72.2 151.799C66.1 157.999 63.2 160.199 58.5 161.999C55.2 163.199 49.3 164.499 45.5 164.799C41.4 165.099 36.2 164.699 33 163.999C30 163.299 25.3 161.699 22.7 160.399C20.1 159.099 15.7 155.799 13 152.999C10.2 150.299 6.9 146.099 5.5 143.799C4.1 141.399 2.3 136.999 1.5 133.999C0.7 130.999 0 125.999 0 122.999C0 119.999 0.599999 115.299 1.3 112.499C2.1 109.799 3.5 105.699 4.6 103.499C5.6 101.399 8.7 97.0992 11.5 94.1992C14.2 91.1992 18.3 87.6992 20.5 86.4992C22.7 85.1992 26.7 83.3992 29.5 82.4992C32.2 81.5992 37.4 80.7992 41 80.7992C44.6 80.7992 49.7 81.2992 52.5 81.9992C55.2 82.5992 59.7 84.3992 62.5 85.9992C65.2 87.5992 69.8 91.3992 72.7 94.3992C75.6 97.4992 79 102.099 80.2 104.799C81.4 107.399 82.8 111.699 84.5 119.199L98 122.599C105.4 124.399 111.9 125.899 112.5 125.999C113 125.999 114.9 123.399 116.7 120.199C118.4 117.099 122.5 111.699 125.7 108.299C128.9 104.899 134.4 99.9992 138 97.4992C141.6 94.9992 147.9 91.6992 152 90.0992C156.1 88.4992 162.9 86.6992 167 85.9992C171.5 85.1992 177.5 84.9992 182 85.3992C186.1 85.7992 192.2 86.7992 195.5 87.5992C198.8 88.4992 204.4 90.4992 208 92.1992C211.6 93.8992 215.8 96.2992 217.5 97.5992C219.1 98.8992 221.2 99.9992 222 99.9992C222.8 99.9992 228.8 94.9992 247.1 77.4992L244.6 71.4992C243.2 68.1992 241.5 62.9992 240.9 59.9992C240.3 56.9992 240 51.0992 240.2 46.9992C240.6 41.6992 241.7 37.1992 244 31.4992C246.6 25.1992 248.8 21.9992 253.9 16.6992C257.5 12.8992 262.3 8.79922 264.5 7.49922C266.7 6.19922 270.5 4.39922 273 3.49922C275.5 2.59922 280.6 1.49922 284.5 1.09922C288.3 0.699215 293.3 0.59922 295.5 0.79922ZM1954 59.9992H1987V68.9992H1975V108.999H1966V68.9992H1954V59.9992ZM1497 69.9992H1555V122.999H1497V69.9992ZM1440.2 76.5992C1440.8 76.8992 1441.2 91.0992 1441 150.999H1479V196.999H1441V254.499C1441 303.399 1441.2 312.499 1442.5 315.499C1443.3 317.399 1445.4 319.899 1447.2 320.999C1449.4 322.399 1452.3 322.999 1456 322.999C1459 322.999 1465.3 321.899 1470 320.599C1474.7 319.199 1478.6 318.199 1478.7 318.299C1478.9 318.399 1479.9 326.599 1481 336.499C1482.1 346.399 1483.2 356.399 1484 362.999L1476.2 365.399C1472 366.699 1465.8 368.399 1462.5 369.099C1458.8 369.999 1450.2 370.499 1440 370.499C1424.6 370.499 1423 370.299 1415.7 367.699C1411.5 366.199 1405.6 363.499 1402.7 361.599C1399.8 359.799 1396.3 356.999 1394.8 355.399C1393.3 353.799 1391 349.999 1389.6 346.999C1388.2 343.999 1386.3 338.399 1385.3 334.499C1383.9 328.399 1383.6 319.299 1383 196.999H1357V150.999H1383L1383.5 108.699L1411.4 92.3992C1426.7 83.4992 1439.7 76.3992 1440.2 76.5992ZM392 144.499C401.6 144.699 413.6 145.599 418.7 146.499C423.8 147.299 431.7 149.199 436.2 150.699C440.8 152.299 446.7 154.799 449.5 156.499C452.2 158.199 456.7 161.299 459.3 163.499C462 165.699 466.2 170.199 468.7 173.499C471.2 176.799 475 183.099 477.1 187.499C479.2 191.899 481.2 196.899 482.2 201.499L456.3 206.299C442.1 208.899 429.9 211.099 429.2 210.999C428.5 210.999 426.9 208.599 425.6 205.799C424.4 202.899 422 198.999 420.4 197.099C418.8 195.299 415.5 192.599 413 191.199C410.5 189.699 406 187.999 403 187.299C400 186.599 392.5 185.999 386.5 185.999C380.4 185.999 372.3 186.699 368.5 187.499C364.6 188.399 359.7 190.099 357.5 191.399C355.1 192.799 352.8 195.199 351.7 197.399C350.8 199.399 350 201.899 350 202.999C350 204.099 350.7 206.399 351.5 207.999C352.3 209.699 354.2 211.899 355.7 212.899C357.2 213.999 362.5 216.199 367.5 217.899C372.4 219.499 387.7 223.699 401.5 227.099C415.2 230.399 431.2 234.799 437 236.699C442.8 238.599 451.7 242.299 456.9 244.899C463.5 248.099 468.4 251.499 473.2 255.999C478 260.499 481.2 264.499 483.4 268.999C485.2 272.599 487.2 278.199 487.9 281.499C488.8 285.299 489.1 291.899 488.8 299.499C488.4 309.799 487.9 312.599 485.4 318.999C483.8 323.099 480.4 329.399 477.9 332.999C475.3 336.599 470.2 342.299 466.4 345.799C462.3 349.599 456.1 353.899 451 356.499C446.3 358.899 439.6 361.699 436 362.799C432.4 363.899 425 365.599 419.5 366.499C412.7 367.699 404.1 368.299 392.5 368.299C383.1 368.299 371.9 367.799 367.5 367.099C363.1 366.399 355.9 364.999 351.5 363.799C347.1 362.699 339.7 359.999 335 357.799C330.3 355.599 323.8 351.899 320.5 349.599C317.2 347.199 311.8 342.399 308.5 338.899C305.1 335.399 300.6 329.399 298.3 325.499C296.1 321.699 292.9 314.999 291.3 310.799C289.8 306.499 288.9 302.699 289.3 302.299C289.8 301.799 302.9 299.599 318.3 297.299C333.8 294.999 346.6 292.999 346.7 292.999C346.9 292.999 347.2 294.499 347.5 296.299C347.7 297.999 349.3 302.199 350.9 305.499C352.6 308.899 355.9 313.399 358.7 315.999C361.3 318.399 365.7 321.399 368.5 322.599C371.2 323.799 376.9 325.399 381 326.099C385.5 326.799 392.1 326.999 397.5 326.699C402.4 326.299 409.4 325.199 413 324.099C416.6 322.999 421.4 320.699 423.7 319.099C426.2 317.299 428.8 314.199 430 311.799C431.1 309.399 431.9 306.199 431.9 304.499C432 302.899 431.1 299.699 430.1 297.499C428.7 294.599 426.9 292.899 423.6 291.299C421 289.999 407.2 286.099 392.7 282.599C378.3 278.999 360.2 274.099 352.5 271.599C344.8 269.099 334.2 264.999 329 262.399C321.8 258.799 317.9 255.999 313 251.099C309.4 247.499 305 241.799 303.3 238.499C301.5 235.199 299.4 229.599 298.6 225.999C297.7 222.399 297 215.199 297 209.999C297 204.599 297.7 197.899 298.6 194.499C299.5 191.199 301.8 185.399 303.8 181.499C306.2 176.999 310.1 171.799 315 166.899C321.1 160.799 324.3 158.499 332 154.699C337.2 152.199 345.3 149.199 350 148.099C354.7 146.999 362.1 145.599 366.5 145.099C370.9 144.599 382.4 144.299 392 144.499ZM841 144.499C847.3 144.799 855.4 145.699 859 146.599C862.6 147.499 869.8 150.199 875 152.699C882.1 156.099 886.1 158.699 890.8 163.399C895 167.399 898.4 171.999 900.9 176.999C903 181.099 905.5 187.399 906.4 190.999C907.2 194.599 908.4 201.999 909 207.499C909.5 212.999 909.9 250.499 910 363.999H852V296.799C852 255.299 851.6 226.199 850.9 220.999C850.3 215.899 848.8 210.199 847.2 206.599C845.6 203.199 842.7 199.099 840.2 196.899C837.9 194.699 834.7 192.399 833.2 191.599C831.7 190.899 827.8 189.699 824.5 188.999C820.9 188.299 816.3 188.099 813 188.599C810 188.999 805.2 190.099 802.5 190.999C799.7 191.899 795.5 193.999 793 195.699C790.5 197.399 786.6 200.799 784.2 203.399C781.9 205.899 779 209.899 777.9 212.299C776.7 214.599 775 219.399 774.2 222.999C772.9 228.499 772.6 240.299 772 363.999H714V148.999H767V179.499L773.2 172.799C776.7 169.199 782 164.199 785 161.799C788 159.399 793.6 155.899 797.5 153.799C801.3 151.799 807.4 149.199 811 148.099C814.6 146.899 820.2 145.599 823.5 145.099C826.8 144.499 834.7 144.299 841 144.499ZM1023 144.199C1029.3 144.099 1039.7 144.499 1046 145.099C1052.3 145.699 1061.5 147.199 1066.5 148.499C1071.4 149.699 1078.2 152.099 1081.5 153.799C1084.8 155.399 1090.2 158.799 1093.5 161.299C1096.8 163.799 1100.9 167.799 1102.7 170.199C1104.4 172.499 1106.8 176.799 1108 179.499C1109.2 182.299 1110.9 187.699 1111.7 191.499C1112.9 197.099 1113.4 211.599 1114.6 328.499L1117.2 337.999C1118.6 343.199 1121.1 350.799 1122.9 354.799C1124.6 358.699 1126 362.499 1126 362.999C1126 363.699 1116 363.999 1070 363.999L1068.7 360.799C1067.9 358.999 1066.3 353.899 1062.6 341.499L1054.6 347.799C1050.1 351.299 1042 356.299 1036.5 359.099C1031 361.799 1023.8 364.699 1020.5 365.499C1017.2 366.399 1010.4 367.499 1005.5 368.099C999.1 368.799 993.5 368.799 986 367.999C980.2 367.299 972.1 365.799 968 364.399C963.9 363.099 957.6 360.399 954.1 358.299C950.6 356.199 944.9 351.499 941.4 347.799C937.9 343.999 933.8 338.599 932.3 335.799C930.9 332.899 928.8 327.999 927.8 324.999C926.6 321.599 925.6 315.499 925.3 308.999C924.8 300.899 925.1 296.699 926.5 290.499C927.5 286.099 929.8 279.599 931.6 275.999C933.4 272.399 936.9 267.299 939.3 264.499C941.7 261.799 946.3 257.699 949.6 255.499C952.8 253.299 959.1 249.899 963.5 248.099C967.9 246.299 976.4 243.499 982.5 241.899C988.5 240.399 1000.5 237.699 1009 235.999C1017.5 234.299 1030.3 231.399 1037.5 229.599C1044.6 227.699 1052.3 225.499 1058.5 222.899L1057.8 215.699C1057.4 211.799 1056.5 206.699 1055.8 204.499C1055.1 202.299 1052.7 198.699 1050.5 196.499C1047.5 193.399 1044.9 191.999 1040 190.599C1035.4 189.299 1030 188.699 1022 188.599C1013 188.599 1009.2 188.999 1004.5 190.499C1000.9 191.699 996.8 194.099 994 196.599C991.2 199.099 988.2 203.399 986.1 207.599C984.2 211.399 982.6 214.599 982.6 214.799C982.5 214.999 971.1 212.999 957.2 210.499C943.3 208.099 931.6 205.999 931.2 205.999C930.8 205.999 930.8 204.599 931.3 202.799C931.7 200.999 933.5 196.099 935.3 191.999C937 187.899 940.5 181.399 943 177.499C945.6 173.699 950.5 167.899 954.1 164.599C957.6 161.399 963.2 157.299 966.5 155.499C969.8 153.699 976.1 151.099 980.5 149.699C984.9 148.299 992.1 146.699 996.5 146.099C1000.9 145.499 1006.1 144.899 1008 144.699C1009.9 144.499 1016.7 144.299 1023 144.199ZM1050.9 263.199C1047.4 264.199 1037.5 266.599 1029 268.499C1020.5 270.499 1010.3 272.999 1006.5 274.099C1002.6 275.299 997.9 276.999 996 277.999C994.1 278.899 990.6 281.899 988.2 284.599C985.5 287.699 983.6 291.199 982.9 293.999C982.1 297.199 982.1 300.099 982.9 303.999C983.5 307.099 985.4 311.699 987.2 314.399C989 317.099 992.3 320.499 994.5 321.999C996.7 323.399 999.8 325.199 1001.5 325.899C1003.1 326.599 1007.2 327.399 1010.5 327.699C1014.5 328.099 1018.67 327.733 1023 326.599C1026.6 325.599 1031.9 323.699 1034.9 322.199C1037.9 320.699 1042.8 317.299 1045.8 314.499C1049 311.499 1052.1 307.399 1053.6 304.299C1055.1 300.899 1056.4 295.599 1057 289.299C1057.6 283.899 1057.9 275.399 1057.7 270.399L1057.3 261.399L1050.9 263.199ZM1259.5 144.099C1263.4 144.099 1269.7 144.499 1273.5 144.999C1277.4 145.599 1283.9 147.199 1288 148.599C1292.1 149.999 1298.4 152.799 1302 154.899C1305.6 156.999 1311.4 161.199 1314.9 164.099C1318.4 167.099 1324 172.799 1327.3 176.999C1330.6 181.099 1335.4 188.999 1338.1 194.499C1340.8 199.999 1343.9 207.799 1345 211.999C1346.1 216.099 1347.7 223.699 1348.5 228.999C1349.4 234.499 1350 245.599 1350 255.499C1350 265.199 1349.4 276.499 1348.6 281.999C1347.8 287.199 1345.9 295.499 1344.5 300.499C1343 305.399 1340.4 312.599 1338.6 316.499C1336.9 320.299 1333.4 326.399 1331 329.999C1328.6 333.499 1323.3 339.899 1319.1 343.999C1314.9 348.099 1307.9 353.799 1303.5 356.499C1299.1 359.199 1291.9 362.699 1287.5 364.199C1283.1 365.699 1275.2 367.399 1270 367.999C1263.4 368.699 1258 368.699 1252 367.999C1247.3 367.499 1241 366.299 1238 365.399C1235 364.499 1230.3 362.599 1227.5 361.199C1224.8 359.799 1220.5 357.299 1218 355.599C1215.5 353.899 1210 349.099 1197.9 337.499L1198 444.999H1141V148.999H1195V177.999L1199.8 172.299C1202.4 169.199 1207.2 164.399 1210.5 161.799C1213.8 159.099 1219.9 155.199 1224 152.999C1228.1 150.899 1234.2 148.399 1237.5 147.399C1240.8 146.499 1245.5 145.399 1248 144.999C1250.5 144.499 1255.7 144.199 1259.5 144.099ZM1219.2 198.499C1216.3 200.699 1212.5 204.299 1210.7 206.499C1209 208.699 1206.3 212.899 1204.9 215.999C1203.4 218.999 1201.3 224.399 1200.4 227.999C1198.9 233.199 1198.6 238.299 1198.6 253.499C1198.6 269.999 1198.9 273.699 1200.8 281.499C1202.1 286.399 1204.8 293.599 1206.8 297.399C1208.9 301.199 1212.8 306.599 1215.5 309.399C1218.3 312.199 1223.3 315.899 1226.5 317.599C1229.8 319.399 1235.4 321.399 1239 322.099C1244 322.999 1247.1 322.999 1252.5 322.099C1256.4 321.499 1262 319.799 1265 318.299C1268 316.799 1272.9 313.199 1275.8 310.299C1279 306.999 1282.3 302.199 1284.5 297.699C1286.4 293.699 1288.6 286.899 1289.5 282.499C1290.4 278.099 1291.4 269.099 1291.7 262.499C1292.1 255.299 1291.8 246.499 1291.1 240.499C1290.4 234.999 1288.7 227.099 1287.4 222.999C1286 218.799 1283.6 213.399 1282 210.999C1280.5 208.499 1276.7 204.099 1273.6 201.199C1270.5 198.299 1265.4 194.799 1262.3 193.299C1257.5 190.999 1254.8 190.499 1247 190.199C1239.1 189.999 1236.4 190.299 1231 192.199C1227.4 193.399 1222 196.299 1219.2 198.499ZM1676.5 147.099C1685.4 146.999 1695.2 147.599 1700.5 148.399C1705.5 149.299 1712 150.599 1715 151.499C1718 152.399 1723.7 154.699 1727.5 156.599C1731.4 158.499 1737.6 162.399 1741.5 165.199C1745.3 168.099 1751.1 173.799 1754.3 177.999C1757.6 182.099 1762.1 189.099 1764.3 193.499C1766.5 197.899 1769.4 204.499 1770.7 208.199C1772 211.899 1772.7 215.199 1772.3 215.399C1771.8 215.599 1759.8 217.899 1745.5 220.399C1731.2 222.999 1718.9 225.199 1718.1 225.299C1717.2 225.399 1716.1 223.499 1715 219.999C1714.1 216.899 1712.4 212.699 1711.2 210.499C1710.1 208.299 1707.9 205.099 1706.3 203.399C1704.8 201.699 1701.7 199.199 1699.5 197.699C1697.3 196.299 1692.8 194.399 1689.5 193.499C1686.2 192.699 1681.1 191.999 1678.3 191.999C1675.4 191.999 1670.6 192.499 1667.8 193.099C1664.9 193.699 1660.1 195.399 1657.1 196.799C1654.2 198.299 1649.6 201.599 1646.9 204.199C1644.2 206.899 1640.7 211.699 1639 215.199C1637.4 218.699 1635.3 224.799 1634.4 228.999C1633.6 233.099 1632.6 242.299 1632.3 249.499C1632 257.199 1632.2 266.699 1633 272.999C1633.7 278.699 1634.9 285.899 1635.7 288.999C1636.4 291.999 1638.3 297.199 1639.9 300.499C1641.4 303.799 1644.7 308.499 1647.1 310.999C1649.5 313.499 1653.5 316.799 1656 318.199C1658.5 319.699 1663.4 321.599 1667 322.499C1671.6 323.699 1675.9 324.099 1681.5 323.699C1687.5 323.399 1691.1 322.499 1695.9 320.399C1699.8 318.599 1703.9 315.699 1706.5 312.999C1708.8 310.499 1711.8 305.999 1713.2 302.999C1714.7 299.899 1716.6 294.399 1717.4 290.699C1718.8 284.899 1719.3 283.999 1721.3 283.999C1722.5 283.999 1735.2 285.999 1749.5 288.499C1763.8 290.999 1775.6 293.099 1775.7 293.199C1775.7 293.399 1774.7 297.299 1773.4 301.999C1772 306.599 1768.9 314.699 1766.4 319.999C1763.9 325.199 1759.9 332.199 1757.5 335.499C1755.2 338.799 1750.8 343.799 1747.9 346.599C1744.9 349.399 1739.6 353.499 1736 355.799C1732.4 358.199 1726.1 361.399 1722 363.099C1717.9 364.799 1710.7 367.099 1706 368.099C1701 369.299 1691.6 370.299 1683 370.599C1674.3 370.999 1665.1 370.799 1660 370.099C1655.3 369.499 1648.8 368.299 1645.5 367.399C1642.2 366.599 1636.1 364.499 1632 362.799C1627.9 361.199 1620.9 357.399 1616.5 354.499C1612.1 351.599 1605.4 345.899 1601.5 341.799C1597.6 337.799 1592.4 331.099 1589.8 326.999C1587.2 322.799 1583.8 316.099 1582.1 311.999C1580.5 307.799 1578.2 300.599 1577.1 295.999C1576 291.299 1574.6 283.599 1574.1 278.999C1573.5 274.299 1573 265.299 1573 258.999C1573 252.599 1573.5 243.599 1574.1 238.999C1574.6 234.299 1576 226.599 1577.1 221.999C1578.2 217.299 1580.5 210.099 1582.1 205.999C1583.8 201.799 1587.2 195.099 1589.8 190.999C1592.4 186.799 1597.2 180.599 1600.5 177.099C1603.8 173.599 1609 168.799 1612 166.499C1615 164.099 1620.4 160.599 1624 158.699C1627.6 156.699 1633.9 153.999 1638 152.599C1642.1 151.199 1649.1 149.399 1653.5 148.599C1658 147.799 1668.1 147.099 1676.5 147.099ZM1889.5 147.399C1908.8 147.699 1915.3 148.199 1922.5 149.799C1927.5 150.799 1934.4 152.899 1938 154.399C1941.6 155.899 1947.6 159.199 1951.5 161.799C1955.3 164.399 1960.2 168.699 1962.4 171.499C1964.5 174.199 1967.4 178.799 1968.7 181.699C1970 184.599 1971.8 190.899 1972.7 195.699C1974.2 203.299 1974.5 212.099 1974.6 263.499C1974.7 303.399 1975.1 324.899 1975.9 329.999C1976.5 334.099 1977.7 339.899 1978.5 342.999C1979.3 345.999 1981.5 352.199 1983.5 356.699C1985.4 361.299 1986.7 365.199 1986.3 365.499C1986 365.699 1973.2 365.999 1930 365.999L1927 356.199C1925.3 350.899 1923.7 345.899 1923.5 345.199C1923.2 344.399 1920 346.399 1914.8 350.499C1910.2 354.099 1903.1 358.799 1899 360.899C1894.9 363.099 1887.5 366.099 1882.5 367.599C1874.3 370.099 1872.1 370.299 1857 370.399C1842.6 370.399 1839.5 370.199 1832.5 368.099C1828.1 366.899 1821.4 364.199 1817.5 362.199C1812.83 359.799 1808 356.066 1803 350.999C1798 345.999 1794.43 341.333 1792.3 336.999C1790.6 333.399 1788.4 327.799 1787.5 324.499C1786.6 320.899 1785.9 314.299 1785.9 307.999C1785.8 301.199 1786.4 295.199 1787.5 290.999C1788.5 287.399 1790.5 281.999 1792 278.999C1793.5 275.899 1796.5 271.199 1798.7 268.499C1800.9 265.699 1804.9 261.799 1807.6 259.799C1810.3 257.799 1815.4 254.699 1819 252.899C1822.6 251.199 1829.6 248.399 1834.5 246.799C1839.5 245.199 1853.4 241.899 1865.5 239.399C1877.6 236.899 1891.8 233.799 1897 232.399C1902.2 231.099 1909 229.199 1917.5 226.299V217.399C1917.4 210.799 1916.9 207.599 1915.6 204.999C1914.6 202.999 1912.6 200.199 1911.1 198.699C1909.7 197.199 1906 194.999 1903 193.799C1899 192.299 1894.3 191.599 1885.5 191.199C1875.2 190.699 1872.5 190.999 1866.3 192.799C1860.4 194.599 1858.1 195.899 1854.2 199.699C1851.5 202.399 1848 207.399 1843.1 217.499L1817.3 212.799C1803.1 210.199 1791.4 208.099 1791.3 208.099C1791.1 207.999 1792.1 204.899 1793.4 201.199C1794.7 197.499 1797 191.999 1798.5 188.999C1800 185.899 1803.2 180.799 1805.5 177.499C1807.8 174.199 1812.4 169.099 1815.6 166.199C1818.9 163.199 1825.1 159.099 1829.5 156.899C1833.9 154.699 1841.1 152.099 1845.5 150.999C1849.9 149.899 1856.2 148.499 1859.5 147.999C1862.8 147.499 1876.3 147.299 1889.5 147.399ZM1877.5 274.099C1869.8 275.899 1861 278.599 1858 279.999C1854.8 281.499 1850.9 284.499 1848.7 286.999C1846.6 289.499 1844.4 293.299 1843.9 295.499C1843.3 297.699 1843 301.699 1843.3 304.499C1843.6 307.199 1844.7 311.299 1845.8 313.499C1846.9 315.699 1849.8 319.299 1852.2 321.599C1854.6 323.899 1858.1 326.599 1860 327.599C1862.8 329.099 1865.7 329.499 1874.5 329.499C1885.2 329.499 1885.7 329.399 1893.3 325.699C1897.5 323.699 1903.4 319.799 1906.3 317.099C1909.7 313.899 1912.5 309.999 1914.5 305.899C1917.3 299.699 1917.4 298.899 1917.8 281.699C1918 271.999 1917.8 263.999 1917.4 264.099C1916.9 264.199 1910.9 265.699 1904 267.499C1897.1 269.199 1885.2 272.199 1877.5 274.099ZM1497 150.999H1555V365.999H1497V150.999Z\" fill=\"#0000FD\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dlj9kn\",layoutDependency:layoutDependency,layoutId:\"xDxMf4Uin\",children:[isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qxii8h\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"V0n3k6PEC\",onTap:onTapieiks8,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.24087492070975708px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 2.288533303243457px 0.9154133212973826px -3.333333333333333px rgba(0, 0, 0, 0.07), 0px 10px 3.999999999999999px -5px rgba(0, 0, 0, 0)\"},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w3dd89\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"ey30AwRVA\",svg:'<svg width=\"18\" height=\"12\" viewBox=\"0 0 18 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 12H18V10H0V12ZM0 7H18V5H0V7ZM0 0V2H18V0H0Z\" fill=\"#323232\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7rzout\",\"data-framer-name\":\"Hamburger\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aGXSCOslT\",onTap:onTap1l5q03k,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 0.6021873017743928px 0.24087492070975708px -1.6666666666666665px rgba(0, 0, 0, 0.08), 0px 2.288533303243457px 0.9154133212973826px -3.333333333333333px rgba(0, 0, 0, 0.07), 0px 10px 3.999999999999999px -5px rgba(0, 0, 0, 0)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p2ai0a\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"Ddal1EfFu\",style:{backgroundColor:\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(43, 41, 41))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:-45}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vyhcq9\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"nEEDIyGQA\",style:{backgroundColor:\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(43, 41, 41))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:45}})]}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O9HKScYjf\"},implicitPathVariables:undefined},{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({uI65Kuiar:{height:40,y:(componentViewport?.y||0)+16+0+0+0+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1739lst-container\",layoutDependency:layoutDependency,layoutId:\"vIBthI2Kn-container\",nodeId:\"vIBthI2Kn\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:resolvedLinks11[0],height:\"100%\",id:\"vIBthI2Kn\",layoutId:\"vIBthI2Kn\",ofLqZhEO8:\"Let's talk\",variant:\"nSEeVzCaE\",width:\"100%\",...addPropertyOverrides({uI65Kuiar:{GS3bSUXSK:resolvedLinks11[1],style:{height:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined},{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined},{href:{webPageId:\"G0P2KuQu4\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({BEn4D_bL2:{width:`min(${componentViewport?.width||\"100vw\"} - 28px, 1200px)`,y:(componentViewport?.y||0)+16+0+0+412},uI65Kuiar:{width:`min(${componentViewport?.width||\"100vw\"} - 28px, 1200px)`,y:(componentViewport?.y||0)+16+0+0+84}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gftckt-container\",layoutDependency:layoutDependency,layoutId:\"enaIhVT07-container\",nodeId:\"enaIhVT07\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:resolvedLinks12[0],height:\"100%\",id:\"enaIhVT07\",layoutId:\"enaIhVT07\",ofLqZhEO8:\"Let's talk\",style:{width:\"100%\"},variant:\"nSEeVzCaE\",width:\"100%\",...addPropertyOverrides({BEn4D_bL2:{GS3bSUXSK:resolvedLinks12[2]},uI65Kuiar:{GS3bSUXSK:resolvedLinks12[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({BEn4D_bL2:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m0pt6h\",\"data-framer-name\":\"Nav\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gbFGZJOaV\",onTap:onTap1l5q03k,style:{backdropFilter:\"blur(5px)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(5px)\"},variants:{BEn4D_bL2:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({BEn4D_bL2:{onTap:onTap5kl2y3}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({BEn4D_bL2:{y:(componentViewport?.y||0)+16+0+0+84+20+0},uI65Kuiar:{y:(componentViewport?.y||0)+16+0+0+172+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nuaa6c-container\",\"data-framer-name\":\"Home\",layoutDependency:layoutDependency,layoutId:\"Fev2cUMQG-container\",name:\"Home\",nodeId:\"Fev2cUMQG\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"Fev2cUMQG\",layoutId:\"Fev2cUMQG\",name:\"Home\",UshclB94X:\"Benefits\",width:\"100%\",XOMIpcMb1:resolvedLinks13[0],...addPropertyOverrides({BEn4D_bL2:{Tzpt4fE6f:Tzpt4fE6f5kl2y3,UshclB94X:\"Home\",XOMIpcMb1:resolvedLinks13[2]},uI65Kuiar:{UshclB94X:\"Home\",XOMIpcMb1:resolvedLinks13[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"juPkkn8Ze\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({BEn4D_bL2:{y:(componentViewport?.y||0)+16+0+0+84+20+70},uI65Kuiar:{y:(componentViewport?.y||0)+16+0+0+172+0+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-az7i72-container\",\"data-framer-name\":\"About us\",layoutDependency:layoutDependency,layoutId:\"tJ_u3_sF7-container\",name:\"About us\",nodeId:\"tJ_u3_sF7\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"tJ_u3_sF7\",layoutId:\"tJ_u3_sF7\",name:\"About us\",UshclB94X:\"Features\",width:\"100%\",XOMIpcMb1:resolvedLinks14[0],...addPropertyOverrides({BEn4D_bL2:{Tzpt4fE6f:Tzpt4fE6f5kl2y3,UshclB94X:\"About us\",XOMIpcMb1:resolvedLinks14[2]},uI65Kuiar:{UshclB94X:\"About us\",XOMIpcMb1:resolvedLinks14[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"HsCPlt3Ok\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({BEn4D_bL2:{y:(componentViewport?.y||0)+16+0+0+84+20+140},uI65Kuiar:{y:(componentViewport?.y||0)+16+0+0+172+0+140}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4g3i5l-container\",\"data-framer-name\":\"Our solutions\",layoutDependency:layoutDependency,layoutId:\"NH6BHIs3J-container\",name:\"Our solutions\",nodeId:\"NH6BHIs3J\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"NH6BHIs3J\",layoutId:\"NH6BHIs3J\",name:\"Our solutions\",UshclB94X:\"Testimonials\",width:\"100%\",XOMIpcMb1:resolvedLinks15[0],...addPropertyOverrides({BEn4D_bL2:{Tzpt4fE6f:Tzpt4fE6f5kl2y3,UshclB94X:\"Our solutions\",XOMIpcMb1:resolvedLinks15[2]},uI65Kuiar:{UshclB94X:\"Our solutions\",XOMIpcMb1:resolvedLinks15[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":pnXnRv6H0\",webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{hash:\":pnXnRv6H0\",webPageId:\"ueiKkVaj3\"},implicitPathVariables:undefined},{href:{webPageId:\"g7KDNl1yI\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,...addPropertyOverrides({BEn4D_bL2:{y:(componentViewport?.y||0)+16+0+0+84+20+210},uI65Kuiar:{y:(componentViewport?.y||0)+16+0+0+172+0+210}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e0oj4-container\",\"data-framer-name\":\"Pharma partnership\",layoutDependency:layoutDependency,layoutId:\"v0KYcAyp8-container\",name:\"Pharma partnership\",nodeId:\"v0KYcAyp8\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(NavItem2,{height:\"100%\",id:\"v0KYcAyp8\",layoutId:\"v0KYcAyp8\",name:\"Pharma partnership\",UshclB94X:\"FAQs\",width:\"100%\",XOMIpcMb1:resolvedLinks16[0],...addPropertyOverrides({BEn4D_bL2:{Tzpt4fE6f:Tzpt4fE6f5kl2y3,UshclB94X:\"Pharma partnership\",XOMIpcMb1:resolvedLinks16[2]},uI65Kuiar:{UshclB94X:\"Pharma partnership\",XOMIpcMb1:resolvedLinks16[1]}},baseVariant,gestureVariant)})})})})]})}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O9HKScYjf\"},implicitPathVariables:undefined},{href:{webPageId:\"O9HKScYjf\"},implicitPathVariables:undefined}],children:resolvedLinks17=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,...addPropertyOverrides({uI65Kuiar:{width:`min(${componentViewport?.width||\"100vw\"} - 28px, 1200px)`,y:(componentViewport?.y||0)+16+0+0+460}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ua9u-container\",layoutDependency:layoutDependency,layoutId:\"l9N8P8Zy1-container\",nodeId:\"l9N8P8Zy1\",rendersWithMotion:true,scopeId:\"LDekglqvl\",children:/*#__PURE__*/_jsx(ButtonRunningStroke,{GS3bSUXSK:resolvedLinks17[0],height:\"100%\",id:\"l9N8P8Zy1\",layoutId:\"l9N8P8Zy1\",ofLqZhEO8:\"Let's talk\",variant:\"nSEeVzCaE\",width:\"100%\",...addPropertyOverrides({uI65Kuiar:{GS3bSUXSK:resolvedLinks17[1],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E8d83.framer-11uolsd, .framer-E8d83 .framer-11uolsd { display: block; }\",\".framer-E8d83.framer-195ki3b { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 78px; justify-content: center; overflow: visible; padding: 40px 20px 40px 20px; position: relative; width: 1200px; }\",\".framer-E8d83 .framer-aabujr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E8d83 .framer-1a8qe5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E8d83 .framer-wlfjwy, .framer-E8d83 .framer-ihgge { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-E8d83 .framer-1mv00s1 { flex: none; height: 34px; position: relative; width: 153px; }\",\".framer-E8d83 .framer-43vvuv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 44px; min-width: 184px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E8d83 .framer-3uq2nl { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-E8d83 .framer-vw7nai { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83 .framer-17ffk3r { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83 .framer-vlxb3, .framer-E8d83 .framer-1w3dd89 { flex: none; height: 14px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 21px; }\",\".framer-E8d83 .framer-1u3j0lo-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-E8d83 .framer-qv2cc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E8d83 .framer-t2zyys { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-end; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83 .framer-1togux5-container, .framer-E8d83 .framer-vtdybj-container, .framer-E8d83 .framer-1uceh4-container, .framer-E8d83 .framer-9u9ag2-container, .framer-E8d83 .framer-71xnz7-container, .framer-E8d83 .framer-1bmo760-container, .framer-E8d83 .framer-1bipta3-container, .framer-E8d83 .framer-s8169e-container, .framer-E8d83 .framer-1jmogr7-container, .framer-E8d83 .framer-1739lst-container, .framer-E8d83 .framer-nuaa6c-container, .framer-E8d83 .framer-az7i72-container, .framer-E8d83 .framer-4g3i5l-container, .framer-E8d83 .framer-1e0oj4-container, .framer-E8d83 .framer-ua9u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-E8d83 .framer-t2ajtz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 1px; }\",\".framer-E8d83 .framer-va1dz7, .framer-E8d83 .framer-1m0pt6h { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 2; }\",\".framer-E8d83 .framer-1k8jtmb-container { flex: none; height: 44px; position: relative; width: 100%; }\",\".framer-E8d83 .framer-4njb0u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E8d83 .framer-1bhsubh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-E8d83 .framer-ovhg0g { aspect-ratio: 4.5144124168514415 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 153px; }\",\".framer-E8d83 .framer-dlj9kn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E8d83 .framer-qxii8h, .framer-E8d83 .framer-7rzout { cursor: pointer; flex: none; height: 44px; overflow: hidden; position: relative; width: 44px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83 .framer-p2ai0a, .framer-E8d83 .framer-vyhcq9 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83 .framer-gftckt-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-E8d83.framer-v-16gbl9e.framer-195ki3b { flex-direction: column; gap: 0px; height: 64px; justify-content: flex-start; overflow: hidden; padding: 16px 12px 60px 16px; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83.framer-v-16gbl9e .framer-4njb0u, .framer-E8d83.framer-v-rabd0x .framer-4njb0u { flex: none; order: 1; width: 100%; }\",\".framer-E8d83.framer-v-16gbl9e .framer-ovhg0g { height: var(--framer-aspect-ratio-supported, 26px); width: 118px; }\",\".framer-E8d83.framer-v-16gbl9e .framer-qxii8h { order: 1; }\",\".framer-E8d83.framer-v-16gbl9e .framer-1739lst-container { height: 40px; order: 0; }\",\".framer-E8d83.framer-v-16gbl9e .framer-ua9u-container { width: 100%; }\",\".framer-E8d83.framer-v-8wmte5.framer-195ki3b { flex-direction: column; gap: unset; height: min-content; justify-content: space-between; padding: 0px; width: 810px; }\",\".framer-E8d83.framer-v-8wmte5 .framer-aabujr { flex: none; order: 0; width: 100%; }\",\".framer-E8d83.framer-v-8wmte5 .framer-1a8qe5x { flex: 1 0 0px; gap: unset; height: 64px; justify-content: space-between; padding: 0px 20px 0px 20px; width: 1px; z-index: 2; }\",\".framer-E8d83.framer-v-8wmte5 .framer-wlfjwy, .framer-E8d83.framer-v-8wmte5 .framer-1u3j0lo-container, .framer-E8d83.framer-v-1gxdvdk .framer-wlfjwy, .framer-E8d83.framer-v-rabd0x .framer-1bhsubh { order: 0; }\",\".framer-E8d83.framer-v-8wmte5 .framer-1mv00s1 { height: 28px; width: 123px; }\",\".framer-E8d83.framer-v-8wmte5 .framer-43vvuv { gap: 16px; min-height: unset; min-width: unset; order: 1; }\",\".framer-E8d83.framer-v-8wmte5 .framer-3uq2nl { cursor: pointer; height: 44px; order: 1; width: 44px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83.framer-v-1gxdvdk.framer-195ki3b { flex-direction: column; gap: 0px; height: 900px; justify-content: flex-start; overflow: auto; overscroll-behavior: contain; padding: 0px 0px 60px 0px; width: 810px; }\",\".framer-E8d83.framer-v-1gxdvdk .framer-aabujr { flex: none; flex-direction: column; gap: 32px; justify-content: flex-start; order: 0; width: 100%; }\",\".framer-E8d83.framer-v-1gxdvdk .framer-1a8qe5x { gap: unset; height: 64px; justify-content: space-between; order: 0; padding: 0px 28px 0px 32px; width: 100%; z-index: 2; }\",\".framer-E8d83.framer-v-1gxdvdk .framer-1mv00s1 { height: 28px; width: 127px; }\",\".framer-E8d83.framer-v-1gxdvdk .framer-43vvuv { min-height: unset; min-width: unset; order: 1; }\",\".framer-E8d83.framer-v-1gxdvdk .framer-3uq2nl { cursor: pointer; height: 44px; width: 44px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83.framer-v-1gxdvdk .framer-vw7nai, .framer-E8d83.framer-v-1gxdvdk .framer-17ffk3r { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-E8d83.framer-v-1gxdvdk .framer-t2ajtz { flex: none; order: 2; width: 100%; }\",\".framer-E8d83.framer-v-rabd0x.framer-195ki3b { flex-direction: column; gap: 0px; height: 900px; justify-content: flex-start; overflow: hidden; padding: 16px 12px 60px 16px; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E8d83.framer-v-rabd0x .framer-ovhg0g { height: var(--framer-aspect-ratio-supported, 26px); width: 117px; }\",\".framer-E8d83.framer-v-rabd0x .framer-7rzout, .framer-E8d83.framer-v-rabd0x .framer-gftckt-container { order: 2; }\",\".framer-E8d83.framer-v-rabd0x .framer-1m0pt6h { order: 1; padding: 20px; }\",'.framer-E8d83[data-border=\"true\"]::after, .framer-E8d83 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }','.framer-E8d83[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-E8d83 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-E8d83[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-E8d83 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-E8d83[data-hide-scrollbars=\"true\"], .framer-E8d83 [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uI65Kuiar\":{\"layout\":[\"fixed\",\"fixed\"]},\"l6x10obfc\":{\"layout\":[\"fixed\",\"auto\"]},\"RJESUOqfl\":{\"layout\":[\"fixed\",\"fixed\"]},\"BEn4D_bL2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gGSU0bs4G\":\"activePage\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLDekglqvl=withCSS(Component,css,\"framer-E8d83\");export default FramerLDekglqvl;FramerLDekglqvl.displayName=\"Navigation / Navigation Bar\";FramerLDekglqvl.defaultProps={height:80,width:1200};addPropertyControls(FramerLDekglqvl,{variant:{options:[\"Y6Muk5gpv\",\"uI65Kuiar\",\"l6x10obfc\",\"RJESUOqfl\",\"BEn4D_bL2\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\",\"Tablet Open\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},gGSU0bs4G:{defaultValue:\"jcV_yFltq\",options:[\"jcV_yFltq\",\"KHmCAiZun\",\"AljqF7WF7\",\"Y2NgVSzxp\",\"OJ3ybOaAn\",\"AEo5PpUoG\",\"nrcCICgod\",\"l6Hp5cyuM\",\"kA87AlclE\",\"mxqQWiqG0\"],optionTitles:[\"Home\",\"About\",\"Services\",\"Projects\",\"Changelog\",\"Blogs\",\"Reviews\",\"Contact\",\"Doc\",\"Waitlist\"],title:\"Active Page\",type:ControlType.Enum}});addFonts(FramerLDekglqvl,[{explicitInter:true,fonts:[]},...ButtonRunningStrokeFonts,...NavigationNavLinkSingleFonts,...NavItem2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLDekglqvl\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"gGSU0bs4G\\\":\\\"activePage\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uI65Kuiar\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l6x10obfc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RJESUOqfl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BEn4D_bL2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LDekglqvl.map", "// Generated by Framer (f082bd6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay\",\"FR;InterDisplay-Bold\",\"FR;InterDisplay-BoldItalic\",\"FR;InterDisplay-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/2uIBiALfCHVpWbHqRMZutfT7giU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Zwfz6xbVe5pmcWRJRgBDHnMkOkI.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/U9LaDDmbRhzX3sB8g8glTy5feTE.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tVew2LzXJ1t7QfxP1gdTIdj2o0g.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DF7bjCRmStYPqSb945lAlMfCCVQ.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/nCpxWS6DaPlPe0lHzStXAPCo3lw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/vebZUMjGyKkYsfcY73iwWTzLNag.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/fXvVh2JeZlehNcEhKHpHH0frSl0.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/7pScaNeb6M7n2HF2jKemDqzCIr4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/qS4UjQYyATcVV9rODk0Zx9KhkY8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/VfD2n20yM7v0hrUEBHEyafsmMBY.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/4oIO9fB59bn3cKFWz7piCj28z9s.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/TBccIZR9kIpkRce5i9ATfPp7a4.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/F5Lmfd3fCAu7TwiYbI4DLWw4ks.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/THWAFHoAcmqLMy81E8hCSdziVKA.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/sQxGYWDlRkDr0eOKqiNRl6g5rs.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NNTAT1XAm8ZRkr824inYPkjNeL4.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/P2qr9PAWBt905929rHfxmneMUG0.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/2BmSa4TZZvFKAZg2DydxTbvKlTU.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/djqIk3Er2JcAcz7Rup88BdINEw.woff2\",weight:\"400\"},{family:\"Inter Display\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/KMFW46iYsEZaUBwXbwPc9nQm71o.woff2\",weight:\"400\"}]}];export const css=['.framer-EEFWT .framer-styles-preset-1vcau2:not(.rich-text-wrapper), .framer-EEFWT .framer-styles-preset-1vcau2.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(0, 0, 0, 0.65); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-EEFWT .framer-styles-preset-1vcau2:not(.rich-text-wrapper), .framer-EEFWT .framer-styles-preset-1vcau2.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(0, 0, 0, 0.65); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-EEFWT .framer-styles-preset-1vcau2:not(.rich-text-wrapper), .framer-EEFWT .framer-styles-preset-1vcau2.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-italic: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 17px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 160%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: rgba(0, 0, 0, 0.65); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-EEFWT\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "kXAAA,SAASA,GAAMC,EAAE,EAAEC,EAAE,CAAC,OAAO,KAAK,IAAID,EAAE,KAAK,IAAI,EAAEC,CAAC,CAAC,CAAC,CAAC,IAAMC,GAAN,KAAa,CAAC,QAAQF,EAAE,CAAC,GAAG,CAAC,KAAK,UAAU,OAAO,IAAIG,EAAE,GAAG,GAAG,KAAK,KAAK,KAAK,MAAM,SAAcH,EAAEG,EAAEF,EAAEG,EAAE,CAAC,OAAO,SAAcJ,EAAEG,EAAEF,EAAE,CAAC,OAAO,EAAEA,GAAGD,EAAEC,EAAEE,CAAC,EAAEH,EAAEG,EAAE,EAAE,KAAK,IAAI,CAACF,EAAEG,CAAC,CAAC,CAAC,EAAE,KAAK,MAAM,KAAK,GAAG,GAAG,KAAK,KAAKJ,CAAC,EAAE,KAAK,MAAM,KAAK,KAAK,IAAI,KAAK,KAAK,KAAK,MAAM,KAAK,GAAGG,EAAE,QAAQ,CAAC,KAAK,aAAaH,EAAE,IAAMC,EAAEF,GAAM,EAAE,KAAK,YAAY,KAAK,SAAS,CAAC,EAAEI,EAAEF,GAAG,EAAE,IAAMG,EAAED,EAAE,EAAE,KAAK,OAAOF,CAAC,EAAE,KAAK,MAAM,KAAK,MAAM,KAAK,GAAG,KAAK,MAAMG,CAAC,CAACD,GAAG,KAAK,KAAK,EAAE,KAAK,WAAW,KAAK,MAAMA,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,UAAU,EAAE,CAAC,OAAOH,EAAEG,EAAE,CAAC,KAAKF,EAAE,GAAG,SAASG,EAAE,EAAE,OAAOC,EAAGL,GAAGA,EAAG,QAAQM,EAAE,SAASC,CAAC,EAAE,CAAC,KAAK,KAAK,KAAK,MAAMP,EAAE,KAAK,GAAGG,EAAE,KAAK,KAAKF,EAAE,KAAK,SAASG,EAAE,KAAK,OAAOC,EAAE,KAAK,YAAY,EAAE,KAAK,UAAU,GAAGC,IAAI,EAAE,KAAK,SAASC,CAAC,CAAC,EAAOC,GAAN,KAAgB,CAAC,YAAY,CAAC,QAAQR,EAAE,QAAQG,EAAE,WAAWF,EAAE,GAAG,SAASG,EAAE,GAAG,EAAE,CAAC,EAAE,CAAC,KAAK,QAAQJ,EAAE,KAAK,QAAQG,EAAEF,IAAI,KAAK,gBAAgB,SAAkBD,EAAEG,EAAE,CAAC,IAAIF,EAAE,OAAO,UAAU,CAAC,IAAIG,EAAE,UAAUC,EAAE,KAAK,aAAaJ,CAAC,EAAEA,EAAE,WAAY,UAAU,CAACD,EAAE,MAAMK,EAAED,CAAC,CAAC,EAAGD,CAAC,CAAC,CAAC,EAAE,KAAK,OAAOC,CAAC,EAAE,KAAK,UAAUK,EAAOA,EAAO,iBAAiB,SAAS,KAAK,gBAAgB,EAAE,GAAG,KAAK,sBAAsB,IAAI,eAAe,KAAK,eAAe,EAAE,KAAK,sBAAsB,QAAQ,KAAK,OAAO,GAAG,KAAK,sBAAsB,IAAI,eAAe,KAAK,eAAe,EAAE,KAAK,sBAAsB,QAAQ,KAAK,OAAO,GAAG,KAAK,OAAO,CAAC,CAAC,SAAS,CAAC,KAAK,uBAAuB,WAAW,EAAE,KAAK,uBAAuB,WAAW,EAAEA,EAAO,oBAAoB,SAAS,KAAK,gBAAgB,EAAE,CAAC,CAAC,OAAO,IAAI,CAAC,KAAK,gBAAgB,EAAE,KAAK,gBAAgB,CAAC,EAAE,gBAAgB,IAAI,CAAC,KAAK,UAAUA,GAAQ,KAAK,MAAMA,EAAO,WAAW,KAAK,OAAOA,EAAO,cAAc,KAAK,MAAM,KAAK,QAAQ,YAAY,KAAK,OAAO,KAAK,QAAQ,aAAa,EAAE,gBAAgB,IAAI,CAAC,KAAK,UAAUA,GAAQ,KAAK,aAAa,KAAK,QAAQ,aAAa,KAAK,YAAY,KAAK,QAAQ,cAAc,KAAK,aAAa,KAAK,QAAQ,aAAa,KAAK,YAAY,KAAK,QAAQ,YAAY,EAAE,IAAI,OAAO,CAAC,MAAM,CAAC,EAAE,KAAK,YAAY,KAAK,MAAM,EAAE,KAAK,aAAa,KAAK,MAAM,CAAC,CAAC,EAAOC,GAAN,KAAa,CAAC,aAAa,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,KAAKV,KAAKG,EAAE,CAAC,IAAIF,EAAE,KAAK,OAAOD,CAAC,GAAG,CAAC,EAAE,QAAQA,EAAE,EAAEI,EAAEH,EAAE,OAAOD,EAAEI,EAAEJ,IAAIC,EAAED,CAAC,EAAE,GAAGG,CAAC,CAAC,CAAC,GAAGH,EAAEG,EAAE,CAAC,OAAO,KAAK,OAAOH,CAAC,GAAG,KAAKG,CAAC,IAAI,KAAK,OAAOH,CAAC,EAAE,CAACG,CAAC,GAAG,IAAI,CAAC,KAAK,OAAOH,CAAC,EAAE,KAAK,OAAOA,CAAC,GAAG,OAAQA,GAAGG,IAAIH,CAAE,CAAC,CAAC,CAAC,IAAIA,EAAEG,EAAE,CAAC,KAAK,OAAOH,CAAC,EAAE,KAAK,OAAOA,CAAC,GAAG,OAAQA,GAAGG,IAAIH,CAAE,CAAC,CAAC,SAAS,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,EAAOA,GAAE,IAAI,EAAQW,GAAN,KAAmB,CAAC,YAAYX,EAAE,CAAC,gBAAgBG,EAAE,EAAE,gBAAgBF,EAAE,CAAC,EAAE,CAAC,KAAK,QAAQD,EAAE,KAAK,gBAAgBG,EAAE,KAAK,gBAAgBF,EAAE,KAAK,WAAW,CAAC,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,QAAQ,IAAIS,GAAQD,EAAO,iBAAiB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,eAAe,EAAE,KAAK,QAAQ,iBAAiB,QAAQ,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,aAAa,KAAK,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,YAAY,KAAK,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,iBAAiB,WAAW,KAAK,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,GAAGT,EAAEG,EAAE,CAAC,OAAO,KAAK,QAAQ,GAAGH,EAAEG,CAAC,CAAC,CAAC,SAAS,CAAC,KAAK,QAAQ,QAAQ,EAAEM,EAAO,oBAAoB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,QAAQ,oBAAoB,QAAQ,KAAK,QAAQ,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,oBAAoB,aAAa,KAAK,aAAa,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,oBAAoB,YAAY,KAAK,YAAY,CAAC,QAAQ,EAAE,CAAC,EAAE,KAAK,QAAQ,oBAAoB,WAAW,KAAK,WAAW,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,aAAaT,GAAG,CAAC,GAAK,CAAC,QAAQG,EAAE,QAAQF,CAAC,EAAED,EAAE,cAAcA,EAAE,cAAc,CAAC,EAAEA,EAAE,KAAK,WAAW,EAAEG,EAAE,KAAK,WAAW,EAAEF,EAAE,KAAK,UAAU,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAO,EAAE,OAAO,EAAE,MAAMD,CAAC,CAAC,CAAC,EAAE,YAAYA,GAAG,CAAC,GAAK,CAAC,QAAQG,EAAE,QAAQF,CAAC,EAAED,EAAE,cAAcA,EAAE,cAAc,CAAC,EAAEA,EAAEI,EAAE,EAAED,EAAE,KAAK,WAAW,GAAG,KAAK,gBAAgBE,EAAE,EAAEJ,EAAE,KAAK,WAAW,GAAG,KAAK,gBAAgB,KAAK,WAAW,EAAEE,EAAE,KAAK,WAAW,EAAEF,EAAE,KAAK,UAAU,CAAC,EAAEG,EAAE,EAAEC,CAAC,EAAE,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAOD,EAAE,OAAOC,EAAE,MAAML,CAAC,CAAC,CAAC,EAAE,WAAWA,GAAG,CAAC,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAO,KAAK,UAAU,EAAE,OAAO,KAAK,UAAU,EAAE,MAAMA,CAAC,CAAC,CAAC,EAAE,QAAQ,GAAG,CAAC,GAAG,CAAC,OAAOC,EAAE,OAAOG,EAAE,UAAUC,CAAC,EAAE,EAAEJ,GAAOI,IAAJ,EAAML,GAAMK,IAAJ,EAAM,KAAK,YAAY,EAAED,GAAOC,IAAJ,EAAML,GAAMK,IAAJ,EAAM,KAAK,aAAa,EAAEJ,GAAG,KAAK,gBAAgBG,GAAG,KAAK,gBAAgB,KAAK,QAAQ,KAAK,SAAS,CAAC,OAAOH,EAAE,OAAOG,EAAE,MAAM,CAAC,CAAC,CAAC,EAAE,eAAe,IAAI,CAAC,KAAK,YAAYK,EAAO,WAAW,KAAK,aAAaA,EAAO,WAAW,CAAC,EAAOG,GAAN,KAAW,CAAC,YAAY,CAAC,QAAQZ,EAAES,EAAO,QAAQN,EAAE,SAAS,gBAAgB,kBAAkBF,EAAED,EAAE,aAAaI,EAAEH,EAAE,YAAYI,EAAE,GAAG,UAAUC,EAAE,GAAG,cAAcC,EAAE,KAAK,uBAAuBM,EAAE,GAAG,SAASC,EAAE,OAAOC,EAAGf,GAAG,KAAK,IAAI,EAAE,MAAM,KAAK,IAAI,EAAE,IAAIA,CAAC,CAAC,EAAG,KAAKgB,EAAE,CAACF,GAAG,GAAG,SAASG,EAAE,GAAG,YAAYC,EAAE,WAAW,mBAAmBC,EAAE,WAAW,gBAAgBC,EAAE,EAAE,gBAAgBC,EAAE,EAAE,WAAWC,EAAE,GAAG,QAAQC,EAAE,GAAG,gCAAgCC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,KAAK,cAAc,GAAG,KAAK,YAAY,GAAG,KAAK,WAAW,GAAG,KAAK,gBAAgB,CAAC,CAAC,OAAOxB,EAAE,OAAOG,EAAE,MAAMF,CAAC,IAAI,CAAC,GAAGA,EAAE,QAAQ,OAAO,IAAMG,EAAEH,EAAE,KAAK,SAAS,OAAO,EAAEI,EAAEJ,EAAE,KAAK,SAAS,OAAO,EAA8D,GAA5D,KAAK,WAA0BA,EAAE,OAAjB,cAAqCA,EAAE,OAAhB,YAAwB,KAAK,QAAQ,WAAWG,GAAkBH,EAAE,OAAjB,cAAuB,CAAC,KAAK,WAAW,CAAC,KAAK,SAAS,OAAO,KAAK,KAAK,MAAM,EAAE,IAAMK,EAAMN,IAAJ,GAAWG,IAAJ,EAAMI,EAAe,KAAK,QAAQ,qBAA1B,YAAkDJ,IAAJ,GAAsB,KAAK,QAAQ,qBAA5B,cAAoDH,IAAJ,EAAM,GAAGM,GAAGC,EAAE,OAAO,IAAIM,EAAEZ,EAAE,aAAa,EAAEY,EAAEA,EAAE,MAAM,EAAEA,EAAE,QAAQ,KAAK,WAAW,CAAC,EAAE,IAAMC,EAAE,KAAK,QAAQ,QAAQ,GAAGD,EAAE,KAAMb,GAAG,CAAC,IAAIG,GAAEF,GAAEK,GAAEC,GAAEM,GAAE,OAAmB,OAAOC,GAAnB,WAAoCA,IAAEd,CAAC,EAAEc,MAAaX,GAAEH,EAAE,gBAAZ,MAAoCG,KAAT,OAAW,OAAOA,GAAE,KAAKH,EAAE,oBAAoB,IAAII,KAAYH,GAAED,EAAE,gBAAZ,MAAoCC,KAAT,OAAW,OAAOA,GAAE,KAAKD,EAAE,0BAA0B,IAAIK,KAAYC,GAAEN,EAAE,gBAAZ,MAAoCM,KAAT,OAAW,OAAOA,GAAE,KAAKN,EAAE,0BAA0B,MAAaO,GAAEP,EAAE,aAAZ,MAAiCO,KAAT,OAAW,OAAOA,GAAE,SAAS,OAAO,IAAI,EAAE,GAAQM,GAAEb,EAAE,aAAZ,MAAiCa,KAAT,SAAkBA,GAAE,SAAS,eAAe,EAAE,CAAE,EAAE,OAAO,GAAG,KAAK,WAAW,KAAK,SAAS,OAAO,KAAKZ,EAAE,eAAe,EAAE,GAAG,EAAE,KAAK,QAAQ,WAAWG,GAAG,KAAK,QAAQ,aAAaC,GAAG,OAAO,KAAK,YAAY,SAAS,KAAK,KAAK,QAAQ,KAAK,EAAEJ,EAAE,eAAe,EAAE,IAAIc,EAAEZ,EAAW,KAAK,QAAQ,qBAAtB,OAAyCY,EAAE,KAAK,IAAIZ,CAAC,EAAE,KAAK,IAAIH,CAAC,EAAEG,EAAEH,EAAiB,KAAK,QAAQ,qBAA5B,eAAiDe,EAAEf,GAAG,IAAMgB,GAAEZ,GAAG,KAAK,QAAQ,UAAUa,GAAEb,GAAgBH,EAAE,OAAf,YAAqB,KAAK,IAAIc,CAAC,EAAE,EAAEE,KAAIF,EAAE,KAAK,SAAS,KAAK,QAAQ,wBAAwB,KAAK,SAAS,KAAK,aAAaA,EAAE,OAAO,OAAO,CAAC,aAAa,EAAE,EAAEC,GAAE,CAAC,KAAKC,GAAE,KAAK,QAAQ,cAAc,CAAC,EAAE,CAAC,KAAK,KAAK,QAAQ,KAAK,SAAS,KAAK,QAAQ,SAAS,OAAO,KAAK,QAAQ,MAAM,CAAC,CAAC,CAAC,EAAE,KAAK,eAAe,IAAI,CAAC,GAAG,aAAa,KAAK,sBAAsB,EAAE,OAAO,KAAK,uBAAuB,KAAK,+BAA+B,OAAO,KAAK,uCAA4C,KAAK,cAAV,IAAkC,KAAK,cAAhB,SAA4B,CAAC,IAAMjB,EAAE,KAAK,eAAe,KAAK,eAAe,KAAK,aAAa,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,KAAK,SAAS,KAAK,eAAeA,EAAE,KAAK,UAAU,KAAK,KAAK,KAAK,eAAeA,CAAC,EAAE,KAAK,YAAY,SAAS,KAAK,KAAK,EAAM,KAAK,WAAT,IAAoB,KAAK,uBAAuB,WAAY,IAAI,CAAC,KAAK,aAAa,KAAK,SAAS,KAAK,SAAS,EAAE,KAAK,YAAY,GAAG,KAAK,KAAK,CAAC,EAAG,GAAG,EAAE,CAAC,EAAES,EAAO,aAAa,QAAQT,IAAI,SAAS,iBAAiBA,IAAI,SAAS,OAAOA,EAAES,GAAQ,KAAK,QAAQ,CAAC,QAAQT,EAAE,QAAQG,EAAE,kBAAkBF,EAAE,aAAaG,EAAE,YAAYC,EAAE,UAAUC,EAAE,cAAcC,EAAE,uBAAuBM,EAAE,SAASC,EAAE,OAAOC,EAAE,KAAKC,EAAE,SAASC,EAAE,mBAAmBE,EAAE,YAAYD,EAAE,gBAAgBE,EAAE,gBAAgBC,EAAE,WAAWC,EAAE,QAAQC,EAAE,gCAAgCC,CAAC,EAAE,KAAK,QAAQ,IAAItB,GAAQ,KAAK,QAAQ,IAAIQ,GAAQ,KAAK,WAAW,IAAIF,GAAW,CAAC,QAAQR,EAAE,QAAQG,EAAE,WAAWmB,CAAC,CAAC,EAAE,KAAK,gBAAgB,EAAE,KAAK,SAAS,CAAC,EAAE,KAAK,KAAK,EAAE,KAAK,SAAS,KAAK,aAAa,EAAE,KAAK,SAAS,GAAG,KAAK,UAAU,GAAG,KAAK,YAAY,GAAG,KAAK,aAAa,KAAK,eAAe,KAAK,aAAa,KAAK,QAAQ,QAAQ,iBAAiB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,cAAc,IAAIX,GAAcP,EAAE,CAAC,gBAAgBgB,EAAE,gBAAgBC,CAAC,CAAC,EAAE,KAAK,cAAc,GAAG,SAAS,KAAK,eAAe,CAAC,CAAC,SAAS,CAAC,KAAK,QAAQ,QAAQ,EAAE,KAAK,QAAQ,QAAQ,oBAAoB,SAAS,KAAK,eAAe,EAAE,EAAE,KAAK,cAAc,QAAQ,EAAE,KAAK,WAAW,QAAQ,EAAE,KAAK,iBAAiB,CAAC,CAAC,GAAGrB,EAAEG,EAAE,CAAC,OAAO,KAAK,QAAQ,GAAGH,EAAEG,CAAC,CAAC,CAAC,IAAIH,EAAEG,EAAE,CAAC,OAAO,KAAK,QAAQ,IAAIH,EAAEG,CAAC,CAAC,CAAC,UAAUH,EAAE,CAAC,KAAK,aAAa,KAAK,YAAY,WAAWA,EAAE,KAAK,YAAY,UAAUA,CAAC,CAAC,QAAQ,CAAC,KAAK,WAAW,OAAO,CAAC,CAAC,KAAK,CAAC,SAASA,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,KAAK,SAASA,EAAE,KAAK,QAAQ,KAAK,SAAS,IAAI,EAAE,KAAK,SAAS,CAAC,CAAC,CAAC,OAAO,CAAC,KAAK,SAAS,GAAG,KAAK,YAAY,GAAG,KAAK,eAAe,KAAK,aAAa,KAAK,aAAa,KAAK,aAAa,KAAK,SAAS,EAAE,KAAK,QAAQ,KAAK,CAAC,CAAC,OAAO,CAAC,KAAK,YAAY,KAAK,UAAU,GAAG,KAAK,MAAM,EAAE,CAAC,MAAM,CAAC,KAAK,YAAY,KAAK,UAAU,GAAG,KAAK,QAAQ,KAAK,EAAE,KAAK,MAAM,EAAE,CAAC,IAAIA,EAAE,CAAC,IAAMG,EAAEH,GAAG,KAAK,MAAMA,GAAG,KAAK,KAAKA,EAAE,KAAK,QAAQ,QAAQ,KAAKG,CAAC,CAAC,CAAC,SAASH,EAAE,CAAC,OAAOG,EAAE,EAAE,UAAUF,EAAE,GAAG,KAAKG,EAAE,GAAG,SAASC,EAAE,KAAK,QAAQ,SAAS,OAAOC,EAAE,KAAK,QAAQ,OAAO,KAAKC,EAAE,CAACF,GAAG,KAAK,QAAQ,KAAK,QAAQQ,EAAE,WAAWC,EAAE,MAAMC,EAAE,GAAG,aAAaC,EAAE,GAAG,SAASC,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,GAAG,CAAC,KAAK,WAAW,CAAC,KAAK,UAAUF,EAAE,CAAC,GAAG,CAAC,MAAM,OAAO,OAAO,EAAE,SAASf,CAAC,EAAEA,EAAE,UAAU,CAAC,SAAS,QAAQ,KAAK,EAAE,SAASA,CAAC,EAAEA,EAAE,KAAK,UAAU,CAAC,IAAIC,EAAE,GAAa,OAAOD,GAAjB,SAAmBC,EAAE,SAAS,cAAcD,CAAC,EAAkBA,GAAE,WAAYC,EAAED,GAAGC,EAAE,CAAC,GAAG,KAAK,QAAQ,UAAUQ,EAAO,CAAC,IAAMT,EAAE,KAAK,QAAQ,QAAQ,sBAAsB,EAAEG,GAAG,KAAK,aAAaH,EAAE,KAAKA,EAAE,GAAG,CAAC,IAAMI,EAAEH,EAAE,sBAAsB,EAAED,GAAG,KAAK,aAAaI,EAAE,KAAKA,EAAE,KAAK,KAAK,cAAc,CAAC,CAAC,GAAa,OAAOJ,GAAjB,SAAmB,CAAC,GAAGA,GAAGG,EAAEH,EAAE,KAAK,MAAMA,CAAC,EAAE,KAAK,QAAQ,SAASgB,IAAI,KAAK,aAAa,KAAK,eAAe,KAAK,QAAQhB,EAAED,GAAM,EAAEC,EAAE,KAAK,KAAK,EAAEC,EAAE,OAAO,KAAK,eAAe,KAAK,aAAaD,EAAE,KAAK,UAAU,KAAK,MAAM,EAAE,KAAK,MAAM,EAAE,KAAWc,GAAN,MAASA,EAAE,IAAI,GAAGd,IAAI,KAAK,eAAegB,IAAI,KAAK,aAAahB,GAAG,KAAK,QAAQ,OAAO,KAAK,eAAeA,EAAE,CAAC,SAASK,EAAE,OAAOC,EAAE,KAAKC,EAAE,QAAQ,IAAI,CAACH,IAAI,KAAK,SAAS,IAAI,KAAK,YAAY,SAAkBS,IAAE,IAAI,CAAC,EAAE,SAAS,CAACb,EAAEG,IAAI,CAAC,KAAK,YAAY,SAAS,KAAK,aAAa,KAAK,SAAS,KAAK,SAASH,EAAE,KAAK,eAAe,KAAK,UAAU,KAAK,KAAK,KAAK,QAAQ,EAAE,KAAK,eAAeA,EAAE,KAAK,UAAU,KAAK,MAAM,EAAEgB,IAAI,KAAK,aAAahB,GAAGG,GAAG,KAAK,KAAK,CAAC,SAASc,CAAC,CAAC,EAAEd,IAAI,KAAK,MAAM,EAAE,KAAK,KAAK,CAAC,SAASc,CAAC,CAAC,EAAWH,IAAE,IAAI,EAAE,KAAK,+BAA+B,GAAG,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,IAAI,aAAa,CAAC,OAAO,KAAK,QAAQ,UAAUL,EAAO,SAAS,gBAAgB,KAAK,QAAQ,OAAO,CAAC,IAAI,OAAO,CAAC,OAAO,KAAK,QAAQ,gCAAgC,KAAK,aAAa,KAAK,YAAY,YAAY,KAAK,YAAY,YAAY,KAAK,YAAY,aAAa,KAAK,YAAY,aAAa,KAAK,WAAW,MAAM,KAAK,aAAa,IAAI,GAAG,CAAC,CAAC,IAAI,cAAc,CAAC,OAAqB,KAAK,QAAQ,cAA5B,YAAuC,CAAC,IAAI,cAAc,CAAC,OAAO,KAAK,aAAa,KAAK,YAAY,WAAW,KAAK,YAAY,SAAS,CAAC,IAAI,QAAQ,CAAC,OAAO,KAAK,QAAQ,SAAS,SAAgBT,EAAEG,EAAE,CAAC,OAAOH,EAAEG,EAAEA,GAAGA,CAAC,EAAE,KAAK,eAAe,KAAK,KAAK,EAAE,KAAK,cAAc,CAAC,IAAI,UAAU,CAAC,OAAW,KAAK,QAAT,EAAe,EAAE,KAAK,OAAO,KAAK,KAAK,CAAC,IAAI,aAAa,CAAC,OAAO,KAAK,aAAa,CAAC,IAAI,YAAYH,EAAE,CAAC,KAAK,gBAAgBA,IAAI,KAAK,cAAcA,EAAE,KAAK,gBAAgB,EAAE,CAAC,IAAI,WAAW,CAAC,OAAO,KAAK,WAAW,CAAC,IAAI,UAAUA,EAAE,CAAC,KAAK,cAAcA,IAAI,KAAK,YAAYA,EAAE,KAAK,gBAAgB,EAAE,CAAC,IAAI,UAAU,CAAC,OAAO,KAAK,UAAU,CAAC,IAAI,SAASA,EAAE,CAAC,KAAK,aAAaA,IAAI,KAAK,WAAWA,EAAE,KAAK,gBAAgB,EAAE,CAAC,IAAI,UAAU,CAAC,OAAiB,KAAK,cAAhB,QAA2B,CAAC,IAAI,WAAW,CAAC,IAAIA,EAAE,QAAQ,OAAO,KAAK,YAAYA,GAAG,kBAAkB,KAAK,WAAWA,GAAG,iBAAiB,KAAK,cAAcA,GAAG,oBAA+B,KAAK,cAAhB,WAA8BA,GAAG,iBAAiBA,CAAC,CAAC,iBAAiB,CAAC,KAAK,iBAAiB,EAAE,KAAK,YAAY,UAAU,GAAG,KAAK,YAAY,SAAS,IAAI,KAAK,SAAS,GAAG,KAAK,CAAC,CAAC,kBAAkB,CAAC,KAAK,YAAY,UAAU,KAAK,YAAY,UAAU,QAAQ,gBAAgB,EAAE,EAAE,KAAK,CAAC,CAAC,ECG/oX,SAARyB,GAA8BC,EAAM,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAED,EAAYE,EAAMC,EAAO,IAAI,EAAE,OAAAC,EAAU,IAAI,CAAIF,EAAM,SAAQA,EAAM,QAAQ,SAAS,EAAE,CAAC,UAAU,EAAI,CAAC,CAAE,EAAE,CAACA,CAAK,CAAC,EACnLE,EAAU,IAAI,CAAC,IAAMC,EAAe,SAAS,eAAe,SAAS,EAAE,GAAGA,EAAe,CAAC,IAAMC,EAAc,IAAI,CAAiBC,EAAO,iBAAiB,SAAS,eAAe,EAAmC,WAAW,UAA8BF,EAAe,aAAa,qBAAqB,MAAM,CAAG,EACnTG,EAAa,IAAI,iBAAiBC,GAAW,CAAC,QAAUC,KAAYD,EAAcC,EAAS,OAAO,cAAcA,EAAS,gBAAgB,SAASJ,EAAc,CAAI,CAAC,EAC3K,OAAAE,EAAa,QAAQ,SAAS,gBAAgB,CAAC,WAAW,GAAK,gBAAgB,CAAC,OAAO,CAAC,CAAC,EACzFF,EAAc,EAAQ,IAAI,CAACE,EAAa,WAAW,CAAE,CAAE,CAAC,EAAE,CAAC,CAAC,EAoC5DJ,EAAU,IAAI,CAAC,IAAMO,EAAY,SAAS,qBAAqB,GAAG,EAAE,QAAQC,EAAE,EAAEA,EAAED,EAAY,OAAOC,IAAI,CAAC,IAAMC,EAAQF,EAAYC,CAAC,EAAsBL,EAAO,iBAAiBM,CAAO,EAAmB,iBAAiB,UAAU,IAAI,QAAQA,EAAQ,aAAa,qBAAqB,MAAM,CAAG,CAAC,EAAE,CAAC,CAAC,EAAET,EAAU,IAAI,CAACF,EAAM,QAAQ,IAAIY,GAAM,CAAC,SAASb,EAAU,EAAE,CAAC,EAAE,IAAMc,EAAIC,GAAM,CAAId,EAAM,UAASA,EAAM,QAAQ,IAAIc,CAAI,EAAE,sBAAsBD,CAAG,EAAG,EAAE,6BAAsBA,CAAG,EAAQ,IAAI,CAAIb,EAAM,UAASA,EAAM,QAAQ,QAAQ,EAAEA,EAAM,QAAQ,KAAM,CAAE,EAAE,CAAC,CAAC,EAAEE,EAAU,IAAI,CAAC,IAAMa,EAAa,SAAS,cAAc,OAAO,EAAE,OAAAA,EAAa,YAAY;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAoB5oB,SAAS,KAAK,YAAYA,CAAY,EAAQ,IAAI,CAAC,SAAS,KAAK,YAAYA,CAAY,CAAE,CAAE,EAAE,CAAC,CAAC,EAAEb,EAAU,IAAI,CAAC,IAAMc,EAAY,CAAC,GAAG,SAAS,iBAAiB,SAAS,CAAC,EAAQC,EAAY,CAACC,EAAEC,IAAO,CAACD,EAAE,eAAe,EAAE,IAAME,EAAY,mBAAmBD,CAAI,EAAEnB,EAAM,QAAQ,SAASoB,CAAW,CAAE,EAAE,OAAAJ,EAAY,OAAOK,GAAGA,EAAE,KAAK,SAAS,GAAG,CAAC,EAAE,QAAQA,GAAG,CAAC,IAAMF,EAAK,IAAIE,EAAE,KAAK,MAAM,GAAG,EAAE,IAAI,CAAC,GAAGA,EAAE,iBAAiB,QAAQH,GAAGD,EAAYC,EAAEC,CAAI,CAAC,CAAE,CAAC,EAAQ,IAAI,CAACH,EAAY,OAAOK,GAAGA,EAAE,KAAK,SAAS,GAAG,CAAC,EAAE,QAAQA,GAAG,CAAC,IAAMF,EAAK,IAAIE,EAAE,KAAK,MAAM,GAAG,EAAE,IAAI,CAAC,GAAGA,EAAE,oBAAoB,QAAQH,GAAGD,EAAYC,EAAEC,CAAI,CAAC,CAAE,CAAC,CAAE,CAAE,EAAE,CAACnB,CAAK,CAAC,EAAsBsB,EAAKC,GAAU,CAAC,CAAC,CAAE,CAAC1B,GAAa,YAAY,gBAAgB2B,EAAoB3B,GAAa,CAAC,UAAU,CAAC,MAAM,YAAY,KAAK4B,EAAY,OAAO,aAAa,GAAG,YAAY,oEAAoE,CAAC,CAAC,EC9Dt2BC,GAAU,UAAU,CAAC,yBAAyB,uBAAuB,6BAA6B,8BAA8B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,qrCAAqrC,EAAeC,GAAU,eCAhwPC,GAAU,UAAU,CAAC,kBAAkB,uBAAuB,6BAA6B,wBAAwB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,srCAAsrC,4uCAA4uC,wuCAAwuC,EAAeC,GAAU,eCC3uU,IAAMC,GAAkB,CAC3B,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASA,IAAMC,GAAkB,CACpB,GAAGC,GACH,aAAc,EACd,WAAY,2BACZ,OAAQ,uCACR,MAAO,UACP,cAAe,QACnB,EACaC,GAAgCC,EAAW,CAACC,EAAGC,IACnCC,EAAK,MAAO,CAC7B,MAAON,GACP,IAAKK,CACT,CAAC,CACJ,EC9BD,IAAIE,GAAMC,GAAEC,GAAG,CAAC,GAAG,CAACF,GAAE,CAAC,IAAMG,EAAED,EAAE,WAAW,CAAC,CAAC,MAAME,EAAE,eAAe,KAAKC,EAAE,GAAG,GAAGC,CAAC,EAAE,IAAIJ,EAAE,cAAc,MAAM,CAAC,IAAI,EAAE,MAAM,6BAA6B,MAAMG,EAAE,OAAOA,EAAE,QAAQ,YAAY,KAAK,OAAO,OAAOD,EAAE,YAAY,IAAI,cAAc,QAAQ,eAAe,QAAQ,GAAGE,CAAC,EAAEJ,EAAE,cAAc,OAAO,CAAC,EAAE,gDAAgD,CAAC,EAAEA,EAAE,cAAc,WAAW,CAAC,OAAO,uBAAuB,CAAC,CAAC,CAAC,EAAEC,EAAE,YAAY,OAAOH,GAAEG,CAAC,CAAC,OAAOH,EAAC,ECInU,IAAMO,GAAc,CAAC,QAAQ,CAAC,KAAKC,EAAY,YAAY,EAAE,YAAY,CAAC,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,CAAC,EAAQC,GAAY,CAACC,EAAIC,IAASD,EAAI,KAAKE,GAAGA,EAAE,YAAY,EAAE,SAASD,CAAM,CAAC,EAAS,SAASE,GAAiBC,EAASC,EAAaC,EAAW,GAAGC,EAAcC,EAAsB,CAEriB,GAAGH,EAAa,OAAOE,EAAc,GAAGD,GAAY,MAAqDA,GAAW,SAAU,EAAE,OAAO,KAAK,IAAMG,EAAeH,EAAW,YAAY,EAAE,QAAQ,QAAQ,EAAE,EAAE,IAAII,EACjD,OAA7IA,EAAgBF,EAAsBC,CAAc,KAAK,MAAMC,IAAkB,OAAOA,EAAgBX,GAAYK,EAASK,CAAc,CAAsB,CAAQ,SAASE,GAAiBP,EAASC,EAAaC,EAAW,GAAGC,EAAcC,EAAsB,CAC/R,IAAMI,EAAiBC,EAAQ,IAAI,CAAC,GAAGP,GAAY,MAAqDA,GAAW,SAAU,EAAE,OAAO,KAAK,IAAMG,EAAeH,EAAW,YAAY,EAAE,QAAQ,QAAQ,EAAE,EAAE,IAAII,EAChD,OAA7IA,EAAgBF,EAAsBC,CAAc,KAAK,MAAMC,IAAkB,OAAOA,EAAgBX,GAAYK,EAASK,CAAc,CAAsB,EAAE,CAACF,EAAcD,CAAU,CAAC,EAAyD,OAA5CD,EAAaE,EAAcK,CAA6B,CCTiM,IAAME,GAAS,CAAC,WAAW,UAAU,eAAe,gBAAgB,iBAAiB,eAAe,gBAAgB,aAAa,cAAc,SAAS,WAAW,UAAU,aAAa,oBAAoB,kBAAkB,mBAAmB,aAAa,oBAAoB,cAAc,qBAAqB,WAAW,kBAAkB,gBAAgB,iBAAiB,UAAU,QAAQ,YAAY,cAAc,UAAU,mBAAmB,OAAO,WAAW,YAAY,OAAO,OAAO,YAAY,WAAW,MAAM,YAAY,WAAW,SAAS,aAAa,OAAO,QAAQ,eAAe,eAAe,eAAe,eAAe,gBAAgB,aAAa,gBAAgB,gBAAgB,iBAAiB,cAAc,SAAS,SAAS,YAAY,QAAQ,QAAQ,gBAAgB,kBAAkB,YAAY,aAAa,aAAa,OAAO,UAAU,cAAc,SAAS,UAAU,UAAU,UAAU,OAAO,mBAAmB,oBAAoB,mBAAmB,iBAAiB,oBAAoB,kBAAkB,iBAAiB,kBAAkB,MAAM,cAAc,OAAO,YAAY,WAAW,SAAS,OAAO,SAAS,gBAAgB,gBAAgB,cAAc,WAAW,iBAAiB,WAAW,UAAU,OAAO,SAAS,SAAS,gBAAgB,MAAM,UAAU,WAAW,eAAe,UAAU,QAAQ,OAAO,aAAa,YAAY,YAAY,OAAO,SAAS,OAAO,SAAS,eAAe,cAAc,SAAS,QAAQ,OAAO,aAAa,aAAa,YAAY,mBAAmB,SAAS,SAAS,QAAQ,OAAO,aAAa,OAAO,aAAa,QAAQ,cAAc,UAAU,OAAO,QAAQ,QAAQ,OAAO,YAAY,SAAS,MAAM,SAAS,SAAS,YAAY,OAAO,SAAS,WAAW,OAAO,SAAS,OAAO,SAAS,UAAU,OAAO,MAAM,UAAU,WAAW,aAAa,MAAM,OAAO,iBAAiB,iBAAiB,MAAM,UAAU,WAAW,aAAa,QAAQ,eAAe,eAAe,UAAU,OAAO,kBAAkB,gBAAgB,gBAAgB,OAAO,QAAQ,aAAa,eAAe,UAAU,UAAU,YAAY,QAAQ,eAAe,WAAW,UAAU,QAAQ,aAAa,kBAAkB,iBAAiB,eAAe,YAAY,iBAAiB,YAAY,OAAO,cAAc,OAAO,cAAc,cAAc,SAAS,QAAQ,UAAU,QAAQ,cAAc,aAAa,SAAS,SAAS,aAAa,YAAY,MAAM,OAAO,WAAW,SAAS,OAAO,SAAS,WAAW,QAAQ,UAAU,SAAS,aAAa,eAAe,gBAAgB,UAAU,UAAU,YAAY,eAAe,QAAQ,QAAQ,UAAU,aAAa,QAAQ,UAAU,SAAS,OAAO,cAAc,MAAM,UAAU,SAAS,SAAS,MAAM,SAAS,WAAW,cAAc,cAAc,YAAY,cAAc,eAAe,OAAO,QAAQ,UAAU,SAAS,gBAAgB,cAAc,WAAW,QAAQ,KAAK,SAAS,UAAU,OAAO,WAAW,YAAY,SAAS,SAAS,eAAe,OAAO,aAAa,aAAa,YAAY,SAAS,QAAQ,QAAQ,YAAY,YAAY,SAAS,WAAW,WAAW,WAAW,QAAQ,OAAO,WAAW,OAAO,IAAI,WAAW,YAAY,WAAW,UAAU,MAAM,UAAU,UAAU,UAAW,EAAQC,GAAc,sCAA4CC,GAAkBF,GAAS,IAAIG,GAAMA,EAAK,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAK,MAAM,CAAC,CAAC,EAAQC,GAAsBJ,GAAS,OAAO,CAACK,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQn2H,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,SAAAC,CAAQ,EAAEV,EAAYW,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBtB,GAASU,EAAaC,EAAWC,EAAcR,EAAqB,EACtR,CAACmB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAYC,EAAK,EAAE,IAAI,EACrF,eAAeC,GAAc,CAAC,IAAIC,EAAO,GACzC,GAAG,CAA4D,IAAMC,EAAO,MAAM,OAA1D,GAAG7B,EAAa,GAAGoB,CAAO,cAC/CQ,GAAOL,EAAgBM,EAAO,QAAQH,EAAK,CAAC,CAAE,OAAOI,EAAE,CAAC,QAAQ,IAAIA,CAAC,EAAKF,GAAOL,EAAgB,IAAI,CAAE,CAAC,MAAM,IAAI,CAACK,EAAO,EAAM,CAAE,CACrIG,EAAU,IAAI,CAACJ,EAAa,CAAE,EAAE,CAACP,CAAO,CAAC,EAAgE,IAAMY,EAAnDC,GAAa,QAAQ,IAAIA,GAAa,OAAiDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAqBD,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAtB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASQ,EAA2BY,EAAKZ,EAAa,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,UAAUL,EAAS,eAAe,MAAS,EAAE,MAAMT,CAAK,CAAC,EAAEwB,CAAU,CAAC,CAAE,CAAC1B,EAAK,YAAY,UAAUA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,OAAO,WAAW,OAAO,MAAM,OAAO,aAAa,GAAK,SAAS,EAAK,EAAE8B,EAAoB9B,EAAK,CAAC,aAAa,CAAC,KAAK+B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa/B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK+B,EAAY,KAAK,QAAQtC,GAAS,aAAaE,GAAkB,aAAaK,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,uEAAuE,EAAE,WAAW,CAAC,KAAK4B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA5B,CAAY,IAAIA,CAAY,EAAE,SAAS,CAAC,KAAK4B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa/B,EAAK,aAAa,QAAQ,EAAE,MAAM,CAAC,KAAK+B,EAAY,MAAM,MAAM,QAAQ,aAAa/B,EAAK,aAAa,KAAK,EAAE,GAAGgC,EAAa,CAAC,ECZtyB,IAAMC,GAAaC,GAASC,CAAO,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,KAAK,YAAY,MAAM,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,EAAM,UAAU,UAAUL,GAAYK,EAAM,WAAW,iBAAiB,QAAQP,GAAwBO,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASM,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtD,CAAQ,EAAEuD,GAAgB,CAAC,WAAA5D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIuC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ2D,EAAiB7B,GAAuBD,EAAM1B,CAAQ,EAAO,CAAC,sBAAAyD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAWQ,EAAiB,EAAE,GAAG,CAAE,CAAC,EAAEC,GAAmBhB,EAAY,CAAC,UAAUa,CAAe,CAAC,EAAiC,IAAMI,EAAkBC,EAAGrE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBmB,EAAKmD,GAAY,CAAC,GAAGvB,GAAUT,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBpC,EAAKoD,EAAK,CAAC,KAAKtB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsB9B,EAAKE,EAAO,EAAE,CAAC,GAAG6B,EAAU,GAAGI,EAAgB,UAAU,GAAGe,EAAGD,EAAkB,gBAAgBtB,EAAUM,CAAU,CAAC,kBAAkB,cAAc,GAAK,mBAAmB,MAAM,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIvB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,oEAAoE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,oEAAoE,CAAC,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,iBAAiB,EAAI,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEiD,EAAYI,CAAc,EAAE,SAAsBiB,EAAMnD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKsD,GAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,UAAU,sBAAsB,4FAA4F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,oBAAoB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9C,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,UAAU,sBAAsB,6CAA6C,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,EAAYI,CAAc,CAAC,CAAC,EAAepC,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB+D,EAAMnD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBf,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAKtB,EAAQ,CAAC,MAAM,oEAAoE,OAAO,OAAO,WAAW,OAAO,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGK,GAAqB,CAAC,UAAU,CAAC,MAAM,oBAAoB,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBf,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAKtB,EAAQ,CAAC,MAAM,oEAAoE,OAAO,OAAO,WAAW,OAAO,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGK,GAAqB,CAAC,kBAAkB,CAAC,MAAM,oBAAoB,CAAC,EAAEiD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,kFAAkF,0TAA0T,kSAAkS,iHAAiH,sQAAsQ,yMAAyM,iJAAiJ,qxBAAqxB,qSAAqS,wKAAwK,2NAA2N,+bAA+b,EAW97WC,GAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,wBAAwBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,MAAM,QAAQ,SAAS,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,iBAAiB,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlF,EAAY,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXnsEwF,GAAU,UAAU,CAAC,eAAe,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,80BAA80B,o4BAAo4B,g4BAAg4B,EAAeC,GAAU,eCAliF,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,SAAAC,EAAS,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUN,GAAOM,EAAM,UAAU,QAAQR,GAAwBQ,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUF,GAAUE,EAAM,WAAW,OAAO,UAAUH,GAAMG,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAErB,GAASO,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBvB,GAAuBD,EAAMzB,CAAQ,EAAO,CAAC,sBAAAkD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAazB,GAAuBA,EAAS,EAAQ0B,EAAkBC,GAAqB,EAAE,OAAoBhD,EAAKiD,GAAY,CAAC,GAAG3B,GAAUsB,EAAgB,SAAsB5C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKkD,EAAK,CAAC,KAAK3B,EAAU,OAAO,YAAY,GAAGtC,GAAqB,CAAC,UAAU,CAAC,aAAa,EAAI,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAsB/B,EAAKE,EAAO,EAAE,CAAC,GAAGwB,EAAU,GAAGI,EAAgB,UAAU,GAAGqB,EAAGpE,GAAkB,GAAG+D,EAAsB,iBAAiBzB,EAAUO,CAAU,CAAC,kBAAkB,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAIxB,GAAK0B,EAAK,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGtB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,wEAAwE,CAAC,EAAE,GAAGnC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAsB/B,EAAKoD,GAAS,CAAC,sBAAsB,GAAK,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,KAAKZ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,sEAAsE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGvC,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,+FAA+F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,kFAAkF,iXAAiX,8JAA8J,6WAA6W,wEAAwE,GAAeA,GAAI,GAAgBA,EAAG,EASpnMC,GAAgBC,GAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mCAAmCA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,OAAO,gBAAgB,GAAM,MAAM,YAAY,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTl2D,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUN,GAAOM,EAAM,UAAU,UAAUF,GAAOE,EAAM,WAAW,WAAW,UAAUH,GAAMG,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASO,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtB,CAAQ,EAAEuB,GAAgB,CAAC,eAAe,YAAY,QAAAb,EAAQ,kBAAAc,EAAiB,CAAC,EAAQC,EAAiB1B,GAAuBD,EAAME,CAAQ,EAAO,CAAC,sBAAA0B,EAAsB,MAAAC,CAAK,EAAEC,GAAyBb,CAAW,EAAQc,EAAaH,EAAsB,SAASI,KAAO,CAAoC,GAAnCT,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGiB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAA4DC,EAAkBC,EAAGC,GAAkB,GAArE,CAAazB,EAAS,CAAuE,EAAQ0B,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,GAAY,CAAC,GAAG/B,GAAU2B,EAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQY,EAAS,QAAQ,GAAM,SAAsBb,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKsD,EAAK,CAAC,KAAK7B,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAK,SAAsBzB,EAAKE,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAU,GAAGc,EAAGD,EAAkB,gBAAgBvB,EAAUQ,CAAU,CAAC,iBAAiB,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBS,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAI1B,GAAK+B,EAAK,MAAM,CAAC,GAAG3B,CAAK,EAAE,SAAsBpB,EAAKuD,GAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,gFAAgF,8SAA8S,iHAAiH,2WAA2W,GAAeA,EAAG,EASj7IC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTzzC,IAAMC,GAAyBC,GAASC,EAAmB,EAAQC,GAA6BF,GAASG,EAAuB,EAAQC,GAAcJ,GAASK,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAgB,CAACC,EAAMC,IAAe,CAAC,OAAOD,EAAM,CAAC,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQE,GAAiB,CAACF,EAAMC,IAAe,CAAC,OAAOD,EAAM,CAAC,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQG,GAAiB,CAACH,EAAMC,IAAe,CAAC,OAAOD,EAAM,CAAC,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQI,GAAiB,CAACJ,EAAMC,IAAe,CAAC,OAAOD,EAAM,CAAC,IAAI,YAAY,MAAM,YAAY,QAAQ,MAAM,WAAY,CAAC,EAAQK,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAN,EAAM,SAAAO,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWX,GAAOQ,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,MAAM,YAAY,MAAM,YAAY,UAAU,YAAY,QAAQ,YAAY,IAAI,YAAY,KAAK,YAAY,SAAS,YAAY,QAAQ,YAAY,SAAS,YAAY,SAAS,WAAW,EAAQC,GAAwB,CAAC,aAAa,YAAY,cAAc,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUP,GAAqBG,CAAU,GAAGA,GAAYI,EAAM,WAAW,YAAY,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM/B,IAAe+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAE+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAUiC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAjC,EAAa,UAAAkC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7C,EAAQ,UAAA8C,EAAU,GAAGC,CAAS,EAAEvB,GAASK,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,GAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,IAAI2C,EAAW,QAAApC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiB3B,GAAuBD,EAAM/B,CAAQ,EAAO,CAAC,sBAAA4D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAYH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAaN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAiBP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAYR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAYT,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQa,EAAgBV,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAuCc,GAAkBC,EAAG5E,GAAkB,GAAhD,CAAC,CAAuE,EAAQ6E,GAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAa,IAAQzB,IAAc,YAA6C0B,GAAa,IAAQ1B,IAAc,YAA6C2B,GAAa,IAAQ3B,IAAc,YAA6C4B,GAAOC,GAAU,EAAQC,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAS9B,CAAW,EAAmC+B,GAAa,IAAQ/B,IAAc,YAA6CgC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAShC,CAAW,EAAmCiC,GAAa,IAAQjC,IAAc,YAA6CkC,GAAa,IAAQlC,IAAc,YAAuC,OAAoB9B,EAAKiE,GAAY,CAAC,GAAGtC,GAAUR,EAAgB,SAAsBnB,EAAKC,GAAS,CAAC,QAAQrB,EAAS,QAAQ,GAAM,SAAsBoB,EAAKR,GAAW,CAAC,MAAMT,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBgC,EAAMhE,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUmB,EAAGD,GAAkB,iBAAiBzB,EAAUK,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,uBAAuB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,aAAa,GAAGO,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,eAAe,aAAa,gBAAgB,2BAA2B,qBAAqB,YAAY,EAAE,UAAU,CAAC,eAAe,aAAa,gBAAgB,2BAA2B,qBAAqB,YAAY,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,eAAe,aAAa,gBAAgB,2BAA2B,qBAAqB,YAAY,CAAC,EAAE,GAAG/C,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAS,CAACmB,GAAY,GAAgBa,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAc2B,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBnE,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKoE,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB7B,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,u2rBAAu2rB,aAAa,YAAY,mBAAmB,GAAK,GAAG7D,EAAqB,CAAC,UAAU,CAAC,IAAI,67qBAA67qB,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,0grBAA0grB,aAAa,UAAU,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAACe,GAAa,GAAgBY,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,6jBAA6jB,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qOAAqO,EAAE,UAAU,CAAC,gBAAgB,2BAA2B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qOAAqO,CAAC,EAAE,GAAG7D,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAMiE,CAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAME,CAAY,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAACqB,GAAa,GAAgBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,EAAEgB,GAAa,GAAgBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAEiB,GAAa,GAAgBxD,EAAKoE,GAAI,CAAC,UAAU,eAAe,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB7B,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAsL,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEkB,GAAa,GAAgBzD,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BtE,EAAKuE,EAA0B,CAAC,GAAG7F,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG6C,GAAmB,GAAG,GAAG,GAAG,IAAMA,GAAmB,QAAQ,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,GAAG,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK9B,GAAoB,CAAC,UAAUoG,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG5F,EAAqB,CAAC,UAAU,CAAC,UAAU4F,EAAc,CAAC,CAAC,CAAC,EAAExC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,GAAa,GAAgBM,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAc2B,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,eAAe,YAAY,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,WAAW,EAAE,SAAS,CAAcvC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BzE,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvB,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQa,GAAgB2C,EAAUzC,CAAY,EAAE,UAAU,OAAO,MAAM,OAAO,UAAUsF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezE,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B1E,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvB,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQgB,GAAiBwC,EAAUzC,CAAY,EAAE,UAAU,WAAW,MAAM,OAAO,UAAUuF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1E,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B3E,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvB,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQiB,GAAiBuC,EAAUzC,CAAY,EAAE,UAAU,gBAAgB,MAAM,OAAO,UAAUwF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6B5E,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvB,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK5B,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQkB,GAAiBsC,EAAUzC,CAAY,EAAE,UAAU,qBAAqB,MAAM,OAAO,UAAUyF,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5E,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6B7E,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAGhD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,SAAsBvB,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK9B,GAAoB,CAAC,UAAU2G,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEhB,GAAa,GAAgBK,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAACsB,GAAa,GAAgB7D,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsB2E,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAMO,EAAa,MAAM,CAAC,eAAe,YAAY,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,WAAW,EAAE,SAAS,CAAc9C,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6B9E,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,UAAUyE,EAAiB,UAAU,OAAO,MAAM,OAAO,UAAU+B,EAAe,CAAC,EAAE,GAAGpG,EAAqB,CAAC,UAAU,CAAC,UAAUoG,EAAe,CAAC,CAAC,CAAC,EAAEhD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASU,GAA6B/E,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,UAAUyE,EAAiB,UAAU,WAAW,MAAM,OAAO,UAAUgC,EAAe,CAAC,EAAE,GAAGrG,EAAqB,CAAC,UAAU,CAAC,UAAUqG,EAAe,CAAC,CAAC,CAAC,EAAEjD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASW,GAA6BhF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,eAAe,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,eAAe,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,eAAe,UAAUyE,EAAiB,UAAU,gBAAgB,MAAM,OAAO,UAAUiC,EAAe,CAAC,EAAE,GAAGtG,EAAqB,CAAC,UAAU,CAAC,UAAUsG,EAAe,CAAC,CAAC,CAAC,EAAElD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASY,GAA6BjF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,OAAO,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,OAAO,UAAUyE,EAAiB,UAAU,sBAAsB,MAAM,OAAO,UAAUkC,EAAe,CAAC,EAAE,GAAGvG,EAAqB,CAAC,UAAU,CAAC,UAAUuG,EAAe,CAAC,CAAC,CAAC,EAAEnD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASa,GAA8BlF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,MAAM,YAAY6C,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK9B,GAAoB,CAAC,UAAUgH,EAAgB,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGxG,EAAqB,CAAC,UAAU,CAAC,UAAUwG,EAAgB,CAAC,CAAC,CAAC,EAAEpD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,GAAa,GAAgBI,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAc2B,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKmE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnE,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKoE,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,KAAK,iBAAiB7B,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAm0pB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAACwB,GAAa,GAAgB/D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAMS,GAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qOAAqO,EAAE,SAAsBhD,EAAKoE,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB7B,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAsL,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEyB,GAAa,GAAgBE,EAAMhE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAMO,EAAa,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qOAAqO,EAAE,SAAS,CAAc9C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,GAAG,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,GAAa,GAAgB/D,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASc,GAA8BnF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAG6C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK9B,GAAoB,CAAC,UAAUiH,EAAgB,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGzG,EAAqB,CAAC,UAAU,CAAC,UAAUyG,EAAgB,CAAC,EAAE,MAAM,CAAC,OAAO,MAAM,CAAC,CAAC,EAAErD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASe,GAA8BpF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO6C,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK9B,GAAoB,CAAC,UAAUkH,EAAgB,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG1G,EAAqB,CAAC,UAAU,CAAC,UAAU0G,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,CAAC,CAAC,EAAEtD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKR,GAAW,CAAC,MAAMD,GAAY,GAAGb,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBgC,EAAMhE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAMO,EAAa,MAAM,CAAC,eAAe,YAAY,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,GAAGpE,EAAqB,CAAC,UAAU,CAAC,MAAMuE,EAAW,CAAC,EAAEnB,EAAYI,CAAc,EAAE,SAAS,CAAclC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASgB,GAA8BrF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,OAAO,UAAU,WAAW,MAAM,OAAO,UAAU+G,EAAgB,CAAC,EAAE,GAAG3G,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAgB,UAAU,OAAO,UAAUmC,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,OAAO,UAAUA,EAAgB,CAAC,CAAC,CAAC,EAAEvD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiB,GAA8BtF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,WAAW,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,UAAU,WAAW,MAAM,OAAO,UAAUgH,EAAgB,CAAC,EAAE,GAAG5G,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAgB,UAAU,WAAW,UAAUoC,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,WAAW,UAAUA,EAAgB,CAAC,CAAC,CAAC,EAAExD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASkB,GAA8BvF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,UAAU,eAAe,MAAM,OAAO,UAAUiH,EAAgB,CAAC,EAAE,GAAG7G,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAgB,UAAU,gBAAgB,UAAUqC,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,gBAAgB,UAAUA,EAAgB,CAAC,CAAC,CAAC,EAAEzD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASmB,GAA8BxF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,GAAG6C,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,qBAAqB,iBAAiBjC,EAAiB,SAAS,sBAAsB,KAAK,qBAAqB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,EAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,qBAAqB,UAAU,OAAO,MAAM,OAAO,UAAUkH,EAAgB,CAAC,EAAE,GAAG9G,EAAqB,CAAC,UAAU,CAAC,UAAUwE,EAAgB,UAAU,qBAAqB,UAAUsC,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,qBAAqB,UAAUA,EAAgB,CAAC,CAAC,CAAC,EAAE1D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgB/D,EAAKqE,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASoB,GAA8BzF,EAAKuE,EAA0B,CAAC,OAAO,GAAG,GAAG7F,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO6C,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKwE,EAA8B,CAAC,UAAU,wBAAwB,iBAAiBjC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK9B,GAAoB,CAAC,UAAUuH,EAAgB,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAG/G,EAAqB,CAAC,UAAU,CAAC,UAAU+G,EAAgB,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE3D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwD,GAAI,CAAC,kFAAkF,kFAAkF,4QAA4Q,8RAA8R,yRAAyR,gUAAgU,gGAAgG,wTAAwT,gHAAgH,+PAA+P,gQAAgQ,iNAAiN,yGAAyG,sRAAsR,0WAA0W,2pBAA2pB,gSAAgS,6ZAA6Z,yGAAyG,ySAAyS,sRAAsR,2KAA2K,oRAAoR,2NAA2N,6RAA6R,wGAAwG,2PAA2P,qIAAqI,sHAAsH,8DAA8D,uFAAuF,yEAAyE,wKAAwK,sFAAsF,iLAAiL,oNAAoN,gFAAgF,6GAA6G,qKAAqK,yNAAyN,uJAAuJ,8KAA8K,iFAAiF,mGAAmG,4JAA4J,6IAA6I,uFAAuF,2PAA2P,qHAAqH,qHAAqH,6EAA6E,gcAAgc,6JAA6J,yKAAyK,oHAAoH,EAW5/gIC,GAAgBC,GAAQ/E,GAAU6E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,8BAA8BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,SAAS,cAAc,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,YAAY,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,QAAQ,WAAW,WAAW,YAAY,QAAQ,UAAU,UAAU,MAAM,UAAU,EAAE,MAAM,cAAc,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG3H,GAAyB,GAAGG,GAA6B,GAAGE,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXv3B4H,GAAU,UAAU,CAAC,kBAAkB,uBAAuB,6BAA6B,wBAAwB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,6oCAA6oC,msCAAmsC,2rCAA2rC,EAAeC,GAAU",
  "names": ["clamp", "t", "i", "Animate", "e", "s", "o", "n", "r", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinks", "handleClick", "e", "href", "decodedHref", "a", "p", "l", "addPropertyControls", "ControlType", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "s", "o", "n", "t", "e", "i", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "getIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchTerm", "_iconSearchTerm", "useIconSelection", "iconSearchResult", "se", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ofLqZhEO8", "GS3bSUXSK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear17vk1v4", "args", "CycleVariantState", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramervfZ8Tj9xR", "withCSS", "vfZ8Tj9xR_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "pageName", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "x7kSahbL4", "vr3GalQZm", "nOARGIk5g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1tmoh2u", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerAz6MmHxe4", "withCSS", "Az6MmHxe4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "UshclB94X", "XOMIpcMb1", "Tzpt4fE6f", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap12ltn52", "args", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FramerBW56A5l99", "withCSS", "BW56A5l99_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ButtonRunningStrokeFonts", "getFonts", "vfZ8Tj9xR_default", "NavigationNavLinkSingleFonts", "Az6MmHxe4_default", "NavItem2Fonts", "BW56A5l99_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "convertFromEnum", "value", "activeLocale", "convertFromEnum1", "convertFromEnum2", "convertFromEnum3", "transition3", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "activePage", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "gGSU0bs4G", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapvv7flj", "args", "onTap1bjok2q", "onTap1l5q03k", "Tzpt4fE6f1l5q03k", "onTapieiks8", "onTap5kl2y3", "Tzpt4fE6f5kl2y3", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "LayoutGroup", "u", "Link", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "resolvedLinks17", "css", "FramerLDekglqvl", "withCSS", "LDekglqvl_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className"]
}
