{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/I6wB9HzrFgWqAvUaZxQ1/Ze4rwD2sFaJYBG7zw5pi/CS0zVMRcQ.js", "ssg:https://framerusercontent.com/modules/pxHwn82U7TUmDQAUdVU6/bMS1DOdW5rctI4TgI2z2/rUv7fLkLt.js", "ssg:https://framerusercontent.com/modules/kdw5mA2E6GudeNBIXqsp/lsusM06LdpwTK8rltveN/JaMsKuu3Y.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (a417fcb)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Plus Jakarta Sans-800\",\"GF;Plus Jakarta Sans-800italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_KUnNTxXUEKi4Rw.woff2\",weight:\"800\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ2lDh_VMq2oR82k.woff2\",weight:\"800\"}]}];export const css=['.framer-ahduM .framer-styles-preset-1evn77:not(.rich-text-wrapper), .framer-ahduM .framer-styles-preset-1evn77.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-italic: italic; --framer-font-weight: 800; --framer-font-weight-italic: 800; --framer-letter-spacing: 0em; --framer-line-height: 2.5em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #cb94e2; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: uppercase; }'];export const className=\"framer-ahduM\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Plus Jakarta Sans-500\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{family:\"Plus Jakarta Sans\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}];export const css=['.framer-InIuu .framer-styles-preset-11qo4tg:not(.rich-text-wrapper), .framer-InIuu .framer-styles-preset-11qo4tg.rich-text-wrapper h2 { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Black\", \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter-BlackItalic\", \"Inter\", sans-serif; --framer-font-family-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.5px; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: rgba(0, 0, 0, 0.5); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-InIuu\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (dbba614)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import ButtonSales from\"#framer/local/canvasComponent/hNYldpddn/hNYldpddn.js\";import Footer_V2 from\"#framer/local/canvasComponent/LL20tMoVu/LL20tMoVu.js\";import Navbar from\"#framer/local/canvasComponent/wfimvLT4c/wfimvLT4c.js\";import Creators from\"#framer/local/collection/yt8V2vRyN/yt8V2vRyN.js\";import*as sharedStyle12 from\"#framer/local/css/CS0zVMRcQ/CS0zVMRcQ.js\";import*as sharedStyle from\"#framer/local/css/CTRYVOrEa/CTRYVOrEa.js\";import*as sharedStyle3 from\"#framer/local/css/fWXaz3yjl/fWXaz3yjl.js\";import*as sharedStyle9 from\"#framer/local/css/GJNG04Jrf/GJNG04Jrf.js\";import*as sharedStyle6 from\"#framer/local/css/ngtyPi90Z/ngtyPi90Z.js\";import*as sharedStyle2 from\"#framer/local/css/rUv7fLkLt/rUv7fLkLt.js\";import*as sharedStyle7 from\"#framer/local/css/sBpesExbw/sBpesExbw.js\";import*as sharedStyle1 from\"#framer/local/css/stylesPresetHeading1/stylesPresetHeading1.js\";import*as sharedStyle8 from\"#framer/local/css/stylesPresetLink/stylesPresetLink.js\";import*as sharedStyle13 from\"#framer/local/css/stylesPresetParagraph/stylesPresetParagraph.js\";import*as sharedStyle11 from\"#framer/local/css/VQzFRlFEV/VQzFRlFEV.js\";import*as sharedStyle10 from\"#framer/local/css/XbWYrDWUV/XbWYrDWUV.js\";import*as sharedStyle5 from\"#framer/local/css/Yjuh20P7B/Yjuh20P7B.js\";import*as sharedStyle4 from\"#framer/local/css/Z5AyRoqzg/Z5AyRoqzg.js\";import metadataProvider from\"#framer/local/webPageMetadata/JaMsKuu3Y/JaMsKuu3Y.js\";const NavbarFonts=getFonts(Navbar);const FeatherFonts=getFonts(Feather);const ButtonSalesFonts=getFonts(ButtonSales);const CarouselFonts=getFonts(Carousel);const Footer_V2Fonts=getFonts(Footer_V2);const breakpoints={FgeFbcS8O:\"(min-width: 1200px)\",p7C7HdfCi:\"(min-width: 810px) and (max-width: 1199px)\",SNQXQUexc:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NcVB2\";const variantClassNames={FgeFbcS8O:\"framer-v-1f71p05\",p7C7HdfCi:\"framer-v-1ykklnh\",SNQXQUexc:\"framer-v-vmcsj7\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"FgeFbcS8O\",Phone:\"SNQXQUexc\",Tablet:\"p7C7HdfCi\"};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:\"FgeFbcS8O\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"JaMsKuu3Y\",data:Creators,type:\"Collection\"},select:[{collection:\"JaMsKuu3Y\",name:\"Ux04wId2F\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"QJcV6wD8P\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"IiGM0rSRZ\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"memVcMC3F\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"PqdMCRuFA\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"GOOuHS1PB\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"BvggsUcaO\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"lx91kwOpB\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"C_fCwWPNi\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"iq944ZOh7\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"AlYCVLrTz\",type:\"Identifier\"},{collection:\"JaMsKuu3Y\",name:\"mQt7tmpPS\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"JaMsKuu3Y\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2,_getFromCurrentRouteData3,_getFromCurrentRouteData4,_getFromCurrentRouteData5,_getFromCurrentRouteData6;const{style,className,layoutId,variant,QJcV6wD8P=getFromCurrentRouteData(\"QJcV6wD8P\"),Ux04wId2F=(_getFromCurrentRouteData=getFromCurrentRouteData(\"Ux04wId2F\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",IiGM0rSRZ=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"IiGM0rSRZ\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:\"\",mQt7tmpPS=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"mQt7tmpPS\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",PqdMCRuFA=(_getFromCurrentRouteData3=getFromCurrentRouteData(\"PqdMCRuFA\"))!==null&&_getFromCurrentRouteData3!==void 0?_getFromCurrentRouteData3:\"\",memVcMC3F=(_getFromCurrentRouteData4=getFromCurrentRouteData(\"memVcMC3F\"))!==null&&_getFromCurrentRouteData4!==void 0?_getFromCurrentRouteData4:\"\",BvggsUcaO=getFromCurrentRouteData(\"BvggsUcaO\"),lx91kwOpB=getFromCurrentRouteData(\"lx91kwOpB\"),C_fCwWPNi=getFromCurrentRouteData(\"C_fCwWPNi\"),GOOuHS1PB=(_getFromCurrentRouteData5=getFromCurrentRouteData(\"GOOuHS1PB\"))!==null&&_getFromCurrentRouteData5!==void 0?_getFromCurrentRouteData5:\"\",iq944ZOh7=(_getFromCurrentRouteData6=getFromCurrentRouteData(\"iq944ZOh7\"))!==null&&_getFromCurrentRouteData6!==void 0?_getFromCurrentRouteData6:\"\",u0jTD9KT5wYsgV3Wxt,QJcV6wD8PwYsgV3Wxt,Ux04wId2FwYsgV3Wxt,IiGM0rSRZwYsgV3Wxt,idwYsgV3Wxt,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-NcVB2`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-NcVB2`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"p7C7HdfCi\",\"SNQXQUexc\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"SNQXQUexc\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"FgeFbcS8O\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1f71p05\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bi2h0s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{variant:\"pqfusNOoo\"},SNQXQUexc:{style:{width:\"100%\"},variant:\"BdVZHrR7y\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"eNAcI8eD2\",layoutId:\"eNAcI8eD2\",style:{height:\"100%\",width:\"100%\"},variant:\"xiX4UITLd\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-db7v1g\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-37652b\",\"data-framer-name\":\"Name\",name:\"Name\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14hi0sd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-chqrj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ft863c-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(156, 117, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-left\",id:\"HOHWWRERB\",layoutId:\"HOHWWRERB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"22px\",\"--framer-text-color\":\"var(--token-bc15ec6c-471d-4ee9-b84b-5f602366afaf, rgb(216, 78, 166))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Jx4gUU8gV\"},nodeId:\"E7vEzvhMH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-177qtus\",\"data-styles-preset\":\"CTRYVOrEa\",children:\"Back to creators\"})})})}),className:\"framer-12ptej7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{background:{alt:\"\",fit:\"fill\",sizes:\"253px\",...toResponsiveImage(QJcV6wD8P),...{positionX:\"center\",positionY:\"center\"}}},SNQXQUexc:{background:{alt:\"\",fit:\"fill\",sizes:\"253px\",...toResponsiveImage(QJcV6wD8P),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"430px\",...toResponsiveImage(QJcV6wD8P),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1nvu9i2\",children:isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-qqpnuq hidden-1ykklnh hidden-vmcsj7\"})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5prko\",\"data-framer-name\":\"Description-signup\",name:\"Description-signup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"31px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX Research Reimagined: Scaling Every Phase\"})})},SNQXQUexc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX Research Reimagined: Scaling Every Phase\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX Research Reimagined: Scaling Every Phase\"})}),className:\"framer-93zbcv\",fonts:[\"GF;Plus Jakarta Sans-700\"],text:Ux04wId2F,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wf6f8e\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"30px\",...toResponsiveImage(QJcV6wD8P)},className:\"framer-1vk0kmm\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.96)\"},children:\"Ben & Robin\"})})},SNQXQUexc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.96)\"},children:\"Ben & Robin\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNTAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.96)\"},children:\"Ben & Robin\"})}),className:\"framer-aw9ez5\",fonts:[\"GF;Plus Jakarta Sans-500\"],text:IiGM0rSRZ,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:mQt7tmpPS,className:\"framer-df9ez9\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",blockquote:\"framer-styles-preset-1b7gxeu\",code:\"framer-styles-preset-p9p3gw\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-11qo4tg\",h3:\"framer-styles-preset-n8geqq\",h4:\"framer-styles-preset-rgj17o\",h5:\"framer-styles-preset-d1abga\",h6:\"framer-styles-preset-17hgzp8\",img:\"framer-styles-preset-yjd7g1\",p:\"framer-styles-preset-2hdrom\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-igjf21\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:PqdMCRuFA,implicitPathVariables:undefined},{href:PqdMCRuFA,implicitPathVariables:undefined},{href:PqdMCRuFA,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d20o0c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{Ab3DCc3GE:resolvedLinks[1]},SNQXQUexc:{Ab3DCc3GE:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonSales,{Ab3DCc3GE:resolvedLinks[0],aK7jyIIwi:\"Use template\",Dlf2qAxEt:\"rgb(255, 255, 255)\",height:\"100%\",id:\"zvmBj6a7P\",layoutId:\"zvmBj6a7P\",variant:\"GSZRfTT6P\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:memVcMC3F,implicitPathVariables:undefined},{href:memVcMC3F,implicitPathVariables:undefined},{href:memVcMC3F,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x9eq0j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{Ab3DCc3GE:resolvedLinks1[1]},SNQXQUexc:{Ab3DCc3GE:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonSales,{Ab3DCc3GE:resolvedLinks1[0],aK7jyIIwi:\"Connect\",Dlf2qAxEt:\"rgb(255, 255, 255)\",height:\"100%\",id:\"zkR1SRorL\",layoutId:\"zkR1SRorL\",variant:\"HEBRJ4s68\",width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1heml9n\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12wgfdy-container hidden-vmcsj7\",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:.45,fadeContent:false,fadeInset:39,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:0},gap:30,height:\"100%\",id:\"nKOQaZLgm\",layoutId:\"nKOQaZLgm\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,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(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"600px\",...toResponsiveImage(BvggsUcaO),...{positionX:\"right\",positionY:\"bottom\"}},className:\"framer-1uafm2r\",\"data-framer-name\":\"Template-img-1\",name:\"Template-img-1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"600px\",...toResponsiveImage(lx91kwOpB)},className:\"framer-2b65io\",\"data-framer-name\":\"Template-img-2\",name:\"Template-img-2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"600px\",...toResponsiveImage(C_fCwWPNi)},className:\"framer-4sx60b\",\"data-framer-name\":\"Template-img-3\",name:\"Template-img-3\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-to5sbi\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14z2q9f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"What to expect\"})}),className:\"framer-1qf5yrd\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:GOOuHS1PB,className:\"framer-8y6as1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",blockquote:\"framer-styles-preset-1b7gxeu\",code:\"framer-styles-preset-p9p3gw\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-11qo4tg\",h3:\"framer-styles-preset-n8geqq\",h4:\"framer-styles-preset-rgj17o\",h5:\"framer-styles-preset-d1abga\",h6:\"framer-styles-preset-17hgzp8\",img:\"framer-styles-preset-yjd7g1\",p:\"framer-styles-preset-2hdrom\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bykyds\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Highlights\"})}),className:\"framer-ukilqr\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:iq944ZOh7,className:\"framer-d51d1y\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",blockquote:\"framer-styles-preset-1b7gxeu\",code:\"framer-styles-preset-p9p3gw\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-11qo4tg\",h3:\"framer-styles-preset-n8geqq\",h4:\"framer-styles-preset-rgj17o\",h5:\"framer-styles-preset-d1abga\",h6:\"framer-styles-preset-17hgzp8\",img:\"framer-styles-preset-yjd7g1\",p:\"framer-styles-preset-1evn77\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1urhs3m\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dct0fd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8nrrvj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Explore other creator templates\"})}),className:\"framer-iztkdr\",fonts:[\"GF;Plus Jakarta Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ufiqtx\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"wYsgV3Wxt\",data:Creators,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"wYsgV3Wxt\",name:\"u0jTD9KT5\",type:\"Identifier\"},{collection:\"wYsgV3Wxt\",name:\"QJcV6wD8P\",type:\"Identifier\"},{collection:\"wYsgV3Wxt\",name:\"Ux04wId2F\",type:\"Identifier\"},{collection:\"wYsgV3Wxt\",name:\"IiGM0rSRZ\",type:\"Identifier\"},{collection:\"wYsgV3Wxt\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({id:idwYsgV3Wxt,IiGM0rSRZ:IiGM0rSRZwYsgV3Wxt,QJcV6wD8P:QJcV6wD8PwYsgV3Wxt,u0jTD9KT5:u0jTD9KT5wYsgV3Wxt,Ux04wId2F:Ux04wId2FwYsgV3Wxt},i)=>{u0jTD9KT5wYsgV3Wxt!==null&&u0jTD9KT5wYsgV3Wxt!==void 0?u0jTD9KT5wYsgV3Wxt:u0jTD9KT5wYsgV3Wxt=\"\";Ux04wId2FwYsgV3Wxt!==null&&Ux04wId2FwYsgV3Wxt!==void 0?Ux04wId2FwYsgV3Wxt:Ux04wId2FwYsgV3Wxt=\"\";IiGM0rSRZwYsgV3Wxt!==null&&IiGM0rSRZwYsgV3Wxt!==void 0?IiGM0rSRZwYsgV3Wxt:IiGM0rSRZwYsgV3Wxt=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`wYsgV3Wxt-${idwYsgV3Wxt}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{u0jTD9KT5:u0jTD9KT5wYsgV3Wxt},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{u0jTD9KT5:u0jTD9KT5wYsgV3Wxt},webPageId:\"JaMsKuu3Y\"},nodeId:\"oMKi_KtDz\",children:/*#__PURE__*/_jsxs(\"a\",{className:\"framer-1a6ckr9 framer-kcywno\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"110px\",...toResponsiveImage(QJcV6wD8PwYsgV3Wxt)},className:\"framer-bz4ubc\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kc6wcg\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtNzAw\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX Research Reimagined: Scaling Every Phase\"})}),className:\"framer-m8o9ks\",\"data-framer-name\":\"Template name\",fonts:[\"GF;Plus Jakarta Sans-700\"],name:\"Template name\",text:Ux04wId2FwYsgV3Wxt,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-16bzrdu\",\"data-styles-preset\":\"stylesPresetParagraph\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ben & Robin\"})}),className:\"framer-ua3ryk\",\"data-framer-name\":\"Coach name\",fonts:[\"Inter\"],name:\"Coach name\",text:IiGM0rSRZwYsgV3Wxt,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idwYsgV3Wxt);})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:418,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tinoyv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p7C7HdfCi:{variant:\"KoocZwj9D\"},SNQXQUexc:{variant:\"WN_yGX0qW\"}},children:/*#__PURE__*/_jsx(Footer_V2,{height:\"100%\",id:\"H0J0SOJln\",layoutId:\"H0J0SOJln\",style:{width:\"100%\"},variant:\"plR9KatNt\",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-NcVB2 { background: rgb(29, 16, 43); }`,\".framer-NcVB2.framer-kcywno, .framer-NcVB2 .framer-kcywno { display: block; }\",\".framer-NcVB2.framer-1f71p05 { align-content: center; align-items: center; background-color: #1d102b; 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-NcVB2 .framer-bi2h0s-container { flex: none; height: 70px; position: relative; width: 100%; }\",\".framer-NcVB2 .framer-db7v1g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 80px 80px 60px 80px; position: relative; width: 100%; }\",\".framer-NcVB2 .framer-37652b { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NcVB2 .framer-14hi0sd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-NcVB2 .framer-chqrj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 430px; }\",\".framer-NcVB2 .framer-ft863c-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-NcVB2 .framer-12ptej7 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NcVB2 .framer-1nvu9i2 { border-bottom-left-radius: 18px; border-bottom-right-radius: 18px; border-top-left-radius: 18px; border-top-right-radius: 18px; flex: none; height: 552px; position: relative; width: 430px; }\",\".framer-NcVB2 .framer-qqpnuq { background-color: #ffffff; flex: none; height: 325px; left: -886px; overflow: hidden; position: absolute; top: 0px; width: 866px; }\",\".framer-NcVB2 .framer-1v5prko { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NcVB2 .framer-93zbcv, .framer-NcVB2 .framer-df9ez9, .framer-NcVB2 .framer-ukilqr, .framer-NcVB2 .framer-d51d1y { --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-NcVB2 .framer-wf6f8e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-NcVB2 .framer-1vk0kmm { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-NcVB2 .framer-aw9ez5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 30px; position: relative; white-space: pre; width: auto; }\",\".framer-NcVB2 .framer-igjf21 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-NcVB2 .framer-1d20o0c-container, .framer-NcVB2 .framer-1x9eq0j-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NcVB2 .framer-1heml9n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 59px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 20px 80px 60px 80px; position: relative; width: 100%; }\",\".framer-NcVB2 .framer-12wgfdy-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-NcVB2 .framer-1uafm2r, .framer-NcVB2 .framer-2b65io, .framer-NcVB2 .framer-4sx60b { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: 315px; overflow: visible; position: relative; width: 600px; }\",\".framer-NcVB2 .framer-to5sbi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1040px; }\",\".framer-NcVB2 .framer-14z2q9f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NcVB2 .framer-1qf5yrd, .framer-NcVB2 .framer-8y6as1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 523px; word-break: break-word; word-wrap: break-word; }\",\".framer-NcVB2 .framer-1bykyds { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 402px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 417px; }\",\".framer-NcVB2 .framer-1urhs3m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NcVB2 .framer-1dct0fd { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NcVB2 .framer-8nrrvj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 20px 80px 20px 80px; position: relative; width: 1px; }\",\".framer-NcVB2 .framer-iztkdr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-NcVB2 .framer-1ufiqtx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; padding: 16px 80px 60px 80px; position: relative; width: 100%; }\",\".framer-NcVB2 .framer-1a6ckr9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-NcVB2 .framer-bz4ubc { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 110px; position: relative; width: 110px; }\",\".framer-NcVB2 .framer-kc6wcg { 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; min-width: 200px; padding: 0px; position: relative; width: 1px; }\",\".framer-NcVB2 .framer-m8o9ks, .framer-NcVB2 .framer-ua3ryk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NcVB2 .framer-tinoyv-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NcVB2.framer-1f71p05, .framer-NcVB2 .framer-db7v1g, .framer-NcVB2 .framer-37652b, .framer-NcVB2 .framer-14hi0sd, .framer-NcVB2 .framer-chqrj, .framer-NcVB2 .framer-1v5prko, .framer-NcVB2 .framer-wf6f8e, .framer-NcVB2 .framer-igjf21, .framer-NcVB2 .framer-1heml9n, .framer-NcVB2 .framer-to5sbi, .framer-NcVB2 .framer-14z2q9f, .framer-NcVB2 .framer-1bykyds, .framer-NcVB2 .framer-1urhs3m, .framer-NcVB2 .framer-1dct0fd, .framer-NcVB2 .framer-8nrrvj, .framer-NcVB2 .framer-1ufiqtx, .framer-NcVB2 .framer-1a6ckr9, .framer-NcVB2 .framer-kc6wcg { gap: 0px; } .framer-NcVB2.framer-1f71p05 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NcVB2.framer-1f71p05 > :first-child, .framer-NcVB2 .framer-37652b > :first-child, .framer-NcVB2 .framer-14hi0sd > :first-child, .framer-NcVB2 .framer-1v5prko > :first-child, .framer-NcVB2 .framer-1heml9n > :first-child, .framer-NcVB2 .framer-14z2q9f > :first-child, .framer-NcVB2 .framer-1bykyds > :first-child, .framer-NcVB2 .framer-1ufiqtx > :first-child, .framer-NcVB2 .framer-kc6wcg > :first-child { margin-top: 0px; } .framer-NcVB2.framer-1f71p05 > :last-child, .framer-NcVB2 .framer-37652b > :last-child, .framer-NcVB2 .framer-14hi0sd > :last-child, .framer-NcVB2 .framer-1v5prko > :last-child, .framer-NcVB2 .framer-1heml9n > :last-child, .framer-NcVB2 .framer-14z2q9f > :last-child, .framer-NcVB2 .framer-1bykyds > :last-child, .framer-NcVB2 .framer-1ufiqtx > :last-child, .framer-NcVB2 .framer-kc6wcg > :last-child { margin-bottom: 0px; } .framer-NcVB2 .framer-db7v1g > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-NcVB2 .framer-db7v1g > :first-child, .framer-NcVB2 .framer-chqrj > :first-child, .framer-NcVB2 .framer-wf6f8e > :first-child, .framer-NcVB2 .framer-igjf21 > :first-child, .framer-NcVB2 .framer-to5sbi > :first-child, .framer-NcVB2 .framer-1urhs3m > :first-child, .framer-NcVB2 .framer-1dct0fd > :first-child, .framer-NcVB2 .framer-8nrrvj > :first-child, .framer-NcVB2 .framer-1a6ckr9 > :first-child { margin-left: 0px; } .framer-NcVB2 .framer-db7v1g > :last-child, .framer-NcVB2 .framer-chqrj > :last-child, .framer-NcVB2 .framer-wf6f8e > :last-child, .framer-NcVB2 .framer-igjf21 > :last-child, .framer-NcVB2 .framer-to5sbi > :last-child, .framer-NcVB2 .framer-1urhs3m > :last-child, .framer-NcVB2 .framer-1dct0fd > :last-child, .framer-NcVB2 .framer-8nrrvj > :last-child, .framer-NcVB2 .framer-1a6ckr9 > :last-child { margin-right: 0px; } .framer-NcVB2 .framer-37652b > *, .framer-NcVB2 .framer-14hi0sd > *, .framer-NcVB2 .framer-1v5prko > *, .framer-NcVB2 .framer-kc6wcg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NcVB2 .framer-chqrj > *, .framer-NcVB2 .framer-wf6f8e > *, .framer-NcVB2 .framer-1urhs3m > *, .framer-NcVB2 .framer-1dct0fd > *, .framer-NcVB2 .framer-8nrrvj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NcVB2 .framer-igjf21 > * { margin: 0px; margin-left: calc(26px / 2); margin-right: calc(26px / 2); } .framer-NcVB2 .framer-1heml9n > * { margin: 0px; margin-bottom: calc(59px / 2); margin-top: calc(59px / 2); } .framer-NcVB2 .framer-to5sbi > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-NcVB2 .framer-14z2q9f > *, .framer-NcVB2 .framer-1bykyds > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NcVB2 .framer-1ufiqtx > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-NcVB2 .framer-1a6ckr9 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-NcVB2 { background: rgb(29, 16, 43); } .framer-NcVB2.framer-1f71p05 { width: 810px; } .framer-NcVB2 .framer-db7v1g { max-width: 810px; } .framer-NcVB2 .framer-37652b { flex: none; width: 259px; } .framer-NcVB2 .framer-14hi0sd { align-content: flex-start; align-items: flex-start; } .framer-NcVB2 .framer-1nvu9i2 { aspect-ratio: 0.7789855072463768 / 1; height: var(--framer-aspect-ratio-supported, 325px); width: 253px; } .framer-NcVB2 .framer-to5sbi { flex-direction: column; gap: 55px; width: 100%; } .framer-NcVB2 .framer-14z2q9f { flex: none; width: 100%; } .framer-NcVB2 .framer-1qf5yrd, .framer-NcVB2 .framer-8y6as1 { width: 100%; } .framer-NcVB2 .framer-1bykyds { height: 191px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NcVB2 .framer-to5sbi { gap: 0px; } .framer-NcVB2 .framer-to5sbi > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-NcVB2 .framer-to5sbi > :first-child { margin-top: 0px; } .framer-NcVB2 .framer-to5sbi > :last-child { margin-bottom: 0px; } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-NcVB2 { background: rgb(29, 16, 43); } .framer-NcVB2.framer-1f71p05 { width: 390px; } .framer-NcVB2 .framer-bi2h0s-container { height: auto; } .framer-NcVB2 .framer-db7v1g { flex-direction: column; max-width: 810px; padding: 80px 40px 60px 40px; } .framer-NcVB2 .framer-37652b { align-self: unset; flex: none; height: min-content; width: 259px; } .framer-NcVB2 .framer-14hi0sd { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-NcVB2 .framer-1nvu9i2 { aspect-ratio: 0.7789855072463768 / 1; height: var(--framer-aspect-ratio-supported, 325px); width: 253px; } .framer-NcVB2 .framer-1v5prko, .framer-NcVB2 .framer-14z2q9f, .framer-NcVB2 .framer-1dct0fd { flex: none; width: 100%; } .framer-NcVB2 .framer-igjf21 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-NcVB2 .framer-1heml9n { padding: 20px 40px 60px 40px; } .framer-NcVB2 .framer-to5sbi { flex-direction: column; gap: 55px; width: 100%; } .framer-NcVB2 .framer-1qf5yrd, .framer-NcVB2 .framer-8y6as1 { width: 100%; } .framer-NcVB2 .framer-1bykyds { height: 191px; } .framer-NcVB2 .framer-1urhs3m { flex-direction: column; } .framer-NcVB2 .framer-8nrrvj { max-width: 390px; padding: 20px 40px 20px 40px; } .framer-NcVB2 .framer-iztkdr { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-NcVB2 .framer-1ufiqtx { padding: 16px 40px 60px 40px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NcVB2 .framer-db7v1g, .framer-NcVB2 .framer-igjf21, .framer-NcVB2 .framer-to5sbi, .framer-NcVB2 .framer-1urhs3m { gap: 0px; } .framer-NcVB2 .framer-db7v1g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NcVB2 .framer-db7v1g > :first-child, .framer-NcVB2 .framer-igjf21 > :first-child, .framer-NcVB2 .framer-to5sbi > :first-child, .framer-NcVB2 .framer-1urhs3m > :first-child { margin-top: 0px; } .framer-NcVB2 .framer-db7v1g > :last-child, .framer-NcVB2 .framer-igjf21 > :last-child, .framer-NcVB2 .framer-to5sbi > :last-child, .framer-NcVB2 .framer-1urhs3m > :last-child { margin-bottom: 0px; } .framer-NcVB2 .framer-igjf21 > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-NcVB2 .framer-to5sbi > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-NcVB2 .framer-1urhs3m > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2714\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p7C7HdfCi\":{\"layout\":[\"fixed\",\"auto\"]},\"SNQXQUexc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerJaMsKuu3Y=withCSS(Component,css,\"framer-NcVB2\");export default FramerJaMsKuu3Y;FramerJaMsKuu3Y.displayName=\"Partner templates\";FramerJaMsKuu3Y.defaultProps={height:2714,width:1200};addFonts(FramerJaMsKuu3Y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"}]},...NavbarFonts,...FeatherFonts,...ButtonSalesFonts,...CarouselFonts,...Footer_V2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJaMsKuu3Y\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"2714\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p7C7HdfCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SNQXQUexc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "q5CAII,SAASA,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACF,EAAiBG,GAAO,WAAW,gBAAgB,EAAE,OAAO,CAAE,EAAE,CAAC,CAAC,EAASJ,CAAc,CAK1L,SAASK,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,GAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,EAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,EAAaX,EAAYa,GAAG,EAAEA,CAAC,EAAQX,EAAUM,EAAO,IAAI,EAKxpBM,EAAcH,EAAaC,EAAcC,GAAGA,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOJ,EAAaG,EAAcD,GAAGA,IAAI,OAAO,UAAU,SAAS,EAAQG,EAAY,CAAC,GAAGC,GAAiB,QAAQL,EAAc,cAAAE,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAd,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAgB,EAAY,UAAAd,CAAS,CAAE,CAAC,SAASgB,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,EAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,GAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,GAAS,MAAMb,CAAK,EAAQc,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAQC,GAAWN,CAAK,EAAQO,EAAU/B,EAAK,IAAI,IAAS,CAAC,YAAAgC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,CAAS,EAAEnB,EAAgB,CAAC,KAAAoB,EAAK,SAAAC,EAAS,MAAAC,EAAK,EAAEpB,EAAgB,CAAC,UAAAqB,GAAU,WAAAC,GAAW,aAAAC,GAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE7B,EAAkB,CAAC,cAAA8B,GAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,EAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,EAAoB,CAAC,kBAAAsC,GAAkB,UAAAC,EAAU,YAAAC,EAAY,UAAAC,GAAU,UAAAC,EAAU,WAAAC,EAAW,aAAAC,EAAY,EAAE9C,EAElwBjB,EAAWf,EAAO,MAAS,EAG3BiB,EAAajB,EAAO,MAAS,EAI7B+E,GAAc9E,GAAe,CAAC,EAAQe,GAAoBgE,GAAW,CAACD,GAAc,IAAI9D,EAAa,UAAU,OAAUA,EAAa,QAAQ+D,CAAS,CAAE,EAGzJhG,GAAcD,GAAW,EAEzBkG,GAAMpF,GAAO,GAAMqD,CAAS,EAAQgC,GAAIrF,GAAO,GAAKqD,CAAS,EAAQiC,GAAelF,GAAe+C,EAAU,EAAE,EAAQoC,GAAajF,EAAagF,GAAe9E,GAAG,IAAIA,CAAC,EAAQgF,GAAUpF,GAAe8C,CAAS,EAAQuC,GAAenF,EAAa,CAACgF,GAAeE,EAAS,EAAEzG,EAAa,EAAQ2G,GAAapF,EAAamF,GAAejF,GAAG,IAAIA,CAAC,EAAQmF,GAAUvF,GAAea,EAAK,QAAQ,QAAQ,EAAQ2E,GAAKtF,EAAa,CAACqF,GAAUP,GAAM,YAAYE,GAAeG,GAAeJ,GAAI,YAAYE,GAAaG,EAAa,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,mBAAmBA,EAAO,CAAC,MAAMA,EAAO,CAAC,uBAAuBA,EAAO,CAAC,wBAAwBA,EAAO,CAAC,oBAAoBA,EAAO,CAAC,MAAMA,EAAO,CAAC,KAAO,EAAQC,GAAY3F,EAAO,IAAI,EAEpvB,CAAC4F,EAASC,EAAW,EAAE3G,GAASuD,EAAS,EAAE,CAAC,EAE3CqD,EAAU,CAAC,gBAAgB1C,EAAS,WAAW,CAAC,EAAQ2C,EAAW,CAAC,EAAKlE,IAAQ,YAAcf,GAAMiF,EAAW,OAAO,OAAOD,EAAU,OAAO,SAAaC,EAAW,MAAM,OAAOD,EAAU,MAAM,SAAazC,KAAOyC,EAAU,eAAe,UAAaxC,KAAY,WAAWwC,EAAU,MAAM,eAAevC,IAAY,OAAOwC,EAAW,MAAM,QAAgBzC,KAAY,YAAWwC,EAAU,MAAM,QAAQ,IAAItC,SAAmB5B,SAAWA,EAAI4B,QAAkBuC,EAAW,MAAM,QAAWtC,KAAa,WAAWqC,EAAU,OAAO,eAAepC,IAAa,OAAOqC,EAAW,OAAO,QAAgBtC,KAAa,SAAQqC,EAAU,OAAO,QAAQ,IAAInC,SAAiB/B,SAAWA,EAAI+B,QAAgBoC,EAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,EAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAxE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKkF,GAAe,SAAS,UAAUlF,EAAK,SAASkF,GAAe,eAAe7C,EAAK,GAAGN,cAAsB,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,aAAa3C,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAArD,CAAY,EAAQiE,GAAa,CAAC,CAAC,sBAAsB,EAAE,UAAU,EAAKlE,IAAWkE,GAAa,YAAY,EAAElE,GAAW,IAAMmE,GAAS,CAAC,EAAgG,GAA3FzE,IAAQ,YAAWyE,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC7D,EAAS,CAAC,IAAM8D,EAAUvG,EAAO,CAAC,CAAC,EAAEY,GAAgB+E,GAAY9C,EAAU9B,EAAWC,GAAoBC,EAAauF,GAAY,IAAI,CAAC,GAAG,CAACzF,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA0F,EAAa,gBAAAC,EAAgB,aAAAC,CAAY,EAAE5F,EAAW,QAAc6F,EAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,EAAgB,OAAO,GAAGD,EAAaC,EAAgB,CAACrH,GAAWuH,EAAQ,EAAE3B,GAAMhC,CAAc,EAAE5D,GAAWuH,EAAQD,EAAazB,GAAIjC,CAAc,EAAE,QAAQ4D,EAAE,EAAEA,EAAEN,EAAU,QAAQ,OAAOM,IAAI,CAAC,GAAK,CAAC,QAAAlG,EAAQ,MAAMmG,GAAO,IAAIC,EAAI,EAAER,EAAU,QAAQM,CAAC,EAAKE,GAAKH,GAASE,GAAOF,EAAQF,EAAiB/F,EAAQ,aAAa,cAAc,EAAI,EAAQA,EAAQ,aAAa,cAAc,EAAK,QAAUtB,GAAW,EAAE,EAAE4F,GAAMhC,CAAc,EAAE5D,GAAW,EAAE,EAAE6F,GAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ7F,EAAc,EAO7rE,IAAIsG,EAAY,KAAK,KAAKP,EAAaC,CAAe,EAAM,MAAMM,CAAW,IAC9FA,EAAYzE,EAAS,MAAIyE,EAAYzE,GAAYyE,IAAcpB,GAASC,GAAYmB,CAAW,EAAG,EAAE,CAACpB,CAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,GAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,GAAY,QAAQ,QAAQ,EAAE,IAAIhF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,EAIhZ8B,IAAUrB,EAAU,IAAI,CAACiE,GAAU,IAAItC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE3B,EAAU,IAAI,CAAC+D,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,EAAU,IAAI,CAACoE,GAAU,IAAI1E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAAG,IAAMmG,GAAa,CAACC,EAAM3H,IAAS,CAAC,GAAG,CAACwB,EAAW,QAAQ,OAAO,GAAK,CAAC,QAAA6F,CAAO,EAAE7F,EAAW,QAAa,CAAC,SAAAoG,CAAQ,EAAExB,GAAY,QAAYyB,EAAiBP,EAAEK,IAAQ,EAAE,EAAEC,EAAS,OAAO,EAAE,KAAMC,IAAe,QAAU,CAAC,IAAMC,EAAKF,EAASN,CAAC,EAAQ5B,EAAMnE,EAAKuG,EAAK,WAAWA,EAAK,UAAgBC,GAAOxG,EAAKuG,EAAK,YAAYA,EAAK,aAAmBnC,GAAID,EAAMqC,GAAaC,GAAU,IAAOL,IAAQ,EAAoB5H,GAAS2F,EAAMC,GAAI3F,CAAM,EAAgB,EAAEgI,GAAWH,EAAanC,EAAe4B,IAAIM,EAAS,OAAO,IAAGC,EAAalC,IAAcgC,IAAQ,KAAsB5H,GAAS2F,EAAMC,GAAI3F,CAAM,EAAiBgI,GAAWH,EAAalC,GAAa2B,IAAI,IAAGO,EAAanC,IAAQ4B,GAAGK,EAAO,OAAOE,CAAa,EAAQI,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAAC1G,EAAa,QAAQ0G,EAAS,IAAMC,EAAQ9G,EAAK,CAAC,KAAK6G,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAEhC,GAAY,QAAQ,SAAS,CAAC,GAAGiC,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAASC,GAAM,CAAC,GAAG,CAAC/G,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA4F,CAAY,EAAE5F,EAAW,QAAQ2G,GAAKI,GAAMnB,GAAcf,EAAS,GAAG,CAAE,EAAQmC,GAAUb,GAAO,IAAI,CAAC,GAAG,CAACnG,EAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA2F,EAAgB,aAAAC,CAAY,EAAE5F,EAAW,QAAc6F,EAAQ7B,GAAc,IAAI,EAAQiD,EAAWrB,EAAaf,EAAeqC,EAAYC,GAAM,EAAEtC,EAAS,EAAE,KAAK,MAAMgB,EAAQoB,CAAU,CAAC,EAAEH,GAASI,EAAYf,CAAK,CAAE,EAEthD,GAAG3E,IAAW,EAAG,OAAqB4F,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG1C,EAAS,GAAG/B,IAAkB,CAACD,GAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,EAASiB,IAAI,CAAC,IAAM0B,EAAW9F,GAAU,CAACoE,GAAG,GAAMwB,GAAK,KAAmBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAM3E,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY1D,GAAiB,WAAW8H,EAAW,gBAAgBlE,GAAkB,QAAQC,GAAY,QAAQ,IAAIuD,GAAShB,CAAC,EAAE,cAAc9B,GAAc,WAAWhE,EAAW,MAAM6E,EAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKnD,CAAI,CAAC,CAAC,EAAMyD,KAAU+D,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ/D,SAAgB,OAAqBmE,EAAM,UAAU,CAAC,MAAMzC,GAAe,GAAGI,GAAa,SAAS,CAAe8B,EAAKQ,EAAO,GAAG,CAAC,IAAIhD,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI3C,EAAa,QAAQ,OAAU,SAASuB,GAAS,IAAIb,EAAM,CAACiH,EAAMC,IAAQ,CAAC,IAAIC,EAAkB,OAAOX,EAAK,KAAK,CAAC,MAAMrC,EAAU,GAAGQ,GAAS,aAAa,GAAGuC,EAAM,QAAQtG,IAAW,SAAuBwG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,EAAIF,EAAM,SAAS,MAAME,IAAM,OAAO,OAAOA,EAAI,MAAM,GAAG/C,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAgB2C,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGM,GAAe,QAAQlE,GAAa,QAAQ,OAAO,cAAchE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B0D,GAAkB,SAAS,CAAe2D,EAAKQ,EAAO,OAAO,CAAC,IAAI1D,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,EAAY,OAAQ5D,EAAQ,EAAH,GAAK,QAAQ0D,GAAkB,QAAQ,MAAM,EAAE,QAAQuD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuBI,EAAK,MAAM,CAAC,IAAI,GAAG,MAAM1D,EAAU,OAAOA,EAAU,IAAIG,GAAW,qEAAqE,CAAC,CAAC,CAAC,EAAgBuD,EAAKQ,EAAO,OAAO,CAAC,IAAIzD,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,EAAY,OAAQ5D,EAAQ,EAAH,GAAK,QAAQ0D,GAAkB,QAAQ,MAAM,EAAE,QAAQuD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuBI,EAAK,MAAM,CAAC,IAAI,GAAG,MAAM1D,EAAU,OAAOA,EAAU,IAAII,GAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEwD,GAAK,OAAO,EAAgBF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGc,GAAmB,KAAKnI,EAAK,MAAMiD,GAAU,IAAKjD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKiD,GAAU,QAAQ,aAAaC,EAAW,gBAAgBI,GAAe,GAAGkE,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAgBF,EAAKe,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAA2BxH,GAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAA0ByH,GAAoBzH,GAAS,CAAC,MAAM,CAAC,KAAK0H,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO9G,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAK8G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO9G,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAK8G,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO9G,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAK8G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO9G,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK8G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAO9G,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAK8G,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAO9G,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK8G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO9G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK8G,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO9G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK8G,EAAY,OAAO,MAAM,UAAU,OAAO9G,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAK8G,EAAY,WAAW,MAAM,aAAa,OAAO9G,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAK8G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAO9G,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK8G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK8G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK8G,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK8G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK8G,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK8G,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK8G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK8G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK8G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK8G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO9G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK8G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAO9G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK8G,EAAY,MAAM,MAAM,WAAW,OAAO9G,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK8G,EAAY,MAAM,MAAM,OAAO,OAAO9G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK8G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAO9G,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK8G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO9G,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAK8G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO9G,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK8G,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASZ,GAAI,CAAC,cAAAzD,EAAc,WAAAhE,EAAW,WAAAwH,EAAW,gBAAAe,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAJ,EAAS,YAAAjI,EAAY,IAAAoB,EAAI,QAAAe,EAAQ,KAAA7B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAMmH,EAAQtJ,EAAa4E,EAAc1E,GAAG,CAAC,IAAIyI,EAAIY,EAAK,GAAG,EAAG,GAAAZ,EAAI/H,EAAW,WAAW,MAAM+H,IAAM,SAAcA,EAAI,cAAe,OAAOD,IAAQ,EAAES,EAAgBC,EAAmB,IAAMvB,IAAa0B,EAAK3I,EAAW,WAAW,MAAM2I,IAAO,OAAO,OAAOA,EAAK,cAAcF,EAAYG,EAAU3B,EAAWa,EAAYe,GAAUD,EAAU3B,EAAsF,OAA1D3H,GAAGsJ,IAAYd,EAAMW,EAAM,EAAEnJ,EAAEuJ,GAAUf,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQM,EAAcjI,EAAI,EAAMkI,GAAI,CAAChJ,GAAM+H,EAAM,EAAEgB,EAAclH,EAAYoH,EAAO,CAACjJ,GAAM+H,IAAQW,EAAM,EAAEK,EAAclH,EAAYqH,EAAMlJ,GAAM+H,IAAQW,EAAM,EAAEK,EAAclH,EAAYsH,EAAKnJ,GAAM+H,EAAM,EAAEgB,EAAclH,EAAQ,OAAqBwF,EAAK,SAAS,CAAC,aAAa,kBAAkBU,EAAM,IAAI,KAAK,SAAS,GAAGvG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGsJ,QAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAuB9B,EAAKQ,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGF,EAAS,QAAAgB,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,IAAa,CAAC,OAAqBM,EAAM,UAAU,CAAC,MAAMwB,GAAkB,SAAS,CAAe/B,EAAK,MAAM,CAAC,MAAMgC,GAAY,SAAS,QAAG,CAAC,EAAgBhC,EAAK,IAAI,CAAC,MAAMiC,GAAY,SAAS,oBAAoB,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASnB,IAAa,CAAC,OAAqBf,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgB5vT,CAAC,CAAC,CAAE,CAAc,IAAM+B,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,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECpF7PC,GAAU,UAAU,CAAC,2BAA2B,gCAAgC,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,oHAAoH,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,yyBAAyyB,EAAeC,GAAU,eCDz1CC,GAAU,UAAU,CAAC,2BAA2B,cAAc,oBAAoB,kBAAkB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,oBAAoB,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,49BAA49B,EAAeC,GAAU,eCCk0B,IAAMC,GAAYC,GAASC,EAAM,EAAQC,GAAaF,GAASG,EAAO,EAAQC,GAAiBJ,GAASK,EAAW,EAAQC,GAAcN,GAASO,EAAQ,EAAQC,GAAeR,GAASS,EAAS,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,6CAA6C,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAElB,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKmB,GAAS,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCJ,EAAqB,WAAW,CAAC,CAAC,EAAQK,EAAwBC,GAAK,CAAC,GAAG,CAACJ,EAAiB,MAAM,IAAIK,GAAc,mCAAmC,KAAK,UAAUP,CAAoB,GAAG,EAAE,OAAOE,EAAiBI,CAAG,CAAE,EAAE,IAAIE,EAAyBC,EAA0BC,EAA0BC,EAA0BC,EAA0BC,EAA0BC,EAA0B,GAAK,CAAC,MAAAC,EAAM,UAAAC,GAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAUd,EAAwB,WAAW,EAAE,UAAAe,GAAWZ,EAAyBH,EAAwB,WAAW,KAAK,MAAMG,IAA2B,OAAOA,EAAyB,GAAG,UAAAa,GAAWZ,EAA0BJ,EAAwB,WAAW,KAAK,MAAMI,IAA4B,OAAOA,EAA0B,GAAG,UAAAa,GAAWZ,EAA0BL,EAAwB,WAAW,KAAK,MAAMK,IAA4B,OAAOA,EAA0B,GAAG,UAAAa,GAAWZ,EAA0BN,EAAwB,WAAW,KAAK,MAAMM,IAA4B,OAAOA,EAA0B,GAAG,UAAAa,GAAWZ,EAA0BP,EAAwB,WAAW,KAAK,MAAMO,IAA4B,OAAOA,EAA0B,GAAG,UAAAa,GAAUpB,EAAwB,WAAW,EAAE,UAAAqB,GAAUrB,EAAwB,WAAW,EAAE,UAAAsB,GAAUtB,EAAwB,WAAW,EAAE,UAAAuB,IAAWf,EAA0BR,EAAwB,WAAW,KAAK,MAAMQ,IAA4B,OAAOA,EAA0B,GAAG,UAAAgB,IAAWf,EAA0BT,EAAwB,WAAW,KAAK,MAAMS,IAA4B,OAAOA,EAA0B,GAAG,mBAAAgB,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,GAAGC,EAAS,EAAEhD,GAASI,CAAK,EAAQ6C,EAAU,IAAI,CAAC,IAAMC,EAAUpD,GAAiBiB,EAAiBL,CAAY,EAAE,GAAGwC,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,CAACpC,EAAiBL,CAAY,CAAC,EAAQ0C,GAAmB,IAAI,CAAC,IAAMF,EAAUpD,GAAiBiB,EAAiBL,CAAY,EAAqC,GAAnC,SAAS,MAAMwC,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,GAAGA,EAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,CAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAACnC,EAAiBL,CAAY,CAAC,EAAE,GAAK,CAAC+C,EAAYC,EAAmB,EAAEC,GAA8B5B,EAAQ7C,GAAY,EAAK,EAAQ0E,GAAe,OAAgBC,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAS5E,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASsE,CAAW,EAAtD,GAAyFO,GAAOC,GAAU,EAAQC,GAAa,IAAS/E,GAAU,EAAiBsE,IAAc,YAAtB,GAAmEU,GAAsBC,GAAM,EAAQC,GAAsB,CAAaxC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAwBA,GAAwBA,GAAwBA,GAAwBA,EAAS,EAAE,OAAAyC,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAnF,EAAiB,EAAE,SAAsBoF,EAAMC,GAAY,CAAC,GAAG5C,GAA4CqC,GAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAG3B,GAAU,UAAU4B,GAAGxF,GAAkB,GAAGiF,GAAsB,iBAAiBxC,EAAS,EAAE,IAAIpB,GAA6BoD,GAAK,MAAM,CAAC,GAAGjC,CAAK,EAAE,SAAS,CAAc2C,EAAKM,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBN,EAAKO,GAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBc,EAAK9F,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegG,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,eAAe,SAAS,CAAcF,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,GAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAK5F,GAAQ,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,OAAO,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4F,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,qBAAqB,OAAO,sBAAsB,sEAAsE,EAAE,SAAsBA,EAAKW,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,aAAa,GAAM,SAAsBX,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAGnE,EAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG1C,EAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAE,SAAsBuC,EAAKY,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7F,EAAkB0C,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,iBAAiB,SAAS+B,GAAY,GAAgBQ,EAAK,MAAM,CAAC,UAAU,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,KAAK,qBAAqB,SAAS,CAAcF,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBc,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,KAAKtC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAewC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKY,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,OAAO,GAAG7F,EAAkB0C,CAAS,CAAC,EAAE,UAAU,gBAAgB,CAAC,EAAeuC,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBc,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,2BAA2B,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,2BAA2B,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,sBAAsB,2BAA2B,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,KAAKrC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqC,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAS7C,EAAU,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,wBAAwB,CAAC,EAAE,8BAA8B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAKhD,EAAU,sBAAsB,MAAS,EAAE,CAAC,KAAKA,EAAU,sBAAsB,MAAS,EAAE,CAAC,KAAKA,EAAU,sBAAsB,MAAS,CAAC,EAAE,SAASiD,GAA4Bd,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,GAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBd,EAAK1F,GAAY,CAAC,UAAUwG,EAAc,CAAC,EAAE,UAAU,eAAe,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAed,EAAKa,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK/C,EAAU,sBAAsB,MAAS,EAAE,CAAC,KAAKA,EAAU,sBAAsB,MAAS,EAAE,CAAC,KAAKA,EAAU,sBAAsB,MAAS,CAAC,EAAE,SAASiD,GAA6Bf,EAAKM,EAA0B,CAAC,OAAO,GAAG,SAAsBN,EAAKO,GAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBf,EAAK1F,GAAY,CAAC,UAAUyG,EAAe,CAAC,EAAE,UAAU,UAAU,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACP,GAAa,GAAgBK,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,GAAU,CAAC,UAAU,yCAAyC,SAAsBP,EAAKxF,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,IAAI,YAAY,GAAM,UAAU,GAAG,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,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,CAAcwF,EAAKY,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7F,EAAkBgD,EAAS,EAAM,UAAU,QAAQ,UAAU,QAAS,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,EAAeiC,EAAKY,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7F,EAAkBiD,EAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,EAAegC,EAAKY,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7F,EAAkBkD,EAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,gBAAgB,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAASvC,GAAU,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,wBAAwB,CAAC,EAAE,8BAA8B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAStC,GAAU,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,wBAAwB,CAAC,EAAE,8BAA8B,WAAW,+BAA+B,KAAK,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,8BAA8B,GAAG,+BAA+B,IAAI,8BAA8B,EAAE,6BAA6B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKgB,GAAmB,CAAC,SAAsBhB,EAAK/E,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKwB,GAAS,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,KAAK,KAAK,YAAY,CAAC,CAAC,EAAE,SAAS,CAACwE,EAAWC,EAAeC,KAAwBnB,EAAKoB,GAAU,CAAC,SAASH,EAAW,IAAI,CAAC,CAAC,GAAGzC,EAAY,UAAUD,EAAmB,UAAUF,GAAmB,UAAUD,EAAmB,UAAUE,CAAkB,EAAE+C,MAAKjD,IAA0EA,EAAmB,IAAGE,IAA0EA,EAAmB,IAAGC,IAA0EA,EAAmB,IAAuByB,EAAKG,GAAY,CAAC,GAAG,aAAa3B,IAAc,SAAsBwB,EAAKsB,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAUlD,CAAkB,EAAE,SAAsB4B,EAAKW,GAAK,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUvC,CAAkB,EAAE,UAAU,WAAW,EAAE,OAAO,YAAY,SAAsB8B,EAAM,IAAI,CAAC,UAAU,+BAA+B,SAAS,CAAcF,EAAKY,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,QAAQ,GAAG7F,EAAkBsD,EAAkB,CAAC,EAAE,UAAU,eAAe,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAS,CAAcF,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,mEAAmE,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,oBAAoB,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,MAAM,CAAC,0BAA0B,EAAE,KAAK,gBAAgB,KAAK1B,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0B,EAAKS,EAAS,CAAC,sBAAsB,GAAK,SAAsBT,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,wBAAwB,MAAM,CAAC,sBAAsB,oBAAoB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,KAAK,aAAa,KAAKzB,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,CAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAKM,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBN,EAAKO,GAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWtB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBc,EAAKtF,GAAU,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,EAAesF,EAAK,MAAM,CAAC,UAAUK,GAAGxF,GAAkB,GAAGiF,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyB,GAAI,CAAC,kFAAkF,IAAIhG,GAAS,8DAA8D,gFAAgF,mSAAmS,wGAAwG,uTAAuT,2SAA2S,uRAAuR,4QAA4Q,wGAAwG,uKAAuK,iOAAiO,qKAAqK,0RAA0R,2UAA2U,mRAAmR,mOAAmO,6LAA6L,gSAAgS,kJAAkJ,mTAAmT,4HAA4H,oSAAoS,uRAAuR,sRAAsR,iRAAiR,+QAA+Q,6QAA6Q,+QAA+Q,2SAA2S,6LAA6L,6SAA6S,4RAA4R,gOAAgO,6RAA6R,kMAAkM,wGAAwG,4nHAA4nH,wDAAwDA,GAAS,0iCAA0iC,gCAAgCA,GAAS,s7EAAs7E,GAAegG,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,GAAI,GAAiBA,EAAG,EAS3xwCC,GAAgBC,GAAQzF,GAAUuF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,EAAE,CAAC,OAAO,oBAAoB,OAAO,SAAS,MAAM,SAAS,IAAI,kHAAkH,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxH,GAAY,GAAGG,GAAa,GAAGE,GAAiB,GAAGE,GAAc,GAAGE,GAAe,GAAGmH,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,EAAE,GAAGD,EAAsCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACj6F,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,yBAA2B,OAAO,yBAA2B,QAAQ,sBAAwB,IAAI,uBAAyB,GAAG,qBAAuB,OAAO,sBAAwB,OAAO,oCAAsC,4JAA0L,6BAA+B,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "wfimvLT4c_default", "FeatherFonts", "Icon", "ButtonSalesFonts", "hNYldpddn_default", "CarouselFonts", "Carousel", "Footer_V2Fonts", "LL20tMoVu_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "yt8V2vRyN_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "_getFromCurrentRouteData3", "_getFromCurrentRouteData4", "_getFromCurrentRouteData5", "_getFromCurrentRouteData6", "style", "className", "layoutId", "variant", "QJcV6wD8P", "Ux04wId2F", "IiGM0rSRZ", "mQt7tmpPS", "PqdMCRuFA", "memVcMC3F", "BvggsUcaO", "lx91kwOpB", "C_fCwWPNi", "GOOuHS1PB", "iq944ZOh7", "u0jTD9KT5wYsgV3Wxt", "QJcV6wD8PwYsgV3Wxt", "Ux04wId2FwYsgV3Wxt", "IiGM0rSRZwYsgV3Wxt", "idwYsgV3Wxt", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "x", "Link", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "css", "FramerJaMsKuu3Y", "withCSS", "JaMsKuu3Y_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
