{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/d6o6dxgPc330ddop1Icg/iP5vOTNZkL048ZDeaN3P/INs4Ztalw.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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 (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/f8G7DmsBW/f8G7DmsBW.js\";import NavigationBar from\"#framer/local/canvasComponent/kH3UMmKb0/kH3UMmKb0.js\";import ProjectLink2 from\"#framer/local/canvasComponent/UrCumqqt7/UrCumqqt7.js\";import*as sharedStyle1 from\"#framer/local/css/bHLgYuSxV/bHLgYuSxV.js\";import*as sharedStyle from\"#framer/local/css/N6tHrUaj3/N6tHrUaj3.js\";import metadataProvider from\"#framer/local/webPageMetadata/INs4Ztalw/INs4Ztalw.js\";const NavigationBarFonts=getFonts(NavigationBar);const ProjectLink2Fonts=getFonts(ProjectLink2);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const CarouselFonts=getFonts(Carousel);const FooterFonts=getFonts(Footer);const breakpoints={AIWePC3Zx:\"(min-width: 1200px)\",yVqaXpLds:\"(max-width: 809px)\",ZxuOKn2Qh:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Zls8Y\";const variantClassNames={AIWePC3Zx:\"framer-v-195gwwb\",yVqaXpLds:\"framer-v-kxkigw\",ZxuOKn2Qh:\"framer-v-7uj3o6\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition1};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"AIWePC3Zx\",Phone:\"yVqaXpLds\",Tablet:\"ZxuOKn2Qh\"};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:\"AIWePC3Zx\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Zls8Y`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Zls8Y`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"AIWePC3Zx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-195gwwb\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:92,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jjrnvg-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{variant:\"fxmpglH1N\"},ZxuOKn2Qh:{variant:\"yEKLY06cW\"}},children:/*#__PURE__*/_jsx(NavigationBar,{height:\"100%\",id:\"RLhKB91XR\",layoutId:\"RLhKB91XR\",style:{width:\"100%\"},variant:\"KmJK4OMvo\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition(0),pixelHeight:1175,pixelWidth:1860,sizes:\"100vw\",src:\"https://framerusercontent.com/images/TQoJ3sbgiqz81FshYaaecIagIs.png\",srcSet:\"https://framerusercontent.com/images/TQoJ3sbgiqz81FshYaaecIagIs.png?scale-down-to=512 512w,https://framerusercontent.com/images/TQoJ3sbgiqz81FshYaaecIagIs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TQoJ3sbgiqz81FshYaaecIagIs.png 1860w\"}},ZxuOKn2Qh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition(0),pixelHeight:1235,pixelWidth:1860,sizes:\"100vw\",src:\"https://framerusercontent.com/images/P9WoMMH2QCPisFQBDy13pleeDws.png\",srcSet:\"https://framerusercontent.com/images/P9WoMMH2QCPisFQBDy13pleeDws.png?scale-down-to=512 512w,https://framerusercontent.com/images/P9WoMMH2QCPisFQBDy13pleeDws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/P9WoMMH2QCPisFQBDy13pleeDws.png 1860w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3648,intrinsicWidth:5472,loading:getLoadingLazyAtYPosition(0),pixelHeight:1332,pixelWidth:1860,sizes:\"100vw\",src:\"https://framerusercontent.com/images/2PLxo76AIp1XmVSQGKZqwiJgwk.png\",srcSet:\"https://framerusercontent.com/images/2PLxo76AIp1XmVSQGKZqwiJgwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/2PLxo76AIp1XmVSQGKZqwiJgwk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/2PLxo76AIp1XmVSQGKZqwiJgwk.png 1860w\"},className:\"framer-1rchr3p\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t3kmc1\",\"data-framer-name\":\"HERO\",name:\"HERO\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lrx7nq\",\"data-framer-name\":\"Project Heading\",name:\"Project Heading\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m5j2mh\",\"data-framer-name\":\"CONTENTS\",name:\"CONTENTS\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wzj2fe\",\"data-framer-name\":\"LEFT SIDE\",name:\"LEFT SIDE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{y:405}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:660,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xjpg9y-container\",children:/*#__PURE__*/_jsx(ProjectLink2,{height:\"100%\",id:\"HYFGfkbYq\",layoutId:\"HYFGfkbYq\",VLuoYiGxU:\"Cendant Essential Oils\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Brand Design\"})}),className:\"framer-1v3rzq3\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"This project presents a complete brand identity system, featuring brand collateral and a condensed set of guidelines for a new high-end, retail-focused essential oils establishment. Although the company's backstory, product range, target audience, and brand identity are fictional, the goal is to create a realistic, concept-driven approach that resonates with its intended audience.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Logo Concept: The logo focuses on embodying an organic aesthetic, featuring a soft, rounded leaf like symbol that conveys both natural growth and a sense of movement.  \"})]}),className:\"framer-1p5mcxv\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ckw0m7\",\"data-border\":true,\"data-framer-name\":\"RIGHT SIDE\",name:\"RIGHT SIDE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1u5ct76\",\"data-styles-preset\":\"N6tHrUaj3\",children:\"CONTENTS\"})}),className:\"framer-pzu72i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"LOGO \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BUSINESS CARD\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"STOREFRONT MOCKUP\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BAG DESIGN\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"PACKAGING\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"INSTAGRAM ADS\"})]}),className:\"framer-1vjy7ji\",fonts:[\"FS;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mecoab\",\"data-framer-name\":\"MAIN MARGINS\",name:\"MAIN MARGINS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uizvz4-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"wvvJUk10L\",intervalControl:1.8,itemAmount:1,layoutId:\"wvvJUk10L\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,pixelHeight:2550,pixelWidth:3300,sizes:\"1650px\",src:\"https://framerusercontent.com/images/V3cirRznwQOpIXd604imISeg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/V3cirRznwQOpIXd604imISeg.png?scale-down-to=512 512w,https://framerusercontent.com/images/V3cirRznwQOpIXd604imISeg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/V3cirRznwQOpIXd604imISeg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/V3cirRznwQOpIXd604imISeg.png 3300w\"},className:\"framer-1hzmw6u\",\"data-framer-name\":\"Primary Logo\",name:\"Primary Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,pixelHeight:2550,pixelWidth:3300,sizes:\"1650px\",src:\"https://framerusercontent.com/images/ry5ULv6Z5EK7rkLyqd7mEIRLAy0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ry5ULv6Z5EK7rkLyqd7mEIRLAy0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ry5ULv6Z5EK7rkLyqd7mEIRLAy0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ry5ULv6Z5EK7rkLyqd7mEIRLAy0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ry5ULv6Z5EK7rkLyqd7mEIRLAy0.png 3300w\"},className:\"framer-1f1qgd4\",\"data-framer-name\":\"Secondary Logo\",name:\"Secondary Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,pixelHeight:2550,pixelWidth:3300,sizes:\"1650px\",src:\"https://framerusercontent.com/images/auwDwr2bPpNd9Ha3HedJFAvVp70.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/auwDwr2bPpNd9Ha3HedJFAvVp70.png?scale-down-to=512 512w,https://framerusercontent.com/images/auwDwr2bPpNd9Ha3HedJFAvVp70.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/auwDwr2bPpNd9Ha3HedJFAvVp70.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/auwDwr2bPpNd9Ha3HedJFAvVp70.png 3300w\"},className:\"framer-j2qa27\",\"data-framer-name\":\"Third Logo\",name:\"Third Logo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,pixelHeight:2550,pixelWidth:3300,sizes:\"1650px\",src:\"https://framerusercontent.com/images/LAi0529vNndxstwoQDrKDt17FI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/LAi0529vNndxstwoQDrKDt17FI.png?scale-down-to=512 512w,https://framerusercontent.com/images/LAi0529vNndxstwoQDrKDt17FI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LAi0529vNndxstwoQDrKDt17FI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LAi0529vNndxstwoQDrKDt17FI.png 3300w\"},className:\"framer-15bb63p\",\"data-framer-name\":\"Logomark\",name:\"Logomark\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ioboa\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2483.6),pixelHeight:2550,pixelWidth:2341,positionX:\"right\",positionY:\"bottom\",sizes:\"max((min(100vw, 1200px) - 100px) / 3, 1px)\",src:\"https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png?scale-down-to=1024 940w,https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png?scale-down-to=2048 1880w,https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png 2341w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2343.6),pixelHeight:2550,pixelWidth:2341,positionX:\"right\",positionY:\"bottom\",sizes:\"max((min(100vw, 1200px) - 100px) / 3, 1px)\",src:\"https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png?scale-down-to=1024 940w,https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png?scale-down-to=2048 1880w,https://framerusercontent.com/images/2R20RHFRAboBmzznWwUuyWrPg.png 2341w\"},className:\"framer-gjly9k\",\"data-framer-name\":\"Color1\",name:\"Color1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2483.6),pixelHeight:2550,pixelWidth:2431,positionX:\"right\",positionY:\"bottom\",sizes:\"max((min(100vw, 1200px) - 100px) / 3, 1px)\",src:\"https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png?scale-down-to=1024 976w,https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png?scale-down-to=2048 1952w,https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png 2431w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2343.6),pixelHeight:2550,pixelWidth:2431,positionX:\"right\",positionY:\"bottom\",sizes:\"max((min(100vw, 1200px) - 100px) / 3, 1px)\",src:\"https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png?scale-down-to=1024 976w,https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png?scale-down-to=2048 1952w,https://framerusercontent.com/images/7Fq0uCBVFr8RKOMA0AqKmAHOq0.png 2431w\"},className:\"framer-8cojiy\",\"data-framer-name\":\"Color3\",name:\"Color3\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2483.6),pixelHeight:2550,pixelWidth:2494,positionX:\"right\",positionY:\"bottom\",sizes:\"max((min(100vw, 1200px) - 100px) / 3, 1px)\",src:\"https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png?scale-down-to=1024 1001w,https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png?scale-down-to=2048 2003w,https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png 2494w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2343.6),pixelHeight:2550,pixelWidth:2494,positionX:\"right\",positionY:\"bottom\",sizes:\"max((min(100vw, 1200px) - 100px) / 3, 1px)\",src:\"https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png?scale-down-to=1024 1001w,https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png?scale-down-to=2048 2003w,https://framerusercontent.com/images/PoRi3UyoGpGlPimk24ELBrnQJs.png 2494w\"},className:\"framer-1amqybv\",\"data-framer-name\":\"Color2\",name:\"Color2\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-170hcg3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2494.6),pixelHeight:1279,pixelWidth:3300,sizes:\"max((min(100vw, 1200px) - 110px) / 2, 1px)\",src:\"https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png 3300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2354.6),pixelHeight:1279,pixelWidth:3300,sizes:\"max((min(100vw, 1200px) - 110px) / 2, 1px)\",src:\"https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=512 512w,https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zIttxtZnaIxAYn5FOcuLZD0WxJk.png 3300w\"},className:\"framer-161g20p\",\"data-framer-name\":\"PrimaryFont\",name:\"PrimaryFont\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2494.6),pixelHeight:1274,pixelWidth:3300,sizes:\"max((min(100vw, 1200px) - 110px) / 2, 1px)\",src:\"https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=512 512w,https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png 3300w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1275,intrinsicWidth:1650,loading:getLoadingLazyAtYPosition(2354.6),pixelHeight:1274,pixelWidth:3300,sizes:\"max((min(100vw, 1200px) - 110px) / 2, 1px)\",src:\"https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=512 512w,https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aOHEnjvwKHYTQkq7Gk2bNEWDR4.png 3300w\"},className:\"framer-1uk7vgk\",\"data-framer-name\":\"SecondaryFont\",name:\"SecondaryFont\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nkfo9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(3779.6),pixelHeight:1060,pixelWidth:1590,src:\"https://framerusercontent.com/images/UBr1LahDzi0LHSOohbi8rhrnliU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(3639.6),pixelHeight:1060,pixelWidth:1590,src:\"https://framerusercontent.com/images/UBr1LahDzi0LHSOohbi8rhrnliU.png\"},className:\"framer-1j9n8sy\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6zw0nd\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(4571.6),pixelHeight:1060,pixelWidth:1590,src:\"https://framerusercontent.com/images/lkveeROETFMmKP78xLsYkI94U.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(4431.6),pixelHeight:1060,pixelWidth:1590,src:\"https://framerusercontent.com/images/lkveeROETFMmKP78xLsYkI94U.png\"},className:\"framer-tikupg\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gjksat\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(5363.6),pixelHeight:1e3,pixelWidth:1500,src:\"https://framerusercontent.com/images/n5zUShIJ3sgeayMFlyWzomFzrm4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(5223.6),pixelHeight:1e3,pixelWidth:1500,src:\"https://framerusercontent.com/images/n5zUShIJ3sgeayMFlyWzomFzrm4.png\"},className:\"framer-m5ov7x\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nhdhg9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(6158.6),pixelHeight:1060,pixelWidth:1590,src:\"https://framerusercontent.com/images/ZMtqj6eOCFzpsn7lJfiB2BQ1k40.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(6018.6),pixelHeight:1060,pixelWidth:1590,src:\"https://framerusercontent.com/images/ZMtqj6eOCFzpsn7lJfiB2BQ1k40.png\"},className:\"framer-1kpwbx4\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ypuuai\",\"data-styles-preset\":\"bHLgYuSxV\",children:\"Custom 2-Scent Blend Packaging & Bottle: Customers can create their own unique mix by combining any two scents.\"})}),className:\"framer-19fn1dz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-84eile-container\",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:\"Ijs58fwLI\",layoutId:\"Ijs58fwLI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"900px\",src:\"https://framerusercontent.com/images/u2l8ee36113CWLyM3nVuv2riOM.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/u2l8ee36113CWLyM3nVuv2riOM.png?scale-down-to=512 512w,https://framerusercontent.com/images/u2l8ee36113CWLyM3nVuv2riOM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/u2l8ee36113CWLyM3nVuv2riOM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/u2l8ee36113CWLyM3nVuv2riOM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/u2l8ee36113CWLyM3nVuv2riOM.png 6000w\"},className:\"framer-1e3pyhp\",\"data-framer-name\":\"3\",name:\"3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"900px\",src:\"https://framerusercontent.com/images/DyIiGMU4TFEdvfeo44OlHc9VG4U.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/DyIiGMU4TFEdvfeo44OlHc9VG4U.png?scale-down-to=512 512w,https://framerusercontent.com/images/DyIiGMU4TFEdvfeo44OlHc9VG4U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DyIiGMU4TFEdvfeo44OlHc9VG4U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DyIiGMU4TFEdvfeo44OlHc9VG4U.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/DyIiGMU4TFEdvfeo44OlHc9VG4U.png 6000w\"},className:\"framer-1oa3828\",\"data-framer-name\":\"2\",name:\"2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:4e3,pixelWidth:6e3,sizes:\"900px\",src:\"https://framerusercontent.com/images/jzZyo4qf2MeyTQGJmi2iTCaeayg.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/jzZyo4qf2MeyTQGJmi2iTCaeayg.png?scale-down-to=512 512w,https://framerusercontent.com/images/jzZyo4qf2MeyTQGJmi2iTCaeayg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jzZyo4qf2MeyTQGJmi2iTCaeayg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jzZyo4qf2MeyTQGJmi2iTCaeayg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jzZyo4qf2MeyTQGJmi2iTCaeayg.png 6000w\"},className:\"framer-1pyu3rw\",\"data-framer-name\":\"1\",name:\"1\"})],speed:200,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10bx0fi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ypuuai\",\"data-styles-preset\":\"bHLgYuSxV\",children:\"Single Scent Options: Label Design & Pattern Application\"})}),className:\"framer-15a0s1h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7z9h8\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(7161.35),pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/JjKyFqri9r3RaENidqXij0M4IIw.png?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(7055.35),pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/JjKyFqri9r3RaENidqXij0M4IIw.png?scale-down-to=2048\"},className:\"framer-nra6eu\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11shyrl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(7945.85),pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/7gsHOnb4gXzyksTaRp9JUe8Ws.png?scale-down-to=2048\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of a coffee shop menu\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition(7839.85),pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/7gsHOnb4gXzyksTaRp9JUe8Ws.png?scale-down-to=2048\"},className:\"framer-86pwma\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ypuuai\",\"data-styles-preset\":\"bHLgYuSxV\",children:\"Instagram Ads: 3 Posts\"})}),className:\"framer-1ywtvwe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-46sgls\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"RELATED PROJECTS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1ib2xk\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"RELATED PROJECTS\"})}),className:\"framer-dferyq\",fonts:[\"FS;Montserrat-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xogcp-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"CtZlzqHRk\",layoutId:\"CtZlzqHRk\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"thc04o9C_\"},nodeId:\"UPzS1RJ5X\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1125,pixelWidth:1394,sizes:\"362px\",src:\"https://framerusercontent.com/images/cZMWtO3XqvvsLx81gqyFloSLVE.png\",srcSet:\"https://framerusercontent.com/images/cZMWtO3XqvvsLx81gqyFloSLVE.png?scale-down-to=512 512w,https://framerusercontent.com/images/cZMWtO3XqvvsLx81gqyFloSLVE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cZMWtO3XqvvsLx81gqyFloSLVE.png 1394w\"},className:\"framer-gdabg1 framer-1lq2nqs\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RPUAOx3Hb\"},nodeId:\"VKJPgzZ13\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:3025,pixelWidth:3334,sizes:\"362px\",src:\"https://framerusercontent.com/images/ocMIcNsBS5JNLXIpY7Oa3OePXOc.png\",srcSet:\"https://framerusercontent.com/images/ocMIcNsBS5JNLXIpY7Oa3OePXOc.png?scale-down-to=512 512w,https://framerusercontent.com/images/ocMIcNsBS5JNLXIpY7Oa3OePXOc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ocMIcNsBS5JNLXIpY7Oa3OePXOc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ocMIcNsBS5JNLXIpY7Oa3OePXOc.png 3334w\"},className:\"framer-3w43hh framer-1lq2nqs\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"NMAvHqFtB\"},nodeId:\"wOggZFAUY\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1688,pixelWidth:2250,sizes:\"362px\",src:\"https://framerusercontent.com/images/I7c5QTNmZCW4BLTUYEDJVoWDd8.png\",srcSet:\"https://framerusercontent.com/images/I7c5QTNmZCW4BLTUYEDJVoWDd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/I7c5QTNmZCW4BLTUYEDJVoWDd8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/I7c5QTNmZCW4BLTUYEDJVoWDd8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/I7c5QTNmZCW4BLTUYEDJVoWDd8.png 2250w\"},className:\"framer-17ar0o2 framer-1lq2nqs\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"il1zBAK5W\"},nodeId:\"rsmRA3CZm\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:3900,pixelWidth:5700,sizes:\"362px\",src:\"https://framerusercontent.com/images/mXI6qPIF89gGeMIYKU3zxZvLig.jpg\",srcSet:\"https://framerusercontent.com/images/mXI6qPIF89gGeMIYKU3zxZvLig.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mXI6qPIF89gGeMIYKU3zxZvLig.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mXI6qPIF89gGeMIYKU3zxZvLig.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mXI6qPIF89gGeMIYKU3zxZvLig.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mXI6qPIF89gGeMIYKU3zxZvLig.jpg 5700w\"},className:\"framer-lbds27 framer-1lq2nqs\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iBQVH91iL\"},nodeId:\"OtYBQJ1DW\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1716,pixelWidth:2e3,sizes:\"362px\",src:\"https://framerusercontent.com/images/1FxU5rRLKvcaWehjj0vrHzI4rSs.png\",srcSet:\"https://framerusercontent.com/images/1FxU5rRLKvcaWehjj0vrHzI4rSs.png?scale-down-to=512 512w,https://framerusercontent.com/images/1FxU5rRLKvcaWehjj0vrHzI4rSs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1FxU5rRLKvcaWehjj0vrHzI4rSs.png 2000w\"},className:\"framer-u85fgh framer-1lq2nqs\",whileHover:animation})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Tbk4mxPFm\"},nodeId:\"LCB2B6Kbj\",openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",pixelHeight:1760,pixelWidth:2400,sizes:\"362px\",src:\"https://framerusercontent.com/images/GEqMmVuAK9dCqN9rjVd7tuOgLo.png\",srcSet:\"https://framerusercontent.com/images/GEqMmVuAK9dCqN9rjVd7tuOgLo.png?scale-down-to=512 512w,https://framerusercontent.com/images/GEqMmVuAK9dCqN9rjVd7tuOgLo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GEqMmVuAK9dCqN9rjVd7tuOgLo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GEqMmVuAK9dCqN9rjVd7tuOgLo.png 2400w\"},className:\"framer-76bb4e framer-1lq2nqs\",whileHover:animation})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{y:8444.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:\"100vw\",y:8398.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1h1f4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yVqaXpLds:{variant:\"geBG0gL3J\"},ZxuOKn2Qh:{variant:\"fLWuoS_1I\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"WMxprUrgo\",layoutId:\"WMxprUrgo\",style:{width:\"100%\"},variant:\"pa379yvsr\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Zls8Y { background: rgb(10, 10, 10); }`,\".framer-Zls8Y.framer-1lq2nqs, .framer-Zls8Y .framer-1lq2nqs { display: block; }\",\".framer-Zls8Y.framer-195gwwb { align-content: center; align-items: center; background-color: #0a0a0a; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Zls8Y .framer-1jjrnvg-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-Zls8Y .framer-1rchr3p { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 600px); overflow: hidden; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-t3kmc1, .framer-Zls8Y .framer-mecoab { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-1lrx7nq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-1m5j2mh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 131px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Zls8Y .framer-wzj2fe { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Zls8Y .framer-xjpg9y-container { flex: none; height: auto; position: relative; width: auto; }\",'.framer-Zls8Y .framer-1v3rzq3 { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4) /* {\"name\":\"Primary\"} */; --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; opacity: 0.5; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }','.framer-Zls8Y .framer-1p5mcxv { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4) /* {\"name\":\"Primary\"} */; --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }',\".framer-Zls8Y .framer-ckw0m7 { --border-bottom-width: 4px; --border-color: #ffffff; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: min-content; }\",'.framer-Zls8Y .framer-pzu72i { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4) /* {\"name\":\"Primary\"} */; --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }','.framer-Zls8Y .framer-1vjy7ji { --framer-link-hover-text-color: var(--token-8856508d-3cdd-4b9d-93c5-9410ff7516dc, #2047f4) /* {\"name\":\"Primary\"} */; --framer-link-text-color: var(--token-d85d8d2e-a90b-41e9-8852-32af98456a8d, #020a36); flex: none; height: auto; opacity: 0.5; overflow: visible; position: relative; white-space: pre-wrap; width: 206px; word-break: break-word; word-wrap: break-word; }',\".framer-Zls8Y .framer-1uizvz4-container { flex: none; height: 555px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-1hzmw6u, .framer-Zls8Y .framer-1f1qgd4, .framer-Zls8Y .framer-j2qa27, .framer-Zls8Y .framer-15bb63p { aspect-ratio: 1.2941176470588236 / 1; height: var(--framer-aspect-ratio-supported, 1275px); overflow: visible; position: relative; width: 1650px; }\",\".framer-Zls8Y .framer-6ioboa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-gjly9k, .framer-Zls8Y .framer-8cojiy, .framer-Zls8Y .framer-1amqybv { aspect-ratio: 1.2941176470588236 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 284px); overflow: visible; position: relative; width: 1px; }\",\".framer-Zls8Y .framer-170hcg3 { align-content: center; align-items: center; background-color: #ffffff; 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-Zls8Y .framer-161g20p { aspect-ratio: 1.2941176470588236 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 421px); mix-blend-mode: multiply; overflow: visible; position: relative; width: 1px; }\",\".framer-Zls8Y .framer-1uk7vgk { aspect-ratio: 1.2941176470588236 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 421px); overflow: visible; position: relative; width: 1px; }\",\".framer-Zls8Y .framer-1nkfo9, .framer-Zls8Y .framer-6zw0nd, .framer-Zls8Y .framer-1gjksat { align-content: center; align-items: center; background-color: #ffffff; 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-Zls8Y .framer-1j9n8sy, .framer-Zls8Y .framer-tikupg, .framer-Zls8Y .framer-m5ov7x, .framer-Zls8Y .framer-1kpwbx4, .framer-Zls8Y .framer-nra6eu, .framer-Zls8Y .framer-86pwma { aspect-ratio: 1.42 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 775px); overflow: hidden; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-1nhdhg9 { 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: 3px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-19fn1dz, .framer-Zls8Y .framer-1ywtvwe { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 94%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zls8Y .framer-84eile-container { flex: none; height: 700px; position: relative; width: 1116px; }\",\".framer-Zls8Y .framer-1e3pyhp { aspect-ratio: 1.2430939226519337 / 1; height: var(--framer-aspect-ratio-supported, 724px); overflow: visible; position: relative; width: 900px; }\",\".framer-Zls8Y .framer-1oa3828, .framer-Zls8Y .framer-1pyu3rw { aspect-ratio: 1.2413793103448276 / 1; height: var(--framer-aspect-ratio-supported, 725px); overflow: visible; position: relative; width: 900px; }\",\".framer-Zls8Y .framer-10bx0fi, .framer-Zls8Y .framer-w7z9h8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-15a0s1h, .framer-Zls8Y .framer-dferyq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Zls8Y .framer-11shyrl { 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 0px 160px 0px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-46sgls { 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 0px 20px 0px; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-xogcp-container, .framer-Zls8Y .framer-d1h1f4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Zls8Y .framer-gdabg1, .framer-Zls8Y .framer-3w43hh, .framer-Zls8Y .framer-17ar0o2, .framer-Zls8Y .framer-lbds27, .framer-Zls8Y .framer-u85fgh, .framer-Zls8Y .framer-76bb4e { aspect-ratio: 1.4251968503937007 / 1; height: var(--framer-aspect-ratio-supported, 254px); overflow: hidden; position: relative; text-decoration: none; width: 362px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zls8Y.framer-195gwwb, .framer-Zls8Y .framer-t3kmc1, .framer-Zls8Y .framer-1lrx7nq, .framer-Zls8Y .framer-1m5j2mh, .framer-Zls8Y .framer-wzj2fe, .framer-Zls8Y .framer-ckw0m7, .framer-Zls8Y .framer-mecoab, .framer-Zls8Y .framer-6ioboa, .framer-Zls8Y .framer-170hcg3, .framer-Zls8Y .framer-1nkfo9, .framer-Zls8Y .framer-6zw0nd, .framer-Zls8Y .framer-1gjksat, .framer-Zls8Y .framer-1nhdhg9, .framer-Zls8Y .framer-10bx0fi, .framer-Zls8Y .framer-w7z9h8, .framer-Zls8Y .framer-11shyrl, .framer-Zls8Y .framer-46sgls { gap: 0px; } .framer-Zls8Y.framer-195gwwb > *, .framer-Zls8Y .framer-1nkfo9 > *, .framer-Zls8Y .framer-6zw0nd > *, .framer-Zls8Y .framer-1gjksat > *, .framer-Zls8Y .framer-1nhdhg9 > *, .framer-Zls8Y .framer-10bx0fi > *, .framer-Zls8Y .framer-w7z9h8 > *, .framer-Zls8Y .framer-11shyrl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Zls8Y.framer-195gwwb > :first-child, .framer-Zls8Y .framer-t3kmc1 > :first-child, .framer-Zls8Y .framer-wzj2fe > :first-child, .framer-Zls8Y .framer-ckw0m7 > :first-child, .framer-Zls8Y .framer-mecoab > :first-child, .framer-Zls8Y .framer-1nkfo9 > :first-child, .framer-Zls8Y .framer-6zw0nd > :first-child, .framer-Zls8Y .framer-1gjksat > :first-child, .framer-Zls8Y .framer-1nhdhg9 > :first-child, .framer-Zls8Y .framer-10bx0fi > :first-child, .framer-Zls8Y .framer-w7z9h8 > :first-child, .framer-Zls8Y .framer-11shyrl > :first-child { margin-top: 0px; } .framer-Zls8Y.framer-195gwwb > :last-child, .framer-Zls8Y .framer-t3kmc1 > :last-child, .framer-Zls8Y .framer-wzj2fe > :last-child, .framer-Zls8Y .framer-ckw0m7 > :last-child, .framer-Zls8Y .framer-mecoab > :last-child, .framer-Zls8Y .framer-1nkfo9 > :last-child, .framer-Zls8Y .framer-6zw0nd > :last-child, .framer-Zls8Y .framer-1gjksat > :last-child, .framer-Zls8Y .framer-1nhdhg9 > :last-child, .framer-Zls8Y .framer-10bx0fi > :last-child, .framer-Zls8Y .framer-w7z9h8 > :last-child, .framer-Zls8Y .framer-11shyrl > :last-child { margin-bottom: 0px; } .framer-Zls8Y .framer-t3kmc1 > *, .framer-Zls8Y .framer-wzj2fe > *, .framer-Zls8Y .framer-mecoab > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Zls8Y .framer-1lrx7nq > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Zls8Y .framer-1lrx7nq > :first-child, .framer-Zls8Y .framer-1m5j2mh > :first-child, .framer-Zls8Y .framer-6ioboa > :first-child, .framer-Zls8Y .framer-170hcg3 > :first-child, .framer-Zls8Y .framer-46sgls > :first-child { margin-left: 0px; } .framer-Zls8Y .framer-1lrx7nq > :last-child, .framer-Zls8Y .framer-1m5j2mh > :last-child, .framer-Zls8Y .framer-6ioboa > :last-child, .framer-Zls8Y .framer-170hcg3 > :last-child, .framer-Zls8Y .framer-46sgls > :last-child { margin-right: 0px; } .framer-Zls8Y .framer-1m5j2mh > * { margin: 0px; margin-left: calc(131px / 2); margin-right: calc(131px / 2); } .framer-Zls8Y .framer-ckw0m7 > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-Zls8Y .framer-6ioboa > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Zls8Y .framer-170hcg3 > *, .framer-Zls8Y .framer-46sgls > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-Zls8Y { background: rgb(10, 10, 10); } .framer-Zls8Y.framer-195gwwb { width: 810px; } .framer-Zls8Y .framer-1rchr3p { height: var(--framer-aspect-ratio-supported, 405px); } .framer-Zls8Y .framer-gjly9k, .framer-Zls8Y .framer-8cojiy, .framer-Zls8Y .framer-1amqybv { height: var(--framer-aspect-ratio-supported, 183px); } .framer-Zls8Y .framer-161g20p, .framer-Zls8Y .framer-1uk7vgk { height: var(--framer-aspect-ratio-supported, 271px); } .framer-Zls8Y .framer-1j9n8sy, .framer-Zls8Y .framer-tikupg, .framer-Zls8Y .framer-m5ov7x, .framer-Zls8Y .framer-1kpwbx4, .framer-Zls8Y .framer-nra6eu, .framer-Zls8Y .framer-86pwma { height: var(--framer-aspect-ratio-supported, 500px); }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-Zls8Y { background: rgb(10, 10, 10); } .framer-Zls8Y.framer-195gwwb { width: 390px; } .framer-Zls8Y .framer-1rchr3p { aspect-ratio: unset; height: 345px; } .framer-Zls8Y .framer-1lrx7nq { width: 105%; } .framer-Zls8Y .framer-1m5j2mh { flex-direction: column; gap: 80px; } .framer-Zls8Y .framer-wzj2fe { flex: none; height: 480px; width: 100%; } .framer-Zls8Y .framer-1uizvz4-container { height: 390px; } .framer-Zls8Y .framer-gjly9k, .framer-Zls8Y .framer-8cojiy, .framer-Zls8Y .framer-1amqybv { height: var(--framer-aspect-ratio-supported, 75px); } .framer-Zls8Y .framer-161g20p, .framer-Zls8Y .framer-1uk7vgk { height: var(--framer-aspect-ratio-supported, 108px); } .framer-Zls8Y .framer-1j9n8sy, .framer-Zls8Y .framer-m5ov7x, .framer-Zls8Y .framer-nra6eu { height: var(--framer-aspect-ratio-supported, 204px); } .framer-Zls8Y .framer-tikupg, .framer-Zls8Y .framer-1kpwbx4, .framer-Zls8Y .framer-86pwma { height: var(--framer-aspect-ratio-supported, 205px); } .framer-Zls8Y .framer-84eile-container { height: 666px; width: 895px; } .framer-Zls8Y .framer-11shyrl { padding: 0px 0px 100px 0px; } .framer-Zls8Y .framer-xogcp-container { width: 125%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Zls8Y .framer-1m5j2mh { gap: 0px; } .framer-Zls8Y .framer-1m5j2mh > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Zls8Y .framer-1m5j2mh > :first-child { margin-top: 0px; } .framer-Zls8Y .framer-1m5j2mh > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,'.framer-Zls8Y[data-border=\"true\"]::after, .framer-Zls8Y [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8814.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZxuOKn2Qh\":{\"layout\":[\"fixed\",\"auto\"]},\"yVqaXpLds\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerINs4Ztalw=withCSS(Component,css,\"framer-Zls8Y\");export default FramerINs4Ztalw;FramerINs4Ztalw.displayName=\"Page\";FramerINs4Ztalw.defaultProps={height:8814.5,width:1200};addFonts(FramerINs4Ztalw,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.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\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"}]},...NavigationBarFonts,...ProjectLink2Fonts,...SlideshowFonts,...TickerFonts,...CarouselFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerINs4Ztalw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"8814.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZxuOKn2Qh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yVqaXpLds\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "0tBAAgY,IAAMA,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,EAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,GAAc,YAAAC,GAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,GAAU,cAAAC,GAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAS,EAAEN,EAAiB,CAAC,UAAAO,GAAU,WAAAC,EAAU,EAAET,GAAoBU,GAAanB,EAAe,GAAGC,OAAgBC,OAAkBC,QAAmBC,OAAgB,GAAGL,MAA8BqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,GAAYC,EAAS,MAAMF,CAAa,EAAQG,EAAYF,GAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,EAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,CAAW,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,EAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,EAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,EAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,EAAY,KAAK,IAAIA,EAAYlD,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,EAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,EAAI3B,EAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMnB,IAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,IAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMxB,EAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGtB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAG,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,EAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,EAAS,IAAIF,EAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,EAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,IAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,IAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMzC,IAAW0C,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOzC,IAAYgD,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,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,EAAKvC,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,EAAY,CAAC,EAAEA,EAAYwC,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,EAAK,SAASU,EAAMV,EAAK,QAAQW,GAAK,EAAEd,EAAeG,EAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,EAAK,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,OAAcsE,yBAAqCF,yBAAqCC,sBAAgCrE,OAAcwE,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,EAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,GAAO,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,GAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,EAAY,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,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,GAAoBvG,EAAO,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,EC5B/uE,IAAMC,GAAmBC,EAASC,EAAa,EAAQC,GAAkBF,EAASG,EAAY,EAAQC,GAAeJ,EAASK,EAAS,EAAQC,GAAYN,EAASO,CAAM,EAAQC,GAAcR,EAASS,EAAQ,EAAQC,GAAYV,EAASW,EAAM,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,qBAAqB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,KAAK,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,GAAQ,GAAGC,EAAS,EAAEjB,GAASI,CAAK,EAAQc,EAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,GAAQa,GAAY,EAAK,EAAQC,EAAe,OAAgBC,GAAWC,EAAO,IAAI,EAAQC,GAAsBC,GAAM,EAAQC,EAAsB,CAAarB,GAAuBA,EAAS,EAAE,OAAAsB,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA3C,EAAiB,EAAE,SAAsB4C,EAAMC,EAAY,CAAC,GAAGzB,GAA4CkB,GAAgB,SAAS,CAAcM,EAAME,GAAO,IAAI,CAAC,GAAGxB,GAAU,UAAUyB,GAAGhD,GAAkB,GAAGyC,EAAsB,iBAAiBrB,CAAS,EAAE,IAAIL,GAA6BsB,GAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,SAAS,CAAcwB,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,EAAE,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBW,EAAKS,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQA,EAA0B,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeV,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,kBAAkB,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,WAAW,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,GAAG,CAAC,EAAE,SAAsBW,EAAKM,EAA0B,CAAC,OAAO,GAAG,EAAE,IAAI,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKY,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yBAAyB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAW,EAAS,CAAC,SAAsBA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,uBAAuB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAY,EAAS,CAAC,SAAS,CAAcF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,qYAAqY,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,0KAA0K,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,uBAAuB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,KAAK,aAAa,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAW,EAAS,CAAC,SAAsBA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAY,EAAS,CAAC,SAAS,CAAcF,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,OAAO,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,eAAe,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,WAAW,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,uBAAuB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKc,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAcd,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,uFAAuF,OAAO,wVAAwV,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,cAAc,CAAC,EAAeX,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,EAAeX,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,YAAY,CAAC,EAAeX,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,SAAS,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,UAAU,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,6CAA6C,IAAI,wFAAwF,OAAO,iQAAiQ,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,6CAA6C,IAAI,wFAAwF,OAAO,iQAAiQ,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAeV,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,6CAA6C,IAAI,yFAAyF,OAAO,oQAAoQ,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,6CAA6C,IAAI,yFAAyF,OAAO,oQAAoQ,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,EAAeV,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,6CAA6C,IAAI,yFAAyF,OAAO,qQAAqQ,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,SAAS,MAAM,6CAA6C,IAAI,yFAAyF,OAAO,qQAAqQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,6CAA6C,IAAI,0FAA0F,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,6CAA6C,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,aAAa,CAAC,CAAC,CAAC,EAAeV,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,6CAA6C,IAAI,yFAAyF,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,6CAA6C,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,oEAAoE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,MAAM,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeV,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAW,EAAS,CAAC,SAAsBA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iHAAiH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKe,EAAO,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,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcf,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,yFAAyF,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,KAAK,GAAG,CAAC,EAAeX,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,0FAA0F,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,KAAK,GAAG,CAAC,EAAeX,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,0FAA0F,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,mBAAmB,IAAI,KAAK,GAAG,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeX,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAW,EAAS,CAAC,SAAsBA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0DAA0D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,yFAAyF,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,yFAAyF,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQqB,EAA0B,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,uFAAuF,CAAC,CAAC,EAAE,SAAsBV,EAAKW,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,EAA0B,OAAO,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,uFAAuF,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAeV,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAW,EAAS,CAAC,SAAsBA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBW,EAAW,EAAS,CAAC,SAAsBA,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAW,EAAS,CAAC,SAAsBA,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oBAAoB,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,yBAAyB,SAAsBP,EAAKgB,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAchB,EAAKiB,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjB,EAAKW,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,+BAA+B,WAAWnD,CAAS,CAAC,CAAC,CAAC,EAAewC,EAAKiB,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjB,EAAKW,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,+BAA+B,WAAWnD,CAAS,CAAC,CAAC,CAAC,EAAewC,EAAKiB,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjB,EAAKW,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gCAAgC,WAAWnD,CAAS,CAAC,CAAC,CAAC,EAAewC,EAAKiB,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjB,EAAKW,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,+BAA+B,WAAWnD,CAAS,CAAC,CAAC,CAAC,EAAewC,EAAKiB,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjB,EAAKW,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,+BAA+B,WAAWnD,CAAS,CAAC,CAAC,CAAC,EAAewC,EAAKiB,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjB,EAAKW,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,+BAA+B,WAAWnD,CAAS,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewC,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsBW,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,OAAO,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBW,EAAKkB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAUK,GAAGhD,GAAkB,GAAGyC,CAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,IAAI1D,GAAS,8DAA8D,kFAAkF,mSAAmS,oKAAoK,6KAA6K,8UAA8U,mSAAmS,wRAAwR,8RAA8R,wGAAwG,iZAAiZ,kYAAkY,ybAAyb,8UAA8U,kZAAkZ,0GAA0G,kRAAkR,2QAA2Q,6PAA6P,wSAAwS,2NAA2N,iMAAiM,sWAAsW,uUAAuU,oSAAoS,gRAAgR,2GAA2G,oLAAoL,mNAAmN,6SAA6S,gRAAgR,qSAAqS,yRAAyR,+IAA+I,gWAAgW,4vGAA4vG,wDAAwDA,GAAS,4rBAA4rB,gCAAgCA,GAAS,8/CAA8/C,GAAe0D,GAAI,GAAgBA,GAAI,+bAA+b,EAS9jpDC,GAAgBC,GAAQnD,GAAUiD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAmB,GAAGC,GAAkB,GAAGC,GAAe,GAAGC,GAAY,GAAGC,GAAc,GAAGC,GAAY,GAAGC,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC19E,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,yBAA2B,QAAQ,yBAA2B,OAAO,sBAAwB,IAAI,6BAA+B,OAAO,sBAAwB,SAAS,oCAAsC,4JAA0L,uBAAyB,EAAE,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["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", "NavigationBarFonts", "getFonts", "kH3UMmKb0_default", "ProjectLink2Fonts", "UrCumqqt7_default", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "CarouselFonts", "Carousel", "FooterFonts", "f8G7DmsBW_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "kH3UMmKb0_default", "getLoadingLazyAtYPosition", "Image2", "UrCumqqt7_default", "RichText2", "Slideshow", "Ticker", "Carousel", "Link", "f8G7DmsBW_default", "css", "FramerINs4Ztalw", "withCSS", "INs4Ztalw_default", "addFonts", "NavigationBarFonts", "ProjectLink2Fonts", "SlideshowFonts", "TickerFonts", "CarouselFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
