{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/f9qD4Zj6kq6Gsa8HgI6i/DzEGfD5L6mrvNO2BNAtE/glYOIpVBB.js", "ssg:https://framerusercontent.com/modules/hDaEzpcET3JhMSwAEK6s/Eqk7ym0fEUPFG8YYmiID/ZUFVOAhgO.js", "ssg:https://framerusercontent.com/modules/sT1abBEkdqPeuvtyggPE/mxYW4VcTTbK4H85r4wVr/CGWlJVyo0.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://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 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);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",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(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]);/**\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!==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=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?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\"||autoplayBehavior===\"on-viewport\"&&isInViewport)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:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!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: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\";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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...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\",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\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";const VideoFonts=getFonts(Video);const MotionAWithFX=withFX(motion.a);const enabledGestures={QmGI3ls8p:{hover:true}};const serializationHash=\"framer-Y1KRH\";const variantClassNames={QmGI3ls8p:\"framer-v-7ptzd7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition1={damping:50,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,image,width,...props})=>{var _ref;return{...props,GELLB3tYc:(_ref=image!==null&&image!==void 0?image:props.GELLB3tYc)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/ZUg9WlCOyyQQRDu4aOIWFyBhs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZUg9WlCOyyQQRDu4aOIWFyBhs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZUg9WlCOyyQQRDu4aOIWFyBhs.png 598w\"}};};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,GELLB3tYc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"QmGI3ls8p\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:\"https://johnkappa.lemonsqueezy.com/checkout/buy/25f39bc6-ce05-4df7-901e-a66ee640b461\",nodeId:\"QmGI3ls8p\",openInNewTab:true,children:/*#__PURE__*/_jsxs(MotionAWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-7ptzd7\",className,classNames)} framer-1rfp1fu`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"QmGI3ls8p\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"QmGI3ls8p-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3e2ppx-container\",layoutDependency:layoutDependency,layoutId:\"rZkIj3e0d-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-af5b81ec-7d53-44ff-aea1-880f52115a09, rgb(245, 245, 245))\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"rZkIj3e0d\",isMixedBorderRadius:false,layoutId:\"rZkIj3e0d\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/51816/51816-720.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:394,intrinsicWidth:598,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||462)*.4978354978354981-53.25)),pixelHeight:394,pixelWidth:598,sizes:\"162px\",...toResponsiveImage(GELLB3tYc)},className:\"framer-17759ay\",\"data-framer-name\":\"JK_Logo\",layoutDependency:layoutDependency,layoutId:\"Xrp2qFnHQ\",transformTemplate:transformTemplate1,...addPropertyOverrides({\"QmGI3ls8p-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:394,intrinsicWidth:598,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)*.5000000000000002-58)),pixelHeight:394,pixelWidth:598,sizes:\"176px\",...toResponsiveImage(GELLB3tYc)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter-SemiBold\", \"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"uppercase\"},children:\"A John Kappa Template\"})}),className:\"framer-1eii596\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"wQPWJpMke\",style:{\"--extracted-r6o4lv\":\"var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Y1KRH.framer-1rfp1fu, .framer-Y1KRH .framer-1rfp1fu { display: block; }\",\".framer-Y1KRH.framer-7ptzd7 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 260px; }\",\".framer-Y1KRH .framer-3e2ppx-container { aspect-ratio: 0.6666666666666666 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 462px); position: relative; width: 100%; }\",\".framer-Y1KRH .framer-17759ay { aspect-ratio: 1.517766497461929 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 107px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 162px; z-index: 1; }\",\".framer-Y1KRH .framer-1eii596 { bottom: -20px; flex: none; height: auto; left: 50%; position: absolute; white-space: pre; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Y1KRH.framer-7ptzd7 { gap: 0px; } .framer-Y1KRH.framer-7ptzd7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Y1KRH.framer-7ptzd7 > :first-child { margin-top: 0px; } .framer-Y1KRH.framer-7ptzd7 > :last-child { margin-bottom: 0px; } }\",\".framer-Y1KRH.framer-v-7ptzd7.hover .framer-3e2ppx-container { height: var(--framer-aspect-ratio-supported, 300px); }\",\".framer-Y1KRH.framer-v-7ptzd7.hover .framer-17759ay { height: var(--framer-aspect-ratio-supported, 116px); top: 50%; width: 176px; }\",\".framer-Y1KRH.framer-v-7ptzd7.hover .framer-1eii596 { bottom: 20px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 462\n * @framerIntrinsicWidth 260\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ouydWwgcA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GELLB3tYc\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerglYOIpVBB=withCSS(Component,css,\"framer-Y1KRH\");export default FramerglYOIpVBB;FramerglYOIpVBB.displayName=\"Ad Mock-up\";FramerglYOIpVBB.defaultProps={height:462,width:260};addPropertyControls(FramerglYOIpVBB,{GELLB3tYc:{__defaultAssetReference:\"data:framer/asset-reference,ZUg9WlCOyyQQRDu4aOIWFyBhs.png?originalFilename=JK+White.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerglYOIpVBB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerglYOIpVBB\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"260\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"462\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ouydWwgcA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"GELLB3tYc\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./glYOIpVBB.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[];export const css=[\".framer-2vsZ3 .framer-styles-preset-zkwfut:not(.rich-text-wrapper), .framer-2vsZ3 .framer-styles-preset-zkwfut.rich-text-wrapper a { --framer-link-current-text-color: var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, #202124); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: rgba(255, 255, 255, 0.7); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, #202124); --framer-link-text-decoration: underline; transition: color 0.3s cubic-bezier(0.44, 0, 0.56, 1) 0s; }\"];export const className=\"framer-2vsZ3\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f68555)\nvar _componentPresets_fonts,_componentPresets_fonts1,_componentPresets_fonts2,_componentPresets_fonts3;import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import AscenderBar from\"#framer/local/canvasComponent/fCab_lGbp/fCab_lGbp.js\";import AdMockUp from\"#framer/local/canvasComponent/glYOIpVBB/glYOIpVBB.js\";import FloatingNav from\"#framer/local/canvasComponent/jBBAa5t7z/jBBAa5t7z.js\";import MobileNavbar from\"#framer/local/canvasComponent/S5NHjY8jS/S5NHjY8jS.js\";import TheMasthead from\"#framer/local/canvasComponent/T8zPiACMv/T8zPiACMv.js\";import Footer from\"#framer/local/canvasComponent/uHNIKJ3EN/uHNIKJ3EN.js\";import Articles from\"#framer/local/collection/u_oKaJBBx/u_oKaJBBx.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle from\"#framer/local/css/aCcpvh5Id/aCcpvh5Id.js\";import*as sharedStyle5 from\"#framer/local/css/e1p9UeiWM/e1p9UeiWM.js\";import*as sharedStyle8 from\"#framer/local/css/ENsM82O_A/ENsM82O_A.js\";import*as sharedStyle6 from\"#framer/local/css/esUNuyf8H/esUNuyf8H.js\";import*as sharedStyle10 from\"#framer/local/css/gmOhOZH4C/gmOhOZH4C.js\";import*as sharedStyle3 from\"#framer/local/css/Gzndn0Lsc/Gzndn0Lsc.js\";import*as sharedStyle2 from\"#framer/local/css/Im4rBFHLw/Im4rBFHLw.js\";import*as sharedStyle1 from\"#framer/local/css/OROlObe7t/OROlObe7t.js\";import*as sharedStyle4 from\"#framer/local/css/PsNUKT0Cm/PsNUKT0Cm.js\";import*as sharedStyle11 from\"#framer/local/css/sJ2QEITYH/sJ2QEITYH.js\";import*as sharedStyle7 from\"#framer/local/css/tB4EFCq4L/tB4EFCq4L.js\";import*as sharedStyle9 from\"#framer/local/css/ZUFVOAhgO/ZUFVOAhgO.js\";import metadataProvider from\"#framer/local/webPageMetadata/CGWlJVyo0/CGWlJVyo0.js\";const MobileNavbarFonts=getFonts(MobileNavbar);const FloatingNavFonts=getFonts(FloatingNav);const ContainerWithFX=withFX(Container);const TheMastheadFonts=getFonts(TheMasthead);const PhosphorFonts=getFonts(Phosphor);const AdMockUpFonts=getFonts(AdMockUp);const AscenderBarFonts=getFonts(AscenderBar);const RichTextWithFX=withFX(RichText);const FooterFonts=getFonts(Footer);const breakpoints={E6RWQ7JJD:\"(max-width: 809px)\",LAeFCAnj3:\"(min-width: 810px) and (max-width: 1199px)\",wdUalvFRc:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Rb3zM\";const variantClassNames={E6RWQ7JJD:\"framer-v-1om4h1x\",LAeFCAnj3:\"framer-v-ra977g\",wdUalvFRc:\"framer-v-zzh7j4\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-110};const transition1={damping:60,delay:0,mass:.5,stiffness:800,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const animation2={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"wdUalvFRc\",Phone:\"E6RWQ7JJD\",Tablet:\"LAeFCAnj3\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"wdUalvFRc\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"CGWlJVyo0\",data:Articles,type:\"Collection\"},select:[{collection:\"CGWlJVyo0\",name:\"OkOS1PIYS\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"xqCF62sOK\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"ApYGLM_B1\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"DjDgf3RLq\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"MJiL7_GKg\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"YuuKzIep3\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"pTm6wzo4_\",type:\"Identifier\"},{collection:\"CGWlJVyo0\",name:\"rKZW_6dfP\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"CGWlJVyo0\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4;const{style,className,layoutId,variant,OkOS1PIYS=(_getFromCurrentRouteData=getFromCurrentRouteData(\"OkOS1PIYS\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",YuuKzIep3=getFromCurrentRouteData(\"YuuKzIep3\"),MJiL7_GKg=getFromCurrentRouteData(\"MJiL7_GKg\"),DjDgf3RLq=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"DjDgf3RLq\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",xqCF62sOK=getFromCurrentRouteData(\"xqCF62sOK\"),pTm6wzo4_=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"pTm6wzo4_\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",rKZW_6dfP=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"rKZW_6dfP\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",YuuKzIep3rXA5gO8gP,FA6P89nGUrXA5gO8gP,xqCF62sOKrXA5gO8gP,OkOS1PIYSrXA5gO8gP,idrXA5gO8gP,ApYGLM_B1=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"ApYGLM_B1\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Rb3zM`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Rb3zM`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"E6RWQ7JJD\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"E6RWQ7JJD\")return false;return true;};const ref2=React.useRef(null);const elementId=useRouteElementId(\"naucmjKLR\");const visible=isSet(MJiL7_GKg);const activeLocaleCode=useLocaleCode();const textContent=toDateString(xqCF62sOK,{dateStyle:\"full\",locale:\"\"},activeLocaleCode);const elementId1=useRouteElementId(\"ekG7It512\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wdUalvFRc\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zzh7j4\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{height:80,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jklg0z-container hidden-zzh7j4 hidden-ra977g\",layoutScroll:true,children:/*#__PURE__*/_jsx(MobileNavbar,{height:\"100%\",id:\"JY1v5gLBQ\",layoutId:\"JY1v5gLBQ\",style:{height:\"100%\",width:\"100%\"},variant:\"j5kZZefPq\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:-120,ref:ref2,target:\"animate\"}],__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uhubev-container hidden-1om4h1x\",layoutScroll:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(FloatingNav,{height:\"100%\",id:\"j75drGz__\",layoutId:\"j75drGz__\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:253,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-liz8gn-container hidden-1om4h1x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{LAeFCAnj3:{variant:\"w6xIMbmbX\"}},children:/*#__PURE__*/_jsx(TheMasthead,{height:\"100%\",id:\"gDb8E5Ln3\",layoutId:\"gDb8E5Ln3\",style:{width:\"100%\"},ULlhpyILq:\"var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255))\",variant:\"LuIz8YNbu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xt1hpu\",\"data-framer-name\":\"Section Blog Article\",name:\"Section Blog Article\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1me8hnn\",\"data-framer-name\":\"Container\",id:elementId,name:\"Container\",ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b9gxgs\",\"data-framer-name\":\"Split\",name:\"Split\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ljz3s\",\"data-framer-name\":\"Article\",name:\"Article\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(22, 22, 22))\"},children:\"From Idea to Execution: Turning Creative Dreams into Tangible Reality\"})})},LAeFCAnj3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(22, 22, 22))\"},children:\"From Idea to Execution: Turning Creative Dreams into Tangible Reality\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS01MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(22, 22, 22))\"},children:\"From Idea to Execution: Turning Creative Dreams into Tangible Reality\"})}),className:\"framer-1xtjrtl\",\"data-framer-name\":\"Blog title\",fonts:[\"GF;Bricolage Grotesque-500\"],name:\"Blog title\",text:OkOS1PIYS,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(max(100vw, 1px), 1400px) - 40px)\",...toResponsiveImage(YuuKzIep3)}},LAeFCAnj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(350),sizes:\"max(max(min(max(100vw, 1px), 1400px) - 80px, 1px) - 220px, 1px)\",...toResponsiveImage(YuuKzIep3)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(403),sizes:\"max(max(min(max(100vw, 1px), 1400px) - 120px, 1px) - 300px, 1px)\",...toResponsiveImage(YuuKzIep3)},className:\"framer-1rir2zu\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9bzhk\",\"data-framer-name\":\"Blog Credit\",name:\"Blog Credit\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1by3olb\",\"data-framer-name\":\"Keyline\",name:\"Keyline\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dan825\",children:[visible&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{background:{alt:\"\",fit:\"fill\",sizes:\"42px\",...toResponsiveImage(MJiL7_GKg)}},LAeFCAnj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(906.4),sizes:\"42px\",...toResponsiveImage(MJiL7_GKg)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(959.4),sizes:\"42px\",...toResponsiveImage(MJiL7_GKg)},className:\"framer-11j4usj\",\"data-framer-name\":\"Profile Image\",name:\"Profile Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fn3z6c\",\"data-framer-name\":\"Author Date\",name:\"Author Date\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-qj38qx\",\"data-styles-preset\":\"aCcpvh5Id\",children:\"Rene Anthony\"})}),className:\"framer-54gq6p\",\"data-framer-name\":\"Author\",fonts:[\"Inter\"],name:\"Author\",text:DjDgf3RLq,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rn8nes\",\"data-framer-name\":\"Date Strip\",name:\"Date Strip\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-th63uj\",\"data-framer-name\":\"Date\",name:\"Date\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ognig1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Calendar\",id:\"lZJYokSKh\",layoutId:\"lZJYokSKh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-u217ag\",\"data-styles-preset\":\"Im4rBFHLw\",children:\"Sunday, July 9, 2023\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gnwz4c\",\"data-styles-preset\":\"OROlObe7t\",children:\"Sunday, July 9, 2023\"})}),className:\"framer-1od838y\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],name:\"Date\",text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-88zxv5\",\"data-framer-name\":\"Keyline\",name:\"Keyline\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1ro5ou0\",\"data-styles-preset\":\"Gzndn0Lsc\",children:\"Transforming a fleeting idea into a finished project can feel daunting. This post provides a practical roadmap for navigating the journey from ideation to execution, helping you conquer obstacles and bring your creative visions to life.\"})}),fonts:[\"Inter\"]},LAeFCAnj3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\"},children:\"Transforming a fleeting idea into a finished project can feel daunting. This post provides a practical roadmap for navigating the journey from ideation to execution, helping you conquer obstacles and bring your creative visions to life.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\"},children:\"Transforming a fleeting idea into a finished project can feel daunting. This post provides a practical roadmap for navigating the journey from ideation to execution, helping you conquer obstacles and bring your creative visions to life.\"})}),className:\"framer-tokg0z\",\"data-framer-name\":\"Lead Paragraph\",fonts:[\"GF;Bricolage Grotesque-regular\"],name:\"Lead Paragraph\",text:pTm6wzo4_,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wma3j5\",\"data-framer-name\":\"Keyline\",name:\"Keyline\"}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js:Youtube\":componentPresets.props[\"aDqcNuy5x\"],\"module:pVk4QsoHxASnVtUBp6jr/F3DAaPbkrr19izpZS3jO/CodeBlock.js:default\":componentPresets.props[\"Flm2Nix78\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:rKZW_6dfP,className:\"framer-1nfwc95\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],name:\"Body\",stylesPresetsClassNames:{a:\"framer-styles-preset-zkwfut\",code:\"framer-styles-preset-bcofab\",h1:\"framer-styles-preset-1ipv28w\",h2:\"framer-styles-preset-13adep3\",h3:\"framer-styles-preset-9bi62p\",h4:\"framer-styles-preset-1ro5ou0\",h5:\"framer-styles-preset-rknknc\",h6:\"framer-styles-preset-qj38qx\",p:\"framer-styles-preset-xkn0l\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wgjx8h\",\"data-framer-name\":\"Keyline\",name:\"Keyline\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pbrq6s\",\"data-framer-name\":\"Ads Column\",name:\"Ads Column\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i6mno\",\"data-framer-name\":\"Sponsored\",name:\"Sponsored\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{width:\"calc(min(max(100vw, 1px), 1400px) - 40px)\",y:undefined},LAeFCAnj3:{width:\"180px\",y:736.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"260px\",y:806,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jpsmuj-container\",children:/*#__PURE__*/_jsx(AdMockUp,{height:\"100%\",id:\"spaGAnvQr\",layoutId:\"spaGAnvQr\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://unsplash.com/\",nodeId:\"MfT0JCQrD\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gcoxk6 framer-pqlmsm\",\"data-border\":true,\"data-framer-name\":\"Unsplash Button\",name:\"Unsplash Button\",whileHover:animation1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-u217ag\",\"data-styles-preset\":\"Im4rBFHLw\",children:\"Blog images via Unsplash\"})}),className:\"framer-w8a166\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ajiudm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"XGZ5NFuyf\",layoutId:\"XGZ5NFuyf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bjdv3\",\"data-framer-name\":\"Section Related\",name:\"Section Related\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yw7lgx\",\"data-framer-name\":\"Container\",id:elementId1,name:\"Container\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10m6ztr\",\"data-framer-name\":\"Title Block\",name:\"Title Block\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ivy8vq\",\"data-framer-name\":\"Title + Ascender\",name:\"Title + Ascender\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{y:undefined},LAeFCAnj3:{y:1256.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:4,width:\"200px\",y:1366.1999999999998,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{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-5lfe4l-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AscenderBar,{height:\"100%\",id:\"zsmxMH0Kv\",layoutId:\"zsmxMH0Kv\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",WL6cfNQ_a:\"rgb(255, 46, 46)\"})})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-9bi62p\",\"data-styles-preset\":\"esUNuyf8H\",style:{\"--framer-text-alignment\":\"left\"},children:\"Most Recent Articles\"})}),className:\"framer-sg34zc\",\"data-framer-name\":\"H1_Italic\",fonts:[\"Inter\"],name:\"H1_Italic\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1no7osb\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{query:{from:{alias:\"rXA5gO8gP\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"rXA5gO8gP\",name:\"YuuKzIep3\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"FA6P89nGU\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"xqCF62sOK\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"OkOS1PIYS\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"rXA5gO8gP\",name:\"ApYGLM_B1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ApYGLM_B1},type:\"BinaryOperation\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"rXA5gO8gP\",data:Articles,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"rXA5gO8gP\",name:\"YuuKzIep3\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"FA6P89nGU\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"xqCF62sOK\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"OkOS1PIYS\",type:\"Identifier\"},{collection:\"rXA5gO8gP\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"rXA5gO8gP\",name:\"ApYGLM_B1\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:ApYGLM_B1},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({FA6P89nGU:FA6P89nGUrXA5gO8gP,id:idrXA5gO8gP,OkOS1PIYS:OkOS1PIYSrXA5gO8gP,xqCF62sOK:xqCF62sOKrXA5gO8gP,YuuKzIep3:YuuKzIep3rXA5gO8gP},i)=>{FA6P89nGUrXA5gO8gP!==null&&FA6P89nGUrXA5gO8gP!==void 0?FA6P89nGUrXA5gO8gP:FA6P89nGUrXA5gO8gP=\"\";OkOS1PIYSrXA5gO8gP!==null&&OkOS1PIYSrXA5gO8gP!==void 0?OkOS1PIYSrXA5gO8gP:OkOS1PIYSrXA5gO8gP=\"\";const textContent1=toDateString(xqCF62sOKrXA5gO8gP,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`rXA5gO8gP-${idrXA5gO8gP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{FA6P89nGU:FA6P89nGUrXA5gO8gP},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mqealp\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{FA6P89nGU:FA6P89nGUrXA5gO8gP},webPageId:\"CGWlJVyo0\"},nodeId:\"GnyamcfYd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{background:{alt:\"\",fit:\"fill\",sizes:\"calc(min(100vw, 1400px) - 40px)\",...toResponsiveImage(YuuKzIep3rXA5gO8gP)}},LAeFCAnj3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1338.4),sizes:\"max((min(100vw, 1400px) - 60px) / 0, 1px)\",...toResponsiveImage(YuuKzIep3rXA5gO8gP)}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(1448.1999999999998),sizes:\"max((min(100vw, 1400px) - 100px) / 0, 1px)\",...toResponsiveImage(YuuKzIep3rXA5gO8gP)},className:\"framer-17coq5l framer-pqlmsm\",whileHover:animation2})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16eto0s\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-60zat7\",\"data-framer-name\":\"Date Strip\",name:\"Date Strip\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zw5xsl\",\"data-framer-name\":\"Date\",name:\"Date\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1frbjlb-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CalendarBlank\",id:\"zCVJQ07OT\",layoutId:\"zCVJQ07OT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS1yZWd1bGFy\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.28px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\"},children:\"Content\"})}),className:\"framer-oqmyc4\",\"data-framer-name\":\"Date\",fonts:[\"GF;Bricolage Grotesque-regular\"],name:\"Date\",text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-qj38qx\",\"data-styles-preset\":\"aCcpvh5Id\",children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{FA6P89nGU:FA6P89nGUrXA5gO8gP},webPageId:\"CGWlJVyo0\"},nodeId:\"CQnBq7Ab8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Title\"})})})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"R0Y7QnJpY29sYWdlIEdyb3Rlc3F1ZS02MDA=\",\"--framer-font-family\":'\"Bricolage Grotesque\", \"Bricolage Grotesque Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, rgb(32, 33, 36))\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{FA6P89nGU:FA6P89nGUrXA5gO8gP},webPageId:\"CGWlJVyo0\"},nodeId:\"CQnBq7Ab8\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Title\"})})})}),className:\"framer-9o6mxo\",\"data-framer-name\":\"Title\",fonts:[\"GF;Bricolage Grotesque-600\"],name:\"Title\",text:OkOS1PIYSrXA5gO8gP,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})},idrXA5gO8gP);})})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{y:undefined},LAeFCAnj3:{y:1606.8000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:264,width:\"100vw\",y:1736.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5xrg40-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{E6RWQ7JJD:{u3Dx3rcmB:\"var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255))\",variant:\"Fb3fafZqL\"},LAeFCAnj3:{variant:\"ALvc8Tt3S\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tHFQX0wRz\",layoutId:\"tHFQX0wRz\",style:{width:\"100%\"},u3Dx3rcmB:\"var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 232, 232))\",variant:\"lmd5KRkwZ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Rb3zM { background: var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; }`,\".framer-Rb3zM.framer-pqlmsm, .framer-Rb3zM .framer-pqlmsm { display: block; }\",\".framer-Rb3zM.framer-zzh7j4 { align-content: center; align-items: center; background-color: var(--token-123ae811-0a96-4fe0-8112-ab098369241c, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Rb3zM .framer-jklg0z-container { flex: none; height: 80px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 3; }\",\".framer-Rb3zM .framer-1uhubev-container { flex: none; height: 60px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 6; }\",\".framer-Rb3zM .framer-liz8gn-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-Rb3zM .framer-xt1hpu { align-content: center; align-items: center; background-color: var(--token-123ae811-0a96-4fe0-8112-ab098369241c, #ffe8e8); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1me8hnn { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 60px; position: relative; width: 1px; }\",\".framer-Rb3zM .framer-1b9gxgs { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rb3zM .framer-16ljz3s { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Rb3zM .framer-1xtjrtl, .framer-Rb3zM .framer-tokg0z { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rb3zM .framer-1rir2zu { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 520px); overflow: hidden; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1s9bzhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1by3olb, .framer-Rb3zM .framer-88zxv5, .framer-Rb3zM .framer-wma3j5, .framer-Rb3zM .framer-1wgjx8h { background-color: var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, #202124); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1dan825 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-11j4usj { aspect-ratio: 1 / 1; border-bottom-left-radius: 200px; border-bottom-right-radius: 200px; border-top-left-radius: 200px; border-top-right-radius: 200px; flex: none; height: var(--framer-aspect-ratio-supported, 42px); position: relative; width: 42px; }\",\".framer-Rb3zM .framer-1fn3z6c { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Rb3zM .framer-54gq6p { --framer-paragraph-spacing: 8px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rb3zM .framer-rn8nes { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Rb3zM .framer-th63uj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Rb3zM .framer-1ognig1-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-Rb3zM .framer-1od838y, .framer-Rb3zM .framer-oqmyc4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rb3zM .framer-1nfwc95 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rb3zM .framer-pbrq6s { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 260px; }\",\".framer-Rb3zM .framer-1i6mno { 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: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Rb3zM .framer-1jpsmuj-container, .framer-Rb3zM .framer-5xrg40-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1gcoxk6 { --border-bottom-width: 1px; --border-color: var(--token-cc43cda6-6210-4e5b-b4ec-c3289859e7b2, #202124); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; opacity: 0.4; overflow: hidden; padding: 4px 8px 4px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Rb3zM .framer-w8a166 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Rb3zM .framer-1ajiudm-container, .framer-Rb3zM .framer-1frbjlb-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-Rb3zM .framer-13bjdv3 { align-content: center; align-items: center; background-color: var(--token-123ae811-0a96-4fe0-8112-ab098369241c, #ffe8e8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1yw7lgx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-10m6ztr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-1ivy8vq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-5lfe4l-container { flex: none; height: 4px; position: relative; width: 200px; }\",\".framer-Rb3zM .framer-sg34zc, .framer-Rb3zM .framer-9o6mxo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Rb3zM .framer-1no7osb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-mqealp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Rb3zM .framer-17coq5l { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); overflow: hidden; position: relative; text-decoration: none; width: 100%; }\",\".framer-Rb3zM .framer-16eto0s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-60zat7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Rb3zM .framer-zw5xsl { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rb3zM.framer-zzh7j4, .framer-Rb3zM .framer-xt1hpu, .framer-Rb3zM .framer-1me8hnn, .framer-Rb3zM .framer-1b9gxgs, .framer-Rb3zM .framer-16ljz3s, .framer-Rb3zM .framer-1s9bzhk, .framer-Rb3zM .framer-1dan825, .framer-Rb3zM .framer-1fn3z6c, .framer-Rb3zM .framer-rn8nes, .framer-Rb3zM .framer-th63uj, .framer-Rb3zM .framer-pbrq6s, .framer-Rb3zM .framer-1i6mno, .framer-Rb3zM .framer-1gcoxk6, .framer-Rb3zM .framer-13bjdv3, .framer-Rb3zM .framer-1yw7lgx, .framer-Rb3zM .framer-10m6ztr, .framer-Rb3zM .framer-1ivy8vq, .framer-Rb3zM .framer-1no7osb, .framer-Rb3zM .framer-mqealp, .framer-Rb3zM .framer-16eto0s, .framer-Rb3zM .framer-60zat7, .framer-Rb3zM .framer-zw5xsl { gap: 0px; } .framer-Rb3zM.framer-zzh7j4 > *, .framer-Rb3zM .framer-13bjdv3 > *, .framer-Rb3zM .framer-10m6ztr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Rb3zM.framer-zzh7j4 > :first-child, .framer-Rb3zM .framer-16ljz3s > :first-child, .framer-Rb3zM .framer-1s9bzhk > :first-child, .framer-Rb3zM .framer-1fn3z6c > :first-child, .framer-Rb3zM .framer-pbrq6s > :first-child, .framer-Rb3zM .framer-1i6mno > :first-child, .framer-Rb3zM .framer-13bjdv3 > :first-child, .framer-Rb3zM .framer-1yw7lgx > :first-child, .framer-Rb3zM .framer-10m6ztr > :first-child, .framer-Rb3zM .framer-1ivy8vq > :first-child, .framer-Rb3zM .framer-mqealp > :first-child, .framer-Rb3zM .framer-16eto0s > :first-child { margin-top: 0px; } .framer-Rb3zM.framer-zzh7j4 > :last-child, .framer-Rb3zM .framer-16ljz3s > :last-child, .framer-Rb3zM .framer-1s9bzhk > :last-child, .framer-Rb3zM .framer-1fn3z6c > :last-child, .framer-Rb3zM .framer-pbrq6s > :last-child, .framer-Rb3zM .framer-1i6mno > :last-child, .framer-Rb3zM .framer-13bjdv3 > :last-child, .framer-Rb3zM .framer-1yw7lgx > :last-child, .framer-Rb3zM .framer-10m6ztr > :last-child, .framer-Rb3zM .framer-1ivy8vq > :last-child, .framer-Rb3zM .framer-mqealp > :last-child, .framer-Rb3zM .framer-16eto0s > :last-child { margin-bottom: 0px; } .framer-Rb3zM .framer-xt1hpu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rb3zM .framer-xt1hpu > :first-child, .framer-Rb3zM .framer-1me8hnn > :first-child, .framer-Rb3zM .framer-1b9gxgs > :first-child, .framer-Rb3zM .framer-1dan825 > :first-child, .framer-Rb3zM .framer-rn8nes > :first-child, .framer-Rb3zM .framer-th63uj > :first-child, .framer-Rb3zM .framer-1gcoxk6 > :first-child, .framer-Rb3zM .framer-1no7osb > :first-child, .framer-Rb3zM .framer-60zat7 > :first-child, .framer-Rb3zM .framer-zw5xsl > :first-child { margin-left: 0px; } .framer-Rb3zM .framer-xt1hpu > :last-child, .framer-Rb3zM .framer-1me8hnn > :last-child, .framer-Rb3zM .framer-1b9gxgs > :last-child, .framer-Rb3zM .framer-1dan825 > :last-child, .framer-Rb3zM .framer-rn8nes > :last-child, .framer-Rb3zM .framer-th63uj > :last-child, .framer-Rb3zM .framer-1gcoxk6 > :last-child, .framer-Rb3zM .framer-1no7osb > :last-child, .framer-Rb3zM .framer-60zat7 > :last-child, .framer-Rb3zM .framer-zw5xsl > :last-child { margin-right: 0px; } .framer-Rb3zM .framer-1me8hnn > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rb3zM .framer-1b9gxgs > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Rb3zM .framer-16ljz3s > *, .framer-Rb3zM .framer-pbrq6s > *, .framer-Rb3zM .framer-1yw7lgx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Rb3zM .framer-1s9bzhk > *, .framer-Rb3zM .framer-1ivy8vq > *, .framer-Rb3zM .framer-16eto0s > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Rb3zM .framer-1dan825 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Rb3zM .framer-1fn3z6c > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-Rb3zM .framer-rn8nes > *, .framer-Rb3zM .framer-1no7osb > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Rb3zM .framer-th63uj > *, .framer-Rb3zM .framer-1gcoxk6 > *, .framer-Rb3zM .framer-zw5xsl > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Rb3zM .framer-1i6mno > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Rb3zM .framer-mqealp > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Rb3zM .framer-60zat7 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-Rb3zM { background: var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-Rb3zM.framer-zzh7j4 { width: 810px; } .framer-Rb3zM .framer-1me8hnn, .framer-Rb3zM .framer-1yw7lgx { padding: 40px; } .framer-Rb3zM .framer-1rir2zu { height: var(--framer-aspect-ratio-supported, 340px); } .framer-Rb3zM .framer-pbrq6s { width: 180px; } .framer-Rb3zM .framer-17coq5l { height: var(--framer-aspect-ratio-supported, 112px); }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Rb3zM { background: var(--token-123ae811-0a96-4fe0-8112-ab098369241c, rgb(255, 255, 255)) /* {\"name\":\"White\"} */; } .framer-Rb3zM.framer-zzh7j4 { width: 390px; } .framer-Rb3zM .framer-jklg0z-container, .framer-Rb3zM .framer-9o6mxo { order: 0; } .framer-Rb3zM .framer-xt1hpu { order: 3; } .framer-Rb3zM .framer-1me8hnn { flex-direction: column; gap: 10px; padding: 110px 20px 20px 20px; } .framer-Rb3zM .framer-1b9gxgs { flex: none; flex-direction: column; width: 100%; } .framer-Rb3zM .framer-16ljz3s { flex: none; width: 100%; } .framer-Rb3zM .framer-1rir2zu { height: var(--framer-aspect-ratio-supported, 233px); } .framer-Rb3zM .framer-1fn3z6c { justify-content: flex-start; } .framer-Rb3zM .framer-54gq6p { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-Rb3zM .framer-rn8nes { flex-wrap: wrap; gap: 10px; width: 100%; } .framer-Rb3zM .framer-th63uj, .framer-Rb3zM .framer-16eto0s { flex: 1 0 0px; width: 1px; } .framer-Rb3zM .framer-1ognig1-container { height: 20px; width: 20px; } .framer-Rb3zM .framer-pbrq6s { align-self: unset; gap: 12px; height: min-content; width: 100%; } .framer-Rb3zM .framer-1gcoxk6 { width: 100%; } .framer-Rb3zM .framer-13bjdv3 { order: 4; } .framer-Rb3zM .framer-1yw7lgx { gap: 12px; padding: 20px; } .framer-Rb3zM .framer-1no7osb { flex-direction: column; gap: 24px; } .framer-Rb3zM .framer-mqealp { flex: none; flex-direction: row; width: 100%; } .framer-Rb3zM .framer-17coq5l { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 114px); width: 1px; } .framer-Rb3zM .framer-60zat7 { flex-wrap: wrap; order: 1; } .framer-Rb3zM .framer-5xrg40-container { order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Rb3zM .framer-1me8hnn, .framer-Rb3zM .framer-1b9gxgs, .framer-Rb3zM .framer-rn8nes, .framer-Rb3zM .framer-pbrq6s, .framer-Rb3zM .framer-1yw7lgx, .framer-Rb3zM .framer-1no7osb, .framer-Rb3zM .framer-mqealp { gap: 0px; } .framer-Rb3zM .framer-1me8hnn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Rb3zM .framer-1me8hnn > :first-child, .framer-Rb3zM .framer-1b9gxgs > :first-child, .framer-Rb3zM .framer-pbrq6s > :first-child, .framer-Rb3zM .framer-1yw7lgx > :first-child, .framer-Rb3zM .framer-1no7osb > :first-child { margin-top: 0px; } .framer-Rb3zM .framer-1me8hnn > :last-child, .framer-Rb3zM .framer-1b9gxgs > :last-child, .framer-Rb3zM .framer-pbrq6s > :last-child, .framer-Rb3zM .framer-1yw7lgx > :last-child, .framer-Rb3zM .framer-1no7osb > :last-child { margin-bottom: 0px; } .framer-Rb3zM .framer-1b9gxgs > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Rb3zM .framer-rn8nes > *, .framer-Rb3zM .framer-mqealp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Rb3zM .framer-rn8nes > :first-child, .framer-Rb3zM .framer-mqealp > :first-child { margin-left: 0px; } .framer-Rb3zM .framer-rn8nes > :last-child, .framer-Rb3zM .framer-mqealp > :last-child { margin-right: 0px; } .framer-Rb3zM .framer-pbrq6s > *, .framer-Rb3zM .framer-1yw7lgx > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Rb3zM .framer-1no7osb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-Rb3zM[data-border=\"true\"]::after, .framer-Rb3zM [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 3366\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"LAeFCAnj3\":{\"layout\":[\"fixed\",\"auto\"]},\"E6RWQ7JJD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerCGWlJVyo0=withCSS(Component,css,\"framer-Rb3zM\");export default FramerCGWlJVyo0;FramerCGWlJVyo0.displayName=\"News\";FramerCGWlJVyo0.defaultProps={height:3366,width:1200};addFonts(FramerCGWlJVyo0,[{explicitInter:true,fonts:[{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v7/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvSniyMgvs-wJDtw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v7/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvRviyMgvs-wJDtw.woff2\",weight:\"400\"},{family:\"Bricolage Grotesque\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/bricolagegrotesque/v7/3y9U6as8bTXq_nANBjzKo3IeZx8z6up5BeSl5jBNz_19PpbpMXuECpwUxJBOm_OJWiaaD30YfKfjZZoLvcXlyMgvs-wJDtw.woff2\",weight:\"600\"}]},...MobileNavbarFonts,...FloatingNavFonts,...TheMastheadFonts,...PhosphorFonts,...AdMockUpFonts,...AscenderBarFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"aDqcNuy5x\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"aDqcNuy5x\"]):[],...((_componentPresets_fonts2=componentPresets.fonts)===null||_componentPresets_fonts2===void 0?void 0:_componentPresets_fonts2[\"Flm2Nix78\"])?getFontsFromComponentPreset((_componentPresets_fonts3=componentPresets.fonts)===null||_componentPresets_fonts3===void 0?void 0:_componentPresets_fonts3[\"Flm2Nix78\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCGWlJVyo0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LAeFCAnj3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"E6RWQ7JJD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"3366\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "ixCACsE,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,EAAe,GAAM,UAAAC,GAAU,QAAQ,gBAAAC,EAAgB,gBAAgB,OAAAC,EAAO,EAAE,OAAAC,EAAO,GAAG,UAAUC,EAAc,EAAE,OAAAC,EAAO,QAAQvB,EAAY,SAAAwB,EAAS,SAAAC,EAAS,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,QAAAC,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,EAAS,EAAEhE,EAAYe,EAASI,EAAO,EAAQ8C,EAASC,GAAmB,EAAQC,GAAiBhD,EAAO,IAAI,EAAQiD,GAAgBjD,EAAO,IAAI,EAAQkD,EAAWC,GAAc,EAAQC,GAAaC,GAAUxE,CAAK,EAG3iByE,EAAiBJ,EAAW,cAAcvC,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQuC,EAAaL,EAAW,GAAKM,GAAU5D,CAAQ,EAAQ6D,GAAkBP,EAAW,GAAMM,GAAU5D,EAAS,CAAC,OAAO,sBAAsB,KAAK,EAAI,CAAC,EACxQ8D,EAAUxB,IAAgB,IAAI,KAAKA,EAAmB,CAAC,KAAA3B,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAAyD,CAAS,EAAEhE,GAAoBC,CAAQ,EAC3HgE,EAAU,IAAI,CAAIV,IAAqBtC,EAAYL,EAAK,EAAOG,EAAM,EAAE,EAAE,CAACE,CAAW,CAAC,EACtFgD,EAAU,IAAI,CAAIV,GAAqBI,IAAmB,gBAAwBC,EAAahD,EAAK,EAAOG,EAAM,EAAE,EAAE,CAAC4C,EAAiBC,CAAY,CAAC,EAO7I,IAAMM,GAAoC7D,EAAO,EAAK,EAE7D4D,EAAU,IAAI,CAAC,GAAG,CAACC,GAAoC,QAAQ,CAACA,GAAoC,QAAQ,GAAK,OAAQ,IAAMC,EAAiBC,GAAc3B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAA4C,GAAG,IAAIlC,GAK1O4D,GAAoE,KAOpEJ,GAA+C,GAAG,GAAG,CAAE,EAAE,CAACA,EAAUhC,EAAQD,EAAOW,CAAQ,CAAC,EAC7FwB,EAAU,IAAI,CAAC,GAAIG,GAAc3B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAAS4B,GAAO9D,EAAY8D,CAAK,CAAC,CAAE,EAAE,CAAC5B,CAAQ,CAAC,EACrH6B,GAAW,IAAI,CAAIjB,GAAiB,UAAU,MAAepD,EAAS,UACnE,CAACqD,IAAiBnC,GAAM,CAACkC,GAAiB,UAAQzC,EAAK,CAAG,CAAC,EAC9D2D,GAAU,IAAI,CAAItE,EAAS,UAASqD,GAAgB,QAAQrD,EAAS,QAAQ,MAAMoD,GAAiB,QAAQpD,EAAS,QAAQ,OAAOc,EAAM,EAAG,CAAC,EAAE,IAAMyD,GAAIC,GAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAG7C,IAAU,MAAM,OAAOC,EAAO4C,EAAS,GAAG7C,IAAU,SAAS,OAAOE,EAAQ2C,CAAS,EAAE,CAAC7C,EAAQE,EAAQD,EAAOiC,CAAS,CAAC,EAC5HE,EAAU,IAAI,CAAId,GAAUlD,EAAS,SAAS0D,IAAmB,YAAY,WAAW,IAAI/C,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GqD,EAAU,IAAI,CAAIhE,EAAS,SAAS,CAACiB,IAAMjB,EAAS,QAAQ,QAAQqC,GAAsC,GAAG,IAAI,EAAE,CAACA,CAAM,CAAC,EAC3H,IAAMqC,EAAY,IAAI,CAAC,IAAM9D,EAAMZ,EAAS,QAAYY,IAAgBA,EAAM,YAAY,IAAIkD,EAAU,GAAExD,GAAawD,GAA+C,GAAG,GAAG,GAC5KC,EAAU,SAASL,IAAmB,YAAYA,IAAmB,eAAeC,IAAahD,EAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAAgD,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,IAAIsB,GAAI,KAAKrD,EAAK,IAAIlB,EAAS,SAASa,GAA6C4B,IAAS5B,CAAC,EAAE,QAAQA,GAA2C6B,IAAQ7B,CAAC,EAAE,OAAOA,GAAyC8B,IAAO9B,CAAC,EAAE,QAAQA,GAAuC+B,IAAM/B,CAAC,EAAE,SAASkD,EAAU,SAASL,IAAmB,YAAYA,IAAmB,eAAeC,EAAa,QAAQI,EAAU,QAAQ,OAAOT,GAAY,CAACf,EAAO,WAAWmB,IAAmB,YAAY,CAACG,GAAkB,OACjrB,WAAW,OAAO9B,GAAe,CAACD,GAASD,IAAS9C,GAAa,sEAAsEgD,GAAeQ,EAAOA,EAAO,OAAU,aAAamC,EAAY,SAAStD,EAAS,MAAMkC,EAAW,GAAKrC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAAS0B,GAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAW,GAAa,QAAQ,QAAQ,UAAUtB,GAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAExC,GAAM,YAAY,QAAQ,SAASgF,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,GAAoBnF,GAAM,CAAC,QAAQ,CAAC,KAAKoF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,uEAAuE,OAAO9F,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAK8F,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAO9F,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAK8F,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,KAAK,YAAY,uHAAuH,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,IAAI,OAAO,CAAC,CAAC,cAAAhD,CAAa,IAAI,CAACA,CAAa,EAAE,gBAAgB,CAAC,KAAKgD,EAAY,MAAM,MAAM,aAAa,aAAa,eAAe,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,EAM99D,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,MAAA9D,CAAK,IAAIA,EAAM,aAAa,EAAE,EAAE,MAAM,CAAC,KAAK8D,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,ECzEC,IAAMC,GAAWC,EAASC,EAAK,EAAQC,GAAcC,GAAOC,EAAO,CAAC,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAmB,CAACC,EAAE,IAAI,yBAAyB,IAAUC,GAAmB,CAACD,EAAE,IAAI,oBAAoB,IAAUE,GAAW,CAAC,CAAC,MAAAJ,EAAM,SAAAK,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWT,GAAmCM,EAAO,WAAiBI,EAAmBC,GAAQ,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,GAAS3B,EAAO,OAAa4B,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAK,MAAM,CAAC,GAAGD,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,uFAAuF,OAAO,mKAAmK,CAAC,CAAE,EAAQC,GAAuB,CAACF,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,GAAGC,CAAS,EAAElB,GAASK,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,eAAe,YAAY,gBAAAvD,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBrB,GAAuBF,EAAM5B,CAAQ,EAAQoD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBtC,EAAKuC,GAAY,CAAC,GAAGpB,GAA4Ce,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQrB,EAAS,QAAQ,GAAM,SAAsBoB,EAAKR,GAAW,CAAC,MAAMN,GAAY,SAAsBc,EAAKwC,EAAK,CAAC,KAAK,uFAAuF,OAAO,YAAY,aAAa,GAAK,SAAsBC,EAAMrE,GAAc,CAAC,GAAGiD,EAAU,GAAGI,EAAgB,kBAAkB,CAAC,WAAWzC,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,GAAGyD,GAAGlE,GAAkB,GAAG4D,EAAsB,gBAAgBlB,EAAUK,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,GAAGvC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAS,CAAc1B,EAAK2C,EAA0B,CAAC,SAAsB3C,EAAK1B,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK7B,GAAM,CAAC,gBAAgB,wEAAwE,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,MAAM,OAAO,sDAAsD,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK4C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQC,GAAwFR,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,GAAGlD,GAAkBiC,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBW,EAAiB,SAAS,YAAY,kBAAkB1C,GAAmB,GAAGX,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQmE,GAAwFR,GAAkB,GAAI,KAAkEA,GAAkB,QAAS,KAAK,kBAAkB,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,GAAGlD,GAAkBiC,CAAS,CAAC,CAAC,CAAC,EAAEE,EAAYI,CAAc,CAAC,CAAC,EAAe1B,EAAK8C,EAAS,CAAC,sBAAsB,GAAK,SAAsB9C,EAAWE,EAAS,CAAC,SAAsBF,EAAK1B,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6DAA6D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkBxC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwD,GAAI,CAAC,kFAAkF,kFAAkF,uTAAuT,qLAAqL,gOAAgO,uJAAuJ,2WAA2W,wHAAwH,uIAAuI,uEAAuE,EASx+QC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,wBAAwB,6GAA6G,MAAM,QAAQ,KAAKI,EAAY,eAAe,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG/E,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVhhEqF,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,EAAeC,GAAI,CAAC,4jBAA4jB,EAAeC,GAAU,eCCnrB,IAAIC,GAAwBC,GAAyBC,GAAyBC,GAAqyEC,GAAkBC,EAASC,EAAY,EAAQC,GAAiBF,EAASG,EAAW,EAAQC,GAAgBC,GAAOC,CAAS,EAAQC,GAAiBP,EAASQ,EAAW,EAAQC,GAAcT,EAASU,EAAQ,EAAQC,GAAcX,EAASY,EAAQ,EAAQC,GAAiBb,EAASc,EAAW,EAAQC,GAAeV,GAAOW,CAAQ,EAAQC,GAAYjB,EAASkB,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAMD,GAAW,MAAM,QAAQA,CAAK,EAAUA,EAAM,OAAO,EAA6BA,GAAQ,MAAMA,IAAQ,GAAWE,GAAa,CAACF,EAAMG,EAAQ,CAAC,EAAEC,IAAe,CAAC,GAAG,OAAOJ,GAAQ,SAAS,MAAM,GAAG,IAAMK,EAAK,IAAI,KAAKL,CAAK,EAAE,GAAG,MAAMK,EAAK,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAMC,EAAQH,EAAQ,QAAQA,EAAQ,QAAQ,OAAaI,EAAY,CAAC,UAAUD,IAAU,OAAOH,EAAQ,UAAU,OAAU,UAAUG,IAAU,OAAO,OAAU,QAAQ,SAAS,KAAK,EAAQE,EAAe,QAAcC,EAAON,EAAQ,QAAQC,GAAcI,EACp7H,GAAG,CAAC,OAAOH,EAAK,eAAeI,EAAOF,CAAW,CAAE,MAAC,CAAM,OAAOF,EAAK,eAAeG,EAAeD,CAAW,CAAE,CAAC,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,EAAW,EAAQE,GAAW,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,EAAW,EAAQG,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAA1B,EAAa,UAAA2B,CAAS,EAAEC,GAAc,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAEjB,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkB,GAAS,KAAK,YAAY,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,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCJ,EAAqB,WAAW,CAAC,CAAC,EAAQK,EAAwBC,GAAK,CAAC,GAAG,CAACJ,EAAiB,MAAM,IAAIK,GAAc,mCAAmC,KAAK,UAAUP,CAAoB,GAAG,EAAE,OAAOE,EAAiBI,CAAG,CAAE,EAAE,IAAIE,EAAyBC,EAA0BC,EAA0BC,EAA0BC,EAA0B,GAAK,CAAC,MAAAC,GAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,GAAWT,EAAyBH,EAAwB,WAAW,KAAK,MAAMG,IAA2B,OAAOA,EAAyB,GAAG,UAAAU,EAAUb,EAAwB,WAAW,EAAE,UAAAc,EAAUd,EAAwB,WAAW,EAAE,UAAAe,GAAWX,EAA0BJ,EAAwB,WAAW,KAAK,MAAMI,IAA4B,OAAOA,EAA0B,GAAG,UAAAY,EAAUhB,EAAwB,WAAW,EAAE,UAAAiB,GAAWZ,EAA0BL,EAAwB,WAAW,KAAK,MAAMK,IAA4B,OAAOA,EAA0B,GAAG,UAAAa,GAAWZ,EAA0BN,EAAwB,WAAW,KAAK,MAAMM,IAA4B,OAAOA,EAA0B,GAAG,mBAAAa,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,UAAAC,IAAWjB,EAA0BP,EAAwB,WAAW,KAAK,MAAMO,IAA4B,OAAOA,EAA0B,GAAG,GAAGkB,CAAS,EAAE1C,GAASI,CAAK,EAAQuC,EAAU,IAAI,CAAC,IAAMC,EAAU9C,GAAiBgB,EAAiB/B,CAAY,EAAE,GAAG6D,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC/B,EAAiB/B,CAAY,CAAC,EAAQ+D,GAAmB,IAAI,CAAC,IAAMF,EAAU9C,GAAiBgB,EAAiB/B,CAAY,EAAqC,GAAnC,SAAS,MAAM6D,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC9B,EAAiB/B,CAAY,CAAC,EAAE,GAAK,CAACoE,EAAYC,EAAmB,EAAEC,GAA8BzB,EAAQxD,GAAY,EAAK,EAAQkF,GAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,CAACpF,GAAU,GAAiB8E,IAAc,YAA6CO,EAAa,IAASrF,GAAU,EAAiB8E,IAAc,YAAtB,GAAmEQ,EAAWH,EAAO,IAAI,EAAQI,GAAUC,GAAkB,WAAW,EAAQC,EAAQlF,GAAMmD,CAAS,EAAQgC,EAAiBC,GAAc,EAAQC,EAAYpF,GAAaoD,EAAU,CAAC,UAAU,OAAO,OAAO,EAAE,EAAE8B,CAAgB,EAAQG,EAAWL,GAAkB,WAAW,EAAQM,EAAWX,EAAO,IAAI,EAAQY,GAAsBC,GAAM,EAAQC,GAAsB,CAAa5C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,GAAwBA,EAAS,EAAE,OAAA6C,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlG,EAAiB,EAAE,SAAsBmG,EAAMC,GAAY,CAAC,GAAGhD,GAA4CyC,GAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAGlC,EAAU,UAAUmC,GAAGvG,GAAkB,GAAGgG,GAAsB,gBAAgB5C,CAAS,EAAE,IAAIjB,GAA6B8C,EAAK,MAAM,CAAC,GAAG9B,EAAK,EAAE,SAAS,CAACgC,GAAY,GAAgBe,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,CAAC,CAAC,EAAE,SAAsBqB,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,sDAAsD,aAAa,GAAK,SAAsBiH,EAAKtH,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwG,EAAa,GAAgBc,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBP,EAAKnH,GAAgB,CAAC,kBAAkB,CAAC,WAAWoB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,OAAO,KAAK,IAAImF,EAAK,OAAO,SAAS,CAAC,EAAE,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0CAA0C,aAAa,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBa,EAAKpH,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsG,EAAa,GAAgBc,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,EAAE,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,yCAAyC,SAAsBiH,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBqB,EAAK/G,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wEAAwE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+G,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,KAAK,uBAAuB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,GAAGZ,GAAU,KAAK,YAAY,IAAID,EAAK,SAAsBe,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqB,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,uEAAuE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,uEAAuE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,4BAA4B,EAAE,KAAK,aAAa,KAAK3C,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe2C,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,4CAA4C,GAAGzE,EAAkBoD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQmD,EAA0B,GAAG,EAAE,MAAM,kEAAkE,GAAGvG,EAAkBoD,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsB0C,EAAKU,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,EAA0B,GAAG,EAAE,MAAM,mEAAmE,GAAGvG,EAAkBoD,CAAS,CAAC,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe4C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,SAAS,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACZ,GAAsBU,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAGzE,EAAkBqD,CAAS,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkD,EAA0B,KAAK,EAAE,MAAM,OAAO,GAAGvG,EAAkBqD,CAAS,CAAC,CAAC,CAAC,EAAE,SAAsByC,EAAKU,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,EAA0B,KAAK,EAAE,MAAM,OAAO,GAAGvG,EAAkBqD,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,eAAe,CAAC,CAAC,CAAC,EAAe2C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcF,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,MAAM,CAAC,OAAO,EAAE,KAAK,SAAS,KAAKxC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,2BAA2B,SAAsBiH,EAAK7G,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6G,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqB,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAK,OAAO,KAAKP,EAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqB,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8OAA8O,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uEAAuE,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,8OAA8O,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uEAAuE,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,8OAA8O,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,gCAAgC,EAAE,KAAK,iBAAiB,KAAKtC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAesC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,EAAeA,EAAKW,GAAyB,CAAC,QAAQ,CAAC,sEAAuF/E,GAAM,UAAa,wEAAyFA,GAAM,SAAY,EAAE,SAAsBoE,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAASkE,EAAU,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,KAAK,OAAO,wBAAwB,CAAC,EAAE,8BAA8B,KAAK,8BAA8B,GAAG,+BAA+B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,4BAA4B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeqC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAsBA,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,4CAA4C,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,QAAQ,EAAE,KAAK,CAAC,EAAE,SAAsBqB,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,IAAI,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,2BAA2B,SAAsBiH,EAAK3G,GAAS,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2G,EAAKY,EAAK,CAAC,KAAK,wBAAwB,OAAO,YAAY,SAAsBV,EAAME,EAAO,EAAE,CAAC,UAAU,+BAA+B,cAAc,GAAK,mBAAmB,kBAAkB,KAAK,kBAAkB,WAAWtF,GAAW,SAAS,CAAckF,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,2BAA2B,SAAsBiH,EAAK7G,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6G,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,kBAAkB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,GAAGR,EAAW,KAAK,YAAY,IAAIC,EAAK,SAAS,CAAcK,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,mBAAmB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBqB,EAAKO,EAA0B,CAAC,OAAO,EAAE,MAAM,QAAQ,EAAE,mBAAmB,SAAsBP,EAAKnH,GAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,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,0BAA0B,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBmH,EAAKzG,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKxG,GAAe,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,GAAG,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,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,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBwG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,KAAK,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKa,GAAmB,CAAC,SAAsBb,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKpC,GAAS,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,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM0B,EAAS,EAAE,KAAK,iBAAiB,CAAC,CAAC,CAAC,EAAE,SAAsB+B,EAAKhF,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKuB,GAAS,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,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM0B,EAAS,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAAC6C,EAAWC,EAAeC,KAAwBhB,EAAKiB,GAAU,CAAC,SAASH,EAAW,IAAI,CAAC,CAAC,UAAUjD,EAAmB,GAAGG,EAAY,UAAUD,GAAmB,UAAUD,GAAmB,UAAUF,EAAkB,EAAEsD,KAAI,CAACrD,IAA0EA,EAAmB,IAAGE,KAA0EA,GAAmB,IAAG,IAAMoD,GAAa9G,GAAayD,GAAmB,CAAC,UAAU,SAAS,OAAO,EAAE,EAAEyB,CAAgB,EAAE,OAAoBS,EAAKG,GAAY,CAAC,GAAG,aAAanC,IAAc,SAAsBgC,EAAKoB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUvD,CAAkB,EAAE,SAAsBqC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKY,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU/C,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsBmC,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,kCAAkC,GAAGzE,EAAkB0D,EAAkB,CAAC,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6C,EAA0B,MAAM,EAAE,MAAM,4CAA4C,GAAGvG,EAAkB0D,EAAkB,CAAC,CAAC,CAAC,EAAE,SAAsBoC,EAAKU,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,EAA0B,kBAAkB,EAAE,MAAM,6CAA6C,GAAGvG,EAAkB0D,EAAkB,CAAC,EAAE,UAAU,+BAA+B,WAAW7C,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,aAAa,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKO,EAA0B,CAAC,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,2BAA2B,SAAsBiH,EAAK7G,GAAS,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,QAAQ,cAAc,gBAAgB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6G,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,uEAAuE,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,gCAAgC,EAAE,KAAK,OAAO,KAAKmB,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBqB,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAKY,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU/C,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBmC,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBA,EAAKvG,EAAS,CAAC,sBAAsB,GAAK,SAAsBuG,EAAWQ,EAAS,CAAC,SAAsBR,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,uEAAuE,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,oEAAoE,EAAE,SAAsBA,EAAKY,EAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU/C,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBmC,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,4BAA4B,EAAE,KAAK,QAAQ,KAAKjC,GAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,EAAE,kBAAkB,CAAC,EAAE,SAAsBqB,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,OAAO,SAAsBP,EAAKjH,EAAU,CAAC,UAAU,0BAA0B,SAAsBiH,EAAKM,EAAkB,CAAC,WAAW3B,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,wEAAwE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBqB,EAAKrG,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,wEAAwE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqG,EAAK,MAAM,CAAC,UAAUK,GAAGvG,GAAkB,GAAGgG,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,IAAI/F,GAAS,2IAA2I,gFAAgF,qVAAqV,qIAAqI,sIAAsI,oHAAoH,2VAA2V,+SAA+S,4RAA4R,4QAA4Q,gRAAgR,+KAA+K,oRAAoR,yRAAyR,gRAAgR,8RAA8R,0RAA0R,iJAAiJ,wRAAwR,sRAAsR,yGAAyG,+IAA+I,sMAAsM,iSAAiS,gSAAgS,iJAAiJ,ysBAAysB,6LAA6L,kJAAkJ,iWAAiW,4SAA4S,2RAA2R,ySAAyS,wGAAwG,kMAAkM,uQAAuQ,yQAAyQ,sMAAsM,yQAAyQ,iRAAiR,iRAAiR,q8IAAq8I,wDAAwDA,GAAS,ueAAue,gCAAgCA,GAAS,+uGAA+uG,GAAe+F,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,+bAA+b,EAS9r6CC,GAAgBC,GAAQxF,GAAUsF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,sBAAsB,OAAO,SAAS,MAAM,SAAS,IAAI,0JAA0J,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,MAAM,SAAS,IAAI,0JAA0J,OAAO,KAAK,EAAE,CAAC,OAAO,sBAAsB,OAAO,SAAS,MAAM,SAAS,IAAI,0JAA0J,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9I,GAAkB,GAAGG,GAAiB,GAAGK,GAAiB,GAAGE,GAAc,GAAGE,GAAc,GAAGE,GAAiB,GAAGI,GAAY,GAAGgI,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,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAK,GAAAvJ,GAAyCuJ,MAAS,MAAMvJ,KAA0B,SAAcA,GAAwB,UAAcwJ,IAA6BvJ,GAA0CsJ,MAAS,MAAMtJ,KAA2B,OAAO,OAAOA,GAAyB,SAAY,EAAE,CAAC,EAAE,GAAK,GAAAC,GAA0CqJ,MAAS,MAAMrJ,KAA2B,SAAcA,GAAyB,UAAcsJ,IAA6BrJ,GAA0CoJ,MAAS,MAAMpJ,KAA2B,OAAO,OAAOA,GAAyB,SAAY,EAAE,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACxwH,IAAMsJ,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,IAAI,uBAAyB,GAAG,yBAA2B,QAAQ,oCAAsC,4JAA0L,sBAAwB,OAAO,qBAAuB,OAAO,yBAA2B,OAAO,6BAA+B,MAAM,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", "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", "MotionAWithFX", "withFX", "motion", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "animation1", "transition2", "toResponsiveImage", "value", "transformTemplate1", "_", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "getProps", "height", "id", "image", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "GELLB3tYc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerglYOIpVBB", "withCSS", "glYOIpVBB_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "_componentPresets_fonts2", "_componentPresets_fonts3", "MobileNavbarFonts", "getFonts", "S5NHjY8jS_default", "FloatingNavFonts", "jBBAa5t7z_default", "ContainerWithFX", "withFX", "Container", "TheMastheadFonts", "T8zPiACMv_default", "PhosphorFonts", "Icon", "AdMockUpFonts", "glYOIpVBB_default", "AscenderBarFonts", "fCab_lGbp_default", "RichTextWithFX", "RichText2", "FooterFonts", "uHNIKJ3EN_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "toResponsiveImage", "value", "isSet", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "transition2", "animation1", "animation2", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "u_oKaJBBx_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "style", "className", "layoutId", "variant", "OkOS1PIYS", "YuuKzIep3", "MJiL7_GKg", "DjDgf3RLq", "xqCF62sOK", "pTm6wzo4_", "rKZW_6dfP", "YuuKzIep3rXA5gO8gP", "FA6P89nGUrXA5gO8gP", "xqCF62sOKrXA5gO8gP", "OkOS1PIYSrXA5gO8gP", "idrXA5gO8gP", "ApYGLM_B1", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "ref2", "elementId", "useRouteElementId", "visible", "activeLocaleCode", "useLocaleCode", "textContent", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "x", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "Link", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "textContent1", "PathVariablesContext", "css", "FramerCGWlJVyo0", "withCSS", "CGWlJVyo0_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
