{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/lcOc36ewEfmbZ2zkboYO/JmCstpUJIHNfjDoo3vSD/KAc5nUCF9.js", "ssg:https://framerusercontent.com/modules/jdfBVEUDmBz67iK6AEUO/U0OdIOBRrO6zq40PpeEr/ZGyrH39SW.js", "ssg:https://framerusercontent.com/modules/9UYwShd31Kk4SkhTE1hq/5FwfHuXL3t8K0f9d06xx/Zk8clKOE8.js", "ssg:https://framerusercontent.com/modules/2RXgo3cYSn3J8FPykjyJ/sa5dvqkbeqfVI6hf9S9W/hMLTsqxkR.js", "ssg:https://framerusercontent.com/modules/f5yNKsOMzSyUZJszAtTp/5pzQ7t6nu0l4djK7zZ7p/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-Cuxh7\";const variantClassNames={CUQGgfCHC:\"framer-v-ewuole\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({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({defaultVariant:\"CUQGgfCHC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ewuole\",className,classNames),\"data-framer-name\":\"Ticker (S)\",layoutDependency:layoutDependency,layoutId:\"CUQGgfCHC\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-165epw7-container\",layoutDependency:layoutDependency,layoutId:\"eHkTHzsK9-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:24,height:\"100%\",hoverFactor:.5,id:\"eHkTHzsK9\",layoutId:\"eHkTHzsK9\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oo395l\",layoutDependency:layoutDependency,layoutId:\"XDLWyElxE\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A boat in the sea\",fit:\"fill\",intrinsicHeight:2544,intrinsicWidth:1920,pixelHeight:2544,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"389.4068px\",src:\"https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp\",srcSet:\"https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp?scale-down-to=1024 772w,https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp?scale-down-to=2048 1545w,https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp 1920w\"},className:\"framer-1xoankm\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ecNLv7KZL\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w3ddpo\",layoutDependency:layoutDependency,layoutId:\"WMNShEip5\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Skating on one leg\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1920,pixelHeight:5152,pixelWidth:3888,sizes:\"389.4068px\",src:\"https://framerusercontent.com/images/kXsKBBYd0o2BKxzd3rElwhPTII.png\",srcSet:\"https://framerusercontent.com/images/kXsKBBYd0o2BKxzd3rElwhPTII.png 500w\"},className:\"framer-1p2v141\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ea_j5yB9N\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16zxxww\",layoutDependency:layoutDependency,layoutId:\"immP62gXE\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Riding a bicycle with V sign\",fit:\"fill\",intrinsicHeight:1180,intrinsicWidth:1e3,pixelHeight:1180,pixelWidth:1e3,sizes:\"390px\",src:\"https://framerusercontent.com/images/N7WcEJoiBijBVBUIS7jkfgbiBY.webp\",srcSet:\"https://framerusercontent.com/images/N7WcEJoiBijBVBUIS7jkfgbiBY.webp?scale-down-to=1024 867w,https://framerusercontent.com/images/N7WcEJoiBijBVBUIS7jkfgbiBY.webp 1000w\"},className:\"framer-1av95ba\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ApXWUmurV\"})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5152,intrinsicWidth:3888,pixelHeight:5152,pixelWidth:3888,sizes:\"389.4068px\",src:\"https://framerusercontent.com/images/lmqi6Y5xJhb5UYDFUDvhkjC71c.png\",srcSet:\"https://framerusercontent.com/images/lmqi6Y5xJhb5UYDFUDvhkjC71c.png?scale-down-to=1024 682w,https://framerusercontent.com/images/lmqi6Y5xJhb5UYDFUDvhkjC71c.png 987w\"},className:\"framer-c9butm\",\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"xRtAASbRq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gf2sv0-container\",layoutDependency:layoutDependency,layoutId:\"kLvd0SpCm-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kLvd0SpCm\",isMixedBorderRadius:false,layoutId:\"kLvd0SpCm\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/G1jrcf1H9BcugKtvd3KAUYLRZ0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/modules/assets/sdw2MiwfX8kE86eVM9cS85drJqo~jByeSC37unBqQHViiwWbauXo7_4XbguqlMgSaBNqdjs.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Cuxh7.framer-hvld7x, .framer-Cuxh7 .framer-hvld7x { display: block; }\",\".framer-Cuxh7.framer-ewuole { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 470px; }\",\".framer-Cuxh7 .framer-165epw7-container { flex: none; height: 263px; position: relative; width: 100%; }\",\".framer-Cuxh7 .framer-1oo395l { align-content: center; align-items: center; aspect-ratio: 1.4828897338403042 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 263px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-Cuxh7 .framer-1xoankm, .framer-Cuxh7 .framer-1p2v141, .framer-Cuxh7 .framer-1av95ba { aspect-ratio: 1.488833746898263 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 134px); overflow: hidden; position: relative; width: 1px; }\",\".framer-Cuxh7 .framer-1w3ddpo { align-content: center; align-items: center; aspect-ratio: 1.4828897338403042 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 263px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-Cuxh7 .framer-16zxxww { align-content: center; align-items: center; aspect-ratio: 1.4851485148514851 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 263px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-Cuxh7 .framer-c9butm { align-content: center; align-items: center; aspect-ratio: 1.4828897338403042 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 263px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-Cuxh7 .framer-gf2sv0-container { aspect-ratio: 1.488833746898263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 134px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Cuxh7.framer-ewuole, .framer-Cuxh7 .framer-1oo395l, .framer-Cuxh7 .framer-1w3ddpo, .framer-Cuxh7 .framer-16zxxww, .framer-Cuxh7 .framer-c9butm { gap: 0px; } .framer-Cuxh7.framer-ewuole > *, .framer-Cuxh7 .framer-c9butm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Cuxh7.framer-ewuole > :first-child, .framer-Cuxh7 .framer-c9butm > :first-child { margin-top: 0px; } .framer-Cuxh7.framer-ewuole > :last-child, .framer-Cuxh7 .framer-c9butm > :last-child { margin-bottom: 0px; } .framer-Cuxh7 .framer-1oo395l > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Cuxh7 .framer-1oo395l > :first-child, .framer-Cuxh7 .framer-1w3ddpo > :first-child, .framer-Cuxh7 .framer-16zxxww > :first-child { margin-left: 0px; } .framer-Cuxh7 .framer-1oo395l > :last-child, .framer-Cuxh7 .framer-1w3ddpo > :last-child, .framer-Cuxh7 .framer-16zxxww > :last-child { margin-right: 0px; } .framer-Cuxh7 .framer-1w3ddpo > *, .framer-Cuxh7 .framer-16zxxww > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 263\n * @framerIntrinsicWidth 470\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKAc5nUCF9=withCSS(Component,css,\"framer-Cuxh7\");export default FramerKAc5nUCF9;FramerKAc5nUCF9.displayName=\"Ticker/S\";FramerKAc5nUCF9.defaultProps={height:263,width:470};addFonts(FramerKAc5nUCF9,[{explicitInter:true,fonts:[]},...VideoFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKAc5nUCF9\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"263\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"470\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KAc5nUCF9.map", "// Generated by Framer (6d82f59)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-ps5xJ\";const variantClassNames={zmwXNBHls:\"framer-v-13oyzaj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({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({defaultVariant:\"zmwXNBHls\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-13oyzaj\",className,classNames),\"data-framer-name\":\"Ticker (L)\",layoutDependency:layoutDependency,layoutId:\"zmwXNBHls\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tap99z-container\",layoutDependency:layoutDependency,layoutId:\"hB1E0E1rI-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",hoverFactor:.5,id:\"hB1E0E1rI\",layoutId:\"hB1E0E1rI\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nz8m08\",layoutDependency:layoutDependency,layoutId:\"N5co1893L\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"A boat in the sea\",fit:\"fill\",intrinsicHeight:2544,intrinsicWidth:1920,pixelHeight:2544,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"600px\",src:\"https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp\",srcSet:\"https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp?scale-down-to=1024 772w,https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp?scale-down-to=2048 1545w,https://framerusercontent.com/images/wjdibh0gfuM8RneTAPB8BDzLHM.webp 1920w\"},className:\"framer-11sr5i0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"hIuHuAlN4\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w3fqxo\",layoutDependency:layoutDependency,layoutId:\"Y8Q1A_DdM\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Skating on one leg\",fit:\"fill\",intrinsicHeight:980,intrinsicWidth:1920,pixelHeight:5152,pixelWidth:3888,sizes:\"600px\",src:\"https://framerusercontent.com/images/kXsKBBYd0o2BKxzd3rElwhPTII.png\",srcSet:\"https://framerusercontent.com/images/kXsKBBYd0o2BKxzd3rElwhPTII.png 500w\"},className:\"framer-cxur9b\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tJOhypxXM\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uzg865\",layoutDependency:layoutDependency,layoutId:\"DML5Luwhh\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Riding a bicycle with V sign\",fit:\"fill\",intrinsicHeight:1180,intrinsicWidth:1e3,pixelHeight:1180,pixelWidth:1e3,sizes:\"599.664px\",src:\"https://framerusercontent.com/images/N7WcEJoiBijBVBUIS7jkfgbiBY.webp\",srcSet:\"https://framerusercontent.com/images/N7WcEJoiBijBVBUIS7jkfgbiBY.webp?scale-down-to=1024 867w,https://framerusercontent.com/images/N7WcEJoiBijBVBUIS7jkfgbiBY.webp 1000w\"},className:\"framer-st8q6\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"UDHTMNZSK\"})}),/*#__PURE__*/_jsx(motion.div,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5152,intrinsicWidth:3888,pixelHeight:5152,pixelWidth:3888,sizes:\"600px\",src:\"https://framerusercontent.com/images/lmqi6Y5xJhb5UYDFUDvhkjC71c.png\",srcSet:\"https://framerusercontent.com/images/lmqi6Y5xJhb5UYDFUDvhkjC71c.png?scale-down-to=1024 682w,https://framerusercontent.com/images/lmqi6Y5xJhb5UYDFUDvhkjC71c.png 987w\"},className:\"framer-kk0anc\",\"data-framer-name\":\"Video\",layoutDependency:layoutDependency,layoutId:\"APjVwdeU3\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jv4kor-container\",layoutDependency:layoutDependency,layoutId:\"JOgAzMeES-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"JOgAzMeES\",isMixedBorderRadius:false,layoutId:\"JOgAzMeES\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/G1jrcf1H9BcugKtvd3KAUYLRZ0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/modules/assets/sdw2MiwfX8kE86eVM9cS85drJqo~jByeSC37unBqQHViiwWbauXo7_4XbguqlMgSaBNqdjs.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ps5xJ.framer-yy3xuv, .framer-ps5xJ .framer-yy3xuv { display: block; }\",\".framer-ps5xJ.framer-13oyzaj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1500px; }\",\".framer-ps5xJ .framer-1tap99z-container { flex: none; height: 405px; position: relative; width: 100%; }\",\".framer-ps5xJ .framer-1nz8m08 { align-content: center; align-items: center; aspect-ratio: 1.488833746898263 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 403px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-ps5xJ .framer-11sr5i0, .framer-ps5xJ .framer-cxur9b, .framer-ps5xJ .framer-st8q6 { aspect-ratio: 1.488833746898263 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 134px); overflow: hidden; position: relative; width: 1px; }\",\".framer-ps5xJ .framer-1w3fqxo { align-content: center; align-items: center; aspect-ratio: 1.488833746898263 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 403px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-ps5xJ .framer-1uzg865 { align-content: center; align-items: center; aspect-ratio: 1.488 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 403px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-ps5xJ .framer-kk0anc { align-content: center; align-items: center; aspect-ratio: 1.488 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 403px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 600px; }\",\".framer-ps5xJ .framer-1jv4kor-container { aspect-ratio: 1.488833746898263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 134px); position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ps5xJ.framer-13oyzaj, .framer-ps5xJ .framer-1nz8m08, .framer-ps5xJ .framer-1w3fqxo, .framer-ps5xJ .framer-1uzg865, .framer-ps5xJ .framer-kk0anc { gap: 0px; } .framer-ps5xJ.framer-13oyzaj > *, .framer-ps5xJ .framer-kk0anc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ps5xJ.framer-13oyzaj > :first-child, .framer-ps5xJ .framer-kk0anc > :first-child { margin-top: 0px; } .framer-ps5xJ.framer-13oyzaj > :last-child, .framer-ps5xJ .framer-kk0anc > :last-child { margin-bottom: 0px; } .framer-ps5xJ .framer-1nz8m08 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-ps5xJ .framer-1nz8m08 > :first-child, .framer-ps5xJ .framer-1w3fqxo > :first-child, .framer-ps5xJ .framer-1uzg865 > :first-child { margin-left: 0px; } .framer-ps5xJ .framer-1nz8m08 > :last-child, .framer-ps5xJ .framer-1w3fqxo > :last-child, .framer-ps5xJ .framer-1uzg865 > :last-child { margin-right: 0px; } .framer-ps5xJ .framer-1w3fqxo > *, .framer-ps5xJ .framer-1uzg865 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 405\n * @framerIntrinsicWidth 1500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZGyrH39SW=withCSS(Component,css,\"framer-ps5xJ\");export default FramerZGyrH39SW;FramerZGyrH39SW.displayName=\"Ticker/L\";FramerZGyrH39SW.defaultProps={height:405,width:1500};addFonts(FramerZGyrH39SW,[{explicitInter:true,fonts:[]},...VideoFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZGyrH39SW\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"405\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1500\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZGyrH39SW.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/udYdtGhaUtRW07pWvPns/PqNWzFdzDQXIsiZ3xLiw/Y_wgLR1zP.js\";const cycleOrder=[\"R5NxDignw\"];const serializationHash=\"framer-GvIGN\";const variantClassNames={R5NxDignw:\"framer-v-1yio0tz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({companyName,height,id,position,width,workPeriod,...props})=>{return{...props,bcsoHLm3R:workPeriod??props.bcsoHLm3R??\"2022 \u2013 Now\",KyUXwk1NH:position??props.KyUXwk1NH??\"Design Lead\",qutczNra7:companyName??props.qutczNra7??\"Airbnb\"};};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,qutczNra7,KyUXwk1NH,bcsoHLm3R,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"R5NxDignw\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yio0tz\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"R5NxDignw\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rfeuei\",layoutDependency:layoutDependency,layoutId:\"DAOkRnjEh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ojhyqw\",\"data-styles-preset\":\"Y_wgLR1zP\",children:\"Airbnb\"})}),className:\"framer-1ja1pfw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"McAF97vXz\",text:qutczNra7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ojhyqw\",\"data-styles-preset\":\"Y_wgLR1zP\",children:\"Design Lead\"})}),className:\"framer-jbtn3s\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YZY9PmNUx\",text:KyUXwk1NH,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ojhyqw\",\"data-styles-preset\":\"Y_wgLR1zP\",style:{\"--framer-text-alignment\":\"right\"},children:\"2022 \u2013 Now\"})}),className:\"framer-ggyh83\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XQ5HJkyvb\",text:bcsoHLm3R,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GvIGN.framer-1u6eeaq, .framer-GvIGN .framer-1u6eeaq { display: block; }\",\".framer-GvIGN.framer-1yio0tz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 795px; }\",\".framer-GvIGN .framer-1rfeuei { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-GvIGN .framer-1ja1pfw, .framer-GvIGN .framer-ggyh83 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 25%; word-break: break-word; word-wrap: break-word; }\",\".framer-GvIGN .framer-jbtn3s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 40%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GvIGN.framer-1yio0tz { gap: 0px; } .framer-GvIGN.framer-1yio0tz > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-GvIGN.framer-1yio0tz > :first-child { margin-top: 0px; } .framer-GvIGN.framer-1yio0tz > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 795\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qutczNra7\":\"companyName\",\"KyUXwk1NH\":\"position\",\"bcsoHLm3R\":\"workPeriod\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZk8clKOE8=withCSS(Component,css,\"framer-GvIGN\");export default FramerZk8clKOE8;FramerZk8clKOE8.displayName=\"Experience/Item\";FramerZk8clKOE8.defaultProps={height:33,width:795};addPropertyControls(FramerZk8clKOE8,{qutczNra7:{defaultValue:\"Airbnb\",displayTextArea:false,title:\"Company Name\",type:ControlType.String},KyUXwk1NH:{defaultValue:\"Design Lead\",displayTextArea:false,title:\"Position\",type:ControlType.String},bcsoHLm3R:{defaultValue:\"2022 \u2013 Now\",displayTextArea:false,title:\"Work Period\",type:ControlType.String}});addFonts(FramerZk8clKOE8,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZk8clKOE8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"33\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"795\",\"framerVariables\":\"{\\\"qutczNra7\\\":\\\"companyName\\\",\\\"KyUXwk1NH\\\":\\\"position\\\",\\\"bcsoHLm3R\\\":\\\"workPeriod\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (47ebf4a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;General Sans-bold\",\"FS;General Sans-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"General Sans\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KWXO5X3YW4X7OLUMPO4X24HQJGJU7E2Q/VOWUQZS3YLP66ZHPTXAFSH6YACY4WJHT/NIQ54PVBBIWVK3PFSOIOUJSXIJ5WTNDP.woff2\",weight:\"700\"},{family:\"General Sans\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/IZAMKIKJNFHYAA4XTXOGUSQUJWNXQHPE/2S5HU7TKNAV6MHTRNU2NPZD7U4OT6VKE/HCZ5OQRTYQOAVSHRS6UOFWUZ5CGI6JRO.woff2\",weight:\"700\"}]}];export const css=['.framer-n7Nz2 .framer-styles-preset-p4del:not(.rich-text-wrapper), .framer-n7Nz2 .framer-styles-preset-p4del.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss03\\' on, \\'ss04\\' on; --framer-font-size: 160px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -8px; --framer-line-height: 1.12em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9de46952-95e8-4761-8aa9-f667c662063c, #eee8cc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1025px) { .framer-n7Nz2 .framer-styles-preset-p4del:not(.rich-text-wrapper), .framer-n7Nz2 .framer-styles-preset-p4del.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss03\\' on, \\'ss04\\' on; --framer-font-size: 110px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -5px; --framer-line-height: 1.12em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9de46952-95e8-4761-8aa9-f667c662063c, #eee8cc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1024px) and (min-width: 700px) { .framer-n7Nz2 .framer-styles-preset-p4del:not(.rich-text-wrapper), .framer-n7Nz2 .framer-styles-preset-p4del.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss03\\' on, \\'ss04\\' on; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -4px; --framer-line-height: 1.12em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9de46952-95e8-4761-8aa9-f667c662063c, #eee8cc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 699px) and (min-width: 0px) { .framer-n7Nz2 .framer-styles-preset-p4del:not(.rich-text-wrapper), .framer-n7Nz2 .framer-styles-preset-p4del.rich-text-wrapper h1 { --framer-font-family: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-family-italic: \"General Sans\", \"General Sans Placeholder\", sans-serif; --framer-font-open-type-features: \\'ss03\\' on, \\'ss04\\' on; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-italic: 700; --framer-letter-spacing: -2px; --framer-line-height: 1.12em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-9de46952-95e8-4761-8aa9-f667c662063c, #eee8cc); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-n7Nz2\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useDynamicRefs,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/TXhR1VriQwDbYQl0Jpzg/SmoothScroll_Prod.js\";import ServicesItem from\"#framer/local/canvasComponent/CPLwfz2u4/CPLwfz2u4.js\";import OtherCursor from\"#framer/local/canvasComponent/ep1UioeL9/ep1UioeL9.js\";import OtherNavbar from\"#framer/local/canvasComponent/HL_EQSrls/HL_EQSrls.js\";import TickerS from\"#framer/local/canvasComponent/KAc5nUCF9/KAc5nUCF9.js\";import OtherFooter from\"#framer/local/canvasComponent/MacMGWWSq/MacMGWWSq.js\";import OtherProjectItem from\"#framer/local/canvasComponent/Njn1NqLrB/Njn1NqLrB.js\";import TickerL from\"#framer/local/canvasComponent/ZGyrH39SW/ZGyrH39SW.js\";import ExperienceItem from\"#framer/local/canvasComponent/Zk8clKOE8/Zk8clKOE8.js\";import Work from\"#framer/local/collection/Zkvdlupon/Zkvdlupon.js\";import*as sharedStyle6 from\"#framer/local/css/DpzRqwcmz/DpzRqwcmz.js\";import*as sharedStyle2 from\"#framer/local/css/hMLTsqxkR/hMLTsqxkR.js\";import*as sharedStyle1 from\"#framer/local/css/lnBkNhncs/lnBkNhncs.js\";import*as sharedStyle4 from\"#framer/local/css/p9xRym43U/p9xRym43U.js\";import*as sharedStyle3 from\"#framer/local/css/VAtxt7p48/VAtxt7p48.js\";import*as sharedStyle5 from\"#framer/local/css/WYtyUgnNE/WYtyUgnNE.js\";import*as sharedStyle from\"#framer/local/css/yXLV8fmHX/yXLV8fmHX.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const OtherNavbarFonts=getFonts(OtherNavbar);const ContainerWithFX=withFX(Container);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const OtherProjectItemFonts=getFonts(OtherProjectItem);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const ExperienceItemFonts=getFonts(ExperienceItem);const ServicesItemFonts=getFonts(ServicesItem);const TickerLFonts=getFonts(TickerL);const TickerSFonts=getFonts(TickerS);const OtherFooterFonts=getFonts(OtherFooter);const SmoothScrollFonts=getFonts(SmoothScroll);const OtherCursorFonts=getFonts(OtherCursor);const breakpoints={KgFr3cV7Q:\"(min-width: 1025px) and (max-width: 1439px)\",UM7KdNSMp:\"(min-width: 700px) and (max-width: 1024px)\",wABAVcF8G:\"(max-width: 699px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-aEMRu\";const variantClassNames={KgFr3cV7Q:\"framer-v-1uhliic\",UM7KdNSMp:\"framer-v-i6z8jl\",wABAVcF8G:\"framer-v-8a0jop\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:.8,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-80};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-70};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-55};const transition2={damping:80,delay:2.8,mass:9,stiffness:500,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition3={damping:80,delay:2.2,mass:9,stiffness:500,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const animation7={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition4={damping:80,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation7,startDelay:3.5,tokenization:\"line\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation7,startDelay:2.3,tokenization:\"line\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const transition5={damping:80,delay:3,mass:9,stiffness:500,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition6={damping:80,delay:2.25,mass:9,stiffness:500,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation11={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition7={damping:80,delay:3.3,mass:9,stiffness:500,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={damping:80,delay:2.6,mass:9,stiffness:500,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition9={damping:70,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:70,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1920,y:0};const transition11={delay:0,duration:1.4,ease:[.44,0,.56,1],type:\"tween\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-500,y:0};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition12={damping:100,delay:1,mass:1,stiffness:300,type:\"spring\"};const transition13={damping:100,delay:.5,mass:1,stiffness:300,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-580};const transition14={delay:1,duration:1,ease:[.5,0,.88,.77],type:\"tween\"};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-460};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-500};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-440};const transition15={delay:.5,duration:.8,ease:[.5,0,.88,.77],type:\"tween\"};const animation22={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-1920,y:0};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-500,y:0};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition16={damping:70,delay:.8,mass:1,stiffness:400,type:\"spring\"};const transition17={damping:70,delay:.9,mass:1,stiffness:400,type:\"spring\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition18={damping:70,delay:1,mass:1,stiffness:400,type:\"spring\"};const transition19={damping:70,delay:1.1,mass:1,stiffness:400,type:\"spring\"};const transition20={damping:70,delay:1.2,mass:1,stiffness:400,type:\"spring\"};const transition21={damping:70,delay:1.3,mass:1,stiffness:400,type:\"spring\"};const transition22={damping:70,delay:1.4,mass:1,stiffness:400,type:\"spring\"};const transition23={damping:70,delay:1.5,mass:1,stiffness:400,type:\"spring\"};const transition24={damping:70,delay:1.6,mass:1,stiffness:400,type:\"spring\"};const transition25={damping:70,delay:1.7,mass:1,stiffness:400,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={L:\"WQLkyLRf1\",M:\"KgFr3cV7Q\",S:\"UM7KdNSMp\",XS:\"wABAVcF8G\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition26={damping:30,delay:0,mass:.1,stiffness:400,type:\"spring\"};const cursor={component:OtherCursor,transition:transition26,variant:\"cnzqmuHtG\"};const cursor1={alignment:\"center\",component:OtherCursor,offset:{x:0,y:-18},placement:\"bottom\",transition:transition26,variant:\"bFfTRimll\"};const cursor2={alignment:\"center\",component:OtherCursor,offset:{x:0,y:-76},placement:\"bottom\",transition:transition26,variant:\"l3G2iBbty\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,bLIQBTiryBaRi3rqbG,GDvoA3RGYBaRi3rqbG,UtN4reIvsBaRi3rqbG,muQAVxqeEBaRi3rqbG,eT7rRspYTBaRi3rqbG,idBaRi3rqbG,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"WXEvs15Nb\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"Z3BRhQBLc\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"TBGjGfAkI\");const dynamicRef=useDynamicRefs();const elementId3=useRouteElementId(\"rNXXw9MRv\");const ref3=React.useRef(null);const elementId4=useRouteElementId(\"lUoCtpIie\");const ref4=React.useRef(null);const elementId5=useRouteElementId(\"geYTen6yx\");const ref5=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"wABAVcF8G\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wABAVcF8G\")return true;return false;};const elementId6=useRouteElementId(\"VNd1a6bvc\");const ref6=React.useRef(null);useCustomCursors({\"1szh6wg\":cursor,aptvct:cursor2,mvqn4g:cursor1});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, rgb(241, 239, 236)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1szh6wg\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":rNXXw9MRv\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z3BRhQBLc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":rNXXw9MRv\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z3BRhQBLc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":rNXXw9MRv\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z3BRhQBLc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":rNXXw9MRv\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":Z3BRhQBLc\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{__framer__scrollDirection:{direction:\"down\",target:animation1}},wABAVcF8G:{__framer__scrollDirection:{direction:\"down\",target:animation2}}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q0vrag-container\",nodeId:\"J9esMssNA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{s4FVMTOOe:resolvedLinks[2],variant:\"Ii4sWreSC\",xq0wP3ALy:resolvedLinks[3]},UM7KdNSMp:{s4FVMTOOe:resolvedLinks[4],variant:\"QzBdwZ0UE\",xq0wP3ALy:resolvedLinks[5]},wABAVcF8G:{s4FVMTOOe:resolvedLinks[6],variant:\"T9L3vfFYA\",xq0wP3ALy:resolvedLinks[7]}},children:/*#__PURE__*/_jsx(OtherNavbar,{height:\"100%\",id:\"J9esMssNA\",Jt8qOg8fJ:\"mvqn4g\",layoutId:\"J9esMssNA\",QXvuymhsJ:\"Arvind De Silva\",s4FVMTOOe:resolvedLinks[0],style:{width:\"100%\"},variant:\"fKt6AbVB3\",width:\"100%\",xq0wP3ALy:resolvedLinks[1]})})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1wm0abd\",\"data-framer-name\":\"Header\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8636b0\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f9lltc\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmsidi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{animate:animation5,initial:animation6}},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:70,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:1400,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation3,className:\"framer-zhoohl\",\"data-framer-appear-id\":\"zhoohl\",\"data-framer-name\":\"Line\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zsome1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-thqbp9\",\"data-framer-name\":\"Star\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 90 90\"><g id=\"ss12018696193_1\"><path d=\"M 0 0 L 90 0 L 90 90 L 0 90 Z\" fill=\"transparent\"></path><path d=\"M 48.214 0 L 41.786 0 L 41.786 37.24 L 15.453 10.908 L 10.908 15.453 L 37.241 41.786 L 0 41.786 L 0 48.214 L 37.24 48.214 L 10.908 74.547 L 15.453 79.092 L 41.786 52.76 L 41.786 90 L 48.215 90 L 48.215 52.76 L 74.547 79.092 L 79.093 74.547 L 52.76 48.214 L 90 48.214 L 90 41.786 L 52.76 41.786 L 79.092 15.453 L 74.547 10.907 L 48.214 37.24 Z\" fill=\"var(--token-9de46952-95e8-4761-8aa9-f667c662063c, rgb(21, 21, 21)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></g></svg>',svgContentId:12018696193},UM7KdNSMp:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 60 60\"><g id=\"ss9248111463_1\"><path d=\"M 0 0 L 60 0 L 60 60 L 0 60 Z\" fill=\"transparent\"></path><path d=\"M 32.143 0 L 27.857 0 L 27.857 24.827 L 10.302 7.272 L 7.272 10.302 L 24.827 27.857 L 0 27.857 L 0 32.143 L 24.827 32.143 L 7.272 49.698 L 10.302 52.728 L 27.857 35.173 L 27.857 60 L 32.143 60 L 32.143 35.173 L 49.698 52.728 L 52.729 49.698 L 35.173 32.143 L 60 32.143 L 60 27.857 L 35.173 27.857 L 52.728 10.302 L 49.698 7.271 L 32.143 24.827 Z\" fill=\"var(--token-9de46952-95e8-4761-8aa9-f667c662063c, rgb(21, 21, 21)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></g></svg>',svgContentId:9248111463},wABAVcF8G:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 38\"><g id=\"ss11876707248_1\"><path d=\"M 0 0 L 38 0 L 38 38 L 0 38 Z\" fill=\"transparent\"></path><path d=\"M 20.357 0 L 17.643 0 L 17.643 15.724 L 6.525 4.605 L 4.606 6.525 L 15.724 17.643 L 0 17.643 L 0 20.357 L 15.723 20.357 L 4.606 31.475 L 6.525 33.395 L 17.643 22.276 L 17.643 38 L 20.357 38 L 20.357 22.276 L 31.476 33.395 L 33.395 31.475 L 22.277 20.357 L 38 20.357 L 38 17.643 L 22.276 17.643 L 33.395 6.525 L 31.475 4.605 L 20.357 15.723 Z\" fill=\"var(--token-9de46952-95e8-4761-8aa9-f667c662063c, rgb(21, 21, 21)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></g></svg>',svgContentId:11876707248}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-4nuv8y\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 110 110\"><g id=\"ss9028864295_1\"><path d=\"M 0 0 L 110 0 L 110 110 L 0 110 Z\" fill=\"transparent\"></path><path d=\"M 58.929 0 L 51.071 0 L 51.071 45.516 L 18.887 13.331 L 13.332 18.887 L 45.516 51.071 L 0 51.071 L 0 58.929 L 45.515 58.929 L 13.332 91.113 L 18.888 96.669 L 51.072 64.484 L 51.072 110 L 58.929 110 L 58.929 64.484 L 91.114 96.669 L 96.669 91.113 L 64.485 58.929 L 110 58.929 L 110 51.071 L 64.484 51.071 L 96.669 18.887 L 91.113 13.331 L 58.929 45.515 Z\" fill=\"var(--token-9de46952-95e8-4761-8aa9-f667c662063c, rgb(21, 21, 21)) /* {&quot;name&quot;:&quot;Text&quot;} */\"></path></g></svg>',svgContentId:9028864295,withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9ntaz8\",\"data-styles-preset\":\"yXLV8fmHX\",children:\"I'm Arvind\"})}),className:\"framer-1awxa1n\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujwi7l\",\"data-framer-name\":\"Line\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{effect:textEffect1}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sfc9sw\",\"data-styles-preset\":\"lnBkNhncs\",children:\"With 8 years of experience, I ask the necessary (and sometimes the difficult questions) to create brands and products that focus on and prioritize people\"})}),className:\"framer-1ecdioj\",\"data-framer-name\":\"Text\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{animate:animation10,initial:animation11}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation8,className:\"framer-4u17fo\",\"data-framer-appear-id\":\"4u17fo\",\"data-framer-name\":\"Text\",initial:animation9,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-p4del\",\"data-styles-preset\":\"hMLTsqxkR\",style:{\"--framer-text-alignment\":\"right\"},children:\"A designer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-p4del\",\"data-styles-preset\":\"hMLTsqxkR\",children:\"A designer\"})}),className:\"framer-g5q09m\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-800,y:0}}],animate:animation13,initial:animation6}},children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:70,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:400,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-1400,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,animate:animation12,className:\"framer-u5pfsa\",\"data-framer-appear-id\":\"u5pfsa\",\"data-framer-name\":\"Line\",initial:animation4,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-9ntaz8\",\"data-styles-preset\":\"yXLV8fmHX\",style:{\"--framer-text-alignment\":\"center\"},children:\"lives by design\"})}),className:\"framer-8cxuv7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-16s4u15\",\"data-framer-name\":\"Work\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e77v3i\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ecmdz6\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-177y3p8\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w2c4tm\",\"data-styles-preset\":\"VAtxt7p48\",children:\"Featured work\"})}),className:\"framer-1a59xm4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dkhmep\",\"data-styles-preset\":\"p9xRym43U\",children:\"Scroll \u2193\"})}),className:\"framer-hswpmn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-697ivc\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s6jgqy\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BaRi3rqbG\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:5},select:[{collection:\"BaRi3rqbG\",name:\"bLIQBTiry\",type:\"Identifier\"},{collection:\"BaRi3rqbG\",name:\"GDvoA3RGY\",type:\"Identifier\"},{collection:\"BaRi3rqbG\",name:\"UtN4reIvs\",type:\"Identifier\"},{collection:\"BaRi3rqbG\",name:\"muQAVxqeE\",type:\"Identifier\"},{collection:\"BaRi3rqbG\",name:\"eT7rRspYT\",type:\"Identifier\"},{collection:\"BaRi3rqbG\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({bLIQBTiry:bLIQBTiryBaRi3rqbG,eT7rRspYT:eT7rRspYTBaRi3rqbG,GDvoA3RGY:GDvoA3RGYBaRi3rqbG,id:idBaRi3rqbG,muQAVxqeE:muQAVxqeEBaRi3rqbG,UtN4reIvs:UtN4reIvsBaRi3rqbG},index)=>{bLIQBTiryBaRi3rqbG??=\"\";UtN4reIvsBaRi3rqbG??=\"\";muQAVxqeEBaRi3rqbG??=\"\";eT7rRspYTBaRi3rqbG??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BaRi3rqbG-${idBaRi3rqbG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{bLIQBTiry:bLIQBTiryBaRi3rqbG},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{bLIQBTiry:bLIQBTiryBaRi3rqbG},webPageId:\"hv5SqOw_t\"},implicitPathVariables:undefined},{href:{pathVariables:{bLIQBTiry:bLIQBTiryBaRi3rqbG},webPageId:\"hv5SqOw_t\"},implicitPathVariables:undefined},{href:{pathVariables:{bLIQBTiry:bLIQBTiryBaRi3rqbG},webPageId:\"hv5SqOw_t\"},implicitPathVariables:undefined},{href:{pathVariables:{bLIQBTiry:bLIQBTiryBaRi3rqbG},webPageId:\"hv5SqOw_t\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{y:(componentViewport?.y||0)+0+876+0+0+0+95.6+0+0},wABAVcF8G:{y:(componentViewport?.y||0)+0+826+0+0+0+75.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:650,width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+876+0+0+0+115.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10o7otk-container\",id:`${bLIQBTiryBaRi3rqbG}-${elementId2}`,nodeId:\"TBGjGfAkI\",ref:dynamicRef(`${bLIQBTiryBaRi3rqbG}-${elementId2}`),scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{variant:\"UqidKns5K\",YRyoEiKXY:resolvedLinks1[1]},UM7KdNSMp:{variant:\"Kv3qni6CN\",YRyoEiKXY:resolvedLinks1[2]},wABAVcF8G:{Lif7tnYik:undefined,variant:\"T5pDNRCBg\",YRyoEiKXY:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(OtherProjectItem,{height:\"100%\",id:\"TBGjGfAkI\",jHhWrZFmc:UtN4reIvsBaRi3rqbG,layoutId:\"TBGjGfAkI\",Lif7tnYik:\"aptvct\",rHv3S53mB:dynamicRef(`${bLIQBTiryBaRi3rqbG}-${elementId2}`),style:{width:\"100%\"},variant:\"Cg9mJ1qU5\",width:\"100%\",XnPtJ3GiX:toResponsiveImage(GDvoA3RGYBaRi3rqbG),YRyoEiKXY:resolvedLinks1[0],ZJcc6ReEr:eT7rRspYTBaRi3rqbG,zppbXF2vr:muQAVxqeEBaRi3rqbG})})})})})})})},idBaRi3rqbG);})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1iu31go\",\"data-framer-name\":\"About\",id:elementId3,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yzu44t\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kb8557\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-phoh63\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__animate:{transition:transition10}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:-100,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w2c4tm\",\"data-styles-preset\":\"VAtxt7p48\",children:\"About\"})}),className:\"framer-1gvug5j\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__enter:animation16}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:-100,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-37sfz\",\"data-framer-name\":\"Line\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vwrlbv\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14js2ex\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__animate:{transition:transition13},__framer__enter:animation14,__framer__targets:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:-100,ref:ref3,target:\"animate\"}],__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-lyok3u\",\"data-styles-preset\":\"WYtyUgnNE\",children:\"Hi, I'm Martin Taylor, an art director and product designer based in London. With my background in visual arts and technology, I specialize in creating engaging user experiences through interactive design. I am deeply passionate about using my creative skills to collaborate on innovative and meaningful projects that make a genuine impact.\"})}),className:\"framer-6c7s9p\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b5cbbg\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3jl2fs\",\"data-framer-name\":\"Image\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{__framer__enter:animation19},UM7KdNSMp:{__framer__enter:animation20},wABAVcF8G:{__framer__animate:{transition:transition15},__framer__enter:animation21,__framer__targets:undefined,__framer__threshold:0}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:-100,ref:ref3,target:\"animate\"}],__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b370di\",\"data-framer-name\":\"Overlay\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1681.6+60+0+0+95.6+0+0+0+0+0),pixelHeight:1199,pixelWidth:800,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.3956)`,src:\"https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp\",srcSet:\"https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp?scale-down-to=1024 683w,https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp 800w\"}},wABAVcF8G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1601.6+50+0+0+75.6+0+287+0+0+0+0),pixelHeight:1199,pixelWidth:800,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,src:\"https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp\",srcSet:\"https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp?scale-down-to=1024 683w,https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1741.6+100+0+0+115.6+0+0+0+0+0),pixelHeight:1199,pixelWidth:800,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.276)`,src:\"https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp\",srcSet:\"https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp?scale-down-to=1024 683w,https://framerusercontent.com/images/vryElL5tm1BErCASdIWqo30wsc.webp 800w\"},className:\"framer-v3bxr2\",\"data-framer-name\":\"Image\"})})]})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-zj6p13\",\"data-framer-name\":\"Experience\",id:elementId4,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wvb4gb\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbspa2\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x5pre6\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__animate:{transition:transition10}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w2c4tm\",\"data-styles-preset\":\"VAtxt7p48\",children:\"Experience\"})}),className:\"framer-iglqp3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__enter:animation23}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3xgn6o\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bwv9t1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eexlj5\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation24,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1szgzq8\",\"data-styles-preset\":\"DpzRqwcmz\",children:\"I've worked with companies and clients, both in agency settings and as a freelancer. I enjoy collaborating with clients who appreciate the importance of good design.\"})}),className:\"framer-ypockr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zj2lku\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+2517.2+100+0+0+115.6+0+0+0},UM7KdNSMp:{y:(componentViewport?.y||0)+0+2477.2+60+0+0+95.6+0+0+0},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+2504.2+50+0+0+75.6+0+212+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`calc(${componentViewport?.width||\"100vw\"} * 0.552)`,y:(componentViewport?.y||0)+0+2637.2+100+0+0+115.6+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pw9psz-container\",nodeId:\"x_4ZuOBp6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{bcsoHLm3R:\"2022 \u2013 Now\",height:\"100%\",id:\"x_4ZuOBp6\",KyUXwk1NH:\"Design Consultant\",layoutId:\"x_4ZuOBp6\",qutczNra7:\"MANO\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.16,className:\"framer-3kl9zg\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+2517.2+100+0+0+115.6+0+0+75},UM7KdNSMp:{y:(componentViewport?.y||0)+0+2477.2+60+0+0+95.6+0+0+59},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+2504.2+50+0+0+75.6+0+212+0+67}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`calc(${componentViewport?.width||\"100vw\"} * 0.552)`,y:(componentViewport?.y||0)+0+2637.2+100+0+0+115.6+0+0+75,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dt4hzz-container\",nodeId:\"QF7QoB7sM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{bcsoHLm3R:\"2021 \u2013 2022\",height:\"100%\",id:\"QF7QoB7sM\",KyUXwk1NH:\"Senior Designer\",layoutId:\"QF7QoB7sM\",qutczNra7:\"Spotify\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.16,className:\"framer-j7uu87\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+2517.2+100+0+0+115.6+0+0+150},UM7KdNSMp:{y:(componentViewport?.y||0)+0+2477.2+60+0+0+95.6+0+0+118},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+2504.2+50+0+0+75.6+0+212+0+134}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`calc(${componentViewport?.width||\"100vw\"} * 0.552)`,y:(componentViewport?.y||0)+0+2637.2+100+0+0+115.6+0+0+150,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17tgoo2-container\",nodeId:\"t7fjBMeVI\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{qutczNra7:\"Martin T.\"},wABAVcF8G:{qutczNra7:\"Martin T.\"}},children:/*#__PURE__*/_jsx(ExperienceItem,{bcsoHLm3R:\"2019 \u2013 2021\",height:\"100%\",id:\"t7fjBMeVI\",KyUXwk1NH:\"Freelance Designer\",layoutId:\"t7fjBMeVI\",qutczNra7:\"Martin Taylor\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition22},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.16,className:\"framer-13dwf10\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+2517.2+100+0+0+115.6+0+0+225},UM7KdNSMp:{y:(componentViewport?.y||0)+0+2477.2+60+0+0+95.6+0+0+177},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+2504.2+50+0+0+75.6+0+212+0+201}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`calc(${componentViewport?.width||\"100vw\"} * 0.552)`,y:(componentViewport?.y||0)+0+2637.2+100+0+0+115.6+0+0+225,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kql9uu-container\",nodeId:\"qnLGtKuUL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{bcsoHLm3R:\"2018 \u2013 2019\",height:\"100%\",id:\"qnLGtKuUL\",KyUXwk1NH:\"UI/UX Designer\",layoutId:\"qnLGtKuUL\",qutczNra7:\"Shrink\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:true,__framer__enter:animation25,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.16,className:\"framer-kdoslf\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+2517.2+100+0+0+115.6+0+0+300},UM7KdNSMp:{y:(componentViewport?.y||0)+0+2477.2+60+0+0+95.6+0+0+236},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+2504.2+50+0+0+75.6+0+212+0+268}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:`calc(${componentViewport?.width||\"100vw\"} * 0.552)`,y:(componentViewport?.y||0)+0+2637.2+100+0+0+115.6+0+0+300,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition25},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref4,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-m19krz-container\",nodeId:\"oagsuKpHU\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExperienceItem,{bcsoHLm3R:\"2016 \u2013 2017\",height:\"100%\",id:\"oagsuKpHU\",KyUXwk1NH:\"Design Intern\",layoutId:\"oagsuKpHU\",qutczNra7:\"IBM\",style:{width:\"100%\"},width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xnng3x\",\"data-framer-name\":\"Services\",id:elementId5,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-em1z13\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vl35jo\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-48jaze\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__animate:{transition:transition10}}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1w2c4tm\",\"data-styles-preset\":\"VAtxt7p48\",children:\"Services\"})}),className:\"framer-1r1cc3y\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{__framer__enter:animation23}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation22,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gyy2bc\",\"data-framer-name\":\"Line\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-io9mdi\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q7x3al\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation24,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1szgzq8\",\"data-styles-preset\":\"DpzRqwcmz\",children:\"I am dedicated to expanding my knowledge and expertise in my field. Throughout my career, I've acquired various skills, which I continue to perfect.\"})}),className:\"framer-1hnnzed\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g99sin\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i2augo\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+3165.8+100+0+0+115.6+0+0+0+0},UM7KdNSMp:{width:`max((${componentViewport?.width||\"100vw\"} * 0.552 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2961.8+60+0+0+95.6+0+0+0+0},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+3192.8+50+0+0+75.6+0+228+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2484)`,y:(componentViewport?.y||0)+0+3285.8+100+0+0+115.6+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation26,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1vgo4h6-container\",nodeId:\"gm5fETHIx\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{variant:\"QObAm9iUo\"},wABAVcF8G:{variant:\"Kij8gAfji\"}},children:/*#__PURE__*/_jsx(ServicesItem,{height:\"100%\",id:\"gm5fETHIx\",layoutId:\"gm5fETHIx\",m4r328P6P:\"qAfFUhoLr\",Rfq1sSgKr:\"Crafting visually appealing and user-friendly interfaces that create intuitive and seamless experiences.\",style:{width:\"100%\"},UPOQn3H7G:\"Digital Design\",variant:\"a_awh4rHg\",width:\"100%\",X00vE9lMw:\"JpJ6IZzCG\",zEMSomzom:\"wDhn4pGd4\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+3165.8+100+0+0+115.6+0+0+0+0},UM7KdNSMp:{width:`max((${componentViewport?.width||\"100vw\"} * 0.552 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2961.8+60+0+0+95.6+0+0+0+0},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+3192.8+50+0+0+75.6+0+228+0+0+0+303}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2484)`,y:(componentViewport?.y||0)+0+3285.8+100+0+0+115.6+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation26,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-25oa74-container\",nodeId:\"wcuwoqL2N\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{variant:\"QObAm9iUo\",X00vE9lMw:\"x0OM0Nuxb\"},wABAVcF8G:{m4r328P6P:\"ttEVXu5mv\",variant:\"Kij8gAfji\"}},children:/*#__PURE__*/_jsx(ServicesItem,{height:\"100%\",id:\"wcuwoqL2N\",layoutId:\"wcuwoqL2N\",m4r328P6P:\"qAfFUhoLr\",Rfq1sSgKr:\"The most efficient platform to implement web solutions and publish websites with one click.\",style:{width:\"100%\"},UPOQn3H7G:\"Framer Expert\",variant:\"a_awh4rHg\",width:\"100%\",X00vE9lMw:\"JpJ6IZzCG\",zEMSomzom:\"KwgfGlBH4\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juo0kp\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+3165.8+100+0+0+115.6+0+0+335+0},UM7KdNSMp:{width:`max((${componentViewport?.width||\"100vw\"} * 0.552 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2961.8+60+0+0+95.6+0+0+319+0},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+3192.8+50+0+0+75.6+0+228+0+606+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2484)`,y:(componentViewport?.y||0)+0+3285.8+100+0+0+115.6+0+0+335+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation26,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-32xbz8-container\",nodeId:\"gcTUqOYyO\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{variant:\"QObAm9iUo\",X00vE9lMw:\"LPjfvf_NR\"},wABAVcF8G:{m4r328P6P:\"ydDeJ02K9\",variant:\"Kij8gAfji\"}},children:/*#__PURE__*/_jsx(ServicesItem,{height:\"100%\",id:\"gcTUqOYyO\",layoutId:\"gcTUqOYyO\",m4r328P6P:\"qAfFUhoLr\",Rfq1sSgKr:\"Defining product's vision, strategizing the approach, and setting both short & long term goals.\",style:{width:\"100%\"},UPOQn3H7G:\"Product Strategy\",variant:\"a_awh4rHg\",width:\"100%\",X00vE9lMw:\"JpJ6IZzCG\",zEMSomzom:\"igeWkv7oJ\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+3165.8+100+0+0+115.6+0+0+335+0},UM7KdNSMp:{width:`max((${componentViewport?.width||\"100vw\"} * 0.552 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+0+2961.8+60+0+0+95.6+0+0+319+0},wABAVcF8G:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.92)`,y:(componentViewport?.y||0)+0+3192.8+50+0+0+75.6+0+228+0+606+0+303}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:271,width:`calc(${componentViewport?.width||\"100vw\"} * 0.2484)`,y:(componentViewport?.y||0)+0+3285.8+100+0+0+115.6+0+0+335+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:true,__framer__enter:animation26,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref5,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-120dsbu-container\",nodeId:\"rgXJyEOyP\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UM7KdNSMp:{variant:\"QObAm9iUo\",X00vE9lMw:\"QRypohG0P\"},wABAVcF8G:{m4r328P6P:\"T1PTZWp02\",variant:\"Kij8gAfji\"}},children:/*#__PURE__*/_jsx(ServicesItem,{height:\"100%\",id:\"rgXJyEOyP\",layoutId:\"rgXJyEOyP\",m4r328P6P:\"qAfFUhoLr\",Rfq1sSgKr:\"Establishing a strong foundation to set the project's tone, providing a clear & organized starting point.\",style:{width:\"100%\"},UPOQn3H7G:\"Art Direction\",variant:\"a_awh4rHg\",width:\"100%\",X00vE9lMw:\"JpJ6IZzCG\",zEMSomzom:\"QbgFhGQt0\"})})})})})]})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-hs8by8\",\"data-framer-name\":\"Slider\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f1z919\",\"data-framer-name\":\"Wrapper\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+4087.4+100+0+0+0},UM7KdNSMp:{y:(componentViewport?.y||0)+0+3767.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:405,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4207.4+100+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8x1stn-container hidden-8a0jop\",nodeId:\"wKTiSDrXq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerL,{height:\"100%\",id:\"wKTiSDrXq\",layoutId:\"wKTiSDrXq\",style:{width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wABAVcF8G:{height:263,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4776.4+50+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mcioby-container hidden-72rtr7 hidden-1uhliic hidden-i6z8jl\",nodeId:\"DamEo5uOh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TickerS,{height:\"100%\",id:\"DamEo5uOh\",layoutId:\"DamEo5uOh\",style:{width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":WXEvs15Nb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WXEvs15Nb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WXEvs15Nb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":WXEvs15Nb\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{y:(componentViewport?.y||0)+0+4742.4},UM7KdNSMp:{y:(componentViewport?.y||0)+0+4332.4},wABAVcF8G:{y:(componentViewport?.y||0)+0+5189.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4862.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-300}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eplwl9-container\",id:elementId6,nodeId:\"VNd1a6bvc\",ref:ref6,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{KgFr3cV7Q:{zdKemOGD4:resolvedLinks2[1]},UM7KdNSMp:{variant:\"j86tI1Kyw\",zdKemOGD4:resolvedLinks2[2]},wABAVcF8G:{variant:\"RnqkYEG3E\",zdKemOGD4:resolvedLinks2[3]}},children:/*#__PURE__*/_jsx(OtherFooter,{height:\"100%\",id:\"VNd1a6bvc\",layoutId:\"VNd1a6bvc\",style:{height:\"100%\",width:\"100%\"},UgMFV4Ey0:\"mvqn4g\",variant:\"rUbfGViww\",width:\"100%\",zdKemOGD4:resolvedLinks2[0]})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12e3j1j-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LPvkGcR6D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"LPvkGcR6D\",intensity:14,layoutId:\"LPvkGcR6D\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aEMRu.framer-lux5qc, .framer-aEMRu .framer-lux5qc { display: block; }\",\".framer-aEMRu.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-aEMRu .framer-1q0vrag-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 4; }\",\".framer-aEMRu .framer-1wm0abd { align-content: center; align-items: center; background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 80vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-aEMRu .framer-8636b0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 92%; }\",\".framer-aEMRu .framer-1f9lltc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-1lmsidi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-zhoohl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-aEMRu .framer-zsome1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-aEMRu .framer-thqbp9 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 110px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 110px; }\",\".framer-aEMRu .framer-4nuv8y { flex: none; height: 110px; position: relative; width: 110px; }\",\".framer-aEMRu .framer-1awxa1n { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-aEMRu .framer-ujwi7l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-1ecdioj { flex: 1 0 0px; height: auto; max-width: 34%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-aEMRu .framer-4u17fo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-aEMRu .framer-g5q09m, .framer-aEMRu .framer-1a59xm4, .framer-aEMRu .framer-hswpmn, .framer-aEMRu .framer-1gvug5j, .framer-aEMRu .framer-iglqp3, .framer-aEMRu .framer-1r1cc3y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aEMRu .framer-u5pfsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-aEMRu .framer-8cxuv7, .framer-aEMRu .framer-ypockr, .framer-aEMRu .framer-1hnnzed { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-aEMRu .framer-16s4u15 { align-content: center; align-items: center; background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 100px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-aEMRu .framer-1e77v3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 92%; }\",\".framer-aEMRu .framer-ecmdz6, .framer-aEMRu .framer-kb8557, .framer-aEMRu .framer-1qbspa2, .framer-aEMRu .framer-1vl35jo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-177y3p8, .framer-aEMRu .framer-phoh63, .framer-aEMRu .framer-1x5pre6, .framer-aEMRu .framer-48jaze { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-697ivc, .framer-aEMRu .framer-37sfz, .framer-aEMRu .framer-3xgn6o, .framer-aEMRu .framer-gyy2bc { background-color: var(--token-9de46952-95e8-4761-8aa9-f667c662063c, #151515); flex: none; height: 2px; overflow: hidden; position: relative; width: 100%; }\",\".framer-aEMRu .framer-1s6jgqy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-10o7otk-container, .framer-aEMRu .framer-8x1stn-container, .framer-aEMRu .framer-1mcioby-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-aEMRu .framer-1iu31go { align-content: center; align-items: center; background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-aEMRu .framer-yzu44t, .framer-aEMRu .framer-1wvb4gb, .framer-aEMRu .framer-em1z13 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 92%; }\",\".framer-aEMRu .framer-vwrlbv, .framer-aEMRu .framer-bwv9t1, .framer-aEMRu .framer-io9mdi, .framer-aEMRu .framer-1i2augo, .framer-aEMRu .framer-1juo0kp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-14js2ex { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-aEMRu .framer-6c7s9p { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-aEMRu .framer-b5cbbg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30%; }\",\".framer-aEMRu .framer-3jl2fs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 580px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-b370di { background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); bottom: -580px; flex: none; height: 580px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 2; }\",\".framer-aEMRu .framer-v3bxr2 { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-aEMRu .framer-zj6p13, .framer-aEMRu .framer-xnng3x { align-content: center; align-items: center; background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; scroll-margin-top: 200px; width: 100%; z-index: 2; }\",\".framer-aEMRu .framer-eexlj5, .framer-aEMRu .framer-q7x3al { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 30%; }\",\".framer-aEMRu .framer-zj2lku { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-aEMRu .framer-1pw9psz-container, .framer-aEMRu .framer-dt4hzz-container, .framer-aEMRu .framer-17tgoo2-container, .framer-aEMRu .framer-kql9uu-container, .framer-aEMRu .framer-m19krz-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-aEMRu .framer-3kl9zg, .framer-aEMRu .framer-j7uu87, .framer-aEMRu .framer-13dwf10, .framer-aEMRu .framer-kdoslf { background-color: var(--token-9de46952-95e8-4761-8aa9-f667c662063c, #151515); flex: none; height: 2px; opacity: 0.16; overflow: hidden; position: relative; width: 100%; }\",\".framer-aEMRu .framer-g99sin { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 60%; }\",\".framer-aEMRu .framer-1vgo4h6-container, .framer-aEMRu .framer-25oa74-container, .framer-aEMRu .framer-32xbz8-container, .framer-aEMRu .framer-120dsbu-container { flex: none; height: auto; position: relative; width: 45%; }\",\".framer-aEMRu .framer-hs8by8 { align-content: center; align-items: center; background-color: var(--token-b988cbfe-ec0d-40b2-b684-cfe47edca353, #f1efec); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 150px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-aEMRu .framer-f1z919 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aEMRu .framer-1eplwl9-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-aEMRu .framer-12e3j1j-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aEMRu.framer-72rtr7, .framer-aEMRu .framer-1wm0abd, .framer-aEMRu .framer-8636b0, .framer-aEMRu .framer-1f9lltc, .framer-aEMRu .framer-1lmsidi, .framer-aEMRu .framer-zhoohl, .framer-aEMRu .framer-zsome1, .framer-aEMRu .framer-thqbp9, .framer-aEMRu .framer-ujwi7l, .framer-aEMRu .framer-4u17fo, .framer-aEMRu .framer-u5pfsa, .framer-aEMRu .framer-16s4u15, .framer-aEMRu .framer-1e77v3i, .framer-aEMRu .framer-ecmdz6, .framer-aEMRu .framer-1s6jgqy, .framer-aEMRu .framer-1iu31go, .framer-aEMRu .framer-yzu44t, .framer-aEMRu .framer-kb8557, .framer-aEMRu .framer-14js2ex, .framer-aEMRu .framer-b5cbbg, .framer-aEMRu .framer-3jl2fs, .framer-aEMRu .framer-zj6p13, .framer-aEMRu .framer-1wvb4gb, .framer-aEMRu .framer-1qbspa2, .framer-aEMRu .framer-eexlj5, .framer-aEMRu .framer-zj2lku, .framer-aEMRu .framer-xnng3x, .framer-aEMRu .framer-em1z13, .framer-aEMRu .framer-1vl35jo, .framer-aEMRu .framer-q7x3al, .framer-aEMRu .framer-g99sin, .framer-aEMRu .framer-hs8by8, .framer-aEMRu .framer-f1z919 { gap: 0px; } .framer-aEMRu.framer-72rtr7 > *, .framer-aEMRu .framer-1wm0abd > *, .framer-aEMRu .framer-1f9lltc > *, .framer-aEMRu .framer-4u17fo > *, .framer-aEMRu .framer-3jl2fs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-aEMRu.framer-72rtr7 > :first-child, .framer-aEMRu .framer-1wm0abd > :first-child, .framer-aEMRu .framer-8636b0 > :first-child, .framer-aEMRu .framer-1f9lltc > :first-child, .framer-aEMRu .framer-1lmsidi > :first-child, .framer-aEMRu .framer-4u17fo > :first-child, .framer-aEMRu .framer-16s4u15 > :first-child, .framer-aEMRu .framer-1e77v3i > :first-child, .framer-aEMRu .framer-ecmdz6 > :first-child, .framer-aEMRu .framer-1s6jgqy > :first-child, .framer-aEMRu .framer-1iu31go > :first-child, .framer-aEMRu .framer-yzu44t > :first-child, .framer-aEMRu .framer-kb8557 > :first-child, .framer-aEMRu .framer-14js2ex > :first-child, .framer-aEMRu .framer-b5cbbg > :first-child, .framer-aEMRu .framer-3jl2fs > :first-child, .framer-aEMRu .framer-zj6p13 > :first-child, .framer-aEMRu .framer-1wvb4gb > :first-child, .framer-aEMRu .framer-1qbspa2 > :first-child, .framer-aEMRu .framer-zj2lku > :first-child, .framer-aEMRu .framer-xnng3x > :first-child, .framer-aEMRu .framer-em1z13 > :first-child, .framer-aEMRu .framer-1vl35jo > :first-child, .framer-aEMRu .framer-g99sin > :first-child, .framer-aEMRu .framer-hs8by8 > :first-child, .framer-aEMRu .framer-f1z919 > :first-child { margin-top: 0px; } .framer-aEMRu.framer-72rtr7 > :last-child, .framer-aEMRu .framer-1wm0abd > :last-child, .framer-aEMRu .framer-8636b0 > :last-child, .framer-aEMRu .framer-1f9lltc > :last-child, .framer-aEMRu .framer-1lmsidi > :last-child, .framer-aEMRu .framer-4u17fo > :last-child, .framer-aEMRu .framer-16s4u15 > :last-child, .framer-aEMRu .framer-1e77v3i > :last-child, .framer-aEMRu .framer-ecmdz6 > :last-child, .framer-aEMRu .framer-1s6jgqy > :last-child, .framer-aEMRu .framer-1iu31go > :last-child, .framer-aEMRu .framer-yzu44t > :last-child, .framer-aEMRu .framer-kb8557 > :last-child, .framer-aEMRu .framer-14js2ex > :last-child, .framer-aEMRu .framer-b5cbbg > :last-child, .framer-aEMRu .framer-3jl2fs > :last-child, .framer-aEMRu .framer-zj6p13 > :last-child, .framer-aEMRu .framer-1wvb4gb > :last-child, .framer-aEMRu .framer-1qbspa2 > :last-child, .framer-aEMRu .framer-zj2lku > :last-child, .framer-aEMRu .framer-xnng3x > :last-child, .framer-aEMRu .framer-em1z13 > :last-child, .framer-aEMRu .framer-1vl35jo > :last-child, .framer-aEMRu .framer-g99sin > :last-child, .framer-aEMRu .framer-hs8by8 > :last-child, .framer-aEMRu .framer-f1z919 > :last-child { margin-bottom: 0px; } .framer-aEMRu .framer-8636b0 > *, .framer-aEMRu .framer-16s4u15 > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-aEMRu .framer-1lmsidi > *, .framer-aEMRu .framer-14js2ex > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aEMRu .framer-zhoohl > *, .framer-aEMRu .framer-thqbp9 > *, .framer-aEMRu .framer-eexlj5 > *, .framer-aEMRu .framer-q7x3al > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-aEMRu .framer-zhoohl > :first-child, .framer-aEMRu .framer-zsome1 > :first-child, .framer-aEMRu .framer-thqbp9 > :first-child, .framer-aEMRu .framer-ujwi7l > :first-child, .framer-aEMRu .framer-u5pfsa > :first-child, .framer-aEMRu .framer-eexlj5 > :first-child, .framer-aEMRu .framer-q7x3al > :first-child { margin-left: 0px; } .framer-aEMRu .framer-zhoohl > :last-child, .framer-aEMRu .framer-zsome1 > :last-child, .framer-aEMRu .framer-thqbp9 > :last-child, .framer-aEMRu .framer-ujwi7l > :last-child, .framer-aEMRu .framer-u5pfsa > :last-child, .framer-aEMRu .framer-eexlj5 > :last-child, .framer-aEMRu .framer-q7x3al > :last-child { margin-right: 0px; } .framer-aEMRu .framer-zsome1 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-aEMRu .framer-ujwi7l > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-aEMRu .framer-u5pfsa > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-aEMRu .framer-1e77v3i > *, .framer-aEMRu .framer-1iu31go > *, .framer-aEMRu .framer-yzu44t > *, .framer-aEMRu .framer-b5cbbg > *, .framer-aEMRu .framer-zj6p13 > *, .framer-aEMRu .framer-1wvb4gb > *, .framer-aEMRu .framer-xnng3x > *, .framer-aEMRu .framer-em1z13 > *, .framer-aEMRu .framer-g99sin > *, .framer-aEMRu .framer-hs8by8 > *, .framer-aEMRu .framer-f1z919 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-aEMRu .framer-ecmdz6 > *, .framer-aEMRu .framer-kb8557 > *, .framer-aEMRu .framer-1qbspa2 > *, .framer-aEMRu .framer-1vl35jo > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aEMRu .framer-1s6jgqy > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-aEMRu .framer-zj2lku > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,\"@media (min-width: 1025px) and (max-width: 1439px) { .framer-aEMRu.framer-72rtr7 { width: 1025px; } .framer-aEMRu .framer-1lmsidi { gap: 16px; } .framer-aEMRu .framer-thqbp9 { height: var(--framer-aspect-ratio-supported, 90px); width: 90px; } .framer-aEMRu .framer-4nuv8y { height: 90px; width: 90px; } .framer-aEMRu .framer-1ecdioj { --framer-text-wrap-override: none; max-width: 40%; } .framer-aEMRu .framer-1s6jgqy { gap: 80px; } .framer-aEMRu .framer-3jl2fs { height: 460px; } .framer-aEMRu .framer-b370di { bottom: -460px; height: 460px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aEMRu .framer-1lmsidi, .framer-aEMRu .framer-1s6jgqy { gap: 0px; } .framer-aEMRu .framer-1lmsidi > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aEMRu .framer-1lmsidi > :first-child, .framer-aEMRu .framer-1s6jgqy > :first-child { margin-top: 0px; } .framer-aEMRu .framer-1lmsidi > :last-child, .framer-aEMRu .framer-1s6jgqy > :last-child { margin-bottom: 0px; } .framer-aEMRu .framer-1s6jgqy > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\",\"@media (min-width: 700px) and (max-width: 1024px) { .framer-aEMRu.framer-72rtr7 { width: 700px; } .framer-aEMRu .framer-8636b0 { width: 90%; } .framer-aEMRu .framer-1lmsidi { gap: 8px; } .framer-aEMRu .framer-zhoohl { justify-content: flex-start; } .framer-aEMRu .framer-zsome1, .framer-aEMRu .framer-ecmdz6, .framer-aEMRu .framer-kb8557, .framer-aEMRu .framer-1qbspa2, .framer-aEMRu .framer-zj2lku, .framer-aEMRu .framer-1vl35jo { gap: 12px; } .framer-aEMRu .framer-thqbp9 { height: var(--framer-aspect-ratio-supported, 60px); width: 60px; } .framer-aEMRu .framer-4nuv8y { height: 60px; width: 60px; } .framer-aEMRu .framer-ujwi7l { flex-direction: column; gap: 24px; } .framer-aEMRu .framer-1ecdioj { flex: none; max-width: unset; order: 1; width: 80%; } .framer-aEMRu .framer-4u17fo { flex-direction: row; justify-content: flex-end; order: 0; width: 70%; } .framer-aEMRu .framer-16s4u15 { padding: 0px 0px 60px 0px; } .framer-aEMRu .framer-1e77v3i, .framer-aEMRu .framer-1s6jgqy, .framer-aEMRu .framer-yzu44t, .framer-aEMRu .framer-1wvb4gb, .framer-aEMRu .framer-em1z13, .framer-aEMRu .framer-g99sin { gap: 48px; } .framer-aEMRu .framer-1iu31go, .framer-aEMRu .framer-zj6p13, .framer-aEMRu .framer-xnng3x { padding: 60px 0px 60px 0px; } .framer-aEMRu .framer-14js2ex { width: 52%; } .framer-aEMRu .framer-b5cbbg { width: 43%; } .framer-aEMRu .framer-b370di { bottom: -500px; } .framer-aEMRu .framer-eexlj5, .framer-aEMRu .framer-q7x3al { width: 33%; } .framer-aEMRu .framer-1i2augo, .framer-aEMRu .framer-1juo0kp { gap: 24px; justify-content: center; } .framer-aEMRu .framer-1vgo4h6-container, .framer-aEMRu .framer-25oa74-container, .framer-aEMRu .framer-32xbz8-container, .framer-aEMRu .framer-120dsbu-container { flex: 1 0 0px; width: 1px; } .framer-aEMRu .framer-hs8by8 { padding: 60px 0px 100px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aEMRu .framer-1lmsidi, .framer-aEMRu .framer-zsome1, .framer-aEMRu .framer-ujwi7l, .framer-aEMRu .framer-4u17fo, .framer-aEMRu .framer-1e77v3i, .framer-aEMRu .framer-ecmdz6, .framer-aEMRu .framer-1s6jgqy, .framer-aEMRu .framer-yzu44t, .framer-aEMRu .framer-kb8557, .framer-aEMRu .framer-1wvb4gb, .framer-aEMRu .framer-1qbspa2, .framer-aEMRu .framer-zj2lku, .framer-aEMRu .framer-em1z13, .framer-aEMRu .framer-1vl35jo, .framer-aEMRu .framer-g99sin, .framer-aEMRu .framer-1i2augo, .framer-aEMRu .framer-1juo0kp { gap: 0px; } .framer-aEMRu .framer-1lmsidi > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-aEMRu .framer-1lmsidi > :first-child, .framer-aEMRu .framer-ujwi7l > :first-child, .framer-aEMRu .framer-1e77v3i > :first-child, .framer-aEMRu .framer-ecmdz6 > :first-child, .framer-aEMRu .framer-1s6jgqy > :first-child, .framer-aEMRu .framer-yzu44t > :first-child, .framer-aEMRu .framer-kb8557 > :first-child, .framer-aEMRu .framer-1wvb4gb > :first-child, .framer-aEMRu .framer-1qbspa2 > :first-child, .framer-aEMRu .framer-zj2lku > :first-child, .framer-aEMRu .framer-em1z13 > :first-child, .framer-aEMRu .framer-1vl35jo > :first-child, .framer-aEMRu .framer-g99sin > :first-child { margin-top: 0px; } .framer-aEMRu .framer-1lmsidi > :last-child, .framer-aEMRu .framer-ujwi7l > :last-child, .framer-aEMRu .framer-1e77v3i > :last-child, .framer-aEMRu .framer-ecmdz6 > :last-child, .framer-aEMRu .framer-1s6jgqy > :last-child, .framer-aEMRu .framer-yzu44t > :last-child, .framer-aEMRu .framer-kb8557 > :last-child, .framer-aEMRu .framer-1wvb4gb > :last-child, .framer-aEMRu .framer-1qbspa2 > :last-child, .framer-aEMRu .framer-zj2lku > :last-child, .framer-aEMRu .framer-em1z13 > :last-child, .framer-aEMRu .framer-1vl35jo > :last-child, .framer-aEMRu .framer-g99sin > :last-child { margin-bottom: 0px; } .framer-aEMRu .framer-zsome1 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-aEMRu .framer-zsome1 > :first-child, .framer-aEMRu .framer-4u17fo > :first-child, .framer-aEMRu .framer-1i2augo > :first-child, .framer-aEMRu .framer-1juo0kp > :first-child { margin-left: 0px; } .framer-aEMRu .framer-zsome1 > :last-child, .framer-aEMRu .framer-4u17fo > :last-child, .framer-aEMRu .framer-1i2augo > :last-child, .framer-aEMRu .framer-1juo0kp > :last-child { margin-right: 0px; } .framer-aEMRu .framer-ujwi7l > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-aEMRu .framer-4u17fo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-aEMRu .framer-1e77v3i > *, .framer-aEMRu .framer-1s6jgqy > *, .framer-aEMRu .framer-yzu44t > *, .framer-aEMRu .framer-1wvb4gb > *, .framer-aEMRu .framer-em1z13 > *, .framer-aEMRu .framer-g99sin > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-aEMRu .framer-ecmdz6 > *, .framer-aEMRu .framer-kb8557 > *, .framer-aEMRu .framer-1qbspa2 > *, .framer-aEMRu .framer-zj2lku > *, .framer-aEMRu .framer-1vl35jo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-aEMRu .framer-1i2augo > *, .framer-aEMRu .framer-1juo0kp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }}\",\"@media (max-width: 699px) { .framer-aEMRu.framer-72rtr7 { width: 390px; } .framer-aEMRu .framer-1wm0abd { height: 75vh; } .framer-aEMRu .framer-8636b0 { width: 90%; } .framer-aEMRu .framer-1lmsidi, .framer-aEMRu .framer-zsome1, .framer-aEMRu .framer-ecmdz6, .framer-aEMRu .framer-kb8557, .framer-aEMRu .framer-1qbspa2, .framer-aEMRu .framer-1vl35jo { gap: 8px; } .framer-aEMRu .framer-zhoohl { justify-content: flex-start; order: 0; } .framer-aEMRu .framer-thqbp9 { height: var(--framer-aspect-ratio-supported, 38px); width: 38px; } .framer-aEMRu .framer-4nuv8y { height: 38px; width: 38px; } .framer-aEMRu .framer-ujwi7l { flex-direction: column; gap: 16px; order: 1; } .framer-aEMRu .framer-1ecdioj { flex: none; max-width: unset; order: 1; width: 90%; } .framer-aEMRu .framer-4u17fo { order: 0; width: 100%; } .framer-aEMRu .framer-g5q09m { white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; } .framer-aEMRu .framer-u5pfsa { justify-content: flex-end; order: 2; } .framer-aEMRu .framer-16s4u15 { padding: 0px 0px 50px 0px; } .framer-aEMRu .framer-1e77v3i, .framer-aEMRu .framer-1s6jgqy, .framer-aEMRu .framer-yzu44t, .framer-aEMRu .framer-1wvb4gb, .framer-aEMRu .framer-em1z13 { gap: 32px; } .framer-aEMRu .framer-1iu31go { padding: 50px 0px 50px 0px; } .framer-aEMRu .framer-vwrlbv, .framer-aEMRu .framer-bwv9t1, .framer-aEMRu .framer-1i2augo, .framer-aEMRu .framer-1juo0kp { flex-direction: column; gap: 32px; justify-content: center; } .framer-aEMRu .framer-14js2ex, .framer-aEMRu .framer-b5cbbg, .framer-aEMRu .framer-zj2lku { gap: 16px; width: 100%; } .framer-aEMRu .framer-3jl2fs { height: 440px; } .framer-aEMRu .framer-b370di { bottom: -440px; height: 440px; } .framer-aEMRu .framer-zj6p13, .framer-aEMRu .framer-xnng3x { padding: 50px 0px 50px 0px; scroll-margin-top: unset; } .framer-aEMRu .framer-eexlj5, .framer-aEMRu .framer-q7x3al, .framer-aEMRu .framer-1vgo4h6-container, .framer-aEMRu .framer-25oa74-container, .framer-aEMRu .framer-32xbz8-container, .framer-aEMRu .framer-120dsbu-container { width: 100%; } .framer-aEMRu .framer-io9mdi { flex-direction: column; gap: 48px; justify-content: center; } .framer-aEMRu .framer-g99sin { gap: 32px; width: 100%; } .framer-aEMRu .framer-hs8by8 { padding: 50px 0px 100px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-aEMRu .framer-1lmsidi, .framer-aEMRu .framer-zsome1, .framer-aEMRu .framer-ujwi7l, .framer-aEMRu .framer-1e77v3i, .framer-aEMRu .framer-ecmdz6, .framer-aEMRu .framer-1s6jgqy, .framer-aEMRu .framer-yzu44t, .framer-aEMRu .framer-kb8557, .framer-aEMRu .framer-vwrlbv, .framer-aEMRu .framer-14js2ex, .framer-aEMRu .framer-b5cbbg, .framer-aEMRu .framer-1wvb4gb, .framer-aEMRu .framer-1qbspa2, .framer-aEMRu .framer-bwv9t1, .framer-aEMRu .framer-zj2lku, .framer-aEMRu .framer-em1z13, .framer-aEMRu .framer-1vl35jo, .framer-aEMRu .framer-io9mdi, .framer-aEMRu .framer-g99sin, .framer-aEMRu .framer-1i2augo, .framer-aEMRu .framer-1juo0kp { gap: 0px; } .framer-aEMRu .framer-1lmsidi > *, .framer-aEMRu .framer-ecmdz6 > *, .framer-aEMRu .framer-kb8557 > *, .framer-aEMRu .framer-1qbspa2 > *, .framer-aEMRu .framer-1vl35jo > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-aEMRu .framer-1lmsidi > :first-child, .framer-aEMRu .framer-ujwi7l > :first-child, .framer-aEMRu .framer-1e77v3i > :first-child, .framer-aEMRu .framer-ecmdz6 > :first-child, .framer-aEMRu .framer-1s6jgqy > :first-child, .framer-aEMRu .framer-yzu44t > :first-child, .framer-aEMRu .framer-kb8557 > :first-child, .framer-aEMRu .framer-vwrlbv > :first-child, .framer-aEMRu .framer-14js2ex > :first-child, .framer-aEMRu .framer-b5cbbg > :first-child, .framer-aEMRu .framer-1wvb4gb > :first-child, .framer-aEMRu .framer-1qbspa2 > :first-child, .framer-aEMRu .framer-bwv9t1 > :first-child, .framer-aEMRu .framer-zj2lku > :first-child, .framer-aEMRu .framer-em1z13 > :first-child, .framer-aEMRu .framer-1vl35jo > :first-child, .framer-aEMRu .framer-io9mdi > :first-child, .framer-aEMRu .framer-g99sin > :first-child, .framer-aEMRu .framer-1i2augo > :first-child, .framer-aEMRu .framer-1juo0kp > :first-child { margin-top: 0px; } .framer-aEMRu .framer-1lmsidi > :last-child, .framer-aEMRu .framer-ujwi7l > :last-child, .framer-aEMRu .framer-1e77v3i > :last-child, .framer-aEMRu .framer-ecmdz6 > :last-child, .framer-aEMRu .framer-1s6jgqy > :last-child, .framer-aEMRu .framer-yzu44t > :last-child, .framer-aEMRu .framer-kb8557 > :last-child, .framer-aEMRu .framer-vwrlbv > :last-child, .framer-aEMRu .framer-14js2ex > :last-child, .framer-aEMRu .framer-b5cbbg > :last-child, .framer-aEMRu .framer-1wvb4gb > :last-child, .framer-aEMRu .framer-1qbspa2 > :last-child, .framer-aEMRu .framer-bwv9t1 > :last-child, .framer-aEMRu .framer-zj2lku > :last-child, .framer-aEMRu .framer-em1z13 > :last-child, .framer-aEMRu .framer-1vl35jo > :last-child, .framer-aEMRu .framer-io9mdi > :last-child, .framer-aEMRu .framer-g99sin > :last-child, .framer-aEMRu .framer-1i2augo > :last-child, .framer-aEMRu .framer-1juo0kp > :last-child { margin-bottom: 0px; } .framer-aEMRu .framer-zsome1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-aEMRu .framer-zsome1 > :first-child { margin-left: 0px; } .framer-aEMRu .framer-zsome1 > :last-child { margin-right: 0px; } .framer-aEMRu .framer-ujwi7l > *, .framer-aEMRu .framer-14js2ex > *, .framer-aEMRu .framer-b5cbbg > *, .framer-aEMRu .framer-zj2lku > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-aEMRu .framer-1e77v3i > *, .framer-aEMRu .framer-1s6jgqy > *, .framer-aEMRu .framer-yzu44t > *, .framer-aEMRu .framer-vwrlbv > *, .framer-aEMRu .framer-1wvb4gb > *, .framer-aEMRu .framer-bwv9t1 > *, .framer-aEMRu .framer-em1z13 > *, .framer-aEMRu .framer-g99sin > *, .framer-aEMRu .framer-1i2augo > *, .framer-aEMRu .framer-1juo0kp > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-aEMRu .framer-io9mdi > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8862\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KgFr3cV7Q\":{\"layout\":[\"fixed\",\"auto\"]},\"UM7KdNSMp\":{\"layout\":[\"fixed\",\"auto\"]},\"wABAVcF8G\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WXEvs15Nb\":{\"pattern\":\":WXEvs15Nb\",\"name\":\"hero\"},\"Z3BRhQBLc\":{\"pattern\":\":Z3BRhQBLc\",\"name\":\"work\"},\"TBGjGfAkI\":{\"pattern\":\":bLIQBTiry-:TBGjGfAkI\",\"name\":\"work-item\",\"slugs\":{\"bLIQBTiry\":{\"identifier\":\"local-module:collection/Zkvdlupon:default\",\"provider\":\"BaRi3rqbG\"}}},\"rNXXw9MRv\":{\"pattern\":\":rNXXw9MRv\",\"name\":\"about\"},\"lUoCtpIie\":{\"pattern\":\":lUoCtpIie\",\"name\":\"experience\"},\"geYTen6yx\":{\"pattern\":\":geYTen6yx\",\"name\":\"services\"},\"VNd1a6bvc\":{\"pattern\":\":VNd1a6bvc\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-aEMRu\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8862,width:1440};addFonts(FrameraugiA20Il,[{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\"}]},...OtherNavbarFonts,...OtherProjectItemFonts,...ExperienceItemFonts,...ServicesItemFonts,...TickerLFonts,...TickerSFonts,...OtherFooterFonts,...SmoothScrollFonts,...OtherCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KgFr3cV7Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UM7KdNSMp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wABAVcF8G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"WXEvs15Nb\\\":{\\\"pattern\\\":\\\":WXEvs15Nb\\\",\\\"name\\\":\\\"hero\\\"},\\\"Z3BRhQBLc\\\":{\\\"pattern\\\":\\\":Z3BRhQBLc\\\",\\\"name\\\":\\\"work\\\"},\\\"TBGjGfAkI\\\":{\\\"pattern\\\":\\\":bLIQBTiry-:TBGjGfAkI\\\",\\\"name\\\":\\\"work-item\\\",\\\"slugs\\\":{\\\"bLIQBTiry\\\":{\\\"identifier\\\":\\\"local-module:collection/Zkvdlupon:default\\\",\\\"provider\\\":\\\"BaRi3rqbG\\\"}}},\\\"rNXXw9MRv\\\":{\\\"pattern\\\":\\\":rNXXw9MRv\\\",\\\"name\\\":\\\"about\\\"},\\\"lUoCtpIie\\\":{\\\"pattern\\\":\\\":lUoCtpIie\\\",\\\"name\\\":\\\"experience\\\"},\\\"geYTen6yx\\\":{\\\"pattern\\\":\\\":geYTen6yx\\\",\\\"name\\\":\\\"services\\\"},\\\"VNd1a6bvc\\\":{\\\"pattern\\\":\\\":VNd1a6bvc\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"8862\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "k/CACsE,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EAAE,IAAMC,GAAa,uEACtb,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,GAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAaD,EAAO,EAAK,EAAQE,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACR,EAAS,QAAQ,OAAO,IAAMS,GAAaD,IAAc,EAAE,KAAKA,GAAaR,EAAS,QAAQ,SAAeU,EAAa,KAAK,IAAIV,EAAS,QAAQ,YAAYS,CAAW,EAAE,GAAMT,EAAS,QAAQ,SAAS,GAAG,CAACU,IAAcV,EAAS,QAAQ,YAAYS,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAC,IAAMK,EAAMZ,EAAS,QAAQ,GAAG,CAACY,EAAM,OAAOA,EAAM,QAAQ,OACtjB,EAAhHA,EAAM,YAAY,GAAGA,EAAM,WAAW,CAACA,EAAM,QAAQ,CAACA,EAAM,OAAOA,EAAM,YAAYA,EAAM,oBAAiCA,GAAO,CAACT,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKE,EAAa,QAAQ,GAAKO,EAAM,KAAK,EAAE,MAAMC,GAAG,CAAC,CAAC,EACvR,QAAQ,IAAIV,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQW,EAAMP,GAAY,IAAI,CAAI,CAACP,EAAS,SAASG,EAAe,UAAeH,EAAS,QAAQ,MAAM,EAAEK,EAAa,QAAQ,GAAM,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAM,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAUD,CAAY,CAAE,CAAC,SAASU,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE7hBJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAAC,IAAM5B,GAAuB6B,GAAK,SAAoB1C,EAAM,CAAC,GAAK,CACzO,QAAA2C,EAAQ,MAAM,OAAAC,EAAO,QAAAC,EAAQ,GAAG,cAAAC,EAAc,GAAM,SAAAX,EAAS,GAAM,QAAAY,EAAQ,GAAK,KAAAd,EAAK,GAAK,MAAAD,EAAM,GAAK,YAAAE,EAAY,GAAK,eAAAc,GAAe,GAAM,UAAAC,GAAU,QAAQ,gBAAAC,GAAgB,gBAAgB,OAAAC,GAAO,EAAE,OAAAC,GAAO,GAAG,UAAUC,GAAc,EAAE,OAAAC,EAAO,QAAQvB,EAAY,SAAAwB,EAAS,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,GAAM,QAAAC,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,EAAS,EAAEhE,EAAYe,EAASI,EAAO,EAAQ8C,GAASC,GAAmB,EAAQC,GAAiBhD,EAAO,IAAI,EAAQiD,EAAgBjD,EAAO,IAAI,EAAQkD,GAAWC,GAAc,EAAQC,EAAaC,GAAgB,EAAQC,EAAiBJ,IAAYE,IAAeG,GAAa,OAAaC,EAAaC,GAAU5E,CAAK,EAGtpB6E,EAAiBJ,EAAiB,cAAc3C,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQ2C,GAAaL,EAAiB,GAAKM,GAAUhE,CAAQ,EAAQiE,GAAkBP,EAAiB,GAAMM,GAAUhE,EAAS,CAAC,OAAO,MAAM,KAAK,EAAI,CAAC,EAC1QkE,EAAU5B,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAA3B,EAAK,MAAAG,EAAM,YAAAR,GAAY,UAAA6D,CAAS,EAAEpE,GAAoBC,CAAQ,EAC3HoE,EAAU,IAAI,CAAIV,GAA2BI,IAAmB,gBAAwB9C,EAAYL,EAAK,EAAOG,EAAM,EAAE,EAAE,CAACgD,EAAiB9C,CAAW,CAAC,EACxJoD,EAAU,IAAI,CAAIV,IACfK,IAAc/C,GAAa8C,IAAmB,eAAcnD,EAAK,EAAKmD,IAAmB,eAAqBhD,EAAM,EAAE,EAAE,CAACgD,EAAiBC,GAAa/C,CAAW,CAAC,EAAEoD,EAAU,IAAI,CAAI,CAACd,IAAYf,GAAQR,GAAemC,GAAW,CAAClE,EAAS,UACnPA,EAAS,QAAQ,YAAY,IAAI,EAAE,CAAC+B,EAAcQ,EAAO2B,CAAS,CAAC,EAO5D,IAAMG,GAAoCjE,EAAO,EAAK,EAE7DgE,EAAU,IAAI,CAAC,GAAG,CAACC,GAAoC,QAAQ,CAACA,GAAoC,QAAQ,GAAK,MAAO,CAAC,IAAMC,EAAiBC,GAAc/B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAAU,GAAG,IAAIlC,IAKxMgE,GAAkB,KAOlBJ,GAAW,GAAG,GAAG,CAAE,EAAE,CAACA,EAAUpC,EAAQD,EAAOW,CAAQ,CAAC,EACzD4B,EAAU,IAAI,CAAC,GAAIG,GAAc/B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAASgC,GAAOlE,GAAYkE,CAAK,CAAC,CAAE,EAAE,CAAChC,CAAQ,CAAC,EACrHiC,GAAW,IAAI,CAAIrB,GAAiB,UAAU,MAAepD,EAAS,UACnE,CAACqD,GAAiBnC,GAAM,CAACkC,GAAiB,UAAQzC,EAAK,CAAG,CAAC,EAC9D+D,GAAU,IAAI,CAAI1E,EAAS,UAASqD,EAAgB,QAAQrD,EAAS,QAAQ,MAAMoD,GAAiB,QAAQpD,EAAS,QAAQ,OAAOc,EAAM,EAAG,CAAC,EAAE,IAAM6D,GAAIC,EAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGjD,IAAU,MAAM,OAAOC,EAAOgD,EAAS,GAAGjD,IAAU,SAAS,OAAOE,EAAQ+C,CAAS,EAAE,CAACjD,EAAQE,EAAQD,EAAOqC,CAAS,CAAC,EAC5HE,EAAU,IAAI,CAAIlB,IAAUlD,EAAS,SAAS8D,IAAmB,YAAY,WAAW,IAAInD,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GyD,EAAU,IAAI,CAAIpE,EAAS,SAAS,CAACiB,IAAMjB,EAAS,QAAQ,QAAQqC,IAAQ,GAAG,IAAI,EAAE,CAACA,EAAM,CAAC,EAC7F,IAAMyC,GAAY,IAAI,CAAC,IAAMlE,EAAMZ,EAAS,QAAYY,IAAgBA,EAAM,YAAY,IAAIsD,EAAU,GAAE5D,IAAa4D,GAAW,GAAG,GAAG,GACxIC,EAAU,SAASL,IAAmB,YAAY9C,GAAa8C,IAAmB,eAAeC,KAAapD,EAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAAgD,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,IAAI0B,GAAI,KAAKzD,EAAK,IAAIlB,EAAS,SAASa,GAAG4B,IAAW5B,CAAC,EAAE,QAAQA,GAAG6B,IAAU7B,CAAC,EAAE,OAAOA,GAAG8B,IAAS9B,CAAC,EAAE,QAAQA,GAAG+B,KAAQ/B,CAAC,EAAE,SAASsD,EAAU,SAASL,IAAmB,YAAY9C,GAAa8C,IAAmB,eAAeC,GAAa,QAAQI,EAAU,QAAQ,OAAOT,GAAkB,CAACnB,EAAO,WAAWuB,IAAmB,YAAY,CAACG,GAAkB,OAC7jB,WAAW,OAAOlC,GAAe,CAACD,GAASD,IAAS9C,GAAa,sEAAsEgD,GAAeQ,EAAOA,EAAO,OAAU,aAAauC,GAAY,SAAS1D,EAAS,MAAMsC,EAAiB,GAAKzC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAAS0B,GAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,EAAa,QAAQ,QAAQ,UAAU1B,GAAU,gBAAgBC,GAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAExC,GAAM,YAAY,QAAQ,SAASoF,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA0E,OAA5DA,EAAM,MAAM,0CAA0C,GAAG,CAAC,GAAgB,IAAIO,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoBvF,GAAM,CAAC,QAAQ,CAAC,KAAKwF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,uEAAuE,OAAOlG,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAKkG,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOlG,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKkG,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,GAAGC,GAAoB,cAAc,CAAC,KAAKD,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,OAAO,CAAC,CAAC,cAAApD,CAAa,IAAI,CAACA,EAAc,YAAY,uHAAuH,EAAE,gBAAgB,CAAC,KAAKoD,EAAY,MAAM,MAAM,aAAa,aAAa,eAAe,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMx+D,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAlE,CAAK,IAAIA,EAAM,aAAa,EAAE,EAAE,MAAM,CAAC,KAAKkE,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,EC3EkB,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,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,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAuCuB,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGvB,GAAUmB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,GAAgB,UAAUS,EAAGD,EAAkB,gBAAgBf,EAAUK,CAAU,EAAE,mBAAmB,aAAa,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAAKuB,EAAK,MAAM,CAAC,GAAGnB,CAAK,EAAE,SAAsBjB,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,+BAA+B,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,2HAA2H,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,gFAAgF,kQAAkQ,0GAA0G,uUAAuU,6PAA6P,wUAAwU,wUAAwU,yUAAyU,oLAAoL,upCAAupC,EAQ52TC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,GAAW,GAAGC,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRqL,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,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,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,eAAe,YAAY,QAAAV,EAAQ,kBAAAW,EAAiB,CAAC,EAAQC,EAAiBvB,GAAuBD,EAAME,CAAQ,EAAuCuB,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBzC,EAAK0C,EAAY,CAAC,GAAGvB,GAAUmB,EAAgB,SAAsBtC,EAAKC,GAAS,CAAC,QAAQS,EAAS,QAAQ,GAAM,SAAsBV,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGmB,EAAU,GAAGI,GAAgB,UAAUS,EAAGD,EAAkB,iBAAiBf,EAAUK,CAAU,EAAE,mBAAmB,aAAa,iBAAiBS,EAAiB,SAAS,YAAY,IAAInB,GAAKuB,EAAK,MAAM,CAAC,GAAGnB,CAAK,EAAE,SAAsBjB,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK4C,GAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,qBAAqB,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oBAAoB,EAAE,SAAsBhC,EAAK6C,EAAM,CAAC,WAAW,CAAC,IAAI,+BAA+B,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,KAAK,WAAW,IAAI,MAAM,YAAY,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,eAAe,mBAAmB,QAAQ,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBhC,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAK8C,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,2HAA2H,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,gFAAgF,oQAAoQ,0GAA0G,sUAAsU,0PAA0P,uUAAuU,2TAA2T,4TAA4T,qLAAqL,2pCAA2pC,EAQz0TC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGI,GAAW,GAAGC,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRyH,IAAMC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,SAAAC,EAAS,MAAAC,EAAM,WAAAC,EAAW,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUD,GAAYC,EAAM,WAAW,kBAAa,UAAUH,GAAUG,EAAM,WAAW,cAAc,UAAUN,GAAaM,EAAM,WAAW,QAAQ,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,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,EAAS,EAAEvB,GAASO,CAAK,EAAO,CAAC,YAAAiB,GAAY,WAAAC,GAAW,oBAAAC,GAAoB,gBAAAC,GAAgB,eAAAC,GAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAtB,CAAQ,EAAEuB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAd,EAAQ,kBAAAe,EAAiB,CAAC,EAAQC,EAAiB3B,GAAuBD,EAAME,CAAQ,EAAQ2B,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,GAAsB,CAAavB,EAAS,EAAQwB,GAAkBC,EAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGzB,GAAUoB,GAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQY,EAAS,QAAQ,GAAM,SAAsBb,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGyB,GAAU,GAAGI,GAAgB,UAAUiB,EAAGC,GAAkB,GAAGL,GAAsB,iBAAiBvB,EAAUQ,EAAU,EAAE,mBAAmB,YAAY,iBAAiBU,EAAiB,SAAS,YAAY,IAAIvB,GAAKwB,EAAK,MAAM,CAAC,GAAGpB,CAAK,EAAE,SAAsB8B,EAAMhD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAexB,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAezB,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,iBAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,KAAKb,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,kFAAkF,qQAAqQ,sRAAsR,kMAAkM,mKAAmK,+WAA+W,GAAeA,EAAG,EASx9KC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,SAAS,gBAAgB,GAAM,MAAM,eAAe,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,kBAAa,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,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,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTpqEC,GAAU,UAAU,CAAC,uBAAuB,6BAA6B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,03BAA83B,i7BAAq7B,+6BAAm7B,26BAA+6B,EAAeC,GAAU,eCAz2E,IAAMC,GAAiBC,EAASC,EAAW,EAAQC,EAAgBC,GAAOC,EAAS,EAAQC,GAAyCC,GAA0BH,GAAOI,EAAO,GAAG,CAAC,EAAQC,GAAmCF,GAA0BC,EAAO,GAAG,EAAQE,GAAsBT,EAASU,EAAgB,EAAQC,GAAeR,GAAOS,CAAQ,EAAQC,GAAgBV,GAAOI,EAAO,GAAG,EAAQO,GAAoBd,EAASe,EAAc,EAAQC,GAAkBhB,EAASiB,EAAY,EAAQC,GAAalB,EAASmB,EAAO,EAAQC,GAAapB,EAASqB,EAAO,EAAQC,GAAiBtB,EAASuB,EAAW,EAAQC,GAAkBxB,EAASyB,EAAY,EAAQC,GAAiB1B,EAAS2B,EAAW,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,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,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,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,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,OAAOF,GAAW,WAAW,IAAI,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQE,GAAY,CAAC,OAAOH,GAAW,WAAW,IAAI,aAAa,OAAO,WAAWC,GAAY,QAAQ,UAAU,KAAK,QAAQ,EAAQG,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,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,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,KAAK,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,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,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,CAAC,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,IAAI,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,IAAI,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAa,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAa,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,MAAM,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,KAAK,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAU,CAAC,CAAC,MAAArC,CAAK,IAAoBsC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOvC,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUwC,GAAwB,CAAC,EAAE,YAAY,EAAE,YAAY,EAAE,YAAY,GAAG,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,GAAa,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAO,CAAC,UAAU7E,GAAY,WAAW4E,GAAa,QAAQ,WAAW,EAAQE,GAAQ,CAAC,UAAU,SAAS,UAAU9E,GAAY,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,WAAW4E,GAAa,QAAQ,WAAW,EAAQG,GAAQ,CAAC,UAAU,SAAS,UAAU/E,GAAY,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,WAAW4E,GAAa,QAAQ,WAAW,EAAQI,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,GAAQ,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,EAAY,GAAGC,CAAS,EAAEhC,GAASI,CAAK,EAAQ6B,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUjB,CAAY,EAAE,GAAGiB,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUlB,CAAY,CAAC,EAAQmB,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUjB,CAAY,EAAE,SAAS,MAAMiB,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUjB,CAAY,CAAC,EAAE,GAAK,CAACoB,EAAYC,CAAmB,EAAEC,GAA8Bd,GAAQ/F,GAAY,EAAK,EAAQ8G,EAAe,OAA8MC,GAAkBC,EAAG9G,GAAkB,GAA/M,CAAa2F,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQoB,GAAOC,GAAU,EAAQC,GAAUC,EAAkB,WAAW,EAAQC,GAAWlC,EAAO,IAAI,EAAQmC,GAAWF,EAAkB,WAAW,EAAQG,GAAWpC,EAAO,IAAI,EAAQqC,EAAWJ,EAAkB,WAAW,EAAQK,GAAWC,GAAe,EAAQC,GAAWP,EAAkB,WAAW,EAAQQ,EAAWzC,EAAO,IAAI,EAAQ0C,GAAWT,EAAkB,WAAW,EAAQU,EAAW3C,EAAO,IAAI,EAAQ4C,EAAWX,EAAkB,WAAW,EAAQY,EAAW7C,EAAO,IAAI,EAAQ8C,EAAY,IAAShI,GAAU,EAAiB0G,IAAc,YAAtB,GAAmEuB,GAAa,IAAQ,CAACjI,GAAU,GAAiB0G,IAAc,YAA6CwB,GAAWf,EAAkB,WAAW,EAAQgB,EAAWjD,EAAO,IAAI,EAAE,OAAAkD,GAAiB,CAAC,UAAUzD,GAAO,OAAOE,GAAQ,OAAOD,EAAO,CAAC,EAAsBT,EAAKkE,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAnI,EAAiB,EAAE,SAAsBoI,EAAMC,EAAY,CAAC,GAAG1C,GAAUT,EAAgB,SAAS,CAAcjB,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeqE,EAAM5J,EAAO,IAAI,CAAC,GAAG2H,EAAU,UAAUU,EAAGD,GAAkB,gBAAgBlB,CAAS,EAAE,qBAAqB,UAAU,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcxB,EAAKqE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BtE,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAMjD,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBtB,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,0BAA0B,CAAC,UAAU,OAAO,OAAOrG,EAAU,CAAC,EAAE,UAAU,CAAC,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAU,CAAC,CAAC,EAAE,SAAsB6D,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAS,EAAE,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB+D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+B,EAAc,CAAC,EAAE,QAAQ,YAAY,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,YAAY,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,YAAY,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBtE,EAAK/F,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,SAAS,SAAS,YAAY,UAAU,kBAAkB,UAAUqK,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUA,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetE,EAAK,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,GAAG+C,GAAU,IAAIE,GAAK,SAAsBjD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBmE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcnE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ/F,GAAW,QAAQC,EAAU,CAAC,EAAE,SAAsBuD,EAAK3F,GAAyC,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,QAAQgC,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,OAAO,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB6H,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,0qBAA0qB,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,4qBAA4qB,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,yqBAAyqB,aAAa,WAAW,CAAC,EAAE,SAAsBvC,EAAKyE,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,QAAQ,EAAE,IAAI,0rBAA0rB,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezE,EAAKpF,EAAS,CAAC,sBAAsB,GAAK,SAAsBoF,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcnE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO1F,EAAW,CAAC,EAAE,SAAsBmD,EAAKpF,EAAS,CAAC,sBAAsB,GAAK,SAAsBoF,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,2JAA2J,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,OAAOpD,GAAW,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeoD,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQrF,GAAY,QAAQC,EAAW,CAAC,EAAE,SAAsB6C,EAAKxF,GAAmC,CAAC,QAAQuC,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,OAAO,QAAQC,GAAW,UAAU,GAAK,SAAsBgD,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBvC,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpF,EAAS,CAAC,sBAAsB,GAAK,SAAsBoF,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,6BAA6B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,QAAQhF,GAAY,QAAQd,EAAU,CAAC,EAAE,SAAsBuD,EAAK3F,GAAyC,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,QAAQgD,GAAY,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,OAAO,QAAQf,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB0D,EAAKpF,EAAS,CAAC,sBAAsB,GAAK,SAAsBoF,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGkD,GAAW,IAAIC,GAAK,SAAsBgB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcnE,EAAKpF,EAAS,CAAC,sBAAsB,GAAK,SAAsBoF,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKpF,EAAS,CAAC,sBAAsB,GAAK,SAAsBoF,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,eAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK2E,GAAmB,CAAC,SAAsB3E,EAAKtC,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkH,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACC,EAAWC,EAAeC,KAAwB/E,EAAKgF,GAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAUjD,EAAmB,UAAUI,GAAmB,UAAUH,GAAmB,GAAGI,GAAY,UAAUF,EAAmB,UAAUD,EAAkB,EAAEmD,MAASrD,IAAqB,GAAGE,KAAqB,GAAGC,IAAqB,GAAGC,KAAqB,GAAuBhC,EAAKoE,EAAY,CAAC,GAAG,aAAanC,EAAW,GAAG,SAAsBjC,EAAKkF,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUtD,CAAkB,EAAE,SAAsB5B,EAAKqE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUzC,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASuD,IAA6BnF,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,KAAK,EAAE,CAAC,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjD,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,SAAsBtB,EAAK5F,GAAU,CAAC,UAAU,2BAA2B,GAAG,GAAGwH,CAAkB,IAAIwB,CAAU,GAAG,OAAO,YAAY,IAAIC,GAAW,GAAGzB,CAAkB,IAAIwB,CAAU,EAAE,EAAE,QAAQ,YAAY,SAAsBpD,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,UAAU4C,GAAe,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,GAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,OAAU,QAAQ,YAAY,UAAUA,GAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnF,EAAKtF,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUoH,GAAmB,SAAS,YAAY,UAAU,SAAS,UAAUuB,GAAW,GAAGzB,CAAkB,IAAIwB,CAAU,EAAE,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU5F,GAAkBqE,EAAkB,EAAE,UAAUsD,GAAe,CAAC,EAAE,UAAUnD,GAAmB,UAAUD,CAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEE,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,GAAGuD,GAAW,IAAIC,EAAK,SAAsBW,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWrE,EAAY,CAAC,CAAC,EAAE,SAAsB8B,EAAKrF,GAAe,CAAC,kBAAkB,CAAC,WAAWsD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAIwF,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBxD,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgBlE,EAAW,CAAC,EAAE,SAAsB2B,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAWuD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAIqF,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,eAAe,mBAAmB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW/D,EAAY,EAAE,gBAAgBR,EAAY,kBAAkB,OAAU,oBAAoB,CAAC,CAAC,EAAE,SAAsBgC,EAAKrF,GAAe,CAAC,kBAAkB,CAAC,WAAW4D,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAIkF,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBxD,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sVAAsV,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBmE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcnE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgB5D,EAAW,EAAE,UAAU,CAAC,gBAAgBC,EAAW,EAAE,UAAU,CAAC,kBAAkB,CAAC,WAAWE,EAAY,EAAE,gBAAgBD,GAAY,kBAAkB,OAAU,oBAAoB,CAAC,CAAC,EAAE,SAAsBmB,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAW6D,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAI+E,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,CAAC,CAAC,EAAexD,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,IAA2B9D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,aAAa,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ8D,IAA2B9D,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,uEAAuE,OAAO,wKAAwK,CAAC,CAAC,EAAE,SAAsBtB,EAAKqF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,IAA2B9D,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetB,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,GAAGyD,GAAW,IAAIC,EAAK,SAAsBS,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWrE,EAAY,CAAC,CAAC,EAAE,SAAsB8B,EAAKrF,GAAe,CAAC,kBAAkB,CAAC,WAAWsD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB1D,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgBvD,EAAW,CAAC,EAAE,SAAsBgB,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAWuD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBW,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI2E,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKrF,GAAe,CAAC,kBAAkB,CAAC,WAAWuE,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIyE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB1D,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uKAAuK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAemE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcnE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQjD,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWiF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBnB,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1D,EAAKjF,GAAe,CAAC,UAAU,kBAAa,OAAO,OAAO,GAAG,YAAY,UAAU,oBAAoB,SAAS,YAAY,UAAU,OAAO,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAWwE,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,IAAI,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAe1D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQjD,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWoF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBtB,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1D,EAAKjF,GAAe,CAAC,UAAU,mBAAc,OAAO,OAAO,GAAG,YAAY,UAAU,kBAAkB,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAW0E,EAAY,EAAE,sBAAsB,GAAK,gBAAgBH,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,IAAI,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAe1D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQjD,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWsF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBxB,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,WAAW,CAAC,EAAE,SAAsBvC,EAAKjF,GAAe,CAAC,UAAU,mBAAc,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,gBAAgB,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAW4E,EAAY,EAAE,sBAAsB,GAAK,gBAAgBL,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,IAAI,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAe1D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQjD,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWwF,EAAY,EAAE,sBAAsB,GAAK,gBAAgB1B,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1D,EAAKjF,GAAe,CAAC,UAAU,mBAAc,OAAO,OAAO,GAAG,YAAY,UAAU,iBAAiB,SAAS,YAAY,UAAU,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAW8E,EAAY,EAAE,sBAAsB,GAAK,gBAAgBP,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAIsE,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,IAAI,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAe1D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQjD,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAW0F,EAAY,EAAE,sBAAsB,GAAK,gBAAgB5B,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI0F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB1D,EAAKjF,GAAe,CAAC,UAAU,mBAAc,OAAO,OAAO,GAAG,YAAY,UAAU,gBAAgB,SAAS,YAAY,UAAU,MAAM,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,GAAG2D,EAAW,IAAIC,EAAK,SAAsBO,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWrE,EAAY,CAAC,CAAC,EAAE,SAAsB8B,EAAKrF,GAAe,CAAC,kBAAkB,CAAC,WAAWsD,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI4F,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5D,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgBvD,EAAW,CAAC,EAAE,SAAsBgB,EAAKnF,GAAgB,CAAC,kBAAkB,CAAC,WAAWuD,EAAY,EAAE,sBAAsB,GAAK,gBAAgBW,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI6E,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcnE,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBA,EAAKrF,GAAe,CAAC,kBAAkB,CAAC,WAAWuE,EAAY,EAAE,sBAAsB,GAAK,gBAAgBD,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI2E,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsB5D,EAAW0E,EAAS,CAAC,SAAsB1E,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sJAAsJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAemE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAcnE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,6BAA6B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjD,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWiF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBU,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB5D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBvC,EAAK/E,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,UAAU,2GAA2G,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,6BAA6B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjD,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWoF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBO,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB5D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,YAAY,QAAQ,WAAW,CAAC,EAAE,SAAsBvC,EAAK/E,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,UAAU,8FAA8F,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gBAAgB,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekJ,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAcnE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,6BAA6B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjD,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWsF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBK,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB5D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,YAAY,QAAQ,WAAW,CAAC,EAAE,SAAsBvC,EAAK/E,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,UAAU,kGAAkG,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,mBAAmB,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,6BAA6B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQjD,GAAmB,OAAO,OAAO,aAAa,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,SAAsBtB,EAAK9F,EAAgB,CAAC,kBAAkB,CAAC,WAAWwF,EAAY,EAAE,sBAAsB,GAAK,gBAAgBG,GAAY,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,IAAI,IAAI+D,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsB5D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,YAAY,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,YAAY,QAAQ,WAAW,CAAC,EAAE,SAAsBvC,EAAK/E,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,YAAY,UAAU,4GAA4G,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,gBAAgB,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBmE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAACN,EAAY,GAAgB7D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAMjD,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,SAAsBtB,EAAK5F,GAAU,CAAC,UAAU,wCAAwC,OAAO,YAAY,QAAQ,YAAY,SAAsB4F,EAAK7E,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2I,GAAa,GAAgB9D,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAMjB,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,SAAsBvE,EAAK5F,GAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB4F,EAAK3E,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAKqE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASiB,GAA6BtF,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGjB,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBtB,EAAKuE,EAA0B,CAAC,OAAO,IAAI,MAAMjD,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBtB,EAAK9F,EAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,GAAG6J,GAAW,OAAO,YAAY,IAAIC,EAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBhE,EAAKwE,EAAkB,CAAC,WAAWjC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQ,YAAY,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBtF,EAAKzE,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,SAAS,QAAQ,YAAY,MAAM,OAAO,UAAU+J,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetF,EAAKuE,EAA0B,CAAC,SAAsBvE,EAAK5F,GAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB4F,EAAKvE,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuE,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuF,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,6HAA6H,kWAAkW,iRAAiR,gRAAgR,iRAAiR,6VAA6V,+QAA+Q,iUAAiU,gGAAgG,oIAAoI,4QAA4Q,uLAAuL,yVAAyV,yQAAyQ,2VAA2V,mOAAmO,wXAAwX,+QAA+Q,2WAA2W,oWAAoW,sRAAsR,mQAAmQ,0LAA0L,0XAA0X,mVAAmV,0YAA0Y,2RAA2R,oIAAoI,8QAA8Q,wQAAwQ,qOAAqO,gHAAgH,ibAAib,4SAA4S,8QAA8Q,sRAAsR,uSAAuS,8QAA8Q,iOAAiO,yXAAyX,wRAAwR,0GAA0G,yGAAyG,o8LAAo8L,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,mnCAAmnC,ihKAAihK,86LAA86L,EAWrjmFC,GAAgBC,EAAQ9E,GAAU4E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,EAASH,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,GAAGzL,GAAiB,GAAGU,GAAsB,GAAGK,GAAoB,GAAGE,GAAkB,GAAGE,GAAa,GAAGE,GAAa,GAAGE,GAAiB,GAAGE,GAAkB,GAAGE,GAAiB,GAAGkK,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACzyE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,OAAO,uBAAyB,GAAG,yBAA2B,OAAO,oCAAsC,oMAA0O,sBAAwB,IAAI,yBAA2B,QAAQ,qBAAuB,8eAAgkB,sBAAwB,OAAO,4BAA8B,OAAO,6BAA+B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "TickerFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "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", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Ticker", "Image2", "Video", "css", "FramerKAc5nUCF9", "withCSS", "KAc5nUCF9_default", "addFonts", "VideoFonts", "TickerFonts", "VideoFonts", "getFonts", "Video", "TickerFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "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", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "ComponentViewportProvider", "Ticker", "Image2", "Video", "css", "FramerZGyrH39SW", "withCSS", "ZGyrH39SW_default", "addFonts", "VideoFonts", "TickerFonts", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "companyName", "height", "id", "position", "width", "workPeriod", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "qutczNra7", "KyUXwk1NH", "bcsoHLm3R", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "u", "RichText", "css", "FramerZk8clKOE8", "withCSS", "Zk8clKOE8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "OtherNavbarFonts", "getFonts", "HL_EQSrls_default", "ContainerWithFX", "withFX", "Container", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "MotionDivWithOptimizedAppearEffect", "OtherProjectItemFonts", "Njn1NqLrB_default", "RichTextWithFX", "RichText", "MotionDivWithFX", "ExperienceItemFonts", "Zk8clKOE8_default", "ServicesItemFonts", "CPLwfz2u4_default", "TickerLFonts", "ZGyrH39SW_default", "TickerSFonts", "KAc5nUCF9_default", "OtherFooterFonts", "MacMGWWSq_default", "SmoothScrollFonts", "SmoothScroll", "OtherCursorFonts", "ep1UioeL9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "animation5", "animation6", "animation7", "transition4", "textEffect", "textEffect1", "transition5", "animation8", "animation9", "transition6", "animation10", "animation11", "transition7", "animation12", "transition8", "animation13", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation14", "transition9", "transition10", "animation15", "transition11", "animation16", "animation17", "transition12", "transition13", "animation18", "transition14", "animation19", "animation20", "animation21", "transition15", "animation22", "animation23", "animation24", "transition16", "transition17", "animation25", "transition18", "transition19", "transition20", "transition21", "transition22", "transition23", "transition24", "transition25", "animation26", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition26", "cursor", "cursor1", "cursor2", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "bLIQBTiryBaRi3rqbG", "GDvoA3RGYBaRi3rqbG", "UtN4reIvsBaRi3rqbG", "muQAVxqeEBaRi3rqbG", "eT7rRspYTBaRi3rqbG", "idBaRi3rqbG", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "dynamicRef", "useDynamicRefs", "elementId3", "ref3", "elementId4", "ref4", "elementId5", "ref5", "isDisplayed", "isDisplayed1", "elementId6", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "SVG", "x", "ChildrenCanSuspend", "Zkvdlupon_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks1", "getLoadingLazyAtYPosition", "Image2", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
