{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/WsLN4XQfJdeqkYSXsIEd/EpJVgKedJ044ctwpEWsa/Navigation.js", "ssg:https://framerusercontent.com/modules/JtFJngCd69ZfL42U967h/wzmZDSs6Ce3yFXpijAMu/YeRNZLTy_.js", "ssg:https://framerusercontent.com/modules/Lj5J69cE0M2CZJneMTJW/7IRnLrJZpxF8MvAdprAg/U_0Mb9OEL.js", "ssg:https://framerusercontent.com/modules/6X7fzdNbzTSrjw01amvZ/fWtx3oI0Xbh0fm51264W/Ch2T0RIxN.js", "ssg:https://framerusercontent.com/modules/6lLDEFK3zt7OfypY8v5O/9plr1MiN6cwlpM2YcV1g/wl2ru_XZf.js", "ssg:https://framerusercontent.com/modules/D6pxgJu6k4FbUUispaNR/hHpP4j97yUC99XUwj2TM/IZmp66AdO.js", "ssg:https://framerusercontent.com/modules/oaZOjd2IqyrqtINbqXIT/CLzKHTCznnp60HfrIilA/ihrENU0nX.js", "ssg:https://framerusercontent.com/modules/LWaKFY4zANHTA9ycgJ4Z/fq0RmCb124MCrTQ1AYcg/meH94TGhu.js", "ssg:https://framerusercontent.com/modules/CQZuOfbLBapOsCULvjYT/C6x2n4jbRkwoJuvqykHN/SfnTfP2yI.js", "ssg:https://framerusercontent.com/modules/gs0QjaPW4uZM8FKo56f5/P7lLlBgOkYfPl3bzIHX7/Wp2oDoQEC.js", "ssg:https://framerusercontent.com/modules/qsA3aleHGjxVmLuXqMSR/oe3bOLQWsWnE4Tv54yfo/XsKn0WNdo.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,forwardRef,useRef}from\"react\";import{goToMarket}from\"https://framerusercontent.com/modules/MnjZUP24m4UFEVAo4MPz/ORjABYGQDTz2FZrMumt6/goToMarket.js\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{log}from\"https://framerusercontent.com/modules/kSMCNeBYpO4VGJ0nrZPP/dSnR9qYhnzDMQnuvvArL/log.js\";export function OpenType(Component){return /*#__PURE__*/forwardRef((props,ref)=>{return /*#__PURE__*/_jsx(Component,{...props,ref:ref,style:{...props.style,fontFeatureSettings:`\"salt\", \"kern\", \"cv05\", \"cv11\", \"ccmp\"`}});});}// Auth Buttons\nconst useStore=createStore({userHasInitialized:false,user:null});function isUser(data){var _this;return((_this=data)===null||_this===void 0?void 0:_this.name)!==undefined;}export function withUser(Component){return props=>{const[{user},setStore]=useStore();useEffect(()=>{const fetchUser=async()=>{log(\"Fetching user\");const data=await fetch(\"https://api.framer.com/site/users/me\",{credentials:\"include\"});const user=await data.json();if(isUser(user)){goToMarket.trackEvent({category:\"HasFramerUser\",action:\"true\"});setStore({user,userHasInitialized:true});}else{goToMarket.trackEvent({category:\"HasFramerUser\",action:\"false\"});setStore({userHasInitialized:true});}};if(![\"www.framer.com\",\"framer.com\"].includes(window.location.hostname)){console.log(\"Skipping the login state because we're not on framer.com\");return;}fetchUser().catch(console.error);},[]);let authenticatedProps={};if(isUser(user)){authenticatedProps={label:\"Open Framer\",avatarImage:user.avatar,avatar:!!user.avatar,link:\"https://framer.com/projects\",variant:!!user.avatar?\"Nav\":props.variant};}let componentProps={...props,...authenticatedProps};return /*#__PURE__*/_jsx(Component,{...props,...componentProps});};}const useOutsideClick=callback=>{const ref=useRef();const[{isOpen}]=useBrandMenuStore();useEffect(()=>{const handleClick=event=>{if(ref.current&&!ref.current.contains(event.target)){callback();}};document.addEventListener(\"click\",handleClick,true);return()=>{document.removeEventListener(\"click\",handleClick,true);};},[ref,isOpen]);return ref;};export function hideWhenAuthenticated(Component){return props=>{const[{user,userHasInitialized}]=useStore();const isAuthenticated=userHasInitialized&&isUser(user);return!isAuthenticated&&/*#__PURE__*/_jsx(Component,{...props});};}const useBrandMenuStore=createStore({isOpen:false});export function withRightClickTrigger(Component){return props=>{const[{isOpen},setStore]=useBrandMenuStore();const handleClick=e=>{e.preventDefault();if(e.type===\"contextmenu\"){setStore({isOpen:!isOpen});}};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick,onContextMenu:handleClick});};}export function withBrandMenuOpenState(Component){return props=>{const[{isOpen},setStore]=useBrandMenuStore();const initialized=false;useEffect(()=>{if(!initialized){setStore({isOpen:false});}},[]);const handleClickOutside=()=>{if(isOpen){setStore({isOpen:false});}};const ref=useOutsideClick(handleClickOutside);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",width:280,top:40,left:0,pointerEvents:isOpen?\"all\":\"none\"},ref:ref,children:/*#__PURE__*/_jsx(Component,{...props,style:{...props.style,opacity:isOpen?1:0,transform:isOpen?\"scale(1)\":\"scale(0.95)\",transition:\"ease 0.2s\",position:\"relative\"}})});};}export function withCloseOnClick(Component){return props=>{const[{isOpen},setStore]=useBrandMenuStore();const handleClick=e=>{setStore({isOpen:false});};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}export function withCloseBrandMenuOnHover(Component){return props=>{const[{isOpen},setStore]=useBrandMenuStore();const handleMouseEnter=e=>{setStore({isOpen:false});};return /*#__PURE__*/_jsx(Component,{...props,onHoverStart:handleMouseEnter});};}export function withCopyLogo(Component){return props=>{const[{isOpen},setStore]=useBrandMenuStore();const handleClick=e=>{var _navigator_clipboard;setStore({isOpen:false});(_navigator_clipboard=navigator.clipboard)===null||_navigator_clipboard===void 0?void 0:_navigator_clipboard.writeText('<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"140\" height=\"140\"><path d=\"M 44.65 33.992 L 95.35 33.992 L 95.35 59.341 L 70 59.341 Z M 44.65 59.341 L 70 59.341 L 95.35 84.691 L 44.65 84.691 Z M 44.65 84.691 L 70 84.691 L 70 110.041 Z\" fill=\"rgb(0, 0, 0)\"></path></svg>');};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleClick});};}\nexport const __FramerMetadata__ = {\"exports\":{\"OpenType\":{\"type\":\"reactHoc\",\"name\":\"OpenType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRightClickTrigger\":{\"type\":\"reactHoc\",\"name\":\"withRightClickTrigger\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withUser\":{\"type\":\"reactHoc\",\"name\":\"withUser\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCopyLogo\":{\"type\":\"reactHoc\",\"name\":\"withCopyLogo\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCloseBrandMenuOnHover\":{\"type\":\"reactHoc\",\"name\":\"withCloseBrandMenuOnHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withBrandMenuOpenState\":{\"type\":\"reactHoc\",\"name\":\"withBrandMenuOpenState\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCloseOnClick\":{\"type\":\"reactHoc\",\"name\":\"withCloseOnClick\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hideWhenAuthenticated\":{\"type\":\"reactHoc\",\"name\":\"hideWhenAuthenticated\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Navigation.map", "// Generated by Framer (19c8cf2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"yukmkUJm9\",\"qy0QGHi7t\",\"Vd9CNDtxh\",\"zB9391xmm\",\"JJqc2vfzF\",\"Jh0RrdcSK\",\"vDwSIMuUF\",\"LNDimJVAb\",\"zvhUj4pIY\",\"jNkGfYBSF\",\"St9ngbSHy\",\"jGh1Kro_y\",\"fKrV3dwy4\",\"aGLpUcf4i\",\"hgjHFaWzH\",\"zsttp1tli\",\"RiU66w7QV\",\"MzU7NL_YP\",\"cnvso1YEl\",\"uCaaQN08d\",\"xII4fLiuF\",\"GTc_pVk16\",\"hr_QNi98q\",\"ikDvt5CLy\",\"FAezCpTTK\",\"EaFq0SwZK\",\"t4aMBmifR\",\"h3yNshzCe\",\"byRJOmfwp\",\"kpl_N3gWC\",\"jY876LpWX\",\"CwI58qLId\",\"Awb_XmWbL\",\"dHOZpIuqL\",\"j33SkQFD8\",\"VlUS3R0mk\",\"P7AUAyY6c\",\"CKffPSShn\",\"Q9eIc52Qb\",\"LQSO1pIke\",\"PCCiWBS7v\",\"NPZUGGcbe\",\"YqABQEjDA\",\"HJeIAd4TZ\",\"n3l8BE1ku\",\"UjhZxPLlc\",\"v8ysDe1LD\",\"XaY_t27jj\",\"cfb8R0UZv\",\"lUulXwot3\",\"Y6RuDXSEi\",\"yAgqHitp9\",\"eC40F5Yff\",\"MnJGBsYoK\",\"dfg63izXT\",\"aduSgxPUa\"];const serializationHash=\"framer-jS3o9\";const variantClassNames={aduSgxPUa:\"framer-v-1p2ik5p\",aGLpUcf4i:\"framer-v-g6i2ah\",Awb_XmWbL:\"framer-v-47xxc2\",byRJOmfwp:\"framer-v-1hzzxo7\",cfb8R0UZv:\"framer-v-an43vx\",CKffPSShn:\"framer-v-1iwbn54\",cnvso1YEl:\"framer-v-sgjdd4\",CwI58qLId:\"framer-v-10pvgx0\",dfg63izXT:\"framer-v-11kxrd3\",dHOZpIuqL:\"framer-v-1bmzscu\",EaFq0SwZK:\"framer-v-1s4jjpb\",eC40F5Yff:\"framer-v-31esgj\",FAezCpTTK:\"framer-v-5tcf5q\",fKrV3dwy4:\"framer-v-10mad1g\",GTc_pVk16:\"framer-v-1dmjc6h\",h3yNshzCe:\"framer-v-18wmk6n\",hgjHFaWzH:\"framer-v-38zba3\",HJeIAd4TZ:\"framer-v-lzdbys\",hr_QNi98q:\"framer-v-1a0ioem\",ikDvt5CLy:\"framer-v-f7xbu3\",j33SkQFD8:\"framer-v-awfrtr\",jGh1Kro_y:\"framer-v-1gh8dzl\",Jh0RrdcSK:\"framer-v-s9bfzq\",JJqc2vfzF:\"framer-v-1b1yhhr\",jNkGfYBSF:\"framer-v-aog79y\",jY876LpWX:\"framer-v-1skgsfg\",kpl_N3gWC:\"framer-v-1kx38nj\",LNDimJVAb:\"framer-v-feug9\",LQSO1pIke:\"framer-v-48r167\",lUulXwot3:\"framer-v-pqk4sz\",MnJGBsYoK:\"framer-v-fvxhyk\",MzU7NL_YP:\"framer-v-kfrrew\",n3l8BE1ku:\"framer-v-zhr515\",NPZUGGcbe:\"framer-v-sc14su\",P7AUAyY6c:\"framer-v-1gblyw1\",PCCiWBS7v:\"framer-v-1nxx0ef\",Q9eIc52Qb:\"framer-v-j4qp57\",qy0QGHi7t:\"framer-v-1qt34ki\",RiU66w7QV:\"framer-v-1spvqax\",St9ngbSHy:\"framer-v-1z084ac\",t4aMBmifR:\"framer-v-1gm1zs1\",uCaaQN08d:\"framer-v-uxc6g7\",UjhZxPLlc:\"framer-v-19xo4jk\",v8ysDe1LD:\"framer-v-41r0s5\",Vd9CNDtxh:\"framer-v-1riqbek\",vDwSIMuUF:\"framer-v-14h3itr\",VlUS3R0mk:\"framer-v-j3hg2k\",XaY_t27jj:\"framer-v-1pfrq51\",xII4fLiuF:\"framer-v-1e0l9gf\",Y6RuDXSEi:\"framer-v-1cihmo2\",yAgqHitp9:\"framer-v-1pjaskn\",YqABQEjDA:\"framer-v-bjxr9i\",yukmkUJm9:\"framer-v-1atko89\",zB9391xmm:\"framer-v-4xz6st\",zsttp1tli:\"framer-v-cmtamq\",zvhUj4pIY:\"framer-v-1jbyedf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"3D\":\"yukmkUJm9\",\"Brand Guidelines\":\"LNDimJVAb\",\"Landing Page\":\"kpl_N3gWC\",\"Real Estate\":\"v8ysDe1LD\",Academy:\"qy0QGHi7t\",Agency:\"Vd9CNDtxh\",AI:\"zB9391xmm\",Animated:\"JJqc2vfzF\",App:\"Jh0RrdcSK\",Blog:\"vDwSIMuUF\",Business:\"zvhUj4pIY\",Changelog:\"jNkGfYBSF\",CMS:\"St9ngbSHy\",Community:\"jGh1Kro_y\",Contact:\"fKrV3dwy4\",Copy:\"aGLpUcf4i\",Customers:\"hgjHFaWzH\",Documentation:\"zsttp1tli\",Ecommerce:\"RiU66w7QV\",Education:\"MzU7NL_YP\",Effects:\"cnvso1YEl\",Emergency:\"uCaaQN08d\",Entertainment:\"xII4fLiuF\",Experts:\"GTc_pVk16\",Food:\"hr_QNi98q\",Forms:\"ikDvt5CLy\",Framer:\"FAezCpTTK\",Free:\"EaFq0SwZK\",Gallery:\"t4aMBmifR\",Health:\"h3yNshzCe\",Help:\"byRJOmfwp\",Layout:\"jY876LpWX\",Localization:\"CwI58qLId\",Management:\"Awb_XmWbL\",Marketplace:\"dHOZpIuqL\",Meetups:\"j33SkQFD8\",Membership:\"VlUS3R0mk\",Minimal:\"P7AUAyY6c\",Modern:\"CKffPSShn\",Navigation:\"Q9eIc52Qb\",New:\"LQSO1pIke\",News:\"PCCiWBS7v\",Partners:\"NPZUGGcbe\",Personal:\"YqABQEjDA\",Photography:\"HJeIAd4TZ\",Podcast:\"n3l8BE1ku\",Portfolio:\"UjhZxPLlc\",Restaurant:\"XaY_t27jj\",Resume:\"cfb8R0UZv\",SaaS:\"lUulXwot3\",SEO:\"Y6RuDXSEi\",Sidebar:\"yAgqHitp9\",Splash:\"eC40F5Yff\",Startup:\"MnJGBsYoK\",Tech:\"dfg63izXT\",Web3:\"aduSgxPUa\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"yukmkUJm9\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yukmkUJm9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"eC40F5Yff\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"LQSO1pIke\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"yAgqHitp9\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"jY876LpWX\")return true;return false;};const isDisplayed4=()=>{if([\"qy0QGHi7t\",\"Vd9CNDtxh\",\"zB9391xmm\",\"JJqc2vfzF\",\"Jh0RrdcSK\",\"vDwSIMuUF\",\"LNDimJVAb\",\"zvhUj4pIY\",\"jNkGfYBSF\",\"St9ngbSHy\",\"jGh1Kro_y\",\"fKrV3dwy4\",\"aGLpUcf4i\",\"hgjHFaWzH\",\"zsttp1tli\",\"RiU66w7QV\",\"MzU7NL_YP\",\"cnvso1YEl\",\"uCaaQN08d\",\"xII4fLiuF\",\"GTc_pVk16\",\"hr_QNi98q\",\"ikDvt5CLy\",\"FAezCpTTK\",\"EaFq0SwZK\",\"t4aMBmifR\",\"h3yNshzCe\",\"byRJOmfwp\",\"kpl_N3gWC\",\"jY876LpWX\",\"CwI58qLId\",\"Awb_XmWbL\",\"dHOZpIuqL\",\"j33SkQFD8\",\"VlUS3R0mk\",\"P7AUAyY6c\",\"CKffPSShn\",\"Q9eIc52Qb\",\"LQSO1pIke\",\"PCCiWBS7v\",\"NPZUGGcbe\",\"YqABQEjDA\",\"HJeIAd4TZ\",\"n3l8BE1ku\",\"UjhZxPLlc\",\"v8ysDe1LD\",\"XaY_t27jj\",\"cfb8R0UZv\",\"lUulXwot3\",\"Y6RuDXSEi\",\"yAgqHitp9\",\"eC40F5Yff\",\"MnJGBsYoK\",\"dfg63izXT\",\"aduSgxPUa\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"hgjHFaWzH\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"zB9391xmm\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"Jh0RrdcSK\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"JJqc2vfzF\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"Vd9CNDtxh\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"St9ngbSHy\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"uCaaQN08d\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"byRJOmfwp\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"ikDvt5CLy\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"fKrV3dwy4\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"vDwSIMuUF\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"dHOZpIuqL\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"j33SkQFD8\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"NPZUGGcbe\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"t4aMBmifR\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"GTc_pVk16\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"CwI58qLId\")return true;return false;};const isDisplayed22=()=>{if(baseVariant===\"cnvso1YEl\")return true;return false;};const isDisplayed23=()=>{if(baseVariant===\"Awb_XmWbL\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"Q9eIc52Qb\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"Y6RuDXSEi\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"qy0QGHi7t\")return true;return false;};const isDisplayed27=()=>{if(baseVariant===\"aGLpUcf4i\")return true;return false;};const isDisplayed28=()=>{if(baseVariant===\"FAezCpTTK\")return true;return false;};const isDisplayed29=()=>{if(baseVariant===\"jGh1Kro_y\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1atko89\",className,classNames),\"data-framer-name\":\"3D\",layoutDependency:layoutDependency,layoutId:\"yukmkUJm9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aduSgxPUa:{\"data-framer-name\":\"Web3\"},aGLpUcf4i:{\"data-framer-name\":\"Copy\"},Awb_XmWbL:{\"data-framer-name\":\"Management\"},byRJOmfwp:{\"data-framer-name\":\"Help\"},cfb8R0UZv:{\"data-framer-name\":\"Resume\"},CKffPSShn:{\"data-framer-name\":\"Modern\"},cnvso1YEl:{\"data-framer-name\":\"Effects\"},CwI58qLId:{\"data-framer-name\":\"Localization\"},dfg63izXT:{\"data-framer-name\":\"Tech\"},dHOZpIuqL:{\"data-framer-name\":\"Marketplace\"},EaFq0SwZK:{\"data-framer-name\":\"Free\"},eC40F5Yff:{\"data-framer-name\":\"Splash\"},FAezCpTTK:{\"data-framer-name\":\"Framer\"},fKrV3dwy4:{\"data-framer-name\":\"Contact\"},GTc_pVk16:{\"data-framer-name\":\"Experts\"},h3yNshzCe:{\"data-framer-name\":\"Health\"},hgjHFaWzH:{\"data-framer-name\":\"Customers\"},HJeIAd4TZ:{\"data-framer-name\":\"Photography\"},hr_QNi98q:{\"data-framer-name\":\"Food\"},ikDvt5CLy:{\"data-framer-name\":\"Forms\"},j33SkQFD8:{\"data-framer-name\":\"Meetups\"},jGh1Kro_y:{\"data-framer-name\":\"Community\"},Jh0RrdcSK:{\"data-framer-name\":\"App\"},JJqc2vfzF:{\"data-framer-name\":\"Animated\"},jNkGfYBSF:{\"data-framer-name\":\"Changelog\"},jY876LpWX:{\"data-framer-name\":\"Layout\"},kpl_N3gWC:{\"data-framer-name\":\"Landing Page\"},LNDimJVAb:{\"data-framer-name\":\"Brand Guidelines\"},LQSO1pIke:{\"data-framer-name\":\"New\"},lUulXwot3:{\"data-framer-name\":\"SaaS\"},MnJGBsYoK:{\"data-framer-name\":\"Startup\"},MzU7NL_YP:{\"data-framer-name\":\"Education\"},n3l8BE1ku:{\"data-framer-name\":\"Podcast\"},NPZUGGcbe:{\"data-framer-name\":\"Partners\"},P7AUAyY6c:{\"data-framer-name\":\"Minimal\"},PCCiWBS7v:{\"data-framer-name\":\"News\"},Q9eIc52Qb:{\"data-framer-name\":\"Navigation\"},qy0QGHi7t:{\"data-framer-name\":\"Academy\"},RiU66w7QV:{\"data-framer-name\":\"Ecommerce\"},St9ngbSHy:{\"data-framer-name\":\"CMS\"},t4aMBmifR:{\"data-framer-name\":\"Gallery\"},uCaaQN08d:{\"data-framer-name\":\"Emergency\"},UjhZxPLlc:{\"data-framer-name\":\"Portfolio\"},v8ysDe1LD:{\"data-framer-name\":\"Real Estate\"},Vd9CNDtxh:{\"data-framer-name\":\"Agency\"},vDwSIMuUF:{\"data-framer-name\":\"Blog\"},VlUS3R0mk:{\"data-framer-name\":\"Membership\"},XaY_t27jj:{\"data-framer-name\":\"Restaurant\"},xII4fLiuF:{\"data-framer-name\":\"Entertainment\"},Y6RuDXSEi:{\"data-framer-name\":\"SEO\"},yAgqHitp9:{\"data-framer-name\":\"Sidebar\"},YqABQEjDA:{\"data-framer-name\":\"Personal\"},zB9391xmm:{\"data-framer-name\":\"AI\"},zsttp1tli:{\"data-framer-name\":\"Documentation\"},zvhUj4pIY:{\"data-framer-name\":\"Business\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ox28pg\",\"data-framer-name\":\"Splash\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"u70zF3uet\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.568 0.697 C 9.761 0.366 10.239 0.366 10.432 0.697 L 13.122 5.315 C 13.193 5.436 13.311 5.522 13.448 5.552 L 18.672 6.683 C 19.046 6.764 19.194 7.219 18.939 7.505 L 15.378 11.49 C 15.284 11.595 15.239 11.734 15.253 11.874 L 15.791 17.191 C 15.83 17.572 15.443 17.853 15.092 17.699 L 10.202 15.544 C 10.073 15.487 9.927 15.487 9.798 15.544 L 4.908 17.699 C 4.557 17.853 4.17 17.572 4.209 17.191 L 4.747 11.874 C 4.761 11.734 4.716 11.595 4.622 11.49 L 1.061 7.505 C 0.806 7.219 0.954 6.764 1.328 6.683 L 6.552 5.552 C 6.689 5.522 6.807 5.436 6.878 5.315 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10034909804,withExternalLayout:true,...addPropertyOverrides({eC40F5Yff:{svgContentId:11730408369}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1eyzix7\",\"data-framer-name\":\"New\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VXe2GdCxk\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 7 C 1 4.791 2.791 3 5 3 L 12.126 3 C 12.044 3.32 12 3.655 12 4 C 12 6.209 13.791 8 16 8 C 16.345 8 16.68 7.956 17 7.874 L 17 15 C 17 17.209 15.209 19 13 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 16 1 C 17.657 1 19 2.343 19 4 C 19 5.657 17.657 7 16 7 C 14.343 7 13 5.657 13 4 C 13 2.343 14.343 1 16 1 Z\" fill=\"#CCC\"></path></svg>',svgContentId:11089832386,withExternalLayout:true,...addPropertyOverrides({LQSO1pIke:{svgContentId:10265593321}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-126inen\",\"data-framer-name\":\"Sidebar\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"y5SYEs0oJ\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 4 C 0 1.791 1.791 0 4 0 L 14 0 C 16.209 0 18 1.791 18 4 L 18 5 C 18 5.552 17.552 6 17 6 L 1 6 C 0.448 6 0 5.552 0 5 Z\" transform=\"translate(-5 7) rotate(-90 9 3)\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 9 19 C 8.448 19 8 18.552 8 18 L 8 2 C 8 1.448 8.448 1 9 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:10815940811,withExternalLayout:true,...addPropertyOverrides({yAgqHitp9:{svgContentId:12614092565}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1m7uuba\",\"data-framer-name\":\"Layout\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hfn13VSuc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 8.5 1 C 9.052 1 9.5 1.448 9.5 2 L 9.5 18 C 9.5 18.552 9.052 19 8.5 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 10.5 2 C 10.5 1.448 10.948 1 11.5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 8.5 C 19 9.052 18.552 9.5 18 9.5 L 11.5 9.5 C 10.948 9.5 10.5 9.052 10.5 8.5 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 10.5 11.5 C 10.5 10.948 10.948 10.5 11.5 10.5 L 18 10.5 C 18.552 10.5 19 10.948 19 11.5 L 19 15 C 19 17.209 17.209 19 15 19 L 11.5 19 C 10.948 19 10.5 18.552 10.5 18 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:12548656321,withExternalLayout:true,...addPropertyOverrides({jY876LpWX:{svgContentId:8647112777}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rxaoj5\",\"data-framer-name\":\"3D\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tfFG7zGIr\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 8.723 18.482 C 9.055 18.703 9.5 18.465 9.5 18.066 L 9.5 10.783 C 9.5 10.607 9.408 10.445 9.257 10.354 L 2.757 6.454 C 2.424 6.254 2 6.494 2 6.883 L 2 12.394 C 2 13.398 2.501 14.334 3.336 14.891 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 11.277 18.482 C 10.945 18.703 10.5 18.465 10.5 18.066 L 10.5 11.066 C 10.5 10.715 10.684 10.389 10.986 10.209 L 17.243 6.454 C 17.576 6.254 18 6.494 18 6.883 L 18 12.394 C 18 13.398 17.499 14.334 16.664 14.891 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 9.743 9.346 C 9.901 9.441 10.099 9.441 10.257 9.346 L 16.785 5.429 C 17.109 5.235 17.109 4.765 16.785 4.571 L 11.543 1.426 C 10.593 0.856 9.407 0.856 8.457 1.426 L 3.215 4.571 C 2.891 4.765 2.891 5.235 3.215 5.429 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:11587244013,withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1imbf63\",\"data-framer-name\":\"Customers\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"PMlniEjJo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.245 17.632 C 9.644 18.091 10.356 18.091 10.755 17.632 L 17.287 10.119 C 18.862 8.309 18.928 5.636 17.446 3.749 L 17.25 3.5 C 15.787 1.638 13.027 1.473 11.353 3.147 L 10 4.5 L 8.647 3.147 C 6.973 1.473 4.213 1.638 2.75 3.5 L 2.554 3.749 C 1.072 5.636 1.138 8.309 2.713 10.119 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:11743323683,withExternalLayout:true,...addPropertyOverrides({hgjHFaWzH:{svgContentId:11079667113}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4scl9u\",\"data-framer-name\":\"AI\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qGHF1ESPG\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.789 3.142 C 14.976 2.905 15.905 1.976 16.142 0.789 L 16.2 0.5 C 16.266 0.172 16.734 0.172 16.8 0.5 L 16.858 0.789 C 17.095 1.976 18.024 2.905 19.211 3.142 L 19.5 3.2 C 19.828 3.266 19.828 3.734 19.5 3.8 L 19.211 3.858 C 18.024 4.095 17.095 5.024 16.858 6.211 L 16.8 6.5 C 16.734 6.828 16.266 6.828 16.2 6.5 L 16.142 6.211 C 15.905 5.024 14.976 4.095 13.789 3.858 L 13.5 3.8 C 13.172 3.734 13.172 3.266 13.5 3.2 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 4.552 9.69 C 6.135 9.373 7.373 8.135 7.69 6.552 L 8.389 3.056 C 8.522 2.388 9.478 2.388 9.611 3.056 L 10.31 6.552 C 10.627 8.135 11.865 9.373 13.448 9.69 L 16.944 10.389 C 17.612 10.522 17.612 11.478 16.944 11.611 L 13.448 12.31 C 11.865 12.627 10.627 13.865 10.31 15.448 L 9.611 18.944 C 9.478 19.612 8.522 19.612 8.389 18.944 L 7.69 15.448 C 7.373 13.865 6.135 12.627 4.552 12.31 L 1.056 11.611 C 0.388 11.478 0.388 10.522 1.056 10.389 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10309435384,withExternalLayout:true,...addPropertyOverrides({zB9391xmm:{svgContentId:11192063492}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-d1k3iz\",\"data-framer-name\":\"App\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kW2YT8ayE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 1 C 0 0.448 0.448 0 1 0 L 9 0 C 10.657 0 12 1.343 12 3 L 12 15 C 12 16.657 10.657 18 9 18 L 1 18 C 0.448 18 0 17.552 0 17 Z\" transform=\"translate(4 4) rotate(90 6 9)\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 16 1 C 17.657 1 19 2.343 19 4 L 19 5 C 19 5.552 18.552 6 18 6 L 2 6 C 1.448 6 1 5.552 1 5 L 1 4 C 1 2.343 2.343 1 4 1 Z M 3 3.5 C 3 4.052 3.448 4.5 4 4.5 C 4.552 4.5 5 4.052 5 3.5 C 5 2.948 4.552 2.5 4 2.5 C 3.448 2.5 3 2.948 3 3.5 Z M 6 3.5 C 6 4.052 6.448 4.5 7 4.5 C 7.552 4.5 8 4.052 8 3.5 C 8 2.948 7.552 2.5 7 2.5 C 6.448 2.5 6 2.948 6 3.5 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10425869636,withExternalLayout:true,...addPropertyOverrides({Jh0RrdcSK:{svgContentId:10683121274}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17swt4d\",\"data-framer-name\":\"Animated\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AY6LcCpXI\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 7 13.196 C 7 13.981 7.864 14.46 8.53 14.044 L 13.643 10.848 C 14.27 10.456 14.27 9.544 13.643 9.152 L 8.53 5.956 C 7.864 5.54 7 6.019 7 6.804 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10476573381,withExternalLayout:true,...addPropertyOverrides({JJqc2vfzF:{svgContentId:10156165168}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17bgcka\",\"data-framer-name\":\"Agency\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JqY6m7M9e\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 3 C 1 1.895 1.895 1 3 1 L 17 1 C 18.105 1 19 1.895 19 3 L 19 13 C 19 14.105 18.105 15 17 15 L 3 15 C 1.895 15 1 14.105 1 13 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 7 17 C 7 16.448 7.448 16 8 16 L 12 16 C 12.552 16 13 16.448 13 17 L 13 18 C 13 18.552 12.552 19 12 19 L 8 19 C 7.448 19 7 18.552 7 18 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:10434126686,withExternalLayout:true,...addPropertyOverrides({Vd9CNDtxh:{svgContentId:10206719559}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14riiy9\",\"data-framer-name\":\"CMS\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"UEtuiX0dF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.418 1 18 2.567 18 4.5 C 18 6.433 14.418 8 10 8 C 5.582 8 2 6.433 2 4.5 C 2 2.567 5.582 1 10 1 Z M 18 14.5 C 18 16.433 14.418 18 10 18 C 5.582 18 2 16.433 2 14.5 L 2 11.5 C 2 13.433 5.582 15 10 15 C 14.418 15 18 13.433 18 11.5 Z M 18 9.5 C 18 11.433 14.418 13 10 13 C 5.582 13 2 11.433 2 9.5 L 2 6.5 C 2 8.433 5.582 10 10 10 C 14.418 10 18 8.433 18 6.5 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:11743551455,withExternalLayout:true,...addPropertyOverrides({St9ngbSHy:{svgContentId:10106634266}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15gq3vn\",\"data-framer-name\":\"Emergency\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"vr1LnFYon\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0.886 16.493 C 0.494 17.16 0.975 18 1.748 18 L 18.252 18 C 19.025 18 19.506 17.16 19.114 16.493 L 10.862 2.465 C 10.475 1.808 9.525 1.808 9.138 2.465 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 10 14 C 10.552 14 11 14.448 11 15 C 11 15.552 10.552 16 10 16 C 9.448 16 9 15.552 9 15 C 9 14.448 9.448 14 10 14 Z\" fill=\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\"></path><path d=\"M 10 12 L 10 7.5\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9243709927,withExternalLayout:true,...addPropertyOverrides({uCaaQN08d:{svgContentId:11760794336}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0h208\",\"data-framer-name\":\"Help\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Gq7VxXak0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 7 8 L 7 8 C 7 6.343 8.343 5 10 5 L 10 5 C 11.657 5 13 6.343 13 8 L 13 8 C 13 9.657 11.657 11 10 11 L 10 11 L 10 12\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 10 14 C 10.552 14 11 14.448 11 15 C 11 15.552 10.552 16 10 16 C 9.448 16 9 15.552 9 15 C 9 14.448 9.448 14 10 14 Z\" fill=\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\"></path></svg>',svgContentId:11301324907,withExternalLayout:true,...addPropertyOverrides({byRJOmfwp:{svgContentId:9887336431}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fmy3pd\",\"data-framer-name\":\"Forms\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fep0SetA9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 3 C 1 1.895 1.895 1 3 1 L 17 1 C 18.105 1 19 1.895 19 3 L 19 7.5 C 19 8.605 18.105 9.5 17 9.5 L 3 9.5 C 1.895 9.5 1 8.605 1 7.5 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 1 12.5 C 1 11.395 1.895 10.5 3 10.5 L 17 10.5 C 18.105 10.5 19 11.395 19 12.5 L 19 17 C 19 18.105 18.105 19 17 19 L 3 19 C 1.895 19 1 18.105 1 17 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:10182858493,withExternalLayout:true,...addPropertyOverrides({ikDvt5CLy:{svgContentId:10986938260}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1phr0in\",\"data-framer-name\":\"Contact\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mvHzjT0Ib\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 3.343 2.343 2 4 2 L 16 2 C 17.657 2 19 3.343 19 5 L 19 5.412 C 19 5.775 18.803 6.109 18.486 6.286 L 10 11 L 1.514 6.286 C 1.197 6.109 1 5.775 1 5.412 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 1 9.2 C 1 8.437 1.819 7.955 2.486 8.325 L 10 12.5 L 17.514 8.325 C 18.181 7.955 19 8.437 19 9.2 L 19 15 C 19 16.657 17.657 18 16 18 L 4 18 C 2.343 18 1 16.657 1 15 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:10334461499,withExternalLayout:true,...addPropertyOverrides({fKrV3dwy4:{svgContentId:9025618821}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h69wcw\",\"data-framer-name\":\"Blog\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AHBTnH9qz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 2 8 C 2 7.448 2.448 7 3 7 L 17 7 C 17.552 7 18 7.448 18 8 L 18 8 C 18 8.552 17.552 9 17 9 L 3 9 C 2.448 9 2 8.552 2 8 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 2 4 C 2 3.448 2.448 3 3 3 L 17 3 C 17.552 3 18 3.448 18 4 L 18 4 C 18 4.552 17.552 5 17 5 L 3 5 C 2.448 5 2 4.552 2 4 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 2 12 C 2 11.448 2.448 11 3 11 L 17 11 C 17.552 11 18 11.448 18 12 L 18 12 C 18 12.552 17.552 13 17 13 L 3 13 C 2.448 13 2 12.552 2 12 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 2 16 C 2 15.448 2.448 15 3 15 L 11 15 C 11.552 15 12 15.448 12 16 L 12 16 C 12 16.552 11.552 17 11 17 L 3 17 C 2.448 17 2 16.552 2 16 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:8857760184,withExternalLayout:true,...addPropertyOverrides({vDwSIMuUF:{svgContentId:9104586701}},baseVariant,gestureVariant)}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-18v2ix\",\"data-framer-name\":\"Marketplace\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ixx_S4lpr\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.243 4.03 C 1.688 2.249 3.288 1 5.123 1 L 14.877 1 C 16.712 1 18.312 2.249 18.757 4.03 L 18.8 4.2 C 18.902 4.606 18.594 5 18.175 5 L 1.825 5 C 1.406 5 1.098 4.606 1.2 4.2 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 1 7 C 1 6.448 1.448 6 2 6 L 18 6 C 18.552 6 19 6.448 19 7 L 19 16 C 19 17.657 17.657 19 16 19 L 4 19 C 2.343 19 1 17.657 1 16 Z M 14.143 8 C 13.788 8 13.5 8.288 13.5 8.643 L 13.5 9 C 13.5 10.933 11.933 12.5 10 12.5 C 8.067 12.5 6.5 10.933 6.5 9 L 6.5 8.643 C 6.5 8.288 6.212 8 5.857 8 L 5.545 8 C 5.244 8 5 8.244 5 8.545 L 5 9 C 5 11.761 7.239 14 10 14 C 12.761 14 15 11.761 15 9 L 15 8.545 C 15 8.244 14.756 8 14.455 8 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:9104050992,withExternalLayout:true,...addPropertyOverrides({dHOZpIuqL:{svgContentId:12557551430}},baseVariant,gestureVariant)}),isDisplayed17()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mjdoot\",\"data-framer-name\":\"Meetups\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DYjZIDSMB\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 7 C 1 5.343 2.343 4 4 4 L 16 4 C 17.657 4 19 5.343 19 7 L 19 7 C 19 7.552 18.552 8 18 8 L 2 8 C 1.448 8 1 7.552 1 7 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 1 10 C 1 9.448 1.448 9 2 9 L 18 9 C 18.552 9 19 9.448 19 10 L 19 16 C 19 17.657 17.657 19 16 19 L 4 19 C 2.343 19 1 17.657 1 16 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 4 2 C 4 1.448 4.448 1 5 1 L 5 1 C 5.552 1 6 1.448 6 2 L 6 4 C 6 4.552 5.552 5 5 5 L 5 5 C 4.448 5 4 4.552 4 4 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 14 2 C 14 1.448 14.448 1 15 1 L 15 1 C 15.552 1 16 1.448 16 2 L 16 4 C 16 4.552 15.552 5 15 5 L 15 5 C 14.448 5 14 4.552 14 4 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:12807521083,withExternalLayout:true,...addPropertyOverrides({j33SkQFD8:{svgContentId:12102855695}},baseVariant,gestureVariant)}),isDisplayed18()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mk7hbi\",\"data-framer-name\":\"Partners\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"hOjvkbyUJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 0 L 12.472 2.392 L 15.878 1.91 L 16.472 5.298 L 19.511 6.91 L 18 10 L 19.511 13.09 L 16.472 14.702 L 15.878 18.09 L 12.472 17.608 L 10 20 L 7.528 17.608 L 4.122 18.09 L 3.528 14.702 L 0.489 13.09 L 2 10 L 0.489 6.91 L 3.528 5.298 L 4.122 1.91 L 7.528 2.392 Z M 5.707 9.293 C 5.317 9.683 5.317 10.317 5.707 10.707 L 9 14 L 14.793 8.207 C 15.183 7.817 15.183 7.183 14.793 6.793 L 14.707 6.707 C 14.317 6.317 13.683 6.317 13.293 6.707 L 9 11 L 7.207 9.207 C 6.817 8.817 6.183 8.817 5.793 9.207 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10685823269,withExternalLayout:true,...addPropertyOverrides({NPZUGGcbe:{svgContentId:12096701111}},baseVariant,gestureVariant)}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1j0d7o1\",\"data-framer-name\":\"Gallery\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"x0BBRqhCY\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 3 C 1 1.895 1.895 1 3 1 L 17 1 C 18.105 1 19 1.895 19 3 L 19 11 C 19 12.105 18.105 13 17 13 L 3 13 C 1.895 13 1 12.105 1 11 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 2 15 C 2 14.448 2.448 14 3 14 L 17 14 C 17.552 14 18 14.448 18 15 L 18 15 C 18 15.552 17.552 16 17 16 L 3 16 C 2.448 16 2 15.552 2 15 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path><path d=\"M 3 18 C 3 17.448 3.448 17 4 17 L 16 17 C 16.552 17 17 17.448 17 18 L 17 18 C 17 18.552 16.552 19 16 19 L 4 19 C 3.448 19 3 18.552 3 18 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:9039773325,withExternalLayout:true,...addPropertyOverrides({t4aMBmifR:{svgContentId:12242401930}},baseVariant,gestureVariant)}),isDisplayed20()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1chd4jt\",\"data-framer-name\":\"Experts\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"eE_hsuwo3\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 5 5.875 C 5 3.114 7.239 0.875 10 0.875 L 10 0.875 C 12.761 0.875 15 3.114 15 5.875 L 15 7.875 L 5 7.875 Z\" id=\"a1270z\"></path><clipPath id=\"a1271z\"><use xlink:href=\"#a1270z\"></use></clipPath></defs><use xlink:href=\"#a1270z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" clip-path=\"url(#a1271z)\" stroke-width=\"3\" stroke=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></use></g><path d=\"M 1 8 C 1 6.343 2.343 5 4 5 L 16 5 C 17.657 5 19 6.343 19 8 L 19 8 C 19 8.552 18.552 9 18 9 L 2 9 C 1.448 9 1 8.552 1 8 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 1 11 C 1 10.448 1.448 10 2 10 L 18 10 C 18.552 10 19 10.448 19 11 L 19 16 C 19 17.657 17.657 19 16 19 L 4 19 C 2.343 19 1 17.657 1 16 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:11497066271,withExternalLayout:true,...addPropertyOverrides({GTc_pVk16:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g><defs><path d=\"M 5 5.875 C 5 3.114 7.239 0.875 10 0.875 L 10 0.875 C 12.761 0.875 15 3.114 15 5.875 L 15 7.875 L 5 7.875 Z\" id=\"a1276z\"></path><clipPath id=\"a1277z\"><use xlink:href=\"#a1276z\"></use></clipPath></defs><use xlink:href=\"#a1276z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" clip-path=\"url(#a1277z)\" stroke-width=\"3\" stroke=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></use></g><path d=\"M 1 8 C 1 6.343 2.343 5 4 5 L 16 5 C 17.657 5 19 6.343 19 8 L 19 8 C 19 8.552 18.552 9 18 9 L 2 9 C 1.448 9 1 8.552 1 8 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 1 11 C 1 10.448 1.448 10 2 10 L 18 10 C 18.552 10 19 10.448 19 11 L 19 16 C 19 17.657 17.657 19 16 19 L 4 19 C 2.343 19 1 17.657 1 16 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:11922695366}},baseVariant,gestureVariant)}),isDisplayed21()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n5kzxx\",\"data-framer-name\":\"Localization\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"onA8f7H9A\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 10.398 1 10.79 1.026 11.174 1.076 C 11.342 1.026 11.513 1 11.688 1 C 12.148 1 12.589 1.18 13 1.512 C 16.496 2.748 19 6.081 19 10 C 19 13.919 16.496 17.252 13 18.488 C 12.589 18.82 12.148 19 11.688 19 C 11.513 19 11.342 18.974 11.174 18.924 C 10.79 18.974 10.398 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 9.376 17.286 C 8.453 15.754 7.832 13.327 7.758 10.563 L 2.709 10.563 C 2.98 14.132 5.815 16.985 9.376 17.286 Z M 9.376 2.714 C 6.004 2.999 3.284 5.572 2.774 8.875 L 7.78 8.875 C 7.918 6.345 8.516 4.142 9.376 2.714 Z M 14.798 4.482 C 15.222 5.726 15.505 7.232 15.595 8.875 L 17.226 8.875 C 16.957 7.13 16.071 5.59 14.798 4.482 Z M 14.798 15.518 C 16.206 14.293 17.141 12.537 17.291 10.563 L 15.617 10.562 C 15.567 12.424 15.269 14.133 14.798 15.518 Z M 11.29 17.199 C 11.685 17.129 12.068 17.027 12.437 16.896 C 13.259 15.952 13.862 13.5 13.931 10.563 L 9.444 10.563 C 9.522 13.906 10.293 16.622 11.29 17.199 Z M 12.438 3.104 C 12.068 2.973 11.685 2.871 11.29 2.801 C 10.349 3.346 9.61 5.793 9.464 8.875 L 13.911 8.875 C 13.783 6.19 13.206 3.987 12.438 3.104 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:12738043727,withExternalLayout:true,...addPropertyOverrides({CwI58qLId:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 7.449 16.855 C 6.659 15.318 6.138 13.08 6.07 10.563 L 2.709 10.563 C 2.929 13.458 4.836 15.882 7.449 16.855 Z M 7.449 3.145 C 5.007 4.054 3.182 6.231 2.774 8.875 L 6.093 8.875 C 6.218 6.588 6.718 4.567 7.449 3.145 Z M 12.551 3.145 C 13.282 4.567 13.782 6.588 13.907 8.875 L 17.226 8.875 C 16.818 6.231 14.993 4.054 12.551 3.145 Z M 12.551 16.855 C 15.164 15.882 17.071 13.458 17.291 10.563 L 13.93 10.563 C 13.862 13.08 13.341 15.318 12.551 16.855 Z M 10 17.313 C 11.184 17.313 12.155 14.338 12.243 10.563 L 7.757 10.563 C 7.845 14.338 8.816 17.313 10 17.313 Z M 10 2.688 C 8.875 2.688 7.943 5.371 7.776 8.875 L 12.224 8.875 C 12.057 5.371 11.125 2.688 10 2.688 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:11945781368}},baseVariant,gestureVariant)}),isDisplayed22()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mbkyi5\",\"data-framer-name\":\"Effects\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wvMP4t2Ba\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 20\"><path d=\"M 9 1.601 C 9 1.11 8.368 0.913 8.089 1.316 L 0.543 12.215 C 0.314 12.547 0.551 13 0.954 13 L 6.5 13 C 6.776 13 7 13.224 7 13.5 L 7 18.399 C 7 18.89 7.632 19.087 7.911 18.684 L 15.457 7.785 C 15.686 7.453 15.449 7 15.046 7 L 9.5 7 C 9.224 7 9 6.776 9 6.5 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:11386110866,withExternalLayout:true,...addPropertyOverrides({cnvso1YEl:{svgContentId:9000712747}},baseVariant,gestureVariant)}),isDisplayed23()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-3cyq0l\",\"data-framer-name\":\"Settings\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rvO4Rlbuv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 17.423 10 C 17.423 10.697 17.665 11.373 18.108 11.911 L 18.506 12.395 C 18.837 12.797 18.884 13.363 18.623 13.814 L 17.615 15.561 C 17.354 16.012 16.841 16.255 16.327 16.169 L 15.708 16.066 C 15.021 15.952 14.314 16.08 13.711 16.429 L 13.711 16.429 C 13.107 16.778 12.643 17.326 12.399 17.979 L 12.179 18.564 C 11.996 19.052 11.53 19.375 11.009 19.375 L 8.991 19.375 C 8.47 19.375 8.004 19.052 7.821 18.564 L 7.601 17.979 C 7.357 17.326 6.893 16.778 6.289 16.429 L 6.289 16.429 C 5.686 16.08 4.979 15.952 4.292 16.066 L 3.673 16.169 C 3.159 16.255 2.646 16.012 2.385 15.561 L 1.377 13.814 C 1.116 13.363 1.163 12.797 1.494 12.395 L 1.892 11.911 C 2.335 11.373 2.577 10.697 2.577 10 L 2.577 10 C 2.577 9.303 2.335 8.627 1.892 8.089 L 1.494 7.605 C 1.163 7.203 1.116 6.637 1.377 6.186 L 2.385 4.439 C 2.646 3.988 3.159 3.745 3.673 3.831 L 4.292 3.934 C 4.979 4.048 5.686 3.92 6.289 3.571 L 6.289 3.571 C 6.893 3.222 7.357 2.674 7.601 2.021 L 7.821 1.436 C 8.004 0.948 8.47 0.625 8.991 0.625 L 11.009 0.625 C 11.53 0.625 11.996 0.948 12.179 1.436 L 12.399 2.021 C 12.643 2.674 13.107 3.222 13.711 3.571 L 13.711 3.571 C 14.314 3.92 15.021 4.048 15.708 3.934 L 16.327 3.831 C 16.841 3.745 17.354 3.988 17.615 4.439 L 18.623 6.186 C 18.884 6.637 18.837 7.203 18.506 7.605 L 18.108 8.089 C 17.665 8.627 17.423 9.303 17.423 10 Z M 6.25 10 C 6.25 12.071 7.929 13.75 10 13.75 C 12.071 13.75 13.75 12.071 13.75 10 C 13.75 7.929 12.071 6.25 10 6.25 C 7.929 6.25 6.25 7.929 6.25 10 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:12272025527,withExternalLayout:true,...addPropertyOverrides({Awb_XmWbL:{svgContentId:9547664563}},baseVariant,gestureVariant)}),isDisplayed24()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fxqgjz\",\"data-framer-name\":\"Navigation\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zBckRJQkN\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 6 C 19 6.552 18.552 7 18 7 L 2 7 C 1.448 7 1 6.552 1 6 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 1 9 C 1 8.448 1.448 8 2 8 L 18 8 C 18.552 8 19 8.448 19 9 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:10008426027,withExternalLayout:true,...addPropertyOverrides({Q9eIc52Qb:{svgContentId:11250616563}},baseVariant,gestureVariant)}),isDisplayed25()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fvcdow\",\"data-framer-name\":\"Search\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QR_Ov3TeT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 14.8 14.8 L 18 18 M 9.2 2 C 13.176 2 16.4 5.224 16.4 9.2 C 16.4 13.176 13.176 16.4 9.2 16.4 C 5.224 16.4 2 13.176 2 9.2 C 2 5.224 5.224 2 9.2 2 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" stroke-linecap=\"round\"></path></svg>',svgContentId:10033064139,withExternalLayout:true,...addPropertyOverrides({Y6RuDXSEi:{svgContentId:11718760601}},baseVariant,gestureVariant)}),isDisplayed26()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1jm5yuk\",\"data-framer-name\":\"Academy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cuYMqCdTn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4 3.277 C 4 2.497 4.853 2.018 5.519 2.422 L 16.592 9.145 C 17.233 9.535 17.233 10.465 16.592 10.855 L 5.519 17.578 C 4.853 17.982 4 17.503 4 16.723 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:12617912443,withExternalLayout:true,...addPropertyOverrides({qy0QGHi7t:{svgContentId:11019495471}},baseVariant,gestureVariant)}),isDisplayed27()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qxyxjj\",\"data-framer-name\":\"Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LyRVEQjQJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 11.5 9.5 C 11.5 8.119 12.619 7 14 7 L 20.5 7 C 21.881 7 23 8.119 23 9.5 L 23 16 C 23 17.381 21.881 18.5 20.5 18.5 L 14 18.5 C 12.619 18.5 11.5 17.381 11.5 16 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 8.5 12.5 C 7.395 12.5 6.5 13.395 6.5 14.5 L 6.5 20.5 C 6.5 22.157 7.843 23.5 9.5 23.5 L 15.5 23.5 C 16.605 23.5 17.5 22.605 17.5 21.5 L 17.5 21 C 17.5 20.448 17.052 20 16.5 20 L 13.5 20 C 11.567 20 10 18.433 10 16.5 L 10 13.5 C 10 12.948 9.552 12.5 9 12.5 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\" opacity=\"0.5\"></path></svg>',svgContentId:8601201083,withExternalLayout:true,...addPropertyOverrides({aGLpUcf4i:{svgContentId:8815558044}},baseVariant,gestureVariant)}),isDisplayed28()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15cdhdj\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EoXWWs5Ra\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 18\"><path d=\"M 12 0 L 12 6 L 6 6 L 0 0 Z M 0 6 L 6 6 L 12 12 L 6 12 L 6 18 L 0 12 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10903949187,withExternalLayout:true,...addPropertyOverrides({FAezCpTTK:{svgContentId:10746653814}},baseVariant,gestureVariant)}),isDisplayed29()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fvuplw\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NffPH6iXD\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 16 L 3.176 18.007 C 2.434 18.225 1.736 17.555 1.924 16.805 L 2.5 14.5 L 4 10 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 10 2 C 14.418 2 18 5.582 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 5.582 5.582 2 10 2 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:9650097573,withExternalLayout:true,...addPropertyOverrides({jGh1Kro_y:{svgContentId:10696468124}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jS3o9.framer-oyvt48, .framer-jS3o9 .framer-oyvt48 { display: block; }\",\".framer-jS3o9.framer-1atko89 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-jS3o9 .framer-1ox28pg, .framer-jS3o9 .framer-1eyzix7, .framer-jS3o9 .framer-126inen, .framer-jS3o9 .framer-1m7uuba, .framer-jS3o9 .framer-rxaoj5, .framer-jS3o9 .framer-1imbf63, .framer-jS3o9 .framer-4scl9u, .framer-jS3o9 .framer-d1k3iz, .framer-jS3o9 .framer-17swt4d, .framer-jS3o9 .framer-17bgcka, .framer-jS3o9 .framer-14riiy9, .framer-jS3o9 .framer-15gq3vn, .framer-jS3o9 .framer-1e0h208, .framer-jS3o9 .framer-1fmy3pd, .framer-jS3o9 .framer-1phr0in, .framer-jS3o9 .framer-h69wcw, .framer-jS3o9 .framer-18v2ix, .framer-jS3o9 .framer-1mjdoot, .framer-jS3o9 .framer-1mk7hbi, .framer-jS3o9 .framer-1j0d7o1, .framer-jS3o9 .framer-1chd4jt, .framer-jS3o9 .framer-n5kzxx, .framer-jS3o9 .framer-3cyq0l, .framer-jS3o9 .framer-fxqgjz, .framer-jS3o9 .framer-fvcdow, .framer-jS3o9 .framer-1jm5yuk, .framer-jS3o9 .framer-1fvuplw { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-jS3o9 .framer-1mbkyi5 { flex: none; height: 20px; position: relative; width: 16px; }\",\".framer-jS3o9 .framer-1qxyxjj { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-jS3o9 .framer-15cdhdj { flex: none; height: 18px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jS3o9.framer-1atko89 { gap: 0px; } .framer-jS3o9.framer-1atko89 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jS3o9.framer-1atko89 > :first-child { margin-left: 0px; } .framer-jS3o9.framer-1atko89 > :last-child { margin-right: 0px; } }\",\".framer-jS3o9.framer-v-1qt34ki.framer-1atko89, .framer-jS3o9.framer-v-1riqbek.framer-1atko89, .framer-jS3o9.framer-v-4xz6st.framer-1atko89, .framer-jS3o9.framer-v-1b1yhhr.framer-1atko89, .framer-jS3o9.framer-v-s9bfzq.framer-1atko89, .framer-jS3o9.framer-v-14h3itr.framer-1atko89, .framer-jS3o9.framer-v-feug9.framer-1atko89, .framer-jS3o9.framer-v-1jbyedf.framer-1atko89, .framer-jS3o9.framer-v-aog79y.framer-1atko89, .framer-jS3o9.framer-v-1z084ac.framer-1atko89, .framer-jS3o9.framer-v-1gh8dzl.framer-1atko89, .framer-jS3o9.framer-v-10mad1g.framer-1atko89, .framer-jS3o9.framer-v-g6i2ah.framer-1atko89, .framer-jS3o9.framer-v-38zba3.framer-1atko89, .framer-jS3o9.framer-v-cmtamq.framer-1atko89, .framer-jS3o9.framer-v-1spvqax.framer-1atko89, .framer-jS3o9.framer-v-kfrrew.framer-1atko89, .framer-jS3o9.framer-v-sgjdd4.framer-1atko89, .framer-jS3o9.framer-v-uxc6g7.framer-1atko89, .framer-jS3o9.framer-v-1e0l9gf.framer-1atko89, .framer-jS3o9.framer-v-1dmjc6h.framer-1atko89, .framer-jS3o9.framer-v-1a0ioem.framer-1atko89, .framer-jS3o9.framer-v-f7xbu3.framer-1atko89, .framer-jS3o9.framer-v-5tcf5q.framer-1atko89, .framer-jS3o9.framer-v-1s4jjpb.framer-1atko89, .framer-jS3o9.framer-v-1gm1zs1.framer-1atko89, .framer-jS3o9.framer-v-18wmk6n.framer-1atko89, .framer-jS3o9.framer-v-1hzzxo7.framer-1atko89, .framer-jS3o9.framer-v-1kx38nj.framer-1atko89, .framer-jS3o9.framer-v-1skgsfg.framer-1atko89, .framer-jS3o9.framer-v-10pvgx0.framer-1atko89, .framer-jS3o9.framer-v-47xxc2.framer-1atko89, .framer-jS3o9.framer-v-1bmzscu.framer-1atko89, .framer-jS3o9.framer-v-awfrtr.framer-1atko89, .framer-jS3o9.framer-v-j3hg2k.framer-1atko89, .framer-jS3o9.framer-v-1gblyw1.framer-1atko89, .framer-jS3o9.framer-v-1iwbn54.framer-1atko89, .framer-jS3o9.framer-v-j4qp57.framer-1atko89, .framer-jS3o9.framer-v-48r167.framer-1atko89, .framer-jS3o9.framer-v-1nxx0ef.framer-1atko89, .framer-jS3o9.framer-v-sc14su.framer-1atko89, .framer-jS3o9.framer-v-bjxr9i.framer-1atko89, .framer-jS3o9.framer-v-lzdbys.framer-1atko89, .framer-jS3o9.framer-v-zhr515.framer-1atko89, .framer-jS3o9.framer-v-19xo4jk.framer-1atko89, .framer-jS3o9.framer-v-41r0s5.framer-1atko89, .framer-jS3o9.framer-v-1pfrq51.framer-1atko89, .framer-jS3o9.framer-v-an43vx.framer-1atko89, .framer-jS3o9.framer-v-pqk4sz.framer-1atko89, .framer-jS3o9.framer-v-1cihmo2.framer-1atko89, .framer-jS3o9.framer-v-1pjaskn.framer-1atko89, .framer-jS3o9.framer-v-31esgj.framer-1atko89, .framer-jS3o9.framer-v-fvxhyk.framer-1atko89, .framer-jS3o9.framer-v-11kxrd3.framer-1atko89, .framer-jS3o9.framer-v-1p2ik5p.framer-1atko89 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\",\".framer-jS3o9.framer-v-sgjdd4 .framer-1mbkyi5 { order: 22; }\",\".framer-jS3o9.framer-v-1gm1zs1 .framer-1j0d7o1 { order: 19; }\",\".framer-jS3o9.framer-v-1hzzxo7 .framer-1e0h208 { order: 12; }\",\".framer-jS3o9.framer-v-10pvgx0 .framer-n5kzxx { order: 21; }\",\".framer-jS3o9.framer-v-1bmzscu .framer-18v2ix { order: 16; }\",\".framer-jS3o9.framer-v-awfrtr .framer-1mjdoot { order: 17; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qy0QGHi7t\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vd9CNDtxh\":{\"layout\":[\"fixed\",\"fixed\"]},\"zB9391xmm\":{\"layout\":[\"fixed\",\"fixed\"]},\"JJqc2vfzF\":{\"layout\":[\"fixed\",\"fixed\"]},\"Jh0RrdcSK\":{\"layout\":[\"fixed\",\"fixed\"]},\"vDwSIMuUF\":{\"layout\":[\"fixed\",\"fixed\"]},\"LNDimJVAb\":{\"layout\":[\"fixed\",\"fixed\"]},\"zvhUj4pIY\":{\"layout\":[\"fixed\",\"fixed\"]},\"jNkGfYBSF\":{\"layout\":[\"fixed\",\"fixed\"]},\"St9ngbSHy\":{\"layout\":[\"fixed\",\"fixed\"]},\"jGh1Kro_y\":{\"layout\":[\"fixed\",\"fixed\"]},\"fKrV3dwy4\":{\"layout\":[\"fixed\",\"fixed\"]},\"aGLpUcf4i\":{\"layout\":[\"fixed\",\"fixed\"]},\"hgjHFaWzH\":{\"layout\":[\"fixed\",\"fixed\"]},\"zsttp1tli\":{\"layout\":[\"fixed\",\"fixed\"]},\"RiU66w7QV\":{\"layout\":[\"fixed\",\"fixed\"]},\"MzU7NL_YP\":{\"layout\":[\"fixed\",\"fixed\"]},\"cnvso1YEl\":{\"layout\":[\"fixed\",\"fixed\"]},\"uCaaQN08d\":{\"layout\":[\"fixed\",\"fixed\"]},\"xII4fLiuF\":{\"layout\":[\"fixed\",\"fixed\"]},\"GTc_pVk16\":{\"layout\":[\"fixed\",\"fixed\"]},\"hr_QNi98q\":{\"layout\":[\"fixed\",\"fixed\"]},\"ikDvt5CLy\":{\"layout\":[\"fixed\",\"fixed\"]},\"FAezCpTTK\":{\"layout\":[\"fixed\",\"fixed\"]},\"EaFq0SwZK\":{\"layout\":[\"fixed\",\"fixed\"]},\"t4aMBmifR\":{\"layout\":[\"fixed\",\"fixed\"]},\"h3yNshzCe\":{\"layout\":[\"fixed\",\"fixed\"]},\"byRJOmfwp\":{\"layout\":[\"fixed\",\"fixed\"]},\"kpl_N3gWC\":{\"layout\":[\"fixed\",\"fixed\"]},\"jY876LpWX\":{\"layout\":[\"fixed\",\"fixed\"]},\"CwI58qLId\":{\"layout\":[\"fixed\",\"fixed\"]},\"Awb_XmWbL\":{\"layout\":[\"fixed\",\"fixed\"]},\"dHOZpIuqL\":{\"layout\":[\"fixed\",\"fixed\"]},\"j33SkQFD8\":{\"layout\":[\"fixed\",\"fixed\"]},\"VlUS3R0mk\":{\"layout\":[\"fixed\",\"fixed\"]},\"P7AUAyY6c\":{\"layout\":[\"fixed\",\"fixed\"]},\"CKffPSShn\":{\"layout\":[\"fixed\",\"fixed\"]},\"Q9eIc52Qb\":{\"layout\":[\"fixed\",\"fixed\"]},\"LQSO1pIke\":{\"layout\":[\"fixed\",\"fixed\"]},\"PCCiWBS7v\":{\"layout\":[\"fixed\",\"fixed\"]},\"NPZUGGcbe\":{\"layout\":[\"fixed\",\"fixed\"]},\"YqABQEjDA\":{\"layout\":[\"fixed\",\"fixed\"]},\"HJeIAd4TZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"n3l8BE1ku\":{\"layout\":[\"fixed\",\"fixed\"]},\"UjhZxPLlc\":{\"layout\":[\"fixed\",\"fixed\"]},\"v8ysDe1LD\":{\"layout\":[\"fixed\",\"fixed\"]},\"XaY_t27jj\":{\"layout\":[\"fixed\",\"fixed\"]},\"cfb8R0UZv\":{\"layout\":[\"fixed\",\"fixed\"]},\"lUulXwot3\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y6RuDXSEi\":{\"layout\":[\"fixed\",\"fixed\"]},\"yAgqHitp9\":{\"layout\":[\"fixed\",\"fixed\"]},\"eC40F5Yff\":{\"layout\":[\"fixed\",\"fixed\"]},\"MnJGBsYoK\":{\"layout\":[\"fixed\",\"fixed\"]},\"dfg63izXT\":{\"layout\":[\"fixed\",\"fixed\"]},\"aduSgxPUa\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerYeRNZLTy_=withCSS(Component,css,\"framer-jS3o9\");export default FramerYeRNZLTy_;FramerYeRNZLTy_.displayName=\"Framer Icon Kit\";FramerYeRNZLTy_.defaultProps={height:20,width:20};addPropertyControls(FramerYeRNZLTy_,{variant:{options:[\"yukmkUJm9\",\"qy0QGHi7t\",\"Vd9CNDtxh\",\"zB9391xmm\",\"JJqc2vfzF\",\"Jh0RrdcSK\",\"vDwSIMuUF\",\"LNDimJVAb\",\"zvhUj4pIY\",\"jNkGfYBSF\",\"St9ngbSHy\",\"jGh1Kro_y\",\"fKrV3dwy4\",\"aGLpUcf4i\",\"hgjHFaWzH\",\"zsttp1tli\",\"RiU66w7QV\",\"MzU7NL_YP\",\"cnvso1YEl\",\"uCaaQN08d\",\"xII4fLiuF\",\"GTc_pVk16\",\"hr_QNi98q\",\"ikDvt5CLy\",\"FAezCpTTK\",\"EaFq0SwZK\",\"t4aMBmifR\",\"h3yNshzCe\",\"byRJOmfwp\",\"kpl_N3gWC\",\"jY876LpWX\",\"CwI58qLId\",\"Awb_XmWbL\",\"dHOZpIuqL\",\"j33SkQFD8\",\"VlUS3R0mk\",\"P7AUAyY6c\",\"CKffPSShn\",\"Q9eIc52Qb\",\"LQSO1pIke\",\"PCCiWBS7v\",\"NPZUGGcbe\",\"YqABQEjDA\",\"HJeIAd4TZ\",\"n3l8BE1ku\",\"UjhZxPLlc\",\"v8ysDe1LD\",\"XaY_t27jj\",\"cfb8R0UZv\",\"lUulXwot3\",\"Y6RuDXSEi\",\"yAgqHitp9\",\"eC40F5Yff\",\"MnJGBsYoK\",\"dfg63izXT\",\"aduSgxPUa\"],optionTitles:[\"3D\",\"Academy\",\"Agency\",\"AI\",\"Animated\",\"App\",\"Blog\",\"Brand Guidelines\",\"Business\",\"Changelog\",\"CMS\",\"Community\",\"Contact\",\"Copy\",\"Customers\",\"Documentation\",\"Ecommerce\",\"Education\",\"Effects\",\"Emergency\",\"Entertainment\",\"Experts\",\"Food\",\"Forms\",\"Framer\",\"Free\",\"Gallery\",\"Health\",\"Help\",\"Landing Page\",\"Layout\",\"Localization\",\"Management\",\"Marketplace\",\"Meetups\",\"Membership\",\"Minimal\",\"Modern\",\"Navigation\",\"New\",\"News\",\"Partners\",\"Personal\",\"Photography\",\"Podcast\",\"Portfolio\",\"Real Estate\",\"Restaurant\",\"Resume\",\"SaaS\",\"SEO\",\"Sidebar\",\"Splash\",\"Startup\",\"Tech\",\"Web3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerYeRNZLTy_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYeRNZLTy_\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qy0QGHi7t\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vd9CNDtxh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zB9391xmm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JJqc2vfzF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Jh0RrdcSK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vDwSIMuUF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LNDimJVAb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zvhUj4pIY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jNkGfYBSF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"St9ngbSHy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jGh1Kro_y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fKrV3dwy4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aGLpUcf4i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hgjHFaWzH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zsttp1tli\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RiU66w7QV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MzU7NL_YP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cnvso1YEl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uCaaQN08d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xII4fLiuF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GTc_pVk16\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hr_QNi98q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ikDvt5CLy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FAezCpTTK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EaFq0SwZK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"t4aMBmifR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h3yNshzCe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"byRJOmfwp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kpl_N3gWC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jY876LpWX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CwI58qLId\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Awb_XmWbL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dHOZpIuqL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j33SkQFD8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VlUS3R0mk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P7AUAyY6c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CKffPSShn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Q9eIc52Qb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LQSO1pIke\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PCCiWBS7v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NPZUGGcbe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YqABQEjDA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HJeIAd4TZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"n3l8BE1ku\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UjhZxPLlc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v8ysDe1LD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XaY_t27jj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cfb8R0UZv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lUulXwot3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y6RuDXSEi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yAgqHitp9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eC40F5Yff\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MnJGBsYoK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dfg63izXT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aduSgxPUa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"20\",\"framerIntrinsicHeight\":\"20\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YeRNZLTy_.map", "// Generated by Framer (19c8cf2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FramerIconKit from\"https://framerusercontent.com/modules/JtFJngCd69ZfL42U967h/wzmZDSs6Ce3yFXpijAMu/YeRNZLTy_.js\";const FramerIconKitFonts=getFonts(FramerIconKit);const FramerIconKitControls=getPropertyControls(FramerIconKit);const enabledGestures={xdokodq8A:{hover:true}};const cycleOrder=[\"xdokodq8A\",\"TRh3aydsx\"];const serializationHash=\"framer-ew87D\";const variantClassNames={TRh3aydsx:\"framer-v-slrnor\",xdokodq8A:\"framer-v-ves7rs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"3D\":\"yukmkUJm9\",\"Brand Guidelines\":\"LNDimJVAb\",\"Landing Page\":\"kpl_N3gWC\",\"Real Estate\":\"v8ysDe1LD\",Academy:\"qy0QGHi7t\",Agency:\"Vd9CNDtxh\",AI:\"zB9391xmm\",Animated:\"JJqc2vfzF\",App:\"Jh0RrdcSK\",Blog:\"vDwSIMuUF\",Business:\"zvhUj4pIY\",Changelog:\"jNkGfYBSF\",CMS:\"St9ngbSHy\",Community:\"jGh1Kro_y\",Contact:\"fKrV3dwy4\",Copy:\"aGLpUcf4i\",Customers:\"hgjHFaWzH\",Documentation:\"zsttp1tli\",Ecommerce:\"RiU66w7QV\",Education:\"MzU7NL_YP\",Effects:\"cnvso1YEl\",Emergency:\"uCaaQN08d\",Entertainment:\"xII4fLiuF\",Experts:\"GTc_pVk16\",Food:\"hr_QNi98q\",Forms:\"ikDvt5CLy\",Framer:\"FAezCpTTK\",Free:\"EaFq0SwZK\",Gallery:\"t4aMBmifR\",Health:\"h3yNshzCe\",Help:\"byRJOmfwp\",Layout:\"jY876LpWX\",Localization:\"CwI58qLId\",Management:\"Awb_XmWbL\",Marketplace:\"dHOZpIuqL\",Meetups:\"j33SkQFD8\",Membership:\"VlUS3R0mk\",Minimal:\"P7AUAyY6c\",Modern:\"CKffPSShn\",Navigation:\"Q9eIc52Qb\",New:\"LQSO1pIke\",News:\"PCCiWBS7v\",Partners:\"NPZUGGcbe\",Personal:\"YqABQEjDA\",Photography:\"HJeIAd4TZ\",Podcast:\"n3l8BE1ku\",Portfolio:\"UjhZxPLlc\",Restaurant:\"XaY_t27jj\",Resume:\"cfb8R0UZv\",SaaS:\"lUulXwot3\",SEO:\"Y6RuDXSEi\",Sidebar:\"yAgqHitp9\",Splash:\"eC40F5Yff\",Startup:\"MnJGBsYoK\",Tech:\"dfg63izXT\",Web3:\"aduSgxPUa\"};const humanReadableVariantMap={Large:\"xdokodq8A\",Small:\"TRh3aydsx\"};const getProps=({height,icon,id,link,subtitle,title,width,...props})=>{var _ref,_humanReadableEnumMap_icon,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,duIKkuslC:(_ref=subtitle!==null&&subtitle!==void 0?subtitle:props.duIKkuslC)!==null&&_ref!==void 0?_ref:\"Subtitle\",IqW2gILX9:(_ref2=(_ref1=(_humanReadableEnumMap_icon=humanReadableEnumMap[icon])!==null&&_humanReadableEnumMap_icon!==void 0?_humanReadableEnumMap_icon:icon)!==null&&_ref1!==void 0?_ref1:props.IqW2gILX9)!==null&&_ref2!==void 0?_ref2:\"yukmkUJm9\",MXeGwX6es:link!==null&&link!==void 0?link:props.MXeGwX6es,TWgR9IEL9:(_ref3=title!==null&&title!==void 0?title:props.TWgR9IEL9)!==null&&_ref3!==void 0?_ref3:\"Title\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"xdokodq8A\"};};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,TWgR9IEL9,duIKkuslC,MXeGwX6es,IqW2gILX9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xdokodq8A\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TRh3aydsx\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({TRh3aydsx:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:MXeGwX6es,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-ves7rs\",className,classNames)} framer-wpd81b`,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"xdokodq8A\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({\"xdokodq8A-hover\":{\"data-framer-name\":undefined},TRh3aydsx:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwlxp\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"NzdRrlQCW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c6c45e5e-6798-4986-8603-997e62483f92, rgba(0, 0, 0, 0.05))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,filter:\"none\",WebkitFilter:\"none\"},variants:{\"xdokodq8A-hover\":{backgroundColor:\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\",filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},TRh3aydsx:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-20-40)/2)+10,...addPropertyOverrides({TRh3aydsx:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-20-20)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gplpbh-container\",layoutDependency:layoutDependency,layoutId:\"t7ZLdyps6-container\",children:/*#__PURE__*/_jsx(FramerIconKit,{height:\"100%\",id:\"t7ZLdyps6\",layoutId:\"t7ZLdyps6\",style:{height:\"100%\",width:\"100%\"},variant:IqW2gILX9,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hu3z8g\",\"data-framer-name\":\"Topbar Links Text Jorn\",layoutDependency:layoutDependency,layoutId:\"a3WLxV64P\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Title\"})}),className:\"framer-w1ysyt\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"U0TFUT0Cp\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.8},text:TWgR9IEL9,variants:{TRh3aydsx:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TRh3aydsx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Title\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Subtitle\"})}),className:\"framer-4mc8mx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"votgjXH5Z\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},text:duIKkuslC,variants:{\"xdokodq8A-hover\":{opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ew87D.framer-wpd81b, .framer-ew87D .framer-wpd81b { display: block; }\",\".framer-ew87D.framer-ves7rs { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: 200px; }\",\".framer-ew87D .framer-xwlxp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-ew87D .framer-gplpbh-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-ew87D .framer-hu3z8g { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-around; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ew87D .framer-w1ysyt, .framer-ew87D .framer-4mc8mx { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ew87D.framer-ves7rs, .framer-ew87D .framer-xwlxp { gap: 0px; } .framer-ew87D.framer-ves7rs > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ew87D.framer-ves7rs > :first-child, .framer-ew87D .framer-xwlxp > :first-child { margin-left: 0px; } .framer-ew87D.framer-ves7rs > :last-child, .framer-ew87D .framer-xwlxp > :last-child { margin-right: 0px; } .framer-ew87D .framer-xwlxp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-ew87D.framer-v-slrnor .framer-xwlxp { height: min-content; width: min-content; }\",'.framer-ew87D[data-border=\"true\"]::after, .framer-ew87D [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 60\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TRh3aydsx\":{\"layout\":[\"fixed\",\"auto\"]},\"kX3FliOBb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"TWgR9IEL9\":\"title\",\"duIKkuslC\":\"subtitle\",\"MXeGwX6es\":\"link\",\"IqW2gILX9\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerU_0Mb9OEL=withCSS(Component,css,\"framer-ew87D\");export default FramerU_0Mb9OEL;FramerU_0Mb9OEL.displayName=\"Nav/Topbar Popover Link\";FramerU_0Mb9OEL.defaultProps={height:60,width:200};addPropertyControls(FramerU_0Mb9OEL,{variant:{options:[\"xdokodq8A\",\"TRh3aydsx\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},TWgR9IEL9:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},duIKkuslC:{defaultValue:\"Subtitle\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},MXeGwX6es:{title:\"Link\",type:ControlType.Link},IqW2gILX9:(FramerIconKitControls===null||FramerIconKitControls===void 0?void 0:FramerIconKitControls[\"variant\"])&&{...FramerIconKitControls[\"variant\"],defaultValue:\"yukmkUJm9\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerU_0Mb9OEL,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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\"}]},...FramerIconKitFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU_0Mb9OEL\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerVariables\":\"{\\\"TWgR9IEL9\\\":\\\"title\\\",\\\"duIKkuslC\\\":\\\"subtitle\\\",\\\"MXeGwX6es\\\":\\\"link\\\",\\\"IqW2gILX9\\\":\\\"icon\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TRh3aydsx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kX3FliOBb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (137d430)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{OpenType}from\"https://framerusercontent.com/modules/WsLN4XQfJdeqkYSXsIEd/EpJVgKedJ044ctwpEWsa/Navigation.js\";import NavTopbarPopoverLink from\"https://framerusercontent.com/modules/Lj5J69cE0M2CZJneMTJW/7IRnLrJZpxF8MvAdprAg/U_0Mb9OEL.js\";const RichTextOpenType=OpenType(RichText);const NavTopbarPopoverLinkFonts=getFonts(NavTopbarPopoverLink);const cycleOrder=[\"fcEuBGCUL\",\"Vrd1ptJ9D\"];const serializationHash=\"framer-QJ1dL\";const variantClassNames={fcEuBGCUL:\"framer-v-p3qt7u\",Vrd1ptJ9D:\"framer-v-f2k0g0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Features: Small\":\"Vrd1ptJ9D\",Features:\"fcEuBGCUL\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fcEuBGCUL\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fcEuBGCUL\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Vrd1ptJ9D\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.ul,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p3qt7u\",className,classNames),\"data-framer-name\":\"Features\",layoutDependency:layoutDependency,layoutId:\"fcEuBGCUL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Vrd1ptJ9D:{\"data-framer-name\":\"Features: Small\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-1b7e5ot\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"eOL4zFAuD\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Design\"})}),className:\"framer-1ycvn3e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kEScilw8t\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-18xe9ja\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"nCqesHIyK\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Publish\"})}),className:\"framer-ah0bfm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wWKPlDLUv\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-14ndldx\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"IV_yN5GdP\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Scale\"})}),className:\"framer-znte7u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yHlzypQiG\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1amt81b-container\",layoutDependency:layoutDependency,layoutId:\"kI471JXHw-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Responsive design\",height:\"100%\",id:\"kI471JXHw\",IqW2gILX9:\"jY876LpWX\",layoutId:\"kI471JXHw\",MXeGwX6es:\"https://www.framer.com/features/design-layout/\",style:{width:\"100%\"},TWgR9IEL9:\"Design\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-12szfrz-container\",layoutDependency:layoutDependency,layoutId:\"tGJHeBj3T-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Site control\",height:\"100%\",id:\"tGJHeBj3T\",IqW2gILX9:\"Awb_XmWbL\",layoutId:\"tGJHeBj3T\",MXeGwX6es:\"https://www.framer.com/features/site-management/\",style:{width:\"100%\"},TWgR9IEL9:\"Management\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-h05qx0-container\",layoutDependency:layoutDependency,layoutId:\"h0AesPtyH-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Manage content\",height:\"100%\",id:\"h0AesPtyH\",IqW2gILX9:\"St9ngbSHy\",layoutId:\"h0AesPtyH\",MXeGwX6es:\"https://www.framer.com/features/cms/\",style:{width:\"100%\"},TWgR9IEL9:\"CMS\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1nvu17l-container\",layoutDependency:layoutDependency,layoutId:\"hi7kBGXis-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Link pages\",height:\"100%\",id:\"hi7kBGXis\",IqW2gILX9:\"Q9eIc52Qb\",layoutId:\"hi7kBGXis\",MXeGwX6es:\"https://www.framer.com/features/navigation/\",style:{width:\"100%\"},TWgR9IEL9:\"Navigation\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1ddgfkw-container\",layoutDependency:layoutDependency,layoutId:\"FDj6jg6zY-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Capture leads\",height:\"100%\",id:\"FDj6jg6zY\",IqW2gILX9:\"ikDvt5CLy\",layoutId:\"FDj6jg6zY\",MXeGwX6es:\"https://www.framer.com/features/forms/\",style:{width:\"100%\"},TWgR9IEL9:\"Forms\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+300}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-bwljw9-container\",layoutDependency:layoutDependency,layoutId:\"GtfHYA_HI-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Global reach\",height:\"100%\",id:\"GtfHYA_HI\",IqW2gILX9:\"CwI58qLId\",layoutId:\"GtfHYA_HI\",MXeGwX6es:\"https://www.framer.com/features/localization/\",style:{width:\"100%\"},TWgR9IEL9:\"Localization\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+360}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1dmp5yp-container\",layoutDependency:layoutDependency,layoutId:\"aIg6oXQyC-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Refined animations\",height:\"100%\",id:\"aIg6oXQyC\",IqW2gILX9:\"cnvso1YEl\",layoutId:\"aIg6oXQyC\",MXeGwX6es:\"https://www.framer.com/features/effects/\",style:{width:\"100%\"},TWgR9IEL9:\"Animations\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-405knq-container\",layoutDependency:layoutDependency,layoutId:\"OJZ6WNQmt-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Search optimized\",height:\"100%\",id:\"OJZ6WNQmt\",IqW2gILX9:\"Y6RuDXSEi\",layoutId:\"OJZ6WNQmt\",MXeGwX6es:\"https://www.framer.com/features/seo-performance/\",style:{width:\"100%\"},TWgR9IEL9:\"SEO\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({Vrd1ptJ9D:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+480}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-5w3996-container\",layoutDependency:layoutDependency,layoutId:\"gtd8HakOl-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Boost workflow\",height:\"100%\",id:\"gtd8HakOl\",IqW2gILX9:\"zB9391xmm\",layoutId:\"gtd8HakOl\",MXeGwX6es:\"https://www.framer.com/features/ai/\",style:{width:\"100%\"},TWgR9IEL9:\"AI\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({Vrd1ptJ9D:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QJ1dL.framer-1qmbg72, .framer-QJ1dL .framer-1qmbg72 { display: block; }\",\".framer-QJ1dL.framer-p3qt7u { display: grid; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 10px; position: relative; width: 680px; }\",\".framer-QJ1dL .framer-1b7e5ot, .framer-QJ1dL .framer-18xe9ja, .framer-QJ1dL .framer-14ndldx { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-QJ1dL .framer-1ycvn3e, .framer-QJ1dL .framer-ah0bfm, .framer-QJ1dL .framer-znte7u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QJ1dL .framer-1amt81b-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-QJ1dL .framer-12szfrz-container, .framer-QJ1dL .framer-h05qx0-container, .framer-QJ1dL .framer-1nvu17l-container, .framer-QJ1dL .framer-1ddgfkw-container, .framer-QJ1dL .framer-bwljw9-container, .framer-QJ1dL .framer-1dmp5yp-container, .framer-QJ1dL .framer-405knq-container, .framer-QJ1dL .framer-5w3996-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-QJ1dL .framer-1b7e5ot, .framer-QJ1dL .framer-18xe9ja, .framer-QJ1dL .framer-14ndldx { gap: 0px; } .framer-QJ1dL .framer-1b7e5ot > *, .framer-QJ1dL .framer-18xe9ja > *, .framer-QJ1dL .framer-14ndldx > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-QJ1dL .framer-1b7e5ot > :first-child, .framer-QJ1dL .framer-18xe9ja > :first-child, .framer-QJ1dL .framer-14ndldx > :first-child { margin-left: 0px; } .framer-QJ1dL .framer-1b7e5ot > :last-child, .framer-QJ1dL .framer-18xe9ja > :last-child, .framer-QJ1dL .framer-14ndldx > :last-child { margin-right: 0px; } }\",\".framer-QJ1dL.framer-v-f2k0g0.framer-p3qt7u { grid-template-columns: repeat(1, minmax(100px, 1fr)); padding: 0px; width: 300px; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-1amt81b-container { order: 3; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-12szfrz-container { order: 4; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-h05qx0-container { order: 5; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-1nvu17l-container { order: 6; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-1ddgfkw-container { order: 7; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-bwljw9-container { order: 8; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-1dmp5yp-container { order: 9; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-405knq-container { order: 10; }\",\".framer-QJ1dL.framer-v-f2k0g0 .framer-5w3996-container { order: 11; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 234\n * @framerIntrinsicWidth 680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Vrd1ptJ9D\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCh2T0RIxN=withCSS(Component,css,\"framer-QJ1dL\");export default FramerCh2T0RIxN;FramerCh2T0RIxN.displayName=\"Nav/Topbar Popover Features\";FramerCh2T0RIxN.defaultProps={height:234,width:680};addPropertyControls(FramerCh2T0RIxN,{variant:{options:[\"fcEuBGCUL\",\"Vrd1ptJ9D\"],optionTitles:[\"Features\",\"Features: Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerCh2T0RIxN,[{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\"}]},...NavTopbarPopoverLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCh2T0RIxN\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"680\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vrd1ptJ9D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"234\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ch2T0RIxN.map", "// Generated by Framer (fc584cb)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"v3kPVpEXa\",\"zjfl3maTH\",\"B6pYPERW9\",\"cgxlR_4Pa\",\"PHpCM9rOQ\",\"jRrGhekVD\",\"bNpyN7PcI\",\"QvYFxTFvE\",\"zSsT4aC0n\",\"l8z62CFOK\",\"P3p864Nsn\",\"vRQ9AdIpL\",\"h0bavwGVC\",\"aLKFCPrss\",\"EEAAgCb16\",\"rUER_xz47\",\"G9pxk1bNp\",\"Crg6_WX8e\",\"u8pZILI7S\",\"psaQhTldj\",\"GSmbdIubp\",\"qbjnMt9kG\",\"OnTMBtNnK\",\"G5c9Oo_QI\",\"T1puran2N\",\"tZDAkKQOh\",\"BVcaMt_aS\",\"Ln1mQdwVw\",\"TWz_LfJvG\",\"fIMEbZj8z\",\"uwQrdjc7h\",\"GZMynfeOS\",\"cIJWSoIQq\",\"XxwMTRDjI\",\"my1wtgiq7\",\"vPqSQKGTl\",\"VgO0hMrd8\",\"ZoX56Wt7N\",\"Unz0c_9VW\",\"Kdn_SvnSR\",\"onBg5kups\",\"gI6olJ08G\",\"VtYRH9DLw\",\"PAblfJdhN\",\"k1u3Glhjw\",\"PV9vwfzMd\",\"pgKT3yzGn\",\"m194vtiWK\",\"TT_ErE05K\",\"T5lzGDJ95\",\"QIVfBpPpZ\",\"Nief0xoBf\",\"MLx_W_KRq\",\"V_2fYLMX6\",\"CGqBHLDBG\",\"AtBlpxZnV\",\"GLLnmRBFc\",\"BbHpaxe6o\",\"GY_2Msvug\",\"EKn0cZhpu\",\"eEx7q16iu\",\"VcT2gQnrX\",\"rVrMJV0HU\",\"EfcZ_7CQK\",\"p0UY4vwDA\",\"wIdbSUpFQ\",\"xMv7rxeKA\",\"eQlXgJJnQ\",\"NHm0gAPm9\",\"Gd9CuLo5r\",\"ERmZ5nff6\",\"WfiSA9lbB\",\"Ym4fQWwNY\",\"jdfLTSv01\",\"zLpkUDfvQ\",\"yIiQYfVJT\",\"EdviwP850\",\"jDuov_YmZ\",\"mZyE2ZBJf\",\"bWytkwhIa\",\"yMotyGuEo\",\"IB59ypYp3\",\"hzh4Mrku3\",\"MBzvDRufH\",\"m28dWRBPu\",\"bJIc_EIjA\",\"v7_4PFCYP\",\"x33RA_91r\",\"qhCVxCrmF\",\"uCf5B6jcO\",\"HAsXIv_Ok\",\"hhNWJGbaE\",\"bp2nWqVX_\",\"pXj12B0Q8\",\"QStNugP7e\",\"WLMT4UJky\"];const serializationHash=\"framer-ba6zB\";const variantClassNames={aLKFCPrss:\"framer-v-rymksh\",AtBlpxZnV:\"framer-v-takarx\",B6pYPERW9:\"framer-v-uu2ddc\",BbHpaxe6o:\"framer-v-1tufoeo\",bJIc_EIjA:\"framer-v-1vdk3hu\",bNpyN7PcI:\"framer-v-1d4uuay\",bp2nWqVX_:\"framer-v-1v456le\",BVcaMt_aS:\"framer-v-1gm8x8s\",bWytkwhIa:\"framer-v-jclbnr\",CGqBHLDBG:\"framer-v-1qfjaoo\",cgxlR_4Pa:\"framer-v-1owuuve\",cIJWSoIQq:\"framer-v-v2ki8p\",Crg6_WX8e:\"framer-v-1yi0pfx\",EdviwP850:\"framer-v-1q3q32k\",EEAAgCb16:\"framer-v-802tq\",eEx7q16iu:\"framer-v-luzbm2\",EfcZ_7CQK:\"framer-v-tksnmr\",EKn0cZhpu:\"framer-v-16216im\",eQlXgJJnQ:\"framer-v-7dse9m\",ERmZ5nff6:\"framer-v-s5yfiq\",fIMEbZj8z:\"framer-v-1srbkms\",G5c9Oo_QI:\"framer-v-hv0s38\",G9pxk1bNp:\"framer-v-1sdhgvx\",Gd9CuLo5r:\"framer-v-1ylyk63\",gI6olJ08G:\"framer-v-ruqfta\",GLLnmRBFc:\"framer-v-1e6x816\",GSmbdIubp:\"framer-v-bdv9wz\",GY_2Msvug:\"framer-v-1h4y8l4\",GZMynfeOS:\"framer-v-19bd39e\",h0bavwGVC:\"framer-v-16843y9\",HAsXIv_Ok:\"framer-v-c2ec1c\",hhNWJGbaE:\"framer-v-q5a32l\",hzh4Mrku3:\"framer-v-syg6ey\",IB59ypYp3:\"framer-v-14402vz\",jdfLTSv01:\"framer-v-oy72d3\",jDuov_YmZ:\"framer-v-163tytm\",jRrGhekVD:\"framer-v-1flncr\",k1u3Glhjw:\"framer-v-vkgygo\",Kdn_SvnSR:\"framer-v-14vx7es\",l8z62CFOK:\"framer-v-tavbfz\",Ln1mQdwVw:\"framer-v-13vr973\",m194vtiWK:\"framer-v-1rrpnv\",m28dWRBPu:\"framer-v-1ugug4a\",MBzvDRufH:\"framer-v-v27wqi\",MLx_W_KRq:\"framer-v-dixno8\",my1wtgiq7:\"framer-v-u46vi0\",mZyE2ZBJf:\"framer-v-1ib79w5\",NHm0gAPm9:\"framer-v-olezjf\",Nief0xoBf:\"framer-v-1s64nwm\",onBg5kups:\"framer-v-jhhibu\",OnTMBtNnK:\"framer-v-1ds8ne1\",p0UY4vwDA:\"framer-v-zwokhg\",P3p864Nsn:\"framer-v-db7fu5\",PAblfJdhN:\"framer-v-1vz2y3z\",pgKT3yzGn:\"framer-v-rxmkh0\",PHpCM9rOQ:\"framer-v-xirc33\",psaQhTldj:\"framer-v-1fy2zdb\",PV9vwfzMd:\"framer-v-zmu1pu\",pXj12B0Q8:\"framer-v-3got4b\",qbjnMt9kG:\"framer-v-ysobx1\",qhCVxCrmF:\"framer-v-1l14wh2\",QIVfBpPpZ:\"framer-v-k9av4m\",QStNugP7e:\"framer-v-17fngzm\",QvYFxTFvE:\"framer-v-6pfp0i\",rUER_xz47:\"framer-v-lp9kpb\",rVrMJV0HU:\"framer-v-mzo9v4\",T1puran2N:\"framer-v-tcpjer\",T5lzGDJ95:\"framer-v-asp0dt\",TT_ErE05K:\"framer-v-1ifo5le\",TWz_LfJvG:\"framer-v-kzs2uj\",tZDAkKQOh:\"framer-v-825m7e\",u8pZILI7S:\"framer-v-1vtzjr2\",uCf5B6jcO:\"framer-v-i0eu5d\",Unz0c_9VW:\"framer-v-14r1v90\",uwQrdjc7h:\"framer-v-1h0shdg\",V_2fYLMX6:\"framer-v-1bgtfzl\",v3kPVpEXa:\"framer-v-r3f6kp\",v7_4PFCYP:\"framer-v-1pgr006\",VcT2gQnrX:\"framer-v-1ku73i0\",VgO0hMrd8:\"framer-v-ooe9d\",vPqSQKGTl:\"framer-v-1vcq9dk\",vRQ9AdIpL:\"framer-v-vw0z4n\",VtYRH9DLw:\"framer-v-kzvnus\",WfiSA9lbB:\"framer-v-151z9ix\",wIdbSUpFQ:\"framer-v-1yt1wg7\",WLMT4UJky:\"framer-v-8wqowr\",x33RA_91r:\"framer-v-wj7ncj\",xMv7rxeKA:\"framer-v-1qqije\",XxwMTRDjI:\"framer-v-1la5v2m\",yIiQYfVJT:\"framer-v-1pszpsw\",Ym4fQWwNY:\"framer-v-rd69qm\",yMotyGuEo:\"framer-v-19u1576\",zjfl3maTH:\"framer-v-13oohj3\",zLpkUDfvQ:\"framer-v-1q1awl0\",ZoX56Wt7N:\"framer-v-1s2okmv\",zSsT4aC0n:\"framer-v-q8l7gg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Arrow Down\":\"jRrGhekVD\",\"Arrow Left\":\"PHpCM9rOQ\",\"Arrow Right\":\"cgxlR_4Pa\",\"Arrow Up\":\"bNpyN7PcI\",\"Check Circle\":\"EEAAgCb16\",\"Chevron Down\":\"Crg6_WX8e\",\"Chevron Left\":\"G9pxk1bNp\",\"Chevron Right\":\"rUER_xz47\",\"Chevron Up\":\"u8pZILI7S\",\"Contact Card\":\"G5c9Oo_QI\",\"Credit Card\":\"tZDAkKQOh\",\"Knife + Fork\":\"GLLnmRBFc\",\"Pause Circle\":\"Gd9CuLo5r\",\"Play Circle\":\"jdfLTSv01\",\"Plus Box\":\"EdviwP850\",\"Ruler + Pencil\":\"hzh4Mrku3\",\"Shopping Cart\":\"v7_4PFCYP\",AI:\"zjfl3maTH\",App:\"B6pYPERW9\",Blog:\"QvYFxTFvE\",Briefcase:\"zSsT4aC0n\",Calendar:\"l8z62CFOK\",Camera:\"P3p864Nsn\",Chart:\"vRQ9AdIpL\",Chat:\"h0bavwGVC\",Check:\"aLKFCPrss\",Clock:\"psaQhTldj\",Cloud:\"GSmbdIubp\",CMS:\"qbjnMt9kG\",Construction:\"OnTMBtNnK\",Copy:\"T1puran2N\",Cube:\"BVcaMt_aS\",Cursor:\"Ln1mQdwVw\",Developer:\"TWz_LfJvG\",Diamond:\"fIMEbZj8z\",Display:\"uwQrdjc7h\",Documentation:\"GZMynfeOS\",Dollar:\"cIJWSoIQq\",Dot:\"XxwMTRDjI\",Drop:\"my1wtgiq7\",Education:\"VgO0hMrd8\",Emergency:\"ZoX56Wt7N\",Error:\"Kdn_SvnSR\",Evelope:\"onBg5kups\",Experts:\"gI6olJ08G\",Eye:\"VtYRH9DLw\",Figma:\"k1u3Glhjw\",Film:\"pgKT3yzGn\",Food:\"PV9vwfzMd\",Forms:\"PAblfJdhN\",Framer:\"v3kPVpEXa\",Gallery:\"m194vtiWK\",Gear:\"TT_ErE05K\",Gift:\"T5lzGDJ95\",Globe:\"QIVfBpPpZ\",Grid:\"Nief0xoBf\",Headphones:\"Unz0c_9VW\",Heart:\"vPqSQKGTl\",Help:\"MLx_W_KRq\",Home:\"V_2fYLMX6\",Info:\"CGqBHLDBG\",Keyhole:\"AtBlpxZnV\",Layout:\"BbHpaxe6o\",Lock:\"GY_2Msvug\",Magic:\"EKn0cZhpu\",Marketplace:\"eEx7q16iu\",Megaphone:\"VcT2gQnrX\",Music:\"WLMT4UJky\",Navigation:\"rVrMJV0HU\",News:\"EfcZ_7CQK\",Notification:\"p0UY4vwDA\",Pages:\"wIdbSUpFQ\",Paragraph:\"xMv7rxeKA\",Partners:\"eQlXgJJnQ\",Pause:\"NHm0gAPm9\",Phone:\"ERmZ5nff6\",Pin:\"WfiSA9lbB\",Play:\"Ym4fQWwNY\",Plugins:\"zLpkUDfvQ\",Plus:\"yIiQYfVJT\",Podcast:\"jDuov_YmZ\",Publish:\"mZyE2ZBJf\",Refresh:\"bWytkwhIa\",Remix:\"yMotyGuEo\",Rocket:\"IB59ypYp3\",Scroll:\"MBzvDRufH\",Search:\"m28dWRBPu\",Shield:\"bJIc_EIjA\",Sidebar:\"x33RA_91r\",Star:\"qhCVxCrmF\",Stars:\"uCf5B6jcO\",Tablet:\"HAsXIv_Ok\",Target:\"hhNWJGbaE\",Team:\"bp2nWqVX_\",User:\"pXj12B0Q8\",Zap:\"QStNugP7e\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"v3kPVpEXa\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v3kPVpEXa\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"WLMT4UJky\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"hhNWJGbaE\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"vRQ9AdIpL\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"my1wtgiq7\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"WfiSA9lbB\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"ZoX56Wt7N\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"GSmbdIubp\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"Ln1mQdwVw\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"QStNugP7e\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"TT_ErE05K\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"vPqSQKGTl\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"fIMEbZj8z\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"ERmZ5nff6\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"bp2nWqVX_\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"EKn0cZhpu\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"HAsXIv_Ok\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"G5c9Oo_QI\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"MBzvDRufH\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"QIVfBpPpZ\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"zSsT4aC0n\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"BVcaMt_aS\")return true;return false;};const isDisplayed21=()=>{if([\"zjfl3maTH\",\"B6pYPERW9\",\"cgxlR_4Pa\",\"PHpCM9rOQ\",\"jRrGhekVD\",\"bNpyN7PcI\",\"QvYFxTFvE\",\"zSsT4aC0n\",\"l8z62CFOK\",\"P3p864Nsn\",\"vRQ9AdIpL\",\"h0bavwGVC\",\"aLKFCPrss\",\"EEAAgCb16\",\"rUER_xz47\",\"G9pxk1bNp\",\"Crg6_WX8e\",\"u8pZILI7S\",\"psaQhTldj\",\"GSmbdIubp\",\"qbjnMt9kG\",\"OnTMBtNnK\",\"G5c9Oo_QI\",\"T1puran2N\",\"tZDAkKQOh\",\"BVcaMt_aS\",\"Ln1mQdwVw\",\"TWz_LfJvG\",\"fIMEbZj8z\",\"uwQrdjc7h\",\"GZMynfeOS\",\"cIJWSoIQq\",\"XxwMTRDjI\",\"my1wtgiq7\",\"vPqSQKGTl\",\"VgO0hMrd8\",\"ZoX56Wt7N\",\"Unz0c_9VW\",\"Kdn_SvnSR\",\"onBg5kups\",\"gI6olJ08G\",\"VtYRH9DLw\",\"PAblfJdhN\",\"k1u3Glhjw\",\"PV9vwfzMd\",\"pgKT3yzGn\",\"m194vtiWK\",\"TT_ErE05K\",\"T5lzGDJ95\",\"QIVfBpPpZ\",\"Nief0xoBf\",\"MLx_W_KRq\",\"V_2fYLMX6\",\"CGqBHLDBG\",\"AtBlpxZnV\",\"GLLnmRBFc\",\"BbHpaxe6o\",\"GY_2Msvug\",\"EKn0cZhpu\",\"eEx7q16iu\",\"VcT2gQnrX\",\"rVrMJV0HU\",\"EfcZ_7CQK\",\"p0UY4vwDA\",\"wIdbSUpFQ\",\"xMv7rxeKA\",\"eQlXgJJnQ\",\"NHm0gAPm9\",\"Gd9CuLo5r\",\"ERmZ5nff6\",\"WfiSA9lbB\",\"Ym4fQWwNY\",\"jdfLTSv01\",\"zLpkUDfvQ\",\"yIiQYfVJT\",\"EdviwP850\",\"jDuov_YmZ\",\"mZyE2ZBJf\",\"bWytkwhIa\",\"yMotyGuEo\",\"IB59ypYp3\",\"hzh4Mrku3\",\"MBzvDRufH\",\"m28dWRBPu\",\"bJIc_EIjA\",\"v7_4PFCYP\",\"x33RA_91r\",\"qhCVxCrmF\",\"uCf5B6jcO\",\"HAsXIv_Ok\",\"hhNWJGbaE\",\"bp2nWqVX_\",\"pXj12B0Q8\",\"QStNugP7e\",\"WLMT4UJky\"].includes(baseVariant))return false;return true;};const isDisplayed22=()=>{if(baseVariant===\"VgO0hMrd8\")return true;return false;};const isDisplayed23=()=>{if(baseVariant===\"tZDAkKQOh\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"B6pYPERW9\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"onBg5kups\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"OnTMBtNnK\")return true;return false;};const isDisplayed27=()=>{if(baseVariant===\"AtBlpxZnV\")return true;return false;};const isDisplayed28=()=>{if(baseVariant===\"EdviwP850\")return true;return false;};const isDisplayed29=()=>{if(baseVariant===\"wIdbSUpFQ\")return true;return false;};const isDisplayed30=()=>{if(baseVariant===\"cIJWSoIQq\")return true;return false;};const isDisplayed31=()=>{if(baseVariant===\"bWytkwhIa\")return true;return false;};const isDisplayed32=()=>{if(baseVariant===\"VtYRH9DLw\")return true;return false;};const isDisplayed33=()=>{if(baseVariant===\"psaQhTldj\")return true;return false;};const isDisplayed34=()=>{if(baseVariant===\"uCf5B6jcO\")return true;return false;};const isDisplayed35=()=>{if(baseVariant===\"V_2fYLMX6\")return true;return false;};const isDisplayed36=()=>{if(baseVariant===\"T5lzGDJ95\")return true;return false;};const isDisplayed37=()=>{if(baseVariant===\"hzh4Mrku3\")return true;return false;};const isDisplayed38=()=>{if(baseVariant===\"pgKT3yzGn\")return true;return false;};const isDisplayed39=()=>{if(baseVariant===\"v7_4PFCYP\")return true;return false;};const isDisplayed40=()=>{if(baseVariant===\"EfcZ_7CQK\")return true;return false;};const isDisplayed41=()=>{if(baseVariant===\"x33RA_91r\")return true;return false;};const isDisplayed42=()=>{if(baseVariant===\"pXj12B0Q8\")return true;return false;};const isDisplayed43=()=>{if(baseVariant===\"zLpkUDfvQ\")return true;return false;};const isDisplayed44=()=>{if(baseVariant===\"Gd9CuLo5r\")return true;return false;};const isDisplayed45=()=>{if(baseVariant===\"jdfLTSv01\")return true;return false;};const isDisplayed46=()=>{if(baseVariant===\"NHm0gAPm9\")return true;return false;};const isDisplayed47=()=>{if(baseVariant===\"xMv7rxeKA\")return true;return false;};const isDisplayed48=()=>{if(baseVariant===\"qbjnMt9kG\")return true;return false;};const isDisplayed49=()=>{if(baseVariant===\"jDuov_YmZ\")return true;return false;};const isDisplayed50=()=>{if(baseVariant===\"Unz0c_9VW\")return true;return false;};const isDisplayed51=()=>{if(baseVariant===\"IB59ypYp3\")return true;return false;};const isDisplayed52=()=>{if(baseVariant===\"GLLnmRBFc\")return true;return false;};const isDisplayed53=()=>{if(baseVariant===\"P3p864Nsn\")return true;return false;};const isDisplayed54=()=>{if(baseVariant===\"bNpyN7PcI\")return true;return false;};const isDisplayed55=()=>{if(baseVariant===\"jRrGhekVD\")return true;return false;};const isDisplayed56=()=>{if(baseVariant===\"PHpCM9rOQ\")return true;return false;};const isDisplayed57=()=>{if(baseVariant===\"cgxlR_4Pa\")return true;return false;};const isDisplayed58=()=>{if(baseVariant===\"u8pZILI7S\")return true;return false;};const isDisplayed59=()=>{if(baseVariant===\"Crg6_WX8e\")return true;return false;};const isDisplayed60=()=>{if(baseVariant===\"G9pxk1bNp\")return true;return false;};const isDisplayed61=()=>{if(baseVariant===\"rUER_xz47\")return true;return false;};const isDisplayed62=()=>{if(baseVariant===\"k1u3Glhjw\")return true;return false;};const isDisplayed63=()=>{if(baseVariant===\"Kdn_SvnSR\")return true;return false;};const isDisplayed64=()=>{if(baseVariant===\"yIiQYfVJT\")return true;return false;};const isDisplayed65=()=>{if(baseVariant===\"mZyE2ZBJf\")return true;return false;};const isDisplayed66=()=>{if(baseVariant===\"l8z62CFOK\")return true;return false;};const isDisplayed67=()=>{if(baseVariant===\"gI6olJ08G\")return true;return false;};const isDisplayed68=()=>{if(baseVariant===\"yMotyGuEo\")return true;return false;};const isDisplayed69=()=>{if(baseVariant===\"CGqBHLDBG\")return true;return false;};const isDisplayed70=()=>{if(baseVariant===\"aLKFCPrss\")return true;return false;};const isDisplayed71=()=>{if(baseVariant===\"XxwMTRDjI\")return true;return false;};const isDisplayed72=()=>{if(baseVariant===\"TWz_LfJvG\")return true;return false;};const isDisplayed73=()=>{if(baseVariant===\"MLx_W_KRq\")return true;return false;};const isDisplayed74=()=>{if(baseVariant===\"GY_2Msvug\")return true;return false;};const isDisplayed75=()=>{if(baseVariant===\"bJIc_EIjA\")return true;return false;};const isDisplayed76=()=>{if(baseVariant===\"qhCVxCrmF\")return true;return false;};const isDisplayed77=()=>{if(baseVariant===\"p0UY4vwDA\")return true;return false;};const isDisplayed78=()=>{if(baseVariant===\"BbHpaxe6o\")return true;return false;};const isDisplayed79=()=>{if(baseVariant===\"zjfl3maTH\")return true;return false;};const isDisplayed80=()=>{if(baseVariant===\"uwQrdjc7h\")return true;return false;};const isDisplayed81=()=>{if(baseVariant===\"PAblfJdhN\")return true;return false;};const isDisplayed82=()=>{if(baseVariant===\"eEx7q16iu\")return true;return false;};const isDisplayed83=()=>{if(baseVariant===\"eQlXgJJnQ\")return true;return false;};const isDisplayed84=()=>{if(baseVariant===\"m194vtiWK\")return true;return false;};const isDisplayed85=()=>{if(baseVariant===\"rVrMJV0HU\")return true;return false;};const isDisplayed86=()=>{if(baseVariant===\"m28dWRBPu\")return true;return false;};const isDisplayed87=()=>{if(baseVariant===\"Ym4fQWwNY\")return true;return false;};const isDisplayed88=()=>{if(baseVariant===\"T1puran2N\")return true;return false;};const isDisplayed89=()=>{if(baseVariant===\"h0bavwGVC\")return true;return false;};const isDisplayed90=()=>{if(baseVariant===\"VcT2gQnrX\")return true;return false;};const isDisplayed91=()=>{if(baseVariant===\"QvYFxTFvE\")return true;return false;};const isDisplayed92=()=>{if(baseVariant===\"GZMynfeOS\")return true;return false;};const isDisplayed93=()=>{if(baseVariant===\"EEAAgCb16\")return true;return false;};const isDisplayed94=()=>{if(baseVariant===\"PV9vwfzMd\")return true;return false;};const isDisplayed95=()=>{if(baseVariant===\"Nief0xoBf\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-r3f6kp\",className,classNames),\"data-framer-name\":\"Framer\",layoutDependency:layoutDependency,layoutId:\"v3kPVpEXa\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aLKFCPrss:{\"data-framer-name\":\"Check\"},AtBlpxZnV:{\"data-framer-name\":\"Keyhole\"},B6pYPERW9:{\"data-framer-name\":\"App\"},BbHpaxe6o:{\"data-framer-name\":\"Layout\"},bJIc_EIjA:{\"data-framer-name\":\"Shield\"},bNpyN7PcI:{\"data-framer-name\":\"Arrow Up\"},bp2nWqVX_:{\"data-framer-name\":\"Team\"},BVcaMt_aS:{\"data-framer-name\":\"Cube\"},bWytkwhIa:{\"data-framer-name\":\"Refresh\"},CGqBHLDBG:{\"data-framer-name\":\"Info\"},cgxlR_4Pa:{\"data-framer-name\":\"Arrow Right\"},cIJWSoIQq:{\"data-framer-name\":\"Dollar\"},Crg6_WX8e:{\"data-framer-name\":\"Chevron Down\"},EdviwP850:{\"data-framer-name\":\"Plus Box\"},EEAAgCb16:{\"data-framer-name\":\"Check Circle\"},eEx7q16iu:{\"data-framer-name\":\"Marketplace\"},EfcZ_7CQK:{\"data-framer-name\":\"News\"},EKn0cZhpu:{\"data-framer-name\":\"Magic\"},eQlXgJJnQ:{\"data-framer-name\":\"Partners\"},ERmZ5nff6:{\"data-framer-name\":\"Phone\"},fIMEbZj8z:{\"data-framer-name\":\"Diamond\"},G5c9Oo_QI:{\"data-framer-name\":\"Contact Card\"},G9pxk1bNp:{\"data-framer-name\":\"Chevron Left\"},Gd9CuLo5r:{\"data-framer-name\":\"Pause Circle\"},gI6olJ08G:{\"data-framer-name\":\"Experts\"},GLLnmRBFc:{\"data-framer-name\":\"Knife + Fork\"},GSmbdIubp:{\"data-framer-name\":\"Cloud\"},GY_2Msvug:{\"data-framer-name\":\"Lock\"},GZMynfeOS:{\"data-framer-name\":\"Documentation\"},h0bavwGVC:{\"data-framer-name\":\"Chat\"},HAsXIv_Ok:{\"data-framer-name\":\"Tablet\"},hhNWJGbaE:{\"data-framer-name\":\"Target\"},hzh4Mrku3:{\"data-framer-name\":\"Ruler + Pencil\"},IB59ypYp3:{\"data-framer-name\":\"Rocket\"},jdfLTSv01:{\"data-framer-name\":\"Play Circle\"},jDuov_YmZ:{\"data-framer-name\":\"Podcast\"},jRrGhekVD:{\"data-framer-name\":\"Arrow Down\"},k1u3Glhjw:{\"data-framer-name\":\"Figma\"},Kdn_SvnSR:{\"data-framer-name\":\"Error\"},l8z62CFOK:{\"data-framer-name\":\"Calendar\"},Ln1mQdwVw:{\"data-framer-name\":\"Cursor\"},m194vtiWK:{\"data-framer-name\":\"Gallery\"},m28dWRBPu:{\"data-framer-name\":\"Search\"},MBzvDRufH:{\"data-framer-name\":\"Scroll\"},MLx_W_KRq:{\"data-framer-name\":\"Help\"},my1wtgiq7:{\"data-framer-name\":\"Drop\"},mZyE2ZBJf:{\"data-framer-name\":\"Publish\"},NHm0gAPm9:{\"data-framer-name\":\"Pause\"},Nief0xoBf:{\"data-framer-name\":\"Grid\"},onBg5kups:{\"data-framer-name\":\"Evelope\"},OnTMBtNnK:{\"data-framer-name\":\"Construction\"},p0UY4vwDA:{\"data-framer-name\":\"Notification\"},P3p864Nsn:{\"data-framer-name\":\"Camera\"},PAblfJdhN:{\"data-framer-name\":\"Forms\"},pgKT3yzGn:{\"data-framer-name\":\"Film\"},PHpCM9rOQ:{\"data-framer-name\":\"Arrow Left\"},psaQhTldj:{\"data-framer-name\":\"Clock\"},PV9vwfzMd:{\"data-framer-name\":\"Food\"},pXj12B0Q8:{\"data-framer-name\":\"User\"},qbjnMt9kG:{\"data-framer-name\":\"CMS\"},qhCVxCrmF:{\"data-framer-name\":\"Star\"},QIVfBpPpZ:{\"data-framer-name\":\"Globe\"},QStNugP7e:{\"data-framer-name\":\"Zap\"},QvYFxTFvE:{\"data-framer-name\":\"Blog\"},rUER_xz47:{\"data-framer-name\":\"Chevron Right\"},rVrMJV0HU:{\"data-framer-name\":\"Navigation\"},T1puran2N:{\"data-framer-name\":\"Copy\"},T5lzGDJ95:{\"data-framer-name\":\"Gift\"},TT_ErE05K:{\"data-framer-name\":\"Gear\"},TWz_LfJvG:{\"data-framer-name\":\"Developer\"},tZDAkKQOh:{\"data-framer-name\":\"Credit Card\"},u8pZILI7S:{\"data-framer-name\":\"Chevron Up\"},uCf5B6jcO:{\"data-framer-name\":\"Stars\"},Unz0c_9VW:{\"data-framer-name\":\"Headphones\"},uwQrdjc7h:{\"data-framer-name\":\"Display\"},V_2fYLMX6:{\"data-framer-name\":\"Home\"},v7_4PFCYP:{\"data-framer-name\":\"Shopping Cart\"},VcT2gQnrX:{\"data-framer-name\":\"Megaphone\"},VgO0hMrd8:{\"data-framer-name\":\"Education\"},vPqSQKGTl:{\"data-framer-name\":\"Heart\"},vRQ9AdIpL:{\"data-framer-name\":\"Chart\"},VtYRH9DLw:{\"data-framer-name\":\"Eye\"},WfiSA9lbB:{\"data-framer-name\":\"Pin\"},wIdbSUpFQ:{\"data-framer-name\":\"Pages\"},WLMT4UJky:{\"data-framer-name\":\"Music\"},x33RA_91r:{\"data-framer-name\":\"Sidebar\"},xMv7rxeKA:{\"data-framer-name\":\"Paragraph\"},XxwMTRDjI:{\"data-framer-name\":\"Dot\"},yIiQYfVJT:{\"data-framer-name\":\"Plus\"},Ym4fQWwNY:{\"data-framer-name\":\"Play\"},yMotyGuEo:{\"data-framer-name\":\"Remix\"},zjfl3maTH:{\"data-framer-name\":\"AI\"},zLpkUDfvQ:{\"data-framer-name\":\"Plugins\"},ZoX56Wt7N:{\"data-framer-name\":\"Emergency\"},zSsT4aC0n:{\"data-framer-name\":\"Briefcase\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-cml3ht\",\"data-framer-name\":\"Music\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QFTrwWqMB\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.5 12 C 8.244 12 8.933 12.232 9.5 12.627 L 9.5 3.977 C 9.5 3.099 10.073 2.324 10.912 2.066 L 14.706 0.898 C 15.349 0.7 16 1.181 16 1.854 L 16 4.256 C 16 4.698 15.71 5.087 15.287 5.214 L 11.356 6.393 C 11.145 6.457 11 6.651 11 6.872 L 11 15.5 C 11 17.433 9.433 19 7.5 19 C 5.567 19 4 17.433 4 15.5 C 4 13.567 5.567 12 7.5 12 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10770215797,withExternalLayout:true,...addPropertyOverrides({WLMT4UJky:{svgContentId:12036937407}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eo34ii\",\"data-framer-name\":\"Target\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"f2qBUXmCw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 5 C 12.761 5 15 7.239 15 10 C 15 12.761 12.761 15 10 15 C 7.239 15 5 12.761 5 10 C 5 7.239 7.239 5 10 5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 9.002 2.062 C 9.001 2.041 9 2.021 9 2 L 9 1 C 9 0.448 9.448 0 10 0 C 10.552 0 11 0.448 11 1 L 11 2 C 11 2.021 10.999 2.041 10.998 2.062 C 14.618 2.512 17.488 5.382 17.938 9.002 C 17.959 9.001 17.979 9 18 9 L 19 9 C 19.552 9 20 9.448 20 10 C 20 10.552 19.552 11 19 11 L 18 11 C 17.979 11 17.959 10.999 17.938 10.998 C 17.488 14.618 14.618 17.488 10.998 17.938 C 10.999 17.959 11 17.979 11 18 L 11 19 C 11 19.552 10.552 20 10 20 C 9.448 20 9 19.552 9 19 L 9 18 C 9 17.979 9.001 17.959 9.002 17.938 C 5.382 17.488 2.512 14.618 2.062 10.998 C 2.041 10.999 2.021 11 2 11 L 1 11 C 0.448 11 0 10.552 0 10 C 0 9.448 0.448 9 1 9 L 2 9 C 2.021 9 2.041 9.001 2.062 9.002 C 2.512 5.382 5.382 2.512 9.002 2.062 Z M 3.5 10 C 3.5 13.59 6.41 16.5 10 16.5 C 13.59 16.5 16.5 13.59 16.5 10 C 16.5 6.41 13.59 3.5 10 3.5 C 6.41 3.5 3.5 6.41 3.5 10 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10299570549,withExternalLayout:true,...addPropertyOverrides({hhNWJGbaE:{svgContentId:9561397553}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6my09\",\"data-framer-name\":\"Chart\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Oh_IG9yQg\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.5 7.5 C 7.5 6.119 8.619 5 10 5 L 10 5 C 11.381 5 12.5 6.119 12.5 7.5 L 12.5 16.5 C 12.5 17.881 11.381 19 10 19 L 10 19 C 8.619 19 7.5 17.881 7.5 16.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 13.5 3.5 C 13.5 2.119 14.619 1 16 1 L 16 1 C 17.381 1 18.5 2.119 18.5 3.5 L 18.5 16.5 C 18.5 17.881 17.381 19 16 19 L 16 19 C 14.619 19 13.5 17.881 13.5 16.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 1.5 11.5 C 1.5 10.119 2.619 9 4 9 L 4 9 C 5.381 9 6.5 10.119 6.5 11.5 L 6.5 16.5 C 6.5 17.881 5.381 19 4 19 L 4 19 C 2.619 19 1.5 17.881 1.5 16.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:12036563240,withExternalLayout:true,...addPropertyOverrides({vRQ9AdIpL:{svgContentId:11106134304}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1itrruf\",\"data-framer-name\":\"Drip\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bkddilGxL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3 12 C 3 11.802 3.008 11.605 3.024 11.411 C 3.419 6.566 8.482 1 10 1 C 11.518 1 16.581 6.566 16.976 11.411 C 16.992 11.603 17 11.796 17 11.991 C 17 11.994 17 11.997 17 12 L 17 12 C 17 12 17 12 17 12 C 17 15.866 13.866 19 10 19 C 6.134 19 3 15.866 3 12 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9330686326,withExternalLayout:true,...addPropertyOverrides({my1wtgiq7:{svgContentId:12322065736}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jzxmhs\",\"data-framer-name\":\"Pin\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XOnCHRV6N\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 13.866 1 17 4.134 17 8 C 17 8 17 8 17 8 L 17 8 C 17 8.003 17 8.006 17 8.009 C 17 8.204 16.992 8.397 16.976 8.589 C 16.581 13.434 11.518 19 10 19 C 8.482 19 3.419 13.434 3.024 8.589 C 3.008 8.395 3 8.198 3 8 C 3 4.134 6.134 1 10 1 Z M 6 8 C 6 10.209 7.791 12 10 12 C 12.209 12 14 10.209 14 8 C 14 5.791 12.209 4 10 4 C 7.791 4 6 5.791 6 8 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11270975329,withExternalLayout:true,...addPropertyOverrides({WfiSA9lbB:{svgContentId:10136856510}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pvmrjx\",\"data-framer-name\":\"Emergency\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ES4kVQY7_\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 8.272 2.962 C 9.044 1.639 10.956 1.639 11.728 2.962 L 18.745 14.992 C 19.523 16.326 18.562 18 17.018 18 L 2.982 18 C 1.438 18 0.477 16.326 1.255 14.992 Z M 9 15 C 9 15.552 9.448 16 10 16 C 10.552 16 11 15.552 11 15 C 11 14.448 10.552 14 10 14 C 9.448 14 9 14.448 9 15 Z M 9 12 C 9 12.552 9.448 13 10 13 C 10.552 13 11 12.552 11 12 L 11 8 C 11 7.448 10.552 7 10 7 C 9.448 7 9 7.448 9 8 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9232238978,withExternalLayout:true,...addPropertyOverrides({ZoX56Wt7N:{svgContentId:10665969789}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-coep7m\",\"data-framer-name\":\"Cloud\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IjHUITQN3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13 16 C 16.59 16 19.5 13.09 19.5 9.5 L 19.5 9.5 C 19.5 5.91 16.59 3 13 3 L 13 3 C 9.41 3 6.5 5.91 6.5 9.5 L 6.5 9.667 C 6.5 9.999 6.052 10.105 5.904 9.807 L 5.224 8.447 C 5.087 8.173 4.806 8 4.5 8 L 4.5 8 L 4.056 8 C 2.092 8 0.5 9.592 0.5 11.556 L 0.5 11.556 C 0.5 14.01 2.49 16 4.944 16 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12752253872,withExternalLayout:true,...addPropertyOverrides({GSmbdIubp:{svgContentId:11880750922}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jnqqh5\",\"data-framer-name\":\"Cursor\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jFPmzbHrn\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.24 2.523 C 0.948 1.724 1.724 0.948 2.523 1.24 L 18.176 6.967 C 19.08 7.297 19.041 8.588 18.12 8.864 L 11.516 10.845 C 11.194 10.942 10.942 11.194 10.845 11.516 L 8.864 18.12 C 8.588 19.041 7.297 19.08 6.967 18.176 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10346290503,withExternalLayout:true,...addPropertyOverrides({Ln1mQdwVw:{svgContentId:8847808671}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-z1lypt\",\"data-framer-name\":\"Zap\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"OPxauNHuW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 11 1.079 C 11 0.591 10.372 0.392 10.091 0.792 L 2.054 12.212 C 1.821 12.544 2.058 13 2.463 13 L 8.5 13 C 8.776 13 9 13.224 9 13.5 L 9 18.921 C 9 19.409 9.628 19.608 9.909 19.208 L 17.946 7.788 C 18.179 7.456 17.942 7 17.537 7 L 11.5 7 C 11.224 7 11 6.776 11 6.5 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9594385117,withExternalLayout:true,...addPropertyOverrides({QStNugP7e:{svgContentId:11804811902}},baseVariant,gestureVariant)}),isDisplayed9()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-cbohxb\",\"data-framer-name\":\"Gear\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"MH5BJJ_9Z\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.5 6.204 C 1.5 5.463 1.909 4.783 2.564 4.437 L 9.064 0.995 C 9.65 0.686 10.35 0.686 10.936 0.995 L 17.436 4.437 C 18.091 4.783 18.5 5.463 18.5 6.204 L 18.5 13.796 C 18.5 14.537 18.091 15.217 17.436 15.563 L 10.936 19.005 C 10.35 19.314 9.65 19.314 9.064 19.005 L 2.564 15.563 C 1.909 15.217 1.5 14.537 1.5 13.796 Z M 7 10 C 7 11.657 8.343 13 10 13 C 11.657 13 13 11.657 13 10 C 13 8.343 11.657 7 10 7 C 8.343 7 7 8.343 7 10 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12123678501,withExternalLayout:true,...addPropertyOverrides({TT_ErE05K:{svgContentId:12245301313}},baseVariant,gestureVariant)}),isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ur6pev\",\"data-framer-name\":\"Heart\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"X2WFHrEuw\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 6 2 C 7.636 2 9.088 2.785 10 4 C 10.912 2.785 12.364 2 14 2 C 16.761 2 19 4.239 19 7 L 19 7 C 19 11.971 12.031 18 10 18 C 7.97 18 1.005 11.975 1 7.006 C 1 7.004 1 7.002 1 7 C 1 4.239 3.239 2 6 2 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12746615211,withExternalLayout:true,...addPropertyOverrides({vPqSQKGTl:{svgContentId:9500755965}},baseVariant,gestureVariant)}),isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bzxdl1\",\"data-framer-name\":\"Diamond\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qPMyRq7qd\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 4 C 0 1.791 1.791 0 4 0 L 10.849 0 C 13.058 0 14.849 1.791 14.849 4 L 14.849 10.849 C 14.849 13.058 13.058 14.849 10.849 14.849 L 4 14.849 C 1.791 14.849 0 13.058 0 10.849 Z\" transform=\"translate(2.575 2.575) rotate(45 7.425 7.425)\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9518145729,withExternalLayout:true,...addPropertyOverrides({fIMEbZj8z:{svgContentId:11636137348}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tatdel\",\"data-framer-name\":\"Phone\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BmaQJuupI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4.5 5 C 4.5 2.791 6.291 1 8.5 1 L 11.5 1 C 13.709 1 15.5 2.791 15.5 5 L 15.5 15 C 15.5 17.209 13.709 19 11.5 19 L 8.5 19 C 6.291 19 4.5 17.209 4.5 15 Z M 6 14.5 C 6 16.157 7.343 17.5 9 17.5 L 11 17.5 C 12.657 17.5 14 16.157 14 14.5 L 14 5.5 C 14 3.843 12.657 2.5 11 2.5 L 9 2.5 C 7.343 2.5 6 3.843 6 5.5 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 7.5 15.25 C 7.5 14.836 7.836 14.5 8.25 14.5 L 11.75 14.5 C 12.164 14.5 12.5 14.836 12.5 15.25 L 12.5 15.25 C 12.5 15.664 12.164 16 11.75 16 L 8.25 16 C 7.836 16 7.5 15.664 7.5 15.25 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:10343231684,withExternalLayout:true,...addPropertyOverrides({ERmZ5nff6:{svgContentId:11061527389}},baseVariant,gestureVariant)}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1fmvkgt\",\"data-framer-name\":\"Team\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Mmrg9TQ44\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 2 C 12.209 2 14 3.791 14 6 C 14 8.209 12.209 10 10 10 C 7.791 10 6 8.209 6 6 C 6 3.791 7.791 2 10 2 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 5.5 10 C 7.709 10 9.5 11.791 9.5 14 C 9.5 16.209 7.709 18 5.5 18 C 3.291 18 1.5 16.209 1.5 14 C 1.5 11.791 3.291 10 5.5 10 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 14.5 10 C 16.709 10 18.5 11.791 18.5 14 C 18.5 16.209 16.709 18 14.5 18 C 12.291 18 10.5 16.209 10.5 14 C 10.5 11.791 12.291 10 14.5 10 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12222838651,withExternalLayout:true,...addPropertyOverrides({bp2nWqVX_:{svgContentId:11548311121}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1b7icg6\",\"data-framer-name\":\"Magic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"j2xTtr3MJ\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.914 16.914 C 1.133 16.133 1.133 14.867 1.914 14.086 L 14.086 1.914 C 14.867 1.133 16.133 1.133 16.914 1.914 L 18.086 3.086 C 18.867 3.867 18.867 5.133 18.086 5.914 L 5.914 18.086 C 5.133 18.867 3.867 18.867 3.086 18.086 Z M 14.03 3.97 C 13.737 4.263 13.737 4.737 14.03 5.03 L 14.97 5.97 C 15.263 6.263 15.737 6.263 16.03 5.97 L 16.97 5.03 C 17.263 4.737 17.263 4.263 16.97 3.97 L 16.03 3.03 C 15.737 2.737 15.263 2.737 14.97 3.03 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 0.789 3.142 C 1.976 2.905 2.905 1.976 3.142 0.789 L 3.2 0.5 C 3.266 0.172 3.734 0.172 3.8 0.5 L 3.858 0.789 C 4.095 1.976 5.024 2.905 6.211 3.142 L 6.5 3.2 C 6.828 3.266 6.828 3.734 6.5 3.8 L 6.211 3.858 C 5.024 4.095 4.095 5.024 3.858 6.211 L 3.8 6.5 C 3.734 6.828 3.266 6.828 3.2 6.5 L 3.142 6.211 C 2.905 5.024 1.976 4.095 0.789 3.858 L 0.5 3.8 C 0.172 3.734 0.172 3.266 0.5 3.2 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 14.167 16.267 C 15.226 16.055 16.055 15.226 16.267 14.167 L 16.267 14.167 C 16.318 13.912 16.682 13.912 16.733 14.167 L 16.733 14.167 C 16.945 15.226 17.774 16.055 18.833 16.267 L 18.833 16.267 C 19.088 16.318 19.088 16.682 18.833 16.733 L 18.833 16.733 C 17.774 16.945 16.945 17.774 16.733 18.833 L 16.733 18.833 C 16.682 19.088 16.318 19.088 16.267 18.833 L 16.267 18.833 C 16.055 17.774 15.226 16.945 14.167 16.733 L 14.167 16.733 C 13.912 16.682 13.912 16.318 14.167 16.267 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path></svg>',svgContentId:11340040685,withExternalLayout:true,...addPropertyOverrides({EKn0cZhpu:{svgContentId:9018390271}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1k9a8bj\",\"data-framer-name\":\"Tablet\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RP_auqesb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3 5 C 3 2.791 4.791 1 7 1 L 13 1 C 15.209 1 17 2.791 17 5 L 17 15 C 17 17.209 15.209 19 13 19 L 7 19 C 4.791 19 3 17.209 3 15 Z M 4.5 14.5 C 4.5 16.157 5.843 17.5 7.5 17.5 L 12.5 17.5 C 14.157 17.5 15.5 16.157 15.5 14.5 L 15.5 5.5 C 15.5 3.843 14.157 2.5 12.5 2.5 L 7.5 2.5 C 5.843 2.5 4.5 3.843 4.5 5.5 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 6 15.25 C 6 14.836 6.336 14.5 6.75 14.5 L 13.25 14.5 C 13.664 14.5 14 14.836 14 15.25 L 14 15.25 C 14 15.664 13.664 16 13.25 16 L 6.75 16 C 6.336 16 6 15.664 6 15.25 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:11617888570,withExternalLayout:true,...addPropertyOverrides({HAsXIv_Ok:{svgContentId:9331051412}},baseVariant,gestureVariant)}),isDisplayed16()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tbc7iy\",\"data-framer-name\":\"Contact Card\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"iRAz51PlQ\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 7 C 1 4.791 2.791 3 5 3 L 15 3 C 17.209 3 19 4.791 19 7 L 19 13 C 19 15.209 17.209 17 15 17 L 5 17 C 2.791 17 1 15.209 1 13 Z M 11 7.75 C 11 8.164 11.336 8.5 11.75 8.5 L 15.25 8.5 C 15.664 8.5 16 8.164 16 7.75 C 16 7.336 15.664 7 15.25 7 L 11.75 7 C 11.336 7 11 7.336 11 7.75 Z M 4.5 8.5 C 4.5 9.605 5.395 10.5 6.5 10.5 C 7.605 10.5 8.5 9.605 8.5 8.5 C 8.5 7.395 7.605 6.5 6.5 6.5 C 5.395 6.5 4.5 7.395 4.5 8.5 Z M 11 10.25 C 11 10.664 11.336 11 11.75 11 L 15.25 11 C 15.664 11 16 10.664 16 10.25 C 16 9.836 15.664 9.5 15.25 9.5 L 11.75 9.5 C 11.336 9.5 11 9.836 11 10.25 Z M 11 12.75 C 11 13.164 11.336 13.5 11.75 13.5 L 15.25 13.5 C 15.664 13.5 16 13.164 16 12.75 C 16 12.336 15.664 12 15.25 12 L 11.75 12 C 11.336 12 11 12.336 11 12.75 Z M 3.613 13.182 C 4.452 13.701 5.441 14 6.5 14 C 6.5 14 6.5 14 6.5 14 C 7.559 14 8.548 13.701 9.387 13.182 C 9.031 11.923 7.873 11 6.5 11 C 5.127 11 3.969 11.923 3.613 13.182 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9132348305,withExternalLayout:true,...addPropertyOverrides({G5c9Oo_QI:{svgContentId:10283125631}},baseVariant,gestureVariant)}),isDisplayed17()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6deklq\",\"data-framer-name\":\"Scroll\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lmy4Mw0l4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 6.5 12.5 L 10 16 L 13.5 12.5 C 13.776 12.224 13.776 11.776 13.5 11.5 C 13.224 11.224 12.776 11.224 12.5 11.5 L 10 14 L 7.5 11.5 C 7.224 11.224 6.776 11.224 6.5 11.5 C 6.224 11.776 6.224 12.224 6.5 12.5 Z M 6.5 8.5 C 6.776 8.776 7.224 8.776 7.5 8.5 L 10 6 L 12.5 8.5 C 12.776 8.776 13.224 8.776 13.5 8.5 C 13.776 8.224 13.776 7.776 13.5 7.5 L 10 4 L 6.5 7.5 C 6.224 7.776 6.224 8.224 6.5 8.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11148547372,withExternalLayout:true,...addPropertyOverrides({MBzvDRufH:{svgContentId:10573893352}},baseVariant,gestureVariant)}),isDisplayed18()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1dgbyef\",\"data-framer-name\":\"Globe\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"W6jGb95zZ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 17.498 10.182 C 16.343 10.584 15.163 10.891 13.97 11.102 C 13.839 13.525 13.279 15.651 12.467 17.085 C 15.343 16.083 17.422 13.38 17.498 10.182 Z M 2.502 10.182 C 2.578 13.38 4.657 16.083 7.533 17.085 C 6.721 15.651 6.161 13.525 6.03 11.102 C 4.837 10.891 3.657 10.584 2.502 10.182 Z M 2.609 8.719 C 3.722 9.1 4.857 9.393 6.004 9.598 C 6.057 6.886 6.643 4.486 7.533 2.915 C 4.993 3.799 3.075 6.011 2.609 8.719 Z M 17.391 8.719 C 16.925 6.011 15.007 3.799 12.467 2.915 C 13.357 4.486 13.943 6.886 13.996 9.598 C 15.143 9.393 16.278 9.1 17.391 8.719 Z M 10 17.5 C 11.231 17.5 12.254 14.831 12.462 11.317 C 10.825 11.495 9.175 11.495 7.538 11.317 C 7.746 14.831 8.769 17.5 10 17.5 Z M 10 2.5 C 8.64 2.5 7.534 5.757 7.501 9.813 C 9.162 9.996 10.838 9.996 12.499 9.813 C 12.466 5.757 11.36 2.5 10 2.5 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:11803022067,withExternalLayout:true,...addPropertyOverrides({QIVfBpPpZ:{svgContentId:8932456658}},baseVariant,gestureVariant)}),isDisplayed19()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ftfahz\",\"data-framer-name\":\"Briefcase\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wydr7NhF8\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 10 C 1 9.448 1.448 9 2 9 L 18 9 C 18.552 9 19 9.448 19 10 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 10 0 C 12.209 0 14 1.791 14 4 L 14.908 4 C 16.725 4 18.309 5.237 18.75 7 C 18.877 7.508 18.493 8 17.969 8 L 2.031 8 C 1.507 8 1.123 7.508 1.25 7 C 1.691 5.237 3.275 4 5.092 4 L 6 4 C 6 1.791 7.791 0 10 0 Z M 10 1.5 C 8.619 1.5 7.5 2.619 7.5 4 L 12.5 4 C 12.5 2.619 11.381 1.5 10 1.5 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:12128511632,withExternalLayout:true,...addPropertyOverrides({zSsT4aC0n:{svgContentId:10458663559}},baseVariant,gestureVariant)}),isDisplayed20()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bapkh5\",\"data-framer-name\":\"3D\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lMtkU76zE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 8.723 18.482 C 9.055 18.703 9.5 18.465 9.5 18.066 L 9.5 10.783 C 9.5 10.607 9.408 10.445 9.257 10.354 L 2.757 6.454 C 2.424 6.254 2 6.494 2 6.883 L 2 12.394 C 2 13.398 2.501 14.334 3.336 14.891 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 11.277 18.482 C 10.945 18.703 10.5 18.465 10.5 18.066 L 10.5 11.066 C 10.5 10.715 10.684 10.389 10.986 10.209 L 17.243 6.454 C 17.576 6.254 18 6.494 18 6.883 L 18 12.394 C 18 13.398 17.499 14.334 16.664 14.891 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 9.743 9.346 C 9.901 9.441 10.099 9.441 10.257 9.346 L 16.785 5.429 C 17.109 5.235 17.109 4.765 16.785 4.571 L 11.543 1.426 C 10.593 0.856 9.407 0.856 8.457 1.426 L 3.215 4.571 C 2.891 4.765 2.891 5.235 3.215 5.429 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11898712820,withExternalLayout:true,...addPropertyOverrides({BVcaMt_aS:{svgContentId:11931812056}},baseVariant,gestureVariant)}),isDisplayed21()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5itjnb\",\"data-framer-name\":\"Framer\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mg6pTbvkU\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 16 1 L 16 7 L 10 7 L 4 1 Z M 4 7 L 10 7 L 16 13 L 10 13 L 10 19 L 4 13 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11302046304,withExternalLayout:true}),isDisplayed22()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1m3yy02\",\"data-framer-name\":\"Education\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zf7HnOQas\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 12.321 4.588 C 10.928 3.635 9.088 3.659 7.72 4.647 L 1.415 9.201 C 1.154 9.389 1 9.69 1 10.011 L 1 18.5 C 1 18.776 1.224 19 1.5 19 L 1.5 19 C 1.776 19 2 18.776 2 18.5 L 2 11 C 2 10.588 2.47 10.353 2.8 10.6 L 7.707 14.28 C 9.078 15.308 10.951 15.349 12.366 14.381 L 18.294 10.325 C 18.874 9.928 18.874 9.072 18.294 8.675 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10766759683,withExternalLayout:true,...addPropertyOverrides({VgO0hMrd8:{svgContentId:9479499091}},baseVariant,gestureVariant)}),isDisplayed23()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p1f4v8\",\"data-framer-name\":\"Billing\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Hk_HAbnSI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 18 6 C 18.552 6 19 6.448 19 7 L 19 14 C 19 16.209 17.209 18 15 18 L 5 18 C 2.791 18 1 16.209 1 14 L 1 7 C 1 6.448 1.448 6 2 6 Z M 15 15 C 15 15.552 15.448 16 16 16 C 16.552 16 17 15.552 17 15 C 17 14.448 16.552 14 16 14 C 15.448 14 15 14.448 15 15 Z M 12 15 C 12 15.552 12.448 16 13 16 C 13.552 16 14 15.552 14 15 C 14 14.448 13.552 14 13 14 C 12.448 14 12 14.448 12 15 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0 3.896 C 0 2.427 0.83 1.085 2.143 0.429 L 2.143 0.429 C 2.537 0.232 3 0.518 3 0.958 L 3 17.042 C 3 17.482 2.537 17.768 2.143 17.571 L 2.143 17.571 C 0.83 16.915 0 15.573 0 14.104 Z\" transform=\"translate(8.5 -5.5) rotate(90 1.5 9)\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:8772441677,withExternalLayout:true,...addPropertyOverrides({tZDAkKQOh:{svgContentId:8874232201}},baseVariant,gestureVariant)}),isDisplayed24()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1xgj21z\",\"data-framer-name\":\"App\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kI1NpHth7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 1 C 0 0.448 0.448 0 1 0 L 8 0 C 10.209 0 12 1.791 12 4 L 12 14 C 12 16.209 10.209 18 8 18 L 1 18 C 0.448 18 0 17.552 0 17 Z\" transform=\"translate(4 4) rotate(90 6 9)\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 15 1 C 17.209 1 19 2.791 19 5 C 19 5.552 18.552 6 18 6 L 2 6 C 1.448 6 1 5.552 1 5 C 1 2.791 2.791 1 5 1 Z M 3.5 3.5 C 3.5 4.052 3.948 4.5 4.5 4.5 C 5.052 4.5 5.5 4.052 5.5 3.5 C 5.5 2.948 5.052 2.5 4.5 2.5 C 3.948 2.5 3.5 2.948 3.5 3.5 Z M 6.5 3.5 C 6.5 4.052 6.948 4.5 7.5 4.5 C 8.052 4.5 8.5 4.052 8.5 3.5 C 8.5 2.948 8.052 2.5 7.5 2.5 C 6.948 2.5 6.5 2.948 6.5 3.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10332240478,withExternalLayout:true,...addPropertyOverrides({B6pYPERW9:{svgContentId:11925929100}},baseVariant,gestureVariant)}),isDisplayed25()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1se9f5b\",\"data-framer-name\":\"Envelope\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"w4d7CSJtB\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 6 C 1 3.791 2.791 2 5 2 L 15 2 C 17.209 2 19 3.791 19 6 L 19 6.382 C 19 6.761 18.786 7.107 18.447 7.276 L 10.447 11.276 C 10.166 11.417 9.834 11.417 9.553 11.276 L 1.553 7.276 C 1.214 7.107 1 6.761 1 6.382 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1 10.118 C 1 9.375 1.782 8.891 2.447 9.224 L 9.553 12.776 C 9.834 12.917 10.166 12.917 10.447 12.776 L 17.553 9.224 C 18.218 8.891 19 9.375 19 10.118 L 19 14 C 19 16.209 17.209 18 15 18 L 5 18 C 2.791 18 1 16.209 1 14 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:12301184009,withExternalLayout:true,...addPropertyOverrides({onBg5kups:{svgContentId:12566814247}},baseVariant,gestureVariant)}),isDisplayed26()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ly1cih\",\"data-framer-name\":\"Construction\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ju5Bkx6R4\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 6 C 1 3.791 2.791 2 5 2 L 15 2 C 17.209 2 19 3.791 19 6 L 19 10 C 19 12.209 17.209 14 15 14 L 5 14 C 2.791 14 1 12.209 1 10 Z M 2.5 10 C 2.5 11.381 3.619 12.5 5 12.5 L 7.5 12.5 C 7.869 12.5 8.054 12.054 7.793 11.793 L 3.207 7.207 C 2.946 6.946 2.5 7.131 2.5 7.5 Z M 12.5 3.5 C 12.131 3.5 11.946 3.946 12.207 4.207 L 16.793 8.793 C 17.054 9.054 17.5 8.869 17.5 8.5 L 17.5 6 C 17.5 4.619 16.381 3.5 15 3.5 Z M 4.833 3.5 C 4.341 3.5 4.095 4.095 4.443 4.443 L 11.914 11.914 C 12.289 12.289 12.798 12.5 13.328 12.5 L 15.167 12.5 C 15.659 12.5 15.905 11.905 15.557 11.557 L 8.086 4.086 C 7.711 3.711 7.202 3.5 6.672 3.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 4 15.5 C 4 15.224 4.224 15 4.5 15 L 5.5 15 C 5.776 15 6 15.224 6 15.5 L 6 18 C 6 18.552 5.552 19 5 19 C 4.448 19 4 18.552 4 18 Z M 14 15.5 C 14 15.224 14.224 15 14.5 15 L 15.5 15 C 15.776 15 16 15.224 16 15.5 L 16 18 C 16 18.552 15.552 19 15 19 C 14.448 19 14 18.552 14 18 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:12783193108,withExternalLayout:true,...addPropertyOverrides({OnTMBtNnK:{svgContentId:10133512153}},baseVariant,gestureVariant)}),isDisplayed27()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1iovsv0\",\"data-framer-name\":\"Keyhole\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RhkYDTIN9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 7.549 13.629 C 7.286 14.285 7.77 15 8.477 15 L 11.523 15 C 12.23 15 12.714 14.285 12.451 13.629 L 11.285 10.712 C 12.299 10.23 13 9.197 13 8 C 13 6.343 11.657 5 10 5 C 8.343 5 7 6.343 7 8 C 7 9.197 7.701 10.23 8.715 10.712 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12552946570,withExternalLayout:true,...addPropertyOverrides({AtBlpxZnV:{svgContentId:8769869648}},baseVariant,gestureVariant)}),isDisplayed28()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-194ritd\",\"data-framer-name\":\"Plus Box\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ya2p5NrJd\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 5 10 C 5 10.552 5.448 11 6 11 L 9 11 L 9 14 C 9 14.552 9.448 15 10 15 C 10.552 15 11 14.552 11 14 L 11 11 L 14 11 C 14.552 11 15 10.552 15 10 C 15 9.448 14.552 9 14 9 L 11 9 L 11 6 C 11 5.448 10.552 5 10 5 C 9.448 5 9 5.448 9 6 L 9 9 L 6 9 C 5.448 9 5 9.448 5 10 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9729153212,withExternalLayout:true,...addPropertyOverrides({EdviwP850:{svgContentId:10670620229}},baseVariant,gestureVariant)}),isDisplayed29()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-e5po90\",\"data-framer-name\":\"Pages\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oZldkObAf\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 4 C 0 1.791 1.791 0 4 0 L 12 0 C 14.209 0 16 1.791 16 4 L 16 8 C 16 10.209 14.209 12 12 12 L 4 12 C 1.791 12 0 10.209 0 8 Z\" transform=\"translate(2 4) rotate(90 8 6)\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 2.333 5 C 2.702 5 3 5.298 3 5.667 L 3 14.333 C 3 14.702 2.702 15 2.333 15 L 2.333 15 C 1.597 15 1 14.403 1 13.667 L 1 6.333 C 1 5.597 1.597 5 2.333 5 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 17.667 5 C 18.403 5 19 5.597 19 6.333 L 19 13.667 C 19 14.403 18.403 15 17.667 15 L 17.667 15 C 17.298 15 17 14.702 17 14.333 L 17 5.667 C 17 5.298 17.298 5 17.667 5 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path></svg>',svgContentId:8811797415,withExternalLayout:true,...addPropertyOverrides({wIdbSUpFQ:{svgContentId:10237023583}},baseVariant,gestureVariant)}),isDisplayed30()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8nml70\",\"data-framer-name\":\"Dollar\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"K1UKSeP2a\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 5 8 C 5 9.657 6.343 11 8 11 L 9 11 L 9 13 L 6.636 13 C 6.285 13 6 13.285 6 13.636 L 6 14.182 C 6 14.634 6.366 15 6.818 15 L 9 15 L 9 16 C 9 16.552 9.448 17 10 17 C 10.552 17 11 16.552 11 16 L 11 15 L 12 15 C 13.657 15 15 13.657 15 12 C 15 10.343 13.657 9 12 9 L 11 9 L 11 7 L 13.364 7 C 13.715 7 14 6.715 14 6.364 L 14 5.818 C 14 5.366 13.634 5 13.182 5 L 11 5 L 11 4 C 11 3.448 10.552 3 10 3 C 9.448 3 9 3.448 9 4 L 9 5 L 8 5 C 6.343 5 5 6.343 5 8 Z M 12 11 C 12.552 11 13 11.448 13 12 C 13 12.552 12.552 13 12 13 L 11 13 L 11 11 Z M 8 9 C 7.448 9 7 8.552 7 8 C 7 7.448 7.448 7 8 7 L 9 7 L 9 9 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12302161189,withExternalLayout:true,...addPropertyOverrides({cIJWSoIQq:{svgContentId:10926659909}},baseVariant,gestureVariant)}),isDisplayed31()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1txx6wn\",\"data-framer-name\":\"Refresh\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"o0bF6auNm\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 3 C 12.546 3 14.775 4.36 16 6.392 L 16 4 C 16 3.448 16.448 3 17 3 C 17.552 3 18 3.448 18 4 L 18 10 L 12 10 C 11.448 10 11 9.552 11 9 C 11 8.448 11.448 8 12 8 L 14.584 8 C 13.812 6.234 12.05 5 10 5 C 7.239 5 5 7.239 5 10 C 5 12.761 7.239 15 10 15 C 11.5 15 12.846 14.339 13.763 13.293 L 13.779 13.307 C 13.961 13.118 14.217 13 14.5 13 C 15.052 13 15.5 13.448 15.5 14 C 15.5 14.334 15.336 14.63 15.084 14.812 C 13.808 16.159 12.002 17 10 17 C 6.134 17 3 13.866 3 10 C 3 6.134 6.134 3 10 3 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10892765393,withExternalLayout:true,...addPropertyOverrides({bWytkwhIa:{svgContentId:10869567563}},baseVariant,gestureVariant)}),isDisplayed32()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bj4fy5\",\"data-framer-name\":\"Eye\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jA_nmc6MC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 3 C 15.523 3 20 9 20 10 C 20 11 15.523 17 10 17 C 4.477 17 0 11 0 10 C 0 9 4.477 3 10 3 Z M 5 10 C 5 12.761 7.239 15 10 15 C 12.761 15 15 12.761 15 10 C 15 7.239 12.761 5 10 5 C 7.239 5 5 7.239 5 10 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 10 6 C 12.209 6 14 7.791 14 10 C 14 12.209 12.209 14 10 14 C 7.791 14 6 12.209 6 10 C 6 7.791 7.791 6 10 6 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:8742758582,withExternalLayout:true,...addPropertyOverrides({VtYRH9DLw:{svgContentId:11333563048}},baseVariant,gestureVariant)}),isDisplayed33()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-nt53r0\",\"data-framer-name\":\"Clock\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SvZ7FH6ZB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 11 5 C 11 4.448 10.552 4 10 4 C 9.448 4 9 4.448 9 5 L 9 10 C 9 10.552 9.448 11 10 11 L 15 11 C 15.552 11 16 10.552 16 10 C 16 9.448 15.552 9 15 9 L 11 9 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10850926143,withExternalLayout:true,...addPropertyOverrides({psaQhTldj:{svgContentId:11016820558}},baseVariant,gestureVariant)}),isDisplayed34()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-smx9pa\",\"data-framer-name\":\"Stars\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"qJ98yVPUB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.552 1.72 C 9.735 1.349 10.265 1.349 10.448 1.72 L 12.382 5.638 C 12.455 5.785 12.595 5.887 12.758 5.911 L 17.081 6.539 C 17.492 6.599 17.655 7.103 17.359 7.392 L 14.23 10.442 C 14.112 10.556 14.059 10.722 14.086 10.884 L 14.825 15.19 C 14.895 15.598 14.466 15.91 14.099 15.717 L 10.233 13.684 C 10.087 13.607 9.913 13.607 9.767 13.684 L 5.901 15.717 C 5.534 15.91 5.105 15.598 5.175 15.19 L 5.914 10.884 C 5.941 10.722 5.888 10.556 5.77 10.442 L 2.641 7.392 C 2.345 7.103 2.508 6.599 2.919 6.539 L 7.242 5.911 C 7.405 5.887 7.545 5.785 7.618 5.638 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 9.553 16.894 C 9.737 16.526 10.263 16.526 10.447 16.894 L 11.638 19.276 C 11.804 19.609 11.563 20 11.191 20 L 8.809 20 C 8.437 20 8.196 19.609 8.362 19.276 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 1.313 1.001 C 1.49 0.611 2.045 0.611 2.223 1.001 L 3.214 3.182 C 3.365 3.513 3.123 3.889 2.759 3.889 L 0.777 3.889 C 0.413 3.889 0.171 3.513 0.321 3.182 Z\" transform=\"translate(1.857 0.68) rotate(135 1.768 1.945)\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 1.313 1.001 C 1.49 0.611 2.045 0.611 2.223 1.001 L 3.214 3.182 C 3.365 3.513 3.123 3.889 2.759 3.889 L 0.777 3.889 C 0.413 3.889 0.171 3.513 0.321 3.182 Z\" transform=\"translate(14.607 0.68) rotate(-135 1.768 1.945)\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:10009915178,withExternalLayout:true,...addPropertyOverrides({uCf5B6jcO:{svgContentId:11205134913}},baseVariant,gestureVariant)}),isDisplayed35()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-3grlfn\",\"data-framer-name\":\"Home\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"JFdrV6lm9\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4 18 C 3.448 18 3 17.552 3 17 L 3 10.328 C 3 9.798 3.211 9.289 3.586 8.914 L 9.293 3.207 C 9.683 2.817 10.317 2.817 10.707 3.207 L 16.414 8.914 C 16.789 9.289 17 9.798 17 10.328 L 17 17 C 17 17.552 16.552 18 16 18 L 13 18 C 12.448 18 12 17.552 12 17 L 12 13 C 12 12.448 11.552 12 11 12 L 9 12 C 8.448 12 8 12.448 8 13 L 8 17 C 8 17.552 7.552 18 7 18 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11691198667,withExternalLayout:true,...addPropertyOverrides({V_2fYLMX6:{svgContentId:11959136095}},baseVariant,gestureVariant)}),isDisplayed36()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15px7r\",\"data-framer-name\":\"Gift\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"L_pblnq_g\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 2 12 C 2 11.448 2.448 11 3 11 L 8.5 11 C 9.052 11 9.5 11.448 9.5 12 L 9.5 18 C 9.5 18.552 9.052 19 8.5 19 L 5 19 C 3.343 19 2 17.657 2 16 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 18 12 C 18 11.448 17.552 11 17 11 L 11.5 11 C 10.948 11 10.5 11.448 10.5 12 L 10.5 18 C 10.5 18.552 10.948 19 11.5 19 L 15 19 C 16.657 19 18 17.657 18 16 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 1 7 C 1 6.448 1.448 6 2 6 L 18 6 C 18.552 6 19 6.448 19 7 L 19 9 C 19 9.552 18.552 10 18 10 L 2 10 C 1.448 10 1 9.552 1 9 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 7.5 1 C 9.157 1 10.5 2.343 10.5 4 L 10.5 7 L 7.5 7 C 5.843 7 4.5 5.657 4.5 4 C 4.5 2.343 5.843 1 7.5 1 Z M 5.5 4 C 5.5 5.105 6.395 6 7.5 6 L 9.5 6 L 9.5 4 C 9.5 2.895 8.605 2 7.5 2 C 6.395 2 5.5 2.895 5.5 4 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 15.5 4 C 15.5 5.657 14.157 7 12.5 7 L 9.5 7 L 9.5 4 C 9.5 2.343 10.843 1 12.5 1 C 14.157 1 15.5 2.343 15.5 4 Z M 12.5 2 C 11.395 2 10.5 2.895 10.5 4 L 10.5 6 L 12.5 6 C 13.605 6 14.5 5.105 14.5 4 C 14.5 2.895 13.605 2 12.5 2 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9328421213,withExternalLayout:true,...addPropertyOverrides({T5lzGDJ95:{svgContentId:10297304527}},baseVariant,gestureVariant)}),isDisplayed37()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gwqqw7\",\"data-framer-name\":\"Ruler + Pencil\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cxXaCNK3p\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.207 16.207 C 0.817 15.817 0.817 15.183 1.207 14.793 L 2.646 13.354 C 2.842 13.158 3.158 13.158 3.354 13.354 L 4.646 14.646 C 4.842 14.842 5.158 14.842 5.354 14.646 L 5.646 14.354 C 5.842 14.158 5.842 13.842 5.646 13.646 L 4.354 12.354 C 4.158 12.158 4.158 11.842 4.354 11.646 L 5.646 10.354 C 5.842 10.158 6.158 10.158 6.354 10.354 L 7.646 11.646 C 7.842 11.842 8.158 11.842 8.354 11.646 L 8.646 11.354 C 8.842 11.158 8.842 10.842 8.646 10.646 L 7.354 9.354 C 7.158 9.158 7.158 8.842 7.354 8.646 L 8.646 7.354 C 8.842 7.158 9.158 7.158 9.354 7.354 L 10.646 8.646 C 10.842 8.842 11.158 8.842 11.354 8.646 L 11.646 8.354 C 11.842 8.158 11.842 7.842 11.646 7.646 L 10.354 6.354 C 10.158 6.158 10.158 5.842 10.354 5.646 L 11.646 4.354 C 11.842 4.158 12.158 4.158 12.354 4.354 L 13.646 5.646 C 13.842 5.842 14.158 5.842 14.354 5.646 L 14.646 5.354 C 14.842 5.158 14.842 4.842 14.646 4.646 L 13.354 3.354 C 13.158 3.158 13.158 2.842 13.354 2.646 L 14.793 1.207 C 15.183 0.817 15.817 0.817 16.207 1.207 L 18.793 3.793 C 19.183 4.183 19.183 4.817 18.793 5.207 L 5.207 18.793 C 4.817 19.183 4.183 19.183 3.793 18.793 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 3.793 1.207 C 4.183 0.817 4.817 0.817 5.207 1.207 L 8.293 4.293 C 8.683 4.683 8.683 5.317 8.293 5.707 L 5.707 8.293 C 5.317 8.683 4.683 8.683 4.293 8.293 L 1.207 5.207 C 0.817 4.817 0.817 4.183 1.207 3.793 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 19 18 C 19 18.552 18.552 19 18 19 L 15.414 19 C 15.149 19 14.895 18.895 14.707 18.707 L 11.707 15.707 C 11.317 15.317 11.317 14.683 11.707 14.293 L 14.293 11.707 C 14.683 11.317 15.317 11.317 15.707 11.707 L 18.707 14.707 C 18.895 14.895 19 15.149 19 15.414 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:12334479195,withExternalLayout:true,...addPropertyOverrides({hzh4Mrku3:{svgContentId:8773159218}},baseVariant,gestureVariant)}),isDisplayed38()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-hifp0c\",\"data-framer-name\":\"Film\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WoR7lOQf2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 8 5 C 8 6.105 8.895 7 10 7 C 11.105 7 12 6.105 12 5 C 12 3.895 11.105 3 10 3 C 8.895 3 8 3.895 8 5 Z M 8 15 C 8 16.105 8.895 17 10 17 C 11.105 17 12 16.105 12 15 C 12 13.895 11.105 13 10 13 C 8.895 13 8 13.895 8 15 Z M 3 10 C 3 11.105 3.895 12 5 12 C 6.105 12 7 11.105 7 10 C 7 8.895 6.105 8 5 8 C 3.895 8 3 8.895 3 10 Z M 13 10 C 13 11.105 13.895 12 15 12 C 16.105 12 17 11.105 17 10 C 17 8.895 16.105 8 15 8 C 13.895 8 13 8.895 13 10 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 10 18 L 19.5 18 C 19.776 18 20 18.224 20 18.5 L 20 18.5 C 20 18.776 19.776 19 19.5 19 L 10 19 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:10620407884,withExternalLayout:true,...addPropertyOverrides({pgKT3yzGn:{svgContentId:8828489008}},baseVariant,gestureVariant)}),isDisplayed39()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rcii5r\",\"data-framer-name\":\"Shopping Cart\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"XOgPnW2zW\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 15.5 15 C 16.328 15 17 15.672 17 16.5 C 17 17.328 16.328 18 15.5 18 C 14.672 18 14 17.328 14 16.5 C 14 15.672 14.672 15 15.5 15 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 6.5 15 C 7.328 15 8 15.672 8 16.5 C 8 17.328 7.328 18 6.5 18 C 5.672 18 5 17.328 5 16.5 C 5 15.672 5.672 15 6.5 15 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 3.807 2 C 4.224 2 4.597 2.259 4.743 2.649 L 6 6 L 17.557 6 C 18.255 6 18.738 6.697 18.493 7.351 L 16.487 12.702 C 16.194 13.483 15.448 14 14.614 14 L 7.919 14 C 7.069 14 6.312 13.463 6.031 12.661 L 3 4 L 2 4 C 1.448 4 1 3.552 1 3 L 1 3 C 1 2.448 1.448 2 2 2 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11875249275,withExternalLayout:true,...addPropertyOverrides({v7_4PFCYP:{svgContentId:10610540525}},baseVariant,gestureVariant)}),isDisplayed40()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vc5rjk\",\"data-framer-name\":\"News\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LwhVilSQ2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3 14.25 C 3 14.664 3.336 15 3.75 15 C 4.164 15 4.5 14.664 4.5 14.25 L 4.5 4 C 4.5 2.895 5.395 2 6.5 2 L 15 2 C 17.209 2 19 3.791 19 6 L 19 14 C 19 16.209 17.209 18 15 18 L 4.714 18 C 2.663 18 1 16.337 1 14.286 L 1 6.923 C 1 5.712 1.57 4.573 2.538 3.846 C 2.729 3.704 3 3.839 3 4.077 Z M 8 9.75 C 8 10.164 8.336 10.5 8.75 10.5 L 14.75 10.5 C 15.164 10.5 15.5 10.164 15.5 9.75 C 15.5 9.336 15.164 9 14.75 9 L 8.75 9 C 8.336 9 8 9.336 8 9.75 Z M 8 6.75 C 8 7.164 8.336 7.5 8.75 7.5 L 14.75 7.5 C 15.164 7.5 15.5 7.164 15.5 6.75 C 15.5 6.336 15.164 6 14.75 6 L 8.75 6 C 8.336 6 8 6.336 8 6.75 Z M 8 12.75 C 8 13.164 8.336 13.5 8.75 13.5 L 14.75 13.5 C 15.164 13.5 15.5 13.164 15.5 12.75 C 15.5 12.336 15.164 12 14.75 12 L 8.75 12 C 8.336 12 8 12.336 8 12.75 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:9636184805,withExternalLayout:true,...addPropertyOverrides({EfcZ_7CQK:{svgContentId:10984205579}},baseVariant,gestureVariant)}),isDisplayed41()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kxc0jl\",\"data-framer-name\":\"Sidebar\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FgsiW4OA2\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 19 5 C 19 2.791 17.209 1 15 1 L 7 1 C 6.448 1 6 1.448 6 2 L 6 18 C 6 18.552 6.448 19 7 19 L 15 19 C 17.209 19 19 17.209 19 15 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 1 4.945 C 1 3.214 2.178 1.706 3.857 1.286 L 3.857 1.286 C 4.438 1.141 5 1.58 5 2.178 L 5 17.822 C 5 18.42 4.438 18.859 3.857 18.714 L 3.857 18.714 C 2.178 18.294 1 16.786 1 15.055 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:8629020664,withExternalLayout:true,...addPropertyOverrides({x33RA_91r:{svgContentId:12250345415}},baseVariant,gestureVariant)}),isDisplayed42()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4s752i\",\"data-framer-name\":\"User\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"O8I8Mz6CD\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 6 8 C 6 10.209 7.791 12 10 12 C 12.209 12 14 10.209 14 8 C 14 5.791 12.209 4 10 4 C 7.791 4 6 5.791 6 8 Z M 4.568 15.873 C 5.995 17.193 7.903 18 10 18 C 12.097 18 14.005 17.193 15.432 15.873 C 14.473 14.175 12.401 13 10 13 C 7.599 13 5.527 14.175 4.568 15.873 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9361598944,withExternalLayout:true,...addPropertyOverrides({pXj12B0Q8:{svgContentId:10134267707}},baseVariant,gestureVariant)}),isDisplayed43()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-139rw7s\",\"data-framer-name\":\"Plugins\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"a1g9IbzhR\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 12.5 12.5 L 11.5 12.5 C 10.948 12.5 10.5 12.948 10.5 13.5 C 10.5 14.052 10.948 14.5 11.5 14.5 L 12.5 14.5 L 12.5 15.5 C 12.5 16.052 12.948 16.5 13.5 16.5 C 14.052 16.5 14.5 16.052 14.5 15.5 L 14.5 14.5 L 15.5 14.5 C 16.052 14.5 16.5 14.052 16.5 13.5 C 16.5 12.948 16.052 12.5 15.5 12.5 L 14.5 12.5 L 14.5 11.5 C 14.5 10.948 14.052 10.5 13.5 10.5 C 12.948 10.5 12.5 10.948 12.5 11.5 Z M 11 6.5 C 11 7.881 12.119 9 13.5 9 C 14.881 9 16 7.881 16 6.5 C 16 5.119 14.881 4 13.5 4 C 12.119 4 11 5.119 11 6.5 Z M 3.785 8.095 C 3.549 8.495 3.837 9 4.301 9 L 8.699 9 C 9.163 9 9.451 8.495 9.215 8.095 L 7.017 4.374 C 6.784 3.981 6.216 3.981 5.983 4.374 Z M 4.03 12.97 C 3.737 13.263 3.737 13.737 4.03 14.03 L 5.97 15.97 C 6.263 16.263 6.737 16.263 7.03 15.97 L 8.97 14.03 C 9.263 13.737 9.263 13.263 8.97 12.97 L 7.03 11.03 C 6.737 10.737 6.263 10.737 5.97 11.03 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9778553564,withExternalLayout:true,...addPropertyOverrides({zLpkUDfvQ:{svgContentId:12365853386}},baseVariant,gestureVariant)}),isDisplayed44()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yg583h\",\"data-framer-name\":\"Pause-Circle\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KiKuN0m0O\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 11 14 C 11 14.552 11.448 15 12 15 L 13 15 C 13.552 15 14 14.552 14 14 L 14 6 C 14 5.448 13.552 5 13 5 L 12 5 C 11.448 5 11 5.448 11 6 Z M 6 14 C 6 14.552 6.448 15 7 15 L 8 15 C 8.552 15 9 14.552 9 14 L 9 6 C 9 5.448 8.552 5 8 5 L 7 5 C 6.448 5 6 5.448 6 6 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11865292908,withExternalLayout:true,...addPropertyOverrides({Gd9CuLo5r:{svgContentId:10708755599}},baseVariant,gestureVariant)}),isDisplayed45()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9cn48b\",\"data-framer-name\":\"Play-Circle\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"i60LcDvnC\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 7 13.662 C 7 14.454 7.878 14.932 8.543 14.501 L 14.202 10.84 C 14.811 10.446 14.811 9.554 14.202 9.16 L 8.543 5.499 C 7.878 5.068 7 5.546 7 6.338 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9794388169,withExternalLayout:true,...addPropertyOverrides({jdfLTSv01:{svgContentId:11672796355}},baseVariant,gestureVariant)}),isDisplayed46()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1oc1qgw\",\"data-framer-name\":\"Puase\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"l7xGbn_i3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4 4 C 4 3.448 4.448 3 5 3 L 8 3 C 8.552 3 9 3.448 9 4 L 9 16 C 9 16.552 8.552 17 8 17 L 5 17 C 4.448 17 4 16.552 4 16 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 11 4 C 11 3.448 11.448 3 12 3 L 15 3 C 15.552 3 16 3.448 16 4 L 16 16 C 16 16.552 15.552 17 15 17 L 12 17 C 11.448 17 11 16.552 11 16 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11597434235,withExternalLayout:true,...addPropertyOverrides({NHm0gAPm9:{svgContentId:11394061378}},baseVariant,gestureVariant)}),isDisplayed47()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-y5e006\",\"data-framer-name\":\"Paragraph\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NhIu3ZeIp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 2 7.75 C 2 7.336 2.336 7 2.75 7 L 17.25 7 C 17.664 7 18 7.336 18 7.75 L 18 7.75 C 18 8.164 17.664 8.5 17.25 8.5 L 2.75 8.5 C 2.336 8.5 2 8.164 2 7.75 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 2 3.75 C 2 3.336 2.336 3 2.75 3 L 17.25 3 C 17.664 3 18 3.336 18 3.75 L 18 3.75 C 18 4.164 17.664 4.5 17.25 4.5 L 2.75 4.5 C 2.336 4.5 2 4.164 2 3.75 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 2 11.75 C 2 11.336 2.336 11 2.75 11 L 17.25 11 C 17.664 11 18 11.336 18 11.75 L 18 11.75 C 18 12.164 17.664 12.5 17.25 12.5 L 2.75 12.5 C 2.336 12.5 2 12.164 2 11.75 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 2 15.75 C 2 15.336 2.336 15 2.75 15 L 10.25 15 C 10.664 15 11 15.336 11 15.75 L 11 15.75 C 11 16.164 10.664 16.5 10.25 16.5 L 2.75 16.5 C 2.336 16.5 2 16.164 2 15.75 Z\" fill=\"hsl(0, 0%, 100%)\" opacity=\"0.5\"></path></svg>',svgContentId:10227150339,withExternalLayout:true,...addPropertyOverrides({xMv7rxeKA:{svgContentId:9714542184}},baseVariant,gestureVariant)}),isDisplayed48()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1x34170\",\"data-framer-name\":\"CMS\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LdPsjakZ9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.418 1 18 2.567 18 4.5 C 18 6.433 14.418 8 10 8 C 5.582 8 2 6.433 2 4.5 C 2 2.567 5.582 1 10 1 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 18 14.5 C 18 16.433 14.418 18 10 18 C 5.582 18 2 16.433 2 14.5 L 2 11.5 C 2 13.433 5.582 15 10 15 C 14.418 15 18 13.433 18 11.5 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 18 9.5 C 18 11.433 14.418 13 10 13 C 5.582 13 2 11.433 2 9.5 L 2 6.5 C 2 8.433 5.582 10 10 10 C 14.418 10 18 8.433 18 6.5 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10997023731,withExternalLayout:true,...addPropertyOverrides({qbjnMt9kG:{svgContentId:12635436656}},baseVariant,gestureVariant)}),isDisplayed49()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-188rh66\",\"data-framer-name\":\"Podcast\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"C6wZtW_WJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 6 5 C 6 2.791 7.791 1 10 1 L 10 1 C 12.209 1 14 2.791 14 5 L 14 10 C 14 12.209 12.209 14 10 14 L 10 14 C 7.791 14 6 12.209 6 10 Z\" fill=\"#ffffff\"></path><path d=\"M 17 10.077 C 17 13.587 14.387 16.488 11 16.939 L 11 19 C 11 19.552 10.552 20 10 20 C 9.448 20 9 19.552 9 19 L 9 16.939 C 5.613 16.488 3 13.587 3 10.077 L 3 8.75 C 3 8.336 3.336 8 3.75 8 C 4.164 8 4.5 8.336 4.5 8.75 L 4.5 10 C 4.5 13.038 6.962 15.5 10 15.5 C 13.038 15.5 15.5 13.038 15.5 10 L 15.5 8.75 C 15.5 8.336 15.836 8 16.25 8 C 16.664 8 17 8.336 17 8.75 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:11697123230,withExternalLayout:true,...addPropertyOverrides({jDuov_YmZ:{svgContentId:12785180989}},baseVariant,gestureVariant)}),isDisplayed50()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fhe6fv\",\"data-framer-name\":\"Headphones\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Ow15fBpLJ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 11 C 1 6.029 5.029 2 10 2 L 10 2 C 14.971 2 19 6.029 19 11 L 19 14 C 19 16.209 17.209 18 15 18 L 15 18 C 14.448 18 14 17.552 14 17 L 14 13 C 14 11.895 14.895 11 16 11 L 17.317 11 C 17.418 11 17.5 10.918 17.5 10.817 L 17.5 10.817 C 17.5 6.776 14.224 3.5 10.183 3.5 L 9.817 3.5 C 5.776 3.5 2.5 6.776 2.5 10.817 L 2.5 10.817 C 2.5 10.918 2.582 11 2.683 11 L 4 11 C 5.105 11 6 11.895 6 13 L 6 17 C 6 17.552 5.552 18 5 18 L 5 18 C 2.791 18 1 16.209 1 14 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9804533844,withExternalLayout:true,...addPropertyOverrides({Unz0c_9VW:{svgContentId:12471384960}},baseVariant,gestureVariant)}),isDisplayed51()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pdczjh\",\"data-framer-name\":\"Rocket\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"dX0zNKbd0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 18.538 1 C 18.793 1 19 1.207 19 1.462 L 19 2.029 C 19 5.212 17.736 8.264 15.485 10.515 L 12.76 13.24 C 12.616 13.384 12.616 13.616 12.76 13.76 L 13.146 14.146 C 13.342 14.342 13.658 14.342 13.854 14.146 L 15.502 12.498 C 15.875 12.125 16.497 12.509 16.33 13.009 L 15.537 15.388 C 15.513 15.462 15.471 15.529 15.417 15.583 L 12.354 18.646 C 12.158 18.842 11.842 18.842 11.646 18.646 L 10.146 17.146 C 10.053 17.053 10 16.926 10 16.793 L 10 14.207 C 10 14.074 9.947 13.947 9.854 13.854 L 6.146 10.146 C 6.053 10.053 5.926 10 5.793 10 L 3.207 10 C 3.074 10 2.947 9.947 2.854 9.854 L 1.354 8.354 C 1.158 8.158 1.158 7.842 1.354 7.646 L 4.417 4.583 C 4.471 4.529 4.538 4.487 4.612 4.463 L 6.991 3.67 C 7.491 3.503 7.875 4.125 7.502 4.498 L 5.854 6.146 C 5.658 6.342 5.658 6.658 5.854 6.854 L 6.24 7.24 C 6.384 7.384 6.616 7.384 6.76 7.24 L 9.485 4.515 C 11.736 2.264 14.788 1 17.971 1 Z\" fill=\"#ffffff\"></path><path d=\"M 2.897 18.368 C 2.116 18.628 1.372 17.884 1.632 17.103 L 3.386 11.842 C 3.454 11.638 3.645 11.5 3.86 11.5 L 5.293 11.5 C 5.426 11.5 5.553 11.553 5.646 11.646 L 8.354 14.354 C 8.447 14.447 8.5 14.574 8.5 14.707 L 8.5 16.14 C 8.5 16.355 8.362 16.546 8.158 16.614 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:10906228942,withExternalLayout:true,...addPropertyOverrides({IB59ypYp3:{svgContentId:8601856667}},baseVariant,gestureVariant)}),isDisplayed52()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-aby8m1\",\"data-framer-name\":\"Restaurant\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"v5UdYRisL\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 12 8.535 C 12 5.469 13.792 2.685 16.583 1.417 L 16.583 1.417 C 17.013 1.222 17.5 1.535 17.5 2.007 L 17.5 18.25 C 17.5 18.664 17.164 19 16.75 19 L 16.75 19 C 16.336 19 16 18.664 16 18.25 L 16 13.5 C 16 13.224 15.776 13 15.5 13 L 12.864 13 C 12.387 13 12 12.613 12 12.136 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 2.5 2.75 C 2.5 2.336 2.836 2 3.25 2 L 3.25 2 C 3.664 2 4 2.336 4 2.75 L 4 7.3 C 4 7.963 4.537 8.5 5.2 8.5 L 5.2 8.5 C 5.366 8.5 5.5 8.366 5.5 8.2 L 5.5 2.75 C 5.5 2.336 5.836 2 6.25 2 L 6.25 2 C 6.664 2 7 2.336 7 2.75 L 7 8.2 C 7 8.366 7.134 8.5 7.3 8.5 L 7.3 8.5 C 7.963 8.5 8.5 7.963 8.5 7.3 L 8.5 2.75 C 8.5 2.336 8.836 2 9.25 2 L 9.25 2 C 9.664 2 10 2.336 10 2.75 L 10 7.333 C 10 8.806 8.806 10 7.333 10 L 7.333 10 C 7.149 10 7 10.149 7 10.333 L 7 18.25 C 7 18.664 6.664 19 6.25 19 L 6.25 19 C 5.836 19 5.5 18.664 5.5 18.25 L 5.5 10.333 C 5.5 10.149 5.351 10 5.167 10 L 5.167 10 C 3.694 10 2.5 8.806 2.5 7.333 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:10201939337,withExternalLayout:true,...addPropertyOverrides({GLLnmRBFc:{svgContentId:10559275312}},baseVariant,gestureVariant)}),isDisplayed53()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pv8pi7\",\"data-framer-name\":\"Photography\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mTOa9cR8C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 5 10 C 5 12.761 7.239 15 10 15 C 12.761 15 15 12.761 15 10 C 15 7.239 12.761 5 10 5 C 7.239 5 5 7.239 5 10 Z M 14 4.5 C 14 5.328 14.672 6 15.5 6 C 16.328 6 17 5.328 17 4.5 C 17 3.672 16.328 3 15.5 3 C 14.672 3 14 3.672 14 4.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 10 6 C 12.209 6 14 7.791 14 10 C 14 12.209 12.209 14 10 14 C 7.791 14 6 12.209 6 10 C 6 7.791 7.791 6 10 6 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:9264640769,withExternalLayout:true,...addPropertyOverrides({P3p864Nsn:{svgContentId:12305915743}},baseVariant,gestureVariant)}),isDisplayed54()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vbw28w\",\"data-framer-name\":\"Arrow Up\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nWSUf_Xop\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.914 6.475 L 14 6.561 L 14 6.561 L 14 6.561 L 13.914 6.646 C 13.914 6.647 13.914 6.647 13.914 6.647 L 7.75 12.811 C 7.336 13.225 6.664 13.225 6.25 12.811 C 5.836 12.396 5.836 11.725 6.25 11.311 L 10 7.561 L 1 7.561 C 0.448 7.561 0 7.113 0 6.561 C 0 6.008 0.448 5.561 1 5.561 L 10 5.561 L 6.25 1.811 C 5.836 1.396 5.836 0.725 6.25 0.311 C 6.664 -0.104 7.336 -0.104 7.75 0.311 L 13.914 6.474 C 13.914 6.474 13.914 6.475 13.914 6.475 Z\" transform=\"translate(3 3.439) rotate(-90 7 6.561)\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9797637729,withExternalLayout:true,...addPropertyOverrides({bNpyN7PcI:{svgContentId:11661126322}},baseVariant,gestureVariant)}),isDisplayed55()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kmlr2o\",\"data-framer-name\":\"Arrow Down\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"L9NSM57HX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.75 11.311 C 8.164 11.725 8.164 12.396 7.75 12.811 C 7.336 13.225 6.664 13.225 6.25 12.811 L 0.086 6.647 C 0.086 6.647 0.086 6.647 0.086 6.646 L 0 6.561 L 0 6.561 L 0 6.561 L 0.086 6.475 C 0.086 6.475 0.086 6.474 0.086 6.474 L 6.25 0.311 C 6.664 -0.104 7.336 -0.104 7.75 0.311 C 8.164 0.725 8.164 1.396 7.75 1.811 L 4 5.561 L 13 5.561 C 13.552 5.561 14 6.008 14 6.561 C 14 7.113 13.552 7.561 13 7.561 L 4 7.561 Z\" transform=\"translate(3 3.439) rotate(-90 7 6.561)\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11438582117,withExternalLayout:true,...addPropertyOverrides({jRrGhekVD:{svgContentId:9787574710}},baseVariant,gestureVariant)}),isDisplayed56()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-vu9g5\",\"data-framer-name\":\"Arrow Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TszmZfCyk\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10.75 14.75 C 11.164 15.164 11.164 15.836 10.75 16.25 C 10.336 16.664 9.664 16.664 9.25 16.25 L 3.086 10.086 C 3.086 10.086 3.086 10.086 3.086 10.086 L 3 10 L 3 10 L 3 10 L 3.086 9.914 C 3.086 9.914 3.086 9.914 3.086 9.914 L 9.25 3.75 C 9.664 3.336 10.336 3.336 10.75 3.75 C 11.164 4.164 11.164 4.836 10.75 5.25 L 7 9 L 16 9 C 16.552 9 17 9.448 17 10 C 17 10.552 16.552 11 16 11 L 7 11 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11096886299,withExternalLayout:true,...addPropertyOverrides({PHpCM9rOQ:{svgContentId:12182378708}},baseVariant,gestureVariant)}),isDisplayed57()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-knjycb\",\"data-framer-name\":\"Arrow Right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LDBPQL2ld\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 16.914 9.914 L 17 10 L 17 10 L 17 10 L 16.914 10.086 C 16.914 10.086 16.914 10.086 16.914 10.086 L 10.75 16.25 C 10.336 16.664 9.664 16.664 9.25 16.25 C 8.836 15.836 8.836 15.164 9.25 14.75 L 13 11 L 4 11 C 3.448 11 3 10.552 3 10 C 3 9.448 3.448 9 4 9 L 13 9 L 9.25 5.25 C 8.836 4.836 8.836 4.164 9.25 3.75 C 9.664 3.336 10.336 3.336 10.75 3.75 L 16.914 9.914 C 16.914 9.914 16.914 9.914 16.914 9.914 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10952682277,withExternalLayout:true,...addPropertyOverrides({cgxlR_4Pa:{svgContentId:8863353556}},baseVariant,gestureVariant)}),isDisplayed58()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pwyvmn\",\"data-framer-name\":\"Chevron Up\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zhYqv_alj\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 8.061 6.561 L 1.811 12.811 C 1.396 13.225 0.725 13.225 0.311 12.811 C -0.104 12.396 -0.104 11.725 0.311 11.311 L 5.061 6.561 L 0.311 1.811 C -0.104 1.396 -0.104 0.725 0.311 0.311 C 0.725 -0.104 1.396 -0.104 1.811 0.311 L 8.061 6.561 L 8.061 6.561 Z\" transform=\"translate(5.97 2.97) rotate(-90 4.03 6.561)\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11266649997,withExternalLayout:true,...addPropertyOverrides({u8pZILI7S:{svgContentId:9551363529}},baseVariant,gestureVariant)}),isDisplayed59()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1okx8k\",\"data-framer-name\":\"Chevron Down\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wHHGLeEfv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7.75 11.311 C 8.164 11.725 8.164 12.396 7.75 12.811 C 7.336 13.225 6.664 13.225 6.25 12.811 L 0 6.561 L 0 6.561 L 0 6.561 L 6.25 0.311 C 6.664 -0.104 7.336 -0.104 7.75 0.311 C 8.164 0.725 8.164 1.396 7.75 1.811 L 3 6.561 Z\" transform=\"translate(5.97 3.409) rotate(-90 4.03 6.561)\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11612503552,withExternalLayout:true,...addPropertyOverrides({Crg6_WX8e:{svgContentId:8997542283}},baseVariant,gestureVariant)}),isDisplayed60()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-10cy4e9\",\"data-framer-name\":\"Chevron Left\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pHPmFUyP9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.25 14.75 C 13.664 15.164 13.664 15.836 13.25 16.25 C 12.836 16.664 12.164 16.664 11.75 16.25 L 5.586 10.086 C 5.586 10.086 5.586 10.086 5.586 10.086 L 5.5 10 L 5.5 10 L 5.5 10 L 5.586 9.914 C 5.586 9.914 5.586 9.914 5.586 9.914 L 11.75 3.75 C 12.164 3.336 12.836 3.336 13.25 3.75 C 13.664 4.164 13.664 4.836 13.25 5.25 L 8.5 10 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9220018949,withExternalLayout:true,...addPropertyOverrides({G9pxk1bNp:{svgContentId:10127833153}},baseVariant,gestureVariant)}),isDisplayed61()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1h3rzsf\",\"data-framer-name\":\"Chevron Right\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"U6QPqF0l7\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.914 9.914 L 14 10 L 14 10 L 14 10 L 13.914 10.086 C 13.914 10.086 13.914 10.086 13.914 10.086 L 7.75 16.25 C 7.336 16.664 6.664 16.664 6.25 16.25 C 5.836 15.836 5.836 15.164 6.25 14.75 L 11 10 L 6.25 5.25 C 5.836 4.836 5.836 4.164 6.25 3.75 C 6.664 3.336 7.336 3.336 7.75 3.75 L 13.914 9.914 C 13.914 9.914 13.914 9.914 13.914 9.914 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11746258055,withExternalLayout:true,...addPropertyOverrides({rUER_xz47:{svgContentId:12590527525}},baseVariant,gestureVariant)}),isDisplayed62()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ghk9pt\",\"data-framer-name\":\"Figma\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"TZCU9YZNb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13 7 C 14.657 7 16 8.343 16 10 C 16 11.657 14.657 13 13 13 C 11.343 13 10 11.657 10 10 C 10 8.343 11.343 7 13 7 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 10 1 L 13 1 C 14.657 1 16 2.343 16 4 L 16 4 C 16 5.657 14.657 7 13 7 L 10 7 L 10 5.5 L 13 5.5 C 13.828 5.5 14.5 4.828 14.5 4 L 14.5 4 C 14.5 3.172 13.828 2.5 13 2.5 L 10 2.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 16 4 C 16 2.343 14.657 1 13 1 L 7 1 C 5.343 1 4 2.343 4 4 L 4 4 C 4 5.657 5.343 7 7 7 L 13 7 C 14.657 7 16 5.657 16 4 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 4 16 C 4 14.343 5.343 13 7 13 L 10 13 L 10 16 C 10 17.657 8.657 19 7 19 L 7 19 C 5.343 19 4 17.657 4 16 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 10 7 L 7 7 C 5.343 7 4 8.343 4 10 L 4 10 C 4 11.657 5.343 13 7 13 L 10 13 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9176791552,withExternalLayout:true,...addPropertyOverrides({k1u3Glhjw:{svgContentId:9795773208}},baseVariant,gestureVariant)}),isDisplayed63()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-z0lzbl\",\"data-framer-name\":\"Error\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EabM_bpZ4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g transform=\"translate(3 3) rotate(45 7 7)\" id=\"ss12413254671_1\"><path d=\"M 6 1 C 6 0.448 6.448 0 7 0 L 7 0 C 7.552 0 8 0.448 8 1 L 8 13 C 8 13.552 7.552 14 7 14 L 7 14 C 6.448 14 6 13.552 6 13 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0 7 C 0 6.448 0.448 6 1 6 L 13 6 C 13.552 6 14 6.448 14 7 L 14 7 C 14 7.552 13.552 8 13 8 L 1 8 C 0.448 8 0 7.552 0 7 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:12413254671,withExternalLayout:true,...addPropertyOverrides({Kdn_SvnSR:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><g transform=\"translate(3 3) rotate(45 7 7)\" id=\"ss10992473734_1\"><path d=\"M 6 1 C 6 0.448 6.448 0 7 0 L 7 0 C 7.552 0 8 0.448 8 1 L 8 13 C 8 13.552 7.552 14 7 14 L 7 14 C 6.448 14 6 13.552 6 13 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 0 7 C 0 6.448 0.448 6 1 6 L 13 6 C 13.552 6 14 6.448 14 7 L 14 7 C 14 7.552 13.552 8 13 8 L 1 8 C 0.448 8 0 7.552 0 7 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:10992473734}},baseVariant,gestureVariant)}),isDisplayed64()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1614uxo\",\"data-framer-name\":\"Plus\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rNQuBXcWX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9 4 C 9 3.448 9.448 3 10 3 L 10 3 C 10.552 3 11 3.448 11 4 L 11 16 C 11 16.552 10.552 17 10 17 L 10 17 C 9.448 17 9 16.552 9 16 Z\" fill=\"#ffffff\"></path><path d=\"M 3 10 C 3 9.448 3.448 9 4 9 L 16 9 C 16.552 9 17 9.448 17 10 L 17 10 C 17 10.552 16.552 11 16 11 L 4 11 C 3.448 11 3 10.552 3 10 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:10112608706,withExternalLayout:true,...addPropertyOverrides({yIiQYfVJT:{svgContentId:11552413806}},baseVariant,gestureVariant)}),isDisplayed65()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gsglu2\",\"data-framer-name\":\"Publish\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"tsKYygdkU\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 9 15 C 9 15.552 9.448 16 10 16 C 10.552 16 11 15.552 11 15 L 11 7.643 L 12.802 9.702 C 13.18 10.134 13.844 10.156 14.25 9.75 L 14.293 9.707 C 14.683 9.317 14.683 8.683 14.293 8.293 L 10 4 L 5.707 8.293 C 5.317 8.683 5.317 9.317 5.707 9.707 L 5.75 9.75 C 6.156 10.156 6.82 10.134 7.198 9.702 L 9 7.643 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11827971878,withExternalLayout:true,...addPropertyOverrides({mZyE2ZBJf:{svgContentId:10289163776}},baseVariant,gestureVariant)}),isDisplayed66()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ar3g0f\",\"data-framer-name\":\"Calendar\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"SnT72Ugie\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 10 C 1 9.448 1.448 9 2 9 L 18 9 C 18.552 9 19 9.448 19 10 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 19 7.2 C 19 7.642 18.642 8 18.2 8 L 1.8 8 C 1.358 8 1 7.642 1 7.2 C 1 5.5 2.326 4.109 4 4.006 C 4 4.004 4 4.002 4 4 L 4 2 C 4 1.448 4.448 1 5 1 C 5.552 1 6 1.448 6 2 L 6 4 L 14 4 L 14 2 C 14 1.448 14.448 1 15 1 C 15.552 1 16 1.448 16 2 L 16 4 C 16 4.002 16 4.004 16 4.006 C 17.674 4.109 19 5.5 19 7.2 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:9793943101,withExternalLayout:true,...addPropertyOverrides({l8z62CFOK:{svgContentId:11017608496}},baseVariant,gestureVariant)}),isDisplayed67()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1pq44xv\",\"data-framer-name\":\"Experts\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FXbwgMvMU\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 9 C 1 8.448 1.448 8 2 8 L 18 8 C 18.552 8 19 8.448 19 9 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 5.749 12.293 C 5.359 12.683 5.359 13.317 5.749 13.707 L 8.689 16.646 C 8.884 16.842 9.201 16.842 9.396 16.646 L 14.835 11.207 C 15.226 10.817 15.226 10.183 14.835 9.793 L 14.749 9.707 C 14.359 9.317 13.726 9.317 13.335 9.707 L 9.042 14 L 7.249 12.207 C 6.859 11.817 6.226 11.817 5.835 12.207 Z\" fill=\"#ffffff\"></path><path d=\"M 10 0 C 12.209 0 14 1.791 14 4 L 16.5 4 C 17.881 4 19 5.119 19 6.5 C 19 6.776 18.776 7 18.5 7 L 1.5 7 C 1.224 7 1 6.776 1 6.5 C 1 5.119 2.119 4 3.5 4 L 6 4 C 6 1.791 7.791 0 10 0 Z M 10 1.5 C 8.619 1.5 7.5 2.619 7.5 4 L 12.5 4 C 12.5 2.619 11.381 1.5 10 1.5 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path></svg>',svgContentId:8980500475,withExternalLayout:true,...addPropertyOverrides({gI6olJ08G:{svgContentId:9900191425}},baseVariant,gestureVariant)}),isDisplayed68()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-c13deo\",\"data-framer-name\":\"Remix\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"IUBswcaZp\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 7 10 C 7 11.657 8.343 13 10 13 C 11.657 13 13 11.657 13 10 C 13 8.343 11.657 7 10 7 C 8.343 7 7 8.343 7 10 Z M 10 5 C 10.552 5 11 4.552 11 4 C 11 3.448 10.552 3 10 3 C 6.134 3 3 6.134 3 10 C 3 10.552 3.448 11 4 11 C 4.552 11 5 10.552 5 10 C 5 7.239 7.239 5 10 5 Z M 17 10 C 17 9.448 16.552 9 16 9 C 15.448 9 15 9.448 15 10 C 15 12.761 12.761 15 10 15 C 9.448 15 9 15.448 9 16 C 9 16.552 9.448 17 10 17 C 13.866 17 17 13.866 17 10 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11228068589,withExternalLayout:true,...addPropertyOverrides({yMotyGuEo:{svgContentId:11185768006}},baseVariant,gestureVariant)}),isDisplayed69()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12r6mu8\",\"data-framer-name\":\"Emergency\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"agtbMVClO\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 2 C 14.418 2 18 5.582 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 5.582 5.582 2 10 2 Z M 9 6 C 9 6.552 9.448 7 10 7 C 10.552 7 11 6.552 11 6 C 11 5.448 10.552 5 10 5 C 9.448 5 9 5.448 9 6 Z M 9 14 C 9 14.552 9.448 15 10 15 C 10.552 15 11 14.552 11 14 L 11 10 C 11 9.448 10.552 9 10 9 C 9.448 9 9 9.448 9 10 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9210052140,withExternalLayout:true,...addPropertyOverrides({CGqBHLDBG:{svgContentId:10023869686}},baseVariant,gestureVariant)}),isDisplayed70()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1oju7rq\",\"data-framer-name\":\"Check\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Q1ES_OT9p\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3.707 9.293 C 3.317 9.683 3.317 10.317 3.707 10.707 L 7.646 14.646 C 7.842 14.842 8.158 14.842 8.354 14.646 L 15.793 7.207 C 16.183 6.817 16.183 6.183 15.793 5.793 L 15.707 5.707 C 15.317 5.317 14.683 5.317 14.293 5.707 L 8 12 L 5.207 9.207 C 4.817 8.817 4.183 8.817 3.793 9.207 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:10575347528,withExternalLayout:true,...addPropertyOverrides({aLKFCPrss:{svgContentId:11357730797}},baseVariant,gestureVariant)}),isDisplayed71()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-13eq2p\",\"data-framer-name\":\"Dot\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pxxYyFt2m\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 7 C 11.657 7 13 8.343 13 10 C 13 11.657 11.657 13 10 13 C 8.343 13 7 11.657 7 10 C 7 8.343 8.343 7 10 7 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9227000965,withExternalLayout:true,...addPropertyOverrides({XxwMTRDjI:{svgContentId:11961635601}},baseVariant,gestureVariant)}),isDisplayed72()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-u8vkso\",\"data-framer-name\":\"Developer\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nr7PEd963\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 8.6 13.1 C 8.833 12.751 8.787 12.287 8.49 11.99 L 6.5 10 L 8.49 8.01 C 8.787 7.713 8.833 7.249 8.6 6.9 C 8.29 6.434 7.631 6.369 7.235 6.765 L 4 10 L 7.235 13.235 C 7.631 13.631 8.29 13.566 8.6 13.1 Z M 11.4 6.9 C 11.167 7.249 11.213 7.713 11.51 8.01 L 13.5 10 L 11.51 11.99 C 11.213 12.287 11.167 12.751 11.4 13.1 C 11.71 13.566 12.369 13.631 12.765 13.235 L 16 10 L 12.765 6.765 C 12.369 6.369 11.71 6.434 11.4 6.9 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12302001721,withExternalLayout:true,...addPropertyOverrides({TWz_LfJvG:{svgContentId:10288454983}},baseVariant,gestureVariant)}),isDisplayed73()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-rnc1p\",\"data-framer-name\":\"Help\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"bxqAbQ_4m\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 7 9 C 7.552 9 8 8.552 8 8 C 8 6.895 8.895 6 10 6 C 11.105 6 12 6.895 12 8 C 12 9.105 11.105 10 10 10 C 9.448 10 9 10.448 9 11 L 9 12 C 9 12.552 9.448 13 10 13 C 10.552 13 11 12.552 11 12 L 11.265 11.912 C 12.898 11.367 14 9.839 14 8.117 L 14 8 C 14 5.791 12.209 4 10 4 C 7.791 4 6 5.791 6 8 C 6 8.552 6.448 9 7 9 Z M 9 15 C 9 15.552 9.448 16 10 16 C 10.552 16 11 15.552 11 15 C 11 14.448 10.552 14 10 14 C 9.448 14 9 14.448 9 15 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11265846484,withExternalLayout:true,...addPropertyOverrides({MLx_W_KRq:{svgContentId:9070662320}},baseVariant,gestureVariant)}),isDisplayed74()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1b14rj3\",\"data-framer-name\":\"Lock\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Emj6d_EXT\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13 9 L 13 6 C 13 4.343 11.657 3 10 3 L 10 3 C 8.343 3 7 4.343 7 6 L 7 9 L 5 9 L 5 6 C 5 3.239 7.239 1 10 1 L 10 1 C 12.761 1 15 3.239 15 6 L 15 9 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 2 10 C 2 8.343 3.343 7 5 7 L 15 7 C 16.657 7 18 8.343 18 10 L 18 16 C 18 17.657 16.657 19 15 19 L 5 19 C 3.343 19 2 17.657 2 16 Z M 8 13 C 8 14.105 8.895 15 10 15 C 11.105 15 12 14.105 12 13 C 12 11.895 11.105 11 10 11 C 8.895 11 8 11.895 8 13 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8763245431,withExternalLayout:true,...addPropertyOverrides({GY_2Msvug:{svgContentId:9172155386}},baseVariant,gestureVariant)}),isDisplayed75()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vg858\",\"data-framer-name\":\"Shield\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Qu3WkCH4I\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 3.5 C 1 2.119 2.119 1 3.5 1 L 16.5 1 C 17.881 1 19 2.119 19 3.5 L 19 6.965 C 19 12.361 15.547 17.151 10.429 18.857 L 10.316 18.895 C 10.111 18.963 9.889 18.963 9.684 18.895 L 9.571 18.857 C 4.453 17.151 1 12.361 1 6.965 Z M 5.707 8.293 C 5.317 8.683 5.317 9.317 5.707 9.707 L 8.646 12.646 C 8.842 12.842 9.158 12.842 9.354 12.646 L 14.793 7.207 C 15.183 6.817 15.183 6.183 14.793 5.793 L 14.707 5.707 C 14.317 5.317 13.683 5.317 13.293 5.707 L 9 10 L 7.207 8.207 C 6.817 7.817 6.183 7.817 5.793 8.207 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12173696681,withExternalLayout:true,...addPropertyOverrides({bJIc_EIjA:{svgContentId:12421741299}},baseVariant,gestureVariant)}),isDisplayed76()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-bykstx\",\"data-framer-name\":\"Star\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mtQWJz_f3\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.552 0.863 C 9.735 0.492 10.265 0.492 10.448 0.863 L 12.823 5.674 C 12.895 5.822 13.036 5.924 13.199 5.948 L 18.508 6.719 C 18.918 6.779 19.082 7.283 18.785 7.572 L 14.944 11.317 C 14.826 11.431 14.772 11.597 14.8 11.759 L 15.707 17.047 C 15.777 17.455 15.348 17.766 14.981 17.574 L 10.233 15.077 C 10.087 15.001 9.913 15.001 9.767 15.077 L 5.019 17.574 C 4.652 17.766 4.223 17.455 4.293 17.047 L 5.2 11.759 C 5.228 11.597 5.174 11.431 5.056 11.317 L 1.215 7.572 C 0.918 7.283 1.082 6.779 1.492 6.719 L 6.801 5.948 C 6.964 5.924 7.105 5.822 7.177 5.674 Z\" fill=\"hsl(0, 0%, 100%)\"></path></svg>',svgContentId:10121762022,withExternalLayout:true,...addPropertyOverrides({qhCVxCrmF:{svgContentId:11080823962}},baseVariant,gestureVariant)}),isDisplayed77()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vzsh12\",\"data-framer-name\":\"Updates\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pTWoW8971\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 7 C 1 4.791 2.791 3 5 3 L 12.126 3 C 12.044 3.32 12 3.655 12 4 C 12 6.209 13.791 8 16 8 C 16.345 8 16.68 7.956 17 7.874 L 17 15 C 17 17.209 15.209 19 13 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 16 1 C 17.657 1 19 2.343 19 4 C 19 5.657 17.657 7 16 7 C 14.343 7 13 5.657 13 4 C 13 2.343 14.343 1 16 1 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11898330511,withExternalLayout:true,...addPropertyOverrides({p0UY4vwDA:{svgContentId:11165648544}},baseVariant,gestureVariant)}),isDisplayed78()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gm0g3s\",\"data-framer-name\":\"Layout\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"f6tcY3BLc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 8.5 1 C 9.052 1 9.5 1.448 9.5 2 L 9.5 18 C 9.5 18.552 9.052 19 8.5 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 10.5 2 C 10.5 1.448 10.948 1 11.5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 8.5 C 19 9.052 18.552 9.5 18 9.5 L 11.5 9.5 C 10.948 9.5 10.5 9.052 10.5 8.5 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 10.5 11.5 C 10.5 10.948 10.948 10.5 11.5 10.5 L 18 10.5 C 18.552 10.5 19 10.948 19 11.5 L 19 15 C 19 17.209 17.209 19 15 19 L 11.5 19 C 10.948 19 10.5 18.552 10.5 18 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:12819329258,withExternalLayout:true,...addPropertyOverrides({BbHpaxe6o:{svgContentId:9728941464}},baseVariant,gestureVariant)}),isDisplayed79()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1k385kl\",\"data-framer-name\":\"AI\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"o919IskAN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 13.789 3.142 C 14.976 2.905 15.905 1.976 16.142 0.789 L 16.2 0.5 C 16.266 0.172 16.734 0.172 16.8 0.5 L 16.858 0.789 C 17.095 1.976 18.024 2.905 19.211 3.142 L 19.5 3.2 C 19.828 3.266 19.828 3.734 19.5 3.8 L 19.211 3.858 C 18.024 4.095 17.095 5.024 16.858 6.211 L 16.8 6.5 C 16.734 6.828 16.266 6.828 16.2 6.5 L 16.142 6.211 C 15.905 5.024 14.976 4.095 13.789 3.858 L 13.5 3.8 C 13.172 3.734 13.172 3.266 13.5 3.2 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 4.552 9.69 C 6.135 9.373 7.373 8.135 7.69 6.552 L 8.389 3.056 C 8.522 2.388 9.478 2.388 9.611 3.056 L 10.31 6.552 C 10.627 8.135 11.865 9.373 13.448 9.69 L 16.944 10.389 C 17.612 10.522 17.612 11.478 16.944 11.611 L 13.448 12.31 C 11.865 12.627 10.627 13.865 10.31 15.448 L 9.611 18.944 C 9.478 19.612 8.522 19.612 8.389 18.944 L 7.69 15.448 C 7.373 13.865 6.135 12.627 4.552 12.31 L 1.056 11.611 C 0.388 11.478 0.388 10.522 1.056 10.389 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:10956716571,withExternalLayout:true,...addPropertyOverrides({zjfl3maTH:{svgContentId:9413715991}},baseVariant,gestureVariant)}),isDisplayed80()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jzfcy1\",\"data-framer-name\":\"Display\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"S6n7b2Wje\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 11 C 19 13.209 17.209 15 15 15 L 5 15 C 2.791 15 1 13.209 1 11 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 6 17.5 C 6 16.672 6.672 16 7.5 16 L 12.5 16 C 13.328 16 14 16.672 14 17.5 L 14 17.5 C 14 18.328 13.328 19 12.5 19 L 7.5 19 C 6.672 19 6 18.328 6 17.5 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path></svg>',svgContentId:9482622314,withExternalLayout:true,...addPropertyOverrides({uwQrdjc7h:{svgContentId:8594423562}},baseVariant,gestureVariant)}),isDisplayed81()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1o1gozh\",\"data-framer-name\":\"Forms\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jFURnbrjF\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 7.5 C 19 8.605 18.105 9.5 17 9.5 L 3 9.5 C 1.895 9.5 1 8.605 1 7.5 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1 12.5 C 1 11.395 1.895 10.5 3 10.5 L 17 10.5 C 18.105 10.5 19 11.395 19 12.5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:8654843828,withExternalLayout:true,...addPropertyOverrides({PAblfJdhN:{svgContentId:9946623103}},baseVariant,gestureVariant)}),isDisplayed82()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sbfa9c\",\"data-framer-name\":\"Marketplace\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"o9H2OdNKi\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1.25 4 C 1.691 2.237 3.275 1 5.092 1 L 14.908 1 C 16.725 1 18.309 2.237 18.75 4 L 18.75 4 C 18.877 4.508 18.493 5 17.969 5 L 2.031 5 C 1.507 5 1.123 4.508 1.25 4 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 1 7 C 1 6.448 1.448 6 2 6 L 18 6 C 18.552 6 19 6.448 19 7 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 14.143 8 C 13.788 8 13.5 8.288 13.5 8.643 L 13.5 9 C 13.5 10.933 11.933 12.5 10 12.5 C 8.067 12.5 6.5 10.933 6.5 9 L 6.5 8.643 C 6.5 8.288 6.212 8 5.857 8 L 5.545 8 C 5.244 8 5 8.244 5 8.545 L 5 9 C 5 11.761 7.239 14 10 14 C 12.761 14 15 11.761 15 9 L 15 8.545 C 15 8.244 14.756 8 14.455 8 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1 7 C 1 6.448 1.448 6 2 6 L 18 6 C 18.552 6 19 6.448 19 7 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 14.143 8 C 13.788 8 13.5 8.288 13.5 8.643 L 13.5 9 C 13.5 10.933 11.933 12.5 10 12.5 C 8.067 12.5 6.5 10.933 6.5 9 L 6.5 8.643 C 6.5 8.288 6.212 8 5.857 8 L 5.545 8 C 5.244 8 5 8.244 5 8.545 L 5 9 C 5 11.761 7.239 14 10 14 C 12.761 14 15 11.761 15 9 L 15 8.545 C 15 8.244 14.756 8 14.455 8 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12574990592,withExternalLayout:true,...addPropertyOverrides({eEx7q16iu:{svgContentId:9137975883}},baseVariant,gestureVariant)}),isDisplayed83()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-8xhpor\",\"data-framer-name\":\"Partners\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"pO4Cuqh4W\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 9.305 0.673 C 9.692 0.298 10.308 0.298 10.695 0.673 L 12.121 2.052 C 12.342 2.266 12.651 2.366 12.956 2.323 L 14.92 2.045 C 15.454 1.97 15.952 2.331 16.045 2.863 L 16.388 4.816 C 16.441 5.12 16.631 5.382 16.904 5.527 L 18.656 6.456 C 19.132 6.709 19.323 7.294 19.086 7.779 L 18.215 9.561 C 18.079 9.838 18.079 10.162 18.215 10.439 L 19.086 12.221 C 19.323 12.706 19.132 13.291 18.656 13.544 L 16.904 14.473 C 16.631 14.618 16.441 14.88 16.388 15.184 L 16.045 17.137 C 15.952 17.669 15.454 18.03 14.92 17.955 L 12.956 17.677 C 12.651 17.634 12.342 17.734 12.121 17.948 L 10.695 19.327 C 10.308 19.702 9.692 19.702 9.305 19.327 L 7.879 17.948 C 7.658 17.734 7.349 17.634 7.044 17.677 L 5.08 17.955 C 4.546 18.03 4.048 17.669 3.955 17.137 L 3.612 15.184 C 3.559 14.88 3.369 14.618 3.096 14.473 L 1.344 13.544 C 0.868 13.291 0.677 12.706 0.914 12.221 L 1.785 10.439 C 1.921 10.162 1.921 9.838 1.785 9.561 L 0.914 7.779 C 0.677 7.294 0.868 6.709 1.344 6.456 L 3.096 5.527 C 3.369 5.382 3.559 5.12 3.612 4.816 L 3.955 2.863 C 4.048 2.331 4.546 1.97 5.08 2.045 L 7.044 2.323 C 7.349 2.366 7.658 2.266 7.879 2.052 Z M 5.707 9.293 C 5.317 9.683 5.317 10.317 5.707 10.707 L 8.646 13.646 C 8.842 13.842 9.158 13.842 9.354 13.646 L 14.793 8.207 C 15.183 7.817 15.183 7.183 14.793 6.793 L 14.707 6.707 C 14.317 6.317 13.683 6.317 13.293 6.707 L 9 11 L 7.207 9.207 C 6.817 8.817 6.183 8.817 5.793 9.207 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12801385536,withExternalLayout:true,...addPropertyOverrides({eQlXgJJnQ:{svgContentId:8838989940}},baseVariant,gestureVariant)}),isDisplayed84()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-go8k8n\",\"data-framer-name\":\"Gallery\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kmZCtoIjc\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 4 C 1 2.343 2.343 1 4 1 L 16 1 C 17.657 1 19 2.343 19 4 L 19 10 C 19 11.657 17.657 13 16 13 L 4 13 C 2.343 13 1 11.657 1 10 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3 15 C 3 14.448 3.448 14 4 14 L 16 14 C 16.552 14 17 14.448 17 15 L 17 15 C 17 15.552 16.552 16 16 16 L 4 16 C 3.448 16 3 15.552 3 15 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path><path d=\"M 4 18 C 4 17.448 4.448 17 5 17 L 15 17 C 15.552 17 16 17.448 16 18 L 16 18 C 16 18.552 15.552 19 15 19 L 5 19 C 4.448 19 4 18.552 4 18 Z\" fill=\"#ffffff\" opacity=\"0.5\"></path></svg>',svgContentId:12460252634,withExternalLayout:true,...addPropertyOverrides({m194vtiWK:{svgContentId:8877114783}},baseVariant,gestureVariant)}),isDisplayed85()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9uvj7a\",\"data-framer-name\":\"Navigation\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RoLncci5y\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 6 C 19 6.552 18.552 7 18 7 L 2 7 C 1.448 7 1 6.552 1 6 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 1 9 C 1 8.448 1.448 8 2 8 L 18 8 C 18.552 8 19 8.448 19 9 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:11590651368,withExternalLayout:true,...addPropertyOverrides({rVrMJV0HU:{svgContentId:12620360784}},baseVariant,gestureVariant)}),isDisplayed86()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ogxc6k\",\"data-framer-name\":\"Search\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"fV8h8aqJf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 14.8 14.8 L 18 18 M 9.2 2 C 13.176 2 16.4 5.224 16.4 9.2 C 16.4 13.176 13.176 16.4 9.2 16.4 C 5.224 16.4 2 13.176 2 9.2 C 2 5.224 5.224 2 9.2 2 Z\" fill=\"transparent\" stroke-width=\"2\" stroke=\"rgb(255, 255, 255)\" stroke-linecap=\"round\"></path></svg>',svgContentId:10242296872,withExternalLayout:true,...addPropertyOverrides({m28dWRBPu:{svgContentId:11704916195}},baseVariant,gestureVariant)}),isDisplayed87()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tlvlz5\",\"data-framer-name\":\"Play\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HdpjbaO0U\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 4 3.277 C 4 2.497 4.853 2.018 5.519 2.422 L 16.592 9.145 C 17.233 9.535 17.233 10.465 16.592 10.855 L 5.519 17.578 C 4.853 17.982 4 17.503 4 16.723 Z\" fill=\"hsl(0, 0%, 100%)\"></path></svg>',svgContentId:11430835375,withExternalLayout:true,...addPropertyOverrides({Ym4fQWwNY:{svgContentId:12060494686}},baseVariant,gestureVariant)}),isDisplayed88()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1n05gb8\",\"data-framer-name\":\"Copy\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lxHAZGn5d\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 11.5 9.5 C 11.5 8.119 12.619 7 14 7 L 20.5 7 C 21.881 7 23 8.119 23 9.5 L 23 16 C 23 17.381 21.881 18.5 20.5 18.5 L 14 18.5 C 12.619 18.5 11.5 17.381 11.5 16 Z\" fill=\"hsl(0, 0%, 100%)\"></path><path d=\"M 8.5 12.5 C 7.395 12.5 6.5 13.395 6.5 14.5 L 6.5 20.5 C 6.5 22.157 7.843 23.5 9.5 23.5 L 15.5 23.5 C 16.605 23.5 17.5 22.605 17.5 21.5 L 17.5 21 C 17.5 20.448 17.052 20 16.5 20 L 13.5 20 C 11.567 20 10 18.433 10 16.5 L 10 13.5 C 10 12.948 9.552 12.5 9 12.5 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:11008656851,withExternalLayout:true,...addPropertyOverrides({T1puran2N:{svgContentId:10110839250}},baseVariant,gestureVariant)}),isDisplayed89()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1bbutx9\",\"data-framer-name\":\"Chat\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"d3oQBN4HO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 16 L 3.259 17.983 C 2.499 18.206 1.794 17.501 2.017 16.741 L 4 10 Z\" fill=\"#ffffff\"></path><path d=\"M 10 2 C 14.418 2 18 5.582 18 10 C 18 14.418 14.418 18 10 18 C 5.582 18 2 14.418 2 10 C 2 5.582 5.582 2 10 2 Z\" fill=\"#ffffff\"></path></svg>',svgContentId:10091117712,withExternalLayout:true,...addPropertyOverrides({h0bavwGVC:{svgContentId:11009236914}},baseVariant,gestureVariant)}),isDisplayed90()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-jeiy5b\",\"data-framer-name\":\"Megaphone\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"AHvUbzK7p\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 7 4.781 C 7 4.322 7.312 3.922 7.757 3.811 L 15.272 1.932 C 17.166 1.459 19 2.891 19 4.842 L 19 12.158 C 19 14.109 17.166 15.541 15.272 15.068 L 7.757 13.189 C 7.312 13.078 7 12.678 7 12.219 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 3 14.68 C 3 14.063 3.555 13.592 4.164 13.694 L 5.164 13.861 C 5.647 13.941 6 14.358 6 14.847 L 6 16.719 C 6 17.913 4.928 18.821 3.75 18.625 L 3.75 18.625 C 3.317 18.553 3 18.178 3 17.74 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path><path d=\"M 1 8.5 C 1 6.465 2.436 4.713 4.432 4.314 L 5.167 4.167 C 5.598 4.08 6 4.41 6 4.85 L 6 12.15 C 6 12.59 5.598 12.92 5.167 12.833 L 4.432 12.686 C 2.436 12.287 1 10.535 1 8.5 Z\" fill=\"rgb(255, 255, 255)\" opacity=\"0.5\"></path></svg>',svgContentId:9025412543,withExternalLayout:true,...addPropertyOverrides({VcT2gQnrX:{svgContentId:11372197180}},baseVariant,gestureVariant)}),isDisplayed91()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-yyfncu\",\"data-framer-name\":\"Blog\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"LAxXP2t_J\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 15 C 19 17.209 17.209 19 15 19 L 5 19 C 2.791 19 1 17.209 1 15 Z M 5 9.75 C 5 10.164 5.336 10.5 5.75 10.5 L 14.25 10.5 C 14.664 10.5 15 10.164 15 9.75 C 15 9.336 14.664 9 14.25 9 L 5.75 9 C 5.336 9 5 9.336 5 9.75 Z M 5 12.75 C 5 13.164 5.336 13.5 5.75 13.5 L 10.25 13.5 C 10.664 13.5 11 13.164 11 12.75 C 11 12.336 10.664 12 10.25 12 L 5.75 12 C 5.336 12 5 12.336 5 12.75 Z M 5 6.75 C 5 7.164 5.336 7.5 5.75 7.5 L 14.25 7.5 C 14.664 7.5 15 7.164 15 6.75 C 15 6.336 14.664 6 14.25 6 L 5.75 6 C 5.336 6 5 6.336 5 6.75 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12309131734,withExternalLayout:true,...addPropertyOverrides({QvYFxTFvE:{svgContentId:10618435e3}},baseVariant,gestureVariant)}),isDisplayed92()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wpomdd\",\"data-framer-name\":\"Documentation\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WCCX3zV58\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 19 15 C 19 17.209 17.209 19 15 19 L 6 19 C 5.448 19 5 18.552 5 18 L 5 2 C 5 1.448 5.448 1 6 1 L 15 1 C 17.209 1 19 2.791 19 5 Z M 8 9.75 C 8 10.164 8.336 10.5 8.75 10.5 L 15.75 10.5 C 16.164 10.5 16.5 10.164 16.5 9.75 C 16.5 9.336 16.164 9 15.75 9 L 8.75 9 C 8.336 9 8 9.336 8 9.75 Z M 8 12.75 C 8 13.164 8.336 13.5 8.75 13.5 L 15.75 13.5 C 16.164 13.5 16.5 13.164 16.5 12.75 C 16.5 12.336 16.164 12 15.75 12 L 8.75 12 C 8.336 12 8 12.336 8 12.75 Z M 8 6.75 C 8 7.164 8.336 7.5 8.75 7.5 L 15.75 7.5 C 16.164 7.5 16.5 7.164 16.5 6.75 C 16.5 6.336 16.164 6 15.75 6 L 8.75 6 C 8.336 6 8 6.336 8 6.75 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 1 4.896 C 1 3.427 1.83 2.085 3.143 1.429 L 3.143 1.429 C 3.537 1.232 4 1.518 4 1.958 L 4 18.042 C 4 18.482 3.537 18.768 3.143 18.571 L 3.143 18.571 C 1.83 17.915 1 16.573 1 15.104 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:9957470295,withExternalLayout:true,...addPropertyOverrides({GZMynfeOS:{svgContentId:11797912957}},baseVariant,gestureVariant)}),isDisplayed93()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1nid9yl\",\"data-framer-name\":\"Check-Circle\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kD1Hlw937\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 1 C 14.971 1 19 5.029 19 10 C 19 14.971 14.971 19 10 19 C 5.029 19 1 14.971 1 10 C 1 5.029 5.029 1 10 1 Z M 4.707 9.793 C 4.317 10.183 4.317 10.817 4.707 11.207 L 8.146 14.646 C 8.342 14.842 8.658 14.842 8.854 14.646 L 15.293 8.207 C 15.683 7.817 15.683 7.183 15.293 6.793 L 15.207 6.707 C 14.817 6.317 14.183 6.317 13.793 6.707 L 8.5 12 L 6.207 9.707 C 5.817 9.317 5.183 9.317 4.793 9.707 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:11226894322,withExternalLayout:true,...addPropertyOverrides({EEAAgCb16:{svgContentId:10217830269}},baseVariant,gestureVariant)}),isDisplayed94()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1i1g7kh\",\"data-framer-name\":\"Heart\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"obxLyi8aY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 3 8 L 17 8 L 17 15 C 17 17.209 15.209 19 13 19 L 7 19 C 4.791 19 3 17.209 3 15 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 9 2 C 9 1.448 9.448 1 10 1 L 10 1 C 10.552 1 11 1.448 11 2 L 11 5 C 11 5.552 10.552 6 10 6 L 10 6 C 9.448 6 9 5.552 9 5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 1 8 C 1 7.448 1.448 7 2 7 L 18 7 C 18.552 7 19 7.448 19 8 L 19 8 C 19 8.552 18.552 9 18 9 L 2 9 C 1.448 9 1 8.552 1 8 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 6 2 C 6 1.448 6.448 1 7 1 L 7 1 C 7.552 1 8 1.448 8 2 L 8 5 C 8 5.552 7.552 6 7 6 L 7 6 C 6.448 6 6 5.552 6 5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 12 2 C 12 1.448 12.448 1 13 1 L 13 1 C 13.552 1 14 1.448 14 2 L 14 5 C 14 5.552 13.552 6 13 6 L 13 6 C 12.448 6 12 5.552 12 5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path></svg>',svgContentId:9615435669,withExternalLayout:true,...addPropertyOverrides({PV9vwfzMd:{svgContentId:8866064951}},baseVariant,gestureVariant)}),isDisplayed95()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ti174e\",\"data-framer-name\":\"Grid\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"k7KE3eEPS\",opacity:1,radius:0,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 1 5 C 1 2.791 2.791 1 5 1 L 8.5 1 C 9.052 1 9.5 1.448 9.5 2 L 9.5 8.5 C 9.5 9.052 9.052 9.5 8.5 9.5 L 2 9.5 C 1.448 9.5 1 9.052 1 8.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 10.5 2 C 10.5 1.448 10.948 1 11.5 1 L 15 1 C 17.209 1 19 2.791 19 5 L 19 8.5 C 19 9.052 18.552 9.5 18 9.5 L 11.5 9.5 C 10.948 9.5 10.5 9.052 10.5 8.5 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 1 11.5 C 1 10.948 1.448 10.5 2 10.5 L 8.5 10.5 C 9.052 10.5 9.5 10.948 9.5 11.5 L 9.5 18 C 9.5 18.552 9.052 19 8.5 19 L 5 19 C 2.791 19 1 17.209 1 15 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" opacity=\"0.5\"></path><path d=\"M 10.5 11.5 C 10.5 10.948 10.948 10.5 11.5 10.5 L 18 10.5 C 18.552 10.5 19 10.948 19 11.5 L 19 15 C 19 17.209 17.209 19 15 19 L 11.5 19 C 10.948 19 10.5 18.552 10.5 18 Z\" fill=\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:9115335624,withExternalLayout:true,...addPropertyOverrides({Nief0xoBf:{svgContentId:11319559772}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ba6zB.framer-hiry14, .framer-ba6zB .framer-hiry14 { display: block; }\",\".framer-ba6zB.framer-r3f6kp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-ba6zB .framer-cml3ht, .framer-ba6zB .framer-eo34ii, .framer-ba6zB .framer-6my09, .framer-ba6zB .framer-1itrruf, .framer-ba6zB .framer-jzxmhs, .framer-ba6zB .framer-pvmrjx, .framer-ba6zB .framer-coep7m, .framer-ba6zB .framer-jnqqh5, .framer-ba6zB .framer-z1lypt, .framer-ba6zB .framer-cbohxb, .framer-ba6zB .framer-1ur6pev, .framer-ba6zB .framer-bzxdl1, .framer-ba6zB .framer-1tatdel, .framer-ba6zB .framer-1fmvkgt, .framer-ba6zB .framer-1b7icg6, .framer-ba6zB .framer-1k9a8bj, .framer-ba6zB .framer-1tbc7iy, .framer-ba6zB .framer-6deklq, .framer-ba6zB .framer-1dgbyef, .framer-ba6zB .framer-ftfahz, .framer-ba6zB .framer-bapkh5, .framer-ba6zB .framer-5itjnb, .framer-ba6zB .framer-1m3yy02, .framer-ba6zB .framer-p1f4v8, .framer-ba6zB .framer-1xgj21z, .framer-ba6zB .framer-1se9f5b, .framer-ba6zB .framer-1ly1cih, .framer-ba6zB .framer-1iovsv0, .framer-ba6zB .framer-194ritd, .framer-ba6zB .framer-e5po90, .framer-ba6zB .framer-8nml70, .framer-ba6zB .framer-1txx6wn, .framer-ba6zB .framer-bj4fy5, .framer-ba6zB .framer-nt53r0, .framer-ba6zB .framer-smx9pa, .framer-ba6zB .framer-3grlfn, .framer-ba6zB .framer-15px7r, .framer-ba6zB .framer-gwqqw7, .framer-ba6zB .framer-hifp0c, .framer-ba6zB .framer-1rcii5r, .framer-ba6zB .framer-1vc5rjk, .framer-ba6zB .framer-1kxc0jl, .framer-ba6zB .framer-4s752i, .framer-ba6zB .framer-139rw7s, .framer-ba6zB .framer-yg583h, .framer-ba6zB .framer-9cn48b, .framer-ba6zB .framer-1oc1qgw, .framer-ba6zB .framer-y5e006, .framer-ba6zB .framer-1x34170, .framer-ba6zB .framer-188rh66, .framer-ba6zB .framer-fhe6fv, .framer-ba6zB .framer-1pdczjh, .framer-ba6zB .framer-aby8m1, .framer-ba6zB .framer-1pv8pi7, .framer-ba6zB .framer-1vbw28w, .framer-ba6zB .framer-1kmlr2o, .framer-ba6zB .framer-vu9g5, .framer-ba6zB .framer-knjycb, .framer-ba6zB .framer-pwyvmn, .framer-ba6zB .framer-1okx8k, .framer-ba6zB .framer-10cy4e9, .framer-ba6zB .framer-1h3rzsf, .framer-ba6zB .framer-1ghk9pt, .framer-ba6zB .framer-z0lzbl, .framer-ba6zB .framer-1614uxo, .framer-ba6zB .framer-gsglu2, .framer-ba6zB .framer-1ar3g0f, .framer-ba6zB .framer-1pq44xv, .framer-ba6zB .framer-c13deo, .framer-ba6zB .framer-12r6mu8, .framer-ba6zB .framer-1oju7rq, .framer-ba6zB .framer-13eq2p, .framer-ba6zB .framer-u8vkso, .framer-ba6zB .framer-rnc1p, .framer-ba6zB .framer-1b14rj3, .framer-ba6zB .framer-1vg858, .framer-ba6zB .framer-bykstx, .framer-ba6zB .framer-1vzsh12, .framer-ba6zB .framer-1gm0g3s, .framer-ba6zB .framer-1k385kl, .framer-ba6zB .framer-jzfcy1, .framer-ba6zB .framer-1o1gozh, .framer-ba6zB .framer-sbfa9c, .framer-ba6zB .framer-8xhpor, .framer-ba6zB .framer-go8k8n, .framer-ba6zB .framer-9uvj7a, .framer-ba6zB .framer-ogxc6k, .framer-ba6zB .framer-1tlvlz5, .framer-ba6zB .framer-1bbutx9, .framer-ba6zB .framer-jeiy5b, .framer-ba6zB .framer-yyfncu, .framer-ba6zB .framer-1wpomdd, .framer-ba6zB .framer-1nid9yl, .framer-ba6zB .framer-1i1g7kh, .framer-ba6zB .framer-ti174e { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-ba6zB .framer-1n05gb8 { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ba6zB.framer-r3f6kp { gap: 0px; } .framer-ba6zB.framer-r3f6kp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ba6zB.framer-r3f6kp > :first-child { margin-left: 0px; } .framer-ba6zB.framer-r3f6kp > :last-child { margin-right: 0px; } }\",\".framer-ba6zB.framer-v-13oohj3.framer-r3f6kp, .framer-ba6zB.framer-v-uu2ddc.framer-r3f6kp, .framer-ba6zB.framer-v-1owuuve.framer-r3f6kp, .framer-ba6zB.framer-v-xirc33.framer-r3f6kp, .framer-ba6zB.framer-v-1flncr.framer-r3f6kp, .framer-ba6zB.framer-v-1d4uuay.framer-r3f6kp, .framer-ba6zB.framer-v-6pfp0i.framer-r3f6kp, .framer-ba6zB.framer-v-q8l7gg.framer-r3f6kp, .framer-ba6zB.framer-v-tavbfz.framer-r3f6kp, .framer-ba6zB.framer-v-db7fu5.framer-r3f6kp, .framer-ba6zB.framer-v-vw0z4n.framer-r3f6kp, .framer-ba6zB.framer-v-16843y9.framer-r3f6kp, .framer-ba6zB.framer-v-rymksh.framer-r3f6kp, .framer-ba6zB.framer-v-802tq.framer-r3f6kp, .framer-ba6zB.framer-v-lp9kpb.framer-r3f6kp, .framer-ba6zB.framer-v-1sdhgvx.framer-r3f6kp, .framer-ba6zB.framer-v-1yi0pfx.framer-r3f6kp, .framer-ba6zB.framer-v-1vtzjr2.framer-r3f6kp, .framer-ba6zB.framer-v-1fy2zdb.framer-r3f6kp, .framer-ba6zB.framer-v-bdv9wz.framer-r3f6kp, .framer-ba6zB.framer-v-ysobx1.framer-r3f6kp, .framer-ba6zB.framer-v-1ds8ne1.framer-r3f6kp, .framer-ba6zB.framer-v-hv0s38.framer-r3f6kp, .framer-ba6zB.framer-v-tcpjer.framer-r3f6kp, .framer-ba6zB.framer-v-825m7e.framer-r3f6kp, .framer-ba6zB.framer-v-1gm8x8s.framer-r3f6kp, .framer-ba6zB.framer-v-13vr973.framer-r3f6kp, .framer-ba6zB.framer-v-kzs2uj.framer-r3f6kp, .framer-ba6zB.framer-v-1srbkms.framer-r3f6kp, .framer-ba6zB.framer-v-1h0shdg.framer-r3f6kp, .framer-ba6zB.framer-v-19bd39e.framer-r3f6kp, .framer-ba6zB.framer-v-v2ki8p.framer-r3f6kp, .framer-ba6zB.framer-v-1la5v2m.framer-r3f6kp, .framer-ba6zB.framer-v-u46vi0.framer-r3f6kp, .framer-ba6zB.framer-v-1vcq9dk.framer-r3f6kp, .framer-ba6zB.framer-v-ooe9d.framer-r3f6kp, .framer-ba6zB.framer-v-1s2okmv.framer-r3f6kp, .framer-ba6zB.framer-v-14r1v90.framer-r3f6kp, .framer-ba6zB.framer-v-14vx7es.framer-r3f6kp, .framer-ba6zB.framer-v-jhhibu.framer-r3f6kp, .framer-ba6zB.framer-v-ruqfta.framer-r3f6kp, .framer-ba6zB.framer-v-kzvnus.framer-r3f6kp, .framer-ba6zB.framer-v-1vz2y3z.framer-r3f6kp, .framer-ba6zB.framer-v-vkgygo.framer-r3f6kp, .framer-ba6zB.framer-v-zmu1pu.framer-r3f6kp, .framer-ba6zB.framer-v-rxmkh0.framer-r3f6kp, .framer-ba6zB.framer-v-1rrpnv.framer-r3f6kp, .framer-ba6zB.framer-v-1ifo5le.framer-r3f6kp, .framer-ba6zB.framer-v-asp0dt.framer-r3f6kp, .framer-ba6zB.framer-v-k9av4m.framer-r3f6kp, .framer-ba6zB.framer-v-1s64nwm.framer-r3f6kp, .framer-ba6zB.framer-v-dixno8.framer-r3f6kp, .framer-ba6zB.framer-v-1bgtfzl.framer-r3f6kp, .framer-ba6zB.framer-v-1qfjaoo.framer-r3f6kp, .framer-ba6zB.framer-v-takarx.framer-r3f6kp, .framer-ba6zB.framer-v-1e6x816.framer-r3f6kp, .framer-ba6zB.framer-v-1tufoeo.framer-r3f6kp, .framer-ba6zB.framer-v-1h4y8l4.framer-r3f6kp, .framer-ba6zB.framer-v-16216im.framer-r3f6kp, .framer-ba6zB.framer-v-luzbm2.framer-r3f6kp, .framer-ba6zB.framer-v-1ku73i0.framer-r3f6kp, .framer-ba6zB.framer-v-mzo9v4.framer-r3f6kp, .framer-ba6zB.framer-v-tksnmr.framer-r3f6kp, .framer-ba6zB.framer-v-zwokhg.framer-r3f6kp, .framer-ba6zB.framer-v-1yt1wg7.framer-r3f6kp, .framer-ba6zB.framer-v-1qqije.framer-r3f6kp, .framer-ba6zB.framer-v-7dse9m.framer-r3f6kp, .framer-ba6zB.framer-v-olezjf.framer-r3f6kp, .framer-ba6zB.framer-v-1ylyk63.framer-r3f6kp, .framer-ba6zB.framer-v-s5yfiq.framer-r3f6kp, .framer-ba6zB.framer-v-151z9ix.framer-r3f6kp, .framer-ba6zB.framer-v-rd69qm.framer-r3f6kp, .framer-ba6zB.framer-v-oy72d3.framer-r3f6kp, .framer-ba6zB.framer-v-1q1awl0.framer-r3f6kp, .framer-ba6zB.framer-v-1pszpsw.framer-r3f6kp, .framer-ba6zB.framer-v-1q3q32k.framer-r3f6kp, .framer-ba6zB.framer-v-163tytm.framer-r3f6kp, .framer-ba6zB.framer-v-1ib79w5.framer-r3f6kp, .framer-ba6zB.framer-v-jclbnr.framer-r3f6kp, .framer-ba6zB.framer-v-19u1576.framer-r3f6kp, .framer-ba6zB.framer-v-14402vz.framer-r3f6kp, .framer-ba6zB.framer-v-syg6ey.framer-r3f6kp, .framer-ba6zB.framer-v-v27wqi.framer-r3f6kp, .framer-ba6zB.framer-v-1ugug4a.framer-r3f6kp, .framer-ba6zB.framer-v-1vdk3hu.framer-r3f6kp, .framer-ba6zB.framer-v-1pgr006.framer-r3f6kp, .framer-ba6zB.framer-v-wj7ncj.framer-r3f6kp, .framer-ba6zB.framer-v-1l14wh2.framer-r3f6kp, .framer-ba6zB.framer-v-i0eu5d.framer-r3f6kp, .framer-ba6zB.framer-v-c2ec1c.framer-r3f6kp, .framer-ba6zB.framer-v-q5a32l.framer-r3f6kp, .framer-ba6zB.framer-v-1v456le.framer-r3f6kp, .framer-ba6zB.framer-v-3got4b.framer-r3f6kp, .framer-ba6zB.framer-v-17fngzm.framer-r3f6kp, .framer-ba6zB.framer-v-8wqowr.framer-r3f6kp { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); }\",\".framer-ba6zB.framer-v-tavbfz .framer-1ar3g0f { order: 76; }\",\".framer-ba6zB.framer-v-db7fu5 .framer-1pv8pi7 { order: 58; }\",\".framer-ba6zB.framer-v-hv0s38 .framer-1tbc7iy { order: 16; }\",\".framer-ba6zB.framer-v-1vcq9dk .framer-1ur6pev { order: 10; }\",\".framer-ba6zB.framer-v-1rrpnv .framer-go8k8n { order: 95; }\",\".framer-ba6zB.framer-v-1ifo5le .framer-cbohxb { order: 9; }\",\".framer-ba6zB.framer-v-asp0dt .framer-15px7r { order: 37; }\",\".framer-ba6zB.framer-v-k9av4m .framer-1dgbyef { order: 18; }\",\".framer-ba6zB.framer-v-dixno8 .framer-rnc1p { order: 83; }\",\".framer-ba6zB.framer-v-1bgtfzl .framer-3grlfn { order: 36; }\",\".framer-ba6zB.framer-v-luzbm2 .framer-sbfa9c { order: 93; }\",\".framer-ba6zB.framer-v-1qqije .framer-y5e006 { order: 49; }\",\".framer-ba6zB.framer-v-olezjf .framer-1oc1qgw { order: 47; }\",\".framer-ba6zB.framer-v-1ylyk63 .framer-yg583h { order: 45; }\",\".framer-ba6zB.framer-v-rd69qm .framer-1tlvlz5 { order: 77; }\",\".framer-ba6zB.framer-v-oy72d3 .framer-9cn48b { order: 46; }\",\".framer-ba6zB.framer-v-1pszpsw .framer-1614uxo { order: 74; }\",\".framer-ba6zB.framer-v-1q3q32k .framer-194ritd { order: 28; }\",\".framer-ba6zB.framer-v-163tytm .framer-188rh66 { order: 54; }\",\".framer-ba6zB.framer-v-1ib79w5 .framer-gsglu2 { order: 75; }\",\".framer-ba6zB.framer-v-jclbnr .framer-1txx6wn { order: 31; }\",\".framer-ba6zB.framer-v-wj7ncj .framer-1kxc0jl { order: 42; }\",\".framer-ba6zB.framer-v-17fngzm .framer-z1lypt { order: 8; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zjfl3maTH\":{\"layout\":[\"fixed\",\"fixed\"]},\"B6pYPERW9\":{\"layout\":[\"fixed\",\"fixed\"]},\"cgxlR_4Pa\":{\"layout\":[\"fixed\",\"fixed\"]},\"PHpCM9rOQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"jRrGhekVD\":{\"layout\":[\"fixed\",\"fixed\"]},\"bNpyN7PcI\":{\"layout\":[\"fixed\",\"fixed\"]},\"QvYFxTFvE\":{\"layout\":[\"fixed\",\"fixed\"]},\"zSsT4aC0n\":{\"layout\":[\"fixed\",\"fixed\"]},\"l8z62CFOK\":{\"layout\":[\"fixed\",\"fixed\"]},\"P3p864Nsn\":{\"layout\":[\"fixed\",\"fixed\"]},\"vRQ9AdIpL\":{\"layout\":[\"fixed\",\"fixed\"]},\"h0bavwGVC\":{\"layout\":[\"fixed\",\"fixed\"]},\"aLKFCPrss\":{\"layout\":[\"fixed\",\"fixed\"]},\"EEAAgCb16\":{\"layout\":[\"fixed\",\"fixed\"]},\"rUER_xz47\":{\"layout\":[\"fixed\",\"fixed\"]},\"G9pxk1bNp\":{\"layout\":[\"fixed\",\"fixed\"]},\"Crg6_WX8e\":{\"layout\":[\"fixed\",\"fixed\"]},\"u8pZILI7S\":{\"layout\":[\"fixed\",\"fixed\"]},\"psaQhTldj\":{\"layout\":[\"fixed\",\"fixed\"]},\"GSmbdIubp\":{\"layout\":[\"fixed\",\"fixed\"]},\"qbjnMt9kG\":{\"layout\":[\"fixed\",\"fixed\"]},\"OnTMBtNnK\":{\"layout\":[\"fixed\",\"fixed\"]},\"G5c9Oo_QI\":{\"layout\":[\"fixed\",\"fixed\"]},\"T1puran2N\":{\"layout\":[\"fixed\",\"fixed\"]},\"tZDAkKQOh\":{\"layout\":[\"fixed\",\"fixed\"]},\"BVcaMt_aS\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ln1mQdwVw\":{\"layout\":[\"fixed\",\"fixed\"]},\"TWz_LfJvG\":{\"layout\":[\"fixed\",\"fixed\"]},\"fIMEbZj8z\":{\"layout\":[\"fixed\",\"fixed\"]},\"uwQrdjc7h\":{\"layout\":[\"fixed\",\"fixed\"]},\"GZMynfeOS\":{\"layout\":[\"fixed\",\"fixed\"]},\"cIJWSoIQq\":{\"layout\":[\"fixed\",\"fixed\"]},\"XxwMTRDjI\":{\"layout\":[\"fixed\",\"fixed\"]},\"my1wtgiq7\":{\"layout\":[\"fixed\",\"fixed\"]},\"vPqSQKGTl\":{\"layout\":[\"fixed\",\"fixed\"]},\"VgO0hMrd8\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZoX56Wt7N\":{\"layout\":[\"fixed\",\"fixed\"]},\"Unz0c_9VW\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kdn_SvnSR\":{\"layout\":[\"fixed\",\"fixed\"]},\"onBg5kups\":{\"layout\":[\"fixed\",\"fixed\"]},\"gI6olJ08G\":{\"layout\":[\"fixed\",\"fixed\"]},\"VtYRH9DLw\":{\"layout\":[\"fixed\",\"fixed\"]},\"PAblfJdhN\":{\"layout\":[\"fixed\",\"fixed\"]},\"k1u3Glhjw\":{\"layout\":[\"fixed\",\"fixed\"]},\"PV9vwfzMd\":{\"layout\":[\"fixed\",\"fixed\"]},\"pgKT3yzGn\":{\"layout\":[\"fixed\",\"fixed\"]},\"m194vtiWK\":{\"layout\":[\"fixed\",\"fixed\"]},\"TT_ErE05K\":{\"layout\":[\"fixed\",\"fixed\"]},\"T5lzGDJ95\":{\"layout\":[\"fixed\",\"fixed\"]},\"QIVfBpPpZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Nief0xoBf\":{\"layout\":[\"fixed\",\"fixed\"]},\"MLx_W_KRq\":{\"layout\":[\"fixed\",\"fixed\"]},\"V_2fYLMX6\":{\"layout\":[\"fixed\",\"fixed\"]},\"CGqBHLDBG\":{\"layout\":[\"fixed\",\"fixed\"]},\"AtBlpxZnV\":{\"layout\":[\"fixed\",\"fixed\"]},\"GLLnmRBFc\":{\"layout\":[\"fixed\",\"fixed\"]},\"BbHpaxe6o\":{\"layout\":[\"fixed\",\"fixed\"]},\"GY_2Msvug\":{\"layout\":[\"fixed\",\"fixed\"]},\"EKn0cZhpu\":{\"layout\":[\"fixed\",\"fixed\"]},\"eEx7q16iu\":{\"layout\":[\"fixed\",\"fixed\"]},\"VcT2gQnrX\":{\"layout\":[\"fixed\",\"fixed\"]},\"rVrMJV0HU\":{\"layout\":[\"fixed\",\"fixed\"]},\"EfcZ_7CQK\":{\"layout\":[\"fixed\",\"fixed\"]},\"p0UY4vwDA\":{\"layout\":[\"fixed\",\"fixed\"]},\"wIdbSUpFQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"xMv7rxeKA\":{\"layout\":[\"fixed\",\"fixed\"]},\"eQlXgJJnQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"NHm0gAPm9\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gd9CuLo5r\":{\"layout\":[\"fixed\",\"fixed\"]},\"ERmZ5nff6\":{\"layout\":[\"fixed\",\"fixed\"]},\"WfiSA9lbB\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ym4fQWwNY\":{\"layout\":[\"fixed\",\"fixed\"]},\"jdfLTSv01\":{\"layout\":[\"fixed\",\"fixed\"]},\"zLpkUDfvQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"yIiQYfVJT\":{\"layout\":[\"fixed\",\"fixed\"]},\"EdviwP850\":{\"layout\":[\"fixed\",\"fixed\"]},\"jDuov_YmZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"mZyE2ZBJf\":{\"layout\":[\"fixed\",\"fixed\"]},\"bWytkwhIa\":{\"layout\":[\"fixed\",\"fixed\"]},\"yMotyGuEo\":{\"layout\":[\"fixed\",\"fixed\"]},\"IB59ypYp3\":{\"layout\":[\"fixed\",\"fixed\"]},\"hzh4Mrku3\":{\"layout\":[\"fixed\",\"fixed\"]},\"MBzvDRufH\":{\"layout\":[\"fixed\",\"fixed\"]},\"m28dWRBPu\":{\"layout\":[\"fixed\",\"fixed\"]},\"bJIc_EIjA\":{\"layout\":[\"fixed\",\"fixed\"]},\"v7_4PFCYP\":{\"layout\":[\"fixed\",\"fixed\"]},\"x33RA_91r\":{\"layout\":[\"fixed\",\"fixed\"]},\"qhCVxCrmF\":{\"layout\":[\"fixed\",\"fixed\"]},\"uCf5B6jcO\":{\"layout\":[\"fixed\",\"fixed\"]},\"HAsXIv_Ok\":{\"layout\":[\"fixed\",\"fixed\"]},\"hhNWJGbaE\":{\"layout\":[\"fixed\",\"fixed\"]},\"bp2nWqVX_\":{\"layout\":[\"fixed\",\"fixed\"]},\"pXj12B0Q8\":{\"layout\":[\"fixed\",\"fixed\"]},\"QStNugP7e\":{\"layout\":[\"fixed\",\"fixed\"]},\"WLMT4UJky\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerwl2ru_XZf=withCSS(Component,css,\"framer-ba6zB\");export default Framerwl2ru_XZf;Framerwl2ru_XZf.displayName=\"Framer Icon Kit\";Framerwl2ru_XZf.defaultProps={height:20,width:20};addPropertyControls(Framerwl2ru_XZf,{variant:{options:[\"v3kPVpEXa\",\"zjfl3maTH\",\"B6pYPERW9\",\"cgxlR_4Pa\",\"PHpCM9rOQ\",\"jRrGhekVD\",\"bNpyN7PcI\",\"QvYFxTFvE\",\"zSsT4aC0n\",\"l8z62CFOK\",\"P3p864Nsn\",\"vRQ9AdIpL\",\"h0bavwGVC\",\"aLKFCPrss\",\"EEAAgCb16\",\"rUER_xz47\",\"G9pxk1bNp\",\"Crg6_WX8e\",\"u8pZILI7S\",\"psaQhTldj\",\"GSmbdIubp\",\"qbjnMt9kG\",\"OnTMBtNnK\",\"G5c9Oo_QI\",\"T1puran2N\",\"tZDAkKQOh\",\"BVcaMt_aS\",\"Ln1mQdwVw\",\"TWz_LfJvG\",\"fIMEbZj8z\",\"uwQrdjc7h\",\"GZMynfeOS\",\"cIJWSoIQq\",\"XxwMTRDjI\",\"my1wtgiq7\",\"vPqSQKGTl\",\"VgO0hMrd8\",\"ZoX56Wt7N\",\"Unz0c_9VW\",\"Kdn_SvnSR\",\"onBg5kups\",\"gI6olJ08G\",\"VtYRH9DLw\",\"PAblfJdhN\",\"k1u3Glhjw\",\"PV9vwfzMd\",\"pgKT3yzGn\",\"m194vtiWK\",\"TT_ErE05K\",\"T5lzGDJ95\",\"QIVfBpPpZ\",\"Nief0xoBf\",\"MLx_W_KRq\",\"V_2fYLMX6\",\"CGqBHLDBG\",\"AtBlpxZnV\",\"GLLnmRBFc\",\"BbHpaxe6o\",\"GY_2Msvug\",\"EKn0cZhpu\",\"eEx7q16iu\",\"VcT2gQnrX\",\"rVrMJV0HU\",\"EfcZ_7CQK\",\"p0UY4vwDA\",\"wIdbSUpFQ\",\"xMv7rxeKA\",\"eQlXgJJnQ\",\"NHm0gAPm9\",\"Gd9CuLo5r\",\"ERmZ5nff6\",\"WfiSA9lbB\",\"Ym4fQWwNY\",\"jdfLTSv01\",\"zLpkUDfvQ\",\"yIiQYfVJT\",\"EdviwP850\",\"jDuov_YmZ\",\"mZyE2ZBJf\",\"bWytkwhIa\",\"yMotyGuEo\",\"IB59ypYp3\",\"hzh4Mrku3\",\"MBzvDRufH\",\"m28dWRBPu\",\"bJIc_EIjA\",\"v7_4PFCYP\",\"x33RA_91r\",\"qhCVxCrmF\",\"uCf5B6jcO\",\"HAsXIv_Ok\",\"hhNWJGbaE\",\"bp2nWqVX_\",\"pXj12B0Q8\",\"QStNugP7e\",\"WLMT4UJky\"],optionTitles:[\"Framer\",\"AI\",\"App\",\"Arrow Right\",\"Arrow Left\",\"Arrow Down\",\"Arrow Up\",\"Blog\",\"Briefcase\",\"Calendar\",\"Camera\",\"Chart\",\"Chat\",\"Check\",\"Check Circle\",\"Chevron Right\",\"Chevron Left\",\"Chevron Down\",\"Chevron Up\",\"Clock\",\"Cloud\",\"CMS\",\"Construction\",\"Contact Card\",\"Copy\",\"Credit Card\",\"Cube\",\"Cursor\",\"Developer\",\"Diamond\",\"Display\",\"Documentation\",\"Dollar\",\"Dot\",\"Drop\",\"Heart\",\"Education\",\"Emergency\",\"Headphones\",\"Error\",\"Evelope\",\"Experts\",\"Eye\",\"Forms\",\"Figma\",\"Food\",\"Film\",\"Gallery\",\"Gear\",\"Gift\",\"Globe\",\"Grid\",\"Help\",\"Home\",\"Info\",\"Keyhole\",\"Knife + Fork\",\"Layout\",\"Lock\",\"Magic\",\"Marketplace\",\"Megaphone\",\"Navigation\",\"News\",\"Notification\",\"Pages\",\"Paragraph\",\"Partners\",\"Pause\",\"Pause Circle\",\"Phone\",\"Pin\",\"Play\",\"Play Circle\",\"Plugins\",\"Plus\",\"Plus Box\",\"Podcast\",\"Publish\",\"Refresh\",\"Remix\",\"Rocket\",\"Ruler + Pencil\",\"Scroll\",\"Search\",\"Shield\",\"Shopping Cart\",\"Sidebar\",\"Star\",\"Stars\",\"Tablet\",\"Target\",\"Team\",\"User\",\"Zap\",\"Music\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerwl2ru_XZf,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerwl2ru_XZf\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"20\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zjfl3maTH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B6pYPERW9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cgxlR_4Pa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PHpCM9rOQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jRrGhekVD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bNpyN7PcI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QvYFxTFvE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zSsT4aC0n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l8z62CFOK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P3p864Nsn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vRQ9AdIpL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h0bavwGVC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"aLKFCPrss\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EEAAgCb16\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rUER_xz47\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G9pxk1bNp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Crg6_WX8e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u8pZILI7S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"psaQhTldj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GSmbdIubp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qbjnMt9kG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OnTMBtNnK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G5c9Oo_QI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T1puran2N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tZDAkKQOh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BVcaMt_aS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ln1mQdwVw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TWz_LfJvG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fIMEbZj8z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uwQrdjc7h\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GZMynfeOS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cIJWSoIQq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XxwMTRDjI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"my1wtgiq7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vPqSQKGTl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VgO0hMrd8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZoX56Wt7N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Unz0c_9VW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kdn_SvnSR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"onBg5kups\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gI6olJ08G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VtYRH9DLw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PAblfJdhN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"k1u3Glhjw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PV9vwfzMd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pgKT3yzGn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m194vtiWK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TT_ErE05K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T5lzGDJ95\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QIVfBpPpZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Nief0xoBf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MLx_W_KRq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"V_2fYLMX6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CGqBHLDBG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AtBlpxZnV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GLLnmRBFc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BbHpaxe6o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GY_2Msvug\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EKn0cZhpu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eEx7q16iu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VcT2gQnrX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rVrMJV0HU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EfcZ_7CQK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"p0UY4vwDA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wIdbSUpFQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xMv7rxeKA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eQlXgJJnQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NHm0gAPm9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gd9CuLo5r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ERmZ5nff6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WfiSA9lbB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ym4fQWwNY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jdfLTSv01\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zLpkUDfvQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yIiQYfVJT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EdviwP850\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jDuov_YmZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mZyE2ZBJf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bWytkwhIa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yMotyGuEo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IB59ypYp3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hzh4Mrku3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MBzvDRufH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"m28dWRBPu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bJIc_EIjA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v7_4PFCYP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x33RA_91r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qhCVxCrmF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uCf5B6jcO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HAsXIv_Ok\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hhNWJGbaE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bp2nWqVX_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"pXj12B0Q8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QStNugP7e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WLMT4UJky\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wl2ru_XZf.map", "// Generated by Framer (7b7a54b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FramerIconKit from\"https://framerusercontent.com/modules/6lLDEFK3zt7OfypY8v5O/9plr1MiN6cwlpM2YcV1g/wl2ru_XZf.js\";const FramerIconKitFonts=getFonts(FramerIconKit);const FramerIconKitControls=getPropertyControls(FramerIconKit);const enabledGestures={JmdekO_6H:{hover:true}};const cycleOrder=[\"JmdekO_6H\",\"rqunrf0dJ\"];const serializationHash=\"framer-g6ubF\";const variantClassNames={JmdekO_6H:\"framer-v-41m440\",rqunrf0dJ:\"framer-v-vrxloo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Arrow Down\":\"jRrGhekVD\",\"Arrow Left\":\"PHpCM9rOQ\",\"Arrow Right\":\"cgxlR_4Pa\",\"Arrow Up\":\"bNpyN7PcI\",\"Check Circle\":\"EEAAgCb16\",\"Chevron Down\":\"Crg6_WX8e\",\"Chevron Left\":\"G9pxk1bNp\",\"Chevron Right\":\"rUER_xz47\",\"Chevron Up\":\"u8pZILI7S\",\"Contact Card\":\"G5c9Oo_QI\",\"Credit Card\":\"tZDAkKQOh\",\"Knife + Fork\":\"GLLnmRBFc\",\"Pause Circle\":\"Gd9CuLo5r\",\"Play Circle\":\"jdfLTSv01\",\"Plus Box\":\"EdviwP850\",\"Ruler + Pencil\":\"hzh4Mrku3\",\"Shopping Cart\":\"v7_4PFCYP\",AI:\"zjfl3maTH\",App:\"B6pYPERW9\",Blog:\"QvYFxTFvE\",Briefcase:\"zSsT4aC0n\",Calendar:\"l8z62CFOK\",Camera:\"P3p864Nsn\",Chart:\"vRQ9AdIpL\",Chat:\"h0bavwGVC\",Check:\"aLKFCPrss\",Clock:\"psaQhTldj\",Cloud:\"GSmbdIubp\",CMS:\"qbjnMt9kG\",Construction:\"OnTMBtNnK\",Copy:\"T1puran2N\",Cube:\"BVcaMt_aS\",Cursor:\"Ln1mQdwVw\",Developer:\"TWz_LfJvG\",Diamond:\"fIMEbZj8z\",Display:\"uwQrdjc7h\",Documentation:\"GZMynfeOS\",Dollar:\"cIJWSoIQq\",Dot:\"XxwMTRDjI\",Drop:\"my1wtgiq7\",Education:\"VgO0hMrd8\",Emergency:\"ZoX56Wt7N\",Error:\"Kdn_SvnSR\",Evelope:\"onBg5kups\",Experts:\"gI6olJ08G\",Eye:\"VtYRH9DLw\",Figma:\"k1u3Glhjw\",Film:\"pgKT3yzGn\",Food:\"PV9vwfzMd\",Forms:\"PAblfJdhN\",Framer:\"v3kPVpEXa\",Gallery:\"m194vtiWK\",Gear:\"TT_ErE05K\",Gift:\"T5lzGDJ95\",Globe:\"QIVfBpPpZ\",Grid:\"Nief0xoBf\",Headphones:\"Unz0c_9VW\",Heart:\"vPqSQKGTl\",Help:\"MLx_W_KRq\",Home:\"V_2fYLMX6\",Info:\"CGqBHLDBG\",Keyhole:\"AtBlpxZnV\",Layout:\"BbHpaxe6o\",Lock:\"GY_2Msvug\",Magic:\"EKn0cZhpu\",Marketplace:\"eEx7q16iu\",Megaphone:\"VcT2gQnrX\",Music:\"WLMT4UJky\",Navigation:\"rVrMJV0HU\",News:\"EfcZ_7CQK\",Notification:\"p0UY4vwDA\",Pages:\"wIdbSUpFQ\",Paragraph:\"xMv7rxeKA\",Partners:\"eQlXgJJnQ\",Pause:\"NHm0gAPm9\",Phone:\"ERmZ5nff6\",Pin:\"WfiSA9lbB\",Play:\"Ym4fQWwNY\",Plugins:\"zLpkUDfvQ\",Plus:\"yIiQYfVJT\",Podcast:\"jDuov_YmZ\",Publish:\"mZyE2ZBJf\",Refresh:\"bWytkwhIa\",Remix:\"yMotyGuEo\",Rocket:\"IB59ypYp3\",Scroll:\"MBzvDRufH\",Search:\"m28dWRBPu\",Shield:\"bJIc_EIjA\",Sidebar:\"x33RA_91r\",Star:\"qhCVxCrmF\",Stars:\"uCf5B6jcO\",Tablet:\"HAsXIv_Ok\",Target:\"hhNWJGbaE\",Team:\"bp2nWqVX_\",User:\"pXj12B0Q8\",Zap:\"QStNugP7e\"};const humanReadableVariantMap={Large:\"JmdekO_6H\",Small:\"rqunrf0dJ\"};const getProps=({height,icon,id,link,newBadge,subtitle,title,width,...props})=>{var _ref,_humanReadableEnumMap_icon,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,duIKkuslC:(_ref=subtitle!==null&&subtitle!==void 0?subtitle:props.duIKkuslC)!==null&&_ref!==void 0?_ref:\"Subtitle\",MXeGwX6es:link!==null&&link!==void 0?link:props.MXeGwX6es,PAB9UTqd6:(_ref2=(_ref1=(_humanReadableEnumMap_icon=humanReadableEnumMap[icon])!==null&&_humanReadableEnumMap_icon!==void 0?_humanReadableEnumMap_icon:icon)!==null&&_ref1!==void 0?_ref1:props.PAB9UTqd6)!==null&&_ref2!==void 0?_ref2:\"v3kPVpEXa\",T2q12fWsB:newBadge!==null&&newBadge!==void 0?newBadge:props.T2q12fWsB,TWgR9IEL9:(_ref3=title!==null&&title!==void 0?title:props.TWgR9IEL9)!==null&&_ref3!==void 0?_ref3:\"Title\",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"JmdekO_6H\"};};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,PAB9UTqd6,TWgR9IEL9,duIKkuslC,MXeGwX6es,T2q12fWsB,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JmdekO_6H\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"rqunrf0dJ\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({rqunrf0dJ:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:MXeGwX6es,openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-41m440\",className,classNames)} framer-1lt2zmw`,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"JmdekO_6H\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({\"JmdekO_6H-hover\":{\"data-framer-name\":undefined},rqunrf0dJ:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uvuuca\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"JmdekO_6HqMgI_wHd5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.06)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.05)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,filter:\"none\",WebkitFilter:\"none\"},variants:{\"JmdekO_6H-hover\":{backgroundColor:\"rgb(0, 0, 0)\",filter:\"invert(1)\",WebkitFilter:\"invert(1)\"},rqunrf0dJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"20px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||60)-20-40)/2)+10,...addPropertyOverrides({rqunrf0dJ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||40)-20-20)/2)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w8mvhd-container\",layoutDependency:layoutDependency,layoutId:\"ZFBE_oBOl-container\",children:/*#__PURE__*/_jsx(FramerIconKit,{height:\"100%\",id:\"ZFBE_oBOl\",layoutId:\"ZFBE_oBOl\",style:{height:\"100%\",width:\"100%\"},variant:PAB9UTqd6,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g9wr7t\",\"data-framer-name\":\"Topbar Links Text Jorn\",layoutDependency:layoutDependency,layoutId:\"AAUfrQhSd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u4w77o\",layoutDependency:layoutDependency,layoutId:\"I9DGGWVoU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})}),className:\"framer-1d00x6m\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"HRua9UuAG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.8},text:TWgR9IEL9,variants:{rqunrf0dJ:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({rqunrf0dJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Title\"})}),fonts:[\"Inter-Medium\"]}},baseVariant,gestureVariant)}),T2q12fWsB&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7fffe9\",layoutDependency:layoutDependency,layoutId:\"nRARnt_3B\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e61tue\",layoutDependency:layoutDependency,layoutId:\"ffS5CXfLE\",style:{backgroundColor:\"var(--token-bd71055c-0a2c-4476-8cc9-4310acba652d, rgb(0, 153, 255))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 1px 4px 2px rgba(0, 153, 255, 0.2)\"}})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Subtitle\"})}),className:\"framer-1lqqexe\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bQV5kzjig\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.4},text:duIKkuslC,variants:{\"JmdekO_6H-hover\":{opacity:.8}},verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-g6ubF.framer-1lt2zmw, .framer-g6ubF .framer-1lt2zmw { display: block; }\",\".framer-g6ubF.framer-41m440 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px; position: relative; text-decoration: none; width: 200px; }\",\".framer-g6ubF .framer-uvuuca { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 40px; }\",\".framer-g6ubF .framer-w8mvhd-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-g6ubF .framer-g9wr7t { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-around; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-g6ubF .framer-u4w77o { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-g6ubF .framer-1d00x6m, .framer-g6ubF .framer-1lqqexe { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-g6ubF .framer-7fffe9 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 1px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-g6ubF .framer-1e61tue { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 5px); overflow: hidden; position: relative; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-g6ubF.framer-41m440, .framer-g6ubF .framer-uvuuca, .framer-g6ubF .framer-u4w77o, .framer-g6ubF .framer-7fffe9 { gap: 0px; } .framer-g6ubF.framer-41m440 > *, .framer-g6ubF .framer-7fffe9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-g6ubF.framer-41m440 > :first-child, .framer-g6ubF .framer-uvuuca > :first-child, .framer-g6ubF .framer-u4w77o > :first-child, .framer-g6ubF .framer-7fffe9 > :first-child { margin-left: 0px; } .framer-g6ubF.framer-41m440 > :last-child, .framer-g6ubF .framer-uvuuca > :last-child, .framer-g6ubF .framer-u4w77o > :last-child, .framer-g6ubF .framer-7fffe9 > :last-child { margin-right: 0px; } .framer-g6ubF .framer-uvuuca > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-g6ubF .framer-u4w77o > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-g6ubF.framer-v-vrxloo .framer-uvuuca { height: min-content; width: min-content; }\",'.framer-g6ubF[data-border=\"true\"]::after, .framer-g6ubF [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 60\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rqunrf0dJ\":{\"layout\":[\"fixed\",\"auto\"]},\"UX7HxnVE3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PAB9UTqd6\":\"icon\",\"TWgR9IEL9\":\"title\",\"duIKkuslC\":\"subtitle\",\"MXeGwX6es\":\"link\",\"T2q12fWsB\":\"newBadge\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIZmp66AdO=withCSS(Component,css,\"framer-g6ubF\");export default FramerIZmp66AdO;FramerIZmp66AdO.displayName=\"Nav/Topbar Popover Link\";FramerIZmp66AdO.defaultProps={height:60,width:200};addPropertyControls(FramerIZmp66AdO,{variant:{options:[\"JmdekO_6H\",\"rqunrf0dJ\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},PAB9UTqd6:(FramerIconKitControls===null||FramerIconKitControls===void 0?void 0:FramerIconKitControls[\"variant\"])&&{...FramerIconKitControls[\"variant\"],defaultValue:\"v3kPVpEXa\",description:undefined,hidden:undefined,title:\"Icon\"},TWgR9IEL9:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},duIKkuslC:{defaultValue:\"Subtitle\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},MXeGwX6es:{title:\"Link\",type:ControlType.Link},T2q12fWsB:{defaultValue:false,title:\"New Badge\",type:ControlType.Boolean}});addFonts(FramerIZmp66AdO,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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\"}]},...FramerIconKitFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIZmp66AdO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"60\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"PAB9UTqd6\\\":\\\"icon\\\",\\\"TWgR9IEL9\\\":\\\"title\\\",\\\"duIKkuslC\\\":\\\"subtitle\\\",\\\"MXeGwX6es\\\":\\\"link\\\",\\\"T2q12fWsB\\\":\\\"newBadge\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rqunrf0dJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UX7HxnVE3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (137d430)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NavTopbarPopoverLink from\"https://framerusercontent.com/modules/D6pxgJu6k4FbUUispaNR/hHpP4j97yUC99XUwj2TM/IZmp66AdO.js\";import{OpenType}from\"https://framerusercontent.com/modules/WsLN4XQfJdeqkYSXsIEd/EpJVgKedJ044ctwpEWsa/Navigation.js\";const RichTextOpenType=OpenType(RichText);const NavTopbarPopoverLinkFonts=getFonts(NavTopbarPopoverLink);const cycleOrder=[\"V3VVT3jLb\",\"ODRGrpWBB\"];const serializationHash=\"framer-UMyQI\";const variantClassNames={ODRGrpWBB:\"framer-v-119dp5q\",V3VVT3jLb:\"framer-v-1vjgjv8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Enterprise: Mobile\":\"ODRGrpWBB\",Enterprise:\"V3VVT3jLb\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"V3VVT3jLb\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V3VVT3jLb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ODRGrpWBB\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.ul,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vjgjv8\",className,classNames),\"data-framer-name\":\"Enterprise\",layoutDependency:layoutDependency,layoutId:\"V3VVT3jLb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ODRGrpWBB:{\"data-framer-name\":\"Enterprise: Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-1f7b118\",layoutDependency:layoutDependency,layoutId:\"rirosLBFY\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Overview\"})}),className:\"framer-47l2l7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fosELLqoA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-lyi0sp\",layoutDependency:layoutDependency,layoutId:\"aPu37KlaV\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Features\"})}),className:\"framer-1vj64od\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o73dFoXe3\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({ODRGrpWBB:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1f34xir-container\",layoutDependency:layoutDependency,layoutId:\"NknRY55Si-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Overview\",height:\"100%\",id:\"NknRY55Si\",layoutId:\"NknRY55Si\",MXeGwX6es:\"https://www.framer.com/enterprise/\",PAB9UTqd6:\"vRQ9AdIpL\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Enterprise\",variant:\"JmdekO_6H\",width:\"100%\",...addPropertyOverrides({ODRGrpWBB:{variant:\"rqunrf0dJ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({ODRGrpWBB:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-19vkbxd-container\",layoutDependency:layoutDependency,layoutId:\"bLJPG1Bhx-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Design together\",height:\"100%\",id:\"bLJPG1Bhx\",layoutId:\"bLJPG1Bhx\",MXeGwX6es:\"https://www.framer.com/enterprise/collaboration/\",PAB9UTqd6:\"Ln1mQdwVw\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Collaboration\",variant:\"JmdekO_6H\",width:\"100%\",...addPropertyOverrides({ODRGrpWBB:{variant:\"rqunrf0dJ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({ODRGrpWBB:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-8ujdzw-container\",layoutDependency:layoutDependency,layoutId:\"CmMcTP7y0-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Stories\",height:\"100%\",id:\"CmMcTP7y0\",layoutId:\"CmMcTP7y0\",MXeGwX6es:\"https://www.framer.com/enterprise/customers/\",PAB9UTqd6:\"vPqSQKGTl\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Customers\",variant:\"JmdekO_6H\",width:\"100%\",...addPropertyOverrides({ODRGrpWBB:{variant:\"rqunrf0dJ\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XIW5yytOY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({ODRGrpWBB:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+300}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1ecngck-container\",layoutDependency:layoutDependency,layoutId:\"Q4LLRICI3-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Blazing fast\",height:\"100%\",id:\"Q4LLRICI3\",layoutId:\"Q4LLRICI3\",MXeGwX6es:\"https://www.framer.com/enterprise/hosting/\",PAB9UTqd6:\"GSmbdIubp\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Hosting\",variant:\"JmdekO_6H\",width:\"100%\",...addPropertyOverrides({ODRGrpWBB:{MXeGwX6es:resolvedLinks[0],variant:\"rqunrf0dJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ADkTgqGww\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({ODRGrpWBB:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-h5jl3x-container\",layoutDependency:layoutDependency,layoutId:\"mVaPe0J7h-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Sites\",height:\"100%\",id:\"mVaPe0J7h\",layoutId:\"mVaPe0J7h\",MXeGwX6es:\"https://www.framer.com/enterprise/usecases/marketing-sites/\",PAB9UTqd6:\"EKn0cZhpu\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Marketing\",variant:\"JmdekO_6H\",width:\"100%\",...addPropertyOverrides({ODRGrpWBB:{MXeGwX6es:resolvedLinks1[0],variant:\"rqunrf0dJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 2, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({ODRGrpWBB:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 180px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-pwost-container\",layoutDependency:layoutDependency,layoutId:\"R3pNxDUiS-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Your site secured\",height:\"100%\",id:\"R3pNxDUiS\",layoutId:\"R3pNxDUiS\",MXeGwX6es:\"https://www.framer.com/enterprise/security/\",PAB9UTqd6:\"GY_2Msvug\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Security\",variant:\"JmdekO_6H\",width:\"100%\",...addPropertyOverrides({ODRGrpWBB:{variant:\"rqunrf0dJ\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UMyQI.framer-1jf409d, .framer-UMyQI .framer-1jf409d { display: block; }\",\".framer-UMyQI.framer-1vjgjv8 { display: grid; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(180px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-UMyQI .framer-1f7b118, .framer-UMyQI .framer-lyi0sp { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-UMyQI .framer-47l2l7, .framer-UMyQI .framer-1vj64od { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-UMyQI .framer-1f34xir-container, .framer-UMyQI .framer-19vkbxd-container, .framer-UMyQI .framer-8ujdzw-container, .framer-UMyQI .framer-1ecngck-container, .framer-UMyQI .framer-h5jl3x-container, .framer-UMyQI .framer-pwost-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UMyQI .framer-1f7b118, .framer-UMyQI .framer-lyi0sp { gap: 0px; } .framer-UMyQI .framer-1f7b118 > *, .framer-UMyQI .framer-lyi0sp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UMyQI .framer-1f7b118 > :first-child, .framer-UMyQI .framer-lyi0sp > :first-child { margin-left: 0px; } .framer-UMyQI .framer-1f7b118 > :last-child, .framer-UMyQI .framer-lyi0sp > :last-child { margin-right: 0px; } }\",\".framer-UMyQI.framer-v-119dp5q.framer-1vjgjv8 { grid-template-columns: repeat(1, minmax(180px, 1fr)); padding: 0px; }\",\".framer-UMyQI.framer-v-119dp5q .framer-1f34xir-container { order: 1; }\",\".framer-UMyQI.framer-v-119dp5q .framer-19vkbxd-container { order: 5; }\",\".framer-UMyQI.framer-v-119dp5q .framer-8ujdzw-container { order: 2; }\",\".framer-UMyQI.framer-v-119dp5q .framer-1ecngck-container { order: 7; }\",\".framer-UMyQI.framer-v-119dp5q .framer-h5jl3x-container { order: 3; }\",\".framer-UMyQI.framer-v-119dp5q .framer-pwost-container { order: 6; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 234\n * @framerIntrinsicWidth 380\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ODRGrpWBB\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerihrENU0nX=withCSS(Component,css,\"framer-UMyQI\");export default FramerihrENU0nX;FramerihrENU0nX.displayName=\"Nav/Topbar Popover Enterprise\";FramerihrENU0nX.defaultProps={height:234,width:380};addPropertyControls(FramerihrENU0nX,{variant:{options:[\"V3VVT3jLb\",\"ODRGrpWBB\"],optionTitles:[\"Enterprise\",\"Enterprise: Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerihrENU0nX,[{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\"}]},...NavTopbarPopoverLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerihrENU0nX\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"234\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"380\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ODRGrpWBB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ihrENU0nX.map", "// Generated by Framer (137d430)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NavTopbarPopoverLink from\"https://framerusercontent.com/modules/D6pxgJu6k4FbUUispaNR/hHpP4j97yUC99XUwj2TM/IZmp66AdO.js\";import{OpenType}from\"https://framerusercontent.com/modules/WsLN4XQfJdeqkYSXsIEd/EpJVgKedJ044ctwpEWsa/Navigation.js\";import NavTopbarPopoverLink1 from\"https://framerusercontent.com/modules/Lj5J69cE0M2CZJneMTJW/7IRnLrJZpxF8MvAdprAg/U_0Mb9OEL.js\";const RichTextOpenType=OpenType(RichText);const NavTopbarPopoverLinkFonts=getFonts(NavTopbarPopoverLink);const NavTopbarPopoverLink1Fonts=getFonts(NavTopbarPopoverLink1);const cycleOrder=[\"TtdESQzSG\",\"SurArqhwj\"];const serializationHash=\"framer-X7s0l\";const variantClassNames={SurArqhwj:\"framer-v-js863n\",TtdESQzSG:\"framer-v-ieu3o8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Resources: Small\":\"SurArqhwj\",Resources:\"TtdESQzSG\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"TtdESQzSG\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TtdESQzSG\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"SurArqhwj\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.ul,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ieu3o8\",className,classNames),\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"TtdESQzSG\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SurArqhwj:{\"data-framer-name\":\"Resources: Small\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-1ds1vml\",layoutDependency:layoutDependency,layoutId:\"HqzdBz3M2\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Get started\"})}),className:\"framer-4yl35b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vGKWsvIwS\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-190y357\",layoutDependency:layoutDependency,layoutId:\"FQhRjptl3\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Programs\"})}),className:\"framer-1loylyk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Re2mDFxqe\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.li,{className:\"framer-sd0sqi\",layoutDependency:layoutDependency,layoutId:\"KEUzhp4jE\",children:/*#__PURE__*/_jsx(RichTextOpenType,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Inspiration\"})}),className:\"framer-9mtwh2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"V9DrYuUzb\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({SurArqhwj:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+480}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1kr2z9p-container\",layoutDependency:layoutDependency,layoutId:\"Tz1FIWDF6-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Templates & Plugins\",height:\"100%\",id:\"Tz1FIWDF6\",layoutId:\"Tz1FIWDF6\",MXeGwX6es:\"https://www.framer.com/marketplace/\",PAB9UTqd6:\"eEx7q16iu\",style:{width:\"100%\"},T2q12fWsB:true,TWgR9IEL9:\"Marketplace\",variant:\"JmdekO_6H\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-10s6xpz-container\",layoutDependency:layoutDependency,layoutId:\"NMV6BtcDI-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Upcoming events\",height:\"100%\",id:\"NMV6BtcDI\",IqW2gILX9:\"j33SkQFD8\",layoutId:\"NMV6BtcDI\",MXeGwX6es:\"https://www.framer.com/meetups/\",style:{width:\"100%\"},TWgR9IEL9:\"Meetups\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({SurArqhwj:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+34,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-qrtah8-container\",layoutDependency:layoutDependency,layoutId:\"T4Pnb3Jan-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Changelog\",height:\"100%\",id:\"T4Pnb3Jan\",IqW2gILX9:\"LQSO1pIke\",layoutId:\"T4Pnb3Jan\",MXeGwX6es:\"https://www.framer.com/updates\",style:{width:\"100%\"},TWgR9IEL9:\"Updates\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({SurArqhwj:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-airzmn-container\",layoutDependency:layoutDependency,layoutId:\"wqj9UyEvs-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Watch lessons\",height:\"100%\",id:\"wqj9UyEvs\",IqW2gILX9:\"qy0QGHi7t\",layoutId:\"wqj9UyEvs\",MXeGwX6es:\"https://www.framer.com/academy/\",style:{width:\"100%\"},TWgR9IEL9:\"Academy\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({SurArqhwj:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-nzm5oi-container\",layoutDependency:layoutDependency,layoutId:\"KEOi9wTcw-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Affiliate program\",height:\"100%\",id:\"KEOi9wTcw\",IqW2gILX9:\"NPZUGGcbe\",layoutId:\"KEOi9wTcw\",MXeGwX6es:\"https://www.framer.com/partners/\",style:{width:\"100%\"},TWgR9IEL9:\"Partners\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({SurArqhwj:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+94,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+360}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-it95xe-container\",layoutDependency:layoutDependency,layoutId:\"ia4KojtLn-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Posts\",height:\"100%\",id:\"ia4KojtLn\",IqW2gILX9:\"vDwSIMuUF\",layoutId:\"ia4KojtLn\",MXeGwX6es:\"https://www.framer.com/blog/\",style:{width:\"100%\"},TWgR9IEL9:\"Blog\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({SurArqhwj:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px) / 3, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({SurArqhwj:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+420}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1rg0sf5-container\",layoutDependency:layoutDependency,layoutId:\"WKYfCRk4v-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Ecosystem\",height:\"100%\",id:\"WKYfCRk4v\",layoutId:\"WKYfCRk4v\",MXeGwX6es:\"https://www.framer.com/plugins/\",PAB9UTqd6:\"zLpkUDfvQ\",style:{width:\"100%\"},T2q12fWsB:false,TWgR9IEL9:\"Plugins\",variant:\"JmdekO_6H\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+300}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1ohpibx-container\",layoutDependency:layoutDependency,layoutId:\"OWo2hzSDu-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Jobs\",height:\"100%\",id:\"OWo2hzSDu\",IqW2gILX9:\"GTc_pVk16\",layoutId:\"OWo2hzSDu\",MXeGwX6es:\"https://www.framer.com/experts/\",style:{width:\"100%\"},TWgR9IEL9:\"Experts\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({SurArqhwj:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"220px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+154,...addPropertyOverrides({SurArqhwj:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1umkr3n-container\",layoutDependency:layoutDependency,layoutId:\"wLeBLtcfr-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink1,{duIKkuslC:\"Top sites\",height:\"100%\",id:\"wLeBLtcfr\",IqW2gILX9:\"t4aMBmifR\",layoutId:\"wLeBLtcfr\",MXeGwX6es:\"https://www.framer.com/gallery/\",style:{width:\"100%\"},TWgR9IEL9:\"Gallery\",variant:\"xdokodq8A\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X7s0l.framer-1bswp9m, .framer-X7s0l .framer-1bswp9m { display: block; }\",\".framer-X7s0l.framer-ieu3o8 { display: grid; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 10px; position: relative; width: 680px; }\",\".framer-X7s0l .framer-1ds1vml, .framer-X7s0l .framer-190y357, .framer-X7s0l .framer-sd0sqi { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-X7s0l .framer-4yl35b, .framer-X7s0l .framer-1loylyk, .framer-X7s0l .framer-9mtwh2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X7s0l .framer-1kr2z9p-container, .framer-X7s0l .framer-1rg0sf5-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-X7s0l .framer-10s6xpz-container, .framer-X7s0l .framer-qrtah8-container, .framer-X7s0l .framer-airzmn-container, .framer-X7s0l .framer-nzm5oi-container, .framer-X7s0l .framer-it95xe-container, .framer-X7s0l .framer-1ohpibx-container, .framer-X7s0l .framer-1umkr3n-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 220px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X7s0l .framer-1ds1vml, .framer-X7s0l .framer-190y357, .framer-X7s0l .framer-sd0sqi { gap: 0px; } .framer-X7s0l .framer-1ds1vml > *, .framer-X7s0l .framer-190y357 > *, .framer-X7s0l .framer-sd0sqi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-X7s0l .framer-1ds1vml > :first-child, .framer-X7s0l .framer-190y357 > :first-child, .framer-X7s0l .framer-sd0sqi > :first-child { margin-left: 0px; } .framer-X7s0l .framer-1ds1vml > :last-child, .framer-X7s0l .framer-190y357 > :last-child, .framer-X7s0l .framer-sd0sqi > :last-child { margin-right: 0px; } }\",\".framer-X7s0l.framer-v-js863n.framer-ieu3o8 { grid-template-columns: repeat(1, minmax(100px, 1fr)); padding: 0px; width: 300px; }\",\".framer-X7s0l.framer-v-js863n .framer-1kr2z9p-container { order: 11; }\",\".framer-X7s0l.framer-v-js863n .framer-10s6xpz-container { order: 4; }\",\".framer-X7s0l.framer-v-js863n .framer-qrtah8-container { order: 5; }\",\".framer-X7s0l.framer-v-js863n .framer-airzmn-container { order: 6; }\",\".framer-X7s0l.framer-v-js863n .framer-nzm5oi-container { order: 7; }\",\".framer-X7s0l.framer-v-js863n .framer-it95xe-container { order: 9; }\",\".framer-X7s0l.framer-v-js863n .framer-1rg0sf5-container { order: 10; }\",\".framer-X7s0l.framer-v-js863n .framer-1ohpibx-container { order: 8; }\",\".framer-X7s0l.framer-v-js863n .framer-1umkr3n-container { order: 3; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 234\n * @framerIntrinsicWidth 680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SurArqhwj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermeH94TGhu=withCSS(Component,css,\"framer-X7s0l\");export default FramermeH94TGhu;FramermeH94TGhu.displayName=\"Nav/Topbar Popover Resources\";FramermeH94TGhu.defaultProps={height:234,width:680};addPropertyControls(FramermeH94TGhu,{variant:{options:[\"TtdESQzSG\",\"SurArqhwj\"],optionTitles:[\"Resources\",\"Resources: Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramermeH94TGhu,[{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\"}]},...NavTopbarPopoverLinkFonts,...NavTopbarPopoverLink1Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermeH94TGhu\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SurArqhwj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"680\",\"framerIntrinsicHeight\":\"234\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./meH94TGhu.map", "// Generated by Framer (e6b1c23)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NavTopbarPopoverLink from\"https://framerusercontent.com/modules/Lj5J69cE0M2CZJneMTJW/7IRnLrJZpxF8MvAdprAg/U_0Mb9OEL.js\";const NavTopbarPopoverLinkFonts=getFonts(NavTopbarPopoverLink);const cycleOrder=[\"fN0OYZ1KQ\",\"qwcXlBAhS\"];const serializationHash=\"framer-SSUC2\";const variantClassNames={fN0OYZ1KQ:\"framer-v-fm53ma\",qwcXlBAhS:\"framer-v-1wtt7wc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0: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!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Support: Small\":\"qwcXlBAhS\",Support:\"fN0OYZ1KQ\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fN0OYZ1KQ\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fN0OYZ1KQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.ul,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-fm53ma\",className,classNames),\"data-framer-name\":\"Support\",layoutDependency:layoutDependency,layoutId:\"fN0OYZ1KQ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({qwcXlBAhS:{\"data-framer-name\":\"Support: Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+0,...addPropertyOverrides({qwcXlBAhS:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-146jgnp-container\",layoutDependency:layoutDependency,layoutId:\"KjtBciLWc-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Articles\",height:\"100%\",id:\"KjtBciLWc\",IqW2gILX9:\"byRJOmfwp\",layoutId:\"KjtBciLWc\",MXeGwX6es:\"https://www.framer.com/help/\",style:{width:\"100%\"},TWgR9IEL9:\"Help\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({qwcXlBAhS:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+60,...addPropertyOverrides({qwcXlBAhS:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 100px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-lu6mr8-container\",layoutDependency:layoutDependency,layoutId:\"xlOACGMHU-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Web builders\",height:\"100%\",id:\"xlOACGMHU\",IqW2gILX9:\"jGh1Kro_y\",layoutId:\"xlOACGMHU\",MXeGwX6es:\"https://www.framer.community/home\",style:{width:\"100%\"},TWgR9IEL9:\"Community\",variant:\"xdokodq8A\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"200px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+120,...addPropertyOverrides({qwcXlBAhS:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.li,{className:\"framer-1qj7uol-container\",layoutDependency:layoutDependency,layoutId:\"DsbCkYKwr-container\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Urgent issues\",height:\"100%\",id:\"DsbCkYKwr\",IqW2gILX9:\"uCaaQN08d\",layoutId:\"DsbCkYKwr\",MXeGwX6es:\"https://www.framer.com/emergency/\",style:{width:\"100%\"},TWgR9IEL9:\"Emergency\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({qwcXlBAhS:{variant:\"TRh3aydsx\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SSUC2.framer-wgzwdt, .framer-SSUC2 .framer-wgzwdt { display: block; }\",\".framer-SSUC2.framer-fm53ma { display: grid; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; list-style: none; margin: 0px; overflow: hidden; padding: 10px; position: relative; width: 200px; }\",\".framer-SSUC2 .framer-146jgnp-container, .framer-SSUC2 .framer-lu6mr8-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-SSUC2 .framer-1qj7uol-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 200px; }\",\".framer-SSUC2.framer-v-1wtt7wc.framer-fm53ma { padding: 0px; width: 300px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qwcXlBAhS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSfnTfP2yI=withCSS(Component,css,\"framer-SSUC2\");export default FramerSfnTfP2yI;FramerSfnTfP2yI.displayName=\"Nav/Topbar Popover Support\";FramerSfnTfP2yI.defaultProps={height:200,width:200};addPropertyControls(FramerSfnTfP2yI,{variant:{options:[\"fN0OYZ1KQ\",\"qwcXlBAhS\"],optionTitles:[\"Support\",\"Support: Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSfnTfP2yI,[{explicitInter:true,fonts:[]},...NavTopbarPopoverLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSfnTfP2yI\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qwcXlBAhS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SfnTfP2yI.map", "// Generated by Framer (19c8cf2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"SClLMq9T9\"];const serializationHash=\"framer-geGCv\";const variantClassNames={SClLMq9T9:\"framer-v-u8nlj6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SClLMq9T9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://www.framer.com/\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-u8nlj6\",className,classNames)} framer-1rcbp5u`,\"data-framer-name\":\"On\",layoutDependency:layoutDependency,layoutId:\"SClLMq9T9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-l53urz\",\"data-framer-name\":\"Logo\",description:\"An SVG icon of the Framer Logo.\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mejNB4iME\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 27\"><path d=\"M 17.6 0 C 17.821 0 18 0.179 18 0.4 L 18 8.6 C 18 8.821 17.821 9 17.6 9 L 9.166 9 C 9.06 9 8.958 8.958 8.883 8.883 L 0.512 0.512 C 0.323 0.323 0.457 0 0.724 0 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path><path d=\"M 0 9.5 C 0 9.224 0.224 9 0.5 9 L 8.793 9 C 8.926 9 9.053 9.053 9.146 9.146 L 17.488 17.488 C 17.677 17.677 17.543 18 17.276 18 L 9.3 18 C 9.134 18 9 18.134 9 18.3 L 9 26.276 C 9 26.543 8.677 26.677 8.488 26.488 L 0.293 18.293 C 0.105 18.105 0 17.851 0 17.586 Z\" fill=\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"></path></svg>',svgContentId:10087979562,title:\"Framer Logo\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dUIFdhbHNoZWltIEJvbGQ=\",\"--framer-font-family\":'\"GT Walsheim Bold\", \"GT Walsheim Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17)))\"},children:\"Framer\"})}),className:\"framer-1q9jxhm\",fonts:[\"CUSTOM;GT Walsheim Bold\"],layoutDependency:layoutDependency,layoutId:\"DuxhKvnul\",style:{\"--extracted-r6o4lv\":\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-geGCv.framer-1rcbp5u, .framer-geGCv .framer-1rcbp5u { display: block; }\",\".framer-geGCv.framer-u8nlj6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 30px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-geGCv .framer-l53urz { flex: none; height: 27px; position: relative; width: 18px; }\",\".framer-geGCv .framer-1q9jxhm { -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-geGCv.framer-u8nlj6 { gap: 0px; } .framer-geGCv.framer-u8nlj6 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-geGCv.framer-u8nlj6 > :first-child { margin-left: 0px; } .framer-geGCv.framer-u8nlj6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 92.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWp2oDoQEC=withCSS(Component,css,\"framer-geGCv\");export default FramerWp2oDoQEC;FramerWp2oDoQEC.displayName=\"Nav/Topbar Framer Logo\";FramerWp2oDoQEC.defaultProps={height:30,width:92.5};addFonts(FramerWp2oDoQEC,[{explicitInter:true,fonts:[{family:\"GT Walsheim Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/9yxOMHiOq1YW9lyV4OoKqGTdPeY.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWp2oDoQEC\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"30\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"92.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Wp2oDoQEC.map", "// Generated by Framer (60ae661)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{OpenType,withCloseBrandMenuOnHover}from\"https://framerusercontent.com/modules/WsLN4XQfJdeqkYSXsIEd/EpJVgKedJ044ctwpEWsa/Navigation.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jG5xni6qOXqkyVnUMgwo/sWRLpHINpmrVG5sgi8Q6/FYtNM2koB.js\";import NavTopbarPopoverFeatures from\"https://framerusercontent.com/modules/6X7fzdNbzTSrjw01amvZ/fWtx3oI0Xbh0fm51264W/Ch2T0RIxN.js\";import NavTopbarPopoverEnterprise from\"https://framerusercontent.com/modules/oaZOjd2IqyrqtINbqXIT/CLzKHTCznnp60HfrIilA/ihrENU0nX.js\";import NavTopbarPopoverResources from\"https://framerusercontent.com/modules/LWaKFY4zANHTA9ycgJ4Z/fq0RmCb124MCrTQ1AYcg/meH94TGhu.js\";import LoginFetch from\"https://framerusercontent.com/modules/dwqv2GLJdauNC3gbLntc/i83dDSdoZ7L3FwKyEHAe/MGCpm4sSk.js\";import NavTopbarLink from\"https://framerusercontent.com/modules/MZ8t6ICqsQlOKLbsUgiM/62rC2ks8ziR0ykqAKh6c/NXVyvwhYo.js\";import NavTopbarPopoverSupport from\"https://framerusercontent.com/modules/CQZuOfbLBapOsCULvjYT/C6x2n4jbRkwoJuvqykHN/SfnTfP2yI.js\";import MenuIconCopy from\"https://framerusercontent.com/modules/uFhHFPKo16PLrr9IXq2Q/Lu0ZIJuZqRgiaAMmU1oy/shDYZy8VP.js\";import NavTopbarPopoverLink from\"https://framerusercontent.com/modules/Lj5J69cE0M2CZJneMTJW/7IRnLrJZpxF8MvAdprAg/U_0Mb9OEL.js\";import NavTopbarFramerLogo from\"https://framerusercontent.com/modules/gs0QjaPW4uZM8FKo56f5/P7lLlBgOkYfPl3bzIHX7/Wp2oDoQEC.js\";const NavTopbarFramerLogoFonts=getFonts(NavTopbarFramerLogo);const LoginFetchFonts=getFonts(LoginFetch);const MenuIconCopyFonts=getFonts(MenuIconCopy);const NavTopbarLinkFonts=getFonts(NavTopbarLink);const NavTopbarPopoverFeaturesFonts=getFonts(NavTopbarPopoverFeatures);const MotionDivWithFX=withFX(motion.div);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const NavTopbarPopoverResourcesFonts=getFonts(NavTopbarPopoverResources);const NavTopbarPopoverSupportFonts=getFonts(NavTopbarPopoverSupport);const NavTopbarPopoverEnterpriseFonts=getFonts(NavTopbarPopoverEnterprise);const RichTextOpenType163eu6e=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"th76zO4Xu\",override:OpenType,scopeId:\"XsKn0WNdo\"});const RichTextOpenType1m3fmyd=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"EvqaCYqOG\",override:OpenType,scopeId:\"XsKn0WNdo\"});const NavTopbarPopoverLinkFonts=getFonts(NavTopbarPopoverLink);const MotionDivWithCloseBrandMenuOnHover11nztc9=withCodeBoundaryForOverrides(motion.div,{nodeId:\"RqQ7Z8jlD\",override:withCloseBrandMenuOnHover,scopeId:\"XsKn0WNdo\"});const cycleOrder=[\"a6VTeTET9\",\"h_mjAD5XA\",\"R0VTOecmT\",\"jCSThHE5b\",\"lsiXoOb5z\",\"o_Efus7OW\",\"rZ4w0Tr5M\",\"EBap25fXL\",\"yAxlMMt1H\"];const serializationHash=\"framer-2K3q6\";const variantClassNames={a6VTeTET9:\"framer-v-aq4p11\",EBap25fXL:\"framer-v-19wy9eb\",h_mjAD5XA:\"framer-v-u3l253\",jCSThHE5b:\"framer-v-exgul5\",lsiXoOb5z:\"framer-v-kbq5h6\",o_Efus7OW:\"framer-v-mpv6qp\",R0VTOecmT:\"framer-v-zy0kws\",rZ4w0Tr5M:\"framer-v-10kb0cp\",yAxlMMt1H:\"framer-v-1bg224c\"};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 transition2={duration:0,type:\"tween\"};const transition3={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition4={damping:60,delay:.05,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:3};const transition5={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition6={damping:60,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:60,delay:.25,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition8={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:60,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"Desktop Nav Transparent\":\"rZ4w0Tr5M\",\"Desktop Nav\":\"a6VTeTET9\",\"Mobile Nav Transparent\":\"EBap25fXL\",\"Mobile Nav: Features\":\"jCSThHE5b\",\"Mobile Nav: Open\":\"R0VTOecmT\",\"Mobile Nav: Resources\":\"lsiXoOb5z\",\"Mobile Nav: Support\":\"o_Efus7OW\",\"Mobile Nav\":\"h_mjAD5XA\",\"Product Nav\":\"yAxlMMt1H\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"a6VTeTET9\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a6VTeTET9\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XKaY3MrGucbwpg0=activeVariantCallback(async(...args)=>{setVariant(\"R0VTOecmT\");});const XKaY3MrGu1l14t0c=activeVariantCallback(async(...args)=>{setVariant(\"h_mjAD5XA\");});const YBuDg1PEatxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const l48sOQa2H8btn58=activeVariantCallback(async(...args)=>{setVariant(\"jCSThHE5b\");});const l48sOQa2Hcbwpg0=activeVariantCallback(async(...args)=>{setVariant(\"R0VTOecmT\");});const l48sOQa2Htxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const l48sOQa2Hx8rwhd=activeVariantCallback(async(...args)=>{setVariant(\"lsiXoOb5z\");});const l48sOQa2H1segq0=activeVariantCallback(async(...args)=>{setVariant(\"o_Efus7OW\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"h_mjAD5XA\",\"R0VTOecmT\",\"jCSThHE5b\",\"lsiXoOb5z\",\"o_Efus7OW\",\"EBap25fXL\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"h_mjAD5XA\",\"EBap25fXL\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"yAxlMMt1H\")return false;return true;};const ref2=React.useRef(null);const isDisplayed3=()=>{if([\"R0VTOecmT\",\"jCSThHE5b\",\"lsiXoOb5z\",\"o_Efus7OW\"].includes(baseVariant))return false;return true;};const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const isDisplayed4=()=>{if(baseVariant===\"jCSThHE5b\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"lsiXoOb5z\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"o_Efus7OW\")return true;return false;};const ref8=React.useRef(null);const ref9=React.useRef(null);const isDisplayed7=()=>{if(baseVariant===\"yAxlMMt1H\")return true;return false;};const ref10=React.useRef(null);const ref11=React.useRef(null);const router=useRouter();const isDisplayed8=()=>{if([\"R0VTOecmT\",\"jCSThHE5b\",\"lsiXoOb5z\",\"o_Efus7OW\"].includes(baseVariant))return true;return false;};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,...addPropertyOverrides({EBap25fXL:{value:transition2},jCSThHE5b:{value:transition3},lsiXoOb5z:{value:transition3},o_Efus7OW:{value:transition3},R0VTOecmT:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-aq4p11\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop Nav\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"a6VTeTET9\",ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2ae241bf-4c1e-4ca6-86f0-ac005c1b7600, rgb(40, 40, 40))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(20px)\",backgroundColor:\"var(--token-2299ca32-7827-4be8-96a8-d65c8f35c20f, rgba(255, 255, 255, 0.9))\",boxShadow:\"none\",WebkitBackdropFilter:\"blur(20px)\",...style},variants:{EBap25fXL:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\",WebkitBackdropFilter:\"blur(0px)\"},jCSThHE5b:{backgroundColor:\"rgba(0, 0, 0, 0)\"},R0VTOecmT:{backgroundColor:\"rgba(0, 0, 0, 0)\"},rZ4w0Tr5M:{backdropFilter:\"blur(0px)\",backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"0px 25px 50px 0px rgba(0, 0, 0, 0), 0px 5px 25px 0px rgba(0, 0, 0, 0)\",WebkitBackdropFilter:\"blur(0px)\"},yAxlMMt1H:{boxShadow:\"none\"}},...addPropertyOverrides({EBap25fXL:{\"data-framer-name\":\"Mobile Nav Transparent\"},h_mjAD5XA:{\"data-framer-name\":\"Mobile Nav\"},jCSThHE5b:{\"data-framer-name\":\"Mobile Nav: Features\"},lsiXoOb5z:{\"data-framer-name\":\"Mobile Nav: Resources\"},o_Efus7OW:{\"data-framer-name\":\"Mobile Nav: Support\"},R0VTOecmT:{\"data-framer-name\":\"Mobile Nav: Open\"},rZ4w0Tr5M:{\"data-framer-name\":\"Desktop Nav Transparent\"},yAxlMMt1H:{\"data-framer-name\":\"Product Nav\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-5yhmtg\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"Dbnl0QTWN\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{EBap25fXL:{backgroundColor:\"rgba(0, 0, 0, 0)\"},jCSThHE5b:{backgroundColor:\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\"},lsiXoOb5z:{backgroundColor:\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\"},o_Efus7OW:{backgroundColor:\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\"},R0VTOecmT:{backgroundColor:\"var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255))\"},rZ4w0Tr5M:{backgroundColor:\"rgba(0, 0, 0, 0)\"},yAxlMMt1H:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wyt6qt\",\"data-framer-name\":\"Logo + CTA\",layoutDependency:layoutDependency,layoutId:\"b7YYLEaRu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bvv26\",layoutDependency:layoutDependency,layoutId:\"CE2DZhxwa\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+0+0+0,...addPropertyOverrides({EBap25fXL:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-70)/2)+0+20+0},h_mjAD5XA:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-70)/2)+0+20+0},jCSThHE5b:{y:(componentViewport?.y||0)+0+0+0+20+0},lsiXoOb5z:{y:(componentViewport?.y||0)+0+0+0+20+0},o_Efus7OW:{y:(componentViewport?.y||0)+0+0+0+20+0},R0VTOecmT:{y:(componentViewport?.y||0)+0+0+0+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t5cbyp-container\",layoutDependency:layoutDependency,layoutId:\"YKRwaeHEz-container\",nodeId:\"YKRwaeHEz\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarFramerLogo,{height:\"100%\",id:\"YKRwaeHEz\",layoutId:\"YKRwaeHEz\",style:{height:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dUIFdhbHNoZWltIE1lZGl1bQ==\",\"--framer-font-family\":'\"GT Walsheim Medium\", \"GT Walsheim Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DtJVc4ZY5\"},nodeId:\"Zoq7aPD91\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1si2ozi\",\"data-styles-preset\":\"FYtNM2koB\",children:\"Developers\"})})})}),className:\"framer-xetnlb\",\"data-framer-name\":\"Academy\",fonts:[\"CUSTOM;GT Walsheim Medium\"],layoutDependency:layoutDependency,layoutId:\"Zoq7aPD91\",style:{\"--extracted-r6o4lv\":\"var(--token-26e3cb56-8447-4a64-9b7d-37f16a9909d4, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+0+0,...addPropertyOverrides({EBap25fXL:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-70)/2)+0+20},h_mjAD5XA:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-70)/2)+0+20},jCSThHE5b:{y:(componentViewport?.y||0)+0+0+0+20},lsiXoOb5z:{y:(componentViewport?.y||0)+0+0+0+20},o_Efus7OW:{y:(componentViewport?.y||0)+0+0+0+20},R0VTOecmT:{y:(componentViewport?.y||0)+0+0+0+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-105mkdm-container\",layoutDependency:layoutDependency,layoutId:\"JES262F7M-container\",nodeId:\"JES262F7M\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(LoginFetch,{height:\"100%\",id:\"JES262F7M\",layoutId:\"JES262F7M\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({EBap25fXL:{height:70,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-70)/2)+0+0},h_mjAD5XA:{height:70,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-70)/2)+0+0},jCSThHE5b:{height:70,y:(componentViewport?.y||0)+0+0+0+0},lsiXoOb5z:{height:70,y:(componentViewport?.y||0)+0+0+0+0},o_Efus7OW:{height:70,y:(componentViewport?.y||0)+0+0+0+0},R0VTOecmT:{height:70,y:(componentViewport?.y||0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gfg3v8-container\",\"data-framer-name\":\"Mobile Menu\",layoutDependency:layoutDependency,layoutId:\"t1Z46YBNW-container\",name:\"Mobile Menu\",nodeId:\"t1Z46YBNW\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(MenuIconCopy,{height:\"100%\",id:\"t1Z46YBNW\",layoutId:\"t1Z46YBNW\",name:\"Mobile Menu\",variant:\"NS8Ueqnlh\",width:\"100%\",...addPropertyOverrides({EBap25fXL:{XKaY3MrGu:XKaY3MrGucbwpg0},h_mjAD5XA:{XKaY3MrGu:XKaY3MrGucbwpg0},jCSThHE5b:{variant:\"PirLBzkSS\",XKaY3MrGu:XKaY3MrGu1l14t0c},lsiXoOb5z:{variant:\"PirLBzkSS\",XKaY3MrGu:XKaY3MrGu1l14t0c},o_Efus7OW:{variant:\"PirLBzkSS\",XKaY3MrGu:XKaY3MrGu1l14t0c},R0VTOecmT:{variant:\"PirLBzkSS\",XKaY3MrGu:XKaY3MrGu1l14t0c}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithCloseBrandMenuOnHover11nztc9,{className:\"framer-11nztc9\",\"data-framer-name\":\"Links\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"RqQ7Z8jlD\",transformTemplate:transformTemplate1,...addPropertyOverrides({jCSThHE5b:{transformTemplate:undefined},lsiXoOb5z:{transformTemplate:undefined},o_Efus7OW:{transformTemplate:undefined},R0VTOecmT:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[isDisplayed2()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed3(),children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0,...addPropertyOverrides({jCSThHE5b:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+0},lsiXoOb5z:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+0},o_Efus7OW:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+0},R0VTOecmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-ywaari-container\",\"data-framer-appear-id\":\"ywaari\",id:`${layoutId}-ywaari`,layoutDependency:layoutDependency,layoutId:\"PLpJcFVHG-container\",nodeId:\"PLpJcFVHG\",ref:ref2,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",...addPropertyOverrides({R0VTOecmT:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(NavTopbarLink,{cD0eXEdRx:\"Features\",height:\"100%\",id:\"PLpJcFVHG\",JkIYOQUJK:\"rgb(255, 255, 255)\",layoutId:\"PLpJcFVHG\",SrLlBqhZd:true,variant:overlay.visible?\"aIQFq8q7d\":\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",YBuDg1PEa:YBuDg1PEatxyyif({overlay}),...addPropertyOverrides({jCSThHE5b:{l48sOQa2H:l48sOQa2Hcbwpg0,style:{width:\"100%\"},variant:overlay.visible?\"dUIhfJEvo\":\"dUIhfJEvo\"},lsiXoOb5z:{l48sOQa2H:l48sOQa2H8btn58,style:{width:\"100%\"}},o_Efus7OW:{l48sOQa2H:l48sOQa2H8btn58,style:{width:\"100%\"}},R0VTOecmT:{l48sOQa2H:l48sOQa2H8btn58,style:{width:\"100%\"},variant:overlay.visible?\"iZS67nAbZ\":\"iZS67nAbZ\"}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-ywaari`,offsetX:32,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:10,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1ufppdi\",\"data-border\":true,exit:animation2,initial:animation4,layoutDependency:layoutDependency,layoutId:\"FgBv7WXgU\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-b88e9334-d4bb-4156-9cdd-ec15a1564318, rgba(254, 254, 254, 0.85))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 25px 50px 0px rgba(0,0,0,0.25), 0px 5px 25px 0px var(--token-5185bbe6-5d8c-4365-bd74-27b69a00966a, rgba(0, 0, 0, 0.05))\",WebkitBackdropFilter:\"blur(50px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"680px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m8vtt2-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HjgaMd6SZ-container\",nodeId:\"HjgaMd6SZ\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverFeatures,{height:\"100%\",id:\"HjgaMd6SZ\",layoutId:\"HjgaMd6SZ\",style:{width:\"100%\"},variant:\"fcEuBGCUL\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed3(),children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0,...addPropertyOverrides({jCSThHE5b:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+304},lsiXoOb5z:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+50},o_Efus7OW:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+50},R0VTOecmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+50}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-11z33fg-container\",\"data-framer-appear-id\":\"11z33fg\",id:`${layoutId}-11z33fg`,layoutDependency:layoutDependency,layoutId:\"x6hVF_vEP-container\",nodeId:\"x6hVF_vEP\",ref:ref4,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",...addPropertyOverrides({R0VTOecmT:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(NavTopbarLink,{cD0eXEdRx:\"Resources\",height:\"100%\",id:\"x6hVF_vEP\",JkIYOQUJK:\"rgb(255, 255, 255)\",l48sOQa2H:l48sOQa2Htxyyif({overlay:overlay1}),layoutId:\"x6hVF_vEP\",SrLlBqhZd:true,variant:overlay1.visible?\"aIQFq8q7d\":\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",YBuDg1PEa:YBuDg1PEatxyyif({overlay:overlay1}),...addPropertyOverrides({jCSThHE5b:{l48sOQa2H:l48sOQa2Hx8rwhd,style:{width:\"100%\"}},lsiXoOb5z:{l48sOQa2H:l48sOQa2Hcbwpg0,style:{width:\"100%\"},variant:overlay1.visible?\"aIQFq8q7d\":\"dUIhfJEvo\"},o_Efus7OW:{l48sOQa2H:l48sOQa2Hx8rwhd,style:{width:\"100%\"}},R0VTOecmT:{l48sOQa2H:l48sOQa2Hx8rwhd,style:{width:\"100%\"},variant:overlay1.visible?\"aIQFq8q7d\":\"iZS67nAbZ\"}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-11z33fg`,offsetX:32,offsetY:10,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:10,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-d6ed6s\",\"data-border\":true,exit:animation2,initial:animation4,layoutDependency:layoutDependency,layoutId:\"cpcjoP2jn\",ref:ref5,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-b88e9334-d4bb-4156-9cdd-ec15a1564318, rgba(254, 254, 254, 0.75))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 25px 50px 0px rgba(0,0,0,0.25), 0px 5px 25px 0px var(--token-5185bbe6-5d8c-4365-bd74-27b69a00966a, rgba(0, 0, 0, 0.05))\",WebkitBackdropFilter:\"blur(50px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"640px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-waluft-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"nnZTZoKhu-container\",nodeId:\"nnZTZoKhu\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverResources,{height:\"100%\",id:\"nnZTZoKhu\",layoutId:\"nnZTZoKhu\",style:{width:\"100%\"},variant:\"TtdESQzSG\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed3(),children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0,...addPropertyOverrides({jCSThHE5b:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+354},lsiXoOb5z:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+354},o_Efus7OW:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+100},R0VTOecmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-1mpqodw-container\",\"data-framer-appear-id\":\"1mpqodw\",id:`${layoutId}-1mpqodw`,layoutDependency:layoutDependency,layoutId:\"PYNa4CkPv-container\",nodeId:\"PYNa4CkPv\",ref:ref6,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",...addPropertyOverrides({R0VTOecmT:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(NavTopbarLink,{cD0eXEdRx:\"Support\",height:\"100%\",id:\"PYNa4CkPv\",JkIYOQUJK:\"rgb(255, 255, 255)\",l48sOQa2H:l48sOQa2Htxyyif({overlay:overlay2}),layoutId:\"PYNa4CkPv\",SrLlBqhZd:true,variant:overlay2.visible?\"aIQFq8q7d\":\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",YBuDg1PEa:YBuDg1PEatxyyif({overlay:overlay2}),...addPropertyOverrides({jCSThHE5b:{l48sOQa2H:l48sOQa2H1segq0,style:{width:\"100%\"}},lsiXoOb5z:{l48sOQa2H:l48sOQa2H1segq0,style:{width:\"100%\"}},o_Efus7OW:{l48sOQa2H:l48sOQa2Hcbwpg0,style:{width:\"100%\"},variant:overlay2.visible?\"aIQFq8q7d\":\"dUIhfJEvo\"},R0VTOecmT:{l48sOQa2H:l48sOQa2H1segq0,style:{width:\"100%\"},variant:overlay2.visible?\"aIQFq8q7d\":\"iZS67nAbZ\"}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1mpqodw`,offsetX:30,offsetY:10,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:10,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-12jnhfc\",\"data-border\":true,exit:animation2,initial:animation4,layoutDependency:layoutDependency,layoutId:\"Vzya2z9JC\",ref:ref7,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-b88e9334-d4bb-4156-9cdd-ec15a1564318, rgba(254, 254, 254, 0.75))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 25px 50px 0px rgba(0,0,0,0.25), 0px 5px 25px 0px var(--token-5185bbe6-5d8c-4365-bd74-27b69a00966a, rgba(0, 0, 0, 0.05))\",WebkitBackdropFilter:\"blur(50px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5ikrv7-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Q51gqYMDG-container\",nodeId:\"Q51gqYMDG\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverSupport,{height:\"100%\",id:\"Q51gqYMDG\",layoutId:\"Q51gqYMDG\",style:{width:\"100%\"},variant:\"fN0OYZ1KQ\",width:\"100%\"})})})})})})]})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({jCSThHE5b:{height:234,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+50}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-4tb2w1-container\",\"data-framer-appear-id\":\"4tb2w1\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"qFmKl1mhy-container\",nodeId:\"qFmKl1mhy\",optimized:true,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverFeatures,{height:\"100%\",id:\"qFmKl1mhy\",layoutId:\"qFmKl1mhy\",style:{width:\"100%\"},variant:\"Vrd1ptJ9D\",width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({lsiXoOb5z:{height:234,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-p8810d-container\",\"data-framer-appear-id\":\"p8810d\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"ChW0rYlpU-container\",nodeId:\"ChW0rYlpU\",optimized:true,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverResources,{height:\"100%\",id:\"ChW0rYlpU\",layoutId:\"ChW0rYlpU\",style:{width:\"100%\"},variant:\"SurArqhwj\",width:\"100%\"})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({o_Efus7OW:{height:200,width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+150}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,className:\"framer-5jfpb9-container\",\"data-framer-appear-id\":\"5jfpb9\",initial:animation7,layoutDependency:layoutDependency,layoutId:\"BP4bxb2Mt-container\",nodeId:\"BP4bxb2Mt\",optimized:true,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverSupport,{height:\"100%\",id:\"BP4bxb2Mt\",layoutId:\"BP4bxb2Mt\",style:{width:\"100%\"},variant:\"qwcXlBAhS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0,...addPropertyOverrides({jCSThHE5b:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+454},lsiXoOb5z:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+454},o_Efus7OW:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+420},R0VTOecmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-1hqmb6r-container\",\"data-framer-appear-id\":\"1hqmb6r\",id:`${layoutId}-1hqmb6r`,layoutDependency:layoutDependency,layoutId:\"fvzKaUD_L-container\",nodeId:\"fvzKaUD_L\",ref:ref8,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",...addPropertyOverrides({R0VTOecmT:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation8,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(NavTopbarLink,{cD0eXEdRx:\"Enterprise\",height:\"100%\",id:\"fvzKaUD_L\",JkIYOQUJK:\"rgb(255, 255, 255)\",layoutId:\"fvzKaUD_L\",SrLlBqhZd:true,variant:overlay3.visible?\"aIQFq8q7d\":\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",YBuDg1PEa:YBuDg1PEatxyyif({overlay:overlay3}),...addPropertyOverrides({jCSThHE5b:{style:{width:\"100%\"}},lsiXoOb5z:{style:{width:\"100%\"}},o_Efus7OW:{style:{width:\"100%\"}},R0VTOecmT:{style:{width:\"100%\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref8,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1hqmb6r`,offsetX:30,offsetY:10,onDismiss:overlay3.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-rtt4z6\",\"data-border\":true,exit:animation2,initial:animation4,layoutDependency:layoutDependency,layoutId:\"YGlBWHxcT\",ref:ref9,role:\"dialog\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(17, 17, 17, 0.75)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 25px 50px 0px rgba(0,0,0,0.25), 0px 5px 25px 0px rgba(0, 0, 0, 0.5)\",WebkitBackdropFilter:\"blur(10px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gykc01-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"QuoT_x9rT-container\",nodeId:\"QuoT_x9rT\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverEnterprise,{height:\"100%\",id:\"QuoT_x9rT\",layoutId:\"QuoT_x9rT\",variant:\"V3VVT3jLb\",width:\"100%\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0,...addPropertyOverrides({jCSThHE5b:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+504},lsiXoOb5z:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+504},o_Efus7OW:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+470},R0VTOecmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+250}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-11ubpaz-container\",\"data-framer-appear-id\":\"11ubpaz\",layoutDependency:layoutDependency,layoutId:\"CXtRJO4L_-container\",nodeId:\"CXtRJO4L_\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",...addPropertyOverrides({R0VTOecmT:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation6,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(NavTopbarLink,{baW0xIbMr:\"https://www.framer.com/pricing/\",cD0eXEdRx:\"Pricing\",height:\"100%\",id:\"CXtRJO4L_\",JkIYOQUJK:\"rgb(255, 255, 255)\",layoutId:\"CXtRJO4L_\",SrLlBqhZd:false,variant:\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",...addPropertyOverrides({jCSThHE5b:{style:{width:\"100%\"}},lsiXoOb5z:{style:{width:\"100%\"}},o_Efus7OW:{style:{width:\"100%\"}},R0VTOecmT:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0,...addPropertyOverrides({jCSThHE5b:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+404},lsiXoOb5z:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+404},o_Efus7OW:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+370},R0VTOecmT:{width:`calc(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1400px) - 40px)`,y:(componentViewport?.y||0)+0+0+70+20+150}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{className:\"framer-12b1aci-container\",\"data-framer-appear-id\":\"12b1aci\",\"data-framer-name\":\"Updates\",layoutDependency:layoutDependency,layoutId:\"RUkBv5OZH-container\",name:\"Updates\",nodeId:\"RUkBv5OZH\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",...addPropertyOverrides({R0VTOecmT:{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation9,initial:animation1,optimized:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(NavTopbarLink,{baW0xIbMr:\"https://www.framer.com/contact/\",cD0eXEdRx:\"Contact\",height:\"100%\",id:\"RUkBv5OZH\",JkIYOQUJK:\"rgb(255, 255, 255)\",layoutId:\"RUkBv5OZH\",name:\"Updates\",SrLlBqhZd:false,variant:\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",...addPropertyOverrides({jCSThHE5b:{style:{width:\"100%\"},variant:\"iZS67nAbZ\"},lsiXoOb5z:{style:{width:\"100%\"},variant:\"iZS67nAbZ\"},o_Efus7OW:{style:{width:\"100%\"},variant:\"iZS67nAbZ\"},R0VTOecmT:{style:{width:\"100%\"},variant:\"iZS67nAbZ\"}},baseVariant,gestureVariant)})})}),isDisplayed7()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({yAxlMMt1H:{height:30,y:(componentViewport?.y||0)+(0+((componentViewport?.height||70)-0-30)/2)+7105427357601002e-30+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1q5sanv-container\",id:`${layoutId}-1q5sanv`,layoutDependency:layoutDependency,layoutId:\"LHIwW4ycS-container\",nodeId:\"LHIwW4ycS\",ref:ref10,rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:[/*#__PURE__*/_jsx(NavTopbarLink,{cD0eXEdRx:\"Product\",height:\"100%\",id:\"LHIwW4ycS\",JkIYOQUJK:\"rgb(255, 255, 255)\",l48sOQa2H:l48sOQa2Htxyyif({overlay:overlay4}),layoutId:\"LHIwW4ycS\",SrLlBqhZd:true,variant:\"rancC9ZNu\",width:\"100%\",wQT8SYmSE:\"var(--token-6fff741a-90b6-438e-9423-1f7c07944681, rgb(17, 17, 17))\",YBuDg1PEa:YBuDg1PEatxyyif({overlay:overlay4})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref10,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1q5sanv`,offsetX:0,offsetY:10,onDismiss:overlay4.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({yAxlMMt1H:{offsetX:32,zIndex:10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-1c4flnj\",exit:animation10,initial:animation11,layoutDependency:layoutDependency,layoutId:\"PJIPPrxvu\",ref:ref11,role:\"dialog\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",WebkitBackdropFilter:\"none\"},variants:{yAxlMMt1H:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"rgba(17, 17, 17, 0.75)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"0px 25px 50px 0px rgba(0,0,0,0.25), 0px 5px 25px 0px rgba(0, 0, 0, 0.5)\",WebkitBackdropFilter:\"blur(50px)\"}},...addPropertyOverrides({yAxlMMt1H:{\"data-border\":true,exit:animation2,initial:animation4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.ul,{className:\"framer-awjg1p\",\"data-framer-name\":\"Product\",layoutDependency:layoutDependency,layoutId:\"JMQl7s0So\",children:[/*#__PURE__*/_jsx(motion.li,{className:\"framer-19qyv8z\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"c35ZDWuSH\",children:/*#__PURE__*/_jsx(RichTextOpenType163eu6e,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Features\"})}),className:\"framer-163eu6e\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"th76zO4Xu\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.li,{className:\"framer-1kjhama\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"zhbZdw32K\",children:/*#__PURE__*/_jsx(RichTextOpenType1m3fmyd,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Usecases\"})}),className:\"framer-1m3fmyd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EvqaCYqOG\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.4},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yAxlMMt1H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-open-type-features\":\"'cv11' on, 'cv06' on\",\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Use cases\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Wwerl7wpe\"},implicitPathVariables:undefined},{href:{webPageId:\"Wwerl7wpe\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"310px\",...addPropertyOverrides({yAxlMMt1H:{width:\"240px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{as:\"li\",className:\"framer-2q5m9o-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"uA8KJUAL2-container\",nodeId:\"uA8KJUAL2\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Breakpoints, effects, navigation\",height:\"100%\",id:\"uA8KJUAL2\",IqW2gILX9:\"yukmkUJm9\",layoutId:\"uA8KJUAL2\",MXeGwX6es:resolvedLinks[0],style:{width:\"100%\"},TWgR9IEL9:\"Design editor\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({yAxlMMt1H:{duIKkuslC:\"Full creative control\",MXeGwX6es:resolvedLinks[1],TWgR9IEL9:\"Design\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"b3DdMI2ZF\"},implicitPathVariables:undefined},{href:{webPageId:\"b3DdMI2ZF\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"310px\",...addPropertyOverrides({yAxlMMt1H:{width:\"240px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{as:\"li\",className:\"framer-1go3lko-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"xT_OxI2s1-container\",nodeId:\"xT_OxI2s1\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Launch sites fast\",height:\"100%\",id:\"xT_OxI2s1\",IqW2gILX9:\"yukmkUJm9\",layoutId:\"xT_OxI2s1\",MXeGwX6es:resolvedLinks1[0],style:{width:\"100%\"},TWgR9IEL9:\"Starter\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({yAxlMMt1H:{duIKkuslC:\"Showcase projects\",MXeGwX6es:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jYgHul2NA\"},implicitPathVariables:undefined},{href:{webPageId:\"jYgHul2NA\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"310px\",...addPropertyOverrides({yAxlMMt1H:{width:\"240px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{as:\"li\",className:\"framer-qqk5j-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GrAxeD7AG-container\",nodeId:\"GrAxeD7AG\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"CMS, forms, localize, plugins\",height:\"100%\",id:\"GrAxeD7AG\",IqW2gILX9:\"yukmkUJm9\",layoutId:\"GrAxeD7AG\",MXeGwX6es:resolvedLinks2[0],style:{width:\"100%\"},TWgR9IEL9:\"Web builder\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({yAxlMMt1H:{duIKkuslC:\"Build for growth\",MXeGwX6es:resolvedLinks2[1],TWgR9IEL9:\"Scale\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"jZsDpKpQD\"},implicitPathVariables:undefined},{href:{webPageId:\"jZsDpKpQD\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"310px\",...addPropertyOverrides({yAxlMMt1H:{width:\"240px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{as:\"li\",className:\"framer-uuaqao-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"jKwDn3tIl-container\",nodeId:\"jKwDn3tIl\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Scale marketing effectively\",height:\"100%\",id:\"jKwDn3tIl\",IqW2gILX9:\"yukmkUJm9\",layoutId:\"jKwDn3tIl\",MXeGwX6es:resolvedLinks3[0],style:{width:\"100%\"},TWgR9IEL9:\"Business\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({yAxlMMt1H:{duIKkuslC:\"Grow your brand\",MXeGwX6es:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"OFIh29Ky9\"},implicitPathVariables:undefined},{href:{webPageId:\"OFIh29Ky9\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"310px\",...addPropertyOverrides({yAxlMMt1H:{width:\"240px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{as:\"li\",className:\"framer-1dm4edl-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cbZSOio5g-container\",nodeId:\"cbZSOio5g\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Analytics, domain control, SEO\",height:\"100%\",id:\"cbZSOio5g\",IqW2gILX9:\"yukmkUJm9\",layoutId:\"cbZSOio5g\",MXeGwX6es:resolvedLinks4[0],style:{width:\"100%\"},TWgR9IEL9:\"Publish suite\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({yAxlMMt1H:{duIKkuslC:\"Go live with a click\",MXeGwX6es:resolvedLinks4[1],TWgR9IEL9:\"Publish\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rh7F3ZNjF\"},implicitPathVariables:undefined},{href:{webPageId:\"rh7F3ZNjF\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"310px\",...addPropertyOverrides({yAxlMMt1H:{width:\"240px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{as:\"li\",className:\"framer-sohaqg-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Su0I9HqCI-container\",nodeId:\"Su0I9HqCI\",rendersWithMotion:true,scopeId:\"XsKn0WNdo\",children:/*#__PURE__*/_jsx(NavTopbarPopoverLink,{duIKkuslC:\"Specialized solutions\",height:\"100%\",id:\"Su0I9HqCI\",IqW2gILX9:\"yukmkUJm9\",layoutId:\"Su0I9HqCI\",MXeGwX6es:resolvedLinks5[0],style:{width:\"100%\"},TWgR9IEL9:\"Enterprise\",variant:\"xdokodq8A\",width:\"100%\",...addPropertyOverrides({yAxlMMt1H:{duIKkuslC:\"Tailored for scale\",MXeGwX6es:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})]})})})})]})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qotrko\",\"data-framer-name\":\"BLOCK SCROLL DO NOT DELETE\",layoutDependency:layoutDependency,layoutId:\"QI0l1MfiL\"})]}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wxne3s\",\"data-framer-name\":\"Mobile Scroll Fade\",layoutDependency:layoutDependency,layoutId:\"G2WkobjQ4\",style:{background:\"linear-gradient(180deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%)\"},variants:{jCSThHE5b:{background:'linear-gradient(180deg, var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */ 0%, rgba(0, 0, 0, 0) 100%)'},lsiXoOb5z:{background:'linear-gradient(180deg, var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */ 0%, rgba(0, 0, 0, 0) 100%)'},o_Efus7OW:{background:'linear-gradient(180deg, var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */ 0%, rgba(0, 0, 0, 0) 100%)'},R0VTOecmT:{background:'linear-gradient(180deg, var(--token-f32baa44-90b8-42a5-8bca-ffba9d95b23a, rgb(255, 255, 255)) /* {\"name\":\"Backdrop\"} */ 0%, rgba(0, 0, 0, 0) 100%)'}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2K3q6.framer-5adugi, .framer-2K3q6 .framer-5adugi { display: block; }\",\".framer-2K3q6.framer-aq4p11 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-2K3q6 .framer-5yhmtg { 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: 1400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2K3q6 .framer-wyt6qt { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-2K3q6 .framer-5bvv26 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2K3q6 .framer-t5cbyp-container { flex: none; height: 30px; position: relative; width: auto; }\",\".framer-2K3q6 .framer-xetnlb { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2K3q6 .framer-105mkdm-container, .framer-2K3q6 .framer-p8810d-container, .framer-2K3q6 .framer-5jfpb9-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-2K3q6 .framer-1gfg3v8-container, .framer-2K3q6 .framer-ywaari-container, .framer-2K3q6 .framer-11z33fg-container, .framer-2K3q6 .framer-1mpqodw-container, .framer-2K3q6 .framer-1hqmb6r-container, .framer-2K3q6 .framer-1gykc01-container, .framer-2K3q6 .framer-11ubpaz-container, .framer-2K3q6 .framer-12b1aci-container, .framer-2K3q6 .framer-1q5sanv-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-2K3q6 .framer-11nztc9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; z-index: 1; }\",\".framer-2K3q6 .framer-1ufppdi, .framer-2K3q6 .framer-d6ed6s, .framer-2K3q6 .framer-12jnhfc, .framer-2K3q6 .framer-rtt4z6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2K3q6 .framer-m8vtt2-container { flex: none; height: auto; position: relative; width: 680px; }\",\".framer-2K3q6 .framer-waluft-container { flex: none; height: auto; position: relative; width: 640px; }\",\".framer-2K3q6 .framer-5ikrv7-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-2K3q6 .framer-4tb2w1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 10; }\",\".framer-2K3q6 .framer-1c4flnj { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2K3q6 .framer-awjg1p { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(100px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; left: 0px; list-style: none; margin: 0px; overflow: hidden; padding: 10px; position: absolute; top: 0px; width: 640px; z-index: 10; }\",\".framer-2K3q6 .framer-19qyv8z, .framer-2K3q6 .framer-1kjhama { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-2K3q6 .framer-163eu6e, .framer-2K3q6 .framer-1m3fmyd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2K3q6 .framer-2q5m9o-container, .framer-2K3q6 .framer-1go3lko-container, .framer-2K3q6 .framer-qqk5j-container, .framer-2K3q6 .framer-uuaqao-container, .framer-2K3q6 .framer-1dm4edl-container, .framer-2K3q6 .framer-sohaqg-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 1fr; }\",\".framer-2K3q6 .framer-qotrko { bottom: -1px; flex: none; height: 1px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; z-index: 1; }\",\".framer-2K3q6 .framer-wxne3s { flex: none; height: 27px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 70px; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2K3q6.framer-aq4p11, .framer-2K3q6 .framer-5bvv26, .framer-2K3q6 .framer-11nztc9, .framer-2K3q6 .framer-1ufppdi, .framer-2K3q6 .framer-d6ed6s, .framer-2K3q6 .framer-12jnhfc, .framer-2K3q6 .framer-rtt4z6, .framer-2K3q6 .framer-19qyv8z, .framer-2K3q6 .framer-1kjhama { gap: 0px; } .framer-2K3q6.framer-aq4p11 > *, .framer-2K3q6 .framer-19qyv8z > *, .framer-2K3q6 .framer-1kjhama > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2K3q6.framer-aq4p11 > :first-child, .framer-2K3q6 .framer-5bvv26 > :first-child, .framer-2K3q6 .framer-11nztc9 > :first-child, .framer-2K3q6 .framer-1ufppdi > :first-child, .framer-2K3q6 .framer-d6ed6s > :first-child, .framer-2K3q6 .framer-12jnhfc > :first-child, .framer-2K3q6 .framer-rtt4z6 > :first-child, .framer-2K3q6 .framer-19qyv8z > :first-child, .framer-2K3q6 .framer-1kjhama > :first-child { margin-left: 0px; } .framer-2K3q6.framer-aq4p11 > :last-child, .framer-2K3q6 .framer-5bvv26 > :last-child, .framer-2K3q6 .framer-11nztc9 > :last-child, .framer-2K3q6 .framer-1ufppdi > :last-child, .framer-2K3q6 .framer-d6ed6s > :last-child, .framer-2K3q6 .framer-12jnhfc > :last-child, .framer-2K3q6 .framer-rtt4z6 > :last-child, .framer-2K3q6 .framer-19qyv8z > :last-child, .framer-2K3q6 .framer-1kjhama > :last-child { margin-right: 0px; } .framer-2K3q6 .framer-5bvv26 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-2K3q6 .framer-11nztc9 > *, .framer-2K3q6 .framer-1ufppdi > *, .framer-2K3q6 .framer-d6ed6s > *, .framer-2K3q6 .framer-12jnhfc > *, .framer-2K3q6 .framer-rtt4z6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-2K3q6.framer-v-u3l253.framer-aq4p11, .framer-2K3q6.framer-v-19wy9eb.framer-aq4p11 { padding: 0px; width: 390px; }\",\".framer-2K3q6.framer-v-u3l253 .framer-wyt6qt, .framer-2K3q6.framer-v-19wy9eb .framer-wyt6qt { order: 0; padding: 0px 0px 0px 20px; }\",\".framer-2K3q6.framer-v-zy0kws.framer-aq4p11 { align-content: flex-start; align-items: flex-start; height: min-content; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-2K3q6.framer-v-zy0kws .framer-5yhmtg { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; overflow: hidden; }\",\".framer-2K3q6.framer-v-zy0kws .framer-wyt6qt { flex: none; order: 0; padding: 0px 0px 0px 20px; width: 100%; z-index: 1; }\",\".framer-2K3q6.framer-v-zy0kws .framer-11nztc9 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 20px; height: 1px; justify-content: flex-start; left: unset; order: 1; overflow: auto; overscroll-behavior: contain; padding: 20px 20px 0px 20px; position: relative; top: unset; width: 100%; z-index: 2; }\",\".framer-2K3q6.framer-v-zy0kws .framer-ywaari-container, .framer-2K3q6.framer-v-exgul5 .framer-ywaari-container, .framer-2K3q6.framer-v-kbq5h6 .framer-ywaari-container, .framer-2K3q6.framer-v-mpv6qp .framer-ywaari-container { order: 0; width: 100%; }\",\".framer-2K3q6.framer-v-zy0kws .framer-11z33fg-container, .framer-2K3q6.framer-v-kbq5h6 .framer-11z33fg-container, .framer-2K3q6.framer-v-mpv6qp .framer-11z33fg-container { order: 1; width: 100%; }\",\".framer-2K3q6.framer-v-zy0kws .framer-1mpqodw-container, .framer-2K3q6.framer-v-exgul5 .framer-11z33fg-container, .framer-2K3q6.framer-v-mpv6qp .framer-1mpqodw-container { order: 2; width: 100%; }\",\".framer-2K3q6.framer-v-zy0kws .framer-1hqmb6r-container, .framer-2K3q6.framer-v-exgul5 .framer-1hqmb6r-container, .framer-2K3q6.framer-v-kbq5h6 .framer-1hqmb6r-container, .framer-2K3q6.framer-v-mpv6qp .framer-1hqmb6r-container { order: 7; width: 100%; }\",\".framer-2K3q6.framer-v-zy0kws .framer-11ubpaz-container, .framer-2K3q6.framer-v-exgul5 .framer-11ubpaz-container, .framer-2K3q6.framer-v-kbq5h6 .framer-11ubpaz-container, .framer-2K3q6.framer-v-mpv6qp .framer-11ubpaz-container { order: 8; width: 100%; }\",\".framer-2K3q6.framer-v-zy0kws .framer-12b1aci-container, .framer-2K3q6.framer-v-exgul5 .framer-12b1aci-container, .framer-2K3q6.framer-v-kbq5h6 .framer-12b1aci-container, .framer-2K3q6.framer-v-mpv6qp .framer-12b1aci-container { order: 6; width: 100%; }\",\".framer-2K3q6.framer-v-zy0kws .framer-qotrko, .framer-2K3q6.framer-v-exgul5 .framer-qotrko, .framer-2K3q6.framer-v-kbq5h6 .framer-qotrko, .framer-2K3q6.framer-v-mpv6qp .framer-qotrko { order: 10; }\",\".framer-2K3q6.framer-v-zy0kws .framer-wxne3s, .framer-2K3q6.framer-v-exgul5 .framer-wxne3s, .framer-2K3q6.framer-v-kbq5h6 .framer-wxne3s, .framer-2K3q6.framer-v-mpv6qp .framer-wxne3s, .framer-2K3q6.framer-v-1bg224c .framer-1mpqodw-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2K3q6.framer-v-zy0kws .framer-5yhmtg, .framer-2K3q6.framer-v-zy0kws .framer-11nztc9 { gap: 0px; } .framer-2K3q6.framer-v-zy0kws .framer-5yhmtg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2K3q6.framer-v-zy0kws .framer-5yhmtg > :first-child, .framer-2K3q6.framer-v-zy0kws .framer-11nztc9 > :first-child { margin-top: 0px; } .framer-2K3q6.framer-v-zy0kws .framer-5yhmtg > :last-child, .framer-2K3q6.framer-v-zy0kws .framer-11nztc9 > :last-child { margin-bottom: 0px; } .framer-2K3q6.framer-v-zy0kws .framer-11nztc9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-2K3q6.framer-v-exgul5.framer-aq4p11, .framer-2K3q6.framer-v-kbq5h6.framer-aq4p11, .framer-2K3q6.framer-v-mpv6qp.framer-aq4p11 { align-content: flex-start; align-items: flex-start; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; width: 390px; }\",\".framer-2K3q6.framer-v-exgul5 .framer-5yhmtg, .framer-2K3q6.framer-v-kbq5h6 .framer-5yhmtg, .framer-2K3q6.framer-v-mpv6qp .framer-5yhmtg { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; }\",\".framer-2K3q6.framer-v-exgul5 .framer-wyt6qt, .framer-2K3q6.framer-v-kbq5h6 .framer-wyt6qt, .framer-2K3q6.framer-v-mpv6qp .framer-wyt6qt { flex: none; order: 0; padding: 0px 0px 0px 20px; width: 100%; }\",\".framer-2K3q6.framer-v-exgul5 .framer-11nztc9, .framer-2K3q6.framer-v-kbq5h6 .framer-11nztc9, .framer-2K3q6.framer-v-mpv6qp .framer-11nztc9 { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 20px; height: 1px; justify-content: flex-start; left: unset; order: 1; overflow: auto; padding: 20px 20px 100px 20px; position: relative; top: unset; width: 100%; }\",\".framer-2K3q6.framer-v-exgul5 .framer-1mpqodw-container, .framer-2K3q6.framer-v-kbq5h6 .framer-1mpqodw-container { order: 3; width: 100%; }\",\".framer-2K3q6.framer-v-exgul5 .framer-4tb2w1-container { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2K3q6.framer-v-exgul5 .framer-5yhmtg, .framer-2K3q6.framer-v-exgul5 .framer-11nztc9 { gap: 0px; } .framer-2K3q6.framer-v-exgul5 .framer-5yhmtg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2K3q6.framer-v-exgul5 .framer-5yhmtg > :first-child, .framer-2K3q6.framer-v-exgul5 .framer-11nztc9 > :first-child { margin-top: 0px; } .framer-2K3q6.framer-v-exgul5 .framer-5yhmtg > :last-child, .framer-2K3q6.framer-v-exgul5 .framer-11nztc9 > :last-child { margin-bottom: 0px; } .framer-2K3q6.framer-v-exgul5 .framer-11nztc9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-2K3q6.framer-v-kbq5h6 .framer-p8810d-container { flex: none; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2K3q6.framer-v-kbq5h6 .framer-5yhmtg, .framer-2K3q6.framer-v-kbq5h6 .framer-11nztc9 { gap: 0px; } .framer-2K3q6.framer-v-kbq5h6 .framer-5yhmtg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2K3q6.framer-v-kbq5h6 .framer-5yhmtg > :first-child, .framer-2K3q6.framer-v-kbq5h6 .framer-11nztc9 > :first-child { margin-top: 0px; } .framer-2K3q6.framer-v-kbq5h6 .framer-5yhmtg > :last-child, .framer-2K3q6.framer-v-kbq5h6 .framer-11nztc9 > :last-child { margin-bottom: 0px; } .framer-2K3q6.framer-v-kbq5h6 .framer-11nztc9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-2K3q6.framer-v-mpv6qp .framer-5jfpb9-container { flex: none; order: 5; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2K3q6.framer-v-mpv6qp .framer-5yhmtg, .framer-2K3q6.framer-v-mpv6qp .framer-11nztc9 { gap: 0px; } .framer-2K3q6.framer-v-mpv6qp .framer-5yhmtg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2K3q6.framer-v-mpv6qp .framer-5yhmtg > :first-child, .framer-2K3q6.framer-v-mpv6qp .framer-11nztc9 > :first-child { margin-top: 0px; } .framer-2K3q6.framer-v-mpv6qp .framer-5yhmtg > :last-child, .framer-2K3q6.framer-v-mpv6qp .framer-11nztc9 > :last-child { margin-bottom: 0px; } .framer-2K3q6.framer-v-mpv6qp .framer-11nztc9 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-2K3q6.framer-v-1bg224c .framer-11z33fg-container { order: 1; }\",\".framer-2K3q6.framer-v-1bg224c .framer-1hqmb6r-container { order: 6; }\",\".framer-2K3q6.framer-v-1bg224c .framer-11ubpaz-container { order: 7; }\",\".framer-2K3q6.framer-v-1bg224c .framer-12b1aci-container { order: 8; }\",\".framer-2K3q6.framer-v-1bg224c .framer-1q5sanv-container { order: 9; }\",\".framer-2K3q6.framer-v-1bg224c .framer-1c4flnj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: min-content; }\",\".framer-2K3q6.framer-v-1bg224c .framer-awjg1p { left: unset; position: relative; top: unset; width: 500px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2K3q6.framer-v-1bg224c .framer-1c4flnj { gap: 0px; } .framer-2K3q6.framer-v-1bg224c .framer-1c4flnj > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2K3q6.framer-v-1bg224c .framer-1c4flnj > :first-child { margin-top: 0px; } .framer-2K3q6.framer-v-1bg224c .framer-1c4flnj > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-2K3q6[data-border=\"true\"]::after, .framer-2K3q6 [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-2K3q6[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-2K3q6 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-2K3q6[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-2K3q6 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"h_mjAD5XA\":{\"layout\":[\"fixed\",\"fixed\"]},\"R0VTOecmT\":{\"layout\":[\"fixed\",\"auto\"]},\"jCSThHE5b\":{\"layout\":[\"fixed\",\"auto\"]},\"lsiXoOb5z\":{\"layout\":[\"fixed\",\"auto\"]},\"o_Efus7OW\":{\"layout\":[\"fixed\",\"auto\"]},\"rZ4w0Tr5M\":{\"layout\":[\"fixed\",\"fixed\"]},\"EBap25fXL\":{\"layout\":[\"fixed\",\"fixed\"]},\"yAxlMMt1H\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXsKn0WNdo=withCSS(Component,css,\"framer-2K3q6\");export default FramerXsKn0WNdo;FramerXsKn0WNdo.displayName=\"Nav/Topbar\";FramerXsKn0WNdo.defaultProps={height:70,width:1200};addPropertyControls(FramerXsKn0WNdo,{variant:{options:[\"a6VTeTET9\",\"h_mjAD5XA\",\"R0VTOecmT\",\"jCSThHE5b\",\"lsiXoOb5z\",\"o_Efus7OW\",\"rZ4w0Tr5M\",\"EBap25fXL\",\"yAxlMMt1H\"],optionTitles:[\"Desktop Nav\",\"Mobile Nav\",\"Mobile Nav: Open\",\"Mobile Nav: Features\",\"Mobile Nav: Resources\",\"Mobile Nav: Support\",\"Desktop Nav Transparent\",\"Mobile Nav Transparent\",\"Product Nav\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXsKn0WNdo,[{explicitInter:true,fonts:[{family:\"GT Walsheim Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/6kEeNyQwxT59TY7SpLEnehG2fc.woff2\"},{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\"}]},...NavTopbarFramerLogoFonts,...LoginFetchFonts,...MenuIconCopyFonts,...NavTopbarLinkFonts,...NavTopbarPopoverFeaturesFonts,...NavTopbarPopoverResourcesFonts,...NavTopbarPopoverSupportFonts,...NavTopbarPopoverEnterpriseFonts,...NavTopbarPopoverLinkFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXsKn0WNdo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"70\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h_mjAD5XA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R0VTOecmT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jCSThHE5b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lsiXoOb5z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"o_Efus7OW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rZ4w0Tr5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EBap25fXL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yAxlMMt1H\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "ggBAAoY,SAASA,GAASC,EAAU,CAAC,OAAoBC,EAAW,CAACC,EAAMC,IAA2BC,EAAKJ,EAAU,CAAC,GAAGE,EAAM,IAAIC,EAAI,MAAM,CAAC,GAAGD,EAAM,MAAM,oBAAoB,wCAAwC,CAAC,CAAC,CAAG,CAAE,CAC5lB,IAAMG,GAASC,GAAY,CAAC,mBAAmB,GAAM,KAAK,IAAI,CAAC,EAAiqD,IAAMC,GAAkBC,GAAY,CAAC,OAAO,EAAK,CAAC,EAAmoC,SAASC,GAA0BC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAAC,CAAC,OAAAC,CAAM,EAAEC,CAAQ,EAAEC,GAAkB,EAAwD,OAAoBC,EAAKL,EAAU,CAAC,GAAGC,EAAM,aAA5EK,GAAG,CAACH,EAAS,CAAC,OAAO,EAAK,CAAC,CAAE,CAA4E,CAAC,CAAE,CAAE,CCA92F,IAAMI,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAwB,CAAC,KAAK,YAAY,mBAAmB,YAAY,eAAe,YAAY,cAAc,YAAY,QAAQ,YAAY,OAAO,YAAY,GAAG,YAAY,SAAS,YAAY,IAAI,YAAY,KAAK,YAAY,SAAS,YAAY,UAAU,YAAY,IAAI,YAAY,UAAU,YAAY,QAAQ,YAAY,KAAK,YAAY,UAAU,YAAY,cAAc,YAAY,UAAU,YAAY,UAAU,YAAY,QAAQ,YAAY,UAAU,YAAY,cAAc,YAAY,QAAQ,YAAY,KAAK,YAAY,MAAM,YAAY,OAAO,YAAY,KAAK,YAAY,QAAQ,YAAY,OAAO,YAAY,KAAK,YAAY,OAAO,YAAY,aAAa,YAAY,WAAW,YAAY,YAAY,YAAY,QAAQ,YAAY,WAAW,YAAY,QAAQ,YAAY,OAAO,YAAY,WAAW,YAAY,IAAI,YAAY,KAAK,YAAY,SAAS,YAAY,SAAS,YAAY,YAAY,YAAY,QAAQ,YAAY,UAAU,YAAY,WAAW,YAAY,OAAO,YAAY,KAAK,YAAY,IAAI,YAAY,QAAQ,YAAY,OAAO,YAAY,QAAQ,YAAY,KAAK,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQd,IAAc,YAA6Ce,EAAa,IAAQf,IAAc,YAA6CgB,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAShB,CAAW,EAAmCiB,GAAa,IAAQjB,IAAc,YAA6CkB,GAAa,IAAQlB,IAAc,YAA6CmB,EAAa,IAAQnB,IAAc,YAA6CoB,EAAa,IAAQpB,IAAc,YAA6CqB,GAAa,IAAQrB,IAAc,YAA6CsB,GAAc,IAAQtB,IAAc,YAA6CuB,GAAc,IAAQvB,IAAc,YAA6CwB,GAAc,IAAQxB,IAAc,YAA6CyB,GAAc,IAAQzB,IAAc,YAA6C0B,GAAc,IAAQ1B,IAAc,YAA6C2B,GAAc,IAAQ3B,IAAc,YAA6C4B,GAAc,IAAQ5B,IAAc,YAA6C6B,GAAc,IAAQ7B,IAAc,YAA6C8B,GAAc,IAAQ9B,IAAc,YAA6C+B,GAAc,IAAQ/B,IAAc,YAA6CgC,GAAc,IAAQhC,IAAc,YAA6CiC,GAAc,IAAQjC,IAAc,YAA6CkC,GAAc,IAAQlC,IAAc,YAA6CmC,GAAc,IAAQnC,IAAc,YAA6CoC,GAAc,IAAQpC,IAAc,YAA6CqC,GAAc,IAAQrC,IAAc,YAA6CsC,GAAc,IAAQtC,IAAc,YAA6CuC,GAAc,IAAQvC,IAAc,YAA6CwC,GAAc,IAAQxC,IAAc,YAA6CyC,GAAc,IAAQzC,IAAc,YAA6C0C,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBpE,EAAKqE,EAAY,CAAC,GAAGjD,GAA4C4C,GAAgB,SAAsBhE,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBgF,EAAMpE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAU8C,EAAGxF,GAAkB,GAAGmF,GAAsB,iBAAiB/C,EAAUI,CAAU,EAAE,mBAAmB,KAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,IAAI,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBlC,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,yvBAAyvB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgBnC,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,qiBAAqiB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEU,EAAa,GAAgBpC,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,4lBAA4lB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEW,EAAa,GAAgBrC,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,u2BAAu2B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEY,EAAa,GAAgBtC,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mhCAAmhC,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAEQ,GAAa,GAAgBvC,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,oeAAoe,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEc,GAAa,GAAgBxC,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,koCAAkoC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEe,EAAa,GAAgBzC,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4zBAA4zB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgB,EAAa,GAAgB1C,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,4cAA4c,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiB,GAAa,GAAgB3C,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,gkBAAgkB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkB,GAAc,GAAgB5C,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,yjBAAyjB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmB,GAAc,GAAgB7C,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,8vBAA8vB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoB,GAAc,GAAgB9C,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,uzBAAuzB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqB,GAAc,GAAgB/C,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,glBAAglB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsB,GAAc,GAAgBhD,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,8nBAA8nB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuB,GAAc,GAAgBjD,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,k/BAAk/B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAc,GAAgBlD,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,44BAA44B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEyB,GAAc,GAAgBnD,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,49BAA49B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE0B,GAAc,GAAgBpD,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6rBAA6rB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE2B,GAAc,GAAgBrD,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,mzBAAmzB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE4B,GAAc,GAAgBtD,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,s/BAAs/B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,IAAI,s/BAAs/B,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE6B,GAAc,GAAgBvD,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+wCAA+wC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,IAAI,o9BAAo9B,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE8B,GAAc,GAAgBxD,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2cAA2c,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+B,GAAc,GAAgBzD,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6oDAA6oD,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgC,GAAc,GAAgB1D,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,gjBAAgjB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiC,GAAc,GAAgB3D,EAAKwE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4ZAA4Z,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkC,GAAc,GAAgB5D,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,mWAAmW,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmC,GAAc,GAAgB7D,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,0tBAA0tB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoC,GAAc,GAAgB9D,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,kRAAkR,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqC,GAAc,GAAgB/D,EAAKwE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiBzC,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,yeAAye,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+C,GAAI,CAAC,kFAAkF,gFAAgF,wPAAwP,43BAA43B,+FAA+F,+FAA+F,+FAA+F,6WAA6W,4kFAA4kF,+DAA+D,gEAAgE,gEAAgE,+DAA+D,+DAA+D,8DAA8D,EAQ/5iDC,GAAgBC,EAAQ/D,GAAU6D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,KAAK,UAAU,SAAS,KAAK,WAAW,MAAM,OAAO,mBAAmB,WAAW,YAAY,MAAM,YAAY,UAAU,OAAO,YAAY,gBAAgB,YAAY,YAAY,UAAU,YAAY,gBAAgB,UAAU,OAAO,QAAQ,SAAS,OAAO,UAAU,SAAS,OAAO,eAAe,SAAS,eAAe,aAAa,cAAc,UAAU,aAAa,UAAU,SAAS,aAAa,MAAM,OAAO,WAAW,WAAW,cAAc,UAAU,YAAY,cAAc,aAAa,SAAS,OAAO,MAAM,UAAU,SAAS,UAAU,OAAO,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRtpC,IAAMM,GAAmBC,EAASC,EAAa,EAAQC,GAAsBC,GAAoBF,EAAa,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAqB,CAAC,KAAK,YAAY,mBAAmB,YAAY,eAAe,YAAY,cAAc,YAAY,QAAQ,YAAY,OAAO,YAAY,GAAG,YAAY,SAAS,YAAY,IAAI,YAAY,KAAK,YAAY,SAAS,YAAY,UAAU,YAAY,IAAI,YAAY,UAAU,YAAY,QAAQ,YAAY,KAAK,YAAY,UAAU,YAAY,cAAc,YAAY,UAAU,YAAY,UAAU,YAAY,QAAQ,YAAY,UAAU,YAAY,cAAc,YAAY,QAAQ,YAAY,KAAK,YAAY,MAAM,YAAY,OAAO,YAAY,KAAK,YAAY,QAAQ,YAAY,OAAO,YAAY,KAAK,YAAY,OAAO,YAAY,aAAa,YAAY,WAAW,YAAY,YAAY,YAAY,QAAQ,YAAY,WAAW,YAAY,QAAQ,YAAY,OAAO,YAAY,WAAW,YAAY,IAAI,YAAY,KAAK,YAAY,SAAS,YAAY,SAAS,YAAY,YAAY,YAAY,QAAQ,YAAY,UAAU,YAAY,WAAW,YAAY,OAAO,YAAY,KAAK,YAAY,IAAI,YAAY,QAAQ,YAAY,OAAO,YAAY,QAAQ,YAAY,KAAK,YAAY,KAAK,WAAW,EAAQC,GAAwB,CAAC,MAAM,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,KAAAC,EAAK,SAAAC,EAAS,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAA2BC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGP,EAAM,WAAWC,EAAKJ,GAA4CG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,WAAW,WAAWG,GAAOD,GAAOD,EAA2BZ,GAAqBI,CAAI,KAAK,MAAMQ,IAA6B,OAAOA,EAA2BR,KAAQ,MAAMS,IAAQ,OAAOA,EAAMH,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,YAAY,UAAUR,GAAgCI,EAAM,UAAU,WAAWK,EAAMP,GAAmCE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,QAAQ,SAASE,GAAOD,EAAuCf,GAAwBS,EAAM,OAAO,KAAK,MAAMM,IAAyC,OAAOA,EAAuCN,EAAM,WAAW,MAAMO,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACR,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAUoC,GAA6BC,EAAW,SAASV,EAAMW,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA1C,EAAQ,UAAA2C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE9B,GAASQ,CAAK,EAAO,CAAC,YAAAuB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,EAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiBxB,GAAuBR,EAAM3B,CAAQ,EAAQ4D,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBrD,EAAKsD,EAAY,CAAC,GAAGxB,GAA4CmB,GAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKT,GAAW,CAAC,MAAMF,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBxC,EAAKuD,GAAK,CAAC,KAAKtB,EAAU,aAAa,GAAM,SAAsBuB,EAAMtD,EAAO,EAAE,CAAC,GAAGiC,EAAU,GAAGI,GAAgB,UAAU,GAAGkB,EAAG3E,GAAkB,GAAGqE,GAAsB,gBAAgBtB,EAAUQ,CAAU,kBAAkB,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,GAA6BsB,EAAK,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGlB,CAAK,EAAE,GAAG5C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAS,CAAcxC,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,cAAc,GAAK,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yEAAyE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,OAAO,aAAa,MAAM,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,wEAAwE,OAAO,YAAY,aAAa,WAAW,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,kBAAkB,CAAC,EAAE,SAAsB7C,EAAK0D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEN,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,KAAK,GAAG,IAAI,GAAG,GAAG,GAAGpE,GAAqB,CAAC,UAAU,CAAC,GAAgEoE,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,KAAK,GAAG,IAAI,GAAG,CAAC,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsBxC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2C,EAAiB,SAAS,sBAAsB,SAAsB7C,EAAKvB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQyD,EAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAMtD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB2C,EAAiB,SAAS,YAAY,SAAS,CAAc7C,EAAK2D,GAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,mCAAmC,uBAAuB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,KAAKd,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,mCAAmC,uBAAuB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEkC,EAAYI,CAAc,CAAC,CAAC,EAAEQ,EAAY,GAAgBhD,EAAK2D,GAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,KAAKb,EAAU,SAAS,CAAC,kBAAkB,CAAC,QAAQ,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,gFAAgF,8SAA8S,oQAAoQ,mKAAmK,wSAAwS,8IAA8I,ykBAAykB,2FAA2F,+bAA+b,EAS97XC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,0BAA0BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAA+EvF,IAAsB,SAAa,CAAC,GAAGA,GAAsB,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,CAAC,CAAC,EAAEwF,EAASL,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,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,GAAGtF,EAAkB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTr9J,IAAM4F,GAAiBC,GAASC,EAAQ,EAAQC,GAA0BC,EAASC,CAAoB,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBmD,EAAMvC,EAAO,GAAG,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUiB,EAAG3D,GAAkB,GAAGsD,EAAsB,gBAAgBlB,EAAUI,CAAU,EAAE,mBAAmB,WAAW,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAKxB,GAAiB,CAAC,sBAAsB,GAAK,SAAsBwB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEG,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAKxB,GAAiB,CAAC,sBAAsB,GAAK,SAAsBwB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEG,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAKxB,GAAiB,CAAC,sBAAsB,GAAK,SAAsBwB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,CAAC,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,iDAAiD,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,SAAS,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,mDAAmD,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,uCAAuC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,MAAM,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,8CAA8C,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,yCAAyC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,QAAQ,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,gDAAgD,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,eAAe,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,2CAA2C,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,mBAAmB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,mDAAmD,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,MAAM,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGrD,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,KAAK,QAAQ,YAAY,MAAM,OAAO,GAAGI,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,kFAAkF,0UAA0U,wXAAwX,6KAA6K,iJAAiJ,2aAA2a,2qBAA2qB,oIAAoI,wEAAwE,wEAAwE,uEAAuE,wEAAwE,wEAAwE,uEAAuE,wEAAwE,wEAAwE,uEAAuE,EAQ33kBC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,8BAA8BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,WAAW,iBAAiB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,GAAGlE,EAAyB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRnvD,IAAMwE,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,aAAa,YAAY,cAAc,YAAY,WAAW,YAAY,eAAe,YAAY,eAAe,YAAY,eAAe,YAAY,gBAAgB,YAAY,aAAa,YAAY,eAAe,YAAY,cAAc,YAAY,eAAe,YAAY,eAAe,YAAY,cAAc,YAAY,WAAW,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,GAAG,YAAY,IAAI,YAAY,KAAK,YAAY,UAAU,YAAY,SAAS,YAAY,OAAO,YAAY,MAAM,YAAY,KAAK,YAAY,MAAM,YAAY,MAAM,YAAY,MAAM,YAAY,IAAI,YAAY,aAAa,YAAY,KAAK,YAAY,KAAK,YAAY,OAAO,YAAY,UAAU,YAAY,QAAQ,YAAY,QAAQ,YAAY,cAAc,YAAY,OAAO,YAAY,IAAI,YAAY,KAAK,YAAY,UAAU,YAAY,UAAU,YAAY,MAAM,YAAY,QAAQ,YAAY,QAAQ,YAAY,IAAI,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,YAAY,OAAO,YAAY,QAAQ,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,YAAY,KAAK,YAAY,WAAW,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,KAAK,YAAY,QAAQ,YAAY,OAAO,YAAY,KAAK,YAAY,MAAM,YAAY,YAAY,YAAY,UAAU,YAAY,MAAM,YAAY,WAAW,YAAY,KAAK,YAAY,aAAa,YAAY,MAAM,YAAY,UAAU,YAAY,SAAS,YAAY,MAAM,YAAY,MAAM,YAAY,IAAI,YAAY,KAAK,YAAY,QAAQ,YAAY,KAAK,YAAY,QAAQ,YAAY,QAAQ,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,YAAY,OAAO,YAAY,OAAO,YAAY,OAAO,YAAY,QAAQ,YAAY,KAAK,YAAY,MAAM,YAAY,OAAO,YAAY,OAAO,YAAY,KAAK,YAAY,KAAK,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQd,IAAc,YAA6Ce,EAAa,IAAQf,IAAc,YAA6CgB,EAAa,IAAQhB,IAAc,YAA6CiB,GAAa,IAAQjB,IAAc,YAA6CkB,GAAa,IAAQlB,IAAc,YAA6CmB,EAAa,IAAQnB,IAAc,YAA6CoB,EAAa,IAAQpB,IAAc,YAA6CqB,GAAa,IAAQrB,IAAc,YAA6CsB,GAAc,IAAQtB,IAAc,YAA6CuB,GAAc,IAAQvB,IAAc,YAA6CwB,GAAc,IAAQxB,IAAc,YAA6CyB,GAAc,IAAQzB,IAAc,YAA6C0B,GAAc,IAAQ1B,IAAc,YAA6C2B,GAAc,IAAQ3B,IAAc,YAA6C4B,GAAc,IAAQ5B,IAAc,YAA6C6B,GAAc,IAAQ7B,IAAc,YAA6C8B,GAAc,IAAQ9B,IAAc,YAA6C+B,GAAc,IAAQ/B,IAAc,YAA6CgC,GAAc,IAAQhC,IAAc,YAA6CiC,GAAc,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASjC,CAAW,EAAmCkC,GAAc,IAAQlC,IAAc,YAA6CmC,GAAc,IAAQnC,IAAc,YAA6CoC,GAAc,IAAQpC,IAAc,YAA6CqC,GAAc,IAAQrC,IAAc,YAA6CsC,GAAc,IAAQtC,IAAc,YAA6CuC,GAAc,IAAQvC,IAAc,YAA6CwC,GAAc,IAAQxC,IAAc,YAA6CyC,GAAc,IAAQzC,IAAc,YAA6C0C,GAAc,IAAQ1C,IAAc,YAA6C2C,GAAc,IAAQ3C,IAAc,YAA6C4C,GAAc,IAAQ5C,IAAc,YAA6C6C,EAAc,IAAQ7C,IAAc,YAA6C8C,EAAc,IAAQ9C,IAAc,YAA6C+C,EAAc,IAAQ/C,IAAc,YAA6CgD,GAAc,IAAQhD,IAAc,YAA6CiD,GAAc,IAAQjD,IAAc,YAA6CkD,GAAc,IAAQlD,IAAc,YAA6CmD,GAAc,IAAQnD,IAAc,YAA6CoD,GAAc,IAAQpD,IAAc,YAA6CqD,GAAc,IAAQrD,IAAc,YAA6CsD,GAAc,IAAQtD,IAAc,YAA6CuD,GAAc,IAAQvD,IAAc,YAA6CwD,GAAc,IAAQxD,IAAc,YAA6CyD,GAAc,IAAQzD,IAAc,YAA6C0D,GAAc,IAAQ1D,IAAc,YAA6C2D,GAAc,IAAQ3D,IAAc,YAA6C4D,GAAc,IAAQ5D,IAAc,YAA6C6D,GAAc,IAAQ7D,IAAc,YAA6C8D,GAAc,IAAQ9D,IAAc,YAA6C+D,GAAc,IAAQ/D,IAAc,YAA6CgE,GAAc,IAAQhE,IAAc,YAA6CiE,GAAc,IAAQjE,IAAc,YAA6CkE,GAAc,IAAQlE,IAAc,YAA6CmE,GAAc,IAAQnE,IAAc,YAA6CoE,GAAc,IAAQpE,IAAc,YAA6CqE,GAAc,IAAQrE,IAAc,YAA6CsE,GAAc,IAAQtE,IAAc,YAA6CuE,GAAc,IAAQvE,IAAc,YAA6CwE,GAAc,IAAQxE,IAAc,YAA6CyE,GAAc,IAAQzE,IAAc,YAA6C0E,GAAc,IAAQ1E,IAAc,YAA6C2E,GAAc,IAAQ3E,IAAc,YAA6C4E,GAAc,IAAQ5E,IAAc,YAA6C6E,GAAc,IAAQ7E,IAAc,YAA6C8E,GAAc,IAAQ9E,IAAc,YAA6C+E,GAAc,IAAQ/E,IAAc,YAA6CgF,GAAc,IAAQhF,IAAc,YAA6CiF,GAAc,IAAQjF,IAAc,YAA6CkF,GAAc,IAAQlF,IAAc,YAA6CmF,GAAc,IAAQnF,IAAc,YAA6CoF,GAAc,IAAQpF,IAAc,YAA6CqF,GAAc,IAAQrF,IAAc,YAA6CsF,GAAc,IAAQtF,IAAc,YAA6CuF,GAAc,IAAQvF,IAAc,YAA6CwF,GAAc,IAAQxF,IAAc,YAA6CyF,GAAc,IAAQzF,IAAc,YAA6C0F,GAAc,IAAQ1F,IAAc,YAA6C2F,GAAc,IAAQ3F,IAAc,YAA6C4F,GAAc,IAAQ5F,IAAc,YAA6C6F,GAAc,IAAQ7F,IAAc,YAA6C8F,GAAc,IAAQ9F,IAAc,YAA6C+F,GAAc,IAAQ/F,IAAc,YAA6CgG,GAAc,IAAQhG,IAAc,YAA6CiG,GAAc,IAAQjG,IAAc,YAA6CkG,GAAc,IAAQlG,IAAc,YAA6CmG,GAAc,IAAQnG,IAAc,YAA6CoG,GAAc,IAAQpG,IAAc,YAA6CqG,GAAc,IAAQrG,IAAc,YAA6CsG,GAAc,IAAQtG,IAAc,YAA6CuG,GAAc,IAAQvG,IAAc,YAA6CwG,GAAc,IAAQxG,IAAc,YAA6CyG,GAAc,IAAQzG,IAAc,YAA6C0G,GAAc,IAAQ1G,IAAc,YAA6C2G,GAAc,IAAQ3G,IAAc,YAA6C4G,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBtI,EAAKuI,EAAY,CAAC,GAAGnH,GAA4C8G,GAAgB,SAAsBlI,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkJ,EAAMtI,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgH,EAAG1J,GAAkB,GAAGqJ,GAAsB,gBAAgBjH,EAAUI,CAAU,EAAE,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,IAAI,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBlC,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,kkBAAkkB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgBnC,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8zCAA8zC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEU,EAAa,GAAgBpC,EAAK0I,EAAI,CAAC,UAAU,eAAe,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2/BAA2/B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEW,EAAa,GAAgBrC,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,yfAAyf,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEY,EAAa,GAAgBtC,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,slBAAslB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEa,GAAa,GAAgBvC,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,giBAAgiB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEc,GAAa,GAAgBxC,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6hBAA6hB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEe,EAAa,GAAgBzC,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qdAAqd,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgB,EAAa,GAAgB1C,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qaAAqa,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiB,GAAa,GAAgB3C,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wkBAAwkB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkB,GAAc,GAAgB5C,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gcAAgc,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmB,GAAc,GAAgB7C,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qeAAqe,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoB,GAAc,GAAgB9C,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,ksBAAksB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqB,GAAc,GAAgB/C,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,i4BAAi4B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsB,GAAc,GAAgBhD,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,6mDAA6mD,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuB,GAAc,GAAgBjD,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,krBAAkrB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEwB,GAAc,GAAgBlD,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,ojCAAojC,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEyB,GAAc,GAAgBnD,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,swBAAswB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE0B,GAAc,GAAgBpD,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+hCAA+hC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE2B,GAAc,GAAgBrD,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,imBAAimB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE4B,GAAc,GAAgBtD,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,m4BAAm4B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE6B,GAAc,GAAgBvD,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,oUAAoU,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAEyB,GAAc,GAAgBxD,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,6jBAA6jB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+B,GAAc,GAAgBzD,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,i5BAAi5B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgC,GAAc,GAAgB1D,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,i1BAAi1B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiC,GAAc,GAAgB3D,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,soBAAsoB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkC,GAAc,GAAgB5D,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,ixCAAixC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmC,GAAc,GAAgB7D,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,2kBAA2kB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoC,GAAc,GAAgB9D,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,wiBAAwiB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqC,GAAc,GAAgB/D,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,quBAAquB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsC,GAAc,GAAgBhE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+7BAA+7B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuC,GAAc,GAAgBjE,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,uuBAAuuB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEwC,GAAc,GAAgBlE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6sBAA6sB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEyC,EAAc,GAAgBnE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qgBAAqgB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE0C,EAAc,GAAgBpE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wtDAAwtD,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE2C,EAAc,GAAgBrE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,2lBAA2lB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE4C,GAAc,GAAgBtE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,2pDAA2pD,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE6C,GAAc,GAAgBvE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,ylEAAylE,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE8C,GAAc,GAAgBxE,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,yhCAAyhC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+C,GAAc,GAAgBzE,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,wiCAAwiC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgD,GAAc,GAAgB1E,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,s4BAAs4B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiD,GAAc,GAAgB3E,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,0sBAA0sB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkD,GAAc,GAAgB5E,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,gnBAAgnB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmD,GAAc,GAAgB7E,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,otCAAotC,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoD,GAAc,GAAgB9E,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4mBAA4mB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqD,GAAc,GAAgB/E,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8fAA8f,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsD,GAAc,GAAgBhF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,soBAAsoB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuD,GAAc,GAAgBjF,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,06BAA06B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEwD,GAAc,GAAgBlF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6mBAA6mB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEyD,GAAc,GAAgBnF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,sxBAAsxB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE0D,GAAc,GAAgBpF,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gsBAAgsB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE2D,GAAc,GAAgBrF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,m6CAAm6C,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE4D,GAAc,GAAgBtF,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4wCAA4wC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE6D,GAAc,GAAgBvF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,u2BAAu2B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE8D,GAAc,GAAgBxF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,moBAAmoB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+D,GAAc,GAAgBzF,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8mBAA8mB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgE,GAAc,GAAgB1F,EAAK0I,EAAI,CAAC,UAAU,eAAe,mBAAmB,aAAa,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,iiBAAiiB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiE,GAAc,GAAgB3F,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8oBAA8oB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkE,GAAc,GAAgB5F,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,8cAA8c,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmE,GAAc,GAAgB7F,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qbAAqb,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoE,GAAc,GAAgB9F,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,0eAA0e,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqE,GAAc,GAAgB/F,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,+eAA+e,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsE,GAAc,GAAgBhG,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qzCAAqzC,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuE,GAAc,GAAgBjG,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,ggBAAggB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,IAAI,ggBAAggB,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEwE,GAAc,GAAgBlG,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wbAAwb,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEyE,GAAc,GAAgBnG,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,8kBAA8kB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE0E,GAAc,GAAgBpG,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,mnBAAmnB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE2E,GAAc,GAAgBrG,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,62BAA62B,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE4E,GAAc,GAAgBtG,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,4rBAA4rB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE6E,GAAc,GAAgBvG,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,skBAAskB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE8E,GAAc,GAAgBxG,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,ohBAAohB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+E,GAAc,GAAgBzG,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wWAAwW,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgF,GAAc,GAAgB1G,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,+xBAA+xB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiF,GAAc,GAAgB3G,EAAK0I,EAAI,CAAC,UAAU,eAAe,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,o1BAAo1B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkF,GAAc,GAAgB5G,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,olBAAolB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmF,GAAc,GAAgB7G,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,spBAAspB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoF,GAAc,GAAgB9G,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,usBAAusB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqF,GAAc,GAAgB/G,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,imBAAimB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsF,GAAc,GAAgBhH,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,utBAAutB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuF,GAAc,GAAgBjH,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,0hCAA0hC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEwF,GAAc,GAAgBlH,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,qeAAqe,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEyF,GAAc,GAAgBnH,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,gfAAgf,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE0F,GAAc,GAAgBpH,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,0uCAA0uC,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE2F,GAAc,GAAgBrH,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4gDAA4gD,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE4F,GAAc,GAAgBtH,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,6oBAA6oB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE6F,GAAc,GAAgBvH,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,gdAAgd,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE8F,GAAc,GAAgBxH,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4WAA4W,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAE+F,GAAc,GAAgBzH,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,iTAAiT,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEgG,GAAc,GAAgB1H,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wnBAAwnB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEiG,GAAc,GAAgB3H,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wWAAwW,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEkG,GAAc,GAAgB5H,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,4zBAA4zB,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEmG,GAAc,GAAgB7H,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,g0BAAg0B,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEoG,GAAc,GAAgB9H,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,iqCAAiqC,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEqG,GAAc,GAAgB/H,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,soBAAsoB,aAAa,YAAY,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEsG,GAAc,GAAgBhI,EAAK0I,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,syCAAsyC,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,EAAEuG,GAAc,GAAgBjI,EAAK0I,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,OAAO,WAAW,iBAAiB3G,EAAiB,SAAS,YAAY,QAAQ,EAAE,OAAO,EAAE,IAAI,wxCAAwxC,aAAa,WAAW,mBAAmB,GAAK,GAAG9C,EAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiH,GAAI,CAAC,kFAAkF,gFAAgF,uPAAuP,24FAA24F,+FAA+F,yWAAyW,4yIAA4yI,+DAA+D,+DAA+D,+DAA+D,gEAAgE,8DAA8D,8DAA8D,8DAA8D,+DAA+D,6DAA6D,+DAA+D,8DAA8D,8DAA8D,+DAA+D,+DAA+D,+DAA+D,8DAA8D,gEAAgE,gEAAgE,gEAAgE,+DAA+D,+DAA+D,+DAA+D,6DAA6D,EAQ1otIC,GAAgBC,EAAQjI,GAAU+H,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,KAAK,MAAM,cAAc,aAAa,aAAa,WAAW,OAAO,YAAY,WAAW,SAAS,QAAQ,OAAO,QAAQ,eAAe,gBAAgB,eAAe,eAAe,aAAa,QAAQ,QAAQ,MAAM,eAAe,eAAe,OAAO,cAAc,OAAO,SAAS,YAAY,UAAU,UAAU,gBAAgB,SAAS,MAAM,OAAO,QAAQ,YAAY,YAAY,aAAa,QAAQ,UAAU,UAAU,MAAM,QAAQ,QAAQ,OAAO,OAAO,UAAU,OAAO,OAAO,QAAQ,OAAO,OAAO,OAAO,OAAO,UAAU,eAAe,SAAS,OAAO,QAAQ,cAAc,YAAY,aAAa,OAAO,eAAe,QAAQ,YAAY,WAAW,QAAQ,eAAe,QAAQ,MAAM,OAAO,cAAc,UAAU,OAAO,WAAW,UAAU,UAAU,UAAU,QAAQ,SAAS,iBAAiB,SAAS,SAAS,SAAS,gBAAgB,UAAU,OAAO,QAAQ,SAAS,SAAS,OAAO,OAAO,MAAM,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRv+D,IAAMM,GAAmBC,EAASC,EAAa,EAAQC,GAAsBC,GAAoBF,EAAa,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAqB,CAAC,aAAa,YAAY,aAAa,YAAY,cAAc,YAAY,WAAW,YAAY,eAAe,YAAY,eAAe,YAAY,eAAe,YAAY,gBAAgB,YAAY,aAAa,YAAY,eAAe,YAAY,cAAc,YAAY,eAAe,YAAY,eAAe,YAAY,cAAc,YAAY,WAAW,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,GAAG,YAAY,IAAI,YAAY,KAAK,YAAY,UAAU,YAAY,SAAS,YAAY,OAAO,YAAY,MAAM,YAAY,KAAK,YAAY,MAAM,YAAY,MAAM,YAAY,MAAM,YAAY,IAAI,YAAY,aAAa,YAAY,KAAK,YAAY,KAAK,YAAY,OAAO,YAAY,UAAU,YAAY,QAAQ,YAAY,QAAQ,YAAY,cAAc,YAAY,OAAO,YAAY,IAAI,YAAY,KAAK,YAAY,UAAU,YAAY,UAAU,YAAY,MAAM,YAAY,QAAQ,YAAY,QAAQ,YAAY,IAAI,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,YAAY,OAAO,YAAY,QAAQ,YAAY,KAAK,YAAY,KAAK,YAAY,MAAM,YAAY,KAAK,YAAY,WAAW,YAAY,MAAM,YAAY,KAAK,YAAY,KAAK,YAAY,KAAK,YAAY,QAAQ,YAAY,OAAO,YAAY,KAAK,YAAY,MAAM,YAAY,YAAY,YAAY,UAAU,YAAY,MAAM,YAAY,WAAW,YAAY,KAAK,YAAY,aAAa,YAAY,MAAM,YAAY,UAAU,YAAY,SAAS,YAAY,MAAM,YAAY,MAAM,YAAY,IAAI,YAAY,KAAK,YAAY,QAAQ,YAAY,KAAK,YAAY,QAAQ,YAAY,QAAQ,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,YAAY,OAAO,YAAY,OAAO,YAAY,OAAO,YAAY,QAAQ,YAAY,KAAK,YAAY,MAAM,YAAY,OAAO,YAAY,OAAO,YAAY,KAAK,YAAY,KAAK,YAAY,IAAI,WAAW,EAAQC,GAAwB,CAAC,MAAM,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,KAAAC,EAAK,SAAAC,EAAS,SAAAC,EAAS,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAA2BC,EAAMC,EAAMC,EAAMC,EAAuCC,GAAM,MAAM,CAAC,GAAGP,EAAM,WAAWC,EAAKJ,GAA4CG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,WAAW,UAAUN,GAAgCK,EAAM,UAAU,WAAWI,GAAOD,GAAOD,EAA2Bb,GAAqBI,CAAI,KAAK,MAAMS,IAA6B,OAAOA,EAA2BT,KAAQ,MAAMU,IAAQ,OAAOA,EAAMH,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,YAAY,UAAUR,GAA4CI,EAAM,UAAU,WAAWK,EAAMP,GAAmCE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,QAAQ,SAASE,IAAOD,EAAuChB,GAAwBU,EAAM,OAAO,KAAK,MAAMM,IAAyC,OAAOA,EAAuCN,EAAM,WAAW,MAAMO,KAAQ,OAAOA,GAAM,WAAW,CAAE,EAAQC,GAAuB,CAACR,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAUqC,GAA6BC,EAAW,SAASV,EAAMW,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3D,CAAQ,EAAE4D,EAAgB,CAAC,WAAAjE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgE,EAAiBzB,GAAuBR,EAAM5B,CAAQ,EAAQ8D,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQZ,IAAc,YAA6Ca,GAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvD,EAAKwD,EAAY,CAAC,GAAGzB,GAA4CoB,GAAgB,SAAsBnD,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKT,GAAW,CAAC,MAAMF,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAsB1C,EAAKyD,GAAK,CAAC,KAAKtB,EAAU,aAAa,GAAM,SAAsBuB,EAAMxD,EAAO,EAAE,CAAC,GAAGmC,EAAU,GAAGI,EAAgB,UAAU,GAAGkB,EAAG7E,GAAkB,GAAGuE,EAAsB,gBAAgBvB,EAAUS,EAAU,mBAAmB,mBAAmB,QAAQ,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,GAA6BuB,EAAK,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGnB,CAAK,EAAE,GAAG7C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEsD,EAAYI,CAAc,EAAE,SAAS,CAAc1C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB6C,EAAiB,SAAS,qBAAqB,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,4BAA4B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,4BAA4B,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,OAAO,aAAa,MAAM,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,eAAe,OAAO,YAAY,aAAa,WAAW,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,kBAAkB,CAAC,EAAE,SAAsB/C,EAAK4D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEN,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,GAAG,GAAG,GAAGtE,GAAqB,CAAC,UAAU,CAAC,GAAgEsE,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,GAAG,CAAC,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB6C,EAAiB,SAAS,sBAAsB,SAAsB/C,EAAKvB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQuD,EAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAMxD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAcW,EAAMxD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6C,EAAiB,SAAS,YAAY,SAAS,CAAc/C,EAAK6D,GAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,mCAAmC,uBAAuB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,KAAKd,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,mCAAmC,uBAAuB,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,cAAc,CAAC,CAAC,EAAEoC,EAAYI,CAAc,CAAC,CAAC,EAAEN,GAAwBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6C,EAAiB,SAAS,YAAY,SAAsB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEG,GAAY,GAAgBlD,EAAK6D,GAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,KAAKb,EAAU,SAAS,CAAC,kBAAkB,CAAC,QAAQ,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,kFAAkF,8SAA8S,qQAAqQ,mKAAmK,wSAAwS,6SAA6S,gJAAgJ,sTAAsT,sOAAsO,w8BAAw8B,4FAA4F,+bAA+b,EASlycC,GAAgBC,EAAQzC,GAAUuC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,0BAA0BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,QAAQ,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAA+EzF,IAAsB,SAAa,CAAC,GAAGA,GAAsB,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKyF,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAM,MAAM,YAAY,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,EAASL,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,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,GAAGxF,EAAkB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTxgK,IAAM8F,GAAiBC,GAASC,EAAQ,EAAQC,GAA0BC,EAASC,EAAoB,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAwB,CAAC,qBAAqB,YAAY,WAAW,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAOC,GAAU,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBrC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBqD,EAAMzC,EAAO,GAAG,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUmB,EAAG7D,GAAkB,GAAGwD,EAAsB,iBAAiBpB,EAAUI,CAAU,EAAE,mBAAmB,aAAa,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,oBAAoB,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,iBAAiB,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAKxB,GAAiB,CAAC,sBAAsB,GAAK,SAAsBwB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEG,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAKxB,GAAiB,CAAC,sBAAsB,GAAK,SAAsBwB,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGvD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEuD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,CAAC,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,GAAqB,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qCAAqC,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGvD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEuD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,GAAqB,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mDAAmD,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,gBAAgB,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGvD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEuD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,GAAqB,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,+CAA+C,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK8C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,IAA4B/C,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGvD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEuD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,GAAqB,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6CAA6C,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,UAAU8D,GAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAEzB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK8C,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,IAA6BhD,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGvD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEuD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,GAAqB,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8DAA8D,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,UAAU+D,GAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE1B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGvD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEuD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAElB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,yBAAyB,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,GAAqB,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8CAA8C,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,kFAAkF,iVAAiV,wVAAwV,+IAA+I,0VAA0V,0gBAA0gB,wHAAwH,yEAAyE,yEAAyE,wEAAwE,yEAAyE,wEAAwE,sEAAsE,EAQ18bC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gCAAgCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,aAAa,oBAAoB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,GAAGvE,EAAyB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR/1C,IAAM6E,GAAiBC,GAASC,EAAQ,EAAQC,GAA0BC,EAASC,EAAoB,EAAQC,GAA2BF,EAASG,CAAqB,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAwB,CAAC,mBAAmB,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBmD,EAAMvC,EAAO,GAAG,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUiB,EAAG3D,GAAkB,GAAGsD,EAAsB,gBAAgBlB,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,kBAAkB,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,iBAAiB,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAK1B,GAAiB,CAAC,sBAAsB,GAAK,SAAsB0B,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEG,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,iBAAiB,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAK1B,GAAiB,CAAC,sBAAsB,GAAK,SAAsB0B,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEG,EAAY,GAAgBlC,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,iBAAiB6B,EAAiB,SAAS,YAAY,SAAsB/B,EAAK1B,GAAiB,CAAC,sBAAsB,GAAK,SAAsB0B,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe/B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKrB,GAAqB,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAK,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,EAAE,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,iCAAiC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,mCAAmC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,+BAA+B,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,OAAO,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAqEL,GAAkB,OAAQ,8BAA8B,GAAgEA,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGrD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEqD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKrB,GAAqB,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kCAAkC,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAM,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,OAAO,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK2C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGrD,GAAqB,CAAC,UAAU,CAAC,GAAgEqD,GAAkB,GAAI,GAAG,EAAE,CAAC,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAsB,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+D,GAAI,CAAC,kFAAkF,kFAAkF,0UAA0U,uXAAuX,6KAA6K,0LAA0L,oYAAoY,uqBAAuqB,oIAAoI,yEAAyE,wEAAwE,uEAAuE,uEAAuE,uEAAuE,uEAAuE,yEAAyE,wEAAwE,uEAAuE,EAQljhBC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,+BAA+BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,kBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,GAAGpE,GAA0B,GAAGG,EAA0B,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRtnD,IAAMuE,GAA0BC,EAASC,CAAoB,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,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,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAwB,CAAC,iBAAiB,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/B,EAAQ,GAAGgC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1C,CAAQ,EAAE2C,EAAgB,CAAC,WAAAhD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+C,EAAiBpB,GAAuBH,EAAMrB,CAAQ,EAAQ6C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBtC,EAAKuC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBkD,EAAMtC,EAAO,GAAG,CAAC,GAAGmB,EAAU,GAAGI,EAAgB,UAAUgB,EAAG1D,GAAkB,GAAGqD,EAAsB,gBAAgBjB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGjC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAgB,CAAC,EAAEqC,EAAYI,CAAc,EAAE,SAAS,CAAc1B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAoEL,GAAkB,OAAQ,yBAAyB,GAAgEA,GAAkB,GAAI,GAAG,GAAG,EAAE,GAAGpD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEoD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,CAAC,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,+BAA+B,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,OAAO,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAoEL,GAAkB,OAAQ,yBAAyB,GAAgEA,GAAkB,GAAI,GAAG,GAAG,GAAG,GAAGpD,GAAqB,CAAC,UAAU,CAAC,MAAM,OAAoEoD,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,0BAA0B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,oCAAoC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAK0C,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAgEL,GAAkB,GAAI,GAAG,GAAG,IAAI,GAAGpD,GAAqB,CAAC,UAAU,CAAC,GAAgEoD,GAAkB,GAAI,GAAG,EAAE,GAAG,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsB1B,EAAKE,EAAO,GAAG,CAAC,UAAU,2BAA2B,iBAAiB6B,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAKnB,EAAqB,CAAC,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,oCAAoC,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,gFAAgF,0UAA0U,yLAAyL,kJAAkJ,8EAA8E,EAQvwNC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,6BAA6BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGjE,EAAyB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRnO,IAAMuE,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,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,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,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,EAAa,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,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,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAnB,CAAQ,EAAEoB,EAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAX,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBxB,GAAuBD,EAAME,CAAQ,EAAQwB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQQ,EAAS,QAAQ,GAAM,SAAsBT,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKyC,GAAK,CAAC,KAAK,0BAA0B,aAAa,GAAM,SAAsBC,EAAMxC,EAAO,EAAE,CAAC,GAAGkB,EAAU,GAAGI,EAAgB,UAAU,GAAGmB,EAAGC,GAAkB,GAAGP,EAAsB,gBAAgBpB,EAAUK,CAAU,mBAAmB,mBAAmB,KAAK,iBAAiBU,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,GAAGjB,CAAK,EAAE,SAAS,CAAchB,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,YAAY,kCAAkC,OAAO,WAAW,iBAAiBb,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,6sBAA6sB,aAAa,YAAY,MAAM,cAAc,mBAAmB,EAAI,CAAC,EAAehC,EAAK8C,GAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAW,EAAS,CAAC,SAAsBA,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,iEAAiE,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,yBAAyB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,2RAA2R,8FAA8F,+JAA+J,0WAA0W,EAQzxKC,GAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,yBAAyBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,mBAAmB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRigD,IAAMI,GAAyBC,EAASC,EAAmB,EAAQC,GAAgBF,EAASG,EAAU,EAAQC,GAAkBJ,EAASK,EAAY,EAAQC,GAAmBN,EAASO,EAAa,EAAQC,GAA8BR,EAASS,EAAwB,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAA6DC,GAA0BH,GAAOI,EAA6B,CAAC,EAAQC,GAA+BhB,EAASiB,EAAyB,EAAQC,GAA6BlB,EAASmB,EAAuB,EAAQC,GAAgCpB,EAASqB,EAA0B,EAAQC,GAAwBC,GAA6BC,GAAS,CAAC,gBAAgB,GAAK,OAAO,YAAY,SAASC,GAAS,QAAQ,WAAW,CAAC,EAAQC,GAAwBH,GAA6BC,GAAS,CAAC,gBAAgB,GAAK,OAAO,YAAY,SAASC,GAAS,QAAQ,WAAW,CAAC,EAAQE,GAA0B3B,EAAS4B,CAAoB,EAAQC,GAA0CN,GAA6BX,EAAO,IAAI,CAAC,OAAO,YAAY,SAASkB,GAA0B,QAAQ,WAAW,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWpB,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQqB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAlB,CAAQ,IAAI,CAAC,IAAMmB,EAAaC,EAAWC,CAAmB,EAAQC,EAAWJ,GAAOC,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,SAASvB,CAAQ,CAAC,CAAE,EAAQ0B,GAASnE,EAAO,OAAa,CAAQ,EAAQoE,GAAwB,CAAC,0BAA0B,YAAY,cAAc,YAAY,yBAAyB,YAAY,uBAAuB,YAAY,mBAAmB,YAAY,wBAAwB,YAAY,sBAAsB,YAAY,aAAa,YAAY,cAAc,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMjD,IAAeiD,EAAM,iBAAwBjD,EAAS,KAAK,GAAG,EAAEiD,EAAM,iBAAwBjD,EAAS,KAAK,GAAG,EAAUmD,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzD,EAAQ,GAAG0D,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAApE,CAAQ,EAAEqE,EAAgB,CAAC,WAAA1E,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyE,EAAiBpB,GAAuBD,EAAMjD,CAAQ,EAAO,CAAC,sBAAAuE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQQ,EAAiBL,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQS,EAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIR,EAAsB,SAASI,KAAO,CAACG,EAAQ,KAAK,CAAE,CAAC,EAAQE,EAAgBT,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQa,GAAgBV,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQc,GAAgB,CAAC,CAAC,QAAAJ,EAAQ,SAAAC,CAAQ,IAAIR,EAAsB,SAASI,KAAO,CAACG,EAAQ,KAAK,CAAE,CAAC,EAAQK,EAAgBZ,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAAQgB,EAAgBb,EAAsB,SAASI,IAAO,CAACP,GAAW,WAAW,CAAE,CAAC,EAA4DiB,GAAkBC,EAAG1F,GAAkB,GAArE,CAAa8D,EAAS,CAAuE,EAAQ6B,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS5B,CAAW,EAAmC6B,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAS7B,CAAW,EAAmC8B,GAAa,IAAQ9B,IAAc,YAA6C+B,GAAWJ,EAAO,IAAI,EAAQK,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAShC,CAAW,EAAmCiC,GAAWN,EAAO,IAAI,EAAQO,GAAWP,EAAO,IAAI,EAAQQ,GAAWR,EAAO,IAAI,EAAQS,GAAWT,EAAO,IAAI,EAAQU,GAAWV,EAAO,IAAI,EAAQW,GAAa,IAAQtC,IAAc,YAA6CuC,GAAa,IAAQvC,IAAc,YAA6CwC,GAAa,IAAQxC,IAAc,YAA6CyC,GAAWd,EAAO,IAAI,EAAQe,GAAWf,EAAO,IAAI,EAAQgB,GAAa,IAAQ3C,IAAc,YAA6C4C,GAAYjB,EAAO,IAAI,EAAQkB,GAAYlB,EAAO,IAAI,EAAQmB,GAAOC,GAAU,EAAQC,GAAa,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAShD,CAAW,EAAmCiD,GAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvE,EAAKwE,EAAY,CAAC,GAAGvD,GAAUmD,GAAgB,SAAsBpE,EAAKC,GAAS,CAAC,QAAQ3C,EAAS,QAAQ,GAAM,SAAsB0C,EAAKR,GAAW,CAAC,MAAM/B,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMC,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMD,EAAW,CAAC,EAAEyD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKlE,EAAO,IAAI,CAAC,GAAGoF,EAAU,GAAGI,EAAgB,UAAUsB,EAAGD,GAAkB,gBAAgB3B,EAAUI,CAAU,EAAE,cAAc,GAAK,mBAAmB,cAAc,uBAAuB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKkC,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,8EAA8E,UAAU,OAAO,qBAAqB,aAAa,GAAG9B,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,eAAe,YAAY,gBAAgB,mBAAmB,UAAU,OAAO,qBAAqB,WAAW,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,eAAe,YAAY,gBAAgB,mBAAmB,UAAU,wEAAwE,qBAAqB,WAAW,EAAE,UAAU,CAAC,UAAU,MAAM,CAAC,EAAE,GAAG3D,EAAqB,CAAC,UAAU,CAAC,mBAAmB,wBAAwB,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,sBAAsB,EAAE,UAAU,CAAC,mBAAmB,uBAAuB,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,yBAAyB,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBkD,EAAM3I,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8F,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kBAAkB,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,EAAE,UAAU,CAAC,gBAAgB,kBAAkB,CAAC,EAAE,SAAS,CAAc6C,EAAM3I,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8F,EAAiB,SAAS,YAAY,SAAS,CAAc6C,EAAM3I,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8F,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,GAAGkH,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAK7E,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAKtD,GAAS,CAAC,sBAAsB,GAAK,SAAsBsD,EAAW,EAAS,CAAC,SAAsBA,EAAKlE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,qEAAqE,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAsBkE,EAAK2E,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsB3E,EAAKlE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,2BAA2B,EAAE,iBAAiB8F,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,GAAGkH,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAK3E,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0H,GAAY,GAAgB/C,EAAK0E,EAA0B,CAAC,GAAGtH,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkH,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,GAAGA,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,UAAU,2BAA2B,mBAAmB,cAAc,iBAAiB2F,EAAiB,SAAS,sBAAsB,KAAK,cAAc,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKzE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAG6B,EAAqB,CAAC,UAAU,CAAC,UAAU4E,CAAe,EAAE,UAAU,CAAC,UAAUA,CAAe,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUE,CAAgB,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,CAAgB,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,CAAgB,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,GAAa,GAAgByB,EAAM1H,GAA0C,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,uBAAuB,GAAK,iBAAiB6E,EAAiB,SAAS,YAAY,kBAAkBhE,GAAmB,GAAGR,EAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,kBAAkB,MAAS,EAAE,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAS,CAAC0B,GAAa,GAAgBjD,EAAK1B,GAAQ,CAAC,uBAAuB,GAAM,QAAQ6E,GAAa,EAAE,SAASf,GAAsBpC,EAAK4E,GAAU,CAAC,SAAsB5E,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,CAAC,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBkD,EAAM1I,GAA6D,CAAC,UAAU,0BAA0B,wBAAwB,SAAS,GAAG,GAAGkF,WAAkB,iBAAiBW,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAIsB,GAAK,kBAAkB,GAAK,QAAQ,YAAY,GAAG9F,EAAqB,CAAC,UAAU,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQY,GAAU,QAAQC,GAAW,UAAU,EAAI,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAS,CAAcvB,EAAKvE,GAAc,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,GAAK,QAAQ2G,EAAQ,QAAQ,YAAY,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUD,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,GAAGhF,EAAqB,CAAC,UAAU,CAAC,UAAUmF,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,SAAQH,EAAQ,QAAQ,YAAuB,EAAE,UAAU,CAAC,UAAUE,EAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,SAAQF,EAAQ,QAAQ,YAAuB,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,EAAE4B,GAAa,GAAgBnD,EAAK6E,GAAgB,CAAC,SAASzC,EAAQ,SAAsBpC,EAAK8E,GAAS,CAAC,UAAU,SAAS,UAAU5B,GAAK,UAAUN,EAAGD,GAAkBvB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,WAAkB,QAAQ,GAAG,QAAQ,GAAG,UAAUmB,EAAQ,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsBpC,EAAKpE,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwC,GAAW,UAAU,iBAAiB,cAAc,GAAK,KAAKD,GAAW,QAAQE,GAAW,iBAAiBuD,EAAiB,SAAS,YAAY,IAAIwB,GAAK,KAAK,SAAS,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,8HAA8H,qBAAqB,YAAY,EAAE,SAAsBpD,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,SAAsB1E,EAAK/D,GAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKrE,GAAyB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAK1B,GAAQ,CAAC,uBAAuB,GAAM,QAAQ6E,GAAa,EAAE,SAAS4B,GAAuB/E,EAAK4E,GAAU,CAAC,SAAsB5E,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBkD,EAAM1I,GAA6D,CAAC,UAAU,2BAA2B,wBAAwB,UAAU,GAAG,GAAGkF,YAAmB,iBAAiBW,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAIyB,GAAK,kBAAkB,GAAK,QAAQ,YAAY,GAAGjG,EAAqB,CAAC,UAAU,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQY,GAAU,QAAQC,GAAW,UAAU,EAAI,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAS,CAAcvB,EAAKvE,GAAc,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,UAAU+G,GAAgB,CAAC,QAAQuC,CAAQ,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,QAAQA,EAAS,QAAQ,YAAY,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU5C,EAAgB,CAAC,QAAQ4C,CAAQ,CAAC,EAAE,GAAG3H,EAAqB,CAAC,UAAU,CAAC,UAAUqF,EAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUF,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQwC,EAAS,QAAQ,YAAY,WAAW,EAAE,UAAU,CAAC,UAAUtC,EAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQsC,EAAS,QAAQ,YAAY,WAAW,CAAC,EAAE5D,EAAYI,CAAc,CAAC,CAAC,EAAE4B,GAAa,GAAgBnD,EAAK6E,GAAgB,CAAC,SAASE,EAAS,SAAsB/E,EAAK8E,GAAS,CAAC,UAAU,SAAS,UAAUzB,GAAK,UAAUT,EAAGD,GAAkBvB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,YAAmB,QAAQ,GAAG,QAAQ,GAAG,UAAU8D,EAAS,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsB/E,EAAKpE,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwC,GAAW,UAAU,gBAAgB,cAAc,GAAK,KAAKD,GAAW,QAAQE,GAAW,iBAAiBuD,EAAiB,SAAS,YAAY,IAAI0B,GAAK,KAAK,SAAS,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,8HAA8H,qBAAqB,YAAY,EAAE,SAAsBtD,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,SAAsB1E,EAAK/D,GAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAK7D,GAA0B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6D,EAAK1B,GAAQ,CAAC,uBAAuB,GAAM,QAAQ6E,GAAa,EAAE,SAAS6B,GAAuBhF,EAAK4E,GAAU,CAAC,SAAsB5E,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBkD,EAAM1I,GAA6D,CAAC,UAAU,2BAA2B,wBAAwB,UAAU,GAAG,GAAGkF,YAAmB,iBAAiBW,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAI2B,GAAK,kBAAkB,GAAK,QAAQ,YAAY,GAAGnG,EAAqB,CAAC,UAAU,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ0B,GAAW,QAAQb,GAAW,UAAU,EAAI,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAS,CAAcvB,EAAKvE,GAAc,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,UAAU+G,GAAgB,CAAC,QAAQwC,CAAQ,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,QAAQA,EAAS,QAAQ,YAAY,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU7C,EAAgB,CAAC,QAAQ6C,CAAQ,CAAC,EAAE,GAAG5H,EAAqB,CAAC,UAAU,CAAC,UAAUsF,EAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,UAAUH,GAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQyC,EAAS,QAAQ,YAAY,WAAW,EAAE,UAAU,CAAC,UAAUtC,EAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQsC,EAAS,QAAQ,YAAY,WAAW,CAAC,EAAE7D,EAAYI,CAAc,CAAC,CAAC,EAAE4B,GAAa,GAAgBnD,EAAK6E,GAAgB,CAAC,SAASG,EAAS,SAAsBhF,EAAK8E,GAAS,CAAC,UAAU,SAAS,UAAUvB,GAAK,UAAUX,EAAGD,GAAkBvB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,YAAmB,QAAQ,GAAG,QAAQ,GAAG,UAAU+D,EAAS,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsBhF,EAAKpE,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwC,GAAW,UAAU,iBAAiB,cAAc,GAAK,KAAKD,GAAW,QAAQE,GAAW,iBAAiBuD,EAAiB,SAAS,YAAY,IAAI4B,GAAK,KAAK,SAAS,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,+EAA+E,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,8HAA8H,qBAAqB,YAAY,EAAE,SAAsBxD,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,SAAsB1E,EAAK/D,GAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAK3D,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoH,GAAa,GAAgBzD,EAAK0E,EAA0B,CAAC,GAAGtH,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,EAAE,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKjE,GAA6D,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQiD,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,iBAAiB2C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKrE,GAAyB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+H,GAAa,GAAgB1D,EAAK0E,EAA0B,CAAC,GAAGtH,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKjE,GAA6D,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQiD,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,iBAAiB2C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAK7D,GAA0B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwH,GAAa,GAAgB3D,EAAK0E,EAA0B,CAAC,GAAGtH,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKjE,GAA6D,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQiD,GAAW,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,iBAAiB2C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAK3D,GAAwB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2D,EAAK1B,GAAQ,CAAC,uBAAuB,GAAM,SAAS2G,GAAuBjF,EAAK4E,GAAU,CAAC,SAAsB5E,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBkD,EAAM1I,GAA6D,CAAC,UAAU,2BAA2B,wBAAwB,UAAU,GAAG,GAAGkF,YAAmB,iBAAiBW,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAIgC,GAAK,kBAAkB,GAAK,QAAQ,YAAY,GAAGxG,EAAqB,CAAC,UAAU,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ+B,GAAW,QAAQlB,GAAW,UAAU,EAAI,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAS,CAAcvB,EAAKvE,GAAc,CAAC,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,GAAK,QAAQwJ,EAAS,QAAQ,YAAY,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU9C,EAAgB,CAAC,QAAQ8C,CAAQ,CAAC,EAAE,GAAG7H,EAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,EAAevB,EAAK6E,GAAgB,CAAC,SAASI,EAAS,SAAsBjF,EAAK8E,GAAS,CAAC,UAAU,SAAS,UAAUlB,GAAK,UAAUhB,EAAGD,GAAkBvB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,YAAmB,QAAQ,GAAG,QAAQ,GAAG,UAAUgE,EAAS,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,SAAsBjF,EAAKpE,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwC,GAAW,UAAU,gBAAgB,cAAc,GAAK,KAAKD,GAAW,QAAQE,GAAW,iBAAiBuD,EAAiB,SAAS,YAAY,IAAIiC,GAAK,KAAK,SAAS,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,0EAA0E,qBAAqB,YAAY,EAAE,SAAsB7D,EAAK0E,EAA0B,CAAC,SAAsB1E,EAAK/D,GAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKzD,GAA2B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyD,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKjE,GAA6D,CAAC,UAAU,2BAA2B,wBAAwB,UAAU,iBAAiB6F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,GAAGxE,EAAqB,CAAC,UAAU,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ4B,GAAW,QAAQf,GAAW,UAAU,EAAI,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKvE,GAAc,CAAC,UAAU,kCAAkC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,GAAG2B,EAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAK0E,EAA0B,CAAC,OAAO,GAAG,GAAGJ,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,EAAE,GAAGlH,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBkH,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,UAAU,CAAC,MAAM,gBAAgBA,GAAmB,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKjE,GAA6D,CAAC,UAAU,2BAA2B,wBAAwB,UAAU,mBAAmB,UAAU,iBAAiB6F,EAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,GAAGxE,EAAqB,CAAC,UAAU,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQiC,GAAW,QAAQpB,GAAW,UAAU,EAAI,CAAC,EAAEkD,EAAYI,CAAc,EAAE,SAAsBvB,EAAKvE,GAAc,CAAC,UAAU,kCAAkC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,KAAK,UAAU,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,GAAG2B,EAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE+D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuC,GAAa,GAAgB9D,EAAK1B,GAAQ,CAAC,uBAAuB,GAAM,SAAS4G,GAAuBlF,EAAK4E,GAAU,CAAC,SAAsB5E,EAAK0E,EAA0B,CAAC,GAAGtH,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAGkH,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,EAAE,IAAI,GAAG,qBAAqB,CAAC,CAAC,EAAEnD,EAAYI,CAAc,EAAE,SAAsBkD,EAAMxI,GAA8B,CAAC,UAAU,2BAA2B,GAAG,GAAGgF,YAAmB,iBAAiBW,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAImC,GAAM,kBAAkB,GAAK,QAAQ,YAAY,SAAS,CAAc/D,EAAKvE,GAAc,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,UAAU+G,GAAgB,CAAC,QAAQ0C,CAAQ,CAAC,EAAE,SAAS,YAAY,UAAU,GAAK,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAU/C,EAAgB,CAAC,QAAQ+C,CAAQ,CAAC,CAAC,CAAC,EAAelF,EAAK6E,GAAgB,CAAC,SAASK,EAAS,SAAsBlF,EAAK8E,GAAS,CAAC,UAAU,SAAS,UAAUf,GAAM,UAAUnB,EAAGD,GAAkBvB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,YAAmB,QAAQ,EAAE,QAAQ,GAAG,UAAUiE,EAAS,KAAK,UAAU,SAAS,SAAS,GAAK,OAAO,GAAG,GAAG9H,EAAqB,CAAC,UAAU,CAAC,QAAQ,GAAG,OAAO,EAAE,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAKpE,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQwC,GAAW,UAAU,iBAAiB,KAAKkB,GAAY,QAAQC,GAAY,iBAAiBqC,EAAiB,SAAS,YAAY,IAAIoC,GAAM,KAAK,SAAS,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,OAAO,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,qCAAqC,qBAAqB,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,0EAA0E,qBAAqB,YAAY,CAAC,EAAE,GAAG5G,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,KAAKe,GAAW,QAAQE,EAAU,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBkD,EAAM3I,EAAO,GAAG,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8F,EAAiB,SAAS,YAAY,SAAS,CAAc5B,EAAKlE,EAAO,GAAG,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8F,EAAiB,SAAS,YAAY,SAAsB5B,EAAKxD,GAAwB,CAAC,sBAAsB,GAAK,SAAsBwD,EAAW,EAAS,CAAC,SAAsBA,EAAKlE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB8F,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe5B,EAAKlE,EAAO,GAAG,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB8F,EAAiB,SAAS,YAAY,SAAsB5B,EAAKpD,GAAwB,CAAC,sBAAsB,GAAK,SAAsBoD,EAAW,EAAS,CAAC,SAAsBA,EAAKlE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB8F,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxE,EAAqB,CAAC,UAAU,CAAC,SAAsB4C,EAAW,EAAS,CAAC,SAAsBA,EAAKlE,EAAO,EAAE,CAAC,MAAM,CAAC,mCAAmC,uBAAuB,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqF,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKmF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BpF,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,GAAG,KAAK,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKlD,EAAqB,CAAC,UAAU,mCAAmC,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAUsI,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gBAAgB,QAAQ,YAAY,MAAM,OAAO,GAAGhI,EAAqB,CAAC,UAAU,CAAC,UAAU,wBAAwB,UAAUgI,EAAc,CAAC,EAAE,UAAU,QAAQ,CAAC,EAAEjE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKmF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6BrF,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,GAAG,KAAK,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKlD,EAAqB,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAUuI,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,GAAGjI,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAoB,UAAUiI,EAAe,CAAC,CAAC,CAAC,EAAElE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKmF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BtF,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,GAAG,KAAK,UAAU,yBAAyB,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKlD,EAAqB,CAAC,UAAU,gCAAgC,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAUwI,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,cAAc,QAAQ,YAAY,MAAM,OAAO,GAAGlI,EAAqB,CAAC,UAAU,CAAC,UAAU,mBAAmB,UAAUkI,EAAe,CAAC,EAAE,UAAU,OAAO,CAAC,EAAEnE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKmF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BvF,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,GAAG,KAAK,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKlD,EAAqB,CAAC,UAAU,8BAA8B,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAUyI,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAGnI,EAAqB,CAAC,UAAU,CAAC,UAAU,kBAAkB,UAAUmI,EAAe,CAAC,CAAC,CAAC,EAAEpE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKmF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BxF,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,GAAG,KAAK,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKlD,EAAqB,CAAC,UAAU,iCAAiC,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU0I,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gBAAgB,QAAQ,YAAY,MAAM,OAAO,GAAGpI,EAAqB,CAAC,UAAU,CAAC,UAAU,uBAAuB,UAAUoI,EAAe,CAAC,EAAE,UAAU,SAAS,CAAC,EAAErE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKmF,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BzF,EAAK0E,EAA0B,CAAC,MAAM,QAAQ,GAAGtH,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE+D,EAAYI,CAAc,EAAE,SAAsBvB,EAAK/D,GAA8B,CAAC,GAAG,KAAK,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiB2F,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB5B,EAAKlD,EAAqB,CAAC,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU2I,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,aAAa,QAAQ,YAAY,MAAM,OAAO,GAAGrI,EAAqB,CAAC,UAAU,CAAC,UAAU,qBAAqB,UAAUqI,EAAe,CAAC,CAAC,CAAC,EAAEtE,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,CAAC,CAAC,EAAE4C,GAAa,GAAgBnE,EAAKlE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,iBAAiB8F,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAEuC,GAAa,GAAgBnE,EAAKlE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8F,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,iEAAiE,EAAE,SAAS,CAAC,UAAU,CAAC,WAAW,oJAAoJ,EAAE,UAAU,CAAC,WAAW,oJAAoJ,EAAE,UAAU,CAAC,WAAW,oJAAoJ,EAAE,UAAU,CAAC,WAAW,oJAAoJ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8D,GAAI,CAAC,kFAAkF,gFAAgF,wQAAwQ,8RAA8R,2QAA2Q,mRAAmR,wGAAwG,8JAA8J,2LAA2L,gbAAgb,sTAAsT,+ZAA+Z,yGAAyG,yGAAyG,yGAAyG,uHAAuH,mKAAmK,yXAAyX,yVAAyV,gJAAgJ,wVAAwV,oLAAoL,wKAAwK,ytDAAytD,4HAA4H,uIAAuI,oLAAoL,gPAAgP,6HAA6H,+VAA+V,4PAA4P,uMAAuM,uMAAuM,gQAAgQ,gQAAgQ,gQAAgQ,wMAAwM,iQAAiQ,qtBAAqtB,gSAAgS,0TAA0T,6MAA6M,qZAAqZ,8IAA8I,gGAAgG,qtBAAqtB,gGAAgG,qtBAAqtB,gGAAgG,qtBAAqtB,yEAAyE,yEAAyE,yEAAyE,yEAAyE,yEAAyE,sPAAsP,+GAA+G,ubAAub,GAAeA,GAAI,gcAAgc,6JAA6J,wKAAwK,EAQl4iEC,GAAgBC,EAAQnF,GAAUiF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,cAAc,aAAa,mBAAmB,uBAAuB,wBAAwB,sBAAsB,0BAA0B,yBAAyB,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,qBAAqB,OAAO,SAAS,IAAI,uEAAuE,EAAE,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,GAAG1K,GAAyB,GAAGG,GAAgB,GAAGE,GAAkB,GAAGE,GAAmB,GAAGE,GAA8B,GAAGQ,GAA+B,GAAGE,GAA6B,GAAGE,GAAgC,GAAGO,GAA0B,GAAGoJ,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["OpenType", "Component", "Y", "props", "ref", "p", "useStore", "createStore", "useBrandMenuStore", "createStore", "withCloseBrandMenuOnHover", "Component", "props", "isOpen", "setStore", "useBrandMenuStore", "p", "e", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "isDisplayed24", "isDisplayed25", "isDisplayed26", "isDisplayed27", "isDisplayed28", "isDisplayed29", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerYeRNZLTy_", "withCSS", "YeRNZLTy_default", "addPropertyControls", "ControlType", "addFonts", "FramerIconKitFonts", "getFonts", "YeRNZLTy_default", "FramerIconKitControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "subtitle", "title", "width", "props", "_ref", "_humanReadableEnumMap_icon", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TWgR9IEL9", "duIKkuslC", "MXeGwX6es", "IqW2gILX9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerU_0Mb9OEL", "withCSS", "U_0Mb9OEL_default", "addPropertyControls", "ControlType", "addFonts", "RichTextOpenType", "OpenType", "RichText2", "NavTopbarPopoverLinkFonts", "getFonts", "U_0Mb9OEL_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerCh2T0RIxN", "withCSS", "Ch2T0RIxN_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "isDisplayed24", "isDisplayed25", "isDisplayed26", "isDisplayed27", "isDisplayed28", "isDisplayed29", "isDisplayed30", "isDisplayed31", "isDisplayed32", "isDisplayed33", "isDisplayed34", "isDisplayed35", "isDisplayed36", "isDisplayed37", "isDisplayed38", "isDisplayed39", "isDisplayed40", "isDisplayed41", "isDisplayed42", "isDisplayed43", "isDisplayed44", "isDisplayed45", "isDisplayed46", "isDisplayed47", "isDisplayed48", "isDisplayed49", "isDisplayed50", "isDisplayed51", "isDisplayed52", "isDisplayed53", "isDisplayed54", "isDisplayed55", "isDisplayed56", "isDisplayed57", "isDisplayed58", "isDisplayed59", "isDisplayed60", "isDisplayed61", "isDisplayed62", "isDisplayed63", "isDisplayed64", "isDisplayed65", "isDisplayed66", "isDisplayed67", "isDisplayed68", "isDisplayed69", "isDisplayed70", "isDisplayed71", "isDisplayed72", "isDisplayed73", "isDisplayed74", "isDisplayed75", "isDisplayed76", "isDisplayed77", "isDisplayed78", "isDisplayed79", "isDisplayed80", "isDisplayed81", "isDisplayed82", "isDisplayed83", "isDisplayed84", "isDisplayed85", "isDisplayed86", "isDisplayed87", "isDisplayed88", "isDisplayed89", "isDisplayed90", "isDisplayed91", "isDisplayed92", "isDisplayed93", "isDisplayed94", "isDisplayed95", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "Framerwl2ru_XZf", "withCSS", "wl2ru_XZf_default", "addPropertyControls", "ControlType", "addFonts", "FramerIconKitFonts", "getFonts", "wl2ru_XZf_default", "FramerIconKitControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "icon", "id", "link", "newBadge", "subtitle", "title", "width", "props", "_ref", "_humanReadableEnumMap_icon", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "PAB9UTqd6", "TWgR9IEL9", "duIKkuslC", "MXeGwX6es", "T2q12fWsB", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerIZmp66AdO", "withCSS", "IZmp66AdO_default", "addPropertyControls", "ControlType", "addFonts", "RichTextOpenType", "OpenType", "RichText2", "NavTopbarPopoverLinkFonts", "getFonts", "IZmp66AdO_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerihrENU0nX", "withCSS", "ihrENU0nX_default", "addPropertyControls", "ControlType", "addFonts", "RichTextOpenType", "OpenType", "RichText2", "NavTopbarPopoverLinkFonts", "getFonts", "IZmp66AdO_default", "NavTopbarPopoverLink1Fonts", "U_0Mb9OEL_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramermeH94TGhu", "withCSS", "meH94TGhu_default", "addPropertyControls", "ControlType", "addFonts", "NavTopbarPopoverLinkFonts", "getFonts", "U_0Mb9OEL_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerSfnTfP2yI", "withCSS", "SfnTfP2yI_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "serializationHash", "SVG", "RichText2", "css", "FramerWp2oDoQEC", "withCSS", "Wp2oDoQEC_default", "addFonts", "NavTopbarFramerLogoFonts", "getFonts", "Wp2oDoQEC_default", "LoginFetchFonts", "MGCpm4sSk_default", "MenuIconCopyFonts", "shDYZy8VP_default", "NavTopbarLinkFonts", "NXVyvwhYo_default", "NavTopbarPopoverFeaturesFonts", "Ch2T0RIxN_default", "MotionDivWithFX", "withFX", "motion", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "SmartComponentScopedContainer", "NavTopbarPopoverResourcesFonts", "meH94TGhu_default", "NavTopbarPopoverSupportFonts", "SfnTfP2yI_default", "NavTopbarPopoverEnterpriseFonts", "ihrENU0nX_default", "RichTextOpenType163eu6e", "withCodeBoundaryForOverrides", "RichText2", "OpenType", "RichTextOpenType1m3fmyd", "NavTopbarPopoverLinkFonts", "U_0Mb9OEL_default", "MotionDivWithCloseBrandMenuOnHover11nztc9", "withCloseBrandMenuOnHover", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transformTemplate1", "_", "t", "transition4", "animation", "animation1", "transition5", "animation2", "animation3", "animation4", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition6", "animation5", "transition7", "animation6", "animation7", "transition8", "animation8", "transition9", "animation9", "animation10", "animation11", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XKaY3MrGucbwpg0", "args", "XKaY3MrGu1l14t0c", "YBuDg1PEatxyyif", "overlay", "loadMore", "l48sOQa2H8btn58", "l48sOQa2Hcbwpg0", "l48sOQa2Htxyyif", "l48sOQa2Hx8rwhd", "l48sOQa2H1segq0", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref2", "isDisplayed3", "ref3", "ref4", "ref5", "ref6", "ref7", "isDisplayed4", "isDisplayed5", "isDisplayed6", "ref8", "ref9", "isDisplayed7", "ref10", "ref11", "router", "useRouter", "isDisplayed8", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "Link", "l", "AnimatePresence", "Floating", "overlay1", "overlay2", "overlay3", "overlay4", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "css", "FramerXsKn0WNdo", "withCSS", "XsKn0WNdo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
