{"version":3,"file":"K5ChSRTAyD-DxF-_1x-3YekSQbqui1LN9FTERoQfphA.DOiTAiD5.mjs","names":["progress","end","start","isSelected","dotStyle","YouTube","serializationHash","variantClassNames","animation","transition1","humanReadableVariantMap","getProps","Component","className","css","VideoComponent","ButtonRainbowGlowButton2","ArrowButton","WaitlistOverlays2","NavigationNavigation","Footer","metadata","className","PropertyOverrides","Image","_Fragment","css"],"sources":["https:/ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js","https:/framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js","https:/framerusercontent.com/modules/5rDhIMtzX7qij7ir2Th5/s81TtZThw5hqxjXqswif/Gj_0RmF6u.js","https:/framerusercontent.com/modules/ew7GUVgD6cKBjWNx3tk1/K3RtE2sXA0Dw6YbSoWIJ/NeFKdL2Jb.js"],"sourcesContent":["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}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(()=>{startTransition(()=>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}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);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,end}=itemSizes.current[i];if(end<current||start>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 — Benjamin\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 visibility=progress(start,end,target);if(visibility>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(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.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\",{decoding:\"async\",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\",{decoding:\"async\",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 _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.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:\"✨\"}),/*#__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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map","// Generated by Framer (48da836)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/1de6WpgIbCrKkRcPfQcW/YouTube.js\";const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"DS3VG0Ylg\",\"cHPmzk2ku\"];const serializationHash=\"framer-irqK9\";const variantClassNames={cHPmzk2ku:\"framer-v-1h9833g\",DS3VG0Ylg:\"framer-v-1c2t7kw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition1={damping:40,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:20};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"DS3VG0Ylg\",\"Variant 2\":\"cHPmzk2ku\"};const getProps=({height,id,tag,type,videoURL,width,...props})=>{return{...props,FcVdzDmku:videoURL??props.FcVdzDmku??\"https://youtu.be/vzcaO1T0x3o\",OzUYr5nBv:tag??props.OzUYr5nBv??\"Showreel\",t3xkr3r7b:type??props.t3xkr3r7b??\"Storyboard, Animation\",variant:humanReadableVariantMap[props.variant]??props.variant??\"DS3VG0Ylg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,FcVdzDmku,OzUYr5nBv,t3xkr3r7b,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DS3VG0Ylg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1c2t7kw\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DS3VG0Ylg\",ref:ref??ref1,style:{...style},...addPropertyOverrides({cHPmzk2ku:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6vb40h-container\",layoutDependency:layoutDependency,layoutId:\"JefWoPNYn-container\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,height:\"100%\",id:\"JefWoPNYn\",isMixedBorderRadius:false,isRed:true,layoutId:\"JefWoPNYn\",play:\"Loop\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:24,topRightRadius:24,url:FcVdzDmku,width:\"100%\",...addPropertyOverrides({cHPmzk2ku:{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,topLeftRadius:16,topRightRadius:16}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wrplvq\",layoutDependency:layoutDependency,layoutId:\"GLEfcRzZf\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rdo6ac\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"l012KHbi3\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",background:\"linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.17000000178813934) 100%)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,boxShadow:\"0px 15px 30px 0px rgba(126, 121, 152, 0.07999999821186066)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34)))\"},children:\"Showreel\"})}),className:\"framer-kvd1jw\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"b1brmaFCZ\",style:{\"--extracted-r6o4lv\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\",\"--framer-paragraph-spacing\":\"0px\"},text:OzUYr5nBv,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cHPmzk2ku:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34)))\"},children:\"Showreel\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255)))\"},children:\"Storyboard, Animation\"})}),className:\"framer-1etmmqw\",fonts:[\"GF;Inter-500\"],layoutDependency:layoutDependency,layoutId:\"wYNkuE7_U\",style:{\"--extracted-r6o4lv\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:t3xkr3r7b,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cHPmzk2ku:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255)))\"},children:\"Storyboard, Animation\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-irqK9.framer-zaxs87, .framer-irqK9 .framer-zaxs87 { display: block; }\",\".framer-irqK9.framer-1c2t7kw { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1000px; }\",\".framer-irqK9 .framer-6vb40h-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 563px); position: relative; width: 100%; }\",\".framer-irqK9 .framer-1wrplvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-irqK9 .framer-rdo6ac { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 32px 12px 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-irqK9 .framer-kvd1jw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-irqK9 .framer-1etmmqw { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-irqK9.framer-1c2t7kw, .framer-irqK9 .framer-rdo6ac { gap: 0px; } .framer-irqK9.framer-1c2t7kw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-irqK9.framer-1c2t7kw > :first-child, .framer-irqK9 .framer-rdo6ac > :first-child { margin-top: 0px; } .framer-irqK9.framer-1c2t7kw > :last-child, .framer-irqK9 .framer-rdo6ac > :last-child { margin-bottom: 0px; } .framer-irqK9 .framer-rdo6ac > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",\".framer-irqK9.framer-v-1h9833g .framer-1wrplvq { flex-direction: column; gap: 10px; justify-content: flex-start; }\",\".framer-irqK9.framer-v-1h9833g .framer-rdo6ac { padding: 8px 16px 8px 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-irqK9.framer-v-1h9833g .framer-1wrplvq { gap: 0px; } .framer-irqK9.framer-v-1h9833g .framer-1wrplvq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-irqK9.framer-v-1h9833g .framer-1wrplvq > :first-child { margin-top: 0px; } .framer-irqK9.framer-v-1h9833g .framer-1wrplvq > :last-child { margin-bottom: 0px; } }\",'.framer-irqK9[data-border=\"true\"]::after, .framer-irqK9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 622\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cHPmzk2ku\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FcVdzDmku\":\"videoURL\",\"OzUYr5nBv\":\"tag\",\"t3xkr3r7b\":\"type\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerGj_0RmF6u=withCSS(Component,css,\"framer-irqK9\");export default FramerGj_0RmF6u;FramerGj_0RmF6u.displayName=\"Video Component\";FramerGj_0RmF6u.defaultProps={height:622,width:1e3};addPropertyControls(FramerGj_0RmF6u,{variant:{options:[\"DS3VG0Ylg\",\"cHPmzk2ku\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},FcVdzDmku:{defaultValue:\"https://youtu.be/vzcaO1T0x3o\",title:\"Video URL\",type:ControlType.String},OzUYr5nBv:{defaultValue:\"Showreel\",displayTextArea:false,title:\"Tag\",type:ControlType.String},t3xkr3r7b:{defaultValue:\"Storyboard, Animation\",displayTextArea:false,title:\"Type\",type:ControlType.String}});addFonts(FramerGj_0RmF6u,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...YouTubeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerGj_0RmF6u\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"622\",\"framerVariables\":\"{\\\"FcVdzDmku\\\":\\\"videoURL\\\",\\\"OzUYr5nBv\\\":\\\"tag\\\",\\\"t3xkr3r7b\\\":\\\"type\\\"}\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cHPmzk2ku\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Gj_0RmF6u.map","// Generated by Framer (2ac8f15)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,useRouter,withCSS,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import VideoComponent from\"#framer/local/canvasComponent/Gj_0RmF6u/Gj_0RmF6u.js\";import WaitlistOverlays2 from\"#framer/local/canvasComponent/gVWdmPP0y/gVWdmPP0y.js\";import NavigationNavigation from\"#framer/local/canvasComponent/J7oF7xbd7/J7oF7xbd7.js\";import ArrowButton from\"#framer/local/canvasComponent/N5WXkM7sz/N5WXkM7sz.js\";import ButtonRainbowGlowButton2 from\"#framer/local/canvasComponent/XzLkHhXZI/XzLkHhXZI.js\";import Footer from\"#framer/local/canvasComponent/ZJaShk1y9/ZJaShk1y9.js\";import*as sharedStyle from\"#framer/local/css/HdnKMobcE/HdnKMobcE.js\";import metadataProvider from\"#framer/local/webPageMetadata/NeFKdL2Jb/NeFKdL2Jb.js\";const VideoComponentFonts=getFonts(VideoComponent);const CarouselFonts=getFonts(Carousel);const SlideshowFonts=getFonts(Slideshow);const ButtonRainbowGlowButton2Fonts=getFonts(ButtonRainbowGlowButton2);const ArrowButtonFonts=getFonts(ArrowButton);const WaitlistOverlays2Fonts=getFonts(WaitlistOverlays2);const NavigationNavigationFonts=getFonts(NavigationNavigation);const NavigationNavigationWithVariantAppearEffect=withVariantAppearEffect(NavigationNavigation);const FooterFonts=getFonts(Footer);const breakpoints={ezjdx9bhr:\"(max-width: 809px)\",GfwwnuMbB:\"(min-width: 1200px) and (max-width: 1439px)\",tTe_M3lIo:\"(min-width: 1440px)\",UaNlb3aTS:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-O9Wmw\";const variantClassNames={ezjdx9bhr:\"framer-v-6u5opd\",GfwwnuMbB:\"framer-v-qj7qne\",tTe_M3lIo:\"framer-v-1myv0jm\",UaNlb3aTS:\"framer-v-xa1iwu\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:100,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:.5,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"tTe_M3lIo\",Desktop:\"GfwwnuMbB\",Phone:\"ezjdx9bhr\",Tablet:\"UaNlb3aTS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"GfwwnuMbB\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const YUXyL_qPj3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const guL1SEdba1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ezjdx9bhr\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"UaNlb3aTS\",\"ezjdx9bhr\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"UaNlb3aTS\")return true;return false;};const router=useRouter();const elementId=useRouteElementId(\"U7rJRSWI9\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"GfwwnuMbB\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-qj7qne\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1011,pixelWidth:2800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png\",srcSet:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=512 512w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png 2800w\"}},UaNlb3aTS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1011,pixelWidth:2800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png\",srcSet:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=512 512w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png 2800w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+120+0),pixelHeight:1011,pixelWidth:2800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png\",srcSet:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=512 512w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png 2800w\"},className:\"framer-4nvo2a\",\"data-framer-name\":\"Picture\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mrrj1i\",\"data-styles-preset\":\"HdnKMobcE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\"},children:\"Animation\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mrrj1i\",\"data-styles-preset\":\"HdnKMobcE\",style:{\"--framer-text-color\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\"},children:\"Animation\"})}),className:\"framer-1bjv288\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+120+737.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14kgtxd-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"B4c_xnaEu\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/vzcaO1T0x3o\",height:\"100%\",id:\"B4c_xnaEu\",layoutId:\"B4c_xnaEu\",OzUYr5nBv:\"Showreel\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+120+1383.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5k5ko-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"EFVJImwjg\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/gZNhYp4o9ro\",height:\"100%\",id:\"EFVJImwjg\",layoutId:\"EFVJImwjg\",OzUYr5nBv:\"Typography - Emerson MEA\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+120+91.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ujksp-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"TrxVQG9IQ\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/BsgTqT3mKy0\",height:\"100%\",id:\"TrxVQG9IQ\",layoutId:\"TrxVQG9IQ\",OzUYr5nBv:\"Brand Intro - Space Funding\",style:{width:\"100%\"},t3xkr3r7b:\"Moodboard, Storyboard,\\xa0Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c8e383-container hidden-xa1iwu hidden-6u5opd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mpr5Lm0jh\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"mpr5Lm0jh\",layoutId:\"mpr5Lm0jh\",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:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7taicl-container\",inComponentSlot:true,nodeId:\"RUSmDnAiF\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/BsgTqT3mKy0\",height:\"100%\",id:\"RUSmDnAiF\",layoutId:\"RUSmDnAiF\",OzUYr5nBv:\"Brand Intro - Space Funding\",style:{width:\"100%\"},t3xkr3r7b:\"Animation, Sound Design\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m2m98l-container\",inComponentSlot:true,nodeId:\"E5lHp6xqc\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/embed/mG0SODSwyNc\",height:\"100%\",id:\"E5lHp6xqc\",layoutId:\"E5lHp6xqc\",OzUYr5nBv:\"Logo Reveal - Cine Alchemy\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Animation, Sound Design\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ovbzo4-container\",inComponentSlot:true,nodeId:\"dnaPLKyLp\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/vzcaO1T0x3o\",height:\"100%\",id:\"dnaPLKyLp\",layoutId:\"dnaPLKyLp\",OzUYr5nBv:\"Showreel\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Animation\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wc5zab-container\",inComponentSlot:true,nodeId:\"i21GeMANV\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/gZNhYp4o9ro\",height:\"100%\",id:\"i21GeMANV\",layoutId:\"i21GeMANV\",OzUYr5nBv:\"Typography - Emerson MEA\",style:{width:\"100%\"},t3xkr3r7b:\"Animation, Sound Design\",variant:\"DS3VG0Ylg\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-185qeur-container hidden-qj7qne hidden-6u5opd hidden-1myv0jm\",isModuleExternal:true,nodeId:\"Mnn1fJbfe\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UaNlb3aTS:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Mnn1fJbfe\",intervalControl:1.5,itemAmount:1,layoutId:\"Mnn1fJbfe\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-c5pnuj-container\",inComponentSlot:true,nodeId:\"XRHMBa8c2\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/BsgTqT3mKy0\",height:\"100%\",id:\"XRHMBa8c2\",layoutId:\"XRHMBa8c2\",OzUYr5nBv:\"Brand Intro - Space Funding\",style:{width:\"100%\"},t3xkr3r7b:\"Moodboard, Storyboard,\\xa0Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11rp6n9-container\",inComponentSlot:true,nodeId:\"t6NUWdaE5\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/embed/mG0SODSwyNc\",height:\"100%\",id:\"t6NUWdaE5\",layoutId:\"t6NUWdaE5\",OzUYr5nBv:\"Logo Reveal - Cine Alchemy\",style:{width:\"100%\"},t3xkr3r7b:\"Moodboard, Storyboard, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18jgkgj-container\",inComponentSlot:true,nodeId:\"nBIF2DG2_\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/vzcaO1T0x3o\",height:\"100%\",id:\"nBIF2DG2_\",layoutId:\"nBIF2DG2_\",OzUYr5nBv:\"Showreel\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x0eipy-container\",inComponentSlot:true,nodeId:\"yNu6M_yq0\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/gZNhYp4o9ro\",height:\"100%\",id:\"yNu6M_yq0\",layoutId:\"yNu6M_yq0\",OzUYr5nBv:\"Typography - Emerson MEA\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+0+120+2029.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pe23ip-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"S3w8NrCEe\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/embed/mG0SODSwyNc\",height:\"100%\",id:\"S3w8NrCEe\",layoutId:\"S3w8NrCEe\",OzUYr5nBv:\"Logo Reveal - Cine Alchemy\",style:{width:\"100%\"},t3xkr3r7b:\"Moodboard, Storyboard, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ljrrnu\",\"data-framer-name\":\"Picture\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mrrj1i\",\"data-styles-preset\":\"HdnKMobcE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\"},children:\"Youtube & Short-Form\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mrrj1i\",\"data-styles-preset\":\"HdnKMobcE\",style:{\"--framer-text-color\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\"},children:\"Youtube & Short-Form\"})}),className:\"framer-1mn52gy\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2791.2+60+91.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7qxb5i-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"xi1AyICaf\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=bixKCgXkO6Y\",height:\"100%\",id:\"xi1AyICaf\",layoutId:\"xi1AyICaf\",OzUYr5nBv:\"Entrepreneurial Journey\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit, Thumbnail\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2791.2+60+737.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13sbh3a-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"lnZP1Wxuf\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/uVxrowJbbuI\",height:\"100%\",id:\"lnZP1Wxuf\",layoutId:\"lnZP1Wxuf\",OzUYr5nBv:\"Infotainment - Houstan Kold\",style:{width:\"100%\"},t3xkr3r7b:\"Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2791.2+60+1383.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iqo6ez-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"DKZeK0eYO\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=h7MJVdq370w\",height:\"100%\",id:\"DKZeK0eYO\",layoutId:\"DKZeK0eYO\",OzUYr5nBv:\"Interview / Podcast - Moosa Bhai\",style:{width:\"100%\"},t3xkr3r7b:\"Shoot, Edit, Thumbnail\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+2791.2+60+2029.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ux4x0m-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"NZbRKDbZ1\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/aS0-P-L4WD4\",height:\"100%\",id:\"NZbRKDbZ1\",layoutId:\"NZbRKDbZ1\",OzUYr5nBv:\"AI Voiceover - Wall Street Whispers\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Voiceover, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tufam5-container hidden-xa1iwu hidden-6u5opd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"qP_t2tXO3\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"qP_t2tXO3\",layoutId:\"qP_t2tXO3\",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:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13nhx40-container\",inComponentSlot:true,nodeId:\"qznCI03PY\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=bixKCgXkO6Y\",height:\"100%\",id:\"qznCI03PY\",layoutId:\"qznCI03PY\",OzUYr5nBv:\"Entrepreneurial Journey\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit, Thumbnail\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hbi7ug-container\",inComponentSlot:true,nodeId:\"j2Bd5tY7W\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/uVxrowJbbuI\",height:\"100%\",id:\"j2Bd5tY7W\",layoutId:\"j2Bd5tY7W\",OzUYr5nBv:\"Infotainment - Houstan Kold\",style:{width:\"100%\"},t3xkr3r7b:\"Edit, Sound Design\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2776p8-container\",inComponentSlot:true,nodeId:\"W6zi8FQsw\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=h7MJVdq370w\",height:\"100%\",id:\"W6zi8FQsw\",layoutId:\"W6zi8FQsw\",OzUYr5nBv:\"Interview / Podcast - Moosa Bhai\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-qnziy7-container\",inComponentSlot:true,nodeId:\"PV6imIG5c\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/aS0-P-L4WD4\",height:\"100%\",id:\"PV6imIG5c\",layoutId:\"PV6imIG5c\",OzUYr5nBv:\"AI Voiceover - Wall Street Whispers\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Voiceover, Animation\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2i07vk-container\",inComponentSlot:true,nodeId:\"VuP01EzrL\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=3Yi50FkC8yg\",height:\"100%\",id:\"VuP01EzrL\",layoutId:\"VuP01EzrL\",OzUYr5nBv:\"Product Explainer - AMD\",style:{width:\"100%\"},t3xkr3r7b:\"Shoot, Edit, Thumbnail\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19j4lbv-container\",inComponentSlot:true,nodeId:\"YUjLEln5C\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=W2Cixv9tTB0\",height:\"100%\",id:\"YUjLEln5C\",layoutId:\"YUjLEln5C\",OzUYr5nBv:\"Vlog - Miss Momo\",style:{width:\"100%\"},t3xkr3r7b:\"Shoot, Edit, Thumbnail\",variant:\"DS3VG0Ylg\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b9qe7i-container hidden-qj7qne hidden-6u5opd hidden-1myv0jm\",isModuleExternal:true,nodeId:\"pWJtudTlU\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UaNlb3aTS:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"pWJtudTlU\",intervalControl:1.5,itemAmount:1,layoutId:\"pWJtudTlU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jbbhlm-container\",inComponentSlot:true,nodeId:\"arxzgUDRB\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=bixKCgXkO6Y\",height:\"100%\",id:\"arxzgUDRB\",layoutId:\"arxzgUDRB\",OzUYr5nBv:\"Entrepreneurial Journey\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit, Thumbnail\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nfki8x-container\",inComponentSlot:true,nodeId:\"df_m9VmJe\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/uVxrowJbbuI\",height:\"100%\",id:\"df_m9VmJe\",layoutId:\"df_m9VmJe\",OzUYr5nBv:\"Infotainment - Houstan Kold\",style:{width:\"100%\"},t3xkr3r7b:\"Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-85o1g4-container\",inComponentSlot:true,nodeId:\"eHNJAg8fr\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/aS0-P-L4WD4\",height:\"100%\",id:\"eHNJAg8fr\",layoutId:\"eHNJAg8fr\",OzUYr5nBv:\"AI Voiceover - Wall Street Whispers\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Voiceover, Animation\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-b13y2t-container\",inComponentSlot:true,nodeId:\"O9mtQFYtB\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=3Yi50FkC8yg\",height:\"100%\",id:\"O9mtQFYtB\",layoutId:\"O9mtQFYtB\",OzUYr5nBv:\"Product Explainer - AMD\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit, Thumbnail\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nmubuh-container\",inComponentSlot:true,nodeId:\"EBi39_R9k\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/watch?v=W2Cixv9tTB0\",height:\"100%\",id:\"EBi39_R9k\",layoutId:\"EBi39_R9k\",OzUYr5nBv:\"Vlog - Miss Momo\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit, Thumbnail\",variant:\"cHPmzk2ku\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5502.4),pixelHeight:1011,pixelWidth:2800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png\",srcSet:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=512 512w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png 2800w\"}},UaNlb3aTS:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1686.4),pixelHeight:1011,pixelWidth:2800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png\",srcSet:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=512 512w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png 2800w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+120+990.4),pixelHeight:1011,pixelWidth:2800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png\",srcSet:\"https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=512 512w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/b4SA5mArJXifo7CSnepYTd18o.png 2800w\"},className:\"framer-67no5e\",\"data-framer-name\":\"Picture\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mrrj1i\",\"data-styles-preset\":\"HdnKMobcE\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\"},children:\"Promotional Videos\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1mrrj1i\",\"data-styles-preset\":\"HdnKMobcE\",style:{\"--framer-text-color\":\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\"},children:\"Promotional Videos\"})}),className:\"framer-9q1wfl\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5502.4+60+737.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jgiyjm-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"ECydVugjd\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/g01RIMrbl2k\",height:\"100%\",id:\"ECydVugjd\",layoutId:\"ECydVugjd\",OzUYr5nBv:\"Product Commercial - Vanalaya\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5502.4+60+1383.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b9nhd0-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"Bf0zudx2L\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/embed/yqZRNQZs71A\",height:\"100%\",id:\"Bf0zudx2L\",layoutId:\"Bf0zudx2L\",OzUYr5nBv:\"Product Commercial - Sleepy Owl\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fdnob5-container hidden-xa1iwu hidden-6u5opd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xUoqoYKoR\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:32,height:\"100%\",id:\"xUoqoYKoR\",layoutId:\"xUoqoYKoR\",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:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fr52p7-container\",inComponentSlot:true,nodeId:\"gV_kp2c8e\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/g01RIMrbl2k\",height:\"100%\",id:\"gV_kp2c8e\",layoutId:\"gV_kp2c8e\",OzUYr5nBv:\"Product Commercial - Vanalaya\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Shoot, Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7jdrs0-container\",inComponentSlot:true,nodeId:\"n0a2ST4tY\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/embed/yqZRNQZs71A\",height:\"100%\",id:\"n0a2ST4tY\",layoutId:\"n0a2ST4tY\",OzUYr5nBv:\"Product Commercial - Sleepy Owl\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Shoot, Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-voptn0-container\",inComponentSlot:true,nodeId:\"Jhi3puoyz\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/ebQlRutPzD4\",height:\"100%\",id:\"Jhi3puoyz\",layoutId:\"Jhi3puoyz\",OzUYr5nBv:\"Event Promotion - UAE Ministry of Education\",style:{width:\"100%\"},t3xkr3r7b:\"Shoot, Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jcyd2s-container\",inComponentSlot:true,nodeId:\"JIdWEK3yT\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/cOiTet4G8YE\",height:\"100%\",id:\"JIdWEK3yT\",layoutId:\"JIdWEK3yT\",OzUYr5nBv:\"Live Action Ad - Flipkart x theMVP\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e3x1ms-container\",inComponentSlot:true,nodeId:\"DNggFUA18\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/6yS2E15Tau4\",height:\"100%\",id:\"DNggFUA18\",layoutId:\"DNggFUA18\",OzUYr5nBv:\"Product Explainer (Hindi) - Chipkol\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16tng7-container\",inComponentSlot:true,nodeId:\"l9aphAEOy\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/94slLT1H33Q\",height:\"100%\",id:\"l9aphAEOy\",layoutId:\"l9aphAEOy\",OzUYr5nBv:\"Licious - Social Media Organic\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot,\\xa0Edit\",variant:\"DS3VG0Ylg\",width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ykbk90-container hidden-qj7qne hidden-6u5opd hidden-1myv0jm\",isModuleExternal:true,nodeId:\"Ly3nGaG4r\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UaNlb3aTS:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-48a3ac78-a873-4f95-868a-8f18549832cb, rgb(88, 86, 255))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"Ly3nGaG4r\",intervalControl:1.5,itemAmount:1,layoutId:\"Ly3nGaG4r\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-g0ep0t-container\",inComponentSlot:true,nodeId:\"Gubwe426J\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/g01RIMrbl2k\",height:\"100%\",id:\"Gubwe426J\",layoutId:\"Gubwe426J\",OzUYr5nBv:\"Product Commercial - Vanalaya\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t344ig-container\",inComponentSlot:true,nodeId:\"hxz3jgxdz\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://www.youtube.com/embed/yqZRNQZs71A\",height:\"100%\",id:\"hxz3jgxdz\",layoutId:\"hxz3jgxdz\",OzUYr5nBv:\"Product Commercial - Sleepy Owl\",style:{width:\"100%\"},t3xkr3r7b:\"Storyboard, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vmztcw-container\",inComponentSlot:true,nodeId:\"A9VtNVRW_\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/ebQlRutPzD4\",height:\"100%\",id:\"A9VtNVRW_\",layoutId:\"A9VtNVRW_\",OzUYr5nBv:\"Event Promotion - UAE Ministry of Education\",style:{width:\"100%\"},t3xkr3r7b:\"Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-iw7m6s-container\",inComponentSlot:true,nodeId:\"MK6_m52un\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/cOiTet4G8YE\",height:\"100%\",id:\"MK6_m52un\",layoutId:\"MK6_m52un\",OzUYr5nBv:\"Live Action Ad - Flipkart x theMVP\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-cfi2vv-container\",inComponentSlot:true,nodeId:\"BLtavaxrT\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/6yS2E15Tau4\",height:\"100%\",id:\"BLtavaxrT\",layoutId:\"BLtavaxrT\",OzUYr5nBv:\"Product Explainer (Hindi) - Chipkol\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:622,width:\"1000px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sa7wzd-container\",inComponentSlot:true,nodeId:\"Ataks77zB\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/94slLT1H33Q\",height:\"100%\",id:\"Ataks77zB\",layoutId:\"Ataks77zB\",OzUYr5nBv:\"Licious - Social Media Organic\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot,\\xa0Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5502.4+60+2029.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6fptnw-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"izgFZnmie\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/cOiTet4G8YE\",height:\"100%\",id:\"izgFZnmie\",layoutId:\"izgFZnmie\",OzUYr5nBv:\"Live Action Ad - Flipkart x theMVP\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5502.4+60+91.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xnjdvt-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"fHE4j6ylx\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtube.com/embed/94slLT1H33Q\",height:\"100%\",id:\"fHE4j6ylx\",layoutId:\"fHE4j6ylx\",OzUYr5nBv:\"Licious - Social Media Organic\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot,\\xa0Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5502.4+60+3321.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y137zi-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"XMl5xSpNm\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/6yS2E15Tau4\",height:\"100%\",id:\"XMl5xSpNm\",layoutId:\"XMl5xSpNm\",OzUYr5nBv:\"Product Explainer (Hindi) - Chipkol\",style:{width:\"100%\"},t3xkr3r7b:\"Script, Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{height:622,width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5502.4+60+2675.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w8cae-container hidden-qj7qne hidden-xa1iwu hidden-1myv0jm\",nodeId:\"N0K7bBSdH\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(VideoComponent,{FcVdzDmku:\"https://youtu.be/ebQlRutPzD4\",height:\"100%\",id:\"N0K7bBSdH\",layoutId:\"N0K7bBSdH\",OzUYr5nBv:\"Event Promotion - UAE Ministry of Education\",style:{width:\"100%\"},t3xkr3r7b:\"Shoot, Edit\",variant:\"cHPmzk2ku\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14azq95\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"S4gKaRrcV\"},implicitPathVariables:undefined},{href:{webPageId:\"S4gKaRrcV\"},implicitPathVariables:undefined},{href:{webPageId:\"S4gKaRrcV\"},implicitPathVariables:undefined},{href:{webPageId:\"S4gKaRrcV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{y:(componentViewport?.y||0)+0+5502.4+60+3967.2+0},UaNlb3aTS:{y:(componentViewport?.y||0)+0+1686.4+0+741.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,y:(componentViewport?.y||0)+120+990.4+120+363.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b1bx94-container\",nodeId:\"PZ8xMh9q5\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{Xbqjue0s2:resolvedLinks[2]},tTe_M3lIo:{Xbqjue0s2:resolvedLinks[3]},UaNlb3aTS:{Xbqjue0s2:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonRainbowGlowButton2,{height:\"100%\",id:\"PZ8xMh9q5\",layoutId:\"PZ8xMh9q5\",TXkSFboq6:\"Go to Homepage\",variant:\"biolbk9_u\",width:\"100%\",Xbqjue0s2:resolvedLinks[0]})})})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{y:(componentViewport?.y||0)+0+5502.4+60+3967.2+0},UaNlb3aTS:{y:(componentViewport?.y||0)+0+1686.4+0+741.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:\"174px\",y:(componentViewport?.y||0)+120+990.4+120+363.2+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-a36b70-container\",id:elementId,nodeId:\"U7rJRSWI9\",ref:ref1,scopeId:\"NeFKdL2Jb\",children:[/*#__PURE__*/_jsx(ArrowButton,{height:\"100%\",id:\"U7rJRSWI9\",layoutId:\"U7rJRSWI9\",MqZmRGxQ5:\"Talk to Expert\",style:{height:\"100%\",width:\"100%\"},variant:\"dbpTAqBkg\",width:\"100%\",YUXyL_qPj:YUXyL_qPj3bnx0g({overlay})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-giouxq\"),\"data-framer-portal-id\":elementId,exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"aRV__mAn2\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-jl9r1n-container\"),\"data-framer-portal-id\":elementId,inComponentSlot:true,nodeId:\"j2hZmw4an\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(WaitlistOverlays2,{guL1SEdba:guL1SEdba1wnntms({overlay}),height:\"100%\",id:\"j2hZmw4an\",layoutId:\"j2hZmw4an\",style:{width:\"100%\"},width:\"100%\"})})})]}),getContainer())})})]})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{width:\"100vw\",y:0},UaNlb3aTS:{width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:108,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{layoutScroll:true},UaNlb3aTS:{layoutScroll:true}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-cut1nf-container\",nodeId:\"KA3bKYNAX\",rendersWithMotion:true,scopeId:\"NeFKdL2Jb\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{variant:\"iaPzA3i4o\"},UaNlb3aTS:{variant:\"iaPzA3i4o\"}},children:/*#__PURE__*/_jsx(NavigationNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"KA3bKYNAX\",layoutId:\"KA3bKYNAX\",m5Sypr54R:\"/work/#talk-to-expert\",style:{width:\"100%\"},variant:\"tnLGz44Mz\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{y:(componentViewport?.y||0)+0+9641.6},UaNlb3aTS:{y:(componentViewport?.y||0)+0+2559.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:321,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+120+1645.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mgqkdx-container\",nodeId:\"QoIOQJod0\",scopeId:\"NeFKdL2Jb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ezjdx9bhr:{variant:\"ODFSPxaf5\"},UaNlb3aTS:{variant:\"ODFSPxaf5\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"QoIOQJod0\",layoutId:\"QoIOQJod0\",style:{width:\"100%\"},variant:\"VkId0Vpfd\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O9Wmw.framer-4d9crb, .framer-O9Wmw .framer-4d9crb { display: block; }\",\".framer-O9Wmw.framer-qj7qne { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 0px 0px 0px; position: relative; width: 1200px; }\",\".framer-O9Wmw .framer-4nvo2a, .framer-O9Wmw .framer-67no5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 64px 120px 64px; position: relative; width: 100%; }\",\".framer-O9Wmw .framer-1bjv288, .framer-O9Wmw .framer-1mn52gy, .framer-O9Wmw .framer-9q1wfl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1350px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O9Wmw .framer-14kgtxd-container, .framer-O9Wmw .framer-1i5k5ko-container, .framer-O9Wmw .framer-9ujksp-container, .framer-O9Wmw .framer-pe23ip-container, .framer-O9Wmw .framer-7qxb5i-container, .framer-O9Wmw .framer-13sbh3a-container, .framer-O9Wmw .framer-iqo6ez-container, .framer-O9Wmw .framer-ux4x0m-container, .framer-O9Wmw .framer-1jgiyjm-container, .framer-O9Wmw .framer-1b9nhd0-container, .framer-O9Wmw .framer-6fptnw-container, .framer-O9Wmw .framer-1xnjdvt-container, .framer-O9Wmw .framer-y137zi-container, .framer-O9Wmw .framer-1w8cae-container, .framer-O9Wmw .framer-mgqkdx-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-O9Wmw .framer-1c8e383-container, .framer-O9Wmw .framer-tufam5-container, .framer-O9Wmw .framer-fdnob5-container { flex: none; height: auto; max-width: 1350px; position: relative; width: 100%; }\",\".framer-O9Wmw .framer-7taicl-container, .framer-O9Wmw .framer-1m2m98l-container, .framer-O9Wmw .framer-1ovbzo4-container, .framer-O9Wmw .framer-1wc5zab-container, .framer-O9Wmw .framer-c5pnuj-container, .framer-O9Wmw .framer-11rp6n9-container, .framer-O9Wmw .framer-18jgkgj-container, .framer-O9Wmw .framer-1x0eipy-container, .framer-O9Wmw .framer-13nhx40-container, .framer-O9Wmw .framer-1hbi7ug-container, .framer-O9Wmw .framer-2776p8-container, .framer-O9Wmw .framer-qnziy7-container, .framer-O9Wmw .framer-2i07vk-container, .framer-O9Wmw .framer-19j4lbv-container, .framer-O9Wmw .framer-1jbbhlm-container, .framer-O9Wmw .framer-nfki8x-container, .framer-O9Wmw .framer-85o1g4-container, .framer-O9Wmw .framer-b13y2t-container, .framer-O9Wmw .framer-1nmubuh-container, .framer-O9Wmw .framer-1fr52p7-container, .framer-O9Wmw .framer-7jdrs0-container, .framer-O9Wmw .framer-voptn0-container, .framer-O9Wmw .framer-1jcyd2s-container, .framer-O9Wmw .framer-1e3x1ms-container, .framer-O9Wmw .framer-16tng7-container, .framer-O9Wmw .framer-g0ep0t-container, .framer-O9Wmw .framer-1t344ig-container, .framer-O9Wmw .framer-1vmztcw-container, .framer-O9Wmw .framer-iw7m6s-container, .framer-O9Wmw .framer-cfi2vv-container, .framer-O9Wmw .framer-sa7wzd-container { height: auto; position: relative; width: 1000px; }\",\".framer-O9Wmw .framer-185qeur-container, .framer-O9Wmw .framer-1b9qe7i-container, .framer-O9Wmw .framer-1ykbk90-container { aspect-ratio: 1.5976154992548435 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 125px); position: relative; width: 100%; }\",\".framer-O9Wmw .framer-1ljrrnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-O9Wmw .framer-14azq95 { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-O9Wmw .framer-b1bx94-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-O9Wmw .framer-a36b70-container { flex: none; height: 52px; position: relative; width: 174px; }\",\".framer-O9Wmw.framer-giouxq { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-O9Wmw.framer-jl9r1n-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 10; }\",\".framer-O9Wmw .framer-cut1nf-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",...sharedStyle.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-O9Wmw.framer-qj7qne { padding: 0px; width: 810px; } .framer-O9Wmw .framer-4nvo2a { padding: 160px 20px 80px 20px; } .framer-O9Wmw .framer-185qeur-container, .framer-O9Wmw .framer-1b9qe7i-container, .framer-O9Wmw .framer-1ykbk90-container { aspect-ratio: 1.3321799307958477 / 1; height: var(--framer-aspect-ratio-supported, 150px); } .framer-O9Wmw .framer-1ljrrnu { padding: 60px 20px 0px 20px; } .framer-O9Wmw .framer-67no5e { padding: 0px 20px 80px 20px; } .framer-O9Wmw .framer-cut1nf-container { position: fixed; }}\",\"@media (max-width: 809px) { .framer-O9Wmw.framer-qj7qne { padding: 0px; width: 390px; } .framer-O9Wmw .framer-4nvo2a { gap: 24px; padding: 120px 20px 20px 20px; } .framer-O9Wmw .framer-1bjv288, .framer-O9Wmw .framer-9q1wfl { order: 0; } .framer-O9Wmw .framer-14kgtxd-container, .framer-O9Wmw .framer-1jgiyjm-container { order: 2; } .framer-O9Wmw .framer-1i5k5ko-container, .framer-O9Wmw .framer-1b9nhd0-container { order: 3; } .framer-O9Wmw .framer-9ujksp-container, .framer-O9Wmw .framer-1xnjdvt-container { order: 1; } .framer-O9Wmw .framer-pe23ip-container, .framer-O9Wmw .framer-6fptnw-container { order: 6; } .framer-O9Wmw .framer-1ljrrnu { gap: 24px; padding: 60px 20px 0px 20px; } .framer-O9Wmw .framer-67no5e { gap: 24px; padding: 60px 20px 60px 20px; } .framer-O9Wmw .framer-y137zi-container { order: 8; } .framer-O9Wmw .framer-1w8cae-container { order: 7; } .framer-O9Wmw .framer-14azq95 { order: 9; } .framer-O9Wmw .framer-cut1nf-container { position: fixed; }}\",\"@media (min-width: 1440px) { .framer-O9Wmw.framer-qj7qne { width: 1440px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3341\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UaNlb3aTS\":{\"layout\":[\"fixed\",\"auto\"]},\"ezjdx9bhr\":{\"layout\":[\"fixed\",\"auto\"]},\"tTe_M3lIo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"U7rJRSWI9\":{\"pattern\":\":U7rJRSWI9\",\"name\":\"talk-to-expert\"}}\n * @framerResponsiveScreen\n */const FramerNeFKdL2Jb=withCSS(Component,css,\"framer-O9Wmw\");export default FramerNeFKdL2Jb;FramerNeFKdL2Jb.displayName=\"Page\";FramerNeFKdL2Jb.defaultProps={height:3341,width:1200};addFonts(FramerNeFKdL2Jb,[{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\"}]},...VideoComponentFonts,...CarouselFonts,...SlideshowFonts,...ButtonRainbowGlowButton2Fonts,...ArrowButtonFonts,...WaitlistOverlays2Fonts,...NavigationNavigationFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNeFKdL2Jb\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"U7rJRSWI9\\\":{\\\"pattern\\\":\\\":U7rJRSWI9\\\",\\\"name\\\":\\\"talk-to-expert\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"3341\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UaNlb3aTS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ezjdx9bhr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tTe_M3lIo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"o3DAAssB,AAArkB,GAAM,CAAC,EAAE,EAAE,IAAI,KAAK,IAAI,KAAK,IAAI,EAAE,EAAE,CAAC,EAAE,CAA6hB,GAAS,CAAC,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,GAAG,EAAE,IAAI,EAAE,KCIxuB,SAAS,GAAc,CAAC,EAAM,EAAM,CAAC,CAAC,OAAO,GAAO,IAAI,IAAQ,EAAM,KAAK,EAAI,CAG/E,SAAS,IAAY,CAAC,GAAK,CAAC,EAAc,EAAiB,CAAC,GAAS,EAAM,CAA+G,MAA9G,GAAgB,IAAI,CAAC,EAAgB,IAAI,EAAiB,EAAO,WAAW,iBAAiB,CAAC,QAAQ,CAAC,AAAE,EAAC,CAAE,EAAC,CAAQ,CAAe,CAKhN,SAAS,GAAWA,EAAS,EAAO,CAAC,cAAY,YAAU,YAAU,CAAC,EAAW,CAAC,AAAG,EAAU,SAASA,IAAW,GAAQ,EAAU,SAAQ,EAAM,EAAQ,EAAY,EAAE,EAAW,CAAC,EAAU,QAAQ,aAAa,WAAW,GAAG,GAAW,EAAU,SAASA,IAAW,IAAQ,EAAU,SAAQ,EAAK,EAAQ,EAAY,EAAE,EAAW,CAAC,EAAU,QAAQ,gBAAgB,WAAW,CAAG,UAAS,GAAO,EAAiB,EAAa,CAAC,IAAM,EAAU,EAAO,EAAiB,CAAO,EAAY,EAAe,EAAU,QAAQ,EAAE,EAAE,CAAO,EAAY,EAAa,EAAY,CAAC,EAAE,CAAE,EAAC,CAAC,GAAc,EAAE,CAAE,EAAC,CAAO,EAAc,EAAa,EAAY,GAAG,EAAE,EAAE,CAAO,EAAU,EAAO,KAAK,CAKzpB,EAAc,EAAa,EAAc,GAAG,EAAE,GAAG,OAAO,OAAO,CAG/D,EAAO,EAAa,EAAc,GAAG,IAAI,OAAO,UAAU,UAAU,CAAO,EAAY,CAAC,GAAG,GAAiB,QAAQ,EAAc,gBAAc,QAAO,EAAC,MAAM,CAAC,YAAU,cAAY,cAAY,cAAY,WAAU,CAAE,UAAS,GAAe,CAAC,UAAQ,CAAC,CAAC,EAAQ,aAAa,eAAc,EAAM,AAAE,UAAS,GAAgB,EAAU,EAAK,EAAW,EAAoB,EAAa,EAAY,EAAa,CAAC,EAAU,IAAI,CAAC,IAAI,EAAU,QAAQ,OAAO,IAAM,EAAiB,GAAM,CAItW,AAJuW,EAAW,QAAQ,EAAK,GAIlf,EAAK,GAAM,UAAU,EAAa,UAAS,EAAa,YAAA,IAAmB,EAAoB,EAAK,GAAM,QAAQ,CAAC,GAAa,AAAE,EAAO,EAAW,GAAO,EAAiB,CAAC,UAAU,EAAU,QAAQ,MAAK,EAAC,CAAO,EAAW,GAAO,EAAU,QAAQ,IAAI,CAAgB,AAAf,GAAc,CAAC,GAAa,AAAE,EAAC,CAAC,MAAM,IAAI,CAAc,AAAb,GAAY,CAAC,GAAY,AAAE,CAAE,EAAC,CAAC,EAAY,CAAa,EAAC,AAAE,CASpX,SAAwB,EAAS,CAAC,QAAM,MAAI,OAAK,QAAM,eAAa,aAAW,cAAY,aAAW,iBAAe,YAAU,eAAa,gBAAc,GAAG,EAAM,CAAC,CACvK,IAAM,EAAc,EAAM,OAAO,QAAQ,CAAO,EAAS,EAAS,MAAM,EAAc,CAAO,EAAS,EAAa,SAAS,GAAG,EAAa,OAAa,GAAQ,GAAW,EAAM,CAAO,GAAU,EAAK,IAAI,IAAS,CAAC,cAAY,YAAU,YAAU,iBAAe,YAAU,CAAC,EAAgB,CAAC,QAAK,YAAS,QAAM,CAAC,EAAgB,CAAC,aAAU,aAAW,eAAa,aAAW,cAAY,aAAW,CAAC,EAAkB,CAAC,iBAAc,mBAAiB,UAAQ,aAAU,cAAW,eAAY,WAAQ,YAAS,kBAAe,qBAAkB,eAAY,YAAS,CAAC,EAAoB,CAAC,qBAAkB,YAAU,eAAY,aAAU,aAAU,aAAW,gBAAa,CAAC,EAE5oB,EAAW,MAAA,GAAiB,CAG5B,EAAa,MAAA,GAAiB,CAI9B,EAAc,EAAe,EAAE,CAAO,GAAoB,GAAW,CAAC,EAAc,IAAI,EAAa,cAAA,GAAyC,EAArB,EAAa,QAAkB,AAAE,EAG1J,GAAc,IAAY,CAE1B,EAAM,IAAO,EAAM,EAAU,CAAO,EAAI,IAAO,EAAK,EAAU,CAAO,GAAe,EAAe,EAAU,GAAG,CAAO,GAAa,EAAa,GAAe,GAAG,IAAI,EAAE,CAAO,GAAU,EAAe,EAAU,CAAO,GAAe,EAAa,CAAC,GAAe,EAAU,EAAC,GAAc,CAAO,GAAa,EAAa,GAAe,GAAG,IAAI,EAAE,CAAO,GAAU,EAAe,EAAK,QAAQ,SAAS,CAAO,GAAK,EAAa,CAAC,GAAU,EAAM,YAAY,GAAe,GAAe,EAAI,YAAY,GAAa,EAAa,EAAC,IAAgB,qBAAqB,EAAO,GAAG,iBAAiB,EAAO,GAAG,IAAI,EAAO,GAAG,qBAAqB,EAAO,GAAG,sBAAsB,EAAO,GAAG,kBAAkB,EAAO,GAAG,IAAI,EAAO,GAAG,IAAM,CAAO,EAAY,EAAO,KAAK,CAEpvB,CAAC,EAAS,GAAY,CAAC,EAAS,EAAS,EAAE,EAAE,CAE5C,EAAU,CAAC,gBAAgB,GAAS,WAAW,CAAE,EAAO,EAAW,CAAE,EAAI,IAAQ,YAAc,GAAM,EAAW,OAAO,OAAO,EAAU,OAAO,SAAa,EAAW,MAAM,OAAO,EAAU,MAAM,SAAa,IAAO,EAAU,eAAe,UAAa,KAAY,WAAW,EAAU,OAAO,cAAc,GAAY,EAAE,KAAK,EAAW,MAAM,QAAgB,KAAY,YAAW,EAAU,OAAO,OAAO,IAAI,EAAa,MAAM,EAAI,OAAO,EAAI,EAAa,KAAK,EAAW,MAAM,QAAW,IAAa,WAAW,EAAU,QAAQ,cAAc,GAAa,EAAE,KAAK,EAAW,OAAO,QAAgB,IAAa,SAAQ,EAAU,QAAQ,OAAO,IAAI,EAAW,MAAM,EAAI,OAAO,EAAI,EAAW,KAAK,EAAW,OAAO,YAAc,GAAe,EAAS,SAAS,OAAa,GAAe,CAAC,GAAG,GAAmB,UAAQ,EAAO,GAAc,CAAC,GAAG,GAAkB,MAAI,WAAW,EAAM,cAAc,EAAK,MAAM,SAAS,UAAU,EAAK,GAAe,SAAS,UAAU,EAAK,SAAS,GAAe,eAAe,MAAQ,GAAU,gBAAA,GAAsB,wBAAwB,QAAQ,gBAAgB,EAAY,OAAA,GAAe,aAAa,EAAY,OAAA,GAAe,UAAU,EAAY,OAAA,GAAe,cAAa,EAAO,GAAa,CAAE,uBAAwB,UAAW,EAAC,AAAG,IAAW,GAAa,cAAc,GAAW,IAAM,GAAS,CAAE,KAAI,IAAQ,YAAW,GAAS,aAAa,QAAQ,GAAS,wBAAwB,UAAa,EAAS,CAAC,IAAM,EAAU,EAAO,CAAE,EAAC,CAAC,GAAgB,EAAY,GAAU,EAAW,GAAoB,EAAa,GAAY,IAAI,CAAC,IAAI,EAAW,QAAQ,OAAO,GAAK,CAAC,eAAa,kBAAgB,eAAa,CAAC,EAAW,QAAc,EAAQ,EAAc,KAAK,CAAC,IAAI,IAAe,EAAgB,OAAO,GAAG,EAAa,EAAgB,CAA4C,AAA3C,GAAW,EAAQ,EAAE,EAAM,EAAe,CAAC,GAAW,EAAQ,EAAa,EAAI,EAAe,CAAC,IAAI,IAAI,EAAE,EAAE,EAAE,EAAU,QAAQ,OAAO,IAAI,CAAC,GAAK,CAAC,UAAQ,MAAA,EAAM,IAAA,EAAI,CAAC,EAAU,QAAQ,GAAG,AAAGC,EAAI,GAASC,EAAM,EAAQ,EAAiB,EAAQ,aAAa,eAAc,EAAK,CAAO,EAAQ,aAAa,eAAc,EAAM,AAAG,CAAC,MAA6E,AAAxE,GAAW,EAAE,EAAE,EAAM,EAAe,CAAC,GAAW,EAAE,EAAE,EAAI,EAAe,CAAC,EAAU,QAAQ,QAAQ,GAAe,CAOhrE,IAAI,EAAY,KAAK,KAAK,EAAa,EAAgB,CAAC,AAAI,MAAM,EAAY,GAC9F,EAAY,EAAS,MAAI,EAAY,GAAY,IAAc,GAAS,GAAY,EAAY,CAAG,EAAC,CAAC,CAAS,EAAC,CAAC,GAAY,IAAI,CAAK,EAAY,UAAe,EAAU,QAAQ,MAAM,KAAK,EAAY,QAAQ,SAAS,CAAC,IAAI,GAAiB,EAAK,CAAC,UAAQ,MAAM,EAAQ,WAAW,IAAI,EAAQ,WAAW,EAAQ,WAAY,EAAC,CAAC,UAAQ,MAAM,EAAQ,UAAU,IAAI,EAAQ,UAAU,EAAQ,YAAa,EAAG,CAAE,EAAC,CAAE,EAAC,CAAC,AAAE,CAIvZ,AAAG,IAAU,EAAU,IAAI,CAAC,GAAU,IAAI,EAAU,AAAE,EAAC,CAAC,CAAU,EAAC,CAAC,EAAU,IAAI,CAAC,GAAe,IAAI,EAAU,GAAG,AAAE,EAAC,CAAC,CAAU,EAAC,CAAC,EAAU,IAAI,CAAC,GAAU,IAAI,EAAK,QAAQ,SAAS,AAAE,EAAC,CAAC,CAAK,EAAC,MAAQ,EAAa,CAAC,EAAM,IAAS,CAAC,IAAI,EAAW,QAAQ,OAAO,GAAK,CAAC,UAAQ,CAAC,EAAW,QAAa,CAAC,WAAS,CAAC,EAAY,QAAY,EAAiB,EAAE,IAAQ,EAAE,EAAE,EAAS,OAAO,EAAE,KAAM,QAAA,IAAyB,CAAC,IAAM,EAAK,EAAS,GAASA,EAAM,EAAK,EAAK,WAAW,EAAK,UAAgB,EAAO,EAAK,EAAK,YAAY,EAAK,aAAmBD,EAAIC,EAAM,EAAa,EAAU,IAAI,GAAG,IAAQ,EAAE,CAAC,IAAM,EAAW,GAASA,EAAMD,EAAI,EAAO,CAAC,AAAG,EAAW,EAAE,EAAW,EAAaC,EAAe,IAAI,EAAS,OAAO,IAAG,EAAaD,EAAM,SAAQ,IAAQ,GAAG,CAAC,IAAM,EAAW,GAASC,EAAMD,EAAI,EAAO,CAAC,AAAG,EAAW,EAAW,EAAaA,EAAa,IAAI,IAAG,EAAaC,EAAQ,IAAG,CAAO,QAAO,CAAc,EAAO,GAAgB,IAAkB,CAAO,GAAK,GAAU,CAAC,EAAa,QAAQ,EAAS,IAAM,EAAQ,EAAK,CAAC,KAAK,CAAS,EAAC,CAAC,IAAI,CAAS,EAAC,EAAY,QAAQ,SAAS,CAAC,GAAG,EAAQ,SAAS,GAAgB,OAAO,QAAS,EAAC,AAAE,EAAO,GAAS,GAAM,CAAC,IAAI,EAAW,QAAQ,OAAO,GAAK,CAAC,eAAa,CAAC,EAAW,QAAQ,GAAK,GAAM,GAAc,EAAS,IAAI,AAAE,EAAO,GAAU,GAAO,IAAI,CAAC,IAAI,EAAW,QAAQ,OAAO,GAAK,CAAC,kBAAgB,eAAa,CAAC,EAAW,QAAc,EAAQ,EAAc,KAAK,CAAO,EAAW,EAAa,EAAe,EAAY,GAAM,EAAE,EAAS,EAAE,KAAK,MAAM,EAAQ,EAAW,CAAC,CAAC,GAAS,EAAY,EAAM,AAAE,EAErhD,GAAG,IAAW,EAAG,MAAoB,GAAK,GAAY,CAAE,EAAC,CAAE,IAAM,GAAK,CAAE,EAAO,EAAc,CAAE,EAAC,GAAG,EAAS,GAAG,IAAmB,GAAc,CAAC,IAAI,IAAI,EAAE,EAAE,EAAE,EAAS,IAAI,CAAC,IAAM,EAAW,IAAW,IAAG,EAAM,GAAK,KAAkB,EAAK,GAAI,CAAC,SAAS,CAAC,GAAG,GAAS,MAAM,EAAQ,OAAO,EAAQ,gBAAgB,EAAS,EAAC,YAAY,GAA4B,aAAW,gBAAgB,GAAkB,QAAQ,GAAY,QAAQ,IAAI,GAAS,EAAE,CAAe,gBAAyB,aAAW,MAAM,EAAS,MAAM,EAAE,IAAI,GAAQ,QAAQ,GAAiB,MAAK,EAAC,CAAC,AAAE,CAAG,KAAU,EAAc,eAAe,EAAc,qBAAqB,EAAc,mBAAmB,OAAO,GAAS,KAAO,OAAoB,GAAM,UAAU,CAAC,MAAM,GAAe,GAAG,GAAa,SAAS,CAAc,EAAK,EAAO,GAAG,CAAC,IAAI,EAAY,MAAM,GAAc,UAAU,mBAAmB,sBAAsB,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI,EAAa,YAAA,GAAkB,SAAS,EAAS,IAAI,EAAc,CAAC,EAAM,IAAQ,CAAC,IAAI,EAAa,MAAoB,GAAK,KAAK,CAAC,MAAM,EAAU,GAAG,GAAS,gBAAgB,EAAM,EAAE,MAAM,IAAW,SAAsB,GAAa,EAAM,CAAC,GAAG,EAAM,MAAM,MAAM,CAAC,IAAI,EAAa,EAAM,QAAyD,MAAM,GAAG,CAAW,CAAC,EAAC,AAAC,EAAC,AAAE,EAAC,AAAC,EAAC,CAAc,EAAM,WAAW,CAAC,MAAM,CAAC,GAAG,GAAe,QAAQ,GAAa,QAAQ,OAAO,cAAc,EAAK,MAAM,QAAS,EAAC,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B,GAAkB,SAAS,CAAc,EAAK,EAAO,OAAO,CAAC,IAAI,EAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAG,EAAM,YAAY,gBAAgB,GAAU,MAAM,EAAU,OAAO,EAAU,aAAa,GAAY,OAAQ,EAAQ,EAAH,GAAK,QAAQ,GAAkB,QAAQ,MAAO,EAAC,QAAQ,GAAU,GAAG,CAAC,aAAa,WAAW,SAAS,CAAC,MAAM,EAAG,EAAC,WAAW,CAAC,SAAS,GAAI,EAAC,SAAsB,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAM,EAAU,OAAO,EAAU,IAAI,IAAW,qEAAsE,EAAC,AAAC,EAAC,CAAc,EAAK,EAAO,OAAO,CAAC,IAAI,EAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAG,EAAI,YAAY,gBAAgB,GAAU,MAAM,EAAU,OAAO,EAAU,aAAa,GAAY,OAAQ,EAAQ,EAAH,GAAK,QAAQ,GAAkB,QAAQ,MAAO,EAAC,QAAQ,GAAU,EAAE,CAAC,aAAa,OAAO,SAAS,CAAC,MAAM,EAAG,EAAC,WAAW,CAAC,SAAS,GAAI,EAAC,SAAsB,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAM,EAAU,OAAO,EAAU,IAAI,GAAY,qEAAsE,EAAC,AAAC,EAAC,CAAC,GAAK,OAAO,EAAe,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG,GAAmB,KAAK,EAAK,MAAM,GAAU,IAAK,EAAW,QAAN,MAAc,UAAU,EAAK,mBAAmB,mBAAmB,cAAc,EAAK,MAAM,SAAS,OAAO,EAAK,GAAU,QAAQ,aAAa,GAAW,gBAAgB,GAAe,GAAG,CAAc,EAAC,SAAS,EAAK,EAAC,CAAC,IAAK,CAAC,EAAC,CAAc,EAAK,GAAY,CAAE,EAAC,AAAC,CAAC,EAAC,AAAE,CAA25K,SAAS,GAAI,CAAC,gBAAc,aAAW,aAAW,kBAAgB,QAAQ,EAAkB,QAAM,QAAM,SAAA,EAAS,cAAY,MAAI,UAAQ,OAAK,GAAG,EAAM,CAAC,CAAC,IAAM,GAAQ,EAAa,EAAc,GAAG,CAAC,IAAI,EAAoB,EAAqB,KAAM,EAAoB,EAAW,UAAyE,aAAe,OAAO,IAAQ,EAAE,EAAgB,EAAmB,IAAM,GAAa,EAAqB,EAAW,UAA2E,aAAc,EAAY,EAAU,EAAW,EAAY,EAAU,EAAU,EAAiBC,EAAW,GAAG,IAAY,EAAM,EAAM,EAAE,EAAE,EAAU,IAAQ,EAAM,GAAG,OAAOA,EAAW,EAAgB,CAAmB,EAAC,CAAO,EAAc,EAAI,EAAM,GAAK,GAAM,EAAM,EAAE,EAAc,EAAY,IAAQ,GAAM,IAAQ,EAAM,EAAE,EAAc,EAAY,EAAM,GAAM,IAAQ,EAAM,EAAE,EAAc,EAAY,EAAK,GAAM,EAAM,EAAE,EAAc,EAAQ,MAAoB,GAAK,SAAS,CAAC,cAAc,iBAAiB,EAAM,IAAI,KAAK,SAAS,GAAG,EAAM,MAAM,CAAC,GAAG,EAAY,WAAW,EAAI,KAAK,EAAM,KAAK,GAAO,KAAK,EAAK,GAAI,EAAC,SAAsB,EAAK,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGC,EAAS,UAAQ,CAAC,EAAC,AAAC,EAAC,AAAE,UAAS,IAAa,CAAC,MAAoB,GAAM,UAAU,CAAC,MAAM,GAAkB,SAAS,CAAc,EAAK,MAAM,CAAC,MAAM,GAAY,SAAS,GAAI,EAAC,CAAc,EAAK,IAAI,CAAC,MAAM,GAAY,SAAS,oBAAqB,EAAC,CAAc,EAAK,IAAI,CAAC,MAAM,GAAe,SAAS,4CAA6C,EAAC,AAAC,CAAC,EAAC,AAAE,UAAS,IAAa,CAAC,MAAoB,GAAK,MAAM,CAAC,wBAAwB,CAAC,OAAA;;;;;;;;;;;;;;;;sBAgB16T,CAAC,EAAC,AAAE,6CAI6H,IAtFxJ,GAAyD,IAA+G,IAAiE,IAA0C,KAA6C,IAAuF,KAA4F,CAkE49E,EAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,eAAc,EAAM,kBAAiB,CAAM,EAAC,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAE,EAAC,aAAa,CAAE,EAAwB,EAAoB,EAAS,CAAC,MAAM,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAK,EAAY,iBAAkB,CAAC,EAAC,KAAK,CAAC,KAAK,EAAY,KAAK,MAAM,YAAY,QAAQ,EAAC,GAAK,CAAM,EAAC,YAAY,CAAC,uBAAuB,oBAAqB,EAAC,yBAAwB,CAAK,EAAC,MAAM,CAAC,KAAK,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAW,EAAC,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAe,EAAC,MAAM,CAAC,aAAa,eAAe,aAAc,CAAC,CAAC,EAAC,aAAa,SAAS,yBAAwB,CAAK,EAAC,IAAI,CAAC,KAAK,EAAY,OAAO,MAAM,KAAM,EAAC,GAAG,EAAe,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAK,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAU,EAAC,aAAa,CAAC,OAAO,UAAU,SAAU,EAAC,aAAa,MAAO,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO,GAAO,EAAM,YAAY,SAAU,EAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,gBAAe,EAAK,OAAO,GAAO,EAAM,YAAY,SAAU,EAAC,WAAW,CAAC,KAAK,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAO,EAAC,aAAa,CAAC,OAAO,UAAU,MAAO,EAAC,aAAa,MAAO,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO,GAAO,EAAM,aAAa,SAAU,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,gBAAe,EAAK,OAAO,GAAO,EAAM,aAAa,MAAO,CAAC,CAAC,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAK,EAAY,QAAQ,MAAM,QAAS,EAAC,SAAS,CAAC,KAAK,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAM,EAAC,aAAa,CAAC,OAAO,SAAS,OAAQ,EAAC,aAAa,SAAS,OAAO,IAAQ,EAAM,IAAK,EAAC,MAAM,CAAC,KAAK,EAAY,QAAQ,MAAM,QAAQ,cAAa,EAAM,OAAO,IAAQ,EAAM,IAAK,CAAC,CAAC,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAK,EAAY,QAAQ,MAAM,SAAS,cAAa,CAAM,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO,IAAQ,EAAM,WAAY,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO,IAAQ,EAAM,WAAY,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,OAAO,IAAQ,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAE,EAAC,eAAe,CAAC,KAAK,EAAY,WAAW,MAAM,aAAa,OAAO,IAAQ,EAAM,WAAY,CAAC,CAAC,EAAC,eAAe,CAAC,KAAK,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAK,EAAY,QAAQ,MAAM,aAAa,cAAa,CAAM,EAAC,iBAAiB,CAAC,KAAK,EAAY,QAAQ,MAAM,OAAO,cAAa,EAAM,OAAO,GAAO,EAAM,aAAc,EAAC,QAAQ,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,QAAQ,CAAC,KAAK,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,SAAS,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,eAAe,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,WAAW,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,kBAAkB,CAAC,KAAK,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,EAAC,SAAS,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO,IAAQ,EAAM,kBAAkB,EAAM,aAAc,CAAC,CAAC,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAK,EAAY,QAAQ,MAAM,OAAO,cAAa,CAAK,EAAC,UAAU,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAO,IAAQ,EAAM,iBAAkB,EAAC,UAAU,CAAC,KAAK,EAAY,MAAM,MAAM,WAAW,OAAO,IAAQ,EAAM,iBAAkB,EAAC,WAAW,CAAC,KAAK,EAAY,MAAM,MAAM,OAAO,OAAO,IAAQ,EAAM,iBAAkB,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,gBAAe,EAAK,aAAa,GAAG,OAAO,IAAQ,EAAM,iBAAkB,EAAC,YAAY,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO,IAAQ,EAAM,iBAAkB,EAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,gBAAe,EAAK,OAAO,IAAQ,EAAM,iBAAkB,CAAC,CAAC,EAAC,UAAU,CAAC,KAAK,EAAY,OAAO,MAAM,aAAa,YAAY,WAAY,EAAC,aAAa,CAAC,KAAK,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,gBAAe,EAAK,aAAa,CAAE,CAAC,EAAC,CAgBpyQ,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAsB,EAAO,GAAY,CAAC,SAAS,GAAG,aAAa,EAAG,EAAO,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAS,EAAO,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAS,EAEze,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAW,EAAO,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAO,EAAO,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAE,EAAO,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,CAAE,EAE3lB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAO,EAAO,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAE,ICrFyZ,SAAS,EAAqB,EAAU,GAAG,EAAS,CAAC,IAAM,EAAc,CAAE,EAAsF,MAArF,IAAU,QAAQ,GAAS,GAAS,OAAO,OAAO,EAAc,EAAU,GAAS,CAAC,CAAQ,CAAe,mEAS/N,AAT5oB,GAAyD,IAA8K,IAAkE,IAA4B,IAA2H,CAAM,GAAa,EAASC,GAAQ,CAAO,GAAgB,GAAO,EAAO,IAAI,CAAO,GAAW,CAAC,YAAY,WAAY,EAAOC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAmB,EAA8LC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAG,EAAOC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWA,GAAY,EAAE,EAAE,EAAE,EAAG,EAAO,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAS,EAAO,GAAW,CAAC,CAAC,QAAM,WAAS,GAAG,CAAC,IAAM,EAAO,EAAiB,GAAoB,CAAO,EAAW,GAAO,EAAO,WAAiB,EAAa,EAAc,KAAK,CAAC,GAAG,EAAO,YAAW,GAAE,CAAC,KAAK,UAAU,EAAW,AAAC,EAAC,CAAC,MAAoB,GAAK,GAAoB,SAAS,CAAC,MAAM,EAAsB,UAAS,EAAC,AAAE,EAAO,GAAS,EAAO,OAAA,EAAsB,CAAOC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAY,EAAOC,GAAS,CAAC,CAAC,SAAO,KAAG,MAAI,OAAK,WAAS,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,UAAU,GAAU,EAAM,WAAW,+BAA+B,UAAU,GAAK,EAAM,WAAW,WAAW,UAAU,GAAM,EAAM,WAAW,wBAAwB,QAAQD,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAAS,GAAuB,CAAC,EAAM,IAAe,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAAC,EAAM,iBAAwB,EAAS,KAAK,IAAI,CAASE,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,GAAK,CAAC,eAAa,YAAU,CAAC,IAAe,CAAM,CAAC,QAAM,UAAA,EAAU,WAAS,UAAQ,YAAU,YAAU,YAAU,GAAG,GAAU,CAAC,GAAS,EAAM,CAAM,CAAC,cAAY,aAAW,uBAAoB,kBAAgB,iBAAe,YAAU,kBAAgB,cAAW,WAAS,CAAC,EAAgB,CAAC,cAAW,eAAe,YAAY,UAAQ,kBAAA,EAAkB,EAAC,CAAO,EAAiB,GAAuB,EAAM,EAAS,CAAO,EAAsB,CAAE,EAAO,GAAkB,EAAGN,GAAkB,GAAG,EAAsB,CAAO,EAAK,EAAa,KAAK,CAAO,EAAgB,GAAa,CAAO,EAAkB,IAAsB,CAAC,MAAoB,GAAK,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAsB,EAAK,GAAS,CAAC,QAAQ,EAAS,SAAQ,EAAM,SAAsB,EAAK,GAAW,CAAC,MAAM,GAAY,SAAsB,EAAM,GAAgB,CAAC,GAAG,GAAU,GAAG,EAAgB,kBAAkB,CAAC,WAAWG,EAAY,EAAC,uBAAsB,EAAK,gBAAgBD,GAAU,eAAe,GAAW,oCAAmC,EAAK,oBAAoB,GAAG,iBAAgB,EAAM,oBAAmB,EAAK,gBAAgB,EAAE,UAAU,EAAG,GAAkB,iBAAiBc,EAAU,EAAW,CAAC,mBAAmB,YAA6B,mBAAiB,SAAS,YAAY,IAAI,GAAK,EAAK,MAAM,CAAC,GAAG,CAAM,EAAC,GAAG,EAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAY,CAAC,EAAC,EAAY,EAAe,CAAC,SAAS,CAAc,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAO,IAAI,CAAC,UAAU,0BAA2C,mBAAiB,SAAS,sBAAsB,SAAsB,EAAKjB,GAAQ,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,OAAO,OAAO,GAAG,YAAY,qBAAoB,EAAM,OAAM,EAAK,SAAS,YAAY,KAAK,OAAO,YAAW,EAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,UAAU,iBAAiB,cAAc,GAAG,eAAe,GAAG,IAAI,EAAU,MAAM,OAAO,GAAG,EAAqB,CAAC,UAAU,CAAC,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,cAAc,GAAG,eAAe,EAAG,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,UAAU,iBAAkC,mBAAiB,SAAS,YAAY,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,UAAU,gBAAgB,eAAc,EAAsB,mBAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,WAAW,oGAAoG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,4DAA6D,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,4FAA6F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,6BAA6B,KAAM,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,4FAA6F,EAAC,SAAS,UAAW,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,8FAA+F,EAAC,SAAS,uBAAwB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,MAAM,CAAC,cAAe,EAAkB,mBAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,sEAAsE,6BAA6B,KAAM,EAAC,KAAK,EAAU,kBAAkB,MAAM,oBAAmB,EAAK,GAAG,EAAqB,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,8FAA+F,EAAC,SAAS,uBAAwB,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,EAAY,EAAe,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOqB,GAAI,CAAC,kFAAkF,gFAAgF,6QAA6Q,qLAAqL,yQAAyQ,qWAAqW,mIAAmI,iHAAiH,ilBAAilB,qHAAqH,gFAAgF,ubAAub,+bAAgc,EAS9xV,EAAgB,GAAQd,GAAUc,GAAI,eAAe,GAAgB,EAAgB,EAAgB,YAAY,kBAAkB,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAI,EAAC,EAAoB,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAY,EAAC,aAAa,CAAC,YAAY,WAAY,EAAC,MAAM,UAAU,KAAK,EAAY,IAAK,EAAC,UAAU,CAAC,aAAa,+BAA+B,MAAM,YAAY,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,WAAW,iBAAgB,EAAM,MAAM,MAAM,KAAK,EAAY,MAAO,EAAC,UAAU,CAAC,aAAa,wBAAwB,iBAAgB,EAAM,MAAM,OAAO,KAAK,EAAY,MAAO,CAAC,EAAC,CAAC,EAAS,EAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAO,CAAA,CAAC,EAAC,GAAG,EAAa,EAAC,CAAC,8BAA6B,CAAK,EAAC,iGCKjkC,AAdb,GAA+E,IAA8Z,IAA8D,IAA4B,CAA0B,GAAmC,KAAkH,IAAoH,KAAiF,KAAoF,KAAuF,KAA8E,KAA2F,KAAyE,IAAqE,KAAmF,CAAM,GAAoB,EAASX,EAAe,CAAO,GAAc,EAAS,EAAS,CAAO,GAAe,EAAS,EAAU,CAAO,GAA8B,EAASC,GAAyB,CAAO,GAAiB,EAASC,GAAY,CAAO,GAAuB,EAASC,EAAkB,CAAO,GAA0B,EAASC,GAAqB,CAAO,GAA4C,GAAwBA,GAAqB,CAAO,GAAY,EAASC,EAAO,CAAO,GAAY,CAAC,UAAU,qBAAqB,UAAU,8CAA8C,UAAU,sBAAsB,UAAU,4CAA6C,EAAO,GAAU,WAAW,SAAW,IAAkB,GAAkB,eAAqB,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAkB,EAAO,GAAU,CAAC,OAAO,aAAa,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAG,EAAO,GAAY,CAAC,QAAQ,IAAI,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAO,GAAW,CAAC,OAAO,GAAU,QAAO,EAAM,WAAW,GAAG,aAAa,OAAO,WAAW,GAAY,QAAQ,UAAU,KAAK,QAAS,EAAO,GAAmB,CAAC,EAAE,KAAK,wBAAwB,IAAU,GAAa,IAAY,SAAS,cAAc,oBAAoB,EAAE,SAAS,cAAc,WAAW,EAAE,SAAS,KAAa,GAAQ,CAAC,CAAC,WAAS,yBAAuB,WAAQ,EAAK,GAAG,CAAC,GAAK,CAAC,EAAQ,EAAW,CAAC,GAAgB,CAAC,wBAAuB,EAAC,CAAC,MAAO,GAAS,CAAC,KAAK,IAAI,GAAW,EAAM,CAAC,KAAK,IAAI,GAAW,EAAK,CAAC,OAAO,IAAI,GAAY,EAAQ,CAAC,QAAQ,GAAS,CAAQ,EAAC,AAAE,EAAO,GAAmB,CAAC,EAAE,KAAK,mBAAmB,IAAU,GAAU,CAAC,CAAC,QAAM,GAAG,CAAC,IAAM,EAAS,IAAqB,CAAyB,OAArB,EAAgB,KAAyB,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAO,CAAM,EAAC,yBAAyB,EAAG,EAAC,AAAE,EAAO,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAY,EAAO,GAAS,CAAC,CAAC,SAAO,KAAG,QAAM,GAAG,EAAM,IAAU,CAAC,GAAG,EAAM,QAAQ,GAAwB,EAAM,UAAU,EAAM,SAAS,WAAY,GAAS,GAAuB,EAAiB,SAAS,EAAM,EAAI,CAAC,IAAM,EAAY,EAAO,KAAK,CAAO,EAAW,GAAK,EAAkB,EAAgB,GAAa,CAAM,CAAC,eAAa,YAAU,CAAC,IAAe,CAAO,EAAkB,IAAsB,CAAM,CAAC,QAAM,UAAA,GAAU,WAAS,WAAQ,GAAG,EAAU,CAAC,GAAS,EAAM,CAAOC,EAAS,EAAc,IAAI,OAAA,GAA2B,EAAa,CAAC,KAAA,GAAW,CAAa,EAAC,CAAC,GAAYA,EAAS,CAAC,GAAK,CAAC,EAAY,GAAoB,CAAC,GAA8B,GAAQ,IAAY,EAAM,CAAO,EAA8B,CAAC,wBAAsB,QAAM,CAAC,OAAA,GAAmC,CAAO,GAAgB,CAAC,CAAC,UAAQ,WAAS,GAAG,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAQ,QAAQ,AAAE,EAAC,CAAO,EAAiB,CAAC,CAAC,UAAQ,WAAS,GAAG,EAAsB,MAAM,GAAG,IAAO,CAAC,EAAQ,MAAM,AAAE,EAAC,CAAO,EAAsB,CAAA,CAAuB,EAAO,EAAkB,EAAG,GAAkB,GAAG,EAAsB,CAAO,EAAY,KAAS,IAAW,EAAgB,IAAc,YAA6C,EAAa,IAAS,IAAW,EAAgB,CAAC,YAAY,WAAY,EAAC,SAAS,EAAY,EAAvD,EAAyF,EAAa,KAAS,IAAW,EAAgB,IAAc,YAA6C,GAAO,IAAW,CAAO,EAAU,GAAkB,YAAY,CAAO,GAAK,EAAa,KAAK,CAAsB,MAArB,IAAiB,CAAE,EAAC,CAAqB,EAAK,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,oBAAkB,EAAC,SAAsB,EAAM,GAAY,CAAC,GAAG,GAAU,EAAgB,SAAS,CAAc,EAAK,GAAU,CAAC,MAAM,+CAAgD,EAAC,CAAc,EAAM,EAAO,IAAI,CAAC,GAAG,EAAU,UAAU,EAAG,EAAkB,gBAAgBC,GAAU,CAAC,IAAI,EAAW,MAAM,CAAC,GAAG,CAAM,EAAC,SAAS,CAAc,EAAKC,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA6V,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA6V,CAAC,CAAC,EAAC,SAAsB,EAAMC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,GAAG,IAAI,EAAE,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA6V,EAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAsE,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAsE,EAAC,SAAS,WAAY,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,OAAO,GAAW,MAAM,CAAC,OAAQ,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,KAAM,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,wBAAwB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2BAA2B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,wBAAwB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,IAAK,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sCAAsC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,uDAAuD,kBAAiB,EAAK,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,sEAAsE,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,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,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6BAA6B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sCAAsC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,wBAAwB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2BAA2B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,CAAM,CAAC,CAAC,EAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,sEAAsE,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,mBAAkB,EAAM,kBAAiB,EAAK,UAAU,GAAG,mBAAkB,CAAK,EAAC,iBAAgB,EAAM,aAAa,EAAE,UAAU,OAAO,aAAY,EAAK,eAAe,CAAC,cAAa,EAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAE,EAAC,YAAY,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,UAAU,GAAG,UAAS,CAAM,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,gBAAe,EAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,CAAK,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sCAAsC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6BAA6B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,mCAAmC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,wBAAwB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2BAA2B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,wBAAwB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,EAAE,IAAI,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6BAA6B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,mCAAmC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAsE,EAAC,SAAS,sBAAuB,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAsE,EAAC,SAAS,sBAAuB,EAAC,AAAC,EAAC,CAAC,UAAU,iBAAiB,OAAO,GAAW,MAAM,CAAC,OAAQ,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAK,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,iCAAiC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAM,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mCAAmC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,yBAAyB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,+BAA+B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sDAAsD,kBAAiB,EAAK,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,sEAAsE,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,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,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,iCAAiC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,qBAAqB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mCAAmC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,+BAA+B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,yBAAyB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mBAAmB,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,yBAAyB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,CAAM,CAAC,CAAC,EAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,sEAAsE,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,mBAAkB,EAAM,kBAAiB,EAAK,UAAU,GAAG,mBAAkB,CAAK,EAAC,iBAAgB,EAAM,aAAa,EAAE,UAAU,OAAO,aAAY,EAAK,eAAe,CAAC,cAAa,EAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAE,EAAC,YAAY,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,UAAU,GAAG,UAAS,CAAM,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,gBAAe,EAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,CAAK,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,iCAAiC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,OAAO,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,+BAA+B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,iCAAiC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,8CAA8C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mBAAmB,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,iCAAiC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA6V,CAAC,EAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA6V,CAAC,CAAC,EAAC,SAAsB,EAAMC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ,GAA2B,GAAmB,GAAG,GAAG,IAAI,MAAM,CAAC,YAAY,KAAK,WAAW,KAAK,MAAM,GAAmB,OAAO,QAAQ,IAAI,qEAAqE,OAAO,4VAA6V,EAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc,EAAKD,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,qEAAsE,EAAC,SAAS,oBAAqB,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,SAAsB,EAAK,EAAS,CAAC,uBAAsB,EAAK,SAAsB,EAAA,EAAoB,CAAC,SAAsB,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAsE,EAAC,SAAS,oBAAqB,EAAC,AAAC,EAAC,CAAC,UAAU,gBAAgB,OAAO,GAAW,MAAM,CAAC,OAAQ,EAAC,kBAAkB,MAAM,oBAAmB,CAAK,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,KAAM,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gCAAgC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sDAAsD,kBAAiB,EAAK,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAK,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,sEAAsE,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,mBAAkB,CAAK,EAAC,MAAK,EAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,aAAY,EAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,UAAU,EAAG,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,gBAAe,EAAM,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,kBAAiB,EAAM,eAAc,CAAM,EAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAO,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gCAAgC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8CAA8C,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qCAAqC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iCAAiC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,yBAAyB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,WAAW,CAAC,OAAM,EAAM,MAAK,EAAK,SAAS,QAAS,EAAC,MAAM,CAAC,SAAS,OAAO,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAc,EAAe,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,kBAAiB,EAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,CAAM,CAAC,CAAC,EAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,sEAAsE,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,mBAAkB,EAAM,kBAAiB,EAAK,UAAU,GAAG,mBAAkB,CAAK,EAAC,iBAAgB,EAAM,aAAa,EAAE,UAAU,OAAO,aAAY,EAAK,eAAe,CAAC,cAAa,EAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAE,EAAC,YAAY,CAAC,UAAU,EAAE,aAAY,EAAM,UAAU,EAAE,UAAU,GAAG,UAAS,CAAM,EAAC,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,gBAAe,EAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,kBAAiB,CAAK,EAAC,MAAM,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gCAAgC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,4CAA4C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kCAAkC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,0BAA0B,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,2BAA2B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8CAA8C,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qCAAqC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,SAAsB,EAAKA,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iCAAiC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,yBAAyB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAS,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,qCAAqC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,IAAK,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,sEAAsE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,wCAAwC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iCAAiC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,yBAAyB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sCAAsC,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,sBAAsB,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAC,GAAa,EAAe,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,OAAO,OAAO,GAAmB,OAAO,QAAQ,UAAU,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,qEAAqE,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKR,EAAe,CAAC,UAAU,+BAA+B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8CAA8C,MAAM,CAAC,MAAM,MAAO,EAAC,UAAU,cAAc,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc,EAAK,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,EAAC,CAAC,KAAK,CAAC,UAAU,WAAY,EAAC,0BAAA,EAAgC,CAAC,EAAC,SAAS,GAA4B,EAAKQ,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,OAAO,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,MAAM,CAAE,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,GAAG,GAAG,GAAmB,GAAG,GAAG,IAAI,MAAM,IAAI,MAAM,EAAE,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,EAAc,EAAG,EAAC,UAAU,CAAC,UAAU,EAAc,EAAG,EAAC,UAAU,CAAC,UAAU,EAAc,EAAG,CAAC,EAAC,SAAsB,EAAKP,GAAyB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAc,EAAG,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAK,GAAQ,CAAC,wBAAuB,EAAM,SAAS,GAAsB,EAAKS,EAAU,CAAC,SAAsB,EAAKF,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,OAAO,CAAE,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,MAAM,CAAE,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG,GAAmB,GAAG,GAAG,IAAI,MAAM,IAAI,MAAM,EAAE,SAAsB,EAAM,EAAU,CAAC,UAAU,0BAA0B,GAAG,EAAU,OAAO,YAAY,IAAI,GAAK,QAAQ,YAAY,SAAS,CAAc,EAAKN,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,OAAO,UAAU,GAAgB,CAAC,SAAQ,EAAC,AAAC,EAAC,CAAc,EAAK,EAAgB,CAAC,SAAS,EAAQ,SAAsB,EAAKQ,EAAU,CAAC,SAAsB,EAAmC,EAAA,EAAqB,CAAC,SAAS,CAAc,EAAK,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,IAAI,GAAI,EAAC,KAAK,OAAQ,CAAC,EAAC,UAAU,EAAG,EAAkB,gBAAgB,CAAC,wBAAwB,EAAU,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAE,EAAC,KAAK,OAAQ,CAAC,EAAC,QAAQ,CAAC,QAAQ,CAAE,EAAC,MAAM,IAAI,EAAQ,MAAM,AAAC,EAAC,YAAY,CAAc,EAAK,EAA0B,CAAC,MAAM,QAAQ,SAAsB,EAAK,EAAU,CAAC,UAAU,EAAG,EAAkB,0BAA0B,CAAC,wBAAwB,EAAU,iBAAgB,EAAK,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,kBAAkB,GAAmB,SAAsB,EAAKP,EAAkB,CAAC,UAAU,EAAiB,CAAC,SAAQ,EAAC,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAC,IAAc,CAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,CAAc,EAAKK,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,EAAE,CAAE,EAAC,UAAU,CAAC,MAAM,QAAQ,EAAE,CAAE,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,EAAE,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,cAAa,CAAK,EAAC,UAAU,CAAC,cAAa,CAAK,CAAC,EAAC,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,mBAAkB,EAAK,QAAQ,YAAY,kBAAkB,GAAmB,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,EAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAK,GAA4C,CAAC,uBAAsB,EAAM,oBAAoB,EAAE,sCAAqC,EAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wBAAwB,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,CAAc,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,MAAO,EAAC,UAAU,CAAC,GAAG,GAAmB,GAAG,GAAG,EAAE,MAAO,CAAC,EAAC,SAAsB,EAAK,EAA0B,CAAC,OAAO,IAAI,MAAM,GAAmB,OAAO,QAAQ,GAAG,GAAmB,GAAG,GAAG,IAAI,OAAO,SAAsB,EAAK,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB,EAAKA,EAAkB,CAAC,WAAW,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAY,EAAC,UAAU,CAAC,QAAQ,WAAY,CAAC,EAAC,SAAsB,EAAKH,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAO,EAAC,QAAQ,YAAY,MAAM,MAAO,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,EAAC,AAAC,CAAC,EAAC,CAAc,EAAK,MAAM,CAAC,GAAG,SAAU,EAAC,AAAC,CAAC,EAAC,AAAC,EAAC,AAAE,EAAC,CAAOM,GAAI,CAAC,kFAAkF,gFAAgF,gTAAgT,mUAAmU,kUAAkU,8pBAA8pB,4MAA4M,8xCAA8xC,wQAAwQ,oSAAoS,8QAA8Q,oHAAoH,yGAAyG,qIAAqI,wKAAwK,uKAAuK,GAAA,GAAmB,qkBAAqkB,+8BAA+8B,8EAA+E,EAanpxD,GAAgB,GAAQ,GAAUA,GAAI,eAAe,IAAgB,GAAgB,GAAgB,YAAY,OAAO,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAK,EAAC,EAAS,GAAgB,CAAC,CAAC,eAAc,EAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAM,EAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAM,CAAC,CAAC,EAAC,GAAG,GAAoB,GAAG,GAAc,GAAG,GAAe,GAAG,GAA8B,GAAG,GAAiB,GAAG,GAAuB,GAAG,GAA0B,GAAG,GAAY,GAAG,GAAA,EAA0C,AAAC,EAAC,CAAC,8BAA6B,CAAK,EAAC,CACzgE,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAI,CAAC,EAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAE,EAAC,YAAc,CAAC,qBAAuB,OAAO,sBAAwB,IAAI,uBAAyB,GAAG,qBAAuB,iEAA2E,4BAA8B,OAAO,sBAAwB,OAAO,kBAAoB,OAAO,qBAAuB,OAAO,oCAAsC,oMAA0O,6BAA+B,OAAO,yBAA2B,QAAQ,yBAA2B,MAAO,CAAC,EAAC,mBAAqB,CAAC,KAAO,UAAW,CAAC,CAAC"}