{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/Gfj09Qvorp0iop1suunI/0K3zjsdQfwpGZAfOFBTg/Video.js", "ssg:https://framerusercontent.com/modules/n5Zn0MSuQ05iusSyDYas/j21P0VaHxOk0uv9cfcPo/g3aOcqdMW.js", "ssg:https://framerusercontent.com/modules/l50OvBOUrheKRtHfdpJ7/Q64l4lSUWRHdKmprOCBG/vaHm0ennC.js", "ssg:https://framerusercontent.com/modules/szMOUAN4Ha1mOolgWEOj/yXCJJHg80dyLLsDX0K6e/xHpsojoz9.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import React from\"react\";const useStore=createStore({playing:false});export function withBroadcastPlayState(Component){return props=>{const[_,setStore]=useStore();React.useEffect(()=>{setStore({playing:props.playing});},[props.playing]);return /*#__PURE__*/_jsx(Component,{...props});};}export function withSubscribePlayState(Component){return props=>{const[store]=useStore();const variant=store.playing?\"Pause\":undefined;return /*#__PURE__*/_jsx(Component,{...props,variant:variant});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withBroadcastPlayState\":{\"type\":\"reactHoc\",\"name\":\"withBroadcastPlayState\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withSubscribePlayState\":{\"type\":\"reactHoc\",\"name\":\"withSubscribePlayState\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx}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=[\"QZaKXc907\",\"niI8ypTQU\"];const serializationHash=\"framer-IkDRz\";const variantClassNames={niI8ypTQU:\"framer-v-4r9nqf\",QZaKXc907:\"framer-v-1ii0v5p\"};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 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.create(React.Fragment);const humanReadableVariantMap={Pause:\"niI8ypTQU\",Play:\"QZaKXc907\"};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:\"QZaKXc907\"};};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:\"QZaKXc907\",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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ii0v5p\",className,classNames),\"data-framer-name\":\"Play\",layoutDependency:layoutDependency,layoutId:\"QZaKXc907\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({niI8ypTQU:{\"data-framer-name\":\"Pause\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-whfnng\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"wfbvLTqJY\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"M 8 3.822 C 8 3.033 8.871 2.554 9.537 2.978 L 28.674 15.156 C 29.292 15.549 29.292 16.451 28.674 16.844 L 9.537 29.022 C 8.871 29.446 8 28.967 8 28.178 Z\" fill=\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path></svg>',svgContentId:11143433339,withExternalLayout:true,...addPropertyOverrides({niI8ypTQU:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32 32\"><path d=\"\" fill=\"rgba(0,170,255,0.5)\" stroke=\"#0AF\"></path><path d=\"M 5 5 C 5 3.895 5.895 3 7 3 L 13 3 C 14.105 3 15 3.895 15 5 L 15 27 C 15 28.105 14.105 29 13 29 L 7 29 C 5.895 29 5 28.105 5 27 Z\" fill=\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 17 5 C 17 3.895 17.895 3 19 3 L 25 3 C 26.105 3 27 3.895 27 5 L 27 27 C 27 28.105 26.105 29 25 29 L 19 29 C 17.895 29 17 28.105 17 27 Z\" fill=\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path></svg>',svgContentId:12673784205}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-IkDRz.framer-mvfujx, .framer-IkDRz .framer-mvfujx { display: block; }\",\".framer-IkDRz.framer-1ii0v5p { height: 32px; overflow: visible; position: relative; width: 32px; }\",\".framer-IkDRz .framer-whfnng { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"niI8ypTQU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerg3aOcqdMW=withCSS(Component,css,\"framer-IkDRz\");export default Framerg3aOcqdMW;Framerg3aOcqdMW.displayName=\"Play\";Framerg3aOcqdMW.defaultProps={height:32,width:32};addPropertyControls(Framerg3aOcqdMW,{variant:{options:[\"QZaKXc907\",\"niI8ypTQU\"],optionTitles:[\"Play\",\"Pause\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerg3aOcqdMW,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerg3aOcqdMW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"niI8ypTQU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"32\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./g3aOcqdMW.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"KiyfEwQun\",\"NCZ4tMscr\"];const serializationHash=\"framer-DFEaT\";const variantClassNames={KiyfEwQun:\"framer-v-u0iygm\",NCZ4tMscr:\"framer-v-16s282e\"};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={bounce:0,delay:0,duration:1,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.create(React.Fragment);const humanReadableVariantMap={Default:\"KiyfEwQun\",Wave:\"NCZ4tMscr\"};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:\"KiyfEwQun\"};};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:\"KiyfEwQun\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear138cof=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),300);});useOnVariantChange(baseVariant,{default:onAppear138cof});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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-u0iygm\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KiyfEwQun\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NCZ4tMscr:{\"data-framer-name\":\"Wave\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)))\"},children:\"\uD83D\uDC4B\"})}),className:\"framer-etau0a\",fonts:[\"FS;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"t_iIfNFhe\",style:{\"--extracted-r6o4lv\":\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",rotate:0},variants:{NCZ4tMscr:{rotate:40}},verticalAlignment:\"top\",withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DFEaT.framer-1ejwzo, .framer-DFEaT .framer-1ejwzo { display: block; }\",\".framer-DFEaT.framer-u0iygm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DFEaT .framer-etau0a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DFEaT.framer-u0iygm { gap: 0px; } .framer-DFEaT.framer-u0iygm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DFEaT.framer-u0iygm > :first-child { margin-left: 0px; } .framer-DFEaT.framer-u0iygm > :last-child { margin-right: 0px; } }\",\".framer-DFEaT.framer-v-16s282e.framer-u0iygm { height: 31px; width: 26px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 26\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NCZ4tMscr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervaHm0ennC=withCSS(Component,css,\"framer-DFEaT\");export default FramervaHm0ennC;FramervaHm0ennC.displayName=\"Wave\";FramervaHm0ennC.defaultProps={height:31,width:26};addPropertyControls(FramervaHm0ennC,{variant:{options:[\"KiyfEwQun\",\"NCZ4tMscr\"],optionTitles:[\"Default\",\"Wave\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervaHm0ennC,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervaHm0ennC\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NCZ4tMscr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"31\",\"framerIntrinsicWidth\":\"26\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vaHm0ennC.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withSubscribePlayState}from\"https://framerusercontent.com/modules/Gfj09Qvorp0iop1suunI/0K3zjsdQfwpGZAfOFBTg/Video.js\";import Play,*as PlayInfo from\"https://framerusercontent.com/modules/n5Zn0MSuQ05iusSyDYas/j21P0VaHxOk0uv9cfcPo/g3aOcqdMW.js\";import Wave from\"https://framerusercontent.com/modules/l50OvBOUrheKRtHfdpJ7/Q64l4lSUWRHdKmprOCBG/vaHm0ennC.js\";const PlayFonts=getFonts(Play);const PlayWithSubscribePlayStateWithMappedReactPropszzenyr=withMappedReactProps(withSubscribePlayState(Play),PlayInfo);const WaveFonts=getFonts(Wave);const enabledGestures={etPYdtoY3:{pressed:true},JqFk935bh:{pressed:true},khnFvDxiV:{pressed:true},lhfcukzbZ:{pressed:true},sbBY6jGVX:{pressed:true}};const cycleOrder=[\"khnFvDxiV\",\"LykHJUbvR\",\"okgkvZEDc\",\"c21K0eonU\",\"sbBY6jGVX\",\"lhfcukzbZ\",\"etPYdtoY3\",\"JqFk935bh\"];const serializationHash=\"framer-rz53t\";const variantClassNames={c21K0eonU:\"framer-v-sydio3\",etPYdtoY3:\"framer-v-1mt9enk\",JqFk935bh:\"framer-v-18bqfwa\",khnFvDxiV:\"framer-v-yjozjb\",lhfcukzbZ:\"framer-v-krphlb\",LykHJUbvR:\"framer-v-18haovf\",okgkvZEDc:\"framer-v-ofuep0\",sbBY6jGVX:\"framer-v-1ylnwnx\"};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:30,delay:0,mass:1,stiffness:400,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.create(React.Fragment);const humanReadableVariantMap={\"Case Study\":\"c21K0eonU\",Arrow:\"LykHJUbvR\",Default:\"khnFvDxiV\",Download:\"etPYdtoY3\",Play:\"sbBY6jGVX\",Read:\"okgkvZEDc\",Top:\"JqFk935bh\",Wave:\"lhfcukzbZ\"};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:\"khnFvDxiV\"};};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:\"khnFvDxiV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"okgkvZEDc\",\"c21K0eonU\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"etPYdtoY3-pressed\",\"JqFk935bh-pressed\"].includes(gestureVariant))return true;if([\"LykHJUbvR\",\"okgkvZEDc\",\"c21K0eonU\",\"etPYdtoY3\",\"JqFk935bh\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"sbBY6jGVX-pressed\")return true;if(baseVariant===\"sbBY6jGVX\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"lhfcukzbZ-pressed\")return true;if(baseVariant===\"lhfcukzbZ\")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-yjozjb\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"khnFvDxiV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-14fb1686-f510-4f2e-bc6a-d47b2dced0a4, rgb(9, 15, 21))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 12px 24px 0px rgba(0, 0, 0, 0.2)\",...style},variants:{JqFk935bh:{backgroundColor:\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"etPYdtoY3-pressed\":{\"data-framer-name\":undefined},\"JqFk935bh-pressed\":{\"data-framer-name\":undefined},\"khnFvDxiV-pressed\":{\"data-framer-name\":undefined},\"lhfcukzbZ-pressed\":{\"data-framer-name\":undefined},\"sbBY6jGVX-pressed\":{\"data-framer-name\":undefined},c21K0eonU:{\"data-framer-name\":\"Case Study\"},etPYdtoY3:{\"data-framer-name\":\"Download\"},JqFk935bh:{\"data-framer-name\":\"Top\"},lhfcukzbZ:{\"data-framer-name\":\"Wave\"},LykHJUbvR:{\"data-framer-name\":\"Arrow\"},okgkvZEDc:{\"data-framer-name\":\"Read\"},sbBY6jGVX:{\"data-framer-name\":\"Play\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01QUyBTYW5zIFBpeGVs\",\"--framer-font-family\":'\"MPS Sans Pixel\", \"MPS Sans Pixel Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:\"Update\"})}),className:\"framer-1x0spt\",fonts:[\"CUSTOM;MPS Sans Pixel\"],layoutDependency:layoutDependency,layoutId:\"vAkUpQVQ_\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{c21K0eonU:{\"--extracted-r6o4lv\":\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255))\",opacity:1},okgkvZEDc:{\"--extracted-r6o4lv\":\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c21K0eonU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)))\"},children:\"Case Study\"})}),fonts:[\"FS;Poppins-regular\"]},okgkvZEDc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)))\"},children:\"Read\"})}),fonts:[\"FS;Poppins-regular\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vxwdjx\",\"data-framer-name\":\"Arrow\",layoutDependency:layoutDependency,layoutId:\"Ui7jZVOcg\",style:{rotate:0},variants:{etPYdtoY3:{rotate:90},JqFk935bh:{rotate:-90}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kwpawm\",\"data-framer-name\":\"Arrow\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"S49ZDMKoN\",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 9.75 L 16 9.75\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 11 4 L 17 9.75 L 11 16\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-fd961229-c59a-4185-a8cc-9093d91d7af4, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10019878892,withExternalLayout:true,...addPropertyOverrides({JqFk935bh:{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 9.75 L 16 9.75\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-14fb1686-f510-4f2e-bc6a-d47b2dced0a4, rgb(9, 15, 21)) /* {&quot;name&quot;:&quot;Blackhole&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 11 4 L 17 9.75 L 11 16\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-14fb1686-f510-4f2e-bc6a-d47b2dced0a4, rgb(9, 15, 21)) /* {&quot;name&quot;:&quot;Blackhole&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12822849477}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"sbBY6jGVX-pressed\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||56)-20-32)/2)},sbBY6jGVX:{height:32,width:\"32px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)-20-32)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19a0ph1-container\",layoutDependency:layoutDependency,layoutId:\"JgMpA5brr-container\",children:/*#__PURE__*/_jsx(PlayWithSubscribePlayStateWithMappedReactPropszzenyr,{height:\"100%\",id:\"JgMpA5brr\",layoutId:\"JgMpA5brr\",style:{height:\"100%\",width:\"100%\"},variant:\"QZaKXc907\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({\"lhfcukzbZ-pressed\":{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||56)-20-31)/2)},lhfcukzbZ:{height:31,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(10+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||64)-20-31)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qjyqj9-container\",layoutDependency:layoutDependency,layoutId:\"X9LEVLjzy-container\",children:/*#__PURE__*/_jsx(Wave,{height:\"100%\",id:\"X9LEVLjzy\",layoutId:\"X9LEVLjzy\",variant:\"KiyfEwQun\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rz53t.framer-bt5cju, .framer-rz53t .framer-bt5cju { display: block; }\",\".framer-rz53t.framer-yjozjb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-rz53t .framer-1x0spt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-rz53t .framer-vxwdjx { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-rz53t .framer-kwpawm { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-rz53t .framer-19a0ph1-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-rz53t .framer-qjyqj9-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-yjozjb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-rz53t.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-yjozjb > :last-child { margin-right: 0px; } }\",\".framer-rz53t.framer-v-18haovf.framer-yjozjb { cursor: unset; gap: 10px; height: min-content; padding: 15px; width: min-content; }\",\".framer-rz53t.framer-v-18haovf .framer-vxwdjx { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-18haovf.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-18haovf.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-18haovf.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-18haovf.framer-yjozjb > :last-child { margin-right: 0px; } }\",\".framer-rz53t.framer-v-ofuep0.framer-yjozjb, .framer-rz53t.framer-v-sydio3.framer-yjozjb { cursor: unset; gap: 10px; height: min-content; padding: 10px 15px 10px 15px; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-ofuep0.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-ofuep0.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-ofuep0.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-ofuep0.framer-yjozjb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-sydio3.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-sydio3.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-sydio3.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-sydio3.framer-yjozjb > :last-child { margin-right: 0px; } }\",\".framer-rz53t.framer-v-1ylnwnx.framer-yjozjb, .framer-rz53t.framer-v-krphlb.framer-yjozjb, .framer-rz53t.framer-v-1mt9enk.framer-yjozjb, .framer-rz53t.framer-v-18bqfwa.framer-yjozjb { aspect-ratio: 1 / 1; gap: 10px; height: var(--framer-aspect-ratio-supported, 64px); padding: 10px 15px 10px 15px; width: 64px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-1ylnwnx.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-1ylnwnx.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-1ylnwnx.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-1ylnwnx.framer-yjozjb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-krphlb.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-krphlb.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-krphlb.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-krphlb.framer-yjozjb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-1mt9enk.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-1mt9enk.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-1mt9enk.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-1mt9enk.framer-yjozjb > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rz53t.framer-v-18bqfwa.framer-yjozjb { gap: 0px; } .framer-rz53t.framer-v-18bqfwa.framer-yjozjb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rz53t.framer-v-18bqfwa.framer-yjozjb > :first-child { margin-left: 0px; } .framer-rz53t.framer-v-18bqfwa.framer-yjozjb > :last-child { margin-right: 0px; } }\",\".framer-rz53t.framer-v-yjozjb.pressed.framer-yjozjb { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 20px); width: 20px; }\",\".framer-rz53t.framer-v-1ylnwnx.pressed.framer-yjozjb, .framer-rz53t.framer-v-krphlb.pressed.framer-yjozjb, .framer-rz53t.framer-v-1mt9enk.pressed.framer-yjozjb, .framer-rz53t.framer-v-18bqfwa.pressed.framer-yjozjb { height: var(--framer-aspect-ratio-supported, 56px); width: 56px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LykHJUbvR\":{\"layout\":[\"auto\",\"auto\"]},\"okgkvZEDc\":{\"layout\":[\"auto\",\"auto\"]},\"c21K0eonU\":{\"layout\":[\"auto\",\"auto\"]},\"sbBY6jGVX\":{\"layout\":[\"fixed\",\"fixed\"]},\"lhfcukzbZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"etPYdtoY3\":{\"layout\":[\"fixed\",\"fixed\"]},\"JqFk935bh\":{\"layout\":[\"fixed\",\"fixed\"]},\"he71OFQ77\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZDcqwE_dN\":{\"layout\":[\"fixed\",\"fixed\"]},\"nXoRzbaSV\":{\"layout\":[\"fixed\",\"fixed\"]},\"wXHX18FXf\":{\"layout\":[\"fixed\",\"fixed\"]},\"COj6EcHDh\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxHpsojoz9=withCSS(Component,css,\"framer-rz53t\");export default FramerxHpsojoz9;FramerxHpsojoz9.displayName=\"Cursor Round\";FramerxHpsojoz9.defaultProps={height:24,width:24};addPropertyControls(FramerxHpsojoz9,{variant:{options:[\"khnFvDxiV\",\"LykHJUbvR\",\"okgkvZEDc\",\"c21K0eonU\",\"sbBY6jGVX\",\"lhfcukzbZ\",\"etPYdtoY3\",\"JqFk935bh\"],optionTitles:[\"Default\",\"Arrow\",\"Read\",\"Case Study\",\"Play\",\"Wave\",\"Download\",\"Top\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerxHpsojoz9,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"}]},...PlayFonts,...WaveFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxHpsojoz9\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LykHJUbvR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"okgkvZEDc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"c21K0eonU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sbBY6jGVX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lhfcukzbZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"etPYdtoY3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JqFk935bh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"he71OFQ77\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZDcqwE_dN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nXoRzbaSV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wXHX18FXf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"COj6EcHDh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xHpsojoz9.map"],
  "mappings": "qVAAqF,SAASA,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAASP,CAAU,EAIzC,OAFAQ,GAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,EAAe,IAAI,IAAMA,EAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCf2F,IAAMM,GAASC,GAAY,CAAC,QAAQ,EAAK,CAAC,EAAmO,SAASC,GAAuBC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,CAAK,EAAEC,GAAS,EAAQC,EAAQF,EAAM,QAAQ,QAAQ,OAAU,OAAoBG,EAAKL,EAAU,CAAC,GAAGC,EAAM,QAAQG,CAAO,CAAC,CAAE,CAAE,CCAvlB,IAAAE,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,YAAAC,IACwQ,IAAMC,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,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,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,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,GAAGkC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA5C,CAAQ,EAAE6C,EAAgB,CAAC,WAAAlD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQiD,EAAiBpB,GAAuBH,EAAMvB,CAAQ,EAAQ+C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGnB,GAA4Cc,EAAgB,SAAsBnC,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKT,GAAW,CAAC,MAAMF,GAAY,SAAsBW,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUe,EAAG3D,GAAkB,GAAGuD,EAAsB,iBAAiBjB,EAAUI,CAAU,EAAE,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,GAAGd,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAsB3B,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK0C,EAAI,CAAC,UAAU,gBAAgB,OAAO,WAAW,iBAAiBV,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,ygBAAygB,aAAa,YAAY,mBAAmB,GAAK,GAAGhD,GAAqB,CAAC,UAAU,CAAC,IAAI,ysBAAysB,aAAa,WAAW,CAAC,EAAEuC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,gFAAgF,qGAAqG,kLAAkL,EAQj4JC,EAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,EAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/Z,IAAMM,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,sBAAwB,KAAK,oCAAsC,sHAA4I,yBAA2B,OAAO,qBAAuB,KAAK,sBAAwB,IAAI,yBAA2B,OAAO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECT5R,IAAMC,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,OAAO,EAAE,MAAM,EAAE,SAAS,EAAE,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,EAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAO,CAAC,sBAAA8C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAeH,EAAsB,SAASI,IAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAWQ,EAAiB,EAAE,GAAG,CAAE,CAAC,EAAEC,GAAmBhB,EAAY,CAAC,QAAQa,CAAc,CAAC,EAAE,IAAMI,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAG1B,GAA4CqB,EAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUsB,EAAGjE,GAAkB,GAAG6D,EAAsB,gBAAgBxB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6ByB,EAAK,MAAM,CAAC,GAAGrB,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAsB3B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,WAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,gFAAgF,uQAAuQ,gHAAgH,2WAA2W,6EAA6E,EAQ17JC,EAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRyC,IAAMM,GAAUC,EAASC,CAAI,EAAQC,GAAqDC,GAAqBC,GAAuBH,CAAI,EAAEI,EAAQ,EAAQC,GAAUN,EAASO,EAAI,EAAQC,GAAgB,CAAC,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,EAAE,UAAU,CAAC,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,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,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,MAAM,YAAY,QAAQ,YAAY,SAAS,YAAY,KAAK,YAAY,KAAK,YAAY,IAAI,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,EAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAQ8C,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,EAAa,IAAQ,IAAC,oBAAoB,mBAAmB,EAAE,SAAST,CAAc,GAAiB,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASJ,CAAW,GAAmCc,EAAa,IAAQV,IAAiB,qBAAmCJ,IAAc,YAA6Ce,EAAa,IAAQX,IAAiB,qBAAmCJ,IAAc,YAA6CgB,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB3C,EAAK4C,EAAY,CAAC,GAAGvB,GAA4CkB,EAAgB,SAAsBvC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBuD,GAAM3C,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUoB,EAAG/D,GAAkB,GAAG0D,GAAsB,gBAAgBrB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,gBAAgB,oEAAoE,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,uCAAuC,GAAGd,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,GAAGlC,EAAqB,CAAC,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBnC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,6DAA6D,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,uBAAuB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,YAAY,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,wEAAwE,QAAQ,CAAC,EAAE,UAAU,CAAC,qBAAqB,wEAAwE,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,EAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBhC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,OAAO,WAAW,iBAAiBhB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4lBAA4lB,aAAa,YAAY,mBAAmB,GAAK,GAAG/C,EAAqB,CAAC,UAAU,CAAC,IAAI,4lBAA4lB,aAAa,WAAW,CAAC,EAAEsC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEU,EAAa,GAAgBrC,EAAKiD,EAA0B,CAAC,GAAGhE,EAAqB,CAAC,oBAAoB,CAAC,GAAgEyD,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,EAAE,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEA,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,EAAE,CAAC,EAAEnB,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKzB,GAAqD,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+D,EAAa,GAAgBtC,EAAKiD,EAA0B,CAAC,GAAGhE,EAAqB,CAAC,oBAAoB,CAAC,GAAgEyD,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,EAAE,EAAE,UAAU,CAAC,OAAO,GAAG,GAAgEA,GAAkB,GAAI,IAAI,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,EAAE,CAAC,EAAEnB,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKpB,GAAK,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,CAAE,CAAC,EAAQsE,GAAI,CAAC,kFAAkF,gFAAgF,oUAAoU,gHAAgH,iHAAiH,mLAAmL,yGAAyG,wGAAwG,yWAAyW,qIAAqI,8DAA8D,+aAA+a,gMAAgM,2aAA2a,2aAA2a,2TAA2T,+aAA+a,2aAA2a,+aAA+a,+aAA+a,gJAAgJ,4RAA4R,EAQxigBC,EAAgBC,EAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,eAAeA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,OAAO,aAAa,OAAO,OAAO,WAAW,KAAK,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG/E,GAAU,GAAGO,EAAS,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "withSubscribePlayState", "Component", "props", "store", "useStore", "variant", "p", "g3aOcqdMW_exports", "__export", "__FramerMetadata__", "g3aOcqdMW_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "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", "cx", "SVG", "css", "Framerg3aOcqdMW", "withCSS", "g3aOcqdMW_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear138cof", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramervaHm0ennC", "withCSS", "vaHm0ennC_default", "addPropertyControls", "ControlType", "addFonts", "PlayFonts", "getFonts", "g3aOcqdMW_default", "PlayWithSubscribePlayStateWithMappedReactPropszzenyr", "withMappedReactProps", "withSubscribePlayState", "g3aOcqdMW_exports", "WaveFonts", "vaHm0ennC_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "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", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "ComponentViewportProvider", "css", "FramerxHpsojoz9", "withCSS", "xHpsojoz9_default", "addPropertyControls", "ControlType", "addFonts"]
}
