{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/MWqduPtyri1MWRGhJPwR/UOoisaTn9dNggAWjcqan/Md4hq3sX6.js", "ssg:https://framerusercontent.com/modules/SgK9KJQXaq1LtZyNuAy9/bIOmjm4csLpxxMtyCvCU/kzSbAjMNY.js", "ssg:https://framerusercontent.com/modules/gl9UJsDDkuJ5bWOIOuB0/cL450QsWVAiPfFnfY0bc/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";const MAX_SPEED=20;const defaultTransition={// ease: \"power4.out\",\nease:[.11,.72,0,1]};/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function StaggeredTextCycleV2({text,speed,delay,font,userSelect,color,alignment,tag,loop,stagger}){const Tag=tag;const content=text.split(\", \").map(phrase=>phrase.replace(/\\s+/g,\" \").trim());const[iteration,setIteration]=useState(0);const speedFormatted=(MAX_SPEED-speed+1)/MAX_SPEED*5;const delayFormattedMs=delay*1e3;const speedFormattedMs=speedFormatted*1e3;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[isFirstRender,setIsFirstRender]=useState(true);useEffect(()=>{const timeout=isFirstRender?speedFormattedMs/3+delayFormattedMs:speedFormattedMs+delayFormattedMs;const interval=setInterval(()=>{setIsFirstRender(false);if(iteration<content.length-1){setIteration(prev=>prev+1);}else if(loop){setIteration(0);}},timeout);return()=>clearInterval(interval);},[iteration,loop,isFirstRender]);return /*#__PURE__*/_jsxs(\"div\",{style:{userSelect:userSelect?\"auto\":\"none\",position:\"relative\",display:\"flex\",flexDirection:\"row\",overflow:\"visible\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\"},children:[/*#__PURE__*/_jsx(Tag,{\"aria-hidden\":true,style:{fontSize:\"24px\",...font,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",pointerEvents:\"none\",opacity:0,whiteSpace:\"pre-wrap\",width:\"100%\",textAlign:alignment},children:content.reduce((longest,current)=>current.length>longest.length?current:longest)}),isCanvas&&/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",whiteSpace:\"pre-wrap\",position:\"absolute\",top:0,left:0,width:\"100%\",textAlign:alignment},children:content[0]}),!isCanvas&&/*#__PURE__*/_jsx(_Fragment,{children:content.map((sentence,sentenceIndex)=>{let charIndex=0;// Split sentence into segments\nconst segments=sentence.split(/(\\s+|\\b)/).map(segment=>({text:segment,chars:segment.split(\"\").map(char=>({char,originalIndex:charIndex++}))}));console.log(segments);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,overflow:\"visible\",width:\"100%\",textAlign:alignment},children:/*#__PURE__*/_jsx(AnimatePresence,{mode:\"sync\",children:iteration===sentenceIndex&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexWrap:\"wrap\",width:\"100%\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\",gap:0},children:segments.map((segment,segmentIndex)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"inline-flex\",flexWrap:\"nowrap\",whiteSpace:\"pre\",overflow:\"hidden\"},children:segment.chars.map(({char,originalIndex})=>{const baseDelay=originalIndex/(sentence.length-1);const delayInitial=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const delayAnimate=baseDelay*(speedFormatted*.4)// 40% of speed\n    ;const delayExit=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const itemTransition={initial:{transform:`translate(0px, 150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayInitial*stagger}},animate:{transform:`translate(0px, 0px)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayAnimate*stagger}},exit:{transform:`translate(0px, -150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayExit*stagger}}};return /*#__PURE__*/_jsx(motion.div,{variants:itemTransition,initial:isFirstRender?false:\"initial\",animate:isFirstRender?false:\"animate\",exit:\"exit\",style:{display:\"inline-block\"},children:/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",opacity:1},children:char})},sentence+originalIndex);})},segmentIndex))})})},sentenceIndex);})})]});}StaggeredTextCycleV2.displayName=\"Staggered Cycle\";addPropertyControls(StaggeredTextCycleV2,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"DESIGNER, DEVELOPER\",description:\"Divide the words with a comma (,) if you want to display them separately.\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:MAX_SPEED/2,min:1,max:MAX_SPEED},delay:{type:ControlType.Number,title:\"Delay\",defaultValue:1,min:0,max:10,unit:\"s\"},stagger:{title:\"Stagger\",description:\"The delay between each word.\",type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},font:{title:\"Font\",type:ControlType.Font,controls:\"extended\"},alignment:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Alignment\",defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"]},userSelect:{title:\"User Select\",type:ControlType.Boolean,defaultValue:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#ffffff\"},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StaggeredTextCycleV2\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StaggeredTextCycle_Prod.map", "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,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);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=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}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,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (9f68555)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import MenuPageLink from\"https://framerusercontent.com/modules/9AcoQ74PMRK4RxePleOg/VbalIGnrCBpE6aYpq9IW/l1S7xHq7G.js\";const MenuPageLinkFonts=getFonts(MenuPageLink);const MotionNavWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.nav));const cycleOrder=[\"A0zFhiT_f\",\"qN2p9FYID\",\"hqOMLnTo_\",\"h5nsbyv4a\"];const serializationHash=\"framer-zjzMt\";const variantClassNames={A0zFhiT_f:\"framer-v-15ut5pg\",h5nsbyv4a:\"framer-v-1upzxnz\",hqOMLnTo_:\"framer-v-3a6jjh\",qN2p9FYID:\"framer-v-1pj315b\"};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:2,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-200};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Close (Desktop & Tablet)\":\"A0zFhiT_f\",\"Close (Phone)\":\"hqOMLnTo_\",\"Open (Desktop & Tablet)\":\"qN2p9FYID\",\"Open (Phone)\":\"h5nsbyv4a\"};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:\"A0zFhiT_f\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"A0zFhiT_f\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter4vgao3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"qN2p9FYID\");});const onMouseLeave15xl141=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"A0zFhiT_f\");});const onTapjuh2k=activeVariantCallback(async(...args)=>{setVariant(\"qN2p9FYID\");});const onTap9cr9ks=activeVariantCallback(async(...args)=>{setVariant(\"A0zFhiT_f\");});const onTapusd7ho=activeVariantCallback(async(...args)=>{setVariant(\"h5nsbyv4a\");});const onTapm9gxfo=activeVariantCallback(async(...args)=>{setVariant(\"hqOMLnTo_\");});const sngpfNPGJnt86s9=activeVariantCallback(async(...args)=>{setVariant(\"YasPhiVyt\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"qN2p9FYID\",\"h5nsbyv4a\"].includes(baseVariant))return true;return false;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionNavWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15ut5pg\",className,classNames),\"data-framer-appear-id\":\"15ut5pg\",\"data-framer-name\":\"Close (Desktop & Tablet)\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"A0zFhiT_f\",onMouseEnter:onMouseEnter4vgao3,optimized:true,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-a7a6e328-95a0-4435-9cda-bd94f54a8f4b, rgb(226, 53, 35))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"-0.39809593676181976px 0.39809593676181976px 2.5897662953132623px -1.125px rgba(0, 0, 0, 0.08682), -1.207253071552259px 1.207253071552259px 7.853642868226593px -2.25px rgba(0, 0, 0, 0.08034), -3.1913267607422307px 3.1913267607422307px 20.760800900226958px -3.375px rgba(0, 0, 0, 0.06447), -10px 10px 65.05382386916237px -4.5px rgba(0, 0, 0, 0.01)\",...style},variants:{h5nsbyv4a:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},qN2p9FYID:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({h5nsbyv4a:{\"data-framer-name\":\"Open (Phone)\",\"data-highlight\":undefined,onMouseEnter:undefined},hqOMLnTo_:{\"data-framer-name\":\"Close (Phone)\",\"data-highlight\":undefined,onMouseEnter:undefined},qN2p9FYID:{__framer__presenceInitial:animation2,\"data-framer-name\":\"Open (Desktop & Tablet)\",onMouseEnter:undefined,onMouseLeave:onMouseLeave15xl141}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-963i1l\",\"data-framer-name\":\"Icon Wrapper\",layoutDependency:layoutDependency,layoutId:\"LuCnHU2Kn\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bf39848f-bd85-46f2-adc5-5293ee3e79d8, rgb(20, 18, 17)))\"},children:\"MENU\"})}),className:\"framer-1jxi9r4\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"zlrj7E9ze\",style:{\"--extracted-r6o4lv\":\"var(--token-bf39848f-bd85-46f2-adc5-5293ee3e79d8, rgb(20, 18, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},variants:{qN2p9FYID:{\"--extracted-r6o4lv\":\"var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, rgb(1, 3, 6))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qN2p9FYID:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, rgb(1, 3, 6)))\"},children:\"MENU\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hho6n\",\"data-framer-name\":\"Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Dknq_FR1k\",onTap:onTapjuh2k,...addPropertyOverrides({h5nsbyv4a:{onTap:onTapm9gxfo},hqOMLnTo_:{onTap:onTapusd7ho},qN2p9FYID:{onTap:onTap9cr9ks}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vujc6\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"kXjioLRif\",style:{backgroundColor:\"var(--token-544c1595-381d-4fd8-8fff-136157c7001d, rgb(20, 20, 20))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{h5nsbyv4a:{rotate:-45},qN2p9FYID:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ko44ji\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"Y15UzZ7ZL\",style:{backgroundColor:\"var(--token-544c1595-381d-4fd8-8fff-136157c7001d, rgb(20, 20, 20))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{h5nsbyv4a:{rotate:45},qN2p9FYID:{rotate:-45}}})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xvmvhc\",\"data-framer-name\":\"Page Link\",layoutDependency:layoutDependency,layoutId:\"sPwtUsjzK\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({h5nsbyv4a:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+15+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||444.5)-35-411.42857142857144)/2+21.428571428571427+60)+0+0},qN2p9FYID:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 55px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)-60-422.1428571428571)/2+32.14285714285714+60)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n8u1yv-container\",layoutDependency:layoutDependency,layoutId:\"m3j7E9_CY-container\",children:/*#__PURE__*/_jsx(MenuPageLink,{cBDAeStM9:\"Home\",height:\"100%\",id:\"m3j7E9_CY\",layoutId:\"m3j7E9_CY\",oq88WCjeV:resolvedLinks[0],style:{width:\"100%\"},variant:\"iJvOklP5e\",width:\"100%\",...addPropertyOverrides({h5nsbyv4a:{oq88WCjeV:resolvedLinks[2],variant:\"hwUFKBLFZ\"},qN2p9FYID:{oq88WCjeV:resolvedLinks[1],sngpfNPGJ:sngpfNPGJnt86s9}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined},{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined},{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({h5nsbyv4a:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+15+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||444.5)-35-411.42857142857144)/2+21.428571428571427+60)+0+67},qN2p9FYID:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 55px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)-60-422.1428571428571)/2+32.14285714285714+60)+0+67}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-azqlf5-container\",layoutDependency:layoutDependency,layoutId:\"cCfowq8fO-container\",children:/*#__PURE__*/_jsx(MenuPageLink,{cBDAeStM9:\"About\",height:\"100%\",id:\"cCfowq8fO\",layoutId:\"cCfowq8fO\",oq88WCjeV:resolvedLinks1[0],style:{width:\"100%\"},variant:\"iJvOklP5e\",width:\"100%\",...addPropertyOverrides({h5nsbyv4a:{oq88WCjeV:resolvedLinks1[2],variant:\"hwUFKBLFZ\"},qN2p9FYID:{oq88WCjeV:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({h5nsbyv4a:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+15+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||444.5)-35-411.42857142857144)/2+21.428571428571427+60)+0+134},qN2p9FYID:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 55px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)-60-422.1428571428571)/2+32.14285714285714+60)+0+134}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dgfyq2-container\",layoutDependency:layoutDependency,layoutId:\"oyHAliaEy-container\",children:/*#__PURE__*/_jsx(MenuPageLink,{cBDAeStM9:\"Work\",height:\"100%\",id:\"oyHAliaEy\",layoutId:\"oyHAliaEy\",oq88WCjeV:resolvedLinks2[0],style:{width:\"100%\"},variant:\"iJvOklP5e\",width:\"100%\",...addPropertyOverrides({h5nsbyv4a:{cBDAeStM9:\"Portfolio\",oq88WCjeV:resolvedLinks2[2],variant:\"hwUFKBLFZ\"},qN2p9FYID:{cBDAeStM9:\"Portfolio\",oq88WCjeV:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined},{href:{webPageId:\"y69l0jQkZ\"},implicitPathVariables:undefined},{href:{webPageId:\"y69l0jQkZ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({h5nsbyv4a:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+15+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||444.5)-35-411.42857142857144)/2+21.428571428571427+60)+0+201},qN2p9FYID:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 55px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)-60-422.1428571428571)/2+32.14285714285714+60)+0+201}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mdjd9a-container\",layoutDependency:layoutDependency,layoutId:\"n9Ec4oScU-container\",children:/*#__PURE__*/_jsx(MenuPageLink,{cBDAeStM9:\"CV\",height:\"100%\",id:\"n9Ec4oScU\",layoutId:\"n9Ec4oScU\",oq88WCjeV:resolvedLinks3[0],style:{width:\"100%\"},variant:\"iJvOklP5e\",width:\"100%\",...addPropertyOverrides({h5nsbyv4a:{oq88WCjeV:resolvedLinks3[2],variant:\"hwUFKBLFZ\"},qN2p9FYID:{oq88WCjeV:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"a2PN1o71E\"},implicitPathVariables:undefined},{href:{webPageId:\"rnmFIVmji\"},implicitPathVariables:undefined},{href:{webPageId:\"rnmFIVmji\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,...addPropertyOverrides({h5nsbyv4a:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+15+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||444.5)-35-411.42857142857144)/2+21.428571428571427+60)+0+268},qN2p9FYID:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 55px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+20+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||480)-60-422.1428571428571)/2+32.14285714285714+60)+0+268}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kedh13-container\",layoutDependency:layoutDependency,layoutId:\"dcyve_ZGo-container\",children:/*#__PURE__*/_jsx(MenuPageLink,{cBDAeStM9:\"Contact\",height:\"100%\",id:\"dcyve_ZGo\",layoutId:\"dcyve_ZGo\",oq88WCjeV:resolvedLinks4[0],style:{width:\"100%\"},variant:\"iJvOklP5e\",width:\"100%\",...addPropertyOverrides({h5nsbyv4a:{oq88WCjeV:resolvedLinks4[2],variant:\"hwUFKBLFZ\"},qN2p9FYID:{oq88WCjeV:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zjzMt.framer-3sktbs, .framer-zjzMt .framer-3sktbs { display: block; }\",\".framer-zjzMt.framer-15ut5pg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 60px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zjzMt .framer-963i1l { 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%; z-index: 1; }\",\".framer-zjzMt .framer-1jxi9r4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zjzMt .framer-3hho6n { aspect-ratio: 0.9333333333333333 / 1; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: hidden; position: relative; width: 30px; z-index: 1; }\",\".framer-zjzMt .framer-15vujc6 { bottom: 9px; flex: none; height: 3px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zjzMt .framer-1ko44ji { flex: none; height: 3px; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 9px; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zjzMt .framer-xvmvhc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zjzMt .framer-1n8u1yv-container, .framer-zjzMt .framer-azqlf5-container, .framer-zjzMt .framer-dgfyq2-container, .framer-zjzMt .framer-1mdjd9a-container, .framer-zjzMt .framer-1kedh13-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zjzMt.framer-15ut5pg, .framer-zjzMt .framer-963i1l, .framer-zjzMt .framer-xvmvhc { gap: 0px; } .framer-zjzMt.framer-15ut5pg > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-zjzMt.framer-15ut5pg > :first-child, .framer-zjzMt .framer-xvmvhc > :first-child { margin-top: 0px; } .framer-zjzMt.framer-15ut5pg > :last-child, .framer-zjzMt .framer-xvmvhc > :last-child { margin-bottom: 0px; } .framer-zjzMt .framer-963i1l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zjzMt .framer-963i1l > :first-child { margin-left: 0px; } .framer-zjzMt .framer-963i1l > :last-child { margin-right: 0px; } .framer-zjzMt .framer-xvmvhc > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }\",\".framer-zjzMt.framer-v-1pj315b.framer-15ut5pg { height: min-content; padding: 20px 15px 40px 40px; width: 400px; }\",\".framer-zjzMt.framer-v-1pj315b .framer-963i1l, .framer-zjzMt.framer-v-1upzxnz .framer-963i1l { gap: unset; justify-content: space-between; }\",\".framer-zjzMt.framer-v-1pj315b .framer-15vujc6, .framer-zjzMt.framer-v-1pj315b .framer-1ko44ji { bottom: 14px; height: unset; left: 0px; right: 0px; top: 15px; width: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zjzMt.framer-v-1pj315b .framer-963i1l { gap: 0px; } .framer-zjzMt.framer-v-1pj315b .framer-963i1l > *, .framer-zjzMt.framer-v-1pj315b .framer-963i1l > :first-child, .framer-zjzMt.framer-v-1pj315b .framer-963i1l > :last-child { margin: 0px; } }\",\".framer-zjzMt.framer-v-3a6jjh.framer-15ut5pg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); width: 40px; }\",\".framer-zjzMt.framer-v-3a6jjh .framer-3hho6n { height: var(--framer-aspect-ratio-supported, 21px); width: 20px; }\",\".framer-zjzMt.framer-v-3a6jjh .framer-15vujc6 { bottom: 5px; height: 2px; }\",\".framer-zjzMt.framer-v-3a6jjh .framer-1ko44ji { height: 2px; top: 6px; }\",\".framer-zjzMt.framer-v-1upzxnz.framer-15ut5pg { height: min-content; padding: 15px 10px 20px 20px; width: 343px; }\",\".framer-zjzMt.framer-v-1upzxnz .framer-3hho6n { height: var(--framer-aspect-ratio-supported, 22px); width: 20px; }\",\".framer-zjzMt.framer-v-1upzxnz .framer-15vujc6 { bottom: 10px; height: 2px; }\",\".framer-zjzMt.framer-v-1upzxnz .framer-1ko44ji { height: 2px; left: calc(50.00000000000002% - 20px / 2); top: calc(52.38095238095241% - 2px / 2); width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zjzMt.framer-v-1upzxnz .framer-963i1l { gap: 0px; } .framer-zjzMt.framer-v-1upzxnz .framer-963i1l > *, .framer-zjzMt.framer-v-1upzxnz .framer-963i1l > :first-child, .framer-zjzMt.framer-v-1upzxnz .framer-963i1l > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 60\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qN2p9FYID\":{\"layout\":[\"fixed\",\"auto\"]},\"hqOMLnTo_\":{\"layout\":[\"fixed\",\"fixed\"]},\"h5nsbyv4a\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMd4hq3sX6=withCSS(Component,css,\"framer-zjzMt\");export default FramerMd4hq3sX6;FramerMd4hq3sX6.displayName=\"Menu/Navbar 3\";FramerMd4hq3sX6.defaultProps={height:60,width:60};addPropertyControls(FramerMd4hq3sX6,{variant:{options:[\"A0zFhiT_f\",\"qN2p9FYID\",\"hqOMLnTo_\",\"h5nsbyv4a\"],optionTitles:[\"Close (Desktop & Tablet)\",\"Open (Desktop & Tablet)\",\"Close (Phone)\",\"Open (Phone)\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMd4hq3sX6,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...MenuPageLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMd4hq3sX6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"60\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qN2p9FYID\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hqOMLnTo_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h5nsbyv4a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"60\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Md4hq3sX6.map", "// Generated by Framer (92d6359)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-MuCrK .framer-styles-preset-fdfch0:not(.rich-text-wrapper), .framer-MuCrK .framer-styles-preset-fdfch0.rich-text-wrapper a { --framer-link-current-text-color: var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, #ffffff) /* {\"name\":\"White\"} */; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: var(--token-a7a6e328-95a0-4435-9cda-bd94f54a8f4b, #e23523) /* {\"name\":\"Red (Main) 1\"} */; --framer-link-hover-text-decoration: none; --framer-link-text-color: var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, #ffffff); --framer-link-text-decoration: none; transition: color 0.4s cubic-bezier(0.44, 0, 0.56, 1) 0s; }'];export const className=\"framer-MuCrK\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (722666c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import StaggeredCycle from\"https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/QT1T2E8wheNIIXpHephB/Smooth_Scroll.js\";import Logo from\"#framer/local/canvasComponent/Eu6ViO5y0/Eu6ViO5y0.js\";import ButtonPrimaryButton from\"#framer/local/canvasComponent/F7v36j7A8/F7v36j7A8.js\";import Copywrite20251 from\"#framer/local/canvasComponent/gnIgU8rrl/gnIgU8rrl.js\";import CustomCursor from\"#framer/local/canvasComponent/i7xFxf7j9/i7xFxf7j9.js\";import MenuNavbar3 from\"#framer/local/canvasComponent/Md4hq3sX6/Md4hq3sX6.js\";import*as sharedStyle from\"#framer/local/css/kzSbAjMNY/kzSbAjMNY.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const MenuNavbar3Fonts=getFonts(MenuNavbar3);const LogoFonts=getFonts(Logo);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const StaggeredCycleFonts=getFonts(StaggeredCycle);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const ButtonPrimaryButtonFonts=getFonts(ButtonPrimaryButton);const TickerFonts=getFonts(Ticker);const Copywrite20251Fonts=getFonts(Copywrite20251);const CustomCursorFonts=getFonts(CustomCursor);const breakpoints={CVnKcgmOv:\"(min-width: 1600px)\",g7Ybl4ErP:\"(min-width: 810px) and (max-width: 1199px)\",lyTAk0H_P:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px) and (max-width: 1599px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-R7EVL\";const variantClassNames={CVnKcgmOv:\"framer-v-1ph9b45\",g7Ybl4ErP:\"framer-v-ovps99\",lyTAk0H_P:\"framer-v-m9fk3l\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:60,delay:.5,mass:1,stiffness:350,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:185};const transition2={damping:60,delay:.8,mass:1,stiffness:350,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:185};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:60,delay:1.1,mass:1,stiffness:350,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:60,delay:1.4,mass:1,stiffness:350,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:2.5,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"CVnKcgmOv\",Desktop:\"WQLkyLRf1\",Phone:\"lyTAk0H_P\",Tablet:\"g7Ybl4ErP\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const transition6={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const cursor={alignment:\"center\",component:CustomCursor,offset:{x:0,y:-15},placement:\"bottom\",transition:transition6,variant:\"jRaILe1bB\"};const cursor1={alignment:\"center\",component:CustomCursor,offset:{x:0,y:-65},placement:\"bottom\",transition:transition6,variant:\"ndIVBTavE\"};const cursor2={alignment:\"center\",component:CustomCursor,offset:{x:0,y:-60},placement:\"bottom\",transition:transition6,variant:\"ndIVBTavE\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"lyTAk0H_P\")return false;return true;};const elementId=useRouteElementId(\"u91_eMmgM\");const ref2=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"ABYqtM6Or\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();useCustomCursors({\"1a7huvc\":cursor,\"1dc8jz6\":cursor2,bu8g4s:cursor1});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bf39848f-bd85-46f2-adc5-5293ee3e79d8, rgb(20, 18, 17)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1a7huvc\",ref:ref??ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-foun8u-container hidden-m9fk3l\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IvmHhEgzx\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"IvmHhEgzx\",intensity:30,layoutId:\"IvmHhEgzx\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{y:60},g7Ybl4ErP:{y:30},lyTAk0H_P:{y:20}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:34,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18v8dyd-container\",layoutScroll:true,nodeId:\"ilkPDpdCM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lyTAk0H_P:{variant:\"hqOMLnTo_\"}},children:/*#__PURE__*/_jsx(MenuNavbar3,{height:\"100%\",id:\"ilkPDpdCM\",layoutId:\"ilkPDpdCM\",variant:\"A0zFhiT_f\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-yszn5a\",\"data-framer-name\":\"Hero Section\",id:elementId,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1spuo5k\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+1e3-1009+0),pixelHeight:338,pixelWidth:508,src:\"https://framerusercontent.com/images/daedPWeRMlMk40CXMfZaEYW5ZQs.png\"}},g7Ybl4ErP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+1e3-895+0),pixelHeight:338,pixelWidth:508,src:\"https://framerusercontent.com/images/daedPWeRMlMk40CXMfZaEYW5ZQs.png\"}},lyTAk0H_P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1e3-630+0),pixelHeight:338,pixelWidth:508,src:\"https://framerusercontent.com/images/daedPWeRMlMk40CXMfZaEYW5ZQs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+200+1e3-1092+0),pixelHeight:338,pixelWidth:508,src:\"https://framerusercontent.com/images/daedPWeRMlMk40CXMfZaEYW5ZQs.png\"},className:\"framer-1964icm\",\"data-framer-name\":\"Mikaal Headshot 1\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cx90zz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6jqbog\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{y:(componentViewport?.y||0)+0+200+0+0+0+1e3-1101},g7Ybl4ErP:{y:(componentViewport?.y||0)+0+200+0+0+0+1e3-1026},lyTAk0H_P:{y:(componentViewport?.y||0)+0+0+0+0+0+1e3-818}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+0+200+0+0+0+1e3-1205,children:/*#__PURE__*/_jsx(Container,{className:\"framer-171ap4i-container\",nodeId:\"bWGe_0jhd\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"bWGe_0jhd\",layoutId:\"bWGe_0jhd\",variant:\"YVCKYbrdc\",width:\"100%\",x9gHHN2AH:\"bu8g4s\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h5xa5g\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pn85tp\",\"data-framer-name\":\"Mikaal Sulaiman\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7Ybl4ErP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0xlYWd1ZSBHb3RoaWMgUmVndWxhcg==\",\"--framer-font-family\":'\"League Gothic Regular\", \"League Gothic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"129px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-eefc246e-1465-4571-b51f-0e2616ce8163, rgb(226, 53, 35))\"},children:\"MIKAAL SULAIMAN\"})}),viewBox:undefined},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0xlYWd1ZSBHb3RoaWMgUmVndWxhcg==\",\"--framer-font-family\":'\"League Gothic Regular\", \"League Gothic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"61px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-eefc246e-1465-4571-b51f-0e2616ce8163, rgb(226, 53, 35))\"},children:\"MIKAAL SULAIMAN\"})}),viewBox:undefined}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0xlYWd1ZSBHb3RoaWMgUmVndWxhcg==\",\"--framer-font-family\":'\"League Gothic Regular\", \"League Gothic Regular Placeholder\", sans-serif',\"--framer-font-size\":\"220.840210382694px\",\"--framer-line-height\":\"0.9em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-eefc246e-1465-4571-b51f-0e2616ce8163, rgb(226, 53, 35))\"},children:\"MIKAAL SULAIMAN\"})}),className:\"framer-1syv6q8\",\"data-framer-appear-id\":\"1syv6q8\",fonts:[\"CUSTOM;League Gothic Regular\"],initial:animation1,optimized:true,verticalAlignment:\"top\",viewBox:\"0 0 1120 199\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13e8tqw\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ipa9ay\",\"data-framer-name\":\"Line 1\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"144px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"MULTI-HYPHENATE\"})})},g7Ybl4ErP:{animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"MULTI-HYPHENATE\"})}),initial:animation1,style:{}},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"MULTI-HYPHENATE\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"110px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"MULTI-HYPHENATE\"})}),className:\"framer-xmd1bh\",\"data-framer-appear-id\":\"xmd1bh\",fonts:[\"GF;Anton SC-regular\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pcc8k\",\"data-framer-name\":\"Line 2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"144px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORKING AS A\"})})},g7Ybl4ErP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"102px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORKING AS A\"})})},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORKING AS A\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation5,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7QW50b24gU0MtcmVndWxhcg==\",\"--framer-font-family\":'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',\"--framer-font-size\":\"110px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"WORKING AS A\"})}),className:\"framer-fgfwc4\",\"data-framer-appear-id\":\"fgfwc4\",fonts:[\"GF;Anton SC-regular\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jffqmu\",\"data-framer-name\":\"Line 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16jcop\",\"data-framer-name\":\"Text Cycle 4 Word\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7Ybl4ErP:{transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-1qqs4pw-container\",\"data-framer-appear-id\":\"1qqs4pw\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"FvIGt8Rcl\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{font:{fontFamily:'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',fontSize:\"144px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.01em\",lineHeight:\"1em\"}},g7Ybl4ErP:{font:{fontFamily:'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',fontSize:\"99px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.01em\",lineHeight:\"1.1em\"}},lyTAk0H_P:{font:{fontFamily:'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',fontSize:\"48px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.01em\",lineHeight:\"1.2em\"}}},children:/*#__PURE__*/_jsx(StaggeredCycle,{alignment:\"left\",color:\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\",delay:.5,font:{fontFamily:'\"Anton SC\", \"Anton SC Placeholder\", sans-serif',fontSize:\"110px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0.01em\",lineHeight:\"1em\"},height:\"100%\",id:\"FvIGt8Rcl\",layoutId:\"FvIGt8Rcl\",loop:true,speed:15,stagger:.7,style:{width:\"100%\"},tag:\"p\",text:\"PODCASTER, SOUND DESIGNER, COMPOSER, WRITER, DIRECTOR, PRODUCER\",userSelect:false,width:\"100%\"})})})})})})})]})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-afbgs1\",\"data-framer-name\":\"About (Mini)\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mgb7if\",\"data-framer-name\":\"Control About Sect\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1paldpy\",\"data-framer-name\":'Absolute \"Welcome\"',children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-hv6yug\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rn8hp1\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wop1zn\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d4j32k\",\"data-framer-name\":\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"0.12em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Welcome\"})})},g7Ybl4ErP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0.09em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Welcome\"})})},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"0.09em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Welcome\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0.09em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"Welcome\"})}),className:\"framer-qsh2iq\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s2y1h2\",\"data-framer-name\":\"Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"I'm an artist who creates at the intersection of live performance, immersive sound, and digital storytelling. From Broadway stages to global streaming platforms, my work seeks to reshape how stories are experienced \u2014 visceral, transformative, unforgettable.\"})})},g7Ybl4ErP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"37px\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"I'm an artist who creates at the intersection of live performance, immersive sound, and digital storytelling. From Broadway stages to global streaming platforms, my work seeks to reshape how stories are experienced \u2014 visceral, transformative, unforgettable.\"})})},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"19px\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-line-height\":\"26px\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"I'm an artist who creates at the intersection of live performance, immersive sound, and digital storytelling. From Broadway stages to global streaming platforms, my work seeks to reshape how stories are experienced \u2014 visceral, transformative, unforgettable.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--framer-font-size\":\"29px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"I'm an artist who creates at the intersection of live performance, immersive sound, and digital storytelling. From Broadway stages to global streaming platforms, my work seeks to reshape how stories are experienced \u2014 visceral, transformative, unforgettable.\"})}),className:\"framer-1bri56d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kb228s\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10ppcar\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0.14em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nRzYW4Okr\"},motionChild:true,nodeId:\"eY9Lj4FEC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fdfch0\",\"data-styles-preset\":\"kzSbAjMNY\",children:\"More Info\"})})})})},g7Ybl4ErP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0.14em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nRzYW4Okr\"},motionChild:true,nodeId:\"eY9Lj4FEC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fdfch0\",\"data-styles-preset\":\"kzSbAjMNY\",children:\"More Info\"})})})})},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.14em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nRzYW4Okr\"},motionChild:true,nodeId:\"eY9Lj4FEC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fdfch0\",\"data-styles-preset\":\"kzSbAjMNY\",children:\"More Info\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0.14em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c534daca-fee2-403c-bc9b-4f50010bf110, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nRzYW4Okr\"},motionChild:true,nodeId:\"eY9Lj4FEC\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-fdfch0\",\"data-styles-preset\":\"kzSbAjMNY\",children:\"More Info\"})})})}),className:\"framer-h5s4jj\",fonts:[\"GF;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1bbhp8c\",\"data-framer-name\":\"Projects\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__targetOpacity:1,className:\"framer-wyagmc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tcvanz\",\"data-framer-name\":\"Bottom Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined},{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined},{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined},{href:{webPageId:\"nRzYW4Okr\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{y:(componentViewport?.y||0)+0+2200+0+0+160+0+0},g7Ybl4ErP:{y:(componentViewport?.y||0)+0+2200+0+0+100+0+0},lyTAk0H_P:{y:(componentViewport?.y||0)+0+2250+0+0+60+104.10000000000002+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,y:(componentViewport?.y||0)+0+2200+0+0+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oy8c5y-container\",nodeId:\"xRunGE5Vj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{oq88WCjeV:resolvedLinks[1]},g7Ybl4ErP:{oq88WCjeV:resolvedLinks[3],variant:\"il4_GdSv9\"},lyTAk0H_P:{oq88WCjeV:resolvedLinks[2],variant:\"og9D4kHjo\"}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{cBDAeStM9:\"About Me\",height:\"100%\",id:\"xRunGE5Vj\",layoutId:\"xRunGE5Vj\",oq88WCjeV:resolvedLinks[0],variant:\"PZA3P98ZO\",width:\"100%\",yjXDISPO3:\"1dc8jz6\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined},{href:{webPageId:\"XoOkzvne4\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{y:(componentViewport?.y||0)+0+2200+0+0+160+0+0},g7Ybl4ErP:{y:(componentViewport?.y||0)+0+2200+0+0+100+0+0},lyTAk0H_P:{y:(componentViewport?.y||0)+0+2250+0+0+60+104.10000000000002+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,y:(componentViewport?.y||0)+0+2200+0+0+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cs6qhc-container\",nodeId:\"J8rPrOhNe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{oq88WCjeV:resolvedLinks1[1]},g7Ybl4ErP:{oq88WCjeV:resolvedLinks1[3],variant:\"il4_GdSv9\"},lyTAk0H_P:{oq88WCjeV:resolvedLinks1[2],variant:\"og9D4kHjo\"}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{cBDAeStM9:\"Portfolio\",height:\"100%\",id:\"J8rPrOhNe\",layoutId:\"J8rPrOhNe\",oq88WCjeV:resolvedLinks1[0],variant:\"PZA3P98ZO\",width:\"100%\",yjXDISPO3:\"1dc8jz6\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"y69l0jQkZ\"},implicitPathVariables:undefined},{href:{webPageId:\"y69l0jQkZ\"},implicitPathVariables:undefined},{href:{webPageId:\"y69l0jQkZ\"},implicitPathVariables:undefined},{href:{webPageId:\"y69l0jQkZ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{y:(componentViewport?.y||0)+0+2200+0+0+160+0+0},g7Ybl4ErP:{y:(componentViewport?.y||0)+0+2200+0+0+100+0+0},lyTAk0H_P:{y:(componentViewport?.y||0)+0+2250+0+0+60+104.10000000000002+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,y:(componentViewport?.y||0)+0+2200+0+0+120+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11tnz9w-container\",nodeId:\"EDAolTM1u\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{oq88WCjeV:resolvedLinks2[1]},g7Ybl4ErP:{oq88WCjeV:resolvedLinks2[3],variant:\"il4_GdSv9\"},lyTAk0H_P:{oq88WCjeV:resolvedLinks2[2],variant:\"og9D4kHjo\"}},children:/*#__PURE__*/_jsx(ButtonPrimaryButton,{cBDAeStM9:\"CV / Resume\",height:\"100%\",id:\"EDAolTM1u\",layoutId:\"EDAolTM1u\",oq88WCjeV:resolvedLinks2[0],variant:\"PZA3P98ZO\",width:\"100%\",yjXDISPO3:\"1dc8jz6\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-amrbkw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g7Ybl4ErP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\"},children:\"SOME OF MY FAVORITE COLLABORATIONS\"})})},lyTAk0H_P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\"},children:\"SOME OF MY FAVORITE COLLABORATIONS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0.06em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-33fc936d-b925-4968-ae23-f0d6c37168f5, rgb(247, 242, 242))\"},children:\"SOME OF MY FAVORITE COLLABORATIONS\"})}),className:\"framer-pfcy0u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e9fmw2\",\"data-framer-name\":\"Ticker on Home Page\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fn4zcq\",\"data-framer-name\":\"Ticker Stack\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n2mdmu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gY5tPhZSr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"gY5tPhZSr\",layoutId:\"gY5tPhZSr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"nVhFtnEeV\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/4NiUOXExgOqAEb0weh4Pa9MCjA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4NiUOXExgOqAEb0weh4Pa9MCjA.png 649w\"},className:\"framer-f6xs76 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (The Series) 3.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"dTda6GpRh\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/FgGsO2bST0MJW4IrPi0acTMyFY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/FgGsO2bST0MJW4IrPi0acTMyFY.png 649w\"},className:\"framer-wuv83u framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Fat Ham) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"CiVnMkstN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/RvjvoiusYmueBt2NNRbrkHcO0U4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RvjvoiusYmueBt2NNRbrkHcO0U4.png 649w\"},className:\"framer-1wroiqh framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Yuna) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"hapUpYHyP\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/2xzcFq1AJCJU2EN5pDuI58L60.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/2xzcFq1AJCJU2EN5pDuI58L60.png 649w\"},className:\"framer-19bl7lw framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Fatebook) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"vnPaXK6_X\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/CbbyetxaWAJcIDxN6XJnu2Ecs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CbbyetxaWAJcIDxN6XJnu2Ecs.png 649w\"},className:\"framer-s2bc0d framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Laying Flowers) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"ONGfC0zJq\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/4Hdu4LI2ip8gpfmq2vQgDEWURiM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4Hdu4LI2ip8gpfmq2vQgDEWURiM.png 649w\"},className:\"framer-1gkn2fj framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Primary Trust) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"rhRKtL0XB\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/DnjJheHS55KLeZnvIpvE6xCYKbc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/DnjJheHS55KLeZnvIpvE6xCYKbc.png 649w\"},className:\"framer-1bu66uw framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Macbeth) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"qh7_lWzkG\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/rcJeqGYNxvoRIrGHrKfTJ9iWHAE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rcJeqGYNxvoRIrGHrKfTJ9iWHAE.png 649w\"},className:\"framer-1q3dk92 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Holoscenes) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"YPGtUfaS7\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/LJG3ilVRbM8FpYW6bJ7bwNLPOV4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/LJG3ilVRbM8FpYW6bJ7bwNLPOV4.png 649w\"},className:\"framer-663hwe framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Enemy of the People) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"cmivdAzrk\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/CpyxnfGL6NNm0atZXv8GyqUCv50.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CpyxnfGL6NNm0atZXv8GyqUCv50.png 649w\"},className:\"framer-1hg1v4e framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (The Series) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"rhYk3y0OX\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/wKKOax3slk3hoplD7p4BoUct2yg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wKKOax3slk3hoplD7p4BoUct2yg.png 649w\"},className:\"framer-17rfd2g framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Macbeth) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"CxlNDNuyn\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/MVVAZUBkyCHNJT6bkiwLLAO2l80.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MVVAZUBkyCHNJT6bkiwLLAO2l80.png 649w\"},className:\"framer-1uc7t5l framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Death of a Salesman) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"XS1tr1E_D\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/CcI0oh9K7rLwFiKPLiBqtnkwH4s.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CcI0oh9K7rLwFiKPLiBqtnkwH4s.png 649w\"},className:\"framer-1tnhneb framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Enemy of the People - Park Ave) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"kv2R7AEiX\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/QOnJ9WxbwXfdKsZq4uJG9eJyxsM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/QOnJ9WxbwXfdKsZq4uJG9eJyxsM.png 649w\"},className:\"framer-enevx7 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Holoscenes) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"OePEHL1_g\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/BcNCVb4XdriGbg7uBPTtzq0u9U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/BcNCVb4XdriGbg7uBPTtzq0u9U.png 649w\"},className:\"framer-1qvrkmv framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Cost of Living) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"aMz4KFJyV\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/ZqTH54S1c214ijK6fwgkVQbJXfo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZqTH54S1c214ijK6fwgkVQbJXfo.png 649w\"},className:\"framer-1e635d2 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Sabbath's Theatre) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"gc5zkFkpQ\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/YON1aAjU85mkoQOOgCVBkRcDVIs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YON1aAjU85mkoQOOgCVBkRcDVIs.png 649w\"},className:\"framer-1eui04i framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Fairview) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"ohXWjQaOs\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/E18kIPXUpYKa09UlDr9QTgQ1pA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/E18kIPXUpYKa09UlDr9QTgQ1pA.png 649w\"},className:\"framer-1l2lpee framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Skittles) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"n3nLILLg5\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/jZ1wGUPwEFFt0SEUjykIMJlyX9c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jZ1wGUPwEFFt0SEUjykIMJlyX9c.png 649w\"},className:\"framer-jn2a5i framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Ramy Animated) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"xQoEo7R7R\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/ZvRtDN8PBpECeRTmApNGhXN0Gk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ZvRtDN8PBpECeRTmApNGhXN0Gk.png 649w\"},className:\"framer-bciau7 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Ramy Animated) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"SYoGxFYBB\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/gRVdBzUjLInn7LtaUNvvzJ11zJw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gRVdBzUjLInn7LtaUNvvzJ11zJw.png 649w\"},className:\"framer-awq5ru framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (TBTF) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"QTd0eW8HJ\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/fn7sp5yKdCiGSAwy7oJk0QTYwU4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/fn7sp5yKdCiGSAwy7oJk0QTYwU4.png 649w\"},className:\"framer-14mhjz2 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (My Black is Beautiful) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"RfLM7JfNN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/zadOfRfUVhEXc6VePJ5j7YE1Qs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/zadOfRfUVhEXc6VePJ5j7YE1Qs.png 649w\"},className:\"framer-btu5m2 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Love Unpunished) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"OHJDw09pJ\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/1LOv7aj3KXUs0dOMMyTq1araCs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1LOv7aj3KXUs0dOMMyTq1araCs.png 649w\"},className:\"framer-3d39xg framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Love Unpunished) 3.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"CGzzyKdGs\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/oGxI85zFYgnpJ9vyK9sEWehGm7w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/oGxI85zFYgnpJ9vyK9sEWehGm7w.png 649w\"},className:\"framer-9rprq0 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Love Unpunished) 0.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"b50eC0h9G\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/tgVPGhNd9gObZE9WJp7JQfjaYXs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/tgVPGhNd9gObZE9WJp7JQfjaYXs.png 649w\"},className:\"framer-1a0sfa framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Enemy of the People) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"eVctYQ4VL\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/aaQgACRVELRxquX2FYjPKIM884.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aaQgACRVELRxquX2FYjPKIM884.png 649w\"},className:\"framer-1efwzz3 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Master) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"XrjOvGb1p\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/MUuxxCSawp2HTqpD0cc6AwWeSs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/MUuxxCSawp2HTqpD0cc6AwWeSs.png 649w\"},className:\"framer-15z6z3a framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Master) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"KxUsHLRBg\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/H0CPb7InnGeUEBfdCJzvhtTvErg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H0CPb7InnGeUEBfdCJzvhtTvErg.png 649w\"},className:\"framer-1pqxh64 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Entelechy) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"xo4X_ORNf\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/Gd5Xsesu6ibnnoM84O333DMlIAA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Gd5Xsesu6ibnnoM84O333DMlIAA.png 649w\"},className:\"framer-11glqnk framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Doubt) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"W6_TinQTN\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/qLWOrBIYrZyK2vFBb9tMFYgRY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qLWOrBIYrZyK2vFBb9tMFYgRY.png 649w\"},className:\"framer-1rhq6bn framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Creative Capital) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"xr9NCmJdo\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/VzLePTUxTnXCYT1GM9cZL5433Ck.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VzLePTUxTnXCYT1GM9cZL5433Ck.png 649w\"},className:\"framer-1yazvmt framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Death of a Salesman) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"ZZ_IBDv7L\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/68qdGC7xigLkKkh33K02SHrc0w.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/68qdGC7xigLkKkh33K02SHrc0w.png 649w\"},className:\"framer-1r50uy4 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Holoscenes) 4.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"t14O0qQ66\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/mySn27ij9Y6bJDa6qbmsihv75cw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/mySn27ij9Y6bJDa6qbmsihv75cw.png 649w\"},className:\"framer-1m2gqtf framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Light Shining) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"PDlTqA3Rp\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/ywk58t5z60sh0hiyt5ZzG27X1Rg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywk58t5z60sh0hiyt5ZzG27X1Rg.png 649w\"},className:\"framer-1o703y1 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Laying Flowers) 2.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"TIQChM2kV\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325px\",src:\"https://framerusercontent.com/images/IU5zpztReMCKTth5npAECrhRI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IU5zpztReMCKTth5npAECrhRI.png 649w\"},className:\"framer-yr64fh framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Sanctuary City) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"LjI6TxUaD\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/sVUZhqnoYid41jeie8khMVdZrE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sVUZhqnoYid41jeie8khMVdZrE.png 649w\"},className:\"framer-1fidpeq framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Skittles Musical) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"brZ3D3Ejv\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"324.5px\",src:\"https://framerusercontent.com/images/IYV82xRjtfqXH5XAdgaSdjRgYw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IYV82xRjtfqXH5XAdgaSdjRgYw.png 649w\"},className:\"framer-l2lq8c framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Thanksgiving Play) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"AG7ad0uT3\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:323.5,pixelHeight:1024,pixelWidth:647,sizes:\"323.5px\",src:\"https://framerusercontent.com/images/aio19pKGtwtcGB4zcSPS8tYWg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aio19pKGtwtcGB4zcSPS8tYWg.png 647w\"},className:\"framer-1um9mo4 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (TOACM) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"sLdGdZPzo\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/ATcP0bZLmxlThRxl8sBhMmHaiA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ATcP0bZLmxlThRxl8sBhMmHaiA.png 649w\"},className:\"framer-1ic21zt framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Laying Flowers) 3.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"esJtxMhSe\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/VdfzqMyM1T9iFREZKwpar9b7hs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VdfzqMyM1T9iFREZKwpar9b7hs.png 649w\"},className:\"framer-hh9gq5 framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (TBTF) 1.1\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XoOkzvne4\"},motionChild:true,nodeId:\"Zt1oTxRP2\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:324.5,pixelHeight:1024,pixelWidth:649,sizes:\"325.1338px\",src:\"https://framerusercontent.com/images/CAco7PkvWPHSVs4L4Xg2qMxPYQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/CAco7PkvWPHSVs4L4Xg2qMxPYQ.png 649w\"},className:\"framer-wm0n4z framer-lux5qc\",\"data-framer-name\":\"Framer Slideshow (Holoscenes) 3.1\"})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-122yiws\",\"data-framer-name\":\"Footer\",id:elementId1,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qdk8ad\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ex03mi\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CVnKcgmOv:{y:(componentViewport?.y||0)+0+3255+0+0+15+0+0+0},lyTAk0H_P:{y:(componentViewport?.y||0)+0+3250+0+0+15+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:(componentViewport?.y||0)+0+3200+0+0+15+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16p8asf-container\",nodeId:\"uywzVx4fY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Copywrite20251,{height:\"100%\",id:\"uywzVx4fY\",layoutId:\"uywzVx4fY\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-R7EVL.framer-lux5qc, .framer-R7EVL .framer-lux5qc { display: block; }\",\".framer-R7EVL.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-bf39848f-bd85-46f2-adc5-5293ee3e79d8, #141211); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-R7EVL .framer-foun8u-container, .framer-R7EVL .framer-oy8c5y-container, .framer-R7EVL .framer-cs6qhc-container, .framer-R7EVL .framer-11tnz9w-container, .framer-R7EVL .framer-16p8asf-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-R7EVL .framer-18v8dyd-container { flex: none; height: auto; position: fixed; right: 50px; top: 34px; width: auto; z-index: 4; }\",\".framer-R7EVL .framer-yszn5a { align-content: center; align-items: center; background-color: #010306; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1spuo5k { -webkit-user-select: none; align-content: center; align-items: center; bottom: 792px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); user-select: none; width: 1200px; z-index: 1; }\",\".framer-R7EVL .framer-1964icm { flex: none; height: 300px; position: relative; width: 400px; z-index: 1; }\",\".framer-R7EVL .framer-1cx90zz, .framer-R7EVL .framer-16jcop, .framer-R7EVL .framer-fn4zcq { 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-R7EVL .framer-6jqbog { align-content: flex-start; align-items: flex-start; background-color: #010306; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100vh; justify-content: space-between; overflow: visible; padding: 56px 40px 40px 40px; position: relative; width: 1px; }\",\".framer-R7EVL .framer-171ap4i-container { bottom: 1175px; flex: none; height: auto; left: 40px; opacity: 0; position: absolute; width: auto; z-index: 1; }\",\".framer-R7EVL .framer-h5xa5g { align-content: center; align-items: center; bottom: 119px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 40px; overflow: hidden; padding: 0px; position: absolute; width: 1120px; z-index: 1; }\",\".framer-R7EVL .framer-pn85tp, .framer-R7EVL .framer-hv6yug { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1syv6q8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; max-width: 100%; position: relative; user-select: none; white-space: pre; width: 100%; }\",\".framer-R7EVL .framer-13e8tqw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-ipa9ay, .framer-R7EVL .framer-pcc8k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-xmd1bh, .framer-R7EVL .framer-fgfwc4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: 1 0 0px; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-R7EVL .framer-jffqmu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1qqs4pw-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-R7EVL .framer-afbgs1 { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; }\",\".framer-R7EVL .framer-mgb7if { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1paldpy { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: 160%; justify-content: center; left: calc(50.00000000000002% - 1200px / 2); overflow: hidden; padding: 0px 40px 0px 40px; position: absolute; top: calc(50.00000000000002% - 160% / 2); width: 1200px; z-index: 1; }\",\".framer-R7EVL .framer-rn8hp1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1wop1zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 782px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-R7EVL .framer-d4j32k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-R7EVL .framer-qsh2iq, .framer-R7EVL .framer-pfcy0u { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-R7EVL .framer-1s2y1h2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 402px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1bri56d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; -webkit-user-select: none; flex: none; height: auto; max-width: 960px; position: relative; user-select: none; white-space: pre-wrap; width: 960px; word-break: break-word; word-wrap: break-word; }\",\".framer-R7EVL .framer-kb228s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-10ppcar { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-R7EVL .framer-h5s4jj { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-R7EVL .framer-1bbhp8c { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-wyagmc { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 120px 40px 80px 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-R7EVL .framer-tcvanz { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-amrbkw { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1e9fmw2 { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 93%; }\",\".framer-R7EVL .framer-n2mdmu-container { flex: none; height: 556px; position: relative; width: 1120px; }\",\".framer-R7EVL .framer-f6xs76, .framer-R7EVL .framer-1wroiqh, .framer-R7EVL .framer-19bl7lw, .framer-R7EVL .framer-s2bc0d, .framer-R7EVL .framer-1q3dk92, .framer-R7EVL .framer-1hg1v4e, .framer-R7EVL .framer-enevx7, .framer-R7EVL .framer-1eui04i, .framer-R7EVL .framer-1l2lpee, .framer-R7EVL .framer-jn2a5i, .framer-R7EVL .framer-bciau7, .framer-R7EVL .framer-awq5ru, .framer-R7EVL .framer-14mhjz2, .framer-R7EVL .framer-btu5m2, .framer-R7EVL .framer-3d39xg, .framer-R7EVL .framer-9rprq0, .framer-R7EVL .framer-1efwzz3, .framer-R7EVL .framer-15z6z3a, .framer-R7EVL .framer-1pqxh64, .framer-R7EVL .framer-1rhq6bn, .framer-R7EVL .framer-1r50uy4, .framer-R7EVL .framer-1m2gqtf, .framer-R7EVL .framer-1o703y1, .framer-R7EVL .framer-yr64fh, .framer-R7EVL .framer-1ic21zt, .framer-R7EVL .framer-hh9gq5, .framer-R7EVL .framer-wm0n4z { aspect-ratio: 0.6337890625 / 1; height: var(--framer-aspect-ratio-supported, 513px); overflow: visible; position: relative; text-decoration: none; width: 325px; }\",\".framer-R7EVL .framer-wuv83u, .framer-R7EVL .framer-1gkn2fj, .framer-R7EVL .framer-1bu66uw, .framer-R7EVL .framer-663hwe, .framer-R7EVL .framer-17rfd2g, .framer-R7EVL .framer-1uc7t5l, .framer-R7EVL .framer-1tnhneb, .framer-R7EVL .framer-1qvrkmv, .framer-R7EVL .framer-1e635d2, .framer-R7EVL .framer-1a0sfa, .framer-R7EVL .framer-11glqnk, .framer-R7EVL .framer-1yazvmt, .framer-R7EVL .framer-1fidpeq, .framer-R7EVL .framer-l2lq8c { aspect-ratio: 0.6337890625 / 1; height: var(--framer-aspect-ratio-supported, 512px); overflow: visible; position: relative; text-decoration: none; width: 325px; }\",\".framer-R7EVL .framer-1um9mo4 { aspect-ratio: 0.6318359375 / 1; height: var(--framer-aspect-ratio-supported, 512px); overflow: visible; position: relative; text-decoration: none; width: 324px; }\",\".framer-R7EVL .framer-122yiws { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-qdk8ad { align-content: center; align-items: center; background-color: var(--token-2e924353-d7f0-42ab-ab7c-9b5b6e543627, #010306); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; min-height: 100%; overflow: visible; padding: 15px 40px 30px 40px; position: relative; width: 100%; }\",\".framer-R7EVL .framer-1ex03mi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-R7EVL.framer-72rtr7, .framer-R7EVL .framer-yszn5a, .framer-R7EVL .framer-1spuo5k, .framer-R7EVL .framer-1cx90zz, .framer-R7EVL .framer-h5xa5g, .framer-R7EVL .framer-pn85tp, .framer-R7EVL .framer-13e8tqw, .framer-R7EVL .framer-ipa9ay, .framer-R7EVL .framer-pcc8k, .framer-R7EVL .framer-jffqmu, .framer-R7EVL .framer-16jcop, .framer-R7EVL .framer-afbgs1, .framer-R7EVL .framer-mgb7if, .framer-R7EVL .framer-1paldpy, .framer-R7EVL .framer-hv6yug, .framer-R7EVL .framer-rn8hp1, .framer-R7EVL .framer-1wop1zn, .framer-R7EVL .framer-d4j32k, .framer-R7EVL .framer-1s2y1h2, .framer-R7EVL .framer-kb228s, .framer-R7EVL .framer-10ppcar, .framer-R7EVL .framer-1bbhp8c, .framer-R7EVL .framer-wyagmc, .framer-R7EVL .framer-tcvanz, .framer-R7EVL .framer-amrbkw, .framer-R7EVL .framer-1e9fmw2, .framer-R7EVL .framer-fn4zcq, .framer-R7EVL .framer-122yiws, .framer-R7EVL .framer-1ex03mi { gap: 0px; } .framer-R7EVL.framer-72rtr7 > *, .framer-R7EVL .framer-yszn5a > *, .framer-R7EVL .framer-h5xa5g > *, .framer-R7EVL .framer-13e8tqw > *, .framer-R7EVL .framer-jffqmu > *, .framer-R7EVL .framer-afbgs1 > *, .framer-R7EVL .framer-d4j32k > *, .framer-R7EVL .framer-1bbhp8c > *, .framer-R7EVL .framer-wyagmc > *, .framer-R7EVL .framer-122yiws > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-R7EVL.framer-72rtr7 > :first-child, .framer-R7EVL .framer-yszn5a > :first-child, .framer-R7EVL .framer-h5xa5g > :first-child, .framer-R7EVL .framer-pn85tp > :first-child, .framer-R7EVL .framer-13e8tqw > :first-child, .framer-R7EVL .framer-jffqmu > :first-child, .framer-R7EVL .framer-afbgs1 > :first-child, .framer-R7EVL .framer-1paldpy > :first-child, .framer-R7EVL .framer-hv6yug > :first-child, .framer-R7EVL .framer-rn8hp1 > :first-child, .framer-R7EVL .framer-1wop1zn > :first-child, .framer-R7EVL .framer-d4j32k > :first-child, .framer-R7EVL .framer-1s2y1h2 > :first-child, .framer-R7EVL .framer-kb228s > :first-child, .framer-R7EVL .framer-10ppcar > :first-child, .framer-R7EVL .framer-1bbhp8c > :first-child, .framer-R7EVL .framer-wyagmc > :first-child, .framer-R7EVL .framer-amrbkw > :first-child, .framer-R7EVL .framer-1e9fmw2 > :first-child, .framer-R7EVL .framer-122yiws > :first-child, .framer-R7EVL .framer-1ex03mi > :first-child { margin-top: 0px; } .framer-R7EVL.framer-72rtr7 > :last-child, .framer-R7EVL .framer-yszn5a > :last-child, .framer-R7EVL .framer-h5xa5g > :last-child, .framer-R7EVL .framer-pn85tp > :last-child, .framer-R7EVL .framer-13e8tqw > :last-child, .framer-R7EVL .framer-jffqmu > :last-child, .framer-R7EVL .framer-afbgs1 > :last-child, .framer-R7EVL .framer-1paldpy > :last-child, .framer-R7EVL .framer-hv6yug > :last-child, .framer-R7EVL .framer-rn8hp1 > :last-child, .framer-R7EVL .framer-1wop1zn > :last-child, .framer-R7EVL .framer-d4j32k > :last-child, .framer-R7EVL .framer-1s2y1h2 > :last-child, .framer-R7EVL .framer-kb228s > :last-child, .framer-R7EVL .framer-10ppcar > :last-child, .framer-R7EVL .framer-1bbhp8c > :last-child, .framer-R7EVL .framer-wyagmc > :last-child, .framer-R7EVL .framer-amrbkw > :last-child, .framer-R7EVL .framer-1e9fmw2 > :last-child, .framer-R7EVL .framer-122yiws > :last-child, .framer-R7EVL .framer-1ex03mi > :last-child { margin-bottom: 0px; } .framer-R7EVL .framer-1spuo5k > *, .framer-R7EVL .framer-1cx90zz > *, .framer-R7EVL .framer-16jcop > *, .framer-R7EVL .framer-mgb7if > *, .framer-R7EVL .framer-fn4zcq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-R7EVL .framer-1spuo5k > :first-child, .framer-R7EVL .framer-1cx90zz > :first-child, .framer-R7EVL .framer-ipa9ay > :first-child, .framer-R7EVL .framer-pcc8k > :first-child, .framer-R7EVL .framer-16jcop > :first-child, .framer-R7EVL .framer-mgb7if > :first-child, .framer-R7EVL .framer-tcvanz > :first-child, .framer-R7EVL .framer-fn4zcq > :first-child { margin-left: 0px; } .framer-R7EVL .framer-1spuo5k > :last-child, .framer-R7EVL .framer-1cx90zz > :last-child, .framer-R7EVL .framer-ipa9ay > :last-child, .framer-R7EVL .framer-pcc8k > :last-child, .framer-R7EVL .framer-16jcop > :last-child, .framer-R7EVL .framer-mgb7if > :last-child, .framer-R7EVL .framer-tcvanz > :last-child, .framer-R7EVL .framer-fn4zcq > :last-child { margin-right: 0px; } .framer-R7EVL .framer-pn85tp > *, .framer-R7EVL .framer-hv6yug > *, .framer-R7EVL .framer-1s2y1h2 > *, .framer-R7EVL .framer-kb228s > *, .framer-R7EVL .framer-10ppcar > *, .framer-R7EVL .framer-amrbkw > *, .framer-R7EVL .framer-1e9fmw2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-R7EVL .framer-ipa9ay > *, .framer-R7EVL .framer-pcc8k > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-R7EVL .framer-1paldpy > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } .framer-R7EVL .framer-rn8hp1 > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-R7EVL .framer-1wop1zn > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-R7EVL .framer-tcvanz > * { margin: 0px; margin-left: calc(200px / 2); margin-right: calc(200px / 2); } .framer-R7EVL .framer-1ex03mi > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",...sharedStyle.css,\"@media (min-width: 1600px) { .framer-R7EVL.framer-72rtr7 { width: 1600px; } .framer-R7EVL .framer-18v8dyd-container { right: 60px; top: 60px; } .framer-R7EVL .framer-1spuo5k { bottom: 657px; } .framer-R7EVL .framer-1964icm { height: 352px; width: 422px; } .framer-R7EVL .framer-6jqbog { max-width: 100%; padding: 80px 60px 60px 60px; } .framer-R7EVL .framer-171ap4i-container { bottom: 1071px; left: 60px; } .framer-R7EVL .framer-h5xa5g { bottom: 10px; } .framer-R7EVL .framer-xmd1bh, .framer-R7EVL .framer-fgfwc4 { order: 0; } .framer-R7EVL .framer-mgb7if { height: min-content; min-height: 1178px; } .framer-R7EVL .framer-1paldpy { bottom: -365px; gap: 60px; height: 160%; left: 50%; padding: 0px 60px 0px 60px; top: unset; transform: translateX(-50%); width: min-content; } .framer-R7EVL .framer-hv6yug { gap: 50px; width: min-content; } .framer-R7EVL .framer-rn8hp1 { width: 1080px; } .framer-R7EVL .framer-1wop1zn { height: min-content; padding: 60px 0px 0px 0px; } .framer-R7EVL .framer-1s2y1h2 { height: 571px; } .framer-R7EVL .framer-1bri56d { max-width: 1080px; } .framer-R7EVL .framer-kb228s { padding: 40px 0px 10px 0px; } .framer-R7EVL .framer-1bbhp8c { height: min-content; } .framer-R7EVL .framer-wyagmc { border-top-left-radius: 40px; border-top-right-radius: 40px; gap: 5px; max-width: 100%; padding: 160px 60px 120px 60px; } .framer-R7EVL .framer-amrbkw { padding: 100px 0px 0px 0px; } .framer-R7EVL .framer-qdk8ad { max-width: 100%; padding: 15px 60px 30px 60px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-R7EVL .framer-1paldpy, .framer-R7EVL .framer-hv6yug, .framer-R7EVL .framer-wyagmc { gap: 0px; } .framer-R7EVL .framer-1paldpy > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-R7EVL .framer-1paldpy > :first-child, .framer-R7EVL .framer-hv6yug > :first-child, .framer-R7EVL .framer-wyagmc > :first-child { margin-top: 0px; } .framer-R7EVL .framer-1paldpy > :last-child, .framer-R7EVL .framer-hv6yug > :last-child, .framer-R7EVL .framer-wyagmc > :last-child { margin-bottom: 0px; } .framer-R7EVL .framer-hv6yug > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-R7EVL .framer-wyagmc > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } }}\",\"@media (max-width: 809px) { .framer-R7EVL.framer-72rtr7 { width: 390px; } .framer-R7EVL .framer-18v8dyd-container { right: 15px; top: 20px; } .framer-R7EVL .framer-1spuo5k { bottom: 364px; width: min-content; } .framer-R7EVL .framer-1964icm { height: 266px; width: 338px; } .framer-R7EVL .framer-6jqbog { padding: 30px 15px 30px 15px; } .framer-R7EVL .framer-171ap4i-container { bottom: 788px; left: 15px; z-index: 0; } .framer-R7EVL .framer-h5xa5g { bottom: 84px; gap: 10px; } .framer-R7EVL .framer-pn85tp { align-content: flex-start; align-items: flex-start; } .framer-R7EVL .framer-1syv6q8 { white-space: pre-wrap; width: 30%; word-break: break-word; word-wrap: break-word; } .framer-R7EVL .framer-ipa9ay { flex-direction: column; padding: 0px 0px 5px 0px; } .framer-R7EVL .framer-xmd1bh, .framer-R7EVL .framer-fgfwc4, .framer-R7EVL .framer-1qqs4pw-container { flex: none; width: 100%; } .framer-R7EVL .framer-pcc8k { flex-direction: column; } .framer-R7EVL .framer-afbgs1 { height: 110.00000000000001vh; min-height: 125vh; } .framer-R7EVL .framer-mgb7if { height: 100vh; order: 0; } .framer-R7EVL .framer-1paldpy { bottom: 70px; gap: 0px; height: 100%; left: calc(50.00000000000002% - 100% / 2); padding: 0px 15px 10px 15px; top: unset; width: 100%; } .framer-R7EVL .framer-hv6yug { order: 0; padding: 20px 0px 0px 0px; } .framer-R7EVL .framer-rn8hp1 { flex-direction: row; } .framer-R7EVL .framer-1wop1zn { flex: 1 0 0px; gap: 17px; height: min-content; padding: 21px 0px 21px 0px; width: 1px; } .framer-R7EVL .framer-d4j32k { order: 0; } .framer-R7EVL .framer-1s2y1h2 { gap: 0px; height: min-content; order: 1; padding: 0px 10px 0px 10px; } .framer-R7EVL .framer-1bri56d { max-width: unset; width: 344px; } .framer-R7EVL .framer-kb228s { background-color: #010306; gap: 0px; order: 2; padding: 15px 0px 10px 0px; } .framer-R7EVL .framer-10ppcar { order: 1; } .framer-R7EVL .framer-1bbhp8c { height: min-content; } .framer-R7EVL .framer-wyagmc { border-top-left-radius: 10px; border-top-right-radius: 10px; height: 100vh; padding: 60px 15px 40px 15px; } .framer-R7EVL .framer-tcvanz { gap: 10px; } .framer-R7EVL .framer-amrbkw { padding: 40px 0px 0px 0px; } .framer-R7EVL .framer-1e9fmw2, .framer-R7EVL .framer-n2mdmu-container { width: 100%; } .framer-R7EVL .framer-qdk8ad { padding: 15px 15px 30px 15px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-R7EVL .framer-h5xa5g, .framer-R7EVL .framer-ipa9ay, .framer-R7EVL .framer-pcc8k, .framer-R7EVL .framer-1paldpy, .framer-R7EVL .framer-rn8hp1, .framer-R7EVL .framer-1wop1zn, .framer-R7EVL .framer-1s2y1h2, .framer-R7EVL .framer-kb228s, .framer-R7EVL .framer-tcvanz { gap: 0px; } .framer-R7EVL .framer-h5xa5g > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-R7EVL .framer-h5xa5g > :first-child, .framer-R7EVL .framer-ipa9ay > :first-child, .framer-R7EVL .framer-pcc8k > :first-child, .framer-R7EVL .framer-1paldpy > :first-child, .framer-R7EVL .framer-1wop1zn > :first-child, .framer-R7EVL .framer-1s2y1h2 > :first-child, .framer-R7EVL .framer-kb228s > :first-child { margin-top: 0px; } .framer-R7EVL .framer-h5xa5g > :last-child, .framer-R7EVL .framer-ipa9ay > :last-child, .framer-R7EVL .framer-pcc8k > :last-child, .framer-R7EVL .framer-1paldpy > :last-child, .framer-R7EVL .framer-1wop1zn > :last-child, .framer-R7EVL .framer-1s2y1h2 > :last-child, .framer-R7EVL .framer-kb228s > :last-child { margin-bottom: 0px; } .framer-R7EVL .framer-ipa9ay > *, .framer-R7EVL .framer-pcc8k > *, .framer-R7EVL .framer-1paldpy > *, .framer-R7EVL .framer-1s2y1h2 > *, .framer-R7EVL .framer-kb228s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-R7EVL .framer-rn8hp1 > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-R7EVL .framer-rn8hp1 > :first-child, .framer-R7EVL .framer-tcvanz > :first-child { margin-left: 0px; } .framer-R7EVL .framer-rn8hp1 > :last-child, .framer-R7EVL .framer-tcvanz > :last-child { margin-right: 0px; } .framer-R7EVL .framer-1wop1zn > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-R7EVL .framer-tcvanz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-R7EVL.framer-72rtr7 { height: 3343px; width: 810px; } .framer-R7EVL .framer-18v8dyd-container { right: 30px; top: 30px; } .framer-R7EVL .framer-1spuo5k { bottom: 595px; width: min-content; } .framer-R7EVL .framer-1964icm { order: 0; } .framer-R7EVL .framer-6jqbog { padding: 50px 30px 30px 30px; } .framer-R7EVL .framer-171ap4i-container { bottom: 996px; z-index: 0; } .framer-R7EVL .framer-h5xa5g { bottom: 152px; } .framer-R7EVL .framer-pn85tp { align-content: flex-start; align-items: flex-start; order: 0; } .framer-R7EVL .framer-1syv6q8 { white-space: pre-wrap; width: 61%; word-break: break-word; word-wrap: break-word; } .framer-R7EVL .framer-13e8tqw { order: 1; } .framer-R7EVL .framer-16jcop { min-height: 102px; min-width: 1440px; width: min-content; } .framer-R7EVL .framer-1qqs4pw-container { flex: none; left: 0px; position: absolute; top: 49%; transform: translateY(-50%); width: 780px; z-index: 1; } .framer-R7EVL .framer-1paldpy { bottom: -324px; gap: 40px; left: calc(50.00000000000002% - 100% / 2); padding: 0px 30px 0px 30px; top: unset; width: 100%; z-index: unset; } .framer-R7EVL .framer-1wop1zn, .framer-R7EVL .framer-1s2y1h2 { height: min-content; } .framer-R7EVL .framer-1bri56d { max-width: unset; order: 0; width: 585px; } .framer-R7EVL .framer-kb228s { padding: 25px 0px 12px 0px; } .framer-R7EVL .framer-wyagmc { border-top-left-radius: 20px; border-top-right-radius: 20px; gap: 10px; order: 0; padding: 100px 30px 80px 30px; z-index: unset; } .framer-R7EVL .framer-tcvanz { gap: 100px; width: 750px; } .framer-R7EVL .framer-amrbkw { padding: 100px 0px 0px 0px; } .framer-R7EVL .framer-1e9fmw2, .framer-R7EVL .framer-n2mdmu-container { width: 100%; } .framer-R7EVL .framer-qdk8ad { padding: 15px 30px 30px 30px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-R7EVL .framer-1paldpy, .framer-R7EVL .framer-wyagmc, .framer-R7EVL .framer-tcvanz { gap: 0px; } .framer-R7EVL .framer-1paldpy > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-R7EVL .framer-1paldpy > :first-child, .framer-R7EVL .framer-wyagmc > :first-child { margin-top: 0px; } .framer-R7EVL .framer-1paldpy > :last-child, .framer-R7EVL .framer-wyagmc > :last-child { margin-bottom: 0px; } .framer-R7EVL .framer-wyagmc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-R7EVL .framer-tcvanz > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-R7EVL .framer-tcvanz > :first-child { margin-left: 0px; } .framer-R7EVL .framer-tcvanz > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3834\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"CVnKcgmOv\":{\"layout\":[\"fixed\",\"auto\"]},\"lyTAk0H_P\":{\"layout\":[\"fixed\",\"auto\"]},\"g7Ybl4ErP\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"u91_eMmgM\":{\"pattern\":\":u91_eMmgM\",\"name\":\"top\"},\"ABYqtM6Or\":{\"pattern\":\":ABYqtM6Or\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-R7EVL\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:3834,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"League Gothic Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/RyUYUJtdT2uKAnSoyuibGhk6MFo.woff2\"},{family:\"Anton SC\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/antonsc/v1/4UaBrEBBsgltGn71sxLjzanB44N1.woff2\",weight:\"400\"},{family:\"Anton\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/anton/v25/1Ptgg87LROyAm0Kx8i4gS7lu.woff2\",weight:\"400\"},{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\"}]},...SmoothScrollFonts,...MenuNavbar3Fonts,...LogoFonts,...StaggeredCycleFonts,...ButtonPrimaryButtonFonts,...TickerFonts,...Copywrite20251Fonts,...CustomCursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"u91_eMmgM\\\":{\\\"pattern\\\":\\\":u91_eMmgM\\\",\\\"name\\\":\\\"top\\\"},\\\"ABYqtM6Or\\\":{\\\"pattern\\\":\\\":ABYqtM6Or\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CVnKcgmOv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lyTAk0H_P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g7Ybl4ErP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"3834\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "22BAAwO,IAAMA,GAAU,GAASC,GAAkB,CACnR,KAAK,CAAC,IAAI,IAAI,EAAE,CAAC,CAAC,EAQA,SAARC,GAAsC,CAAC,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,KAAAC,EAAK,WAAAC,EAAW,MAAAC,EAAM,UAAAC,EAAU,IAAAC,EAAI,KAAAC,EAAK,QAAAC,CAAO,EAAE,CAAC,IAAMC,EAAIH,EAAUI,EAAQX,EAAK,MAAM,IAAI,EAAE,IAAIY,GAAQA,EAAO,QAAQ,OAAO,GAAG,EAAE,KAAK,CAAC,EAAO,CAACC,EAAUC,CAAY,EAAEC,GAAS,CAAC,EAAQC,GAAgBnB,GAAUI,EAAM,GAAGJ,GAAU,EAAQoB,EAAiBf,EAAM,IAAUgB,EAAiBF,EAAe,IAAUG,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAY,CAACC,EAAcC,CAAgB,EAAEP,GAAS,EAAI,EAAE,OAAAQ,EAAU,IAAI,CAAC,IAAMC,EAAQH,EAAcH,EAAiB,EAAED,EAAiBC,EAAiBD,EAAuBQ,EAAS,YAAY,IAAI,CAACH,EAAiB,EAAK,EAAKT,EAAUF,EAAQ,OAAO,EAAGG,EAAaY,GAAMA,EAAK,CAAC,EAAWlB,GAAMM,EAAa,CAAC,CAAG,EAAEU,CAAO,EAAE,MAAM,IAAI,cAAcC,CAAQ,CAAE,EAAE,CAACZ,EAAUL,EAAKa,CAAa,CAAC,EAAsBM,EAAM,MAAM,CAAC,MAAM,CAAC,WAAWvB,EAAW,OAAO,OAAO,SAAS,WAAW,QAAQ,OAAO,cAAc,MAAM,SAAS,UAAU,eAAeE,IAAY,SAAS,SAASA,IAAY,QAAQ,WAAW,YAAY,EAAE,SAAS,CAAcsB,EAAKlB,EAAI,CAAC,cAAc,GAAK,MAAM,CAAC,SAAS,OAAO,GAAGP,EAAK,iBAAiB,MAAM,eAAe,MAAM,cAAc,OAAO,QAAQ,EAAE,WAAW,WAAW,MAAM,OAAO,UAAUG,CAAS,EAAE,SAASK,EAAQ,OAAO,CAACkB,EAAQC,IAAUA,EAAQ,OAAOD,EAAQ,OAAOC,EAAQD,CAAO,CAAC,CAAC,EAAEV,GAAuBS,EAAKlB,EAAI,CAAC,MAAM,CAAC,SAAS,OAAO,GAAGP,EAAK,MAAAE,EAAM,iBAAiB,MAAM,eAAe,MAAM,WAAW,WAAW,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,OAAO,UAAUC,CAAS,EAAE,SAASK,EAAQ,CAAC,CAAC,CAAC,EAAE,CAACQ,GAAuBS,EAAKG,GAAU,CAAC,SAASpB,EAAQ,IAAI,CAACqB,EAASC,IAAgB,CAAC,IAAIC,EAAU,EACjqDC,EAASH,EAAS,MAAM,UAAU,EAAE,IAAII,IAAU,CAAC,KAAKA,EAAQ,MAAMA,EAAQ,MAAM,EAAE,EAAE,IAAIC,IAAO,CAAC,KAAAA,EAAK,cAAcH,GAAW,EAAE,CAAC,EAAE,EAAE,eAAQ,IAAIC,CAAQ,EAAsBP,EAAK,MAAM,CAAC,MAAM,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,SAAS,UAAU,MAAM,OAAO,UAAUtB,CAAS,EAAE,SAAsBsB,EAAKU,GAAgB,CAAC,KAAK,OAAO,SAASzB,IAAYoB,GAA4BL,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,OAAO,SAAS,OAAO,MAAM,OAAO,eAAetB,IAAY,SAAS,SAASA,IAAY,QAAQ,WAAW,aAAa,IAAI,CAAC,EAAE,SAAS6B,EAAS,IAAI,CAACC,EAAQG,IAA4BX,EAAK,MAAM,CAAC,MAAM,CAAC,QAAQ,cAAc,SAAS,SAAS,WAAW,MAAM,SAAS,QAAQ,EAAE,SAASQ,EAAQ,MAAM,IAAI,CAAC,CAAC,KAAAC,EAAK,cAAAG,CAAa,IAAI,CAAC,IAAMC,EAAUD,GAAeR,EAAS,OAAO,GAASU,GAAaD,GAAWzB,EAAe,IAC50B2B,GAAaF,GAAWzB,EAAe,IACvC4B,GAAUH,GAAWzB,EAAe,IACpC6B,EAAe,CAAC,QAAQ,CAAC,UAAU,uBAAuB,WAAW,CAAC,GAAG/C,GAAkB,SAASkB,EAAe,EAAE,MAAM0B,GAAajC,CAAO,CAAC,EAAE,QAAQ,CAAC,UAAU,sBAAsB,WAAW,CAAC,GAAGX,GAAkB,SAASkB,EAAe,EAAE,MAAM2B,GAAalC,CAAO,CAAC,EAAE,KAAK,CAAC,UAAU,wBAAwB,WAAW,CAAC,GAAGX,GAAkB,SAASkB,EAAe,EAAE,MAAM4B,GAAUnC,CAAO,CAAC,CAAC,EAAE,OAAoBmB,EAAKkB,EAAO,IAAI,CAAC,SAASD,EAAe,QAAQxB,EAAc,GAAM,UAAU,QAAQA,EAAc,GAAM,UAAU,KAAK,OAAO,MAAM,CAAC,QAAQ,cAAc,EAAE,SAAsBO,EAAKlB,EAAI,CAAC,MAAM,CAAC,SAAS,OAAO,GAAGP,EAAK,MAAAE,EAAM,iBAAiB,MAAM,eAAe,MAAM,QAAQ,CAAC,EAAE,SAASgC,CAAI,CAAC,CAAC,EAAEL,EAASQ,CAAa,CAAE,CAAC,CAAC,EAAED,CAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEN,CAAa,CAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAClC,GAAqB,YAAY,kBAAkBgD,GAAoBhD,GAAqB,CAAC,KAAK,CAAC,KAAKiD,EAAY,OAAO,MAAM,OAAO,aAAa,sBAAsB,YAAY,2EAA2E,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAanD,GAAU,EAAE,IAAI,EAAE,IAAIA,EAAS,EAAE,MAAM,CAAC,KAAKmD,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,GAAG,KAAK,GAAG,EAAE,QAAQ,CAAC,MAAM,UAAU,YAAY,+BAA+B,KAAKA,EAAY,OAAO,aAAa,GAAG,KAAK,GAAG,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,SAAS,UAAU,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,wBAAwB,GAAK,MAAM,YAAY,aAAa,OAAO,QAAQ,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,CAAC,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,QAAQ,aAAa,EAAK,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,IAAI,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,aAAa,IAAI,wBAAwB,GAAK,0BAA0B,aAAa,QAAQ,CAAC,KAAK,KAAK,KAAK,GAAG,EAAE,aAAa,CAAC,KAAK,KAAK,KAAK,GAAG,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,QAAQ,aAAa,GAAK,YAAY,oEAAoE,CAAC,CAAC,ECbjqD,IAAMC,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,OAAY,MAAMA,GAAQ,cAAcA,OAAY,IAAIA,GAAQ,eAAeA,OAAY,OAAOA,GAAQ,cAAcA,MAAW,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,GAAwBC,EAAM,CAAY,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,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAA8BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,GAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,EAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,GAAYlB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,GAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,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,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,EAAG,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,EAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,EAAGV,GAAef,GAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,GAAcC,GAAc,IAAIC,GAAOL,IAAQ,IAAGK,GAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,GAAI3B,EAAY,CAAC,GAAG,IAAMG,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,GAAI,MAAMxB,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,GAAGtB,GAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,GAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,GAAS,IAAIF,EAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,GAAcC,GAAcC,GAAcO,GAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,MAAMzC,GAAW0C,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,MAAM,OAAO,OAAOzC,GAAYgD,GAAcZ,EAAM,SAAS,MAAMY,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,GAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,EAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,CAAS,EAEzCrC,IAA+BwD,EAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,GAAgB,CAAC/D,GAAe,OAAAuE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,GAAY,CAAC,EAAEA,GAAYwC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,EAAe/D,CAAK,CAAC,EACtX6C,EAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,GAAO3E,GAAaiE,GAAK,SAASU,EAAMV,GAAK,QAAQW,GAAK,EAAEd,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,GAAK,OAAO,CAAE,CAAC,EAAe,IAAMY,GAAczD,EAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,qBAAgCnE,MAAcsE,yBAAqCF,yBAAqCC,sBAAgCrE,MAAcwE,OAAkC,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,GAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,EAAa,UACz5DA,EAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,GAAO,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,EAAyBuG,GAAoBvG,GAAO,CAAC,MAAM,CAAC,KAAKwG,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,gBAAgB,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,aAAa,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,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,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,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC5B14F,IAAMC,GAAkBC,EAASC,EAAY,EAAQC,GAAyCC,GAA0BC,GAAOC,EAAO,GAAG,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASxB,EAAO,OAAayB,CAAQ,EAAQC,GAAwB,CAAC,2BAA2B,YAAY,gBAAgB,YAAY,0BAA0B,YAAY,eAAe,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,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBpB,GAAuBH,EAAMzB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAmBH,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAoBL,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAYP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAYR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAYT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAgBV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAOC,GAAU,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBpD,EAAKqD,GAAY,CAAC,GAAGjC,GAA4C4B,GAAgB,SAAsBhD,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKT,GAAW,CAAC,MAAMF,GAAY,SAAsBiE,EAAMhF,GAAyC,CAAC,GAAG+C,EAAU,GAAGI,EAAgB,0BAA0BtC,GAAU,0BAA0BC,GAAW,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAUmE,GAAG5E,GAAkB,GAAGuE,EAAsB,iBAAiB/B,EAAUI,CAAU,EAAE,wBAAwB,UAAU,mBAAmB,2BAA2B,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,EAAmB,UAAU,GAAK,IAAIrB,GAA6B6B,EAAK,MAAM,CAAC,gBAAgB,sEAAsE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6VAA6V,GAAGzB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,0BAA0BS,GAAW,mBAAmB,0BAA0B,aAAa,OAAU,aAAa+C,CAAmB,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc4B,EAAM7E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBsD,EAAiB,SAAS,YAAY,SAAS,CAACc,GAAY,GAAgB7C,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBsD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,iEAAiE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlD,EAAqB,CAAC,UAAU,CAAC,SAAsBmB,EAAWE,EAAS,CAAC,SAAsBF,EAAKvB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,0FAA0F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,EAAe4B,EAAM7E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBsD,EAAiB,SAAS,YAAY,MAAMO,EAAW,GAAGzD,EAAqB,CAAC,UAAU,CAAC,MAAM4D,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,EAAE,UAAU,CAAC,MAAMD,CAAW,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAS,CAAc1B,EAAKvB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBsD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,EAAE,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAe/B,EAAKvB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBsD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,GAAY,GAAgBS,EAAM7E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBsD,EAAiB,SAAS,YAAY,SAAS,CAAc/B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B1D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAqEsE,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,OAAO,GAAG,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,QAAqEA,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,mBAAmB,EAAE,kBAAkB,IAAI,EAAE,CAAC,CAAC,EAAE7B,EAAYI,CAAc,EAAE,SAAsB1B,EAAKvB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBsD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK3B,GAAa,CAAC,UAAU,OAAO,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUqF,EAAc,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG7E,EAAqB,CAAC,UAAU,CAAC,UAAU6E,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,UAAUhB,CAAe,CAAC,EAAEpB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B5D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAqEsE,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,OAAO,GAAG,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,QAAqEA,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,mBAAmB,EAAE,kBAAkB,IAAI,EAAE,EAAE,CAAC,EAAE7B,EAAYI,CAAc,EAAE,SAAsB1B,EAAKvB,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBsD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK3B,GAAa,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUuF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG/E,EAAqB,CAAC,UAAU,CAAC,UAAU+E,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEtC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B7D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAqEsE,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,OAAO,GAAG,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAqEA,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,mBAAmB,EAAE,kBAAkB,IAAI,EAAE,GAAG,CAAC,EAAE7B,EAAYI,CAAc,EAAE,SAAsB1B,EAAKvB,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBsD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK3B,GAAa,CAAC,UAAU,OAAO,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUwF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGhF,EAAqB,CAAC,UAAU,CAAC,UAAU,YAAY,UAAUgF,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAU,YAAY,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEvC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B9D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAqEsE,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,OAAO,GAAG,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAqEA,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,mBAAmB,EAAE,kBAAkB,IAAI,EAAE,GAAG,CAAC,EAAE7B,EAAYI,CAAc,EAAE,SAAsB1B,EAAKvB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBsD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK3B,GAAa,CAAC,UAAU,KAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyF,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGjF,EAAqB,CAAC,UAAU,CAAC,UAAUiF,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAExC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B/D,EAAK2D,EAA0B,CAAC,OAAO,GAAG,GAAG9E,EAAqB,CAAC,UAAU,CAAC,MAAM,QAAqEsE,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,OAAO,GAAG,oBAAoB,EAAE,mBAAmB,IAAI,EAAE,GAAG,EAAE,UAAU,CAAC,MAAM,QAAqEA,GAAkB,OAAQ,kBAAkB,GAAgEA,GAAkB,GAAI,GAAG,MAAmEA,GAAkB,QAAS,KAAK,GAAG,mBAAmB,EAAE,kBAAkB,IAAI,EAAE,GAAG,CAAC,EAAE7B,EAAYI,CAAc,EAAE,SAAsB1B,EAAKvB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBsD,EAAiB,SAAS,sBAAsB,SAAsB/B,EAAK3B,GAAa,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0F,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGlF,EAAqB,CAAC,UAAU,CAAC,UAAUkF,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEzC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsC,GAAI,CAAC,kFAAkF,gFAAgF,yTAAyT,wRAAwR,iHAAiH,yNAAyN,oOAAoO,iOAAiO,sRAAsR,2QAA2Q,g2BAAg2B,qHAAqH,+IAA+I,kLAAkL,6UAA6U,yIAAyI,oHAAoH,8EAA8E,2EAA2E,qHAAqH,qHAAqH,gFAAgF,mKAAmK,4UAA4U,EAQzhrBC,GAAgBC,GAAQtD,GAAUoD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,2BAA2B,0BAA0B,gBAAgB,cAAc,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9F,EAAiB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRriEoG,GAAU,UAAU,CAAC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,ooBAAooB,EAAeC,GAAU,eCAqnB,IAAMC,GAAkBC,EAASC,EAAY,EAAQC,GAAiBF,EAASG,EAAW,EAAQC,GAAUJ,EAASK,EAAI,EAAQC,GAAkCC,GAA0BC,CAAQ,EAAQC,GAAoBT,EAASU,EAAc,EAAQC,GAAmCJ,GAA0BK,CAAS,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAyBhB,EAASiB,EAAmB,EAAQC,GAAYlB,EAASmB,EAAM,EAAQC,GAAoBpB,EAASqB,EAAc,EAAQC,GAAkBtB,EAASuB,EAAY,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,6CAA6C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWH,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQI,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAO,CAAC,UAAU,SAAS,UAAUjC,GAAa,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,WAAWgC,GAAY,QAAQ,WAAW,EAAQE,GAAQ,CAAC,UAAU,SAAS,UAAUlC,GAAa,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,WAAWgC,GAAY,QAAQ,WAAW,EAAQG,GAAQ,CAAC,UAAU,SAAS,UAAUnC,GAAa,OAAO,CAAC,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,SAAS,WAAWgC,GAAY,QAAQ,WAAW,EAAQI,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEnB,GAASI,CAAK,EAAQgB,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUT,CAAY,EAAE,GAAGS,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUT,CAAY,EAAE,SAAS,MAAMS,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACY,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ5C,GAAY,EAAK,EAAQqD,EAAe,OAAoEC,EAAkBC,GAAGrD,GAAkB,GAArE,CAAawC,EAAS,CAAuE,EAAQc,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAASzD,GAAU,EAAiBiD,IAAc,YAAtB,GAAmES,EAAUC,GAAkB,WAAW,EAAQC,EAAWJ,EAAO,IAAI,EAAQK,EAAOC,GAAU,EAAQC,EAAWJ,GAAkB,WAAW,EAAQK,EAAWR,EAAO,IAAI,EAAQS,EAAsBC,GAAM,EAAEC,GAAiB,CAAC,UAAUpC,GAAO,UAAUE,GAAQ,OAAOD,EAAO,CAAC,EAAE,IAAMoC,EAAkBC,GAAqB,EAAE,OAAoB9C,EAAK+C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAApE,EAAiB,EAAE,SAAsBqE,EAAMC,GAAY,CAAC,GAAG9B,GAAUuB,EAAgB,SAAS,CAAc1C,EAAKH,GAAU,CAAC,MAAM,+FAA+F,CAAC,EAAemD,EAAMjF,EAAO,IAAI,CAAC,GAAGsD,EAAU,UAAUU,GAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,qBAAqB,UAAU,IAAIL,GAAKmB,EAAK,MAAM,CAAC,GAAGf,CAAK,EAAE,SAAS,CAACiB,EAAY,GAAgBlC,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKpC,EAAU,CAAC,UAAU,wCAAwC,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAK/C,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,EAAE,EAAE,UAAU,CAAC,EAAE,EAAE,EAAE,UAAU,CAAC,EAAE,EAAE,CAAC,EAAE,SAAsB1B,EAAKkD,EAA0B,CAAC,OAAO,GAAG,EAAE,GAAG,SAAsBlD,EAAKpC,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB1B,EAAK7C,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6F,EAAM,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,GAAGb,EAAU,IAAIE,EAAK,SAAS,CAAcrC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ0B,IAA2BP,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQO,IAA2BP,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQO,IAA2BP,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsB7C,EAAKqD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,IAA2BP,GAAmB,GAAG,GAAG,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7C,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBgD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAchD,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGmB,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,GAAG,CAAC,EAAE,SAAsB7C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,IAAI,KAAK,SAAsB7C,EAAKpC,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAK3C,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2F,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,2EAA2E,qBAAqB,QAAQ,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,QAAQ,MAAS,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,2EAA2E,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,QAAQ,MAAS,CAAC,EAAE,SAAsBA,EAAK1C,GAAkC,CAAC,sBAAsB,GAAK,QAAQuB,GAAU,SAAsBmB,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2CAA2C,uBAAuB,2EAA2E,qBAAqB,qBAAqB,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,qEAAqE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,MAAM,CAAC,8BAA8B,EAAE,QAAQlB,GAAW,UAAU,GAAK,kBAAkB,MAAM,QAAQ,eAAe,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAchD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,QAAQd,GAAW,SAAsBc,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,QAAQlB,GAAW,MAAM,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBkB,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1C,GAAkC,CAAC,sBAAsB,GAAK,QAAQ0B,GAAW,SAAsBgB,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,qBAAqB,EAAE,QAAQf,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,SAAS,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK1C,GAAkC,CAAC,sBAAsB,GAAK,QAAQ8B,GAAW,SAAsBY,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,iDAAiD,qBAAqB,QAAQ,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,MAAM,CAAC,qBAAqB,EAAE,QAAQf,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAsBA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkBnC,EAAkB,CAAC,EAAE,SAAsBS,EAAKrC,GAAmC,CAAC,QAAQ2B,GAAW,UAAU,2BAA2B,wBAAwB,UAAU,QAAQR,GAAW,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAsBkB,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK,CAAC,WAAW,iDAAiD,SAAS,QAAQ,UAAU,SAAS,WAAW,IAAI,cAAc,SAAS,WAAW,KAAK,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,WAAW,iDAAiD,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,SAAS,WAAW,OAAO,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,WAAW,iDAAiD,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,SAAS,WAAW,OAAO,CAAC,CAAC,EAAE,SAAsB1B,EAAKtC,GAAe,CAAC,UAAU,OAAO,MAAM,wEAAwE,MAAM,GAAG,KAAK,CAAC,WAAW,iDAAiD,SAAS,QAAQ,UAAU,SAAS,WAAW,IAAI,cAAc,SAAS,WAAW,KAAK,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,GAAK,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC,MAAM,MAAM,EAAE,IAAI,IAAI,KAAK,kEAAkE,WAAW,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAK,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBgD,EAAMnF,GAAgB,CAAC,kBAAkB,CAAC,WAAW8B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,SAAS,CAAcI,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxC,EAAS,CAAC,sBAAsB,GAAK,SAAsBwC,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,UAAU,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wQAAmQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,UAAU,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wQAAmQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,UAAU,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wQAAmQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxC,EAAS,CAAC,sBAAsB,GAAK,SAAsBwC,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,KAAK,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,OAAO,0BAA0B,UAAU,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wQAAmQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAsBA,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBvD,EAAKjC,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBiC,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAsBA,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBvD,EAAKjC,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBiC,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAsBA,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBvD,EAAKjC,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBiC,EAAKxC,EAAS,CAAC,sBAAsB,GAAK,SAAsBwC,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAsBA,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBvD,EAAKjC,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAK,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBgD,EAAMnF,GAAgB,CAAC,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcmF,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAchD,EAAKwD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BzD,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGmB,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,mBAAmB,CAAC,CAAC,EAAE,SAAsB7C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsB7C,EAAKpC,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBzD,EAAK/B,GAAoB,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUwF,EAAc,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezD,EAAKwD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6B1D,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGmB,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,mBAAmB,CAAC,CAAC,EAAE,SAAsB7C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsB7C,EAAKpC,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUgC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB1D,EAAK/B,GAAoB,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUyF,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAKwD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B3D,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGmB,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,mBAAmB,CAAC,CAAC,EAAE,SAAsB7C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsB7C,EAAKpC,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiC,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB3D,EAAK/B,GAAoB,CAAC,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU0F,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3D,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB1B,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKxC,EAAS,CAAC,sBAAsB,GAAK,SAAsBwC,EAAWsD,EAAS,CAAC,SAAsBtD,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsBA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKpC,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAK7B,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,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,CAAc6B,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,mCAAmC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,gCAAgC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,6BAA6B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,+BAA+B,mBAAmB,iCAAiC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,8BAA8B,mBAAmB,uCAAuC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,sCAAsC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,gCAAgC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,mCAAmC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,8BAA8B,mBAAmB,4CAA4C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,mCAAmC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,gCAAgC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,4CAA4C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,uDAAuD,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,8BAA8B,mBAAmB,mCAAmC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,uCAAuC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,0CAA0C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,iCAAiC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,iCAAiC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,8BAA8B,mBAAmB,sCAAsC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,sCAAsC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,8BAA8B,mBAAmB,6BAA6B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,8CAA8C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,wCAAwC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,wCAAwC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,8BAA8B,mBAAmB,wCAAwC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,8BAA8B,mBAAmB,4CAA4C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,+BAA+B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,+BAA+B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,kCAAkC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,8BAA8B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,+BAA+B,mBAAmB,yCAAyC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,4CAA4C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,mCAAmC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,sCAAsC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,+BAA+B,mBAAmB,uCAAuC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,8BAA8B,mBAAmB,uCAAuC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,yCAAyC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,0CAA0C,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,UAAU,IAAI,uFAAuF,OAAO,yEAAyE,EAAE,UAAU,+BAA+B,mBAAmB,8BAA8B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,+BAA+B,mBAAmB,uCAAuC,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,6BAA6B,CAAC,CAAC,CAAC,EAAerD,EAAKuD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,SAAsBvD,EAAKqD,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,MAAM,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,0EAA0E,EAAE,UAAU,8BAA8B,mBAAmB,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerD,EAAK,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,GAAGwC,EAAW,IAAIC,EAAK,SAAsBzC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsBA,EAAKmD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGmB,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsB7C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGL,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,SAAsB7C,EAAKpC,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBoC,EAAK3B,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2B,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4D,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,0QAA0Q,0IAA0I,wSAAwS,gYAAgY,6GAA6G,yUAAyU,2TAA2T,6JAA6J,uTAAuT,6SAA6S,6PAA6P,uRAAuR,4SAA4S,+TAA+T,0RAA0R,2GAA2G,sXAAsX,qQAAqQ,0cAA0c,8QAA8Q,sRAAsR,8RAA8R,2NAA2N,0QAA0Q,iXAAiX,4RAA4R,4RAA4R,+IAA+I,4VAA4V,ubAAub,2VAA2V,2WAA2W,6VAA6V,2GAA2G,+9BAA+9B,olBAAolB,qMAAqM,mRAAmR,4XAA4X,gRAAgR,osKAAosK,GAAeA,GAAI,2vEAA2vE,kpIAAkpI,ymFAAymF,EAW11kFC,GAAgBC,GAAQnD,GAAUiD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,wBAAwB,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,WAAW,OAAO,SAAS,MAAM,SAAS,IAAI,4EAA4E,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9G,GAAkB,GAAGG,GAAiB,GAAGE,GAAU,GAAGK,GAAoB,GAAGO,GAAyB,GAAGE,GAAY,GAAGE,GAAoB,GAAGE,GAAkB,GAAG2F,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACn5E,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,yBAA2B,OAAO,4BAA8B,OAAO,6BAA+B,OAAO,qBAAuB,2GAA+H,oCAAsC,qMAA2O,uBAAyB,GAAG,sBAAwB,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["MAX_SPEED", "defaultTransition", "StaggeredTextCycleV2", "text", "speed", "delay", "font", "userSelect", "color", "alignment", "tag", "loop", "stagger", "Tag", "content", "phrase", "iteration", "setIteration", "ye", "speedFormatted", "delayFormattedMs", "speedFormattedMs", "isCanvas", "RenderTarget", "isFirstRender", "setIsFirstRender", "ue", "timeout", "interval", "prev", "u", "p", "longest", "current", "l", "sentence", "sentenceIndex", "charIndex", "segments", "segment", "char", "AnimatePresence", "segmentIndex", "originalIndex", "baseDelay", "delayInitial", "delayAnimate", "delayExit", "itemTransition", "motion", "addPropertyControls", "ControlType", "MAX_DUPLICATED_ITEMS", "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", "filteredSlots", "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", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "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", "MenuPageLinkFonts", "getFonts", "l1S7xHq7G_default", "MotionNavWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transition2", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter4vgao3", "args", "onMouseLeave15xl141", "onTapjuh2k", "onTap9cr9ks", "onTapusd7ho", "onTapm9gxfo", "sngpfNPGJnt86s9", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerMd4hq3sX6", "withCSS", "Md4hq3sX6_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll", "MenuNavbar3Fonts", "Md4hq3sX6_default", "LogoFonts", "Eu6ViO5y0_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "StaggeredCycleFonts", "StaggeredTextCycleV2", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "motion", "ButtonPrimaryButtonFonts", "F7v36j7A8_default", "TickerFonts", "Ticker", "Copywrite20251Fonts", "gnIgU8rrl_default", "CustomCursorFonts", "i7xFxf7j9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "transition3", "animation5", "transition4", "animation6", "transformTemplate1", "_", "t", "animation7", "transition5", "animation8", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "transition6", "cursor", "cursor1", "cursor2", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "elementId", "useRouteElementId", "ref2", "router", "useRouter", "elementId1", "ref3", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "Link", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
