{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/6KVbXxf8jH8jDGO2j7Ff/4eOifXGDT4wImkr5Itgs/lmqRLXOMJ.js", "ssg:https://framerusercontent.com/modules/dPH2QOP4hSL54mpjg00q/3aak6ON6INQ4WH1I28MS/osEtIoRax.js"],
  "sourcesContent": ["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 \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const 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:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"GF;Inter-regular\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}];export const css=['.framer-Du6WM .framer-styles-preset-vfrmzd:not(.rich-text-wrapper), .framer-Du6WM .framer-styles-preset-vfrmzd.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-83607445-cd17-4db1-964d-f312dfe439f5, #2a2a2c); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 720px) { .framer-Du6WM .framer-styles-preset-vfrmzd:not(.rich-text-wrapper), .framer-Du6WM .framer-styles-preset-vfrmzd.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-83607445-cd17-4db1-964d-f312dfe439f5, #2a2a2c); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 719px) and (min-width: 0px) { .framer-Du6WM .framer-styles-preset-vfrmzd:not(.rich-text-wrapper), .framer-Du6WM .framer-styles-preset-vfrmzd.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-Italic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-83607445-cd17-4db1-964d-f312dfe439f5, #2a2a2c); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-Du6WM\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ed23c09)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/7NqHJHRwGJKPr4gYnAGm/SlideShow.js\";import MainNavigation from\"#framer/local/canvasComponent/LDUxi1AFY/LDUxi1AFY.js\";import Footer from\"#framer/local/canvasComponent/lWL1n3moQ/lWL1n3moQ.js\";import CaptionCarousel from\"#framer/local/canvasComponent/NEmm3mzh_/NEmm3mzh_.js\";import Cursor from\"#framer/local/canvasComponent/Zz7B4KiNC/Zz7B4KiNC.js\";import*as sharedStyle1 from\"#framer/local/css/DrXgd0FnG/DrXgd0FnG.js\";import*as sharedStyle2 from\"#framer/local/css/hInWEGY_D/hInWEGY_D.js\";import*as sharedStyle3 from\"#framer/local/css/lmqRLXOMJ/lmqRLXOMJ.js\";import*as sharedStyle from\"#framer/local/css/v1EYT4STH/v1EYT4STH.js\";import metadataProvider from\"#framer/local/webPageMetadata/osEtIoRax/osEtIoRax.js\";const MainNavigationFonts=getFonts(MainNavigation);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const CaptionCarouselFonts=getFonts(CaptionCarousel);const SlideshowFonts=getFonts(Slideshow);const CarouselFonts=getFonts(Carousel);const VideoFonts=getFonts(Video);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={HwSnDsvM8:\"(min-width: 720px) and (max-width: 1199.98px)\",NxpJHXfgA:\"(min-width: 1200px)\",uMJOcIfuo:\"(max-width: 719.98px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AjFQC\";const variantClassNames={HwSnDsvM8:\"framer-v-1f5whiz\",NxpJHXfgA:\"framer-v-e6ud1r\",uMJOcIfuo:\"framer-v-4otcdl\"};const transition1={delay:.9,duration:1,ease:[0,.38,.22,1.04],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-60};const transition2={delay:.5,duration:.9,ease:[0,.38,.22,1.04],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const transition3={delay:.7,duration:1,ease:[0,.38,.22,1.04],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={delay:.3,duration:.9,ease:[0,.38,.22,1.04],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transformTemplate1=(_,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:\"NxpJHXfgA\",Phone:\"uMJOcIfuo\",Tablet:\"HwSnDsvM8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"NxpJHXfgA\"};};const cursor={component:Cursor,variant:\"sZIEPGLSG\"};const cursor1={component:Cursor,variant:\"V1qrJwQ6m\"};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"uMJOcIfuo\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"uMJOcIfuo\")return true;return false;};useCustomCursors({\"15p19y3\":cursor1,ej9rl9:cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"NxpJHXfgA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-e6ud1r\",className),\"data-framer-cursor\":\"ej9rl9\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-gns09r-container\",\"data-framer-appear-id\":\"gns09r\",initial:animation1,nodeId:\"DMQe1NGt3\",optimized:true,rendersWithMotion:true,scopeId:\"osEtIoRax\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwSnDsvM8:{variant:\"EpnTd7zNt\"},uMJOcIfuo:{variant:\"xXM4wnyB1\"}},children:/*#__PURE__*/_jsx(MainNavigation,{height:\"100%\",id:\"DMQe1NGt3\",layoutId:\"DMQe1NGt3\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"pCnzR5MFG\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-1a6g3su\",\"data-framer-appear-id\":\"1a6g3su\",\"data-framer-name\":\"Section Quote\",initial:animation3,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation4,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15bkrou\",\"data-styles-preset\":\"v1EYT4STH\",children:\"Tools & Process\"})}),className:\"framer-15maywg\",\"data-framer-appear-id\":\"15maywg\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1so66pm\",\"data-framer-appear-id\":\"1so66pm\",\"data-framer-name\":\"Section image\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwSnDsvM8:{background:{alt:\"Photo of operating a digital and physical prototype\",fit:\"fill\",intrinsicHeight:1134,intrinsicWidth:1930,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+201.6+0),pixelHeight:1134,pixelWidth:1930,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px), 1px)`,src:\"https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png\",srcSet:\"https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png 1930w\"}},uMJOcIfuo:{background:{alt:\"Photo of operating a digital and physical prototype\",fit:\"fill\",intrinsicHeight:1134,intrinsicWidth:1930,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+181.6+0+0),pixelHeight:1134,pixelWidth:1930,sizes:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,src:\"https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png\",srcSet:\"https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png 1930w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of operating a digital and physical prototype\",fit:\"fill\",intrinsicHeight:1134,intrinsicWidth:1930,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+221.6+0),pixelHeight:1134,pixelWidth:1930,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px), 1px)`,src:\"https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png\",srcSet:\"https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png?scale-down-to=512 512w,https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4qkMksvaNNuALQnkSgcm7FyqFA.png 1930w\"},className:\"framer-f8q8sa\"})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-gnq7wt\",\"data-framer-appear-id\":\"gnq7wt\",\"data-framer-name\":\"Section AboutText\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",style:{\"--framer-text-alignment\":\"left\"},children:\"The right tool for the job\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",children:\"The right tool for the job\"})}),className:\"framer-a17zxo\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tzm6s8\",\"data-styles-preset\":\"hInWEGY_D\",style:{\"--framer-text-alignment\":\"left\"},children:\"With experience you learn what works and what does not. You learn that every project requires its own toolbox, meaning you only pick the ones you need to get the job done. No more. Because in the end it is about the results and process can never be a substitute for creative confidence. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tzm6s8\",\"data-styles-preset\":\"hInWEGY_D\",children:\"With experience you learn what works and what does not. You learn that every project requires its own toolbox, meaning you only pick the ones you need to get the job done. No more. Because in the end it is about the results and process can never be a substitute for creative confidence. \"})}),className:\"framer-1sxw8du\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-13d7z74\",\"data-framer-appear-id\":\"13d7z74\",\"data-framer-name\":\"Section Schematic\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwSnDsvM8:{background:{alt:\"Image with overview of UX processes and methodologies\",fit:\"fill\",intrinsicHeight:419.0475905022673,intrinsicWidth:952.3808875051529,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+813.6+0),pixelHeight:880,pixelWidth:2e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px)`,src:\"https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png 2000w\"}},uMJOcIfuo:{background:{alt:\"Image with overview of UX processes and methodologies\",fit:\"fill\",intrinsicHeight:419.0475905022673,intrinsicWidth:952.3808875051529,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+853+0),pixelHeight:880,pixelWidth:2e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 40px, 1px)`,src:\"https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image with overview of UX processes and methodologies\",fit:\"fill\",intrinsicHeight:419.0475905022673,intrinsicWidth:952.3808875051529,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1070.6+0),pixelHeight:880,pixelWidth:2e3,sizes:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 160px, 1px)`,src:\"https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GZ4D2mNuFWinHYGRzfws2HQ4Y.png 2000w\"},className:\"framer-5eb428\",\"data-framer-name\":\"Process_A\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-8tm4jf hidden-4otcdl\",\"data-framer-name\":\"Images Research\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pavjij-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jSlfto7gX\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:15,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:\"jSlfto7gX\",intervalControl:6.5,itemAmount:1,layoutId:\"jSlfto7gX\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of qualitative UX Research on remote readability and accessibility\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg 1930w\"},className:\"framer-174x49j\",\"data-framer-name\":\"GVB5_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o4fisk-container\",inComponentSlot:true,nodeId:\"z_1Ne8Q3k\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"z_1Ne8Q3k\",layoutId:\"z_1Ne8Q3k\",r5hNHa5iX:\"Testing remote legibility of screens fro GVB\",style:{height:\"100%\"},variant:\"jJEjAPD5A\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of UX Research in a riding bus to judge readability of screens\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg 1930w\"},className:\"framer-11fc8cd\",\"data-framer-name\":\"GVB3_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-src5dl-container\",inComponentSlot:true,nodeId:\"lKsEhSzs1\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"lKsEhSzs1\",layoutId:\"lKsEhSzs1\",r5hNHa5iX:\"Testing the concept in a riding bus for GVB\",style:{height:\"100%\"},variant:\"jJEjAPD5A\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of Contectual and observational UX Research in a cleanroom\",fit:\"fit\",intrinsicHeight:539.9999632154218,intrinsicWidth:919.0475564424726,pixelHeight:1134,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg 1930w\"},className:\"framer-30iley\",\"data-framer-name\":\"Beliefs_Cleanroom1_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14mkhpq-container\",inComponentSlot:true,nodeId:\"r8QPkjbno\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"r8QPkjbno\",layoutId:\"r8QPkjbno\",r5hNHa5iX:\"Research in a lab environment for Thermo Fisher\",style:{height:\"100%\"},variant:\"jJEjAPD5A\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of UX Research and in-depth on-site interviews with patients\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg 1930w\"},className:\"framer-h7zcbb\",\"data-framer-name\":\"Sapiens5_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4ecqvy-container\",inComponentSlot:true,nodeId:\"jEmG8sfAy\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"jEmG8sfAy\",layoutId:\"jEmG8sfAy\",r5hNHa5iX:\"in-depth patient interviews for Sapiens / Medtronic\",style:{height:\"100%\"},variant:\"jJEjAPD5A\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of observational UX Research in a medical environment (operating room)\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg 1930w\"},className:\"framer-1dop8i4\",\"data-framer-name\":\"Sapiens4_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5e3xij-container\",inComponentSlot:true,nodeId:\"Gry4yeOH8\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"Gry4yeOH8\",layoutId:\"Gry4yeOH8\",r5hNHa5iX:\"Operating room observations for Sapiens / Medtronic\",style:{height:\"100%\"},variant:\"jJEjAPD5A\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of UX Research using a 1:1 scale mock-up of an industrial 3D Printer\",fit:\"fill\",intrinsicHeight:945.833295749295,intrinsicWidth:1608.3332694239111,pixelHeight:1135,pixelWidth:1930,sizes:\"920px\",src:\"https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg\",srcSet:\"https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg 1930w\"},className:\"framer-xbpkwl\",\"data-framer-name\":\"HP_FP1_UER1_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y2ex2h-container\",inComponentSlot:true,nodeId:\"OEH5KihPN\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"OEH5KihPN\",layoutId:\"OEH5KihPN\",r5hNHa5iX:\"1:1 mockup exploratory user test for HP 3D Printing\",style:{height:\"100%\"},variant:\"jJEjAPD5A\",width:\"100%\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:180,type:\"spring\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-n5ts5a hidden-e6ud1r hidden-1f5whiz\",\"data-framer-name\":\"Images Research\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18cn1cf-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ma6DCB9md\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:10,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:32,showMouseControls:true},autoPlayControl:true,borderRadius:10,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:\"Ma6DCB9md\",intervalControl:6.5,itemAmount:1,layoutId:\"Ma6DCB9md\",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:6,dotsInset:6,dotSize:6,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of qualitative UX Research on remote readability and accessibility\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YIPT3R6gLu1xmR77q0xPE8cwWtw.jpg 1930w\"},className:\"framer-1l6wf4y\",\"data-framer-name\":\"GVB5_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pwg3le-container\",inComponentSlot:true,nodeId:\"HD2taiT5G\",rendersWithMotion:true,scopeId:\"osEtIoRax\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"HD2taiT5G\",layoutId:\"HD2taiT5G\",r5hNHa5iX:\"Testing remote legibility of screens fro GVB\",style:{height:\"100%\"},variant:\"KgUrdhoit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of UX Research in a riding bus to judge readability of screens\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kjrUuDrAsJ3bJtNSmFjrTdtY.jpg 1930w\"},className:\"framer-quztsf\",\"data-framer-name\":\"GVB3_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4qiqep-container\",inComponentSlot:true,nodeId:\"rh0SIKXsH\",rendersWithMotion:true,scopeId:\"osEtIoRax\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"rh0SIKXsH\",layoutId:\"rh0SIKXsH\",r5hNHa5iX:\"Testing the concept in a riding bus for GVB\",style:{height:\"100%\"},variant:\"KgUrdhoit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of Contectual and observational UX Research in a cleanroom\",fit:\"fit\",intrinsicHeight:539.9999632154218,intrinsicWidth:919.0475564424726,pixelHeight:1134,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/akHY3wQg2EHMLHTvrY2CMPbaUBY.jpg 1930w\"},className:\"framer-183wnam\",\"data-framer-name\":\"Beliefs_Cleanroom1_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uosoh7-container\",inComponentSlot:true,nodeId:\"G5H3J9AZR\",rendersWithMotion:true,scopeId:\"osEtIoRax\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"G5H3J9AZR\",layoutId:\"G5H3J9AZR\",r5hNHa5iX:\"Research in a lab environment for Thermo Fisher\",style:{height:\"100%\"},variant:\"KgUrdhoit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of UX Research and in-depth on-site interviews with patients\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sTqENfjwjrC9uQfiEWR9d1h8rt8.jpg 1930w\"},className:\"framer-otif20\",\"data-framer-name\":\"Sapiens5_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17algj6-container\",inComponentSlot:true,nodeId:\"N4cTYgTfU\",rendersWithMotion:true,scopeId:\"osEtIoRax\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"N4cTYgTfU\",layoutId:\"N4cTYgTfU\",r5hNHa5iX:\"in-depth patient interviews for Sapiens / Medtronic\",style:{height:\"100%\"},variant:\"KgUrdhoit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of observational UX Research in a medical environment (operating room)\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.0475564424726,pixelHeight:1135,pixelWidth:1930,positionX:\"center\",positionY:\"center\",sizes:\"920px\",src:\"https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dK9d8Egy5VC1PA51iAGHoukSg.jpg 1930w\"},className:\"framer-8n2m78\",\"data-framer-name\":\"Sapiens4_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bf7x5u-container\",inComponentSlot:true,nodeId:\"cWYdqBvpx\",rendersWithMotion:true,scopeId:\"osEtIoRax\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"cWYdqBvpx\",layoutId:\"cWYdqBvpx\",r5hNHa5iX:\"Operating room observations for Sapiens / Medtronic\",style:{height:\"100%\"},variant:\"KgUrdhoit\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of UX Research using a 1:1 scale mock-up of an industrial 3D Printer\",fit:\"fill\",intrinsicHeight:945.833295749295,intrinsicWidth:1608.3332694239111,pixelHeight:1135,pixelWidth:1930,sizes:\"920px\",src:\"https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg\",srcSet:\"https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KieMgDZI0ggZQWdWzQ6HOiEa2s.jpg 1930w\"},className:\"framer-x6904w\",\"data-framer-name\":\"HP_FP1_UER1_AR1\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rxn4op-container\",inComponentSlot:true,nodeId:\"Ygx6NC7cc\",rendersWithMotion:true,scopeId:\"osEtIoRax\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(CaptionCarousel,{height:\"100%\",id:\"Ygx6NC7cc\",layoutId:\"Ygx6NC7cc\",r5hNHa5iX:\"1:1 mockup exploratory user test for HP 3D Printing\",style:{height:\"100%\"},variant:\"KgUrdhoit\",width:\"100%\"})})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:180,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-810nzc\",\"data-framer-appear-id\":\"810nzc\",\"data-framer-name\":\"Section Research\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Research & user testing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",children:\"Research & user testing\"})}),className:\"framer-ijrzzn\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Experiencing the design challenge first-hand in the actual context should be the start of every project. No amount of theorizing or mapping excercises can replace this. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Regarding user testing: Choose wisely on what to validate, at what project stage, with which fidelity level and for what audience. And spend the time where it matters most: small-scale repetitive testing in the early stages of a project.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:\"Experiencing the design challenge first-hand in the actual context should be the start of every project. No amount of theorizing or mapping excercises can replace this. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:\"Regarding user testing: Choose wisely on what to validate, at what project stage, with which fidelity level and for what audience. And spend the time where it matters most: small-scale repetitive testing in the early stages of a project.\"})]}),className:\"framer-xcyly1\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kgq80m\",\"data-framer-name\":\"Images Whiteboarding\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4w411-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xBC_LImNV\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:10,arrowRadius:40,arrowSize:32,showMouseControls:true},borderRadius:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:6,dotsInset:6,dotSize:6,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true,showScrollbar:false}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:15,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"xBC_LImNV\",layoutId:\"xBC_LImNV\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of whiteboarding of a user interface design\",fit:\"fill\",intrinsicHeight:1080.476116874596,intrinsicWidth:1838.0951128849451,pixelHeight:2269,pixelWidth:3860,sizes:\"920.3438px\",src:\"https://framerusercontent.com/images/rnWJreAwDq8gHQIpQgyvA3hII.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/rnWJreAwDq8gHQIpQgyvA3hII.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rnWJreAwDq8gHQIpQgyvA3hII.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rnWJreAwDq8gHQIpQgyvA3hII.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rnWJreAwDq8gHQIpQgyvA3hII.jpg 3860w\"},className:\"framer-tdr1k7\",\"data-framer-name\":\"Whiteboard01_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of whiteboarding of a navigational structure\",fit:\"fill\",intrinsicHeight:1088.0951639746372,intrinsicWidth:1838.0951128849451,pixelHeight:2285,pixelWidth:3860,sizes:\"920.6565px\",src:\"https://framerusercontent.com/images/DgkbwkEBM4gd1XXXtIEoYeseIs.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DgkbwkEBM4gd1XXXtIEoYeseIs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DgkbwkEBM4gd1XXXtIEoYeseIs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DgkbwkEBM4gd1XXXtIEoYeseIs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DgkbwkEBM4gd1XXXtIEoYeseIs.jpg 3860w\"},className:\"framer-14pw064\",\"data-framer-name\":\"Whiteboard02_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of whiteboarding 3\",fit:\"fill\",intrinsicHeight:1079.9999264308435,intrinsicWidth:1838.0951128849451,pixelHeight:2268,pixelWidth:3860,sizes:\"920.7496px\",src:\"https://framerusercontent.com/images/picRjQTo43CMY0JPJFAeLPTvlk.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/picRjQTo43CMY0JPJFAeLPTvlk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/picRjQTo43CMY0JPJFAeLPTvlk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/picRjQTo43CMY0JPJFAeLPTvlk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/picRjQTo43CMY0JPJFAeLPTvlk.jpg 3860w\"},className:\"framer-v575d6\",\"data-framer-name\":\"Whiteboard03_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of whiteboarding of a physical button design\",fit:\"fill\",intrinsicHeight:1080.476116874596,intrinsicWidth:1838.0951128849451,pixelHeight:2269,pixelWidth:3860,sizes:\"920.3438px\",src:\"https://framerusercontent.com/images/dM0uTlzMMd1oyYstFEvtZfDUps.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dM0uTlzMMd1oyYstFEvtZfDUps.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dM0uTlzMMd1oyYstFEvtZfDUps.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dM0uTlzMMd1oyYstFEvtZfDUps.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dM0uTlzMMd1oyYstFEvtZfDUps.jpg 3860w\"},className:\"framer-2s594g\",\"data-framer-name\":\"Whiteboard04_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Photo of whiteboarding of a software architecture solution\",fit:\"fill\",intrinsicHeight:1079.9999264308435,intrinsicWidth:1838.0951128849451,pixelHeight:2268,pixelWidth:3860,sizes:\"920.7496px\",src:\"https://framerusercontent.com/images/yWUK4hRyRxTgvHdk6AQWASLY.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/yWUK4hRyRxTgvHdk6AQWASLY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yWUK4hRyRxTgvHdk6AQWASLY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yWUK4hRyRxTgvHdk6AQWASLY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yWUK4hRyRxTgvHdk6AQWASLY.jpg 3860w\"},className:\"framer-1fowodj\",\"data-framer-name\":\"Whiteboard05_AR1\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-xzy5z0\",\"data-framer-appear-id\":\"xzy5z0\",\"data-framer-name\":\"Section Whiteboarding\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Whiteboarding\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",children:\"Whiteboarding\"})}),className:\"framer-r1y37k\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"The ability to grab the moment an quickly visualize key insights, scenarios or ideas during a heated debate is very powerful. It can allow a team to get together and commit on what to build next.  \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:\"The ability to grab the moment an quickly visualize key insights, scenarios or ideas during a heated debate is very powerful. It can allow a team to get together and commit on what to build next.  \"})}),className:\"framer-1phac26\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15q170q\",\"data-framer-name\":\"Images Wireframing\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ythqfm-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HHPdZmsu2\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:10,arrowRadius:40,arrowSize:32,showMouseControls:true},borderRadius:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:6,dotsInset:6,dotSize:6,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true,showScrollbar:false}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:15,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"HHPdZmsu2\",layoutId:\"HHPdZmsu2\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of wireframing by means of handsketches 1\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.5237468862252,pixelHeight:1135,pixelWidth:1931,positionX:\"center\",positionY:\"center\",sizes:\"920.415px\",src:\"https://framerusercontent.com/images/9PyHTJFJZwlz7RNELmgLJXBtA.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/9PyHTJFJZwlz7RNELmgLJXBtA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/9PyHTJFJZwlz7RNELmgLJXBtA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9PyHTJFJZwlz7RNELmgLJXBtA.jpg 1931w\"},className:\"framer-1tijhj6\",\"data-framer-name\":\"Wireframe1_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of wireframing by means of handsketches 2\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.5237468862252,pixelHeight:1135,pixelWidth:1931,positionX:\"center\",positionY:\"center\",sizes:\"920.415px\",src:\"https://framerusercontent.com/images/0dDFMqYTHE4hREPc08SJoczkjo.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0dDFMqYTHE4hREPc08SJoczkjo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0dDFMqYTHE4hREPc08SJoczkjo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0dDFMqYTHE4hREPc08SJoczkjo.jpg 1931w\"},className:\"framer-l1nc5q\",\"data-framer-name\":\"Wireframe2_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of wireframing in a digital tool 2\",fit:\"fit\",intrinsicHeight:540.4761536591743,intrinsicWidth:919.5237468862252,pixelHeight:1135,pixelWidth:1931,positionX:\"center\",positionY:\"center\",sizes:\"920.415px\",src:\"https://framerusercontent.com/images/lE0spuhwgC3KBJ048X1Z8SXtA0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/lE0spuhwgC3KBJ048X1Z8SXtA0.png?scale-down-to=512 512w,https://framerusercontent.com/images/lE0spuhwgC3KBJ048X1Z8SXtA0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lE0spuhwgC3KBJ048X1Z8SXtA0.png 1931w\"},className:\"framer-1dkrqak\",\"data-framer-name\":\"Wireframe3_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of wireframing in a digital tool 1\",fit:\"fit\",intrinsicHeight:542.3809154341847,intrinsicWidth:919.5237468862252,pixelHeight:1139,pixelWidth:1931,positionX:\"center\",positionY:\"center\",sizes:\"920.5733px\",src:\"https://framerusercontent.com/images/il0pPzq8rZZSkfYDwslYp4I8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/il0pPzq8rZZSkfYDwslYp4I8.png?scale-down-to=512 512w,https://framerusercontent.com/images/il0pPzq8rZZSkfYDwslYp4I8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/il0pPzq8rZZSkfYDwslYp4I8.png 1931w\"},className:\"framer-vsxyby\",\"data-framer-name\":\"Wireframe4_AR1\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-j9lm6\",\"data-framer-appear-id\":\"j9lm6\",\"data-framer-name\":\"Section Wireframing\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Wireframing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",children:\"Wireframing\"})}),className:\"framer-7kesox\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Wirefaming comes in many shapes, but the essence is always the same: iterating as fast as possible. This also asks for a fidelity level that matches the phase the project is in, varying from pen and paper at the beginning to digital techniques when you have to hash out the fine interaction details \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:\"Wirefaming comes in many shapes, but the essence is always the same: iterating as fast as possible. This also asks for a fidelity level that matches the phase the project is in, varying from pen and paper at the beginning to digital techniques when you have to hash out the fine interaction details \"})}),className:\"framer-11foopp\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ljlwr\",\"data-framer-name\":\"Images Prototyping\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16joucd-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"VwSE452E7\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwSnDsvM8:{style:{height:\"100%\",width:\"100%\"}},uMJOcIfuo:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:10,arrowRadius:40,arrowSize:32,showMouseControls:true},borderRadius:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:6,dotsInset:6,dotSize:6,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true,showScrollbar:false},style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"videos about prototyping\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:15,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"VwSE452E7\",layoutId:\"VwSE452E7\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"stretch\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p14k6k-container\",\"data-framer-name\":\"Promesso1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"Promesso1\",nodeId:\"dMOt94HOa\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dMOt94HOa\",isMixedBorderRadius:false,layoutId:\"dMOt94HOa\",loop:true,muted:true,name:\"Promesso1\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/K4DB2tTaSxaxllD6Z2TmrVGGn4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1npx5vz-container\",\"data-framer-name\":\"GVB1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"GVB1\",nodeId:\"V8QrwqpSY\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"V8QrwqpSY\",isMixedBorderRadius:false,layoutId:\"V8QrwqpSY\",loop:true,muted:true,name:\"GVB1\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/5Y90yx6qJGzvFkMTxdtgtEzikk.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1crgvuk-container\",\"data-framer-name\":\"HPBuildmanager1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"HPBuildmanager1\",nodeId:\"ZwDkPigrc\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ZwDkPigrc\",isMixedBorderRadius:false,layoutId:\"ZwDkPigrc\",loop:true,muted:true,name:\"HPBuildmanager1\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/1R2K3s829YYuqxpFyHcHdIg4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-668l3b-container\",\"data-framer-name\":\"FrontPanelDark_Part1\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,name:\"FrontPanelDark_Part1\",nodeId:\"OQQciUr9r\",rendersWithMotion:true,scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"OQQciUr9r\",isMixedBorderRadius:false,layoutId:\"OQQciUr9r\",loop:true,muted:true,name:\"FrontPanelDark_Part1\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/cwJGeirqAyZGWhrNis1NBSoeWY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1nmg9md\",\"data-framer-appear-id\":\"1nmg9md\",\"data-framer-name\":\"Section Prototyping\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Prototyping\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",children:\"Prototyping\"})}),className:\"framer-1qe5m9d\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Interactive prototyping has been a key skill for me for over 10 years. During that time my tools changed, from Axure to Proto.io and via Pixate to Form before finally settling on my current tools, Protopie for high-fidelity and Figma for low-to-medium fidelity. I use it to communicate with myself, the team and the client\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:\"Interactive prototyping has been a key skill for me for over 10 years. During that time my tools changed, from Axure to Proto.io and via Pixate to Form before finally settling on my current tools, Protopie for high-fidelity and Figma for low-to-medium fidelity. I use it to communicate with myself, the team and the client\"})}),className:\"framer-1efdpwl\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ljmt0\",\"data-framer-name\":\"Images Systemizing\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lkfsbn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"uBVc60jWz\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:10,arrowRadius:40,arrowSize:32,showMouseControls:true},borderRadius:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:6,dotsInset:6,dotSize:6,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true,showScrollbar:false}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:15,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"uBVc60jWz\",layoutId:\"uBVc60jWz\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"image of design system 1\",fit:\"fill\",intrinsicHeight:1135,intrinsicWidth:1931,pixelHeight:1135,pixelWidth:1931,sizes:\"918.2379px\",src:\"https://framerusercontent.com/images/bXSmMZpaluIIEiZFQMmxt0n07gI.png\",srcSet:\"https://framerusercontent.com/images/bXSmMZpaluIIEiZFQMmxt0n07gI.png?scale-down-to=512 512w,https://framerusercontent.com/images/bXSmMZpaluIIEiZFQMmxt0n07gI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bXSmMZpaluIIEiZFQMmxt0n07gI.png 1931w\"},className:\"framer-ckuzn\",\"data-framer-name\":\"Atus1_AR1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"image of design system and token naming\",fit:\"fill\",intrinsicHeight:1135,intrinsicWidth:1930,pixelHeight:1135,pixelWidth:1930,sizes:\"918.2379px\",src:\"https://framerusercontent.com/images/DYs3JVeH0PlofSDHFXc6zM1IRXA.png\",srcSet:\"https://framerusercontent.com/images/DYs3JVeH0PlofSDHFXc6zM1IRXA.png?scale-down-to=512 512w,https://framerusercontent.com/images/DYs3JVeH0PlofSDHFXc6zM1IRXA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DYs3JVeH0PlofSDHFXc6zM1IRXA.png 1930w\"},className:\"framer-hrkqpe\",\"data-framer-name\":\"Atus2_AR1\"})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1u0c3lt\",\"data-framer-appear-id\":\"1u0c3lt\",\"data-framer-name\":\"Section Systemizing\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",style:{\"--framer-text-alignment\":\"left\"},children:\"Systemizing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-fnwuyf\",\"data-styles-preset\":\"DrXgd0FnG\",children:\"Systemizing\"})}),className:\"framer-3olfbc\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{uMJOcIfuo:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:\"Atoms, Tokens, Spacing systems, Aliases\u2026 \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",style:{\"--framer-text-alignment\":\"left\"},children:'I have witnessed the level of \"systemization\" of UI Design increase over the years, culminating in the modern, scalable design systems of today. These are powerful starting points that allow teams to execute at scale, but also to focus on making the difference in areas where it matters most, while not reinventing the wheel where it is not needed. '})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:\"Atoms, Tokens, Spacing systems, Aliases\u2026 \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vfrmzd\",\"data-styles-preset\":\"lmqRLXOMJ\",children:'I have witnessed the level of \"systemization\" of UI Design increase over the years, culminating in the modern, scalable design systems of today. These are powerful starting points that allow teams to execute at scale, but also to focus on making the difference in areas where it matters most, while not reinventing the wheel where it is not needed. '})]}),className:\"framer-1kwxtqj\",\"data-framer-cursor\":\"15p19y3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwSnDsvM8:{y:(componentViewport?.y||0)+0+4405.6},uMJOcIfuo:{y:(componentViewport?.y||0)+0+4242.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:755,width:`min(${componentViewport?.width||\"100vw\"}, 1440px)`,y:(componentViewport?.y||0)+0+4772.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jey1h3-container\",nodeId:\"Ez9SQbKuX\",scopeId:\"osEtIoRax\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HwSnDsvM8:{variant:\"U2zTtAuSZ\"},uMJOcIfuo:{variant:\"UBo5DOIV_\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"Ez9SQbKuX\",layoutId:\"Ez9SQbKuX\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"PXwXYJRKP\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AjFQC.framer-14rob27, .framer-AjFQC .framer-14rob27 { display: block; }\",\".framer-AjFQC.framer-e6ud1r { align-content: center; align-items: center; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-AjFQC .framer-gns09r-container { flex: none; height: auto; left: 0px; max-width: 1440px; position: sticky; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-AjFQC .framer-1a6g3su { align-content: flex-start; align-items: flex-start; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 40px 80px 40px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AjFQC .framer-15maywg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AjFQC .framer-1so66pm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AjFQC .framer-f8q8sa { flex: 1 0 0px; height: 587px; overflow: hidden; position: relative; width: 1px; }\",\".framer-AjFQC .framer-gnq7wt { align-content: flex-start; align-items: flex-start; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 40px 80px 40px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AjFQC .framer-a17zxo, .framer-AjFQC .framer-ijrzzn, .framer-AjFQC .framer-r1y37k, .framer-AjFQC .framer-7kesox, .framer-AjFQC .framer-1qe5m9d, .framer-AjFQC .framer-3olfbc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFQC .framer-1sxw8du, .framer-AjFQC .framer-xcyly1, .framer-AjFQC .framer-1phac26, .framer-AjFQC .framer-11foopp, .framer-AjFQC .framer-1efdpwl, .framer-AjFQC .framer-1kwxtqj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFQC .framer-13d7z74 { align-content: flex-start; align-items: flex-start; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 80px 40px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AjFQC .framer-5eb428 { aspect-ratio: 2.2727272727272725 / 1; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 1px; }\",\".framer-AjFQC .framer-8tm4jf, .framer-AjFQC .framer-kgq80m, .framer-AjFQC .framer-15q170q, .framer-AjFQC .framer-8ljlwr, .framer-AjFQC .framer-8ljmt0 { align-content: center; align-items: center; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-AjFQC .framer-1pavjij-container { aspect-ratio: 1.702127659574468 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 118px); position: relative; width: 100%; }\",\".framer-AjFQC .framer-174x49j, .framer-AjFQC .framer-11fc8cd, .framer-AjFQC .framer-h7zcbb, .framer-AjFQC .framer-1dop8i4, .framer-AjFQC .framer-xbpkwl, .framer-AjFQC .framer-1l6wf4y, .framer-AjFQC .framer-quztsf, .framer-AjFQC .framer-otif20, .framer-AjFQC .framer-8n2m78, .framer-AjFQC .framer-x6904w { aspect-ratio: 1.7037037037037037 / 1; height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-o4fisk-container, .framer-AjFQC .framer-src5dl-container, .framer-AjFQC .framer-14mkhpq-container, .framer-AjFQC .framer-4ecqvy-container, .framer-AjFQC .framer-5e3xij-container, .framer-AjFQC .framer-1y2ex2h-container { bottom: 12px; flex: none; height: 22px; left: 12px; position: absolute; width: auto; }\",\".framer-AjFQC .framer-30iley, .framer-AjFQC .framer-183wnam { aspect-ratio: 1.7037037037037037 / 1; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-n5ts5a { align-content: center; align-items: center; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-AjFQC .framer-18cn1cf-container { aspect-ratio: 1.70316301703163 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 117px); position: relative; width: 100%; }\",\".framer-AjFQC .framer-1pwg3le-container, .framer-AjFQC .framer-4qiqep-container, .framer-AjFQC .framer-uosoh7-container, .framer-AjFQC .framer-17algj6-container, .framer-AjFQC .framer-1bf7x5u-container, .framer-AjFQC .framer-1rxn4op-container { flex: none; height: 22px; left: 50%; position: absolute; top: 4px; transform: translateX(-50%); width: auto; }\",\".framer-AjFQC .framer-810nzc, .framer-AjFQC .framer-xzy5z0, .framer-AjFQC .framer-j9lm6, .framer-AjFQC .framer-1nmg9md, .framer-AjFQC .framer-1u0c3lt { align-content: flex-start; align-items: flex-start; background-color: var(--token-ca02205d-3824-44ec-bc46-22ffff31cbe0, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 40px 80px 100px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-AjFQC .framer-k4w411-container, .framer-AjFQC .framer-ythqfm-container, .framer-AjFQC .framer-16joucd-container, .framer-AjFQC .framer-1lkfsbn-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AjFQC .framer-tdr1k7, .framer-AjFQC .framer-2s594g { aspect-ratio: 1.7011899515204936 / 1; height: var(--framer-aspect-ratio-supported, 541px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-14pw064 { aspect-ratio: 1.6892778993435449 / 1; height: var(--framer-aspect-ratio-supported, 545px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-v575d6, .framer-AjFQC .framer-1fowodj { aspect-ratio: 1.7019400352733685 / 1; height: var(--framer-aspect-ratio-supported, 541px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-1tijhj6, .framer-AjFQC .framer-l1nc5q, .framer-AjFQC .framer-1dkrqak { aspect-ratio: 1.7013215859030837 / 1; height: var(--framer-aspect-ratio-supported, 541px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-vsxyby { aspect-ratio: 1.6953467954345918 / 1; height: var(--framer-aspect-ratio-supported, 543px); overflow: visible; position: relative; width: 920px; }\",\".framer-AjFQC .framer-p14k6k-container, .framer-AjFQC .framer-1crgvuk-container, .framer-AjFQC .framer-668l3b-container { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 585px); position: relative; width: 1040px; }\",\".framer-AjFQC .framer-1npx5vz-container { aspect-ratio: 1.778 / 1; height: var(--framer-aspect-ratio-supported, 585px); position: relative; width: 1040px; }\",\".framer-AjFQC .framer-ckuzn, .framer-AjFQC .framer-hrkqpe { aspect-ratio: 1.7004405286343611 / 1; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); height: var(--framer-aspect-ratio-supported, 540px); overflow: visible; position: relative; width: 919px; }\",\".framer-AjFQC .framer-jey1h3-container { flex: none; height: auto; max-width: 1440px; position: relative; width: 100%; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,\"@media (min-width: 720px) and (max-width: 1199.98px) { .framer-AjFQC.framer-e6ud1r { width: 720px; } .framer-AjFQC .framer-1a6g3su { padding: 30px 40px 30px 40px; } .framer-AjFQC .framer-f8q8sa { height: 350px; } .framer-AjFQC .framer-gnq7wt { padding: 40px; } .framer-AjFQC .framer-13d7z74 { padding: 0px 40px 40px 40px; } .framer-AjFQC .framer-8tm4jf, .framer-AjFQC .framer-kgq80m, .framer-AjFQC .framer-15q170q, .framer-AjFQC .framer-8ljlwr, .framer-AjFQC .framer-8ljmt0 { padding: 0px 40px 0px 40px; } .framer-AjFQC .framer-810nzc, .framer-AjFQC .framer-xzy5z0, .framer-AjFQC .framer-j9lm6, .framer-AjFQC .framer-1nmg9md, .framer-AjFQC .framer-1u0c3lt { padding: 30px 40px 100px 40px; } .framer-AjFQC .framer-1phac26 { width: 58%; } .framer-AjFQC .framer-16joucd-container { height: 376px; }}\",\"@media (max-width: 719.98px) { .framer-AjFQC.framer-e6ud1r { width: 390px; } .framer-AjFQC .framer-gns09r-container { order: 1; } .framer-AjFQC .framer-1a6g3su { max-width: unset; order: 2; padding: 20px; } .framer-AjFQC .framer-1so66pm { flex-direction: column; height: 350px; order: 3; } .framer-AjFQC .framer-f8q8sa { height: 1px; width: 100%; } .framer-AjFQC .framer-gnq7wt { flex-direction: column; order: 4; padding: 20px 20px 30px 20px; } .framer-AjFQC .framer-a17zxo, .framer-AjFQC .framer-r1y37k, .framer-AjFQC .framer-1qe5m9d { flex: none; width: 100%; } .framer-AjFQC .framer-1sxw8du, .framer-AjFQC .framer-1phac26, .framer-AjFQC .framer-1efdpwl { width: 100%; } .framer-AjFQC .framer-13d7z74 { order: 5; padding: 0px 20px 30px 20px; } .framer-AjFQC .framer-5eb428 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; } .framer-AjFQC .framer-n5ts5a { order: 8; } .framer-AjFQC .framer-810nzc { flex-direction: column; gap: 15px; order: 9; padding: 15px 20px 80px 20px; } .framer-AjFQC .framer-ijrzzn, .framer-AjFQC .framer-7kesox, .framer-AjFQC .framer-3olfbc { flex: none; order: 0; width: 100%; } .framer-AjFQC .framer-xcyly1, .framer-AjFQC .framer-11foopp, .framer-AjFQC .framer-1kwxtqj { order: 1; width: 100%; } .framer-AjFQC .framer-kgq80m { order: 10; padding: 0px 20px 0px 20px; } .framer-AjFQC .framer-xzy5z0 { flex-direction: column; gap: 15px; order: 11; padding: 15px 20px 80px 20px; } .framer-AjFQC .framer-15q170q { order: 12; padding: 0px 20px 0px 20px; } .framer-AjFQC .framer-j9lm6 { flex-direction: column; gap: 15px; order: 13; padding: 15px 20px 80px 20px; } .framer-AjFQC .framer-8ljlwr { order: 14; padding: 0px 20px 0px 20px; } .framer-AjFQC .framer-16joucd-container { height: 206px; } .framer-AjFQC .framer-1nmg9md { flex-direction: column; gap: 15px; order: 15; padding: 15px 20px 80px 20px; } .framer-AjFQC .framer-8ljmt0 { order: 16; padding: 0px 20px 0px 20px; } .framer-AjFQC .framer-1u0c3lt { flex-direction: column; gap: 15px; order: 17; padding: 15px 20px 80px 20px; } .framer-AjFQC .framer-jey1h3-container { order: 18; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7202\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HwSnDsvM8\":{\"layout\":[\"fixed\",\"auto\"]},\"uMJOcIfuo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerosEtIoRax=withCSS(Component,css,\"framer-AjFQC\");export default FramerosEtIoRax;FramerosEtIoRax.displayName=\"Process\";FramerosEtIoRax.defaultProps={height:7202,width:1200};addFonts(FramerosEtIoRax,[{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+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.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\"}]},...MainNavigationFonts,...CaptionCarouselFonts,...SlideshowFonts,...CarouselFonts,...VideoFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerosEtIoRax\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HwSnDsvM8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uMJOcIfuo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7202\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1200\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "u9BAIG,SAASA,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACC,GAAgB,IAAIH,EAAiBI,GAAO,WAAW,gBAAgB,EAAE,OAAO,CAAC,CAAE,EAAE,CAAC,CAAC,EAASL,CAAc,CAK/M,SAASM,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,EAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,EAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,EAAaX,EAAYa,GAAG,EAAEA,CAAC,EAAQX,EAAUM,EAAO,IAAI,EAKxpBM,EAAcH,EAAaC,EAAcC,GAAGA,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOJ,EAAaG,EAAcD,GAAGA,IAAI,OAAO,UAAU,SAAS,EAAQG,EAAY,CAAC,GAAGC,GAAiB,QAAQL,EAAc,cAAAE,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAd,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAgB,EAAY,UAAAd,CAAS,CAAE,CAAC,SAASgB,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,GAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,EAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,EAAK,EAAE,CACvK,IAAMC,EAAcZ,EAAM,OAAO,OAAO,EAAQa,EAASC,GAAS,MAAMF,CAAa,EAAQG,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAQC,GAAWP,EAAK,EAAQQ,GAAUhC,EAAK,IAAI,IAAS,CAAC,YAAAiC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,EAAS,EAAEpB,EAAgB,CAAC,KAAAqB,GAAK,SAAAC,GAAS,MAAAC,EAAK,EAAErB,EAAgB,CAAC,UAAAsB,GAAU,WAAAC,GAAW,aAAAC,GAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE9B,EAAkB,CAAC,cAAA+B,GAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAoB,CAAC,kBAAAuC,GAAkB,UAAAC,EAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE/C,EAE5oBjB,EAAWf,EAAO,MAAS,EAG3BiB,GAAajB,EAAO,MAAS,EAI7BgF,GAAc/E,EAAe,CAAC,EAAQe,GAAoBiE,GAAW,CAACD,GAAc,IAAI/D,GAAa,UAAU,OAAUA,GAAa,QAAQgE,CAAS,CAAE,EAGzJlG,GAAcD,GAAW,EAEzBoG,GAAMrF,GAAO,GAAMsD,EAAS,EAAQgC,GAAItF,GAAO,GAAKsD,EAAS,EAAQiC,GAAenF,EAAegD,EAAU,EAAE,EAAQoC,GAAalF,EAAaiF,GAAe/E,GAAG,IAAIA,CAAC,EAAQiF,GAAUrF,EAAe+C,CAAS,EAAQuC,GAAepF,EAAa,CAACiF,GAAeE,EAAS,EAAE3G,EAAa,EAAQ6G,GAAarF,EAAaoF,GAAelF,GAAG,IAAIA,CAAC,EAAQoF,GAAUxF,EAAea,EAAK,QAAQ,QAAQ,EAAQ4E,GAAKvF,EAAa,CAACsF,GAAUP,GAAM,YAAYE,GAAeG,GAAeJ,GAAI,YAAYE,GAAaG,EAAY,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,CAAC,kBAAkBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,sBAAsBA,EAAO,CAAC,CAAC,uBAAuBA,EAAO,CAAC,CAAC,mBAAmBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,IAAM,EAAQC,EAAY5F,EAAO,IAAI,EAEnvB,CAAC6F,EAASC,EAAW,EAAE7G,GAASyD,EAAS,EAAE,CAAC,EAE3CqD,EAAU,CAAC,gBAAgB1C,GAAS,WAAW,CAAC,EAAQ2C,EAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,EAAW,OAAO,OAAOD,EAAU,OAAO,SAAaC,EAAW,MAAM,OAAOD,EAAU,MAAM,SAAazC,KAAOyC,EAAU,eAAe,UAAaxC,KAAY,WAAWwC,EAAU,MAAM,eAAevC,IAAY,CAAC,MAAMwC,EAAW,MAAM,QAAgBzC,KAAY,YAAWwC,EAAU,MAAM,QAAQ,IAAItC,EAAY,OAAO7B,CAAG,QAAQA,EAAI6B,EAAY,MAAMuC,EAAW,MAAM,QAAWtC,KAAa,WAAWqC,EAAU,OAAO,eAAepC,IAAa,CAAC,MAAMqC,EAAW,OAAO,QAAgBtC,KAAa,SAAQqC,EAAU,OAAO,QAAQ,IAAInC,EAAU,OAAOhC,CAAG,QAAQA,EAAIgC,EAAU,MAAMoC,EAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,EAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe7C,GAAK,GAAGN,EAAS,aAAa,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,aAAa3C,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAE,uBAAwB,UAAU,EAAKnE,IAAWmE,GAAa,YAAY,EAAEnE,GAAW,IAAMoE,GAAS,CAAC,EAAgG,GAA3F1E,IAAQ,YAAW0E,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC7D,EAAS,CAAC,IAAM8D,EAAUxG,EAAO,CAAC,CAAC,EAAEY,GAAgBgF,EAAY9C,GAAU/B,EAAWC,GAAoBC,GAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,EAAgB,aAAAC,CAAY,EAAE7F,EAAW,QAAc8F,EAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,EAAgB,OAAO,GAAGD,EAAaC,EAAgB,CAACtH,GAAWwH,EAAQ,EAAE3B,GAAMhC,CAAc,EAAE7D,GAAWwH,EAAQD,EAAazB,GAAIjC,CAAc,EAAE,QAAQ4D,EAAE,EAAEA,EAAEN,EAAU,QAAQ,OAAOM,IAAI,CAAC,GAAK,CAAC,QAAAnG,EAAQ,MAAAuE,GAAM,IAAAC,CAAG,EAAEqB,EAAU,QAAQM,CAAC,EAAK3B,EAAI0B,GAAS3B,GAAM2B,EAAQF,EAAiBhG,EAAQ,aAAa,cAAc,EAAI,EAAQA,EAAQ,aAAa,cAAc,EAAK,CAAG,CAAC,MAAMtB,GAAW,EAAE,EAAE6F,GAAMhC,CAAc,EAAE7D,GAAW,EAAE,EAAE8F,GAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ9F,EAAc,EAO/qE,IAAIqG,EAAY,KAAK,KAAKL,EAAaC,CAAe,EAAM,MAAMI,CAAW,IAC7FA,EAAYvE,EAAS,MAAIuE,EAAYvE,GAAYuE,IAAclB,GAASC,GAAYiB,CAAW,EAAG,EAAE,CAAClB,CAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,EAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,EAAY,QAAQ,QAAQ,EAAE,IAAIjF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAE,CAInZ+B,IAAUtB,GAAU,IAAI,CAACkE,GAAU,IAAItC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,GAAU,IAAI,CAACgE,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE7B,GAAU,IAAI,CAACqE,GAAU,IAAI3E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAAG,IAAMkG,GAAa,CAACC,EAAM1H,IAAS,CAAC,GAAG,CAACwB,EAAW,QAAQ,OAAO,GAAK,CAAC,QAAA8F,CAAO,EAAE9F,EAAW,QAAa,CAAC,SAAAmG,CAAQ,EAAEtB,EAAY,QAAYuB,EAAiBL,EAAEG,IAAQ,EAAE,EAAEC,EAAS,OAAO,EAAE,KAAMC,IAAe,QAAU,CAAC,IAAMC,EAAKF,EAASJ,CAAC,EAAQ5B,EAAMpE,EAAKsG,EAAK,WAAWA,EAAK,UAAgBC,GAAOvG,EAAKsG,EAAK,YAAYA,EAAK,aAAmBjC,EAAID,EAAMmC,GAAaC,GAAU,IAAOL,IAAQ,EAAoB3H,GAAS4F,EAAMC,EAAI5F,CAAM,EAAgB,EAAE+H,GAAWH,EAAajC,EAAe4B,IAAII,EAAS,OAAO,IAAGC,EAAahC,GAAc8B,IAAQ,KAAqB3H,GAAS4F,EAAMC,EAAI5F,CAAM,EAAgB+H,GAAWH,EAAahC,EAAa2B,IAAI,IAAGK,EAAajC,IAAQ4B,GAAGG,CAAM,CAAC,OAAOE,CAAa,EAAQI,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAACzG,GAAa,QAAQyG,EAAS,IAAMC,EAAQ7G,EAAK,CAAC,KAAK4G,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAE9B,EAAY,QAAQ,SAAS,CAAC,GAAG+B,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAASC,GAAM,CAAC,GAAG,CAAC9G,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,CAAY,EAAE7F,EAAW,QAAQ0G,GAAKI,GAAMjB,GAAcf,EAAS,GAAG,CAAE,EAAQiC,GAAUb,GAAO,IAAI,CAAC,GAAG,CAAClG,EAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,CAAY,EAAE7F,EAAW,QAAc8F,EAAQ7B,GAAc,IAAI,EAAQ+C,EAAWnB,EAAaf,EAAemC,EAAYC,GAAM,EAAEpC,EAAS,EAAE,KAAK,MAAMgB,EAAQkB,CAAU,CAAC,EAAEH,GAASI,EAAYf,CAAK,CAAE,EAEphD,GAAGzE,IAAW,EAAG,OAAoB0F,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGxC,EAAS,GAAG/B,IAAkB,CAACD,GAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,EAASiB,IAAI,CAAC,IAAMwB,EAAW5F,GAAU,CAACoE,GAAG,GAAMsB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMzE,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY3D,GAAiB,WAAW6H,EAAW,gBAAgBhE,GAAkB,QAAQC,GAAY,QAAQ,IAAIqD,GAASd,CAAC,EAAE,cAAc9B,GAAc,WAAWjE,EAAW,MAAM8E,EAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,CAAE,CAAI0D,KAAU6D,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ7D,EAAQ,MAAO,CAAC,OAAoBiE,EAAM,UAAU,CAAC,MAAMvC,GAAe,GAAGI,GAAa,SAAS,CAAc4B,EAAKQ,EAAO,GAAG,CAAC,IAAI9C,EAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,GAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAACoG,EAAMC,IAAQ,CAAC,IAAIC,EAAa,OAAoBX,EAAK,KAAK,CAAC,MAAMnC,EAAU,GAAGQ,GAAS,aAAa,GAAGqC,EAAM,CAAC,OAAOpG,CAAQ,GAAG,SAAsBsG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,GAAG7C,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAeyC,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGM,GAAe,QAAQhE,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,GAAkB,SAAS,CAAcyD,EAAKQ,EAAO,OAAO,CAAC,IAAIxD,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQqD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMxD,EAAU,OAAOA,EAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAeqD,EAAKQ,EAAO,OAAO,CAAC,IAAIvD,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQqD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMxD,EAAU,OAAOA,EAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEsD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGc,GAAmB,KAAKlI,EAAK,MAAMkD,GAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAGgE,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKe,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBvH,EAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAAyBwH,GAAoBxH,EAAS,CAAC,MAAM,CAAC,KAAKyH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO7G,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO7G,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAK6G,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO7G,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO7G,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAO7G,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAK6G,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAO7G,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,OAAO7G,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAK6G,EAAY,WAAW,MAAM,aAAa,OAAO7G,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAK6G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAO7G,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6G,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6G,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK6G,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6G,EAAY,MAAM,MAAM,WAAW,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK6G,EAAY,MAAM,MAAM,OAAO,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASZ,GAAI,CAAC,cAAAvD,EAAc,WAAAjE,EAAW,WAAAuH,EAAW,gBAAAe,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAJ,EAAS,YAAAhI,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,EAAK,GAAGwB,EAAK,EAAE,CAAC,IAAMkH,EAAQrJ,EAAa6E,EAAc3E,GAAG,CAAC,IAAIoJ,EAAoBC,EAAqB,GAAG,EAAG,GAAAD,EAAoB1I,EAAW,WAAW,MAAM0I,IAAsB,SAAcA,EAAoB,cAAe,OAAOb,IAAQ,EAAES,EAAgBC,EAAmB,IAAMvB,KAAa2B,EAAqB3I,EAAW,WAAW,MAAM2I,IAAuB,OAAO,OAAOA,EAAqB,cAAcH,EAAYI,GAAU5B,GAAWa,EAAYgB,GAAUD,GAAU5B,GAAsF,OAA1D1H,GAAGsJ,KAAYf,EAAMW,EAAM,EAAElJ,EAAEuJ,GAAUhB,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQO,EAAcjI,EAAI,EAAMkI,EAAI,CAAChJ,GAAM8H,EAAM,EAAEiB,EAAcjH,EAAYmH,GAAO,CAACjJ,GAAM8H,IAAQW,EAAM,EAAEM,EAAcjH,EAAYoH,GAAMlJ,GAAM8H,IAAQW,EAAM,EAAEM,EAAcjH,EAAYqH,EAAKnJ,GAAM8H,EAAM,EAAEiB,EAAcjH,EAAQ,OAAoBsF,EAAK,SAAS,CAAC,aAAa,kBAAkBU,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGtG,GAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGsJ,CAAG,MAAME,EAAK,MAAMD,EAAM,MAAME,CAAI,IAAI,EAAE,SAAsB/B,EAAKQ,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGF,EAAS,QAAAgB,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,IAAa,CAAC,OAAoBM,EAAM,UAAU,CAAC,MAAMyB,GAAkB,SAAS,CAAchC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAejC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoBf,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgBl7T,CAAC,CAAC,CAAE,CAAa,IAAMgC,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECtFvPC,GAAE,0BAA0B,CAAC,mBAAmB,aAAa,mBAAmB,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,QAAQ,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,0gCAA0gC,gkCAAgkC,4jCAA4jC,EAAeC,GAAU,eCCzgE,IAAMC,GAAoBC,EAASC,EAAc,EAAQC,GAAmCC,GAA0BC,CAAS,EAAQC,GAAkCF,GAA0BG,CAAQ,EAAQC,EAAmCJ,GAA0BK,EAAO,GAAG,EAAQC,GAAqBT,EAASU,CAAe,EAAQC,GAAeX,EAASY,EAAS,EAAQC,GAAcb,EAASc,CAAQ,EAAQC,GAAWf,EAASgB,EAAK,EAAQC,GAAYjB,EAASkB,EAAM,EAAQC,GAAYnB,EAASoB,EAAM,EAAQC,GAAY,CAAC,UAAU,gDAAgD,UAAU,sBAAsB,UAAU,uBAAuB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,EAAE,KAAK,CAAC,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,EAAE,IAAI,IAAI,IAAI,EAAE,KAAK,OAAO,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,EAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAO,CAAC,UAAU7B,GAAO,QAAQ,WAAW,EAAQ8B,GAAQ,CAAC,UAAU9B,GAAO,QAAQ,WAAW,EAAQ+B,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,EAAS,EAAExB,GAASI,CAAK,EAAQqB,EAAeC,GAAQ,IAAID,GAAiB,OAAUV,CAAY,EAAE,CAAC,OAAUA,CAAY,CAAC,EAAEY,GAAYF,CAAQ,EAAE,GAAK,CAACG,EAAYC,CAAmB,EAAEC,GAA8BP,EAAQ9C,GAAY,EAAK,EAAQsD,GAAe,OAAyIC,EAAkBC,GAAGtD,GAAkB,GAA1I,CAAa0C,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQa,EAAY,IAASxD,GAAU,EAAiBkD,IAAc,YAAtB,GAAmEO,EAAa,IAAQ,CAACzD,GAAU,GAAiBkD,IAAc,YAAuC,OAAAQ,GAAiB,CAAC,UAAU9B,GAAQ,OAAOD,EAAM,CAAC,EAAsBP,EAAKuC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAzD,EAAiB,EAAE,SAAsB0D,EAAMC,GAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAS,CAAcf,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAe2C,EAAM1E,EAAO,IAAI,CAAC,GAAG4D,GAAU,UAAUS,GAAGD,EAAkB,gBAAgBX,CAAS,EAAE,qBAAqB,SAAS,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAActB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOtB,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBpB,EAAKxC,GAAmC,CAAC,QAAQwB,GAAU,UAAU,0BAA0B,wBAAwB,SAAS,QAAQC,GAAW,OAAO,YAAY,UAAU,GAAK,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBe,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAKzC,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAKnC,EAAmC,CAAC,QAAQsB,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,gBAAgB,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBY,EAAKrC,GAAkC,CAAC,sBAAsB,GAAK,QAAQ2B,GAAW,SAAsBU,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQZ,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeY,EAAKnC,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,gBAAgB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,sDAAsD,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQe,GAA2BzB,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,sDAAsD,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQyB,GAA2BzB,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,YAAY,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBpB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,sDAAsD,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQD,GAA2BzB,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,WAAWA,GAAmB,OAAO,OAAO,kBAAkB,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAM3E,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,oBAAoB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,iSAAiS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iSAAiS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKnC,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,oBAAoB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,wDAAwD,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,QAAQe,GAA2BzB,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,wDAAwD,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,QAAQyB,GAA2BzB,GAAmB,GAAG,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,yBAAyB,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBpB,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,wDAAwD,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,QAAQD,GAA2BzB,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,0BAA0B,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgB,EAAY,GAAgBpC,EAAK,MAAM,CAAC,UAAU,8BAA8B,mBAAmB,kBAAkB,SAAsBA,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK9B,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,GAAG,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAc8B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,2EAA2E,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,+CAA+C,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,uEAAuE,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,6PAA6P,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8CAA8C,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,mEAAmE,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,yBAAyB,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kDAAkD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,qEAAqE,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sDAAsD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,+EAA+E,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wFAAwF,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sDAAsD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,6EAA6E,IAAI,OAAO,gBAAgB,iBAAiB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sDAAsD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqE,EAAa,GAAgBrC,EAAK,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,kBAAkB,SAAsBA,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK9B,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,GAAG,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAc8B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,2EAA2E,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBgC,GAAmB,SAAsBM,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,+CAA+C,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,uEAAuE,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uFAAuF,OAAO,6PAA6P,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBgC,GAAmB,SAAsBM,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8CAA8C,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,mEAAmE,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBgC,GAAmB,SAAsBM,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kDAAkD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,qEAAqE,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBgC,GAAmB,SAAsBM,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sDAAsD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,+EAA+E,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,wFAAwF,OAAO,gQAAgQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBgC,GAAmB,SAAsBM,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sDAAsD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,6EAA6E,IAAI,OAAO,gBAAgB,iBAAiB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsB9C,EAAK0C,EAA0B,CAAC,OAAO,GAAG,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,kBAAkBgC,GAAmB,SAAsBM,EAAKhC,EAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sDAAsD,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAM3E,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,mBAAmB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBU,EAAYI,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,2KAA2K,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+OAA+O,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsB4E,EAAYI,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,2KAA2K,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+OAA+O,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,SAAsBA,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,aAAa,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,CAAC,CAAC,EAAE,SAAsB9B,EAAK5B,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,EAAE,MAAM,CAAc4B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,oDAAoD,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,qDAAqD,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,qDAAqD,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,6DAA6D,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uFAAuF,OAAO,wVAAwV,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM3E,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,wBAAwB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,uMAAuM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uMAAuM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAsBA,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,aAAa,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,CAAC,CAAC,EAAE,SAAsB9B,EAAK5B,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,EAAE,MAAM,CAAc4B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,kDAAkD,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,YAAY,IAAI,wFAAwF,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,kDAAkD,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,YAAY,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,2CAA2C,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,YAAY,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,2CAA2C,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uFAAuF,OAAO,6PAA6P,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM3E,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,eAAe,wBAAwB,QAAQ,mBAAmB,sBAAsB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6SAA6S,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6SAA6S,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAsBA,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,EAAE,UAAU,CAAC,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,aAAa,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB9B,EAAK5B,EAAS,CAAC,MAAM,SAAS,UAAU,2BAA2B,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,UAAU,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,EAAE,MAAM,CAAc4B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,YAAY,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,YAAY,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAK1B,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,YAAY,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,OAAO,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,OAAO,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAK1B,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,OAAO,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,kBAAkB,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,kBAAkB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAK1B,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,kBAAkB,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,oEAAoE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,uBAAuB,gBAAgB,GAAK,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,uBAAuB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBsC,EAAK1B,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,uBAAuB,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekE,EAAM3E,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,sBAAsB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oUAAoU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oUAAoU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAsBA,EAAK0C,EAA0B,CAAC,SAAsB1C,EAAKtC,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,aAAa,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,CAAC,CAAC,EAAE,SAAsB9B,EAAK5B,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,GAAG,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,EAAE,MAAM,CAAc4B,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,2BAA2B,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,eAAe,mBAAmB,WAAW,CAAC,EAAe9C,EAAK8C,EAAM,CAAC,WAAW,CAAC,IAAI,0CAA0C,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM3E,EAAmC,CAAC,QAAQ2B,EAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,sBAAsB,QAAQC,EAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB9B,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAW4C,EAAS,CAAC,SAAsB5C,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBU,EAAYI,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gDAA2C,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,+VAA+V,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsB4E,EAAYI,EAAS,CAAC,SAAS,CAAc5C,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gDAA2C,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+VAA+V,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,qBAAqB,UAAU,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGV,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBpB,EAAK0C,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOtB,GAAmB,OAAO,OAAO,YAAY,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBpB,EAAKtC,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBsC,EAAK2C,EAAkB,CAAC,WAAWb,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB9B,EAAKxB,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ+C,GAAI,CAAC,kFAAkF,kFAAkF,sVAAsV,8NAA8N,4cAA4c,iQAAiQ,kWAAkW,mHAAmH,4cAA4c,0YAA0Y,2YAA2Y,4cAA4c,gXAAgX,ufAAuf,qLAAqL,qcAAqc,4UAA4U,4ZAA4Z,8XAA8X,oLAAoL,sWAAsW,skBAAskB,kOAAkO,iNAAiN,oLAAoL,kNAAkN,iPAAiP,mLAAmL,4PAA4P,+JAA+J,0ZAA0Z,uIAAuI,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,+xBAA+xB,kmEAAkmE,EAavqwEC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,UAAUA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uLAAuL,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3F,GAAoB,GAAGU,GAAqB,GAAGE,GAAe,GAAGE,GAAc,GAAGE,GAAW,GAAGE,GAAY,GAAGE,GAAY,GAAG2E,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACnoE,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,oCAAsC,4JAA0L,yBAA2B,OAAO,sBAAwB,OAAO,6BAA+B,OAAO,yBAA2B,QAAQ,kBAAoB,OAAO,sBAAwB,IAAI,qBAAuB,4BAA4B,qBAAuB,OAAO,qBAAuB,OAAO,4BAA8B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "fontStore", "fonts", "css", "className", "MainNavigationFonts", "getFonts", "LDUxi1AFY_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "RichTextWithOptimizedAppearEffect", "RichText", "MotionDivWithOptimizedAppearEffect", "motion", "CaptionCarouselFonts", "NEmm3mzh_default", "SlideshowFonts", "Slideshow", "CarouselFonts", "Carousel", "VideoFonts", "Video", "FooterFonts", "lWL1n3moQ_default", "CursorFonts", "Zz7B4KiNC_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transition4", "animation5", "animation6", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "getLoadingLazyAtYPosition", "Image2", "css", "FramerosEtIoRax", "withCSS", "osEtIoRax_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
