{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js", "ssg:https://framerusercontent.com/modules/bIHKfB7YyhUWxushoS9b/zh4yGV7MWxY64fetpIXF/FdfW9MX9M.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(!videoRef.current)return;if(videoRef.current.currentTime<.3)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/IZ0vSV62Dv7ax4rBiGUk/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/nKdivbGlMSkLhnu9QD7h/CkzFS79YSqrcCnPHVceH/mXBORgqMm.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mHuGHyJ6iAHFIv8sDYtm/HEpePVjMKmAIAuHIynRX/NtLShZYQo.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/AHmvv2QgEO00baGJIVha/jx43rphRGHcPcwbNePCc/qvBIK5gnM.js\";const VideoFonts=getFonts(Video);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"reAVZtSY2\",\"kytcBTnCw\",\"ml6dMxWmS\",\"Rphh8szeN\",\"kIcsdLyrA\",\"wuh5u69oY\",\"xlKuZT9H5\",\"S_O7sekVM\"];const serializationHash=\"framer-1buGK\";const variantClassNames={kIcsdLyrA:\"framer-v-cdt967\",kytcBTnCw:\"framer-v-1vt62ay\",ml6dMxWmS:\"framer-v-1ylw22p\",reAVZtSY2:\"framer-v-1ofg01q\",Rphh8szeN:\"framer-v-1r9ydmn\",S_O7sekVM:\"framer-v-y2r8b1\",wuh5u69oY:\"framer-v-1iqgm59\",xlKuZT9H5:\"framer-v-1b00gwo\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:40,delay:0,mass:2.5,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-8};const transition3={damping:40,delay:0,mass:2,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,y:-8};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - Video\":\"kIcsdLyrA\",\"Mobile - Video\":\"xlKuZT9H5\",\"Tablet - Video\":\"wuh5u69oY\",\"Widescreen - Video\":\"S_O7sekVM\",Desktop:\"reAVZtSY2\",Mobile:\"kytcBTnCw\",Tablet:\"ml6dMxWmS\",Widescreen:\"Rphh8szeN\"};const getProps=({border,chooseFile,color,height,id,image,link,subheadingColor,subtitle,title,titleLink,uRL,video,visible,width,...props})=>{return{...props,DMSVg9QvO:visible??props.DMSVg9QvO??true,F1R96iuTh:uRL??props.F1R96iuTh,KHV2J58tA:link??props.KHV2J58tA,LjBjTej9F:title??props.LjBjTej9F??\"Silicon Valley Bank\",oacQIDGYG:subheadingColor??props.oacQIDGYG??\"var(--token-b8fc3dae-bb1d-4ec1-9089-6eda79f0e84d, rgb(120, 120, 125))\",Py2GM0yNq:color??props.Py2GM0yNq??\"var(--token-89455328-105f-42d2-9847-d1fa87418689, rgb(41, 41, 41))\",QacfEjbYJ:image??props.QacfEjbYJ??{src:\"https://framerusercontent.com/images/Ti5SqVVAj0gtsNXUr6b4aVM0Cww.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/Ti5SqVVAj0gtsNXUr6b4aVM0Cww.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ti5SqVVAj0gtsNXUr6b4aVM0Cww.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ti5SqVVAj0gtsNXUr6b4aVM0Cww.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ti5SqVVAj0gtsNXUr6b4aVM0Cww.png 3240w\"},RdHMuExIN:border??props.RdHMuExIN??{borderBottomWidth:0,borderColor:'var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2)) /* {\"name\":\"Separator\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:.5},tLkEnWToA:video??props.tLkEnWToA??\"Upload\",uOTc3KlTO:titleLink??props.uOTc3KlTO,variant:humanReadableVariantMap[props.variant]??props.variant??\"reAVZtSY2\",xvN4cAXlc:subtitle??props.xvN4cAXlc??\"Rethinking venture capital.\",Y33C6Dxh5:chooseFile??props.Y33C6Dxh5};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,QacfEjbYJ,LjBjTej9F,xvN4cAXlc,KHV2J58tA,tLkEnWToA,Y33C6Dxh5,Py2GM0yNq,oacQIDGYG,uOTc3KlTO,F1R96iuTh,RdHMuExIN,DMSVg9QvO,TODax6tci,wZoVymSGr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"reAVZtSY2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"kIcsdLyrA\",\"wuh5u69oY\",\"xlKuZT9H5\",\"S_O7sekVM\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"kIcsdLyrA\",\"wuh5u69oY\",\"xlKuZT9H5\",\"S_O7sekVM\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ofg01q\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"reAVZtSY2\",ref:refBinding,style:{\"--border-bottom-width\":(RdHMuExIN.borderBottomWidth??RdHMuExIN.borderWidth)+\"px\",\"--border-color\":RdHMuExIN.borderColor,\"--border-left-width\":(RdHMuExIN.borderLeftWidth??RdHMuExIN.borderWidth)+\"px\",\"--border-right-width\":(RdHMuExIN.borderRightWidth??RdHMuExIN.borderWidth)+\"px\",\"--border-style\":RdHMuExIN.borderStyle,\"--border-top-width\":(RdHMuExIN.borderTopWidth??RdHMuExIN.borderWidth)+\"px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{kIcsdLyrA:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},kytcBTnCw:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d10ecba5-af45-4563-b1c9-ea8e632a724a, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},ml6dMxWmS:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Rphh8szeN:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},S_O7sekVM:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},wuh5u69oY:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},xlKuZT9H5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-d10ecba5-af45-4563-b1c9-ea8e632a724a, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({kIcsdLyrA:{\"data-framer-name\":\"Desktop - Video\"},kytcBTnCw:{\"data-framer-name\":\"Mobile\"},ml6dMxWmS:{\"data-framer-name\":\"Tablet\"},Rphh8szeN:{\"data-framer-name\":\"Widescreen\"},S_O7sekVM:{\"data-framer-name\":\"Widescreen - Video\"},wuh5u69oY:{\"data-framer-name\":\"Tablet - Video\"},xlKuZT9H5:{\"data-framer-name\":\"Mobile - Video\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:uOTc3KlTO,motionChild:true,nodeId:\"IwRk0iYGL\",openInNewTab:true,scopeId:\"FdfW9MX9M\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11quggz framer-18n7q2k\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"IwRk0iYGL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-38x75w\",\"data-styles-preset\":\"NtLShZYQo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--variable-reference-Py2GM0yNq-FdfW9MX9M))\"},children:\"Silicon Valley Bank\"})}),className:\"framer-1hrel03\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Z3dO1p21l\",style:{\"--extracted-1of0zx5\":\"var(--variable-reference-Py2GM0yNq-FdfW9MX9M)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-Py2GM0yNq-FdfW9MX9M\":Py2GM0yNq},text:LjBjTej9F,variants:{kytcBTnCw:{\"--extracted-a0htzi\":\"var(--variable-reference-Py2GM0yNq-FdfW9MX9M)\"},xlKuZT9H5:{\"--extracted-a0htzi\":\"var(--variable-reference-Py2GM0yNq-FdfW9MX9M)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kytcBTnCw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1f2hq95\",\"data-styles-preset\":\"mXBORgqMm\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Py2GM0yNq-FdfW9MX9M))\"},children:\"Silicon Valley Bank\"})})},xlKuZT9H5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1f2hq95\",\"data-styles-preset\":\"mXBORgqMm\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--variable-reference-Py2GM0yNq-FdfW9MX9M))\"},children:\"Silicon Valley Bank\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-67d5jr\",\"data-styles-preset\":\"qvBIK5gnM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-oacQIDGYG-FdfW9MX9M))\"},children:\"Rethinking venture capital.\"})}),className:\"framer-1cxoo1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aZNXKUEgl\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-oacQIDGYG-FdfW9MX9M)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-oacQIDGYG-FdfW9MX9M\":oacQIDGYG},text:xvN4cAXlc,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kytcBTnCw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1NGIFBybyBUZXh0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"SF Pro Text Regular\", \"SF Pro Text Regular Placeholder\", \"-apple-system\", \"BlinkMacSystemFont\", sans-serif',\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-oacQIDGYG-FdfW9MX9M))\"},children:\"Rethinking venture capital.\"})}),fonts:[\"CUSTOM;SF Pro Text Regular\"]},xlKuZT9H5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-67d5jr\",\"data-styles-preset\":\"qvBIK5gnM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-oacQIDGYG-FdfW9MX9M))\"},children:\"Rethinking venture capital.\"})})}},baseVariant,gestureVariant)})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:KHV2J58tA,motionChild:true,nodeId:\"abmDfsRgM\",openInNewTab:true,scopeId:\"FdfW9MX9M\",...addPropertyOverrides({wuh5u69oY:{href:TODax6tci},xlKuZT9H5:{href:wZoVymSGr}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1vns8g framer-18n7q2k\",\"data-framer-name\":\"video-wrapper\",layoutDependency:layoutDependency,layoutId:\"abmDfsRgM\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},variants:{kIcsdLyrA:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,boxShadow:\"1px 7px 16px -2px rgba(0, 0, 0, 0)\"},S_O7sekVM:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"1px 7px 16px -2px rgba(0, 0, 0, 0)\"},wuh5u69oY:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,boxShadow:\"1px 7px 16px -2px rgba(0, 0, 0, 0)\"},xlKuZT9H5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,boxShadow:\"1px 7px 16px -2px rgba(0, 0, 0, 0.08)\"}},...addPropertyOverrides({kIcsdLyrA:{\"data-border\":true,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},whileHover:animation},S_O7sekVM:{\"data-border\":true,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},whileHover:animation},wuh5u69oY:{\"data-border\":true,background:{alt:\"\",positionX:\"center\",positionY:\"center\"},whileHover:animation1},xlKuZT9H5:{background:{alt:\"\",positionX:\"center\",positionY:\"center\"},whileHover:animation}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kmy8l4-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vO7hWsgei-container\",nodeId:\"vO7hWsgei\",rendersWithMotion:true,scopeId:\"FdfW9MX9M\",transformTemplate:transformTemplate1,...addPropertyOverrides({kIcsdLyrA:{transformTemplate:undefined,whileHover:animation},S_O7sekVM:{whileHover:animation}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vO7hWsgei\",isMixedBorderRadius:false,layoutId:\"vO7hWsgei\",loop:true,muted:true,objectFit:\"contain\",playing:true,posterEnabled:false,srcFile:Y33C6Dxh5,srcType:tLkEnWToA,srcUrl:\"\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({kIcsdLyrA:{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,srcUrl:F1R96iuTh,topLeftRadius:8,topRightRadius:8},S_O7sekVM:{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,srcType:\"Upload\",topLeftRadius:7,topRightRadius:7},wuh5u69oY:{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,topLeftRadius:7,topRightRadius:7},xlKuZT9H5:{borderRadius:7,bottomLeftRadius:7,bottomRightRadius:7,topLeftRadius:7,topRightRadius:7}},baseVariant,gestureVariant)})})})})}),DMSVg9QvO&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ftgn8z\",layoutDependency:layoutDependency,layoutId:\"HEkEo1QrM\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)\"}}),DMSVg9QvO&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aa89lx\",layoutDependency:layoutDependency,layoutId:\"Qg83LvSXp\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%)\"}}),isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:KHV2J58tA,motionChild:true,nodeId:\"WqMDVPEPa\",openInNewTab:true,scopeId:\"FdfW9MX9M\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+258),pixelHeight:1996,pixelWidth:3240,sizes:`calc(${componentViewport?.width||\"100vw\"} - 192px)`,...toResponsiveImage(QacfEjbYJ),...{positionX:\"center\",positionY:\"top\"}},className:\"framer-1564phl framer-18n7q2k\",\"data-border\":true,\"data-framer-name\":\"IMAGE\",layoutDependency:layoutDependency,layoutId:\"WqMDVPEPa\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"1px 7px 16px -2px rgba(0, 0, 0, 0)\"},variants:{kytcBTnCw:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,boxShadow:\"1px 7px 16px -2px rgba(0, 0, 0, 0.08)\"}},whileHover:animation,...addPropertyOverrides({kytcBTnCw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+48+175.2),pixelHeight:1996,pixelWidth:3240,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,...toResponsiveImage(QacfEjbYJ),...{positionX:\"center\",positionY:\"top\"}}},ml6dMxWmS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+64+242),pixelHeight:1996,pixelWidth:3240,sizes:`calc(${componentViewport?.width||\"100vw\"} - 128px)`,...toResponsiveImage(QacfEjbYJ),...{positionX:\"center\",positionY:\"top\"}},whileHover:animation1},Rphh8szeN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1125,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+96+258),pixelHeight:1996,pixelWidth:3240,sizes:`calc(${componentViewport?.width||\"100vw\"} - 320px)`,...toResponsiveImage(QacfEjbYJ),...{positionX:\"center\",positionY:\"top\"}}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1buGK.framer-18n7q2k, .framer-1buGK .framer-18n7q2k { display: block; }\",\".framer-1buGK.framer-1ofg01q { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 800px; justify-content: flex-start; overflow: hidden; padding: 96px 96px 0px 96px; position: relative; width: 1168px; }\",\".framer-1buGK .framer-11quggz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-1buGK .framer-1hrel03 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-1buGK .framer-1cxoo1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-1buGK .framer-1vns8g { cursor: pointer; flex: none; height: 574px; overflow: visible; position: relative; text-decoration: none; width: 100%; }\",\".framer-1buGK .framer-1kmy8l4-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; width: 100%; }\",\".framer-1buGK .framer-ftgn8z { bottom: -7px; flex: none; height: 99px; left: -8px; overflow: hidden; position: absolute; right: -8px; z-index: 2; }\",\".framer-1buGK .framer-1aa89lx { bottom: -15px; flex: none; height: 99px; left: -8px; overflow: hidden; position: absolute; right: -8px; z-index: 2; }\",\".framer-1buGK .framer-1564phl { aspect-ratio: 1.6266666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-1ofg01q, .framer-1buGK .framer-11quggz { gap: 0px; } .framer-1buGK.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-1buGK.framer-1ofg01q > :first-child, .framer-1buGK .framer-11quggz > :first-child { margin-top: 0px; } .framer-1buGK.framer-1ofg01q > :last-child, .framer-1buGK .framer-11quggz > :last-child { margin-bottom: 0px; } .framer-1buGK .framer-11quggz > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-1buGK.framer-v-1vt62ay.framer-1ofg01q { gap: 32px; height: 350px; padding: 48px 24px 48px 24px; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1buGK.framer-v-1vt62ay .framer-11quggz, .framer-1buGK.framer-v-1b00gwo .framer-11quggz { align-content: flex-start; align-items: flex-start; }\",\".framer-1buGK.framer-v-1vt62ay .framer-1hrel03 { width: 80%; }\",\".framer-1buGK.framer-v-1vt62ay .framer-1cxoo1 { width: 100%; }\",\".framer-1buGK.framer-v-1vt62ay .framer-ftgn8z { bottom: 0px; height: 91px; }\",\".framer-1buGK.framer-v-1vt62ay .framer-1aa89lx { bottom: 0px; height: 24px; }\",\".framer-1buGK.framer-v-1vt62ay .framer-1564phl { height: var(--framer-aspect-ratio-supported, 211px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-v-1vt62ay.framer-1ofg01q { gap: 0px; } .framer-1buGK.framer-v-1vt62ay.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1buGK.framer-v-1vt62ay.framer-1ofg01q > :first-child { margin-top: 0px; } .framer-1buGK.framer-v-1vt62ay.framer-1ofg01q > :last-child { margin-bottom: 0px; } }\",\".framer-1buGK.framer-v-1ylw22p.framer-1ofg01q, .framer-1buGK.framer-v-1iqgm59.framer-1ofg01q { aspect-ratio: 1.4727272727272727 / 1; gap: 32px; height: var(--framer-aspect-ratio-supported, 550px); padding: 64px 64px 0px 64px; width: 810px; }\",\".framer-1buGK.framer-v-1ylw22p .framer-1564phl { height: var(--framer-aspect-ratio-supported, 419px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-v-1ylw22p.framer-1ofg01q { gap: 0px; } .framer-1buGK.framer-v-1ylw22p.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1buGK.framer-v-1ylw22p.framer-1ofg01q > :first-child { margin-top: 0px; } .framer-1buGK.framer-v-1ylw22p.framer-1ofg01q > :last-child { margin-bottom: 0px; } }\",\".framer-1buGK.framer-v-1r9ydmn.framer-1ofg01q { aspect-ratio: 1.7142857142857142 / 1; height: var(--framer-aspect-ratio-supported, 1120px); padding: 96px 160px 0px 160px; width: 1920px; }\",\".framer-1buGK.framer-v-1r9ydmn .framer-ftgn8z, .framer-1buGK.framer-v-1r9ydmn .framer-1aa89lx { left: 0px; right: 0px; }\",\".framer-1buGK.framer-v-1r9ydmn .framer-1564phl { height: var(--framer-aspect-ratio-supported, 123px); }\",\".framer-1buGK.framer-v-cdt967.framer-1ofg01q { aspect-ratio: 1.46 / 1; gap: 56px; height: var(--framer-aspect-ratio-supported, 800px); }\",\".framer-1buGK.framer-v-cdt967 .framer-1vns8g { align-content: center; align-items: center; aspect-ratio: 1.7033158813263525 / 1; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 117px); justify-content: center; padding: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-1buGK.framer-v-cdt967 .framer-1kmy8l4-container { cursor: pointer; left: unset; position: relative; top: unset; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1buGK.framer-v-cdt967 .framer-ftgn8z, .framer-1buGK.framer-v-cdt967 .framer-1aa89lx { bottom: 0px; left: 0px; right: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-v-cdt967.framer-1ofg01q, .framer-1buGK.framer-v-cdt967 .framer-1vns8g { gap: 0px; } .framer-1buGK.framer-v-cdt967.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-1buGK.framer-v-cdt967.framer-1ofg01q > :first-child, .framer-1buGK.framer-v-cdt967 .framer-1vns8g > :first-child { margin-top: 0px; } .framer-1buGK.framer-v-cdt967.framer-1ofg01q > :last-child, .framer-1buGK.framer-v-cdt967 .framer-1vns8g > :last-child { margin-bottom: 0px; } .framer-1buGK.framer-v-cdt967 .framer-1vns8g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-1buGK.framer-v-1iqgm59 .framer-1vns8g { aspect-ratio: 1.705 / 1; height: var(--framer-aspect-ratio-supported, 117px); overflow: unset; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-v-1iqgm59.framer-1ofg01q { gap: 0px; } .framer-1buGK.framer-v-1iqgm59.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1buGK.framer-v-1iqgm59.framer-1ofg01q > :first-child { margin-top: 0px; } .framer-1buGK.framer-v-1iqgm59.framer-1ofg01q > :last-child { margin-bottom: 0px; } }\",\".framer-1buGK.framer-v-1b00gwo.framer-1ofg01q { gap: 32px; height: 330px; padding: 32px 24px 0px 24px; width: 390px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1buGK.framer-v-1b00gwo .framer-1vns8g { aspect-ratio: 1.8 / 1; height: var(--framer-aspect-ratio-supported, 111px); overflow: unset; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-v-1b00gwo.framer-1ofg01q { gap: 0px; } .framer-1buGK.framer-v-1b00gwo.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-1buGK.framer-v-1b00gwo.framer-1ofg01q > :first-child { margin-top: 0px; } .framer-1buGK.framer-v-1b00gwo.framer-1ofg01q > :last-child { margin-bottom: 0px; } }\",\".framer-1buGK.framer-v-y2r8b1.framer-1ofg01q { aspect-ratio: 1.7142857142857142 / 1; gap: 56px; height: var(--framer-aspect-ratio-supported, 1120px); padding: 96px 160px 0px 160px; width: 1920px; }\",\".framer-1buGK.framer-v-y2r8b1 .framer-1vns8g { aspect-ratio: 1.6666666666666667 / 1; height: var(--framer-aspect-ratio-supported, 120px); overflow: unset; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-1buGK.framer-v-y2r8b1 .framer-1kmy8l4-container { cursor: pointer; will-change: var(--framer-will-change-effect-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1buGK.framer-v-y2r8b1.framer-1ofg01q { gap: 0px; } .framer-1buGK.framer-v-y2r8b1.framer-1ofg01q > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-1buGK.framer-v-y2r8b1.framer-1ofg01q > :first-child { margin-top: 0px; } .framer-1buGK.framer-v-y2r8b1.framer-1ofg01q > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-1buGK[data-border=\"true\"]::after, .framer-1buGK [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 1168\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"kytcBTnCw\":{\"layout\":[\"fixed\",\"fixed\"]},\"ml6dMxWmS\":{\"layout\":[\"fixed\",\"fixed\"]},\"Rphh8szeN\":{\"layout\":[\"fixed\",\"fixed\"]},\"kIcsdLyrA\":{\"layout\":[\"fixed\",\"fixed\"]},\"wuh5u69oY\":{\"layout\":[\"fixed\",\"fixed\"]},\"xlKuZT9H5\":{\"layout\":[\"fixed\",\"fixed\"]},\"S_O7sekVM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QacfEjbYJ\":\"image\",\"LjBjTej9F\":\"title\",\"xvN4cAXlc\":\"subtitle\",\"KHV2J58tA\":\"link\",\"tLkEnWToA\":\"video\",\"Y33C6Dxh5\":\"chooseFile\",\"Py2GM0yNq\":\"color\",\"oacQIDGYG\":\"subheadingColor\",\"uOTc3KlTO\":\"titleLink\",\"F1R96iuTh\":\"uRL\",\"RdHMuExIN\":\"border\",\"DMSVg9QvO\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFdfW9MX9M=withCSS(Component,css,\"framer-1buGK\");export default FramerFdfW9MX9M;FramerFdfW9MX9M.displayName=\"FEATURED WORK\";FramerFdfW9MX9M.defaultProps={height:800,width:1168};addPropertyControls(FramerFdfW9MX9M,{variant:{options:[\"reAVZtSY2\",\"kytcBTnCw\",\"ml6dMxWmS\",\"Rphh8szeN\",\"kIcsdLyrA\",\"wuh5u69oY\",\"xlKuZT9H5\",\"S_O7sekVM\"],optionTitles:[\"Desktop\",\"Mobile\",\"Tablet\",\"Widescreen\",\"Desktop - Video\",\"Tablet - Video\",\"Mobile - Video\",\"Widescreen - Video\"],title:\"Variant\",type:ControlType.Enum},QacfEjbYJ:{__defaultAssetReference:\"data:framer/asset-reference,Ti5SqVVAj0gtsNXUr6b4aVM0Cww.png?originalFilename=svb.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},LjBjTej9F:{defaultValue:\"Silicon Valley Bank\",displayTextArea:false,title:\"Title\",type:ControlType.String},xvN4cAXlc:{defaultValue:\"Rethinking venture capital.\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},KHV2J58tA:{title:\"Link\",type:ControlType.Link},tLkEnWToA:VideoControls?.[\"srcType\"]&&{...VideoControls[\"srcType\"],defaultValue:\"Upload\",description:undefined,hidden:undefined,title:\"Video\"},Y33C6Dxh5:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"\",description:undefined,hidden:undefined,title:\"Choose file\"},Py2GM0yNq:{defaultValue:'var(--token-89455328-105f-42d2-9847-d1fa87418689, rgb(41, 41, 41)) /* {\"name\":\"Text --primary\"} */',title:\"Color\",type:ControlType.Color},oacQIDGYG:{defaultValue:'var(--token-b8fc3dae-bb1d-4ec1-9089-6eda79f0e84d, rgb(120, 120, 125)) /* {\"name\":\"Text --secondary\"} */',title:\"Subheading color\",type:ControlType.Color},uOTc3KlTO:{title:\"Title link\",type:ControlType.Link},F1R96iuTh:{defaultValue:\"\",placeholder:\"\",title:\"URL\",type:ControlType.String},RdHMuExIN:{defaultValue:{borderBottomWidth:0,borderColor:'var(--token-fe8ea87a-6f07-4d9e-8f84-338680771d5c, rgba(33, 33, 33, 0.2)) /* {\"name\":\"Separator\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:.5},title:\"Border\",type:ControlType.Border},DMSVg9QvO:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerFdfW9MX9M,[{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\"},{family:\"SF Pro Text Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/le5nrBvMPYhAigeVjeOC8KGUkNM.woff2\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFdfW9MX9M\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1168\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kytcBTnCw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ml6dMxWmS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Rphh8szeN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kIcsdLyrA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wuh5u69oY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xlKuZT9H5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"S_O7sekVM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"QacfEjbYJ\\\":\\\"image\\\",\\\"LjBjTej9F\\\":\\\"title\\\",\\\"xvN4cAXlc\\\":\\\"subtitle\\\",\\\"KHV2J58tA\\\":\\\"link\\\",\\\"tLkEnWToA\\\":\\\"video\\\",\\\"Y33C6Dxh5\\\":\\\"chooseFile\\\",\\\"Py2GM0yNq\\\":\\\"color\\\",\\\"oacQIDGYG\\\":\\\"subheadingColor\\\",\\\"uOTc3KlTO\\\":\\\"titleLink\\\",\\\"F1R96iuTh\\\":\\\"uRL\\\",\\\"RdHMuExIN\\\":\\\"border\\\",\\\"DMSVg9QvO\\\":\\\"visible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FdfW9MX9M.map"],
  "mappings": "0hBAA2Z,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,EACtvB,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,EAAMV,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,EAAYC,EAAYC,GAAa,CAAC,GAAG,CAACP,EAAS,QAAQ,OAAO,IAAMQ,GAAaD,IAAc,EAAE,KAAKA,GAAaP,EAAS,QAAQ,SAAeS,EAAa,KAAK,IAAIT,EAAS,QAAQ,YAAYQ,CAAW,EAAE,GAAMR,EAAS,QAAQ,SAAS,GAAG,CAACS,IAAcT,EAAS,QAAQ,YAAYQ,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,EAAY,IAAI,CAAkM,EAAjLN,EAAS,QAAQ,YAAY,GAAGA,EAAS,QAAQ,WAAW,CAACA,EAAS,QAAQ,QAAQ,CAACA,EAAS,QAAQ,OAAOA,EAAS,QAAQ,WAAWA,EAAS,QAAQ,oBAAiCA,EAAS,SAAS,CAACG,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKH,EAAS,QAAQ,KAAK,EAAE,MAAMW,GAAG,CAAC,CAAC,EAC76B,QAAQ,IAAIR,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQS,EAAMN,EAAY,IAAI,CAAI,CAACN,EAAS,SAASG,EAAe,SAAeH,EAAS,QAAQ,MAAM,CAAE,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAU,EAAK,MAAAE,EAAM,YAAAP,CAAW,CAAE,CAAC,SAASQ,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,EAE3eJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAOnK,IAAIC,GAAoC,GAAY3B,GAAuB4B,GAAK,SAAoBzC,EAAM,CAAC,GAAK,CAAC,QAAA0C,EAAQ,QAAAC,EAAQ,OAAAC,EAAO,QAAQf,EAAY,MAAAC,EAAM,YAAAE,EAAY,SAAAC,EAAS,SAAAY,EAAS,UAAAC,EAAU,gBAAAC,EAAgB,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,OAAAC,GAAO,cAAAC,EAAc,UAAUC,EAAc,OAAAC,EAAO,KAAA7B,CAAI,EAAE/B,EAAYe,EAASI,EAAO,EAAQ0C,EAASC,GAAmB,EAAQC,EAAiB5C,EAAO,IAAI,EAAQ6C,GAAgB7C,EAAO,IAAI,EAAQ8C,EAAWC,GAAc,EAAQC,EAAaC,GAAUpE,CAAK,EAGnjBqE,EAAiBJ,EAAW,cAAcrC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQqC,GAAaL,EAAW,GAAKM,GAAUxD,CAAQ,EAClKyD,EAAUb,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAAlC,EAAK,MAAAE,EAAM,YAAAP,CAAW,EAAEN,GAAoBC,CAAQ,EACjH0D,EAAU,IAAI,CAAIR,IAAqBpC,EAAYJ,EAAK,EAAOE,EAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtF4C,EAAU,IAAI,CAAIR,GAAqBI,IAAmB,gBAAwBC,GAAa7C,EAAK,EAAOE,EAAM,EAAE,EAAE,CAAC0C,EAAiBC,EAAY,CAAC,EAEpJG,EAAU,IAAI,CAAC,GAAG,CAACjC,GAAoC,CAACA,GAAoC,GAAK,OAAQ,IAAMkC,EAAiBC,GAAc9B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIzB,GAK1NsD,GAAoE,KAOpEF,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAU7B,EAAQC,EAAOC,CAAQ,CAAC,EAC7F4B,EAAU,IAAI,CAAC,GAAIE,GAAc9B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS+B,GAAOxD,EAAYwD,CAAK,CAAC,CAAE,EAAE,CAAC/B,CAAQ,CAAC,EACrHgC,GAAW,IAAI,CAAId,EAAiB,UAAU,MAAehD,EAAS,UACnE,CAACiD,IAAiBjC,GAAM,CAACgC,EAAiB,UAAQtC,EAAK,CAAG,CAAC,EAC9DqD,GAAU,IAAI,CAAI/D,EAAS,UAASiD,GAAgB,QAAQjD,EAAS,QAAQ,MAAMgD,EAAiB,QAAQhD,EAAS,QAAQ,OAAOY,EAAM,EAAG,CAAC,EAAE,IAAMoD,GAAIC,EAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGvC,IAAU,MAAM,OAAOE,EAAOqC,EAAS,GAAGvC,IAAU,SAAS,OAAOC,EAAQsC,CAAS,EAAE,CAACvC,EAAQC,EAAQC,EAAO4B,CAAS,CAAC,EAC5H,OAAAC,EAAU,IAAI,CAAIZ,GAAU9C,EAAS,SAASsD,IAAmB,YAAY,WAAW,IAAI5C,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GgD,EAAU,IAAI,CAAI1D,EAAS,SAAS,CAACe,IAAMf,EAAS,QAAQ,QAAQ6C,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC6FhD,EAAK,QAAQ,CAAC,QAAAwC,EAAQ,aAAAC,EAAa,aAAAC,EAAa,YAAAC,EAAY,UAAAC,EAAU,IAAIuB,GAAI,KAAKhD,EAAK,IAAIhB,EAAS,SAASW,GAA6CsB,IAAStB,CAAC,EAAE,QAAQA,GAA2CuB,IAAQvB,CAAC,EAAE,OAAOA,GAAyCwB,IAAOxB,CAAC,EAAE,QAAQA,GAAuCyB,IAAMzB,CAAC,EAAE,SAAS2C,IAAmB,WAAW,OAAOX,EAAcD,GAAO,OAAU,aAA1mB,IAAI,CAAK1C,EAAS,UAAkBA,EAAS,QAAQ,YAAY,IAAGK,GAAaoD,GAA+C,GAAG,GAAG,EAAKH,IAAmB,YAAW5C,EAAK,EAAE,EAAmd,SAASQ,EAAS,MAAMgC,EAAW,GAAKnC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAASoB,EAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,EAAa,QAAQ,QAAQ,UAAUrB,EAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAErC,EAAM,YAAY,QAAQA,EAAM,aAAa,CAAC,QAAQ,MAAM,OAAO,oHAAoH,QAAQ,GAAG,cAAc,GAAM,SAAS,GAAM,QAAQ,GAAK,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,eAAe,GAAM,UAAU,QAAQ,gBAAgB,gBAAgB,OAAO,EAAE,OAAO,GAAG,UAAU,CAAC,EAAE,IAAMwE,GAAY,2CAA2C,SAASC,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA2C,OAA7BA,EAAM,MAAMM,EAAW,GAAG,CAAC,GAAgB,IAAIC,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,EAAoB5E,EAAM,CAAC,QAAQ,CAAC,KAAK6E,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,YAAY,iBAAiB,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,EAAE,YAAY,gEAAgE,EAAE,QAAQ,CAAC,KAAKuF,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOvF,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKuF,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAA7B,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAK6B,EAAY,MAAM,MAAM,YAAY,EAAE,GAAGC,GAAoB,UAAU,CAAC,MAAM,aAAa,KAAKD,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,EAMpqF,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,MAAM,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,MAAAzD,CAAK,IAAIA,CAAK,EAAE,MAAM,CAAC,KAAKyD,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECpE8e,IAAMC,GAAWC,GAASC,CAAK,EAAQC,EAAcC,GAAoBF,CAAK,EAAQG,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAQE,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,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,kBAAkB,YAAY,iBAAiB,YAAY,iBAAiB,YAAY,qBAAqB,YAAY,QAAQ,YAAY,OAAO,YAAY,OAAO,YAAY,WAAW,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,WAAAC,EAAW,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,KAAAC,EAAK,gBAAAC,EAAgB,SAAAC,EAAS,MAAAC,EAAM,UAAAC,EAAU,IAAAC,EAAI,MAAAC,EAAM,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAASE,EAAM,WAAW,GAAK,UAAUJ,GAAKI,EAAM,UAAU,UAAUT,GAAMS,EAAM,UAAU,UAAUN,GAAOM,EAAM,WAAW,sBAAsB,UAAUR,GAAiBQ,EAAM,WAAW,wEAAwE,UAAUb,GAAOa,EAAM,WAAW,qEAAqE,UAAUV,GAAOU,EAAM,WAAW,CAAC,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAUf,GAAQe,EAAM,WAAW,CAAC,kBAAkB,EAAE,YAAY,sGAAsG,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,EAAE,EAAE,UAAUH,GAAOG,EAAM,WAAW,SAAS,UAAUL,GAAWK,EAAM,UAAU,QAAQjB,GAAwBiB,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUP,GAAUO,EAAM,WAAW,8BAA8B,UAAUd,GAAYc,EAAM,SAAS,GAAUC,GAAuB,CAACD,EAAM1C,IAAe0C,EAAM,iBAAwB1C,EAAS,KAAK,GAAG,EAAE0C,EAAM,iBAAwB1C,EAAS,KAAK,GAAG,EAAU4C,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzD,EAAQ,UAAA0D,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhD,GAASgB,CAAK,EAAO,CAAC,YAAAiC,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAlF,CAAQ,EAAEmF,GAAgB,CAAC,WAAAxF,GAAW,eAAe,YAAY,IAAIsD,EAAW,QAAA/C,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuF,EAAiBzC,GAAuBD,EAAM1C,CAAQ,EAA0GqF,GAAkBC,GAAG1F,GAAkB,GAAnH,CAAa8D,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQ6B,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASb,CAAW,EAA6B,OAAoBtD,EAAKoE,GAAY,CAAC,GAAG9B,GAAUT,EAAgB,SAAsB7B,EAAKC,GAAS,CAAC,QAAQtB,EAAS,QAAQ,GAAM,SAAsBqB,EAAKR,GAAW,CAAC,MAAMV,GAAY,SAAsBuF,GAAMnE,EAAO,IAAI,CAAC,GAAGmD,EAAU,GAAGI,EAAgB,UAAUQ,GAAGD,GAAkB,iBAAiB3B,EAAUkB,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInC,EAAW,MAAM,CAAC,yBAAyBqB,EAAU,mBAAmBA,EAAU,aAAa,KAAK,iBAAiBA,EAAU,YAAY,uBAAuBA,EAAU,iBAAiBA,EAAU,aAAa,KAAK,wBAAwBA,EAAU,kBAAkBA,EAAU,aAAa,KAAK,iBAAiBA,EAAU,YAAY,sBAAsBA,EAAU,gBAAgBA,EAAU,aAAa,KAAK,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGb,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,GAAG3D,EAAqB,CAAC,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,CAAC,EAAE6E,EAAYI,CAAc,EAAE,SAAS,CAAc1D,EAAKsE,EAAK,CAAC,KAAKvB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBsB,GAAMnE,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,QAAQ,iBAAiB6D,EAAiB,SAAS,YAAY,SAAS,CAAc/D,EAAKuE,GAAS,CAAC,sBAAsB,GAAK,SAAsBvE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,yEAAyE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2ClB,CAAS,EAAE,KAAKL,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,+CAA+C,EAAE,UAAU,CAAC,qBAAqB,+CAA+C,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/D,EAAqB,CAAC,UAAU,CAAC,SAAsBuB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAe1D,EAAKuE,GAAS,CAAC,sBAAsB,GAAK,SAAsBvE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,wEAAwE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,gDAAgD,2BAA2B,mBAAmB,gCAAgC,YAAY,2CAA2CjB,CAAS,EAAE,KAAKL,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhE,EAAqB,CAAC,UAAU,CAAC,SAAsBuB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,8GAA8G,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,4BAA4B,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,wEAAwE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEQ,GAAY,GAAgBlE,EAAKsE,EAAK,CAAC,KAAK5B,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,GAAGjE,EAAqB,CAAC,UAAU,CAAC,KAAK0E,CAAS,EAAE,UAAU,CAAC,KAAKC,CAAS,CAAC,EAAEE,EAAYI,CAAc,EAAE,SAAsB1D,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,2EAA2E,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,oCAAoC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,2EAA2E,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oCAAoC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,2EAA2E,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,oCAAoC,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,uCAAuC,CAAC,EAAE,GAAGtF,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,WAAW,CAAC,IAAI,GAAG,UAAU,SAAS,UAAU,QAAQ,EAAE,WAAWO,CAAS,EAAE,UAAU,CAAC,cAAc,GAAK,WAAW,CAAC,IAAI,GAAG,UAAU,SAAS,UAAU,QAAQ,EAAE,WAAWA,CAAS,EAAE,UAAU,CAAC,cAAc,GAAK,WAAW,CAAC,IAAI,GAAG,UAAU,SAAS,UAAU,QAAQ,EAAE,WAAWE,EAAU,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,UAAU,SAAS,UAAU,QAAQ,EAAE,WAAWF,CAAS,CAAC,EAAEsE,EAAYI,CAAc,EAAE,SAASQ,GAAY,GAAgBlE,EAAKwE,GAA0B,CAAC,SAAsBxE,EAAKyE,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBV,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkB5E,GAAmB,GAAGV,EAAqB,CAAC,UAAU,CAAC,kBAAkB,OAAU,WAAWO,CAAS,EAAE,UAAU,CAAC,WAAWA,CAAS,CAAC,EAAEsE,EAAYI,CAAc,EAAE,SAAsB1D,EAAK7B,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,UAAU,QAAQ,GAAK,cAAc,GAAM,QAAQyE,EAAU,QAAQD,EAAU,OAAO,GAAG,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,OAAO,GAAGlE,EAAqB,CAAC,UAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAOuE,GAAU,cAAc,EAAE,eAAe,CAAC,EAAE,UAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,QAAQ,SAAS,cAAc,EAAE,eAAe,CAAC,EAAE,UAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,EAAE,eAAe,CAAC,EAAE,UAAU,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,cAAc,EAAE,eAAe,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAER,GAAwBlD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,6EAA6E,CAAC,CAAC,EAAEb,GAAwBlD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,6EAA6E,CAAC,CAAC,EAAEI,EAAa,GAAgBnE,EAAKsE,EAAK,CAAC,KAAK5B,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB1C,EAAK0E,GAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQC,GAA2BzC,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,GAAG5C,EAAkBiD,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,EAAE,UAAU,gCAAgC,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBwB,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,2EAA2E,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oCAAoC,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,uCAAuC,CAAC,EAAE,WAAW/E,EAAU,GAAGP,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQkG,GAA2BzC,GAAmB,GAAG,GAAG,GAAG,KAAK,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQA,GAAmB,OAAO,kBAAkB,GAAG5C,EAAkBiD,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQoC,GAA2BzC,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,GAAG5C,EAAkBiD,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,EAAE,WAAWrD,EAAU,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQyF,GAA2BzC,GAAmB,GAAG,GAAG,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQA,GAAmB,OAAO,mBAAmB,GAAG5C,EAAkBiD,CAAS,EAAM,UAAU,SAAS,UAAU,KAAM,CAAC,CAAC,EAAEe,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,kFAAkF,kRAAkR,2SAA2S,qKAAqK,mKAAmK,0JAA0J,8HAA8H,sJAAsJ,wJAAwJ,kRAAkR,ulBAAulB,sLAAsL,yJAAyJ,iEAAiE,iEAAiE,+EAA+E,gFAAgF,0GAA0G,mbAAmb,oPAAoP,0GAA0G,mbAAmb,8LAA8L,2HAA2H,0GAA0G,2IAA2I,qXAAqX,+LAA+L,sIAAsI,mtBAAmtB,sNAAsN,mbAAmb,qLAAqL,oNAAoN,mbAAmb,wMAAwM,kOAAkO,kJAAkJ,+aAA+a,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+bAA+b,EASlj3BC,EAAgBC,GAAQvD,GAAUqD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,gBAAgBA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,SAAS,aAAa,kBAAkB,iBAAiB,iBAAiB,oBAAoB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,0GAA0G,MAAM,QAAQ,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,sBAAsB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,8BAA8B,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU7G,GAAgB,SAAY,CAAC,GAAGA,EAAc,QAAW,aAAa,SAAS,YAAY,OAAU,OAAO,OAAU,MAAM,OAAO,EAAE,UAAUA,GAAgB,SAAY,CAAC,GAAGA,EAAc,QAAW,wBAAwB,GAAG,YAAY,OAAU,OAAO,OAAU,MAAM,aAAa,EAAE,UAAU,CAAC,aAAa,qGAAqG,MAAM,QAAQ,KAAK6G,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,0GAA0G,MAAM,mBAAmB,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,YAAY,GAAG,MAAM,MAAM,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,CAAC,kBAAkB,EAAE,YAAY,sGAAsG,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,QAAQ,eAAe,EAAE,EAAE,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,EAAgB,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,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAG5G,GAAW,GAAGkH,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "transformTemplate1", "_", "t", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "border", "chooseFile", "color", "height", "id", "image", "link", "subheadingColor", "subtitle", "title", "titleLink", "uRL", "video", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "QacfEjbYJ", "LjBjTej9F", "xvN4cAXlc", "KHV2J58tA", "tLkEnWToA", "Y33C6Dxh5", "Py2GM0yNq", "oacQIDGYG", "uOTc3KlTO", "F1R96iuTh", "RdHMuExIN", "DMSVg9QvO", "TODax6tci", "wZoVymSGr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "Link", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerFdfW9MX9M", "withCSS", "FdfW9MX9M_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
