{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js", "ssg:https://framerusercontent.com/modules/a4tWBL2MuojC5U8s9RiI/0PkJ7TxKXiFyVjJjK8tS/kji02HjQf.js", "ssg:https://framerusercontent.com/modules/pjaw0TvBuxyMZnwZq0x8/pk3WHmLkguN6YqYqE5W2/XChIh2K_X.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;opacity=1;}/* Measure parent and child */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */ if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */ let initialResize=useRef(true);useEffect(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});};/* Default Properties */ Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */ addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */ const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/vGaesbbb12jdUzZRmL3u/1qNvHbMpw0lUkl2Z7rIb/Yjxb7n9U3.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"NS08yqi1D\",\"CU9DtENyC\"];const serializationHash=\"framer-bmpPv\";const variantClassNames={CU9DtENyC:\"framer-v-1bicluz\",NS08yqi1D:\"framer-v-1magtdk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"NS08yqi1D\",Phone:\"CU9DtENyC\"};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:\"NS08yqi1D\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NS08yqi1D\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1magtdk\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NS08yqi1D\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\",...style},...addPropertyOverrides({CU9DtENyC:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgrgzm-container\",layoutDependency:layoutDependency,layoutId:\"JJZ5juGdl-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:50,height:\"100%\",hoverFactor:1,id:\"JJZ5juGdl\",layoutId:\"JJZ5juGdl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11fq11q\",\"data-framer-name\":\"Marquee Inner\",layoutDependency:layoutDependency,layoutId:\"cSUTJRDKs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"Branding\"})}),className:\"framer-wnm549\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k3LzPWreq\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-qs96op\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PVS6Jgi7v\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"web design\"})}),className:\"framer-9tpm4d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"bVCkpGDd2\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-1qng42m\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xXLyTRv9V\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"logo design\"})}),className:\"framer-e01uyy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EzA7rfi4s\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-1r8dvbo\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zWE0GcI6z\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"brand strategy\"})}),className:\"framer-1jht5ck\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T7UtqEcD_\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-hn6opr\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rJrLlKnjK\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"no-code\"})}),className:\"framer-1qy6p2y\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CEqTlAdpy\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-1ylbr2s\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JKRDB18C4\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"web development\"})}),className:\"framer-8lcv7z\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ET9MSe8wk\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-1pk1h5z\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S0xzMzyOD\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"brand consulting\"})}),className:\"framer-1qcsx4g\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ibFPsnlpB\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-zff6jr\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pvr6Balfz\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"brand book\"})}),className:\"framer-1o4koxj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cjayrztfF\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-18coru\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aGbLsdwHr\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"brand and web audit\"})}),className:\"framer-66tb0b\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a98qjLaJr\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-1if0ize\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FCqTaZM65\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"brand personality\"})}),className:\"framer-1ue3wwi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DkCFUMKMU\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-1qqda3q\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DieCZmr37\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"social media\"})}),className:\"framer-1br1lcp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RjOmbh51B\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1izhkbb\",\"data-styles-preset\":\"Yjxb7n9U3\",children:\"\\xb7\"})}),className:\"framer-toj8fg\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xwF8vLR56\",verticalAlignment:\"top\",withExternalLayout:true})]})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bmpPv.framer-96oylt, .framer-bmpPv .framer-96oylt { display: block; }\",\".framer-bmpPv.framer-1magtdk { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: 1704px; }\",\".framer-bmpPv .framer-1xgrgzm-container { flex: none; height: 14px; position: relative; width: 100%; }\",\".framer-bmpPv .framer-11fq11q { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 12px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bmpPv .framer-wnm549, .framer-bmpPv .framer-qs96op, .framer-bmpPv .framer-9tpm4d, .framer-bmpPv .framer-1qng42m, .framer-bmpPv .framer-e01uyy, .framer-bmpPv .framer-1r8dvbo, .framer-bmpPv .framer-1jht5ck, .framer-bmpPv .framer-hn6opr, .framer-bmpPv .framer-1qy6p2y, .framer-bmpPv .framer-1ylbr2s, .framer-bmpPv .framer-8lcv7z, .framer-bmpPv .framer-1pk1h5z, .framer-bmpPv .framer-1qcsx4g, .framer-bmpPv .framer-zff6jr, .framer-bmpPv .framer-1o4koxj, .framer-bmpPv .framer-18coru, .framer-bmpPv .framer-66tb0b, .framer-bmpPv .framer-1if0ize, .framer-bmpPv .framer-1ue3wwi, .framer-bmpPv .framer-1qqda3q, .framer-bmpPv .framer-1br1lcp, .framer-bmpPv .framer-toj8fg { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bmpPv.framer-1magtdk, .framer-bmpPv .framer-11fq11q { gap: 0px; } .framer-bmpPv.framer-1magtdk > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-bmpPv.framer-1magtdk > :first-child, .framer-bmpPv .framer-11fq11q > :first-child { margin-left: 0px; } .framer-bmpPv.framer-1magtdk > :last-child, .framer-bmpPv .framer-11fq11q > :last-child { margin-right: 0px; } .framer-bmpPv .framer-11fq11q > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } }\",\".framer-bmpPv.framer-v-1bicluz.framer-1magtdk { padding: 12px 0px 12px 0px; width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 1704\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CU9DtENyC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerkji02HjQf=withCSS(Component,css,\"framer-bmpPv\");export default Framerkji02HjQf;Framerkji02HjQf.displayName=\"Marquee\";Framerkji02HjQf.defaultProps={height:46,width:1704};addPropertyControls(Framerkji02HjQf,{variant:{options:[\"NS08yqi1D\",\"CU9DtENyC\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerkji02HjQf,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerkji02HjQf\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"46\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1704\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CU9DtENyC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kji02HjQf.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,FormSelect,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/A3MzleNqE6RLj80KOoGo/Buh56hgm7AK1Qdp7kYxF/YAP816Y5n.js\";import ButtonCopy4 from\"https://framerusercontent.com/modules/5jksfqImXk08LclWW2dW/SbCbmxHm3LlBpHT0WNKJ/iuL6oNEEt.js\";import Marquee from\"https://framerusercontent.com/modules/a4tWBL2MuojC5U8s9RiI/0PkJ7TxKXiFyVjJjK8tS/kji02HjQf.js\";const MarqueeFonts=getFonts(Marquee);const NoiseFonts=getFonts(Noise);const ButtonCopy4Fonts=getFonts(ButtonCopy4);const cycleOrder=[\"gPE5RsHZd\",\"TiFkeZ7AH\",\"ieLfp93Lw\",\"vsgEGwr_L\"];const serializationHash=\"framer-2w1dS\";const variantClassNames={gPE5RsHZd:\"framer-v-40x68u\",ieLfp93Lw:\"framer-v-hf3uov\",TiFkeZ7AH:\"framer-v-1dap2su\",vsgEGwr_L:\"framer-v-1d4ka06\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"gPE5RsHZd\",Laptop:\"vsgEGwr_L\",Phone:\"ieLfp93Lw\",Tablet:\"TiFkeZ7AH\"};const getProps=({height,id,page,width,...props})=>{return{...props,FZjIrmUi0:page??props.FZjIrmUi0,variant:humanReadableVariantMap[props.variant]??props.variant??\"gPE5RsHZd\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,FZjIrmUi0,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gPE5RsHZd\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"ieLfp93Lw\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"ieLfp93Lw\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-40x68u\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"gPE5RsHZd\",ref:refBinding,style:{backgroundColor:\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\",...style},...addPropertyOverrides({ieLfp93Lw:{\"data-framer-name\":\"Phone\"},TiFkeZ7AH:{\"data-framer-name\":\"Tablet\"},vsgEGwr_L:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hj6sgm-container\",layoutDependency:layoutDependency,layoutId:\"Gzj0UZwhp-container\",nodeId:\"Gzj0UZwhp\",rendersWithMotion:true,scopeId:\"XChIh2K_X\",children:/*#__PURE__*/_jsx(Marquee,{height:\"100%\",id:\"Gzj0UZwhp\",layoutId:\"Gzj0UZwhp\",style:{width:\"100%\"},variant:\"NS08yqi1D\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13vn8hf\",layoutDependency:layoutDependency,layoutId:\"zJgCGdYRt\",style:{backgroundColor:\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dsp54c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xo8gTnfGr-container\",nodeId:\"xo8gTnfGr\",rendersWithMotion:true,scopeId:\"XChIh2K_X\",style:{opacity:.45},children:/*#__PURE__*/_jsx(Noise,{backgroundSize:256,borderRadius:0,height:\"100%\",id:\"xo8gTnfGr\",layoutId:\"xo8gTnfGr\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yy5h4e\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"egTzoV7Ej\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"Let\u2019s create your new brand \"})}),className:\"framer-pi9vg5\",\"data-framer-name\":\"Let\u2019s create your new brand\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PmgPtLSJY\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/9cad5bbb-c47d-415f-a4e0-2c6a0ae3f3a3/submit\",className:\"framer-1r5e1kp\",\"data-framer-name\":\"Contact Form\",layoutDependency:layoutDependency,layoutId:\"SO1mcpzmT\",nodeId:\"SO1mcpzmT\",redirectUrl:{webPageId:\"DKV89G92D\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1krjytd\",layoutDependency:layoutDependency,layoutId:\"rIz_GTACT\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-dnzwyi\",layoutDependency:layoutDependency,layoutId:\"FB79Tu4Xo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"First Name\"})}),className:\"framer-fmqpqx\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"UL0JiM4yC\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1qk2x6r\",inputName:\"First Name\",layoutDependency:layoutDependency,layoutId:\"oj0j4yGVa\",placeholder:\"Jane\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-tbadm1\",layoutDependency:layoutDependency,layoutId:\"BzR29KmqE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Last Name\"})}),className:\"framer-5o5er6\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"gvaukPyje\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1k20twg\",inputName:\"Last Name\",layoutDependency:layoutDependency,layoutId:\"D96DEWo6s\",placeholder:\"Smith\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9w6j5t\",layoutDependency:layoutDependency,layoutId:\"uVowona3K\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1txkhoq\",layoutDependency:layoutDependency,layoutId:\"dUtNPbZJH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Email\"})}),className:\"framer-661k3m\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"HdqMDEvwz\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-15e3g6t\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"zOsG8lDVD\",placeholder:\"jane@example.com\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1twfm65\",layoutDependency:layoutDependency,layoutId:\"TUIjX7yYc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Company Name\"})}),className:\"framer-f51577\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"EGsw_7NlR\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-cy1ech\",inputName:\"Company\",layoutDependency:layoutDependency,layoutId:\"mxrrsRfYT\",placeholder:\"Acme Corp.\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q1c6jq\",layoutDependency:layoutDependency,layoutId:\"eGgqVHMfI\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-12e1twf\",layoutDependency:layoutDependency,layoutId:\"fjkAiXDGu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Website\"})}),className:\"framer-18agmnq\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"CCPbY7tHS\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-jlypuf\",inputName:\"Website\",layoutDependency:layoutDependency,layoutId:\"dkKtVVyp4\",placeholder:\"www.example.com\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1rn524e\",layoutDependency:layoutDependency,layoutId:\"kO5phZPin\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Estimated budget\"})}),className:\"framer-4yfjz8\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"Mg1aJWQlm\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-9ontjw\",defaultValue:\"\",inputName:\"Budget\",layoutDependency:layoutDependency,layoutId:\"wIEO8vrEw\",required:true,selectOptions:[{disabled:true,title:\"Select an option\",type:\"option\",value:\"\"},{title:\"$1,000 - $5,000\",type:\"option\",value:\"$1,000 - $5,000\"},{title:\"$5,000 - $10,000\",type:\"option\",value:\"$5,000 - $10,000\"},{title:\"$10,000 - $15,000\",type:\"option\",value:\"$10,000 - $15,000\"},{title:\"$15,000 - $20,000\",type:\"option\",value:\"$15,000 - $20,000\"},{title:\"$20,000 +\",type:\"option\",value:\"$20,000 +\"}],style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z4ll82\",layoutDependency:layoutDependency,layoutId:\"DFcvMZB2M\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-2sa6zn\",layoutDependency:layoutDependency,layoutId:\"ElrEzfki6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Estimated Timeframe\"})}),className:\"framer-aebbwf\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"OckVGHdx_\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-1w5ztzt\",defaultValue:\"\",inputName:\"Timeframe\",layoutDependency:layoutDependency,layoutId:\"Nfd_G1DaE\",required:true,selectOptions:[{disabled:true,title:\"Select an option\",type:\"option\",value:\"\"},{title:\"< 1 month\",type:\"option\",value:\"< 1 month\"},{title:\"1 to 3 months\",type:\"option\",value:\"1 to 3\"},{title:\"3 to 6 months\",type:\"option\",value:\"3 to 6\"},{title:\"> 6 months\",type:\"option\",value:\"> 6\"}],style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-zfdsxj\",layoutDependency:layoutDependency,layoutId:\"jcauZqcvD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"How did you find me?\"})}),className:\"framer-1gcmauf\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"iZTnFKR0R\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-bodopi\",defaultValue:\"\",inputName:\"How did you find me\",layoutDependency:layoutDependency,layoutId:\"CorrFmzrX\",required:true,selectOptions:[{disabled:true,title:\"Select an option\",type:\"option\",value:\"\"},{title:\"Google Search\",type:\"option\",value:\"Google Search\"},{title:\"LinkedIn\",type:\"option\",value:\"linkedin\"},{title:\"Instagram\",type:\"option\",value:\"instagram\"},{title:\"Threads\",type:\"option\",value:\"Threads\"},{title:\"Youtube\",type:\"option\",value:\"youtube\"},{title:\"Contra\",type:\"option\",value:\"Contra\"},{title:\"Behance\",type:\"option\",value:\"Behance\"},{title:\"Recommendation\",type:\"option\",value:\"Recommendation\"},{title:\"Framer Experts\",type:\"option\",value:\"famer\"},{title:\"Other\",type:\"option\",value:\"Other\"}],style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1r98yev\",layoutDependency:layoutDependency,layoutId:\"eTE4VpzQi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Brief Project Description\"})}),className:\"framer-1bl6u8b\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"NlFeevh2p\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1yfo2n\",inputName:\"Project Description\",layoutDependency:layoutDependency,layoutId:\"JjZMN0Ad9\",placeholder:\"Let's talk about what's in your mind and how can I help you achieve your goals...\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,...addPropertyOverrides({ieLfp93Lw:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1000px) * 0.85 - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c8qvkv-container\",layoutDependency:layoutDependency,layoutId:\"FRbdg8j93-container\",nodeId:\"FRbdg8j93\",rendersWithMotion:true,scopeId:\"XChIh2K_X\",children:/*#__PURE__*/_jsx(ButtonCopy4,{height:\"100%\",id:\"FRbdg8j93\",layoutId:\"FRbdg8j93\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"TSH0tuDwH\",success:\"hJTU1dwJi\"},\"FDx51EKBU\"),width:\"100%\"})})}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1moiy14\",\"data-framer-name\":\"Hidden\",defaultValue:FZjIrmUi0,inputName:\"Page\",layoutDependency:layoutDependency,layoutId:\"VjeOcbC5L\",style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"hidden\"})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/bcf89ae0-0e60-479a-b782-ad9814f90a61/submit\",className:\"framer-1tz1zlp\",\"data-framer-name\":\"Contact Form\",layoutDependency:layoutDependency,layoutId:\"s1Zpyu43q\",nodeId:\"s1Zpyu43q\",redirectUrl:{webPageId:\"DKV89G92D\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yfad0z\",layoutDependency:layoutDependency,layoutId:\"xLQ9rp2Cx\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-tz52kb\",layoutDependency:layoutDependency,layoutId:\"m5HdVRH0V\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"First Name\"})}),className:\"framer-148ivjl\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"E0zLVeoOe\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1g16pyc\",inputName:\"First Name\",layoutDependency:layoutDependency,layoutId:\"RXuTLrb95\",placeholder:\"Jane\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1jm3mg9\",layoutDependency:layoutDependency,layoutId:\"fmLofPyQn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Last Name\"})}),className:\"framer-15lz9v3\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"D2FF5UGj9\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-19gzo73\",inputName:\"Last Name\",layoutDependency:layoutDependency,layoutId:\"oLiOqemlX\",placeholder:\"Smith\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w03nrs\",layoutDependency:layoutDependency,layoutId:\"inbQWw15I\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1fymfuj\",layoutDependency:layoutDependency,layoutId:\"FBAKcEYPG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Email\"})}),className:\"framer-1dcah90\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"QU8UpRdIN\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1gqcchs\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"ZJxxbs4RA\",placeholder:\"jane@example.com\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1ch1pg1\",layoutDependency:layoutDependency,layoutId:\"I9gaf_npL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Company Name\"})}),className:\"framer-f1dvfx\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"j4B0U7SgX\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-19xlbsw\",inputName:\"Company\",layoutDependency:layoutDependency,layoutId:\"KBQuBMdOf\",placeholder:\"Acme Corp.\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6jakqm\",layoutDependency:layoutDependency,layoutId:\"tHsc6JPkI\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1yu8e3\",layoutDependency:layoutDependency,layoutId:\"g3Bn5SP44\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Website\"})}),className:\"framer-17j8az4\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"v6g_nJBMA\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1bwfuar\",inputName:\"Website\",layoutDependency:layoutDependency,layoutId:\"E64767dRR\",placeholder:\"www.example.com\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1u818lx\",layoutDependency:layoutDependency,layoutId:\"xWUNe_dyd\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Estimated budget\"})}),className:\"framer-124q5l2\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"ejzT_uMrC\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-dszpk4\",defaultValue:\"\",inputName:\"Budget\",layoutDependency:layoutDependency,layoutId:\"zPUOLvfBZ\",required:true,selectOptions:[{disabled:true,title:\"Select an option\",type:\"option\",value:\"\"},{title:\"$1,000 - $5,000\",type:\"option\",value:\"$1,000 - $5,000\"},{title:\"$5,000 - $10,000\",type:\"option\",value:\"$5,000 - $10,000\"},{title:\"$10,000 - $15,000\",type:\"option\",value:\"$10,000 - $15,000\"},{title:\"$15,000 - $20,000\",type:\"option\",value:\"$15,000 - $20,000\"},{title:\"$20,000 +\",type:\"option\",value:\"$20,000 +\"}],style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e2x5zp\",layoutDependency:layoutDependency,layoutId:\"HSyz_i7DU\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1nlujvd\",layoutDependency:layoutDependency,layoutId:\"VDjpF42vn\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Estimated Timeframe\"})}),className:\"framer-i13kc2\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"Ok3cU9ueK\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-6zsai9\",defaultValue:\"\",inputName:\"Timeframe\",layoutDependency:layoutDependency,layoutId:\"Oun1AkIm6\",required:true,selectOptions:[{disabled:true,title:\"Select an option\",type:\"option\",value:\"\"},{title:\"< 1 month\",type:\"option\",value:\"< 1 month\"},{title:\"1 to 3 months\",type:\"option\",value:\"1 to 3\"},{title:\"3 to 6 months\",type:\"option\",value:\"3 to 6\"},{title:\"> 6 months\",type:\"option\",value:\"> 6\"}],style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1byaog6\",layoutDependency:layoutDependency,layoutId:\"sz9M42EKV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"How did you find me?\"})}),className:\"framer-1ocxhfv\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"p_lPwgr5_\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormSelect,{className:\"framer-ycrywr\",defaultValue:\"\",inputName:\"How did you find me\",layoutDependency:layoutDependency,layoutId:\"MxR3I1pES\",required:true,selectOptions:[{disabled:true,title:\"Select an option\",type:\"option\",value:\"\"},{title:\"Google Search\",type:\"option\",value:\"Google Search\"},{title:\"LinkedIn\",type:\"option\",value:\"linkedin\"},{title:\"Instagram\",type:\"option\",value:\"instagram\"},{title:\"Threads\",type:\"option\",value:\"Threads\"},{title:\"Youtube\",type:\"option\",value:\"youtube\"},{title:\"Contra\",type:\"option\",value:\"Contra\"},{title:\"Behance\",type:\"option\",value:\"Behance\"},{title:\"Recommendation\",type:\"option\",value:\"Recommendation\"},{title:\"Framer Experts\",type:\"option\",value:\"framer\"},{title:\"Other\",type:\"option\",value:\"Other\"}],style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-invalid-text-color\":\"rgb(153, 153, 153)\"}})]})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-p1di7z\",layoutDependency:layoutDependency,layoutId:\"d5uOi6NUs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0NsYXNoIERpc3BsYXkgU2VtaWJvbGQ=\",\"--framer-font-family\":'\"Clash Display Semibold\", \"Clash Display Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"1px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Brief Project Description\"})}),className:\"framer-1ron04y\",fonts:[\"CUSTOM;Clash Display Semibold\"],layoutDependency:layoutDependency,layoutId:\"yq0CXowXa\",style:{\"--extracted-r6o4lv\":\"var(--token-8cd2bc7a-9f62-4e5b-a33b-2c71cc1fe856, rgb(156, 204, 173))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1m6ywgy\",inputName:\"Project Description\",layoutDependency:layoutDependency,layoutId:\"WXfdPzy9H\",placeholder:\"Let's talk about what's in your mind and how can I help you achieve your goals...\",required:true,style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"textarea\"})]}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1mqya7h\",\"data-framer-name\":\"Hidden\",defaultValue:FZjIrmUi0,inputName:\"Page\",layoutDependency:layoutDependency,layoutId:\"Wsxye1AlD\",style:{\"--framer-input-background\":\"rgb(235, 235, 235)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-d020dae5-ecc0-4632-bbe9-38e43e5ab91b, rgb(15, 15, 15))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"hidden\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 0.65 - 40px)`,...addPropertyOverrides({TiFkeZ7AH:{width:`calc((${componentViewport?.width||\"100vw\"} - 96px) * 0.85 - 40px)`},vsgEGwr_L:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.75 - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-s7e7ox-container\",layoutDependency:layoutDependency,layoutId:\"IyHX8tJib-container\",nodeId:\"IyHX8tJib\",rendersWithMotion:true,scopeId:\"XChIh2K_X\",children:/*#__PURE__*/_jsx(ButtonCopy4,{height:\"100%\",id:\"IyHX8tJib\",layoutId:\"IyHX8tJib\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"TSH0tuDwH\",success:\"hJTU1dwJi\"},\"FDx51EKBU\"),width:\"100%\"})})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2w1dS.framer-7htu6c, .framer-2w1dS .framer-7htu6c { display: block; }\",\".framer-2w1dS.framer-40x68u { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1920px; }\",\".framer-2w1dS .framer-hj6sgm-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-2w1dS .framer-13vn8hf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 128px 48px 160px 48px; position: relative; width: 100%; }\",\".framer-2w1dS .framer-dsp54c-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-2w1dS .framer-1yy5h4e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2w1dS .framer-pi9vg5 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 70%; word-break: break-word; word-wrap: break-word; }\",\".framer-2w1dS .framer-1r5e1kp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 85%; }\",\".framer-2w1dS .framer-1krjytd, .framer-2w1dS .framer-1yfad0z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2w1dS .framer-dnzwyi, .framer-2w1dS .framer-tbadm1, .framer-2w1dS .framer-tz52kb, .framer-2w1dS .framer-1jm3mg9, .framer-2w1dS .framer-1fymfuj, .framer-2w1dS .framer-1ch1pg1, .framer-2w1dS .framer-1yu8e3, .framer-2w1dS .framer-1u818lx, .framer-2w1dS .framer-1nlujvd, .framer-2w1dS .framer-1byaog6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-2w1dS .framer-fmqpqx, .framer-2w1dS .framer-5o5er6, .framer-2w1dS .framer-661k3m, .framer-2w1dS .framer-f51577, .framer-2w1dS .framer-18agmnq, .framer-2w1dS .framer-4yfjz8, .framer-2w1dS .framer-aebbwf, .framer-2w1dS .framer-1gcmauf, .framer-2w1dS .framer-1bl6u8b, .framer-2w1dS .framer-148ivjl, .framer-2w1dS .framer-15lz9v3, .framer-2w1dS .framer-1dcah90, .framer-2w1dS .framer-f1dvfx, .framer-2w1dS .framer-17j8az4, .framer-2w1dS .framer-124q5l2, .framer-2w1dS .framer-i13kc2, .framer-2w1dS .framer-1ocxhfv, .framer-2w1dS .framer-1ron04y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-2w1dS .framer-1qk2x6r, .framer-2w1dS .framer-1k20twg, .framer-2w1dS .framer-15e3g6t, .framer-2w1dS .framer-cy1ech, .framer-2w1dS .framer-jlypuf, .framer-2w1dS .framer-9ontjw, .framer-2w1dS .framer-1w5ztzt, .framer-2w1dS .framer-bodopi, .framer-2w1dS .framer-1g16pyc, .framer-2w1dS .framer-19gzo73, .framer-2w1dS .framer-1gqcchs, .framer-2w1dS .framer-19xlbsw, .framer-2w1dS .framer-1bwfuar, .framer-2w1dS .framer-dszpk4, .framer-2w1dS .framer-6zsai9, .framer-2w1dS .framer-ycrywr { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Clash Display Medium\"; --framer-input-font-letter-spacing: 1px; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-padding: 12px; flex: none; height: 60px; position: relative; width: 100%; }',\".framer-2w1dS .framer-9w6j5t, .framer-2w1dS .framer-1q1c6jq, .framer-2w1dS .framer-z4ll82 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2w1dS .framer-1txkhoq, .framer-2w1dS .framer-1twfm65, .framer-2w1dS .framer-12e1twf, .framer-2w1dS .framer-1rn524e, .framer-2w1dS .framer-2sa6zn, .framer-2w1dS .framer-zfdsxj, .framer-2w1dS .framer-1r98yev, .framer-2w1dS .framer-p1di7z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-2w1dS .framer-1yfo2n, .framer-2w1dS .framer-1m6ywgy { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Clash Display Medium\"; --framer-input-font-letter-spacing: 1px; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 120px; position: relative; width: 100%; }',\".framer-2w1dS .framer-c8qvkv-container, .framer-2w1dS .framer-s7e7ox-container { flex: none; height: 60px; position: relative; width: 100%; }\",'.framer-2w1dS .framer-1moiy14, .framer-2w1dS .framer-1mqya7h { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Clash Display Medium\"; --framer-input-font-letter-spacing: 1px; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 120px; position: relative; width: 100%; }',\".framer-2w1dS .framer-1tz1zlp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 65%; }\",\".framer-2w1dS .framer-w03nrs, .framer-2w1dS .framer-6jakqm, .framer-2w1dS .framer-e2x5zp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2w1dS.framer-40x68u, .framer-2w1dS .framer-13vn8hf, .framer-2w1dS .framer-1yy5h4e, .framer-2w1dS .framer-1r5e1kp, .framer-2w1dS .framer-1krjytd, .framer-2w1dS .framer-dnzwyi, .framer-2w1dS .framer-tbadm1, .framer-2w1dS .framer-9w6j5t, .framer-2w1dS .framer-1txkhoq, .framer-2w1dS .framer-1twfm65, .framer-2w1dS .framer-1q1c6jq, .framer-2w1dS .framer-12e1twf, .framer-2w1dS .framer-1rn524e, .framer-2w1dS .framer-z4ll82, .framer-2w1dS .framer-2sa6zn, .framer-2w1dS .framer-zfdsxj, .framer-2w1dS .framer-1r98yev, .framer-2w1dS .framer-1tz1zlp, .framer-2w1dS .framer-1yfad0z, .framer-2w1dS .framer-tz52kb, .framer-2w1dS .framer-1jm3mg9, .framer-2w1dS .framer-w03nrs, .framer-2w1dS .framer-1fymfuj, .framer-2w1dS .framer-1ch1pg1, .framer-2w1dS .framer-6jakqm, .framer-2w1dS .framer-1yu8e3, .framer-2w1dS .framer-1u818lx, .framer-2w1dS .framer-e2x5zp, .framer-2w1dS .framer-1nlujvd, .framer-2w1dS .framer-1byaog6, .framer-2w1dS .framer-p1di7z { gap: 0px; } .framer-2w1dS.framer-40x68u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2w1dS.framer-40x68u > :first-child, .framer-2w1dS .framer-13vn8hf > :first-child, .framer-2w1dS .framer-1r5e1kp > :first-child, .framer-2w1dS .framer-dnzwyi > :first-child, .framer-2w1dS .framer-tbadm1 > :first-child, .framer-2w1dS .framer-9w6j5t > :first-child, .framer-2w1dS .framer-1txkhoq > :first-child, .framer-2w1dS .framer-1twfm65 > :first-child, .framer-2w1dS .framer-1q1c6jq > :first-child, .framer-2w1dS .framer-12e1twf > :first-child, .framer-2w1dS .framer-1rn524e > :first-child, .framer-2w1dS .framer-z4ll82 > :first-child, .framer-2w1dS .framer-2sa6zn > :first-child, .framer-2w1dS .framer-zfdsxj > :first-child, .framer-2w1dS .framer-1r98yev > :first-child, .framer-2w1dS .framer-1tz1zlp > :first-child, .framer-2w1dS .framer-tz52kb > :first-child, .framer-2w1dS .framer-1jm3mg9 > :first-child, .framer-2w1dS .framer-1fymfuj > :first-child, .framer-2w1dS .framer-1ch1pg1 > :first-child, .framer-2w1dS .framer-1yu8e3 > :first-child, .framer-2w1dS .framer-1u818lx > :first-child, .framer-2w1dS .framer-1nlujvd > :first-child, .framer-2w1dS .framer-1byaog6 > :first-child, .framer-2w1dS .framer-p1di7z > :first-child { margin-top: 0px; } .framer-2w1dS.framer-40x68u > :last-child, .framer-2w1dS .framer-13vn8hf > :last-child, .framer-2w1dS .framer-1r5e1kp > :last-child, .framer-2w1dS .framer-dnzwyi > :last-child, .framer-2w1dS .framer-tbadm1 > :last-child, .framer-2w1dS .framer-9w6j5t > :last-child, .framer-2w1dS .framer-1txkhoq > :last-child, .framer-2w1dS .framer-1twfm65 > :last-child, .framer-2w1dS .framer-1q1c6jq > :last-child, .framer-2w1dS .framer-12e1twf > :last-child, .framer-2w1dS .framer-1rn524e > :last-child, .framer-2w1dS .framer-z4ll82 > :last-child, .framer-2w1dS .framer-2sa6zn > :last-child, .framer-2w1dS .framer-zfdsxj > :last-child, .framer-2w1dS .framer-1r98yev > :last-child, .framer-2w1dS .framer-1tz1zlp > :last-child, .framer-2w1dS .framer-tz52kb > :last-child, .framer-2w1dS .framer-1jm3mg9 > :last-child, .framer-2w1dS .framer-1fymfuj > :last-child, .framer-2w1dS .framer-1ch1pg1 > :last-child, .framer-2w1dS .framer-1yu8e3 > :last-child, .framer-2w1dS .framer-1u818lx > :last-child, .framer-2w1dS .framer-1nlujvd > :last-child, .framer-2w1dS .framer-1byaog6 > :last-child, .framer-2w1dS .framer-p1di7z > :last-child { margin-bottom: 0px; } .framer-2w1dS .framer-13vn8hf > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-2w1dS .framer-1yy5h4e > *, .framer-2w1dS .framer-1krjytd > *, .framer-2w1dS .framer-1yfad0z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2w1dS .framer-1yy5h4e > :first-child, .framer-2w1dS .framer-1krjytd > :first-child, .framer-2w1dS .framer-1yfad0z > :first-child, .framer-2w1dS .framer-w03nrs > :first-child, .framer-2w1dS .framer-6jakqm > :first-child, .framer-2w1dS .framer-e2x5zp > :first-child { margin-left: 0px; } .framer-2w1dS .framer-1yy5h4e > :last-child, .framer-2w1dS .framer-1krjytd > :last-child, .framer-2w1dS .framer-1yfad0z > :last-child, .framer-2w1dS .framer-w03nrs > :last-child, .framer-2w1dS .framer-6jakqm > :last-child, .framer-2w1dS .framer-e2x5zp > :last-child { margin-right: 0px; } .framer-2w1dS .framer-1r5e1kp > *, .framer-2w1dS .framer-9w6j5t > *, .framer-2w1dS .framer-1q1c6jq > *, .framer-2w1dS .framer-z4ll82 > *, .framer-2w1dS .framer-1tz1zlp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2w1dS .framer-dnzwyi > *, .framer-2w1dS .framer-tbadm1 > *, .framer-2w1dS .framer-1txkhoq > *, .framer-2w1dS .framer-1twfm65 > *, .framer-2w1dS .framer-12e1twf > *, .framer-2w1dS .framer-1rn524e > *, .framer-2w1dS .framer-2sa6zn > *, .framer-2w1dS .framer-zfdsxj > *, .framer-2w1dS .framer-1r98yev > *, .framer-2w1dS .framer-tz52kb > *, .framer-2w1dS .framer-1jm3mg9 > *, .framer-2w1dS .framer-1fymfuj > *, .framer-2w1dS .framer-1ch1pg1 > *, .framer-2w1dS .framer-1yu8e3 > *, .framer-2w1dS .framer-1u818lx > *, .framer-2w1dS .framer-1nlujvd > *, .framer-2w1dS .framer-1byaog6 > *, .framer-2w1dS .framer-p1di7z > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2w1dS .framer-w03nrs > *, .framer-2w1dS .framer-6jakqm > *, .framer-2w1dS .framer-e2x5zp > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-2w1dS.framer-v-1dap2su.framer-40x68u, .framer-2w1dS.framer-v-hf3uov.framer-40x68u { width: 810px; }\",\".framer-2w1dS.framer-v-1dap2su .framer-13vn8hf { padding: 96px 48px 96px 48px; }\",\".framer-2w1dS.framer-v-1dap2su .framer-1tz1zlp { width: 85%; }\",\".framer-2w1dS.framer-v-hf3uov .framer-13vn8hf { padding: 60px 30px 60px 30px; }\",\".framer-2w1dS.framer-v-hf3uov .framer-1yy5h4e { flex-direction: column; gap: 40px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2w1dS.framer-v-hf3uov .framer-1yy5h4e { gap: 0px; } .framer-2w1dS.framer-v-hf3uov .framer-1yy5h4e > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-2w1dS.framer-v-hf3uov .framer-1yy5h4e > :first-child { margin-top: 0px; } .framer-2w1dS.framer-v-hf3uov .framer-1yy5h4e > :last-child { margin-bottom: 0px; } }\",\".framer-2w1dS.framer-v-1d4ka06.framer-40x68u { width: 1280px; }\",\".framer-2w1dS.framer-v-1d4ka06 .framer-13vn8hf { padding: 128px 0px 160px 0px; }\",\".framer-2w1dS.framer-v-1d4ka06 .framer-1tz1zlp { width: 75%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1250\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TiFkeZ7AH\":{\"layout\":[\"fixed\",\"auto\"]},\"ieLfp93Lw\":{\"layout\":[\"fixed\",\"auto\"]},\"vsgEGwr_L\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FZjIrmUi0\":\"page\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXChIh2K_X=withCSS(Component,css,\"framer-2w1dS\");export default FramerXChIh2K_X;FramerXChIh2K_X.displayName=\"Section CTA\";FramerXChIh2K_X.defaultProps={height:1250,width:1920};addPropertyControls(FramerXChIh2K_X,{variant:{options:[\"gPE5RsHZd\",\"TiFkeZ7AH\",\"ieLfp93Lw\",\"vsgEGwr_L\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\",\"Laptop\"],title:\"Variant\",type:ControlType.Enum},FZjIrmUi0:{defaultValue:\"\",title:\"Page\",type:ControlType.String}});addFonts(FramerXChIh2K_X,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Clash Display Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/CWpCQyaxXID5O8v8cVkyBbq4C3I.woff2\"},{family:\"Clash Display Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/9JLstuW6I83bW38sKqeeDZu70c.woff2\"}]},...MarqueeFonts,...NoiseFonts,...ButtonCopy4Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXChIh2K_X\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"FZjIrmUi0\\\":\\\"page\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TiFkeZ7AH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ieLfp93Lw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vsgEGwr_L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XChIh2K_X.map"],
  "mappings": "8nBAAAA,IAA0X,IAAMC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WASzpB,SAARC,EAAwBC,EAAM,CAAa,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,GAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEN,EAAiB,CAAC,UAAAO,GAAU,WAAAC,CAAU,EAAET,GAAoBU,EAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAwBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM1B,CAAK,EAAQ2B,EAAYF,GAAY,EAAKf,IAAY,KAAMA,EAAU,QAAQ,IAAMkB,EAAalB,IAAY,QAAQA,IAAY,QAAcd,EAAOiC,GAAe,CAAC,EAAQC,GAAYnC,GAAsBe,CAAS,EAAQqB,GAAUC,GAAapC,EAAOkC,EAAW,EAA6BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAW,CAAeC,GAAU,EAAgBA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAmBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA4BC,GAAY,EAAMC,GAAQ,EAAKrB,IACvnCoB,GAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACrB,GAAUI,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEM,GAAQ,GAAkC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAM/C,EAAIsC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe3B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAyC,GAAGI,EAAY,CACz2B,GAAG,CAACJ,EAAS,CAGG,IAAI4B,EAAcjB,EAAO,EAAI,EAAEkB,GAAU,KAAKP,GAAQ,EAASQ,GAAOpB,EAAU,QAAQ,CAAC,CAAC,YAAAqB,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,SAAST,GAAQ,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,GAAS,IAAI1B,EAAM,CAACuD,EAAMC,IAAQ,CAAC,IAAIC,EAAIC,EAAKC,EAAKC,EAAK,IAAIC,EAAQL,IAAQ,IAAGK,EAAK1B,EAAY,CAAC,GAAMqB,IAAQxD,EAAM,OAAO,IAAG6D,EAAK1B,EAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMlB,IAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,IAAID,EAAK,MAAMvB,EAAK,SAAuB0B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,GAAGrB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACrC,EAAU,QAAQ0C,EAAE,EAAEA,EAAEtB,GAAYsB,IAAKvB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAI1B,EAAM,CAACuD,EAAMW,IAAa,CAAC,IAAIT,EAAIC,EAAKC,EAAKC,EAAKC,EAAKM,GAAK,IAAM7B,GAAK,CAAC,MAAMlB,IAAWqC,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,OAAO,OAAOpC,GAAYqC,EAAKH,EAAM,SAAS,MAAMG,IAAO,OAAO,OAAOA,EAAK,OAAO,MAAM,EAAE,OAAqBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAuBD,EAAK,KAAK,CAAC,MAAMxB,GAAK,cAAc,GAAK,SAAuB0B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAKJ,EAAM,SAAS,MAAMI,IAAO,OAAO,OAAOA,EAAK,MAAM,MAAMvC,IAAWwC,EAAKL,EAAM,SAAS,MAAMK,IAAO,OAAO,OAAOA,EAAK,MAAM,OAAO,OAAOvC,GAAYwC,EAAKN,EAAM,SAAS,MAAMM,IAAO,OAAO,OAAOA,EAAK,OAAO,OAAO,WAAW,EAAE,GAAGX,EAAc,EAAE,SAASK,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGE,GAAKZ,EAAM,SAAS,MAAMY,KAAO,OAAO,OAAOA,GAAK,QAAQ,CAAC,EAAEF,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAE,EAAI,IAAME,EAAe9B,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQ+B,GAAYnC,EAAO,IAAI,EAAQoC,GAASpC,EAAO,IAAI,EAAQqC,GAAKrC,EAAO,CAAC,EAAQsC,GAAQtC,EAAO,EAAK,EAAQuC,GAAgBC,GAAiB,EAAQC,GAAQzC,EAAO,IAAI,EAAQ0C,EAAa1C,EAAO,IAAI,EAE7rE,GAAG,CAACX,EAAS,CAAC,IAAMsD,EAASC,GAAU7C,CAAS,EAEzCpC,GAA+BuD,GAAU,IAAI,CAAC,GAAG,EAAAqB,IAAiB,CAACL,GAAgB,CAAC5D,GAAe,OAAAoE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC7C,GAAY,CAAC,EAAEA,GAAYsC,CAAc,CAAE,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE5D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIoE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACnE,EAAY2D,EAAe5D,CAAK,CAAC,EAGxWuE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB5E,GAA+B,OAKnFwE,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6B9D,EAAM,KAAQgE,GAAQ,UAASS,GAAOxE,GAAa8D,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBjF,EAAO,IAAI2E,GAAK,OAAO,CAAE,CAAC,CAAG,CAAa,IAAMY,GAAcvD,EAAa,WAAW,YAAkBwD,GAAenE,EAAU,EAAQoE,GAAa,IAAIpE,EAAU,EAAQqE,GAAeC,GAAMrE,GAAU,EAAEkE,EAAc,EAAQI,GAAa,IAAItE,GAAgBuE,GAAS,mBAAmBN,EAAa,mBAAmBhE,EAAS,KAAKmE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBlE,EAAS,KAAKqE,EAAY,KAAuB,OAAI7D,EAAuWmC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG4B,GAAe,QAAQ9C,GAAQ,gBAAgB7B,EAAY0E,GAAS,OAAU,aAAa1E,EAAY0E,GAAS,OAAU,UAAU1E,EAAY0E,GAAS,OAAU,SAASzE,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIW,EAAU,SAAuB0D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAIzF,EAAI,IAAIS,IAAY,UAAUmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK1D,IAAY,SAASmF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWzD,EAAU,SAAS,WAAW,cAAciB,EAAa,MAAM,SAAS,GAAGd,EAAM,UAAUjB,GAA8B,OAAUkC,GAAU,WAAWR,EAAS,OAAO,WAAW,EAAE,aAAa,IAAI,CAACiD,GAAQ,QAAQ,GAAQI,EAAa,SAASA,EAAa,QAAQ,mBAAmBnE,CAAW,CAAG,EAAE,aAAa,IAAI,CAAC+D,GAAQ,QAAQ,GAASI,EAAa,SAASA,EAAa,QAAQ,mBAAmB,CAAC,CAAG,EAAE,SAAS,CAACnC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAArxCiD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAehC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAgBlC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAA0+B,CAA2BnG,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAA0BoG,EAAoBpG,EAAO,CAAC,MAAM,CAAC,KAAKqG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA2B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAqBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAiDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC1B97KC,IAC6jB,IAAMC,GAAYC,EAASC,CAAM,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,GAAW,SAAAxC,CAAQ,EAAEyC,GAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAad,EAAS,EAAQe,GAAkBC,GAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,GAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBzB,EAAKuC,EAA0B,CAAC,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc2D,EAAMtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAAS,CAAC,sBAAsB,GAAK,SAAsBzC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,gFAAgF,iRAAiR,yGAAyG,kQAAkQ,qwBAAqwB,ulBAAulB,8FAA8F,GAAeA,EAAG,EAQz3dC,GAAgBC,GAAQ/B,GAAU6B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGhE,GAAY,GAAGsE,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTv/DC,IAC65B,IAAMC,GAAaC,EAASC,EAAO,EAAQC,GAAWF,EAASG,EAAK,EAAQC,GAAiBJ,EAASK,EAAW,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAa,CAACC,EAAKL,EAASM,IAAiB,CAAC,OAAOD,EAAK,MAAM,CAAC,IAAI,UAAU,OAAOL,EAAS,SAASM,EAAe,IAAI,UAAU,OAAON,EAAS,SAASM,EAAe,IAAI,QAAQ,OAAON,EAAS,OAAOM,EAAe,IAAI,aAAa,OAAON,EAAS,YAAYM,CAAe,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,EAAM,UAAU,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,GAAGC,EAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAArD,CAAQ,EAAEsD,GAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,IAAIsC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiB5B,GAAuBD,EAAM1B,CAAQ,EAA4DwD,GAAkBC,GAAG7D,GAAkB,GAArE,CAAa8C,EAAS,CAAuE,EAAQgB,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAAuC,OAAoB9B,EAAK4C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsB0D,EAAM3C,EAAO,QAAQ,CAAC,GAAG2B,GAAU,GAAGI,EAAgB,UAAUQ,GAAGD,GAAkB,gBAAgBd,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,gBAAgB,wEAAwE,GAAGQ,CAAK,EAAE,GAAG3C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAS,CAAclC,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAMvB,GAAmB,OAAO,QAAQ,SAAsBvB,EAAK+C,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAK1B,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuE,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,oEAAoE,EAAE,SAAS,CAAcvC,EAAK8C,EAA0B,CAAC,SAAsB9C,EAAK+C,GAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,QAAQ,GAAG,EAAE,SAAsBvC,EAAKxB,GAAM,CAAC,eAAe,IAAI,aAAa,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqE,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,8CAA8C,EAAE,SAAS,mCAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mCAA8B,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEG,EAAY,GAAgB1C,EAAKiD,GAAc,CAAC,OAAO,oFAAoF,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBV,EAAiB,SAAS,YAAY,OAAO,YAAY,YAAY,CAAC,UAAU,WAAW,EAAE,SAASW,GAAwBL,EAAMM,GAAU,CAAC,SAAS,CAAcN,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,aAAa,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,OAAO,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,YAAY,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,QAAQ,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,mBAAmB,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,gBAAgB,UAAU,UAAU,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,aAAa,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,gBAAgB,UAAU,UAAU,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,kBAAkB,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKqD,EAAW,CAAC,UAAU,gBAAgB,aAAa,GAAG,UAAU,SAAS,iBAAiBd,EAAiB,SAAS,YAAY,SAAS,GAAK,cAAc,CAAC,CAAC,SAAS,GAAK,MAAM,mBAAmB,KAAK,SAAS,MAAM,EAAE,EAAE,CAAC,MAAM,kBAAkB,KAAK,SAAS,MAAM,iBAAiB,EAAE,CAAC,MAAM,mBAAmB,KAAK,SAAS,MAAM,kBAAkB,EAAE,CAAC,MAAM,oBAAoB,KAAK,SAAS,MAAM,mBAAmB,EAAE,CAAC,MAAM,oBAAoB,KAAK,SAAS,MAAM,mBAAmB,EAAE,CAAC,MAAM,YAAY,KAAK,SAAS,MAAM,WAAW,CAAC,EAAE,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,oCAAoC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKqD,EAAW,CAAC,UAAU,iBAAiB,aAAa,GAAG,UAAU,YAAY,iBAAiBd,EAAiB,SAAS,YAAY,SAAS,GAAK,cAAc,CAAC,CAAC,SAAS,GAAK,MAAM,mBAAmB,KAAK,SAAS,MAAM,EAAE,EAAE,CAAC,MAAM,YAAY,KAAK,SAAS,MAAM,WAAW,EAAE,CAAC,MAAM,gBAAgB,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,gBAAgB,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,aAAa,KAAK,SAAS,MAAM,KAAK,CAAC,EAAE,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,oCAAoC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKqD,EAAW,CAAC,UAAU,gBAAgB,aAAa,GAAG,UAAU,sBAAsB,iBAAiBd,EAAiB,SAAS,YAAY,SAAS,GAAK,cAAc,CAAC,CAAC,SAAS,GAAK,MAAM,mBAAmB,KAAK,SAAS,MAAM,EAAE,EAAE,CAAC,MAAM,gBAAgB,KAAK,SAAS,MAAM,eAAe,EAAE,CAAC,MAAM,WAAW,KAAK,SAAS,MAAM,UAAU,EAAE,CAAC,MAAM,YAAY,KAAK,SAAS,MAAM,WAAW,EAAE,CAAC,MAAM,UAAU,KAAK,SAAS,MAAM,SAAS,EAAE,CAAC,MAAM,UAAU,KAAK,SAAS,MAAM,SAAS,EAAE,CAAC,MAAM,SAAS,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,UAAU,KAAK,SAAS,MAAM,SAAS,EAAE,CAAC,MAAM,iBAAiB,KAAK,SAAS,MAAM,gBAAgB,EAAE,CAAC,MAAM,iBAAiB,KAAK,SAAS,MAAM,OAAO,EAAE,CAAC,MAAM,QAAQ,KAAK,SAAS,MAAM,OAAO,CAAC,EAAE,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,oCAAoC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,gBAAgB,UAAU,sBAAsB,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,oFAAoF,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAK8C,EAA0B,CAAC,OAAO,GAAG,GAAGhE,GAAqB,CAAC,UAAU,CAAC,MAAM,YAAYyC,GAAmB,OAAO,OAAO,iCAAiC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAK+C,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAKtB,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQU,GAAa8D,EAAU,CAAC,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelD,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,aAAaxB,EAAU,UAAU,OAAO,iBAAiBW,EAAiB,SAAS,YAAY,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgB3C,EAAKiD,GAAc,CAAC,OAAO,oFAAoF,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBV,EAAiB,SAAS,YAAY,OAAO,YAAY,YAAY,CAAC,UAAU,WAAW,EAAE,SAASW,GAAwBL,EAAMM,GAAU,CAAC,SAAS,CAAcN,EAAM3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,aAAa,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,OAAO,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,YAAY,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,QAAQ,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,mBAAmB,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,UAAU,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,aAAa,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,UAAU,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,kBAAkB,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKqD,EAAW,CAAC,UAAU,gBAAgB,aAAa,GAAG,UAAU,SAAS,iBAAiBd,EAAiB,SAAS,YAAY,SAAS,GAAK,cAAc,CAAC,CAAC,SAAS,GAAK,MAAM,mBAAmB,KAAK,SAAS,MAAM,EAAE,EAAE,CAAC,MAAM,kBAAkB,KAAK,SAAS,MAAM,iBAAiB,EAAE,CAAC,MAAM,mBAAmB,KAAK,SAAS,MAAM,kBAAkB,EAAE,CAAC,MAAM,oBAAoB,KAAK,SAAS,MAAM,mBAAmB,EAAE,CAAC,MAAM,oBAAoB,KAAK,SAAS,MAAM,mBAAmB,EAAE,CAAC,MAAM,YAAY,KAAK,SAAS,MAAM,WAAW,CAAC,EAAE,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,oCAAoC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKqD,EAAW,CAAC,UAAU,gBAAgB,aAAa,GAAG,UAAU,YAAY,iBAAiBd,EAAiB,SAAS,YAAY,SAAS,GAAK,cAAc,CAAC,CAAC,SAAS,GAAK,MAAM,mBAAmB,KAAK,SAAS,MAAM,EAAE,EAAE,CAAC,MAAM,YAAY,KAAK,SAAS,MAAM,WAAW,EAAE,CAAC,MAAM,gBAAgB,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,gBAAgB,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,aAAa,KAAK,SAAS,MAAM,KAAK,CAAC,EAAE,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,oCAAoC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKqD,EAAW,CAAC,UAAU,gBAAgB,aAAa,GAAG,UAAU,sBAAsB,iBAAiBd,EAAiB,SAAS,YAAY,SAAS,GAAK,cAAc,CAAC,CAAC,SAAS,GAAK,MAAM,mBAAmB,KAAK,SAAS,MAAM,EAAE,EAAE,CAAC,MAAM,gBAAgB,KAAK,SAAS,MAAM,eAAe,EAAE,CAAC,MAAM,WAAW,KAAK,SAAS,MAAM,UAAU,EAAE,CAAC,MAAM,YAAY,KAAK,SAAS,MAAM,WAAW,EAAE,CAAC,MAAM,UAAU,KAAK,SAAS,MAAM,SAAS,EAAE,CAAC,MAAM,UAAU,KAAK,SAAS,MAAM,SAAS,EAAE,CAAC,MAAM,SAAS,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,UAAU,KAAK,SAAS,MAAM,SAAS,EAAE,CAAC,MAAM,iBAAiB,KAAK,SAAS,MAAM,gBAAgB,EAAE,CAAC,MAAM,iBAAiB,KAAK,SAAS,MAAM,QAAQ,EAAE,CAAC,MAAM,QAAQ,KAAK,SAAS,MAAM,OAAO,CAAC,EAAE,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,oCAAoC,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAM3C,EAAO,MAAM,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,6EAA6E,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,iGAAiG,0BAA0B,WAAW,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,+BAA+B,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,UAAU,sBAAsB,iBAAiBb,EAAiB,SAAS,YAAY,YAAY,oFAAoF,SAAS,GAAK,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKoD,EAAmB,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,aAAaxB,EAAU,UAAU,OAAO,iBAAiBW,EAAiB,SAAS,YAAY,MAAM,CAAC,4BAA4B,qBAAqB,qCAAqC,MAAM,8BAA8B,2BAA2B,mCAAmC,MAAM,oCAAoC,MAAM,8BAA8B,QAAQ,kCAAkC,MAAM,4BAA4B,qEAAqE,4BAA4B,qBAAqB,mCAAmC,oBAAoB,EAAE,KAAK,QAAQ,CAAC,EAAevC,EAAK8C,EAA0B,CAAC,OAAO,GAAG,MAAM,SAASvB,GAAmB,OAAO,OAAO,0BAA0B,GAAGzC,GAAqB,CAAC,UAAU,CAAC,MAAM,SAASyC,GAAmB,OAAO,OAAO,yBAAyB,EAAE,UAAU,CAAC,MAAM,QAAQA,GAAmB,OAAO,OAAO,iBAAiB,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAK+C,GAA8B,CAAC,UAAU,0BAA0B,iBAAiBR,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAKtB,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQU,GAAa8D,EAAU,CAAC,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQI,GAAI,CAAC,kFAAkF,gFAAgF,uQAAuQ,wGAAwG,mSAAmS,yIAAyI,iSAAiS,qLAAqL,4RAA4R,4SAA4S,+hBAA+hB,wnBAAwnB,g3BAAg3B,6UAA6U,geAAge,giBAAgiB,gJAAgJ,6fAA6f,4RAA4R,yUAAyU,i0KAAi0K,8GAA8G,mFAAmF,iEAAiE,kFAAkF,uFAAuF,mbAAmb,kEAAkE,mFAAmF,iEAAiE,GAAeA,EAAG,EAS1ovDC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,OAAO,KAAKA,EAAY,MAAM,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,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,yBAAyB,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,uBAAuB,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGnF,GAAa,GAAGG,GAAW,GAAGE,GAAiB,GAAGoF,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["init_ssg_sandbox_shims", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "resize", "contentSize", "child", "index", "ref", "ref1", "ref2", "ref3", "ref4", "p", "LayoutGroup", "q", "i", "childIndex", "ref5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "init_ssg_sandbox_shims", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "u", "RichText2", "css", "Framerkji02HjQf", "withCSS", "kji02HjQf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "init_ssg_sandbox_shims", "MarqueeFonts", "getFonts", "kji02HjQf_default", "NoiseFonts", "Noise", "ButtonCopy4Fonts", "iuL6oNEEt_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "page", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FZjIrmUi0", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormSelect", "css", "FramerXChIh2K_X", "withCSS", "XChIh2K_X_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
