{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js", "ssg:https://framerusercontent.com/modules/UITIVlCtofG5YQys83EJ/Js79m0bjwCr2VuQatALt/lxdJF1sPD.js", "ssg:https://framerusercontent.com/modules/c3ywnGF2km7vtK2Tmu8l/TA25jNmH0RCuakV7bw33/SlCw0t4kG.js", "ssg:https://framerusercontent.com/modules/sW2auzXjVbzesr1B0vu1/2o7pN5ubq3GGOYgjSvcA/W92IWyjal.js", "ssg:https://framerusercontent.com/modules/DK4dHbLcwHiGLKiNZ2bE/T25w1D2KC5UZbuMGWz9M/bVgnu5tkH.js", "ssg:https://framerusercontent.com/modules/lsNZ32M4cFvSB6Xb69VA/WrRsJgLxdTJnIHHbYM7f/MQcEY9Zve.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(!document.hidden);useEffect(()=>{const onVisibilityChange=()=>setIsVisible(!document.hidden);document.addEventListener(\"visibilitychange\",onVisibilityChange,false);return()=>{document.removeEventListener(\"visibilitychange\",onVisibilityChange);};},[]);return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,memo,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\n// we abort here so that the promise isn't left around in case the ref is never set\ncontroller.abort();return;}refCallbackResolve?.(node);},configurable:true});// no need to create a promise if current already exists\nif(current)return current;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",reject);}).catch(()=>{});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const amountChildren=Children.count(filteredSlots);const hasChildren=amountChildren>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];// when the slots change, generate new array\n},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(!parentRef.current)return;const firstChild=childrenRef[0].current;const lastChild=childrenRef[1].current;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const[firstChild,lastChild]=childrenRef;if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),amountChildren>1?awaitRefCallback(lastChild,controller):true]);}catch{controller.abort();}frame.read(measure,false,true);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{scheduleMeasure();},[itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);if(isCanvas){if(currentItem!==startFrom){setCurrentItem(startFrom);}}/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing||amountChildren<=1)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(index===0){if(childIndex===0){ref=childrenRef[0];}else if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}}return /*#__PURE__*/_jsx(Slide,{ref:ref,slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},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:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},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:-100,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:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */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\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/memo(/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;const fallbackRef=useRef();/**\n         * Unique offsets + scroll range [0, 1, 1, 0]\n         */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n         * Effects\n         */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{const node=ref?.current??fallbackRef.current;node?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);const key=slideKey+\"child\";return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",id:key,children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref??fallbackRef,key,style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined})})});}));const Dot=/*#__PURE__*/memo(function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&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},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});});/* Dot Styles */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\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import TalksLibrary from\"https://framerusercontent.com/modules/hP2ho7eweBgs5KzbHP7a/cWrtVdLyalhvKODxfU39/iZ_2dKvKk.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zjIqVFZfcNG8iYkZyinO/Vw9g0s9EdSmoXBBKuiIR/GPty63viU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Wk8LPqTb0Vfez5SbgkG1/rihutzRiHZ0GFVvMSjNG/MAiAqyAkM.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/puQ7DLcm0yMRF27MLKEz/4UHIg9VXpJIz9fUggQkt/qvetN1Hh8.js\";import SpeakerCard from\"https://framerusercontent.com/modules/qmscGAfswExn3xseM0Ub/YLdKGlt67Tc5aENy8liz/IbDMdeL6w.js\";import GlobalPrimaryBtn from\"https://framerusercontent.com/modules/wa9LQiCnewd7NTkSCvS4/3fC0s8sixybXNggP7FCR/t_ORA6Te5.js\";const GlobalPrimaryBtnFonts=getFonts(GlobalPrimaryBtn);const SpeakerCardFonts=getFonts(SpeakerCard);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"Y530I6FIQ\",\"rtJkmdjCn\",\"wS_MecHh7\",\"NifJDVxKC\"];const serializationHash=\"framer-w7NZD\";const variantClassNames={NifJDVxKC:\"framer-v-br6i2x\",rtJkmdjCn:\"framer-v-1wqtpdq\",wS_MecHh7:\"framer-v-1g1193t\",Y530I6FIQ:\"framer-v-z28qd8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-5};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const query=prequery=>prequery({from:{alias:\"EAJ_2ZT43\",data:TalksLibrary,type:\"Collection\"},select:[],where:{left:{collection:\"EAJ_2ZT43\",name:\"iXykrMnJ5\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Design Leadership Summit 2025\"},type:\"BinaryOperation\"}});const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"EAJ_2ZT43\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Large Desktop\":\"Y530I6FIQ\",Desktop:\"rtJkmdjCn\",Mobile:\"NifJDVxKC\",Tablet:\"wS_MecHh7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Y530I6FIQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y530I6FIQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"section\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:2400,pixelWidth:3840,src:\"https://framerusercontent.com/images/KtZPhnjiPEvMNGq3fhfh9u7lIRE.png\"},className:cx(scopingClassNames,\"framer-z28qd8\",className,classNames),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"Y530I6FIQ\",ref:refBinding,style:{...style},...addPropertyOverrides({NifJDVxKC:{\"data-framer-name\":\"Mobile\"},rtJkmdjCn:{\"data-framer-name\":\"Desktop\"},wS_MecHh7:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17z82sn\",\"data-framer-name\":\"Blend Mode\",layoutDependency:layoutDependency,layoutId:\"vxu8Qi1PD\",style:{backdropFilter:\"blur(0px)\",background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.77) 40.36037685634854%, rgba(0, 0, 0, 0) 100%)\",WebkitBackdropFilter:\"blur(0px)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wgva0i\",\"data-framer-name\":\"Blend Mode\",layoutDependency:layoutDependency,layoutId:\"MnWrO0VPo\",style:{backdropFilter:\"blur(0px)\",background:\"conic-gradient(from 0deg at 50% 50%, rgba(0, 0, 0, 0) 0deg, rgba(0, 0, 0, 0.77) 185.18930796030403deg, rgba(0, 0, 0, 0) 360deg)\",WebkitBackdropFilter:\"blur(0px)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mdgz4a\",layoutDependency:layoutDependency,layoutId:\"LI0QAIiP8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16jim5r\",\"data-framer-name\":\"Container Top\",layoutDependency:layoutDependency,layoutId:\"LWzKjZvyh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-170h6j6\",\"data-framer-name\":\"Heading Wrap\",layoutDependency:layoutDependency,layoutId:\"e9Gf9Dhhw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1f4crjs\",\"data-styles-preset\":\"MAiAqyAkM\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Design Talks Library\"})}),className:\"framer-113kwud\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ehtdausbS\",style:{\"--extracted-1of0zx5\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",textShadow:\"none\"},variants:{NifJDVxKC:{textShadow:\"0px 1px 2px rgba(0,0,0,0.25)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NifJDVxKC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-119uvf2\",\"data-styles-preset\":\"GPty63viU\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Design Talks Library\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qxxv7p\",\"data-framer-name\":\"Text Wrap\",layoutDependency:layoutDependency,layoutId:\"x5a9Uf3tN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mljoog\",\"data-styles-preset\":\"qvetN1Hh8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Learn from the best of design leaders and\\xa0 global design teams we\u2019ve hosted at our DesignX events and conferences.\"})}),className:\"framer-1w74q5o\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cXL9zGw_q\",style:{\"--extracted-r6o4lv\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eOtEqlRmR\"},implicitPathVariables:undefined},{href:{webPageId:\"eOtEqlRmR\"},implicitPathVariables:undefined},{href:{webPageId:\"eOtEqlRmR\"},implicitPathVariables:undefined},{href:{webPageId:\"eOtEqlRmR\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+100+(((componentViewport?.height||1025)-200-917)/2+0+0)+0+0+0+0+200,...addPropertyOverrides({NifJDVxKC:{y:(componentViewport?.y||0)+50+(((componentViewport?.height||200)-50-835.4)/2+0+0)+0+0+0+58.4+0+200},rtJkmdjCn:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||885)-200-777)/2+0+0)+0+0+0+0+200},wS_MecHh7:{y:(componentViewport?.y||0)+100+(((componentViewport?.height||200)-200-777)/2+0+0)+0+0+0+0+200}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-80hxpw-container\",layoutDependency:layoutDependency,layoutId:\"c8QJnnFWU-container\",nodeId:\"c8QJnnFWU\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",whileHover:animation,children:/*#__PURE__*/_jsx(GlobalPrimaryBtn,{aw_EFWml0:\"View All Talks\",G7PGXS3U3:resolvedLinks[0],height:\"100%\",id:\"c8QJnnFWU\",layoutId:\"c8QJnnFWU\",variant:\"paBzGc8dX\",w0_ducWEC:false,width:\"100%\",...addPropertyOverrides({NifJDVxKC:{G7PGXS3U3:resolvedLinks[3]},rtJkmdjCn:{G7PGXS3U3:resolvedLinks[1]},wS_MecHh7:{G7PGXS3U3:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1see02b-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"tYA0ra4h0-container\",nodeId:\"tYA0ra4h0\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.6)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-120,arrowPosition:\"bottom-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",id:\"tYA0ra4h0\",intervalControl:3,itemAmount:3,layoutId:\"tYA0ra4h0\",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:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gfge1s-container\",\"data-framer-name\":\"Slider // Talk 1 \",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"W5q_m0NuB-container\",name:\"Slider // Talk 1 \",nodeId:\"W5q_m0NuB\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"Design at Scale is People\",height:\"100%\",id:\"W5q_m0NuB\",layoutId:\"W5q_m0NuB\",name:\"Slider // Talk 1 \",qJpybTy4z:addImageAlt({pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/Kz38pvxeeGPWygcDN65uAuE.jpg\",srcSet:\"https://framerusercontent.com/images/Kz38pvxeeGPWygcDN65uAuE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Kz38pvxeeGPWygcDN65uAuE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Kz38pvxeeGPWygcDN65uAuE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Kz38pvxeeGPWygcDN65uAuE.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Consultant & Author\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Peter Merholz\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1abtd90-container\",\"data-framer-name\":\"Slider // Talk 2\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"b_hRCcedS-container\",name:\"Slider // Talk 2\",nodeId:\"b_hRCcedS\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"The Future of Design Leadership\",height:\"100%\",id:\"b_hRCcedS\",layoutId:\"b_hRCcedS\",name:\"Slider // Talk 2\",qJpybTy4z:addImageAlt({pixelHeight:2001,pixelWidth:3e3,positionX:\"74.9%\",positionY:\"57.9%\",src:\"https://framerusercontent.com/images/RcN9v1cMPTqcoakKPUT12l3FhSI.jpg\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Founder & Coach\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Alison Gretz\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1n9eufp-container\",\"data-framer-name\":\"Slider // Talk 3\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"hE2B_9D4r-container\",name:\"Slider // Talk 3\",nodeId:\"hE2B_9D4r\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"You Will Have a SuperPower\",height:\"100%\",id:\"hE2B_9D4r\",layoutId:\"hE2B_9D4r\",name:\"Slider // Talk 3\",qJpybTy4z:addImageAlt({pixelHeight:2001,pixelWidth:3e3,src:\"https://framerusercontent.com/images/f3OrcUTwnd5OqR8net29HhT4Ag.jpg\",srcSet:\"https://framerusercontent.com/images/f3OrcUTwnd5OqR8net29HhT4Ag.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/f3OrcUTwnd5OqR8net29HhT4Ag.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/f3OrcUTwnd5OqR8net29HhT4Ag.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/f3OrcUTwnd5OqR8net29HhT4Ag.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Founder\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Ryan Rumsey\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wi09xo-container\",\"data-framer-name\":\"Slider // Talk 4\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"NlQqTTz89-container\",name:\"Slider // Talk 4\",nodeId:\"NlQqTTz89\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"Decision Making in a Time of Uncertainty\",height:\"100%\",id:\"NlQqTTz89\",layoutId:\"NlQqTTz89\",name:\"Slider // Talk 4\",qJpybTy4z:addImageAlt({pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/16oO47nbGc4d8aGND38fAhIHRo.jpg\",srcSet:\"https://framerusercontent.com/images/16oO47nbGc4d8aGND38fAhIHRo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/16oO47nbGc4d8aGND38fAhIHRo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/16oO47nbGc4d8aGND38fAhIHRo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/16oO47nbGc4d8aGND38fAhIHRo.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Christina Goldschmidt\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8bixej-container\",\"data-framer-name\":\"Slider // Talk 5\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"v3CjiFneI-container\",name:\"Slider // Talk 5\",nodeId:\"v3CjiFneI\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"Values-Driven Design\",height:\"100%\",id:\"v3CjiFneI\",layoutId:\"v3CjiFneI\",name:\"Slider // Talk 5\",qJpybTy4z:addImageAlt({pixelHeight:1079,pixelWidth:1919,src:\"https://framerusercontent.com/images/EQyyU49d4gxt8U7sVs2Vmg9Xbek.png\",srcSet:\"https://framerusercontent.com/images/EQyyU49d4gxt8U7sVs2Vmg9Xbek.png?scale-down-to=512 512w,https://framerusercontent.com/images/EQyyU49d4gxt8U7sVs2Vmg9Xbek.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EQyyU49d4gxt8U7sVs2Vmg9Xbek.png 1919w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Sales Director\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Levon Sharrow\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1pz79c-container\",\"data-framer-name\":\"Slider // Talk 6\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"PwGm9lir7-container\",name:\"Slider // Talk 6\",nodeId:\"PwGm9lir7\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:'Operational lessons from \"Atypical\" brains',height:\"100%\",id:\"PwGm9lir7\",layoutId:\"PwGm9lir7\",name:\"Slider // Talk 6\",qJpybTy4z:addImageAlt({pixelHeight:1468,pixelWidth:2150,src:\"https://framerusercontent.com/images/pOdbNGLhBrrSXhyxVEcLifnQYw.png\",srcSet:\"https://framerusercontent.com/images/pOdbNGLhBrrSXhyxVEcLifnQYw.png?scale-down-to=512 512w,https://framerusercontent.com/images/pOdbNGLhBrrSXhyxVEcLifnQYw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pOdbNGLhBrrSXhyxVEcLifnQYw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/pOdbNGLhBrrSXhyxVEcLifnQYw.png 2150w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Sales Director\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Nariman Gathers\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4twt9q-container\",\"data-framer-name\":\"Slider // Talk 7\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"g3VBIRHl3-container\",name:\"Slider // Talk 7\",nodeId:\"g3VBIRHl3\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"A lyrical approach to design leadership\",height:\"100%\",id:\"g3VBIRHl3\",layoutId:\"g3VBIRHl3\",name:\"Slider // Talk 7\",qJpybTy4z:addImageAlt({pixelHeight:2e3,pixelWidth:3e3,src:\"https://framerusercontent.com/images/7OwUHOLnfXS4N7Yd6Oze4m5s9AU.jpg\",srcSet:\"https://framerusercontent.com/images/7OwUHOLnfXS4N7Yd6Oze4m5s9AU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7OwUHOLnfXS4N7Yd6Oze4m5s9AU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7OwUHOLnfXS4N7Yd6Oze4m5s9AU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7OwUHOLnfXS4N7Yd6Oze4m5s9AU.jpg 3000w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Sales Director\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Archana Thiagarajan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:\"400px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tvp2yi-container\",\"data-framer-name\":\"Slider // Talk 8\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"MT3nN0yi3-container\",name:\"Slider // Talk 8\",nodeId:\"MT3nN0yi3\",rendersWithMotion:true,scopeId:\"lxdJF1sPD\",children:/*#__PURE__*/_jsx(SpeakerCard,{GATpcaFAr:\"How to Deconstruct a User Interface\",height:\"100%\",id:\"MT3nN0yi3\",layoutId:\"MT3nN0yi3\",name:\"Slider // Talk 8\",qJpybTy4z:addImageAlt({pixelHeight:1926,pixelWidth:2094,src:\"https://framerusercontent.com/images/TKBHv0qH96zemBJKdanyZKsvo.jpg\",srcSet:\"https://framerusercontent.com/images/TKBHv0qH96zemBJKdanyZKsvo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TKBHv0qH96zemBJKdanyZKsvo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TKBHv0qH96zemBJKdanyZKsvo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TKBHv0qH96zemBJKdanyZKsvo.jpg 2094w\"},\"\"),style:{height:\"100%\",width:\"100%\"},Uc1RJGAEt:\"Sales Director\",variant:\"XTpyS2Xpx\",width:\"100%\",XPD5z2h_0:\"Bob Baxley\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({NifJDVxKC:{itemAmount:1},wS_MecHh7:{itemAmount:2}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fm33c7\",layoutDependency:layoutDependency,layoutId:\"EAJ_2ZT43\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:12,query:{from:{alias:\"EAJ_2ZT43\",data:TalksLibrary,type:\"Collection\"},select:[],where:{left:{collection:\"EAJ_2ZT43\",name:\"iXykrMnJ5\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"Design Leadership Summit 2025\"},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w7NZD.framer-1ibkvo3, .framer-w7NZD .framer-1ibkvo3 { display: block; }\",\".framer-w7NZD.framer-z28qd8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 60px 100px 60px; position: relative; width: 1440px; }\",\".framer-w7NZD .framer-17z82sn { bottom: 0px; flex: none; left: -37px; overflow: hidden; position: absolute; right: -45px; top: -288px; z-index: 0; }\",\".framer-w7NZD .framer-1wgva0i { bottom: -120px; flex: none; left: -37px; overflow: hidden; position: absolute; right: -45px; top: -288px; z-index: 0; }\",\".framer-w7NZD .framer-mdgz4a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w7NZD .framer-16jim5r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w7NZD .framer-170h6j6 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 520px; }\",\".framer-w7NZD .framer-113kwud { flex: none; height: 66px; position: relative; white-space: pre-wrap; width: 520px; word-break: break-word; word-wrap: break-word; }\",\".framer-w7NZD .framer-1qxxv7p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 572px; }\",\".framer-w7NZD .framer-1w74q5o { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-w7NZD .framer-80hxpw-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-w7NZD .framer-1see02b-container { flex: none; height: 480px; position: relative; width: 100%; }\",\".framer-w7NZD .framer-1gfge1s-container, .framer-w7NZD .framer-1abtd90-container, .framer-w7NZD .framer-1n9eufp-container, .framer-w7NZD .framer-1wi09xo-container, .framer-w7NZD .framer-8bixej-container, .framer-w7NZD .framer-1pz79c-container, .framer-w7NZD .framer-4twt9q-container, .framer-w7NZD .framer-tvp2yi-container { height: 480px; position: relative; width: 400px; }\",\".framer-w7NZD .framer-fm33c7 { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-w7NZD.framer-v-1wqtpdq.framer-z28qd8 { width: 992px; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-mdgz4a, .framer-w7NZD.framer-v-1g1193t .framer-mdgz4a { gap: 50px; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-16jim5r, .framer-w7NZD.framer-v-1g1193t .framer-16jim5r { gap: 23px; justify-content: center; order: 0; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-170h6j6, .framer-w7NZD.framer-v-1g1193t .framer-170h6j6 { gap: 0px; width: 386px; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-113kwud, .framer-w7NZD.framer-v-1g1193t .framer-113kwud, .framer-w7NZD.framer-v-br6i2x .framer-1qxxv7p { width: 100%; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-1qxxv7p, .framer-w7NZD.framer-v-1g1193t .framer-1qxxv7p { flex: 1 0 0px; width: 1px; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-1see02b-container, .framer-w7NZD.framer-v-1g1193t .framer-1see02b-container { height: 400px; order: 1; }\",\".framer-w7NZD.framer-v-1wqtpdq .framer-fm33c7, .framer-w7NZD.framer-v-1g1193t .framer-fm33c7 { order: 2; }\",\".framer-w7NZD.framer-v-1g1193t.framer-z28qd8 { width: 810px; }\",\".framer-w7NZD.framer-v-br6i2x.framer-z28qd8 { gap: 50px; padding: 50px 30px 0px 30px; width: 480px; }\",\".framer-w7NZD.framer-v-br6i2x .framer-mdgz4a { gap: 50px; max-width: unset; overflow: hidden; }\",\".framer-w7NZD.framer-v-br6i2x .framer-16jim5r { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; justify-content: center; order: 0; }\",\".framer-w7NZD.framer-v-br6i2x .framer-170h6j6 { align-self: unset; gap: 0px; height: min-content; width: 100%; }\",\".framer-w7NZD.framer-v-br6i2x .framer-113kwud { height: auto; width: 100%; }\",\".framer-w7NZD.framer-v-br6i2x .framer-1see02b-container { height: 400px; order: 1; width: 360px; }\",\".framer-w7NZD.framer-v-br6i2x .framer-fm33c7 { order: 2; width: 360px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1025\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rtJkmdjCn\":{\"layout\":[\"fixed\",\"auto\"]},\"wS_MecHh7\":{\"layout\":[\"fixed\",\"auto\"]},\"NifJDVxKC\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerlxdJF1sPD=withCSS(Component,css,\"framer-w7NZD\");export default FramerlxdJF1sPD;FramerlxdJF1sPD.displayName=\"Talks Library\";FramerlxdJF1sPD.defaultProps={height:1025,width:1440};addPropertyControls(FramerlxdJF1sPD,{variant:{options:[\"Y530I6FIQ\",\"rtJkmdjCn\",\"wS_MecHh7\",\"NifJDVxKC\"],optionTitles:[\"Large Desktop\",\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerlxdJF1sPD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...GlobalPrimaryBtnFonts,...SpeakerCardFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlxdJF1sPD\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1025\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rtJkmdjCn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wS_MecHh7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NifJDVxKC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lxdJF1sPD.map", "// Generated by Framer (fed3180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/zjIqVFZfcNG8iYkZyinO/Vw9g0s9EdSmoXBBKuiIR/GPty63viU.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/Wk8LPqTb0Vfez5SbgkG1/rihutzRiHZ0GFVvMSjNG/MAiAqyAkM.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/xdcSZEQCBryCwajKVA0m/JDkKnQsUhpk81ITZLseD/o4n1HhGWl.js\";import GlobalPrimaryBtn from\"https://framerusercontent.com/modules/wa9LQiCnewd7NTkSCvS4/3fC0s8sixybXNggP7FCR/t_ORA6Te5.js\";const GlobalPrimaryBtnFonts=getFonts(GlobalPrimaryBtn);const cycleOrder=[\"dAfOw_Syq\",\"GphdrRY9F\",\"TA__avK_I\",\"odxGdfhO1\"];const serializationHash=\"framer-JlNh3\";const variantClassNames={dAfOw_Syq:\"framer-v-rc1pdj\",GphdrRY9F:\"framer-v-12xa3ir\",odxGdfhO1:\"framer-v-187ytzn\",TA__avK_I:\"framer-v-m9hg5a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-5};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Large Desktop\":\"dAfOw_Syq\",Desktop:\"GphdrRY9F\",Mobile:\"odxGdfhO1\",Tablet:\"TA__avK_I\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dAfOw_Syq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dAfOw_Syq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1l3arve=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TA__avK_I\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-rc1pdj\",className,classNames),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"dAfOw_Syq\",ref:refBinding,style:{...style},...addPropertyOverrides({GphdrRY9F:{\"data-framer-name\":\"Desktop\"},odxGdfhO1:{\"data-framer-name\":\"Mobile\"},TA__avK_I:{\"data-framer-name\":\"Tablet\",\"data-highlight\":true,onTap:onTap1l3arve}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fc2sqk\",\"data-framer-name\":\"Content Wrap\",layoutDependency:layoutDependency,layoutId:\"c2M469sM4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7n4itn\",layoutDependency:layoutDependency,layoutId:\"zAhBew9kj\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-145ln5y\",layoutDependency:layoutDependency,layoutId:\"huJqtsnNP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkz7fo\",layoutDependency:layoutDependency,layoutId:\"GBeuIR94R\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1f4crjs\",\"data-styles-preset\":\"MAiAqyAkM\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Help shape the community\"})}),className:\"framer-uhii1e\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AVTG48jU9\",style:{\"--extracted-1of0zx5\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({odxGdfhO1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-119uvf2\",\"data-styles-preset\":\"GPty63viU\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"Help shape the community\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"As we are ramping up our in-person events, there are many ways to get involved with us! If you\u2019re interested in volunteering, speaking, or sponsoring, we would love to hear from you:\"})}),className:\"framer-14akifu\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zmU9y7fcE\",style:{\"--extracted-r6o4lv\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\",opacity:.9},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+40+(((componentViewport?.height||648)-80-446)/2+0+0)+0+0+0+0+330,...addPropertyOverrides({GphdrRY9F:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0+0+0+330},odxGdfhO1:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-(Math.max(0,((componentViewport?.height||710)-0-0)/1)*1+0))/2+0+0)+0+(0*((Math.max(0,((componentViewport?.height||710)-0-0)/1)*1-0-0)/2)+0)+50+0+0+193.4},TA__avK_I:{y:(componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0+0+0+315}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1wd98st-container\",layoutDependency:layoutDependency,layoutId:\"G5EqXD2Si-container\",nodeId:\"G5EqXD2Si\",rendersWithMotion:true,scopeId:\"SlCw0t4kG\",whileHover:animation,children:/*#__PURE__*/_jsx(GlobalPrimaryBtn,{aw_EFWml0:\"Reach out to us\",G7PGXS3U3:\"mailto:support@designx.community\",height:\"100%\",id:\"G5EqXD2Si\",layoutId:\"G5EqXD2Si\",variant:\"paBzGc8dX\",w0_ducWEC:false,width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ubgpkc\",layoutDependency:layoutDependency,layoutId:\"Z2MHVhBa8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||648)-80-446)/2+0+0)+0+0),pixelHeight:2001,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"393.25px\",src:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg\",srcSet:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg 3000w\"},className:\"framer-1rq2cjn\",layoutDependency:layoutDependency,layoutId:\"bMVPJj9MK\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({GphdrRY9F:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0),pixelHeight:2001,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:\"250.3217px\",src:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg\",srcSet:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg 3000w\"}},odxGdfhO1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-(Math.max(0,((componentViewport?.height||710)-0-0)/1)*1+0))/2+0+0)+0+(1*((Math.max(0,((componentViewport?.height||710)-0-0)/1)*1-0-0)/2)+0)+0),pixelHeight:2001,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:`calc(max(${componentViewport?.width||\"100vw\"} - 50px, 50px) * 0.5139)`,src:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg\",srcSet:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg 3000w\"}},TA__avK_I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0),pixelHeight:2001,pixelWidth:3e3,positionX:\"center\",positionY:\"center\",sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1300px) * 0.58 - 39px, 1px) * 0.5139)`,src:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg\",srcSet:\"https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/a5nOe5P0Nx2ye0vP4GIWGRw6uBw.jpg 3000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p82t7b\",layoutDependency:layoutDependency,layoutId:\"IcGwsG9uc\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||648)-80-446)/2+0+0)+0+0+0+0),pixelHeight:2001,pixelWidth:3e3,sizes:\"306.75px\",src:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg\",srcSet:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg 3000w\"},className:\"framer-kahknt\",layoutDependency:layoutDependency,layoutId:\"sIL6UeHcT\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({GphdrRY9F:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0+0+0),pixelHeight:2001,pixelWidth:3e3,sizes:\"221.7383px\",src:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg\",srcSet:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg 3000w\"}},odxGdfhO1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-(Math.max(0,((componentViewport?.height||710)-0-0)/1)*1+0))/2+0+0)+0+(1*((Math.max(0,((componentViewport?.height||710)-0-0)/1)*1-0-0)/2)+0)+0+0+0),pixelHeight:2001,pixelWidth:3e3,sizes:`max(max(${componentViewport?.width||\"100vw\"} - 50px, 50px) * 0.4861 - 15px, 1px)`,src:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg\",srcSet:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg 3000w\"}},TA__avK_I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0+0+0),pixelHeight:2001,pixelWidth:3e3,sizes:`max(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1300px) * 0.58 - 39px, 1px) * 0.4861 - 15px, 1px)`,src:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg\",srcSet:\"https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/DzlAEvfqbfd9ZeoKH3TgnKKafY.jpg 3000w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||648)-80-446)/2+0+0)+0+0+0+195),pixelHeight:2e3,pixelWidth:3e3,sizes:\"306.75px\",src:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg\",srcSet:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg 3000w\"},className:\"framer-71hlql\",layoutDependency:layoutDependency,layoutId:\"TfUa7GbWm\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({GphdrRY9F:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0+0+195),pixelHeight:2e3,pixelWidth:3e3,sizes:\"221.7383px\",src:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg\",srcSet:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg 3000w\"}},odxGdfhO1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||710)-0-(Math.max(0,((componentViewport?.height||710)-0-0)/1)*1+0))/2+0+0)+0+(1*((Math.max(0,((componentViewport?.height||710)-0-0)/1)*1-0-0)/2)+0)+0+0+195),pixelHeight:2e3,pixelWidth:3e3,sizes:`max(max(${componentViewport?.width||\"100vw\"} - 50px, 50px) * 0.4861 - 15px, 1px)`,src:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg\",srcSet:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg 3000w\"}},TA__avK_I:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+40+(((componentViewport?.height||526)-80-446)/2+0+0)+0+0+0+195),pixelHeight:2e3,pixelWidth:3e3,sizes:`max(max(min(${componentViewport?.width||\"100vw\"} - 80px, 1300px) * 0.58 - 39px, 1px) * 0.4861 - 15px, 1px)`,src:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg\",srcSet:\"https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KYIKxn3otvZI8ilJuE8N0pEM.jpg 3000w\"}}},baseVariant,gestureVariant)})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JlNh3.framer-1hzf32p, .framer-JlNh3 .framer-1hzf32p { display: block; }\",\".framer-JlNh3.framer-rc1pdj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 648px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1440px; }\",\".framer-JlNh3 .framer-1fc2sqk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-JlNh3 .framer-7n4itn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 446px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42%; }\",\".framer-JlNh3 .framer-145ln5y { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-JlNh3 .framer-jkz7fo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-JlNh3 .framer-uhii1e { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-JlNh3 .framer-14akifu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JlNh3 .framer-1wd98st-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-JlNh3 .framer-1ubgpkc { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JlNh3 .framer-1rq2cjn { flex: none; height: 100%; overflow: hidden; position: relative; width: 55%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JlNh3 .framer-1p82t7b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-JlNh3 .framer-kahknt { flex: none; height: 180px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JlNh3 .framer-71hlql { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-JlNh3.framer-v-12xa3ir.framer-rc1pdj { height: min-content; width: 992px; }\",\".framer-JlNh3.framer-v-12xa3ir .framer-1fc2sqk { width: 907px; }\",\".framer-JlNh3.framer-v-12xa3ir .framer-1rq2cjn, .framer-JlNh3.framer-v-m9hg5a .framer-1rq2cjn { width: 51%; }\",\".framer-JlNh3.framer-v-m9hg5a.framer-rc1pdj { cursor: pointer; height: min-content; width: 810px; }\",\".framer-JlNh3.framer-v-m9hg5a .framer-1fc2sqk { width: 100%; }\",\".framer-JlNh3.framer-v-m9hg5a .framer-145ln5y { gap: 0px; }\",\".framer-JlNh3.framer-v-m9hg5a .framer-jkz7fo { padding: 0px 0px 32px 0px; }\",\".framer-JlNh3.framer-v-187ytzn.framer-rc1pdj { gap: 0px; height: 710px; padding: 0px 25px 0px 25px; width: 480px; }\",\".framer-JlNh3.framer-v-187ytzn .framer-1fc2sqk { align-content: unset; align-items: unset; display: grid; flex: 1 0 0px; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 1px; justify-content: center; max-width: unset; order: 0; overflow: hidden; width: 100%; }\",\".framer-JlNh3.framer-v-187ytzn .framer-7n4itn { align-self: start; height: min-content; justify-self: start; order: 0; padding: 50px 0px 0px 0px; width: 100%; }\",\".framer-JlNh3.framer-v-187ytzn .framer-145ln5y { flex: none; height: min-content; justify-content: flex-start; }\",\".framer-JlNh3.framer-v-187ytzn .framer-jkz7fo { padding: 0px; }\",\".framer-JlNh3.framer-v-187ytzn .framer-1ubgpkc { align-self: start; flex: none; height: min-content; justify-self: start; order: 1; width: 100%; }\",\".framer-JlNh3.framer-v-187ytzn .framer-1rq2cjn { height: 355px; width: 51%; }\",\".framer-JlNh3.framer-v-187ytzn .framer-1p82t7b { height: 355px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 648\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GphdrRY9F\":{\"layout\":[\"fixed\",\"auto\"]},\"TA__avK_I\":{\"layout\":[\"fixed\",\"auto\"]},\"odxGdfhO1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerSlCw0t4kG=withCSS(Component,css,\"framer-JlNh3\");export default FramerSlCw0t4kG;FramerSlCw0t4kG.displayName=\"Team\";FramerSlCw0t4kG.defaultProps={height:648,width:1440};addPropertyControls(FramerSlCw0t4kG,{variant:{options:[\"dAfOw_Syq\",\"GphdrRY9F\",\"TA__avK_I\",\"odxGdfhO1\"],optionTitles:[\"Large Desktop\",\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSlCw0t4kG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...GlobalPrimaryBtnFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSlCw0t4kG\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"648\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GphdrRY9F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TA__avK_I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"odxGdfhO1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/RKItsO77SIHkfWj7F5CC/W5EORJmsJowgveFuGC7E/enl7pFu0A.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mKU2HwPDDK0A910IJzlu/2vzNwHxA5PB11xCXiHsO/hdEtFlNWu.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/xdcSZEQCBryCwajKVA0m/JDkKnQsUhpk81ITZLseD/o4n1HhGWl.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/puQ7DLcm0yMRF27MLKEz/4UHIg9VXpJIz9fUggQkt/qvetN1Hh8.js\";const RichTextWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(RichText));const FeatherFonts=getFonts(Feather);const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"cVtllRK_l\",\"eYwQL039x\",\"WIxeYJeHr\",\"iJXPzNLGh\"];const serializationHash=\"framer-0VJnd\";const variantClassNames={cVtllRK_l:\"framer-v-1w6c3ql\",eYwQL039x:\"framer-v-mr5k1g\",iJXPzNLGh:\"framer-v-axsjhw\",WIxeYJeHr:\"framer-v-13unrpb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.2,delay:.1,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:80};const transition3={bounce:.2,delay:.2,duration:.8,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.2,delay:.5,duration:.9,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={bounce:.2,delay:.6,duration:1,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation5={opacity:1,rotate:180,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Large Desktop\":\"cVtllRK_l\",Desktop:\"eYwQL039x\",Mobile:\"iJXPzNLGh\",Tablet:\"WIxeYJeHr\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cVtllRK_l\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cVtllRK_l\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:5652,pixelWidth:7680,positionX:\"center\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/6KPmy69pcURkU6FWlJyh1tVSA8.png\"},className:cx(scopingClassNames,\"framer-1w6c3ql\",className,classNames),\"data-framer-name\":\"Large Desktop\",layoutDependency:layoutDependency,layoutId:\"cVtllRK_l\",ref:refBinding,style:{...style},...addPropertyOverrides({eYwQL039x:{\"data-framer-name\":\"Desktop\"},iJXPzNLGh:{\"data-framer-name\":\"Mobile\"},WIxeYJeHr:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xw360j\",\"data-framer-name\":\"Content Wrap\",layoutDependency:layoutDependency,layoutId:\"MvUyImKhb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lld4cg\",\"data-framer-name\":\"Heading Wrap\",layoutDependency:layoutDependency,layoutId:\"mJ6HYJcSm\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-31e8k0\",\"data-framer-name\":\"Container Top\",layoutDependency:layoutDependency,layoutId:\"G0fAk56BX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y847au\",\"data-framer-name\":\"Heading Wrap\",layoutDependency:layoutDependency,layoutId:\"JpGVceoVK\",children:[/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-xheb7e\",\"data-styles-preset\":\"hdEtFlNWu\",style:{\"--framer-text-alignment\":\"center\"},children:\"A Community for designers by designers\"})}),className:\"framer-ckdph1\",\"data-framer-appear-id\":\"ckdph1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"IEyRzzfa0\",optimized:true,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iJXPzNLGh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-hpd965\",\"data-styles-preset\":\"enl7pFu0A\",style:{\"--framer-text-alignment\":\"center\"},children:\"A Community for designers by designers\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFXWithOptimizedAppearEffect,{__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-mljoog\",\"data-styles-preset\":\"qvetN1Hh8\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255)))\"},children:\"A \"}),\"space where designers across disciplines can connect, learn, and grow together. From local meetups and workshops to global conferences, our goal is to foster conversations that matter\u2014at the crossroads of design, technology, and business.\"]})}),className:\"framer-1y23p43\",\"data-framer-appear-id\":\"1y23p43\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],initial:animation1,layoutDependency:layoutDependency,layoutId:\"xBZoSTWin\",optimized:true,style:{\"--extracted-1w3ko1f\":\"var(--token-b509272c-aa41-4afc-a4c4-5d5f01608a83, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},variants:{iJXPzNLGh:{\"--extracted-r6o4lv\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iJXPzNLGh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255)))\"},children:\"A space where designers across disciplines can connect, learn, and grow together. From local meetups and workshops to global conferences, our goal is to foster conversations that matter\u2014at the crossroads of design, technology, and business.\"})})}},baseVariant,gestureVariant)})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17mkh85\",\"data-framer-name\":\"Btn and Social Icons\",layoutDependency:layoutDependency,layoutId:\"RwrRwAsN3\",children:/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation3,className:\"framer-39rv9g\",\"data-framer-appear-id\":\"39rv9g\",\"data-framer-name\":\"Btn\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"nJG7euDQH\",optimized:true,children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"E9aDN2AKT\"},motionChild:true,nodeId:\"ohKoPQqJ_\",scopeId:\"W92IWyjal\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1r2b1sg framer-1w0ou3s\",\"data-framer-name\":\"Btn Text\",layoutDependency:layoutDependency,layoutId:\"ohKoPQqJ_\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,boxShadow:\"4px 4px 8px 0px rgba(0, 0, 0, 0.1)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",children:\"Join the Community\"})}),className:\"framer-mautf8\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I6px_H7fi\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{iJXPzNLGh:{\"--extracted-r6o4lv\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},WIxeYJeHr:{\"--extracted-r6o4lv\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({iJXPzNLGh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0)))\"},children:\"Join the Community\"})})},WIxeYJeHr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-mljoog\",\"data-styles-preset\":\"qvetN1Hh8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0)))\"},children:\"Join the Community\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"E9aDN2AKT\"},motionChild:true,nodeId:\"gefhxIz1_\",scopeId:\"W92IWyjal\",children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1dr4ns9 framer-1w0ou3s\",\"data-framer-appear-id\":\"1dr4ns9\",\"data-framer-name\":\"Btn Icon\",initial:animation5,layoutDependency:layoutDependency,layoutId:\"gefhxIz1_\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:500,borderBottomRightRadius:500,borderTopLeftRadius:500,borderTopRightRadius:500,boxShadow:\"4px 4px 8px 0px rgba(0, 0, 0, 0.1)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cytr2y-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PGM8M5pcj-container\",nodeId:\"PGM8M5pcj\",rendersWithMotion:true,scopeId:\"W92IWyjal\",children:/*#__PURE__*/_jsx(Feather,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"PGM8M5pcj\",layoutId:\"PGM8M5pcj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0VJnd.framer-1w0ou3s, .framer-0VJnd .framer-1w0ou3s { display: block; }\",\".framer-0VJnd.framer-1w6c3ql { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 200px 100px 150px 100px; position: relative; width: 1440px; }\",\".framer-0VJnd .framer-xw360j { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0VJnd .framer-1lld4cg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0VJnd .framer-31e8k0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 708px; }\",\".framer-0VJnd .framer-1y847au { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0VJnd .framer-ckdph1 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 706px; z-index: 2; }\",\".framer-0VJnd .framer-1y23p43 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0VJnd .framer-17mkh85 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 31px 0px 31px 0px; position: relative; width: 100%; }\",\".framer-0VJnd .framer-39rv9g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0VJnd .framer-1r2b1sg { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 15px 25px 15px 25px; position: relative; text-decoration: none; width: min-content; }\",\".framer-0VJnd .framer-mautf8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0VJnd .framer-1dr4ns9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 15px 25px 15px 25px; position: relative; text-decoration: none; width: 50px; }\",\".framer-0VJnd .framer-1cytr2y-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-0VJnd.framer-v-mr5k1g.framer-1w6c3ql { padding: 200px 150px 80px 150px; width: 992px; }\",\".framer-0VJnd.framer-v-mr5k1g .framer-xw360j { gap: 7px; justify-content: flex-start; }\",\".framer-0VJnd.framer-v-mr5k1g .framer-31e8k0, .framer-0VJnd.framer-v-axsjhw .framer-31e8k0 { width: 100%; }\",\".framer-0VJnd.framer-v-mr5k1g .framer-1y847au { height: 346px; }\",\".framer-0VJnd.framer-v-mr5k1g .framer-17mkh85 { padding: 15px 0px 31px 0px; }\",\".framer-0VJnd.framer-v-13unrpb.framer-1w6c3ql { padding: 167px 40px 50px 40px; width: 810px; }\",\".framer-0VJnd.framer-v-13unrpb .framer-xw360j { align-content: center; align-items: center; align-self: unset; gap: 0px; height: min-content; justify-content: center; }\",\".framer-0VJnd.framer-v-13unrpb .framer-1lld4cg { height: 368px; }\",\".framer-0VJnd.framer-v-13unrpb .framer-31e8k0 { flex: 1 0 0px; height: 1px; padding: 0px 50px 0px 50px; width: 100%; }\",\".framer-0VJnd.framer-v-13unrpb .framer-1y847au, .framer-0VJnd.framer-v-13unrpb .framer-1y23p43 { flex: 1 0 0px; height: 1px; }\",\".framer-0VJnd.framer-v-axsjhw.framer-1w6c3ql { gap: 0px; padding: 150px 50px 50px 50px; width: 480px; }\",\".framer-0VJnd.framer-v-axsjhw .framer-xw360j { align-content: center; align-items: center; align-self: unset; flex: none; gap: unset; height: min-content; justify-content: space-between; width: 100%; }\",\".framer-0VJnd.framer-v-axsjhw .framer-1lld4cg { gap: 0px; }\",\".framer-0VJnd.framer-v-axsjhw .framer-ckdph1 { width: 100%; z-index: 0; }\",\".framer-0VJnd.framer-v-axsjhw .framer-17mkh85 { padding: 25px 0px 0px 0px; width: min-content; }\",\".framer-0VJnd.framer-v-axsjhw .framer-1r2b1sg { padding: 10px 20px 10px 20px; }\",\".framer-0VJnd.framer-v-axsjhw .framer-1dr4ns9 { height: 45px; padding: 15px; width: 45px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 820\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eYwQL039x\":{\"layout\":[\"fixed\",\"auto\"]},\"WIxeYJeHr\":{\"layout\":[\"fixed\",\"auto\"]},\"iJXPzNLGh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW92IWyjal=withCSS(Component,css,\"framer-0VJnd\");export default FramerW92IWyjal;FramerW92IWyjal.displayName=\"Lab/Hero v20\";FramerW92IWyjal.defaultProps={height:820,width:1440};addPropertyControls(FramerW92IWyjal,{variant:{options:[\"cVtllRK_l\",\"eYwQL039x\",\"WIxeYJeHr\",\"iJXPzNLGh\"],optionTitles:[\"Large Desktop\",\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW92IWyjal,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FeatherFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW92IWyjal\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eYwQL039x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WIxeYJeHr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iJXPzNLGh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"820\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W92IWyjal.map", "// Generated by Framer (fed3180)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FR;InterDisplay-SemiBold\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter Display\",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/gazZKZuUEtvr9ULhdA4SprP0AZ0.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/pe8RoujoPxuTZhqoNzYqHX2MXA.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/teGhWnhH3bCqefKGsIsqFy3hK8.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/qQHxgTnEk6Czu1yW4xS82HQWFOk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/MJ3N6lfN4iP5Um8rJGqLYl03tE.woff2\",weight:\"600\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/dHHUz45rhM2KCQpj9zttNVlibk.woff2\",weight:\"600\"},{family:\"Inter Display\",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/0SEEmmWc3vovhaai4RlRQSWRrz0.woff2\",weight:\"600\"},{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-hb2RF .framer-styles-preset-vwveg6:not(.rich-text-wrapper), .framer-hb2RF .framer-styles-preset-vwveg6.rich-text-wrapper p { --framer-font-family: \"Inter Display\", \"Inter Display Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --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-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-b75b9b1b-4f83-448a-b390-340de8d4bea4, #131518); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-hb2RF\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b26096)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TalksLibrary from\"#framer/local/canvasComponent/lxdJF1sPD/lxdJF1sPD.js\";import Team from\"#framer/local/canvasComponent/SlCw0t4kG/SlCw0t4kG.js\";import Clients from\"#framer/local/canvasComponent/sqnODFYgP/sqnODFYgP.js\";import GlobalPrimaryBtn from\"#framer/local/canvasComponent/t_ORA6Te5/t_ORA6Te5.js\";import LabHeroV20 from\"#framer/local/canvasComponent/W92IWyjal/W92IWyjal.js\";import SectionNavBarV24 from\"#framer/local/canvasComponent/wUBjfnWh1/wUBjfnWh1.js\";import FooterMain from\"#framer/local/canvasComponent/yykcUGwwA/yykcUGwwA.js\";import*as sharedStyle1 from\"#framer/local/css/AfJv3gr1e/AfJv3gr1e.js\";import*as sharedStyle4 from\"#framer/local/css/bVgnu5tkH/bVgnu5tkH.js\";import*as sharedStyle6 from\"#framer/local/css/GPty63viU/GPty63viU.js\";import*as sharedStyle5 from\"#framer/local/css/MAiAqyAkM/MAiAqyAkM.js\";import*as sharedStyle from\"#framer/local/css/nWDwoPdJg/nWDwoPdJg.js\";import*as sharedStyle3 from\"#framer/local/css/o4n1HhGWl/o4n1HhGWl.js\";import*as sharedStyle2 from\"#framer/local/css/Q21NBFsLG/Q21NBFsLG.js\";import*as sharedStyle7 from\"#framer/local/css/qvetN1Hh8/qvetN1Hh8.js\";import metadataProvider from\"#framer/local/webPageMetadata/MQcEY9Zve/MQcEY9Zve.js\";const SectionNavBarV24Fonts=getFonts(SectionNavBarV24);const LabHeroV20Fonts=getFonts(LabHeroV20);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ClientsFonts=getFonts(Clients);const GlobalPrimaryBtnFonts=getFonts(GlobalPrimaryBtn);const TalksLibraryFonts=getFonts(TalksLibrary);const TeamFonts=getFonts(Team);const FooterMainFonts=getFonts(FooterMain);const breakpoints={Bf3fW8dLI:\"(min-width: 992px) and (max-width: 1439px)\",qKRrhkfTn:\"(min-width: 810px) and (max-width: 991px)\",ufziaVKQK:\"(max-width: 809px)\",XIGm6nqyg:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-FzdGQ\";const variantClassNames={Bf3fW8dLI:\"framer-v-41y3cc\",qKRrhkfTn:\"framer-v-1xc4ma1\",ufziaVKQK:\"framer-v-1uklwc9\",XIGm6nqyg:\"framer-v-171ye7x\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,y:-5};const transition2={damping:60,delay:0,mass:1.2,stiffness:200,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition3={damping:60,delay:.5,mass:.5,stiffness:360,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Large Desktop\":\"XIGm6nqyg\",Desktop:\"Bf3fW8dLI\",Phone:\"ufziaVKQK\",Tablet:\"qKRrhkfTn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"XIGm6nqyg\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"qKRrhkfTn\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ufziaVKQK\")return false;return true;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"qKRrhkfTn\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"XIGm6nqyg\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-171ye7x\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{width:\"992px\"},qKRrhkfTn:{width:\"810px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:127,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tcebdp-container\",nodeId:\"WE4ODhowa\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{variant:\"Zufx5_iU9\"},qKRrhkfTn:{variant:\"gosnQXPn7\"},ufziaVKQK:{variant:\"gosnQXPn7\"}},children:/*#__PURE__*/_jsx(SectionNavBarV24,{height:\"100%\",id:\"WE4ODhowa\",layoutId:\"WE4ODhowa\",style:{width:\"100%\"},variant:\"usnPsSJD_\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:820,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-oimaum-container hidden-1xc4ma1\",\"data-framer-name\":\"Hero / Curating experiences\",name:\"Hero / Curating experiences\",nodeId:\"EFzi_8Gip\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{variant:\"eYwQL039x\"},ufziaVKQK:{variant:\"iJXPzNLGh\"}},children:/*#__PURE__*/_jsx(LabHeroV20,{height:\"100%\",id:\"EFzi_8Gip\",layoutId:\"EFzi_8Gip\",name:\"Hero / Curating experiences\",style:{width:\"100%\"},variant:\"cVtllRK_l\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t93019\",\"data-framer-name\":\"Your favorite design community\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-11xznjm\",\"data-framer-name\":\"Section/Hero v62\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vsczyx\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l8eapa\",\"data-framer-name\":\"Container Bottom\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s1mqg8\",\"data-border\":true,\"data-framer-name\":\"Column 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fit\",pixelHeight:175,pixelWidth:323,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s2Tn40mQ3qVHNfntfcn2NDPBOrE.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+35),pixelHeight:175,pixelWidth:323,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s2Tn40mQ3qVHNfntfcn2NDPBOrE.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+0+35),pixelHeight:175,pixelWidth:323,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s2Tn40mQ3qVHNfntfcn2NDPBOrE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+32),pixelHeight:175,pixelWidth:323,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/s2Tn40mQ3qVHNfntfcn2NDPBOrE.png\"},className:\"framer-1rditio\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q99vh6\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Join our Slack Community\"})}),fonts:[\"FR;InterDisplay-Bold\"]},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nhk58j\",\"data-styles-preset\":\"AfJv3gr1e\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join our Slack Community\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ncqhoc\",\"data-styles-preset\":\"nWDwoPdJg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Join our Slack Community\"})}),className:\"framer-hfgg6e\",\"data-framer-name\":\"Unlock Your Potential with Top Talent Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Connect with thousands of designers across the globe. Ask questions, get feedback, and grow your network in a vibrant, supportive space.\"})})},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\"},children:\"Connect with thousands of designers across the globe. Ask questions, get feedback, and grow your network in a vibrant, supportive space.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11k3jf0\",\"data-styles-preset\":\"Q21NBFsLG\",style:{\"--framer-text-alignment\":\"center\"},children:\"Connect with thousands of designers across the globe. Ask questions, get feedback, and grow your network in a vibrant, supportive space.\"})}),className:\"framer-1v6d60t\",\"data-framer-name\":\"Connecting your businesses with exceptional candidates to drive success together.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"E9aDN2AKT\"},motionChild:true,nodeId:\"FVgWIqPPt\",openInNewTab:false,scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1d668yp framer-140jioa\",\"data-border\":true,\"data-framer-name\":\"Btn\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vwveg6\",\"data-styles-preset\":\"bVgnu5tkH\",children:\"Join the Community\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-b15dde28-7235-4b52-b029-b892a1084731, rgb(37, 37, 37))\"},children:\"Join the Community\"})}),className:\"framer-90sev7\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zif85a\",\"data-framer-name\":\"Column 2\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",pixelHeight:285,pixelWidth:354,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9AgKP74ViUVApxH8CkxtpdB1Cw.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+0),pixelHeight:285,pixelWidth:354,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9AgKP74ViUVApxH8CkxtpdB1Cw.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+508+0+0),pixelHeight:285,pixelWidth:354,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9AgKP74ViUVApxH8CkxtpdB1Cw.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+0),pixelHeight:285,pixelWidth:354,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9AgKP74ViUVApxH8CkxtpdB1Cw.png\"},className:\"framer-11w3x9n\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15h4g3u\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vsbr2q\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"DesignX Events\"})}),fonts:[\"FR;InterDisplay-Bold\"]},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nhk58j\",\"data-styles-preset\":\"AfJv3gr1e\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"DesignX Events\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ncqhoc\",\"data-styles-preset\":\"nWDwoPdJg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"DesignX Events\"})}),className:\"framer-33r74m\",\"data-framer-name\":\"Unlock Your Potential with Top Talent Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Dive into inspiring talks, hands-on sessions, and unforgettable conversations with the most creative minds in design.\"})})},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Dive into inspiring talks, hands-on sessions, and unforgettable conversations with the most creative minds in design.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11k3jf0\",\"data-styles-preset\":\"Q21NBFsLG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Dive into inspiring talks, hands-on sessions, and unforgettable conversations with the most creative minds in design.\"})}),className:\"framer-wl6745\",\"data-framer-name\":\"Connecting your businesses with exceptional candidates to drive success together.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12l0zf\",\"data-framer-name\":\"Column 2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k9m42a\",\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1stizdf\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Design Job Board\"})}),fonts:[\"FR;InterDisplay-Bold\"]},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nhk58j\",\"data-styles-preset\":\"AfJv3gr1e\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Design Job Board\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ncqhoc\",\"data-styles-preset\":\"nWDwoPdJg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Design Job Board\"})}),className:\"framer-11t9rdy\",\"data-framer-name\":\"Unlock Your Potential with Top Talent Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\" 4000+ roles from top teams, curated by and for the community. New roles posted weekly.\"})})},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\" 4000+ roles from top teams, curated by and for the community. New roles posted weekly.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11k3jf0\",\"data-styles-preset\":\"Q21NBFsLG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\" 4000+ roles from top teams, curated by and for the community. New roles posted weekly.\"})}),className:\"framer-1rsiky1\",\"data-framer-name\":\"Connecting your businesses with exceptional candidates to drive success together.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"BfNSQCZLF\"},motionChild:true,nodeId:\"LTGYcwbqy\",openInNewTab:false,scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jc6bs2 framer-140jioa\",\"data-border\":true,\"data-framer-name\":\"Btn\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vwveg6\",\"data-styles-preset\":\"bVgnu5tkH\",style:{\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Explore Jobs\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, rgb(255, 255, 255))\"},children:\"Explore Jobs\"})}),className:\"framer-1ubsbhi\",\"data-framer-name\":\"Text\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eumf4l\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17jues\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13.333333333333334,intrinsicWidth:122.66666666666667,pixelHeight:15,pixelWidth:138,src:\"https://framerusercontent.com/images/PDLu7CIECIc35X5ligcV6Vqg.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13.333333333333334,intrinsicWidth:122.66666666666667,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+252.4+28+0+8),pixelHeight:15,pixelWidth:138,src:\"https://framerusercontent.com/images/PDLu7CIECIc35X5ligcV6Vqg.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13.333333333333334,intrinsicWidth:122.66666666666667,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1121.8+0+-42.2+32+0+8),pixelHeight:15,pixelWidth:138,src:\"https://framerusercontent.com/images/PDLu7CIECIc35X5ligcV6Vqg.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:13.333333333333334,intrinsicWidth:122.66666666666667,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+260.3+32+0+8),pixelHeight:15,pixelWidth:138,src:\"https://framerusercontent.com/images/PDLu7CIECIc35X5ligcV6Vqg.png\"},className:\"framer-18zc1jv\",\"data-framer-name\":\"Group 48095879\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.22222222222222,intrinsicWidth:97.77777777777777,pixelHeight:34,pixelWidth:110,src:\"https://framerusercontent.com/images/aj3SPaJGVHnPvgqR2p546Da6QE.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.22222222222222,intrinsicWidth:97.77777777777777,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+252.4+28+0+0),pixelHeight:34,pixelWidth:110,src:\"https://framerusercontent.com/images/aj3SPaJGVHnPvgqR2p546Da6QE.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.22222222222222,intrinsicWidth:97.77777777777777,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1121.8+0+-42.2+32+0+0),pixelHeight:34,pixelWidth:110,src:\"https://framerusercontent.com/images/aj3SPaJGVHnPvgqR2p546Da6QE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30.22222222222222,intrinsicWidth:97.77777777777777,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+260.3+32+0+0),pixelHeight:34,pixelWidth:110,src:\"https://framerusercontent.com/images/aj3SPaJGVHnPvgqR2p546Da6QE.png\"},className:\"framer-1cb4rum\",\"data-framer-name\":\"Group 48095880\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r6x0eb\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:109.33333333333333,pixelHeight:25,pixelWidth:123,src:\"https://framerusercontent.com/images/mvqJLtEh9VpYBBAzNIfWEDBJ1w.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:109.33333333333333,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+252.4+28+60+5.5),pixelHeight:25,pixelWidth:123,src:\"https://framerusercontent.com/images/mvqJLtEh9VpYBBAzNIfWEDBJ1w.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:109.33333333333333,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1121.8+0+-42.2+32+60+5.5),pixelHeight:25,pixelWidth:123,src:\"https://framerusercontent.com/images/mvqJLtEh9VpYBBAzNIfWEDBJ1w.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:109.33333333333333,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+260.3+32+60+5.5),pixelHeight:25,pixelWidth:123,src:\"https://framerusercontent.com/images/mvqJLtEh9VpYBBAzNIfWEDBJ1w.png\"},className:\"framer-8gwy4s\",\"data-framer-name\":\"Group 48095882\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.888888888888886,intrinsicWidth:95.11111111111111,pixelHeight:37,pixelWidth:107,src:\"https://framerusercontent.com/images/223DUTsfCpKqp5EPxLxfyWwEscs.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.888888888888886,intrinsicWidth:95.11111111111111,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+252.4+28+60+0),pixelHeight:37,pixelWidth:107,src:\"https://framerusercontent.com/images/223DUTsfCpKqp5EPxLxfyWwEscs.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.888888888888886,intrinsicWidth:95.11111111111111,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1121.8+0+-42.2+32+60+0),pixelHeight:37,pixelWidth:107,src:\"https://framerusercontent.com/images/223DUTsfCpKqp5EPxLxfyWwEscs.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32.888888888888886,intrinsicWidth:95.11111111111111,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+260.3+32+60+0),pixelHeight:37,pixelWidth:107,src:\"https://framerusercontent.com/images/223DUTsfCpKqp5EPxLxfyWwEscs.png\"},className:\"framer-1at2qdu\",\"data-framer-name\":\"Group 48095881\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w75afl\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.333333333333336,intrinsicWidth:108.44444444444444,pixelHeight:42,pixelWidth:122,src:\"https://framerusercontent.com/images/BPxpF4SjM4kycUryyW7ZESTirQ.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.333333333333336,intrinsicWidth:108.44444444444444,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+252.4+28+123+0),pixelHeight:42,pixelWidth:122,src:\"https://framerusercontent.com/images/BPxpF4SjM4kycUryyW7ZESTirQ.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.333333333333336,intrinsicWidth:108.44444444444444,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1121.8+0+-42.2+32+123+0),pixelHeight:42,pixelWidth:122,src:\"https://framerusercontent.com/images/BPxpF4SjM4kycUryyW7ZESTirQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:37.333333333333336,intrinsicWidth:108.44444444444444,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+260.3+32+123+0),pixelHeight:42,pixelWidth:122,src:\"https://framerusercontent.com/images/BPxpF4SjM4kycUryyW7ZESTirQ.png\"},className:\"framer-tmfdqt\",\"data-framer-name\":\"Group 48095878\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:104.88888888888889,pixelHeight:25,pixelWidth:118,src:\"https://framerusercontent.com/images/Y1OMpxDYvOTQcSdfyBTfUVfPVwU.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:104.88888888888889,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+510.8+0+252.4+28+123+8),pixelHeight:25,pixelWidth:118,src:\"https://framerusercontent.com/images/Y1OMpxDYvOTQcSdfyBTfUVfPVwU.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:104.88888888888889,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1121.8+0+-42.2+32+123+8),pixelHeight:25,pixelWidth:118,src:\"https://framerusercontent.com/images/Y1OMpxDYvOTQcSdfyBTfUVfPVwU.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22.22222222222222,intrinsicWidth:104.88888888888889,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+260.3+32+123+8),pixelHeight:25,pixelWidth:118,src:\"https://framerusercontent.com/images/Y1OMpxDYvOTQcSdfyBTfUVfPVwU.png\"},className:\"framer-1yp6a0h\",\"data-framer-name\":\"Group 48095877\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cqrmxv\",\"data-framer-name\":\"Column 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{background:{alt:\"\",fit:\"fit\",pixelHeight:208,pixelWidth:314,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cfEUcB0KE7WSZFvguEdYYwIutoM.png\"}},qKRrhkfTn:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+0+20),pixelHeight:208,pixelWidth:314,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cfEUcB0KE7WSZFvguEdYYwIutoM.png\"}},ufziaVKQK:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+4+0+0+0+0+1616.8+41),pixelHeight:208,pixelWidth:314,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cfEUcB0KE7WSZFvguEdYYwIutoM.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+820+0+0+50+0+0+0+43),pixelHeight:208,pixelWidth:314,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cfEUcB0KE7WSZFvguEdYYwIutoM.png\"},className:\"framer-wi1aem\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2xe4uw\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LUJvbGQ=\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Design Salary Repository\"})}),fonts:[\"FR;InterDisplay-Bold\"]},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-nhk58j\",\"data-styles-preset\":\"AfJv3gr1e\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Design Salary Repository\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-ncqhoc\",\"data-styles-preset\":\"nWDwoPdJg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Design Salary Repository\"})}),className:\"framer-uod0my\",\"data-framer-name\":\"Unlock Your Potential with Top Talent Solutions\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Access real, community-submitted salary data.See how designers are paid across roles, levels, and locations.\"})})},ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Access real, community-submitted salary data.See how designers are paid across roles, levels, and locations.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11k3jf0\",\"data-styles-preset\":\"Q21NBFsLG\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, rgb(0, 0, 0))\"},children:\"Access real, community-submitted salary data.See how designers are paid across roles, levels, and locations.\"})}),className:\"framer-i0eze5\",\"data-framer-name\":\"Connecting your businesses with exceptional candidates to drive success together.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18s37k5\",\"data-framer-name\":\"BG \",fill:\"rgba(0,0,0,1)\",intrinsicHeight:917,intrinsicWidth:1433,svg:'<svg width=\"1433\" height=\"917\" viewBox=\"0 0 1433 917\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_220_2)\">\\n<rect y=\"-156.654\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"238.802\" y=\"-156.654\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"477.604\" y=\"-156.654\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"716.406\" y=\"-156.654\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"955.208\" y=\"-156.654\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"1194.01\" y=\"-156.654\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect y=\"82.1475\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"238.802\" y=\"82.1475\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"477.604\" y=\"82.1475\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"716.406\" y=\"82.1475\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"955.208\" y=\"82.1475\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"1194.01\" y=\"82.1475\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect y=\"320.95\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"238.802\" y=\"320.95\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"477.604\" y=\"320.95\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"716.406\" y=\"320.95\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"955.208\" y=\"320.95\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"1194.01\" y=\"320.95\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect y=\"559.752\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"238.802\" y=\"559.752\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"477.604\" y=\"559.752\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"716.406\" y=\"559.752\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"955.208\" y=\"559.752\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"1194.01\" y=\"559.752\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect y=\"798.554\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"238.802\" y=\"798.554\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"477.604\" y=\"798.554\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"716.406\" y=\"798.554\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"955.208\" y=\"798.554\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<rect x=\"1194.01\" y=\"798.554\" width=\"238.802\" height=\"238.802\" rx=\"26.3506\" stroke=\"#632DE9\" stroke-opacity=\"0.15\" stroke-width=\"2.47037\"/>\\n<path d=\"M720.227 -136.891V55.7976C720.227 70.3506 732.025 82.1481 746.578 82.1481H932.679C947.232 82.1481 959.029 93.9457 959.029 108.499V294.6C959.029 309.153 970.827 320.95 985.38 320.95H1171.48C1186.03 320.95 1197.83 332.748 1197.83 347.301V533.402C1197.83 547.955 1209.63 559.752 1224.18 559.752H1410.28C1424.84 559.752 1436.63 571.55 1436.63 586.103V772.204C1436.63 786.757 1448.43 798.554 1462.98 798.554H1655.67M481.425 -136.891V55.7976C481.425 70.3506 493.223 82.1481 507.776 82.1481H693.877C708.43 82.1481 720.227 93.9457 720.227 108.499V294.6C720.227 309.153 732.025 320.95 746.578 320.95H932.679C947.232 320.95 959.029 332.748 959.029 347.301V533.402C959.029 547.955 947.232 559.752 932.679 559.752H746.578C732.025 559.752 720.227 547.955 720.227 533.402V344.007L719.997 342.451C718.228 330.516 708.098 321.604 696.035 321.372L674.114 320.95H507.776C493.223 320.95 481.425 332.748 481.425 347.301V533.402C481.425 547.955 493.223 559.752 507.776 559.752H695.523L701.779 560.169C712.16 560.861 720.227 569.484 720.227 579.888V600.102M720.227 579.515V772.204C720.227 786.757 732.025 798.554 746.578 798.554H932.679C947.232 798.554 959.029 810.352 959.029 824.905V1011.01C959.029 1025.56 970.827 1037.36 985.38 1037.36H1171.48C1186.03 1037.36 1197.83 1049.15 1197.83 1063.71V1249.81C1197.83 1264.36 1209.63 1276.16 1224.18 1276.16H1410.28C1424.84 1276.16 1436.63 1287.96 1436.63 1302.51V1488.61C1436.63 1503.16 1448.43 1514.96 1462.98 1514.96H1655.67\" stroke=\"url(#paint0_linear_220_2)\" stroke-opacity=\"0.8\" stroke-width=\"2.47037\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_220_2\" x1=\"481.425\" y1=\"-136.891\" x2=\"1629.32\" y2=\"1283.57\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0819437\" stop-color=\"#F7F7F7\"/>\\n<stop offset=\"0.208333\" stop-color=\"#632DE9\"/>\\n<stop offset=\"0.425\" stop-color=\"#632DE9\"/>\\n<stop offset=\"0.9375\" stop-color=\"#141F00\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_220_2\">\\n<rect width=\"1432.81\" height=\"917\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13jpwby\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iik9lz\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19ej0og\",\"data-framer-name\":\"Hero Content Block\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-swixc4\",\"data-framer-appear-id\":\"swixc4\",\"data-framer-name\":\"Hero Text Block\",initial:animation2,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-119uvf2\",\"data-styles-preset\":\"GPty63viU\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX, Design & Research Jobs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1f4crjs\",\"data-styles-preset\":\"MAiAqyAkM\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"UX, Design & Research Jobs\"})}),className:\"framer-eg9q95\",fonts:[\"Inter\"],id:\"eg9q95\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ufziaVKQK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tduuac\",\"data-styles-preset\":\"o4n1HhGWl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Browse opportunities with leading organizations and teams from the DesignX Community, shared by our community leaders and members.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-mljoog\",\"data-styles-preset\":\"qvetN1Hh8\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Browse opportunities with leading organizations and teams from the DesignX Community, shared by our community leaders and members.\"})}),className:\"framer-1a0gqgs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1000px) - 60px)`,y:undefined},qKRrhkfTn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 746px) - 30px)`,y:(componentViewport?.y||0)+0+1921.6+130+0+0+0+330},ufziaVKQK:{y:(componentViewport?.y||0)+0+2952.8+50+0+0+0+211.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1356px) - 60px)`,y:(componentViewport?.y||0)+0+1410+100+0+0+0+306,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mxcy7w-container\",\"data-framer-name\":\"Brands\",name:\"Brands\",nodeId:\"y6nFnbvlU\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(Clients,{height:\"100%\",id:\"y6nFnbvlU\",layoutId:\"y6nFnbvlU\",name:\"Brands\",style:{width:\"100%\"},variant:\"LdRf_Nnem\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-nrbcmf hidden-1uklwc9\",\"data-framer-appear-id\":\"nrbcmf\",\"data-framer-name\":\"Bottom\",initial:animation4,optimized:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"BfNSQCZLF\"},implicitPathVariables:undefined},{href:{webPageId:\"BfNSQCZLF\"},implicitPathVariables:undefined},{href:{webPageId:\"BfNSQCZLF\"},implicitPathVariables:undefined},{href:{webPageId:\"BfNSQCZLF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{y:undefined},qKRrhkfTn:{y:(componentViewport?.y||0)+0+1921.6+130+0+0+0+418},ufziaVKQK:{y:(componentViewport?.y||0)+0+2952.8+50+0+0+0+286.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:57,y:(componentViewport?.y||0)+0+1410+100+0+0+0+346,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mjhlac-container\",nodeId:\"f3X9ypwGr\",rendersWithMotion:true,scopeId:\"MQcEY9Zve\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{G7PGXS3U3:resolvedLinks[1]},qKRrhkfTn:{G7PGXS3U3:resolvedLinks[2]},ufziaVKQK:{G7PGXS3U3:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(GlobalPrimaryBtn,{aw_EFWml0:\"Go to Job Board\",G7PGXS3U3:resolvedLinks[0],height:\"100%\",id:\"f3X9ypwGr\",layoutId:\"f3X9ypwGr\",variant:\"paBzGc8dX\",w0_ducWEC:false,width:\"100%\"})})})})})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{y:undefined},qKRrhkfTn:{y:(componentViewport?.y||0)+0+2586.6},ufziaVKQK:{y:(componentViewport?.y||0)+0+3386.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1025,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-124eqjp-container\",nodeId:\"ajAxURp1J\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{variant:\"rtJkmdjCn\"},qKRrhkfTn:{variant:\"wS_MecHh7\"},ufziaVKQK:{variant:\"NifJDVxKC\"}},children:/*#__PURE__*/_jsx(TalksLibrary,{height:\"100%\",id:\"ajAxURp1J\",layoutId:\"ajAxURp1J\",style:{width:\"100%\"},variant:\"Y530I6FIQ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ra0gcb\",\"data-framer-name\":\"Get Involved\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{width:\"991px\",y:undefined},qKRrhkfTn:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3611.6+0},ufziaVKQK:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4411.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:648,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+3028+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sqqwrc-container\",nodeId:\"Rm1k2fZEP\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{style:{width:\"100%\"},variant:\"GphdrRY9F\"},qKRrhkfTn:{variant:\"TA__avK_I\"},ufziaVKQK:{style:{width:\"100%\"},variant:\"odxGdfhO1\"}},children:/*#__PURE__*/_jsx(Team,{height:\"100%\",id:\"Rm1k2fZEP\",layoutId:\"Rm1k2fZEP\",style:{height:\"100%\",width:\"100%\"},variant:\"dAfOw_Syq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gj3u5g\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pg3k5a\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-19kuabu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{y:undefined},qKRrhkfTn:{y:(componentViewport?.y||0)+0+4259.6+0+0+0+0+0+0},ufziaVKQK:{y:(componentViewport?.y||0)+0+5059.2+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:435,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3676+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j6dq2t-container\",nodeId:\"x0xKbx6fm\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bf3fW8dLI:{variant:\"HibaGZc4A\"},qKRrhkfTn:{variant:\"wtrGIeCAo\"},ufziaVKQK:{variant:\"gFV_qX4uE\"}},children:/*#__PURE__*/_jsx(FooterMain,{height:\"100%\",id:\"x0xKbx6fm\",layoutId:\"x0xKbx6fm\",style:{width:\"100%\"},variant:\"CYuq5VVqc\",width:\"100%\"})})})})})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qKRrhkfTn:{height:820,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-175rv0h-container hidden-171ye7x hidden-41y3cc hidden-1uklwc9\",\"data-framer-name\":\"Hero / Curating experiences\",name:\"Hero / Curating experiences\",nodeId:\"kzOCAjSJI\",scopeId:\"MQcEY9Zve\",children:/*#__PURE__*/_jsx(LabHeroV20,{height:\"100%\",id:\"kzOCAjSJI\",layoutId:\"kzOCAjSJI\",name:\"Hero / Curating experiences\",style:{width:\"100%\"},variant:\"eYwQL039x\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FzdGQ.framer-140jioa, .framer-FzdGQ .framer-140jioa { display: block; }\",\".framer-FzdGQ.framer-171ye7x { align-content: center; align-items: center; background-color: var(--token-ff9b7dab-71d7-42af-9fd7-1968abd48bc3, #000000); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-FzdGQ .framer-1tcebdp-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-FzdGQ .framer-oimaum-container, .framer-FzdGQ .framer-mxcy7w-container, .framer-FzdGQ .framer-124eqjp-container, .framer-FzdGQ .framer-j6dq2t-container, .framer-FzdGQ .framer-175rv0h-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-t93019 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-11xznjm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 80px 60px 80px; position: relative; width: 1240px; }\",\".framer-FzdGQ .framer-1vsczyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1080px; z-index: 2; }\",\".framer-FzdGQ .framer-l8eapa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-s1mqg8 { --border-bottom-width: 1px; --border-color: var(--token-bdd64d44-cdda-4d9c-a9a2-df4233492a6b, #cccccc); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-db4e5ff5-4a7d-444b-8ac2-306bcfa0f4b0, #f7f7f7); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 480px; justify-content: center; overflow: hidden; padding: 180px 25px 25px 25px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FzdGQ .framer-1rditio { flex: none; height: 171px; left: 14px; position: absolute; right: 14px; top: 32px; z-index: 1; }\",\".framer-FzdGQ .framer-1q99vh6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 43px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-hfgg6e, .framer-FzdGQ .framer-1v6d60t, .framer-FzdGQ .framer-33r74m, .framer-FzdGQ .framer-wl6745, .framer-FzdGQ .framer-11t9rdy, .framer-FzdGQ .framer-1rsiky1, .framer-FzdGQ .framer-uod0my, .framer-FzdGQ .framer-i0eze5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FzdGQ .framer-1d668yp { --border-bottom-width: 1px; --border-color: var(--token-fe346ff4-2c29-4ae4-92a2-81cd913053e6, #111111); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-FzdGQ .framer-90sev7, .framer-FzdGQ .framer-1ubsbhi { flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 2; }\",\".framer-FzdGQ .framer-zif85a, .framer-FzdGQ .framer-12l0zf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 480px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-11w3x9n { border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; flex: none; height: 217px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-FzdGQ .framer-15h4g3u { align-content: flex-start; align-items: flex-start; background-color: var(--token-75b573a1-d464-4968-aa6b-0357172bcd86, #632de9); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 1px; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-1vsbr2q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-k9m42a { align-content: flex-start; align-items: flex-start; background-color: var(--token-75b573a1-d464-4968-aa6b-0357172bcd86, #632de9); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-1stizdf, .framer-FzdGQ .framer-gj3u5g, .framer-FzdGQ .framer-pg3k5a, .framer-FzdGQ .framer-19kuabu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-1jc6bs2 { --border-bottom-width: 1px; --border-color: var(--token-2437f6b0-8ec9-4a1d-94bd-db1ef56bcf5a, #ffffff); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-FzdGQ .framer-eumf4l { align-content: flex-start; align-items: flex-start; background-color: var(--token-5862e82f-cf12-45ed-937f-54d0fc250649, #394047); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 20px 32px 20px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-17jues { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-18zc1jv { aspect-ratio: 9.2 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 9px); overflow: visible; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-1cb4rum { aspect-ratio: 3.235294117647059 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-r6x0eb, .framer-FzdGQ .framer-1w75afl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-8gwy4s { aspect-ratio: 4.92 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 17px); overflow: visible; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-1at2qdu { aspect-ratio: 2.891891891891892 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-tmfdqt { aspect-ratio: 2.9047619047619047 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 29px); overflow: visible; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-1yp6a0h { aspect-ratio: 4.72 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 17px); overflow: visible; position: relative; width: 1px; }\",\".framer-FzdGQ .framer-1cqrmxv { align-content: center; align-items: center; background-color: var(--token-bbb2fa58-d5db-405d-b0b0-6ab588158228, #00ff85); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 480px; justify-content: flex-end; overflow: hidden; padding: 25px 25px 70px 25px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FzdGQ .framer-wi1aem { flex: none; height: 171px; left: 13px; position: absolute; right: 13px; top: 43px; z-index: 1; }\",\".framer-FzdGQ .framer-2xe4uw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-18s37k5 { bottom: 0px; flex: none; left: calc(50.00000000000002% - 1433px / 2); opacity: 0.2; position: absolute; top: 0px; width: 1433px; z-index: 1; }\",\".framer-FzdGQ .framer-13jpwby { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-1iik9lz { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1356px; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-19ej0og { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-swixc4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 50px 0px; position: relative; width: 58%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-FzdGQ .framer-eg9q95 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 719px; word-break: break-word; word-wrap: break-word; }\",\".framer-FzdGQ .framer-1a0gqgs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FzdGQ .framer-nrbcmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; min-height: 57px; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-FzdGQ .framer-mjhlac-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-FzdGQ .framer-1ra0gcb { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FzdGQ .framer-1sqqwrc-container { flex: 1 0 0px; height: 648px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-FzdGQ[data-border=\"true\"]::after, .framer-FzdGQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 992px) and (max-width: 1439px) { .framer-FzdGQ.framer-171ye7x { width: 992px; } .framer-FzdGQ .framer-1tcebdp-container { order: 0; width: 992px; z-index: 7; } .framer-FzdGQ .framer-oimaum-container { order: 1; } .framer-FzdGQ .framer-t93019 { order: 3; } .framer-FzdGQ .framer-11xznjm { flex-wrap: wrap; width: 990px; } .framer-FzdGQ .framer-1vsczyx, .framer-FzdGQ .framer-l8eapa { width: min-content; } .framer-FzdGQ .framer-s1mqg8 { flex: none; height: 450px; width: 250px; } .framer-FzdGQ .framer-1rditio { top: 23px; } .framer-FzdGQ .framer-1q99vh6 { justify-content: flex-start; padding: 43px 0px 0px 0px; } .framer-FzdGQ .framer-zif85a { flex: none; height: 450px; width: 210px; } .framer-FzdGQ .framer-11w3x9n { height: 218px; } .framer-FzdGQ .framer-12l0zf { flex: none; gap: 14px; height: 450px; width: 210px; } .framer-FzdGQ .framer-k9m42a { align-content: center; align-items: center; height: 217px; justify-content: center; padding: 10px 20px 10px 20px; } .framer-FzdGQ .framer-1stizdf { justify-content: flex-start; } .framer-FzdGQ .framer-eumf4l { flex: 1 0 0px; gap: 35px; height: 1px; padding: 45px 20px 45px 20px; } .framer-FzdGQ .framer-18zc1jv { height: var(--framer-aspect-ratio-supported, 7px); } .framer-FzdGQ .framer-1cb4rum { height: var(--framer-aspect-ratio-supported, 22px); } .framer-FzdGQ .framer-8gwy4s { height: var(--framer-aspect-ratio-supported, 14px); } .framer-FzdGQ .framer-1at2qdu, .framer-FzdGQ .framer-tmfdqt { height: var(--framer-aspect-ratio-supported, 24px); } .framer-FzdGQ .framer-1yp6a0h { height: var(--framer-aspect-ratio-supported, 15px); } .framer-FzdGQ .framer-1cqrmxv { flex: none; height: 450px; padding: 239px 25px 70px 25px; width: 230px; } .framer-FzdGQ .framer-wi1aem { top: 34px; } .framer-FzdGQ .framer-2xe4uw { gap: 17px; } .framer-FzdGQ .framer-13jpwby { order: 4; padding: 100px 0px 40px 0px; } .framer-FzdGQ .framer-1iik9lz { max-width: 1000px; } .framer-FzdGQ .framer-19ej0og { padding: 0px 0px 20px 0px; } .framer-FzdGQ .framer-swixc4 { width: 80%; } .framer-FzdGQ .framer-124eqjp-container { order: 5; } .framer-FzdGQ .framer-1ra0gcb { order: 6; } .framer-FzdGQ .framer-1sqqwrc-container { flex: none; height: auto; width: 991px; } .framer-FzdGQ .framer-gj3u5g { order: 7; }}\",\"@media (min-width: 810px) and (max-width: 991px) { .framer-FzdGQ.framer-171ye7x { width: 810px; } .framer-FzdGQ .framer-1tcebdp-container { order: 0; width: 810px; } .framer-FzdGQ .framer-t93019 { order: 4; } .framer-FzdGQ .framer-11xznjm { padding: 50px 40px 40px 40px; width: 768px; } .framer-FzdGQ .framer-1vsczyx { flex: 1 0 0px; width: 1px; } .framer-FzdGQ .framer-l8eapa { align-content: unset; align-items: unset; display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 761px; } .framer-FzdGQ .framer-s1mqg8 { align-self: start; flex: none; height: 100%; justify-self: start; order: 0; width: 100%; } .framer-FzdGQ .framer-1rditio { height: 159px; left: -24px; right: -30px; top: 35px; } .framer-FzdGQ .framer-1q99vh6 { align-self: stretch; width: auto; } .framer-FzdGQ .framer-zif85a { align-self: start; flex: none; height: 100%; justify-content: flex-start; justify-self: start; order: 2; width: 100%; } .framer-FzdGQ .framer-11w3x9n { height: 208px; } .framer-FzdGQ .framer-12l0zf { align-self: start; flex: none; height: 100%; justify-self: start; order: 3; width: 100%; } .framer-FzdGQ .framer-k9m42a { height: 206px; padding: 13px 20px 13px 20px; } .framer-FzdGQ .framer-11t9rdy, .framer-FzdGQ .framer-uod0my { order: 0; } .framer-FzdGQ .framer-1rsiky1, .framer-FzdGQ .framer-i0eze5, .framer-FzdGQ .framer-175rv0h-container { order: 1; } .framer-FzdGQ .framer-1jc6bs2 { order: 2; } .framer-FzdGQ .framer-eumf4l { padding: 28px 20px 28px 20px; } .framer-FzdGQ .framer-18zc1jv { height: var(--framer-aspect-ratio-supported, 17px); } .framer-FzdGQ .framer-1cb4rum { height: var(--framer-aspect-ratio-supported, 47px); } .framer-FzdGQ .framer-8gwy4s { height: var(--framer-aspect-ratio-supported, 31px); } .framer-FzdGQ .framer-1at2qdu { height: var(--framer-aspect-ratio-supported, 53px); } .framer-FzdGQ .framer-tmfdqt { height: var(--framer-aspect-ratio-supported, 52px); } .framer-FzdGQ .framer-1yp6a0h { height: var(--framer-aspect-ratio-supported, 32px); } .framer-FzdGQ .framer-1cqrmxv { align-self: start; flex: none; height: 100%; justify-self: start; order: 1; width: 100%; } .framer-FzdGQ .framer-wi1aem { height: 212px; left: -84px; right: -97px; top: 20px; } .framer-FzdGQ .framer-2xe4uw { gap: 28px; } .framer-FzdGQ .framer-13jpwby { order: 5; padding: 130px 0px 40px 0px; } .framer-FzdGQ .framer-1iik9lz { max-width: 746px; padding: 0px 15px 0px 15px; } .framer-FzdGQ .framer-19ej0og { gap: 24px; padding: 0px 0px 20px 0px; } .framer-FzdGQ .framer-swixc4 { width: 100%; } .framer-FzdGQ .framer-124eqjp-container { order: 6; } .framer-FzdGQ .framer-1ra0gcb { order: 7; } .framer-FzdGQ .framer-1sqqwrc-container { flex: none; width: 100%; } .framer-FzdGQ .framer-gj3u5g { order: 8; }}\",\"@media (max-width: 809px) { .framer-FzdGQ.framer-171ye7x { width: 480px; } .framer-FzdGQ .framer-1tcebdp-container, .framer-FzdGQ .framer-j6dq2t-container { order: 0; } .framer-FzdGQ .framer-oimaum-container { order: 1; } .framer-FzdGQ .framer-t93019 { order: 3; padding: 0px 25px 0px 25px; } .framer-FzdGQ .framer-11xznjm { flex-direction: column; padding: 4px 0px 0px 0px; width: 100%; } .framer-FzdGQ .framer-1vsczyx, .framer-FzdGQ .framer-eg9q95 { width: 100%; } .framer-FzdGQ .framer-l8eapa { flex-direction: column; order: 0; } .framer-FzdGQ .framer-s1mqg8 { flex: none; height: 493px; padding: 180px 50px 35px 50px; width: 100%; } .framer-FzdGQ .framer-1rditio { height: 177px; left: 50px; right: 51px; top: 35px; } .framer-FzdGQ .framer-zif85a { flex: none; height: min-content; width: 100%; } .framer-FzdGQ .framer-11w3x9n { height: 335px; } .framer-FzdGQ .framer-15h4g3u { flex: none; height: min-content; padding: 35px 50px 35px 50px; } .framer-FzdGQ .framer-1vsbr2q, .framer-FzdGQ .framer-1stizdf { gap: 20px; } .framer-FzdGQ .framer-12l0zf { flex: none; width: 100%; } .framer-FzdGQ .framer-k9m42a { order: 1; padding: 35px 50px 35px 50px; } .framer-FzdGQ .framer-eumf4l { order: 0; padding: 32px 50px 32px 50px; } .framer-FzdGQ .framer-18zc1jv { height: var(--framer-aspect-ratio-supported, 17px); } .framer-FzdGQ .framer-1cb4rum { height: var(--framer-aspect-ratio-supported, 47px); } .framer-FzdGQ .framer-8gwy4s { height: var(--framer-aspect-ratio-supported, 30px); } .framer-FzdGQ .framer-1at2qdu { height: var(--framer-aspect-ratio-supported, 52px); } .framer-FzdGQ .framer-tmfdqt { height: var(--framer-aspect-ratio-supported, 51px); } .framer-FzdGQ .framer-1yp6a0h { height: var(--framer-aspect-ratio-supported, 32px); } .framer-FzdGQ .framer-1cqrmxv { flex: none; height: 512px; padding: 35px 50px 35px 50px; width: 100%; } .framer-FzdGQ .framer-wi1aem { height: 214px; left: 54px; right: 53px; top: 41px; } .framer-FzdGQ .framer-13jpwby { order: 4; padding: 50px 0px 0px 0px; } .framer-FzdGQ .framer-19ej0og { gap: 35px; } .framer-FzdGQ .framer-swixc4 { padding: 0px; width: 100%; } .framer-FzdGQ .framer-124eqjp-container { order: 5; } .framer-FzdGQ .framer-1ra0gcb { order: 6; } .framer-FzdGQ .framer-1sqqwrc-container { flex: none; height: auto; width: 100%; } .framer-FzdGQ .framer-gj3u5g { order: 7; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4060\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Bf3fW8dLI\":{\"layout\":[\"fixed\",\"auto\"]},\"qKRrhkfTn\":{\"layout\":[\"fixed\",\"auto\"]},\"ufziaVKQK\":{\"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 FramerMQcEY9Zve=withCSS(Component,css,\"framer-FzdGQ\");export default FramerMQcEY9Zve;FramerMQcEY9Zve.displayName=\"Home\";FramerMQcEY9Zve.defaultProps={height:4060,width:1440};addFonts(FramerMQcEY9Zve,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter Display\",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/I11LrmuBDQZweplJ62KkVsklU5Y.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/UjFZPDy3qGuDktQM4q9CxhKfIa8.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/8exwVHJy2DhJ4N5prYlVMrEKmQ.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/UTeedEK21hO5jDxEUldzdScUqpg.woff2\",weight:\"700\"},{family:\"Inter Display\",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/Ig8B8nzy11hzIWEIYnkg91sofjo.woff2\",weight:\"700\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/n9CXKI3tsmCPeC6MCT9NziShSuQ.woff2\",weight:\"700\"},{family:\"Inter Display\",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/qctQFoJqJ9aIbRSIp0AhCQpFxn8.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...SectionNavBarV24Fonts,...LabHeroV20Fonts,...ClientsFonts,...GlobalPrimaryBtnFonts,...TalksLibraryFonts,...TeamFonts,...FooterMainFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMQcEY9Zve\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bf3fW8dLI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qKRrhkfTn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ufziaVKQK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"4060\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "o+CAA6C,IAAMA,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAAmB,CAAC,GAAG,CAACD,GAAU,EAAE,OAAO,GAAK,CAACE,EAAUC,CAAY,EAAEC,EAAS,CAAC,SAAS,MAAM,EAAE,OAAAC,GAAU,IAAI,CAAC,IAAMC,EAAmB,IAAIH,EAAa,CAAC,SAAS,MAAM,EAAE,gBAAS,iBAAiB,mBAAmBG,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoB,mBAAmBA,CAAkB,CAAE,CAAE,EAAE,CAAC,CAAC,EAASJ,CAAU,CCAyE,SAASK,GAAiBC,EAAQC,EAAW,CAAC,IAAIC,EACjkBC,EAAQH,EAAQ,QAGpB,OAH4B,OAAO,eAAeA,EAAQ,UAAU,CAAC,KAAK,CAAC,OAAOG,CAAQ,EAAE,IAAIC,EAAK,CAAc,GAAbD,EAAQC,EAAQA,IAAO,KAAK,CAElIH,EAAW,MAAM,EAAE,MAAO,CAACC,IAAqBE,CAAI,CAAE,EAAE,aAAa,EAAI,CAAC,EACvED,GAAgD,IAAI,QAAQ,CAACE,EAAQC,IAAS,CAACJ,EAAmBG,EAAQJ,EAAW,OAAO,iBAAiB,QAAQK,CAAM,CAAE,CAAC,EAAE,MAAM,IAAI,CAAC,CAAC,CAA4B,CAE3M,IAAMC,GAAU,KAaE,SAARC,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,CAAC,EAAE,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,EAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,GAAa,cAAAC,GAAc,mBAAAC,EAAmB,aAAAC,GAAa,cAAAC,EAAa,EAAExB,EAAoB,CAAC,YAAAyB,GAAY,SAAAC,GAAS,UAAAC,GAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEjB,EAAiB,CAAC,kBAAAkB,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,EAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE7B,EAAkB,CAAC,iBAAA8B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAsBuC,GAAalD,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAEl8BoD,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,GAAc9D,EAAM,OAAO,OAAO,EAAQ+D,GAAeC,GAAS,MAAMF,EAAa,EAAQG,GAAYF,GAAe,EAAQG,EAAahE,IAAY,QAAQA,IAAY,QAAciE,GAAWjE,IAAY,SAASA,IAAY,SAEtO,GAAG,CAAC+D,GAAa,OAAoBG,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,EAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAW,CAAC,CAAC,QAAQ,IAAI,EAAE,CAAC,QAAQ,IAAI,CAAC,EACrG,CAACf,EAAa,CAAC,EAAQgB,GAAWH,EAAO,MAAS,EAAO,CAACI,EAAKC,EAAO,EAAEC,EAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,EAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,EAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,EAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,EAAS,EAAK,EAEncS,GAAc,CAAC,EAAMC,GAAY,EAAK/B,IAAU+B,GAAY,GAEhE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG,CAACnB,GAAU,QAAQ,OAAO,IAAMoB,EAAWlB,GAAY,CAAC,EAAE,QAAcmB,EAAUnB,GAAY,CAAC,EAAE,QAAcoB,EAAa9B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBuB,EAAMH,EAAW5B,EAAa4B,EAAW,WAAWA,EAAW,UAAU,EAAiII,IAArHH,EAAU7B,EAAa6B,EAAU,WAAWA,EAAU,YAAYA,EAAU,UAAUA,EAAU,aAAa,GAA2BE,EAAM1F,EAAU4F,GAASL,EAAW5B,EAAa4B,EAAW,YAAYA,EAAW,aAAa,EAAQM,GAAUN,EAAWA,EAAW,YAAY,EAAQO,GAAWP,EAAWA,EAAW,aAAa,EAAQQ,GAAepC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEqC,GAAO,YAAY,EAAE7B,GAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE6B,GAAO,aAAa,EAAE7B,GAAU,QAAQ,YAAY,EAAEM,GAAQ,CAAC,OAAOgB,EAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,CAAE,EAAE,CAAC,CAAC,EAAQE,GAAgBX,GAAY,SAAS,CAAC,IAAMtG,EAAW,IAAI,gBAG7iC,CAACuG,EAAWC,CAAS,EAAEnB,GAAY,GAAG,CAAChB,IAAW,CAACkC,EAAW,SAAS,CAACC,EAAU,SAAS,GAAG,CAAC,MAAM,QAAQ,IAAI,CAAC1G,GAAiByG,EAAWvG,CAAU,EAAEwE,GAAe,EAAE1E,GAAiB0G,EAAUxG,CAAU,EAAE,EAAI,CAAC,CAAE,MAAM,CAACA,EAAW,MAAM,CAAE,CAACkH,GAAM,KAAKb,GAAQ,GAAM,EAAI,CAAE,EAAE,CAACA,EAAO,CAAC,EAGvSc,GAAgB,IAAI,CAACF,GAAgB,CAAE,EAAE,CAAC1F,CAAU,CAAC,EAGrD,IAAM6F,GAAchC,EAAO,EAAI,EAAEiC,GAAU,IAAYC,GAAOnC,GAAU,QAAQ,CAAC,CAAC,YAAAoC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASN,GAAgB,EAAEO,EAAgB,IAAItB,GAAc,EAAI,CAAC,GAAGkB,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGpB,GAAW,CAAC,IAAMwB,EAAM,WAAW,IAAID,EAAgB,IAAItB,GAAc,EAAK,CAAC,EAAE,GAAG,EAAE,MAAM,IAAI,aAAauB,CAAK,CAAE,CAAC,EAAE,CAACxB,EAAU,CAAC,EAE5Z,IAAMyB,GAAWnD,IAAe,OAAaoD,GAAatD,EAAS,EAAEmB,GAAM,SAAeoC,GAAYpC,GAAM,KAAKxE,EAAU6G,GAAWnH,EAAUkH,GAAiB,CAACE,GAAYC,EAAc,EAAErC,EAAShF,EAAUgH,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAEvC,EAAS,EAAK,EAAKrB,GAAayD,KAAcpH,GAAWqH,GAAerH,CAAS,EAAqG,IAAMwH,GAAc9C,EAAO,IAAI,EAAQ+C,GAASC,GAAUF,EAAa,EAAQG,GAAUC,GAAkB,GAAGH,GAAeI,GAAO3D,GAAW,EAAE,GAA+C4D,GAAKC,GAAed,EAAY,EAAuEe,GAAe/D,EAAa,CAACjE,GAAW8E,GAAM,UAAUxE,GAAK,CAACN,GAAW8E,GAAM,WAAWxE,GAAsD2H,GAAY,IAAIJ,GAAOT,GAAYF,GAAwIgB,GAAcvE,EAA8H,EAArHwE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,EAAQC,GAAK,CAACrB,GAAa,CAACA,GAAa,EAAEmB,CAAK,EAAE,OAAO,MAAMC,CAAO,EAAE,EAAEA,CAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEtB,GAAWI,EAAW,EAAQoB,GAAqBF,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAqHX,GAAgB,IAAI,CAAI3B,GAAM,WAAW,MAGn9C,CAAC4B,GAAc,SAASnB,IAAYuC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAACnD,EAAKmC,GAAaY,GAAOV,GAAWC,GAAYF,GAAY3B,EAAU,CAAC,EAG3G,IAAMkD,GAAY,IAAI,CAAI9E,GAAU,CAACK,IAAa,CAACc,EAAK,QAAQwC,KAAqBQ,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAEjH,CAAiB,EAAMb,GAAiBgF,KAAoBzD,IAAeiG,MAAY9C,GAAW,QAAQ,WAAW,IAAI,CAACiC,EAAgB,IAAIO,GAAesB,GAAMA,EAAK,CAAC,CAAC,EAAEF,GAAY,CAAE,EAAE1H,EAAgB,GAAG,GAAG,EAAuC6H,GAAS,CAACC,EAAMC,EAAW,KAAQ,CAAK5E,GAA+H4E,EAAWhC,EAAgB,IAAIO,GAAesB,GAAMA,EAAKE,CAAK,CAAC,EAAOxB,GAAesB,GAAMA,EAAKE,CAAK,EAArNC,EAAWhC,EAAgB,IAAIO,GAAesB,GAAMA,EAAKE,CAAK,CAAC,EAAOxB,GAAesB,GAAMA,EAAKE,CAAK,CAAmH,EAAQE,GAAQC,GAAO,CAAC,IAAMC,EAAmBX,GAAK,EAAEtB,GAAWI,EAAW,EAAQ8B,EAAyBZ,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAQ+B,EAAKH,EAAMC,EAAyBG,GAAaJ,EAAM,KAAK,IAAIE,CAAwB,EAAMhF,GAAuE4C,EAAgB,IAAIO,GAAesB,IAAMA,GAAKS,EAAY,CAAC,EAAtHtC,EAAgB,IAAIO,GAAesB,IAAMA,GAAKQ,CAAI,CAAC,CAAsE,EAEtjCE,GAAgB,IAAI,CAACvC,EAAgB,IAAIS,GAAc,EAAI,CAAC,CAAE,EAAQ+B,GAAc,CAACC,EAAM,CAAC,OAAAC,EAAO,SAAAC,CAAQ,IAAI,CAAC3C,EAAgB,IAAIS,GAAc,EAAK,CAAC,EAAE,IAAMmC,EAAWzF,EAAauF,EAAO,EAAEA,EAAO,EAAQG,GAAkB,IACxOC,GAAa3F,EAAawF,EAAS,EAAEA,EAAS,EAAQI,GAAaH,EAAW,CAAC5E,EAAK,KAAK,EAAQgF,GAAaJ,EAAW5E,EAAK,KAAK,EAA6DiF,GAAiB,KAAK,IAAIL,CAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiBjF,EAAK,IAAI,EAAqFmF,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBf,GAAS,CAACqB,GAAiB,EAAI,EAAWL,GAAa,CAACD,GAAmBf,GAASqB,GAAiB,EAAI,GAA2EJ,IAAcjB,GAASoB,GAAU,EAAI,EAAMF,IAAclB,GAAS,CAACoB,GAAU,EAAI,EAAI,EAAgErD,GAAU,IAAI,CAAC,GAAG,GAACgB,IAAWpC,IAAYzB,IAAgB,GAAS,OAAA2E,GAAY,EAAQ,IAAI5D,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAckC,GAAUpC,EAAU,CAAC,EAA8D,IAAI2E,GAAa,EAEjjCC,GAAiB,QAAQ,IAAItJ,CAAU,OAAOP,CAAG,QAAQA,EAAIO,CAAU,MAI/E,QAAQmI,EAAM,EAAEA,EAAMtD,GAAYsD,IAASvD,GAAcA,GAAc,OAAO1B,GAAS,IAAIF,GAAc,CAACuG,EAAMC,IAAa,CAAC,IAAIC,EAAI,OAAGtB,IAAQ,IAAMqB,IAAa,EAAGC,EAAI3F,GAAY,CAAC,EAAW0F,IAAaxG,GAAc,OAAO,IAAGyG,EAAI3F,GAAY,CAAC,IAAwBN,EAAKkG,GAAM,CAAC,IAAID,EAAI,SAAStB,EAAMqB,EAAW,KAAK,MAAMrB,EAAM,MAAM/E,GAAapD,EAAW,EAAEsJ,GAAwB,OAAO,OAAQlG,EAAkD,OAArCpD,EAAW,EAAEsJ,GAAiB,OAAc,KAAKrF,EAAK,MAAMsF,EAAM,YAAYvG,IAAe,OAAO,aAAaqE,GAAa,aAAagC,KAAe,IAAI5J,EAAI,SAASqD,EAAS,aAAaM,EAAa,eAAe5C,EAAe,aAAaC,GAAa,cAAcC,GAAc,SAASyH,EAAMqB,CAAU,EAAErB,EAAMqB,EAAW,IAAI,CAAE,CAAC,CAAC,EAE1vB,IAAMG,GAAcvG,EAAa,WAAW,YAAkBwG,GAAe5I,GAAU,EAAQ6I,GAAa,IAAI7I,GAAU,EAAQ8I,GAAeC,GAAM9I,GAAU,EAAE2I,EAAc,EAAQI,GAAa,IAAI/I,GAAgBgJ,GAAS,mBAAmBN,EAAa,mBAAmBzI,EAAS,KAAK4I,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoB3I,EAAS,KAAK8I,EAAY,KAElaE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGjI,GAAiB,CAAC,QAAQkI,EAAE,EAAEA,EAAEpH,IAAe,OAAOoH,IAAKF,GAAK,KAAkB1G,EAAK6G,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMnI,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY+H,GAAiB,gBAAgB7H,GAAkB,QAAQC,GAAY,QAAQ,IAAIuF,GAAQkC,CAAC,EAAE,aAAa1C,GAAa,qBAAqBC,GAAqB,MAAMxB,GAAW,MAAMiE,EAAE,IAAI7H,GAAQ,QAAQD,GAAY,aAAac,EAAa,WAAWC,EAAU,EAAE+G,CAAC,CAAC,EAAMxH,GAAS,IAAGuH,GAAc,eAAeA,GAAc,qBAAqB,QAAQvH,EAAQ,MAAO,CAAC,IAAM4H,GAAUjL,EAAY,CAAC,KAAK6D,EAAa,IAAI,IAAI,YAAYoF,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAExB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQwD,GAAY9I,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkB+I,GAAe/I,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqBgJ,GAAahJ,IAAgB,YAAYA,IAAgB,cAAoBiJ,GAAcjJ,IAAgB,aAAaA,IAAgB,eAAqBkJ,GAAYlJ,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAoB2B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGwH,GAAe,QAAQjI,GAAa,gBAAgB/B,GAAYmJ,GAAS,OAAU,UAAUnJ,GAAYmJ,GAAS,OAAU,QAAQhG,GAAM,OAAO,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,IAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,IAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAYmE,GAAO,CACloDA,EAAM,eAAe,EAAEzC,EAAgB,IAAIxB,GAAe,EAAI,CAAC,CAAE,EAAE,UAAU,IAAIwB,EAAgB,IAAIxB,GAAe,EAAK,CAAC,EAAE,IAAIkC,GAAc,SAAS,CAAcnD,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASzC,GAAS,UAAU,SAAS,aAAaV,EAAa,WAAW,OAAO,YAAYyC,EAAS,OAAOnC,CAAkB,EAAE,SAAsB6C,EAAKuH,EAAO,GAAG,CAAC,IAAInH,GAAU,GAAG4G,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIrL,EAAI,WAAWD,EAAU,EAAE4D,EAAaN,EAASqE,GAAeE,GAAa,EAAE,EAAGjE,EAAkD,EAArCN,EAASqE,GAAeE,GAAe,cAAcjE,EAAa,MAAM,SAAS,eAAe1C,KAAgB,GAAG,CAACoC,EAAS,cAAc,OAAU,OAAOvD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,CAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAetB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAG0H,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAc1H,EAAMyH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAc3H,EAAa,MAAM,SAAS,eAAe3B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB3C,GAAU,EAAE,WAAW,SAAS,MAAM6C,GAAa,IAAIH,GAAiBG,GAAa6I,GAAY3I,GAAgB,QAAQ,KAAKL,GAAiBG,GAAa+I,GAAa1I,GAAiB4I,GAAY,EAAE,QAAQ,MAAMpJ,GAAiBG,GAAagJ,GAAc7I,GAAkB8I,GAAY,EAAE,QAAQ,OAAOpJ,GAAiBG,GAAa8I,GAAe1I,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ0C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,EAAkB,SAAS,CAAcqD,EAAKuH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBjJ,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ+B,EAAgB,EAAH,GAAK,QAAQjC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI4G,GAAS,GAAG,EAAI,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBvE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMpC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAeiC,EAAKuH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBjJ,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ+B,EAAgB,EAAH,GAAK,QAAQjC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI4G,GAAS,EAAE,EAAI,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBvE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMpC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0I,GAAK,OAAO,EAAe1G,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGyH,GAAmB,KAAK7H,EAAa,MAAMhB,GAAU,IAAKgB,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAahB,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAG0H,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBlL,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,GAAK,cAAc,EAAK,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyBkM,GAAoBlM,EAAU,CAAC,MAAM,CAAC,KAAKmM,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAanM,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAKmM,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAOlM,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAKkM,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAanM,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAKmM,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAanM,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAKmM,EAAY,OAAO,MAAM,QAAQ,aAAanM,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAKmM,EAAY,OAAO,MAAM,cAAc,aAAanM,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKmM,EAAY,OAAO,MAAM,SAAS,aAAanM,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAKmM,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAanM,EAAU,aAAa,eAAe,YAAY,EAAE,cAAc,CAAC,KAAKmM,EAAY,QAAQ,MAAM,YAAY,aAAa,OAAO,cAAc,QAAQ,aAAanM,EAAU,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKmM,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAanM,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAKmM,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAanM,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAKmM,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOlM,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKkM,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOlM,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKkM,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOlM,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKkM,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOlM,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKkM,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAanM,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAKmM,EAAY,MAAM,MAAM,OAAO,OAAOlM,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKmM,EAAY,MAAM,MAAM,WAAW,OAAOlM,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKkM,EAAY,MAAM,MAAM,OAAO,OAAOlM,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKkM,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAanM,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKkM,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOlM,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAKkM,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAOlM,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAKkM,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAanM,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAKkM,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAOlM,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAKkM,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAKkM,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAKkM,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAKkM,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAKkM,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAKkM,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAKkM,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKkM,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKkM,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKkM,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKkM,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKkM,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKkM,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKkM,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKkM,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKkM,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOlM,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAM6L,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BvH,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,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,EAA4B4G,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAkBC,EAAW,SAAmBvM,EAAMwK,EAAI,CAAC,GAAK,CAAC,SAAAgC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAApC,EAAM,KAAAtF,EAAK,IAAAxE,EAAI,aAAA4H,EAAa,YAAAuE,EAAY,aAAAvC,EAAa,SAAAvG,EAAS,QAAA+I,EAAQ,eAAArL,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAA0C,EAAa,OAAA0I,EAAO,MAAA3D,CAAK,EAAElJ,EAAY8M,EAAYlI,EAAO,EAEr2amI,GAAa/H,GAAM,KAAKxE,GAAK4J,EAAmB4C,EAAY,CAAC,CAAChI,GAAM,KAAK,EAAEA,GAAM,OAAOA,GAAM,KAAKxE,EAAIwE,GAAM,MAAM,EAAE,IAAIiI,IAAKA,GAAIF,CAAW,EAE7IG,EAAQ,CAACrJ,GAAUwE,GAAaD,EAAa4E,EAAY,CAAC,CAACvL,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQ0L,GAAQ,CAACtJ,GAAUwE,GAAaD,EAAa4E,EAAY,CAACvL,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQ2L,GAAQ,CAACvJ,GAAUwE,GAAaD,EAAa4E,EAAY,CAACzL,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQ8L,EAAM,CAACxJ,GAAUwE,GAAaD,EAAa4E,EAAY,CAACxL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQ8L,GAAW,CAACzJ,GAAUwE,GAAaD,EAAa4E,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQnF,GAAU,CAAChE,GAAUwE,GAAaD,EAAamF,IAAQA,IAAQP,EAAY,CAAC,GAAGO,IAAQP,EAAY,CAAC,CAAC,EAAEnG,GAAU,IAAI,CAAC,GAAIgB,GAAiB,OAAOA,GAAU,GAAG,SAAS2F,IAAU,EAAYhD,GAAK,SAASsC,EAAY,UAAc,aAAa,cAAc,CAACU,EAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAMC,GAAW5J,EAAS,UAAUwE,GAAaD,EAAa,CAAC4E,EAAY,CAAC,EAAEhI,EAAK,eAAe0I,GAAIV,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAEhI,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAQ2I,GAAInB,EAAS,QAAQ,OAAoBjI,EAAKqJ,EAAY,CAAC,QAAQ,KAAK,GAAGD,GAAI,SAAsBpJ,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAc2E,IAAQ,EAAa,SAAsB2E,GAAavD,EAAM,CAAC,IAAIE,GAAKsC,EAAY,IAAAa,GAAI,MAAM,CAAC,GAAGrD,EAAM,OAAO,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAmC,EAAM,OAAAC,EAAO,QAAQU,GAAQ,MAAMC,EAAM,QAAQlJ,EAAamJ,GAAW,GAAG,QAASnJ,EAAwB,GAAXmJ,GAAc,QAAQnJ,EAAa+I,EAAQ,EAAE,QAAS/I,EAAqB,EAARgJ,GAAU,WAAAM,EAAU,EAAE,SAASnD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAapB,EAAM,MAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAQkC,GAAiBkB,GAAK,SAAa,CAAC,gBAAAwB,EAAgB,QAAAV,EAAQ,MAAAW,EAAM,MAAA7E,EAAM,aAAAT,EAAa,qBAAAC,EAAqB,SAAA2C,EAAS,YAAA2C,EAAY,IAAAxN,EAAI,QAAAC,EAAQ,aAAA0D,EAAa,WAAAC,EAAW,GAAGpE,CAAK,EAAE,CAA8C,IAAIiO,EAAWxF,IAAeS,EAAuD9E,IAAY6J,EAAW,KAAK,IAAIvF,CAAoB,IAAIQ,GAAO,IAAMgF,EAAc1N,EAAI,EAAQ2N,EAAI,CAAChK,GAAc+E,EAAM,EAAEgF,EAAczN,EAAc2N,EAAO,CAACjK,GAAc+E,IAAQ6E,EAAM,EAAEG,EAAczN,EAAc4N,EAAMlK,GAAc+E,IAAQ6E,EAAM,EAAEG,EAAczN,EAAc6N,EAAKnK,GAAc+E,EAAM,EAAEgF,EAAczN,EAAQ,OAAoB8D,EAAK,SAAS,CAAC,aAAa,kBAAkB2E,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGlJ,EAAM,MAAM,CAAC,GAAGgO,EAAY,QAAQ,GAAGG,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAsB/J,EAAKuH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQ4C,EAAWH,EAAgBV,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAwBpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECnEl6C,IAAMkD,GAAsBC,EAASC,EAAgB,EAAQC,GAAiBF,EAASG,CAAW,EAAQC,GAAeJ,EAASK,CAAS,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAQE,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAA2R,IAAMC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,GAAK,CAAC,eAAAC,EAAe,eAAAC,EAAe,SAAAC,CAAQ,EAAEC,GAA0BN,EAAMC,EAAS,WAAW,EAAQM,EAAKC,GAAaL,CAAc,EAAE,OAAOD,EAASK,EAAKH,EAAeC,CAAQ,CAAE,EAAQI,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAR,CAAQ,IAAI,CAAC,IAAMS,EAAaC,GAAWC,EAAmB,EAAQC,EAAWJ,GAAOC,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASb,CAAQ,CAAC,CAAE,EAAQgB,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,OAAO,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,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,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,CAAS,EAAExB,GAASI,CAAK,EAAO,CAAC,YAAAqB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1B,CAAQ,EAAE2B,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,IAAItB,EAAW,QAAAW,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiB/B,GAAuBD,EAAME,CAAQ,EAA0G+B,GAAkBC,EAAGC,GAAkB,GAAnH,CAAalB,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQmB,GAAOC,GAAU,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKR,GAAW,CAAC,MAAMwD,GAAY,SAAsBC,EAAMC,EAAM,CAAC,GAAGrB,EAAU,GAAGI,EAAgB,GAAG,UAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkB,EAA0B5B,GAAmB,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,EAAE,UAAUoB,EAAGD,GAAkB,gBAAgBhB,EAAUK,CAAU,EAAE,mBAAmB,gBAAgB,iBAAiBU,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG2B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEtB,EAAYI,CAAc,EAAE,SAAS,CAAclC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,eAAe,YAAY,WAAW,8GAA8G,qBAAqB,WAAW,CAAC,CAAC,EAAezC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,eAAe,YAAY,WAAW,kIAAkI,qBAAqB,WAAW,CAAC,CAAC,EAAeQ,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAcQ,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBuC,EAAiB,SAAS,YAAY,SAAsBzC,EAAKqD,EAAS,CAAC,sBAAsB,GAAK,SAAsBrD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,YAAY,WAAW,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,WAAW,8BAA8B,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGW,GAAqB,CAAC,UAAU,CAAC,SAAsBpD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAee,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBuC,EAAiB,SAAS,YAAY,SAAS,CAAczC,EAAKqD,EAAS,CAAC,sBAAsB,GAAK,SAAsBrD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,4HAAuH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBuC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAezC,EAAKsD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BvD,EAAKwD,EAA0B,CAAC,OAAO,GAAG,GAAGjC,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,MAAM,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,GAAG6B,GAAqB,CAAC,UAAU,CAAC,GAAG7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,OAAO,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,KAAK,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,OAAOA,GAAmB,QAAQ,KAAK,IAAI,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBlC,EAAKyD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBhB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAWiB,GAAU,SAAsB1D,EAAK2D,GAAiB,CAAC,UAAU,iBAAiB,UAAUJ,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU,GAAM,MAAM,OAAO,GAAGH,GAAqB,CAAC,UAAU,CAAC,UAAUG,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAEzB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKwD,EAA0B,CAAC,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK4D,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,KAAK,cAAc,cAAc,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAK,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,EAAE,cAAc,EAAK,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,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,EAAK,EAAE,MAAM,CAAc5D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,oBAAoB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,oBAAoB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,4BAA4B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,oBAAoB,UAAUC,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,OAAO,oVAAoV,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,sBAAsB,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,kCAAkC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,KAAK,WAAW,IAAI,UAAU,QAAQ,UAAU,QAAQ,IAAI,sEAAsE,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,kBAAkB,QAAQ,YAAY,MAAM,OAAO,UAAU,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,6BAA6B,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,KAAK,WAAW,IAAI,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,2CAA2C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,GAAG,QAAQ,YAAY,MAAM,OAAO,UAAU,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,uBAAuB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,6CAA6C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,0CAA0C,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAKwD,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBxD,EAAKyD,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,gBAAgB,GAAK,iBAAiBhB,EAAiB,SAAS,sBAAsB,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBzC,EAAK6D,EAAY,CAAC,UAAU,sCAAsC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,UAAUC,GAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,EAAE,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,iBAAiB,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,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,OAAO,GAAGV,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,CAAC,EAAEtB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBuC,EAAiB,SAAS,YAAY,SAAsBzC,EAAK+D,GAAmB,CAAC,SAAsB/D,EAAKlB,GAAU,CAAC,SAAS,GAAG,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKkF,GAAa,KAAK,YAAY,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,KAAK,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,SAAS,KAAK,MAAM,CAAC,KAAK,eAAe,MAAM,+BAA+B,EAAE,KAAK,iBAAiB,CAAC,EAAE,SAAS,CAACC,EAAW9E,GAAeC,KAAwBY,EAAKkE,GAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,kFAAkF,sRAAsR,uJAAuJ,0JAA0J,mSAAmS,0QAA0Q,4SAA4S,sKAAsK,0RAA0R,qKAAqK,2KAA2K,0GAA0G,0XAA0X,2PAA2P,iEAAiE,8GAA8G,mJAAmJ,6HAA6H,iKAAiK,gIAAgI,kJAAkJ,6GAA6G,iEAAiE,wGAAwG,kGAAkG,8KAA8K,mHAAmH,+EAA+E,qGAAqG,2EAA2E,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAUp2yBC,GAAgBC,GAAQzD,GAAUuD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,GAAsB,GAAGC,GAAiB,GAAGC,GAAe,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVnyC,IAAMC,GAAsBC,EAASC,EAAgB,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAQE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,OAAO,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,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,EAAW,SAASH,EAAMI,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,QAAAvC,EAAQ,GAAGwC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,IAAIoC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiB3B,GAAuBD,EAAMxB,CAAQ,EAAO,CAAC,sBAAAqD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAA0GQ,GAAkBC,EAAG/D,GAAkB,GAAnH,CAAa4C,GAAuBA,GAAuBA,EAAS,CAAuE,EAAE,OAAoBzB,EAAK6C,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQhB,EAAS,QAAQ,GAAM,SAAsBe,EAAKT,GAAW,CAAC,MAAMH,GAAY,SAAsBY,EAAKE,EAAO,OAAO,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUa,EAAGD,GAAkB,gBAAgBlB,EAAUI,CAAU,EAAE,mBAAmB,gBAAgB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGzC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,SAAS,iBAAiB,GAAK,MAAM0D,EAAY,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAsBc,EAAM5C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBS,EAAM5C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcS,EAAM5C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,UAAU,CAAC,SAAsBiB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAK+C,EAAS,CAAC,sBAAsB,GAAK,SAAsB/C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,6LAAwL,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,MAAM,QAAQ,EAAE,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAerC,EAAKgD,EAA0B,CAAC,OAAO,GAAG,GAAG1B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,GAAGvC,GAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,GAAG,GAAG,EAAE,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKiD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW/C,GAAU,SAAsBU,EAAKrB,GAAiB,CAAC,UAAU,kBAAkB,UAAU,mCAAmC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemE,EAAM5C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,WAAW,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoE,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,YAAYA,GAAmB,OAAO,OAAO,2BAA2B,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,gBAAgBA,GAAmB,OAAO,OAAO,iDAAiD,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAec,EAAM5C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAW,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoE,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,aAAa,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,uCAAuC,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,IAAI,MAAM,eAAeA,GAAmB,OAAO,OAAO,6DAA6D,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAW,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,gBAAgB,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGtD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQoE,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,IAAI,EAAE,EAAE,GAAG,GAAG,IAAI,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,WAAWA,GAAmB,OAAO,OAAO,uCAAuC,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,KAAK,GAAG,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,eAAeA,GAAmB,OAAO,OAAO,6DAA6D,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQoB,GAAI,CAAC,kFAAkF,kFAAkF,+PAA+P,+SAA+S,+QAA+Q,mRAAmR,4RAA4R,oIAAoI,qKAAqK,4KAA4K,6RAA6R,4KAA4K,2QAA2Q,6KAA6K,8KAA8K,sFAAsF,mEAAmE,gHAAgH,sGAAsG,iEAAiE,8DAA8D,8EAA8E,sHAAsH,4WAA4W,mKAAmK,mHAAmH,kEAAkE,qJAAqJ,gFAAgF,oEAAoE,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAUjxrBC,GAAgBC,GAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5E,GAAsB,GAAGkF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV/mC,IAAMC,GAAwCC,GAA0BC,GAAOC,CAAQ,CAAC,EAAQC,GAAaC,EAASC,EAAO,EAAQC,GAAuCN,GAA0BC,GAAOM,EAAO,CAAC,CAAC,EAAQC,GAAyCR,GAA0BC,GAAOM,EAAO,GAAG,CAAC,EAAQE,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,OAAO,GAAG,MAAM,GAAG,SAAS,EAAE,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS/B,EAAO,OAAagC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,OAAO,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,GAAuB,CAACD,EAAM/B,IAAe+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAE+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAUiC,GAA6BC,EAAW,SAASH,EAAMI,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,QAAA9C,EAAQ,GAAG+C,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,GAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,IAAI2C,EAAW,QAAApC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiB3B,GAAuBD,EAAM/B,CAAQ,EAAiI4D,GAAkBC,EAAGjE,GAAkB,GAA1I,CAAamD,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAE,OAAoBxB,EAAKuC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQxB,EAAS,QAAQ,GAAM,SAAsBuB,EAAKT,GAAW,CAAC,MAAMX,GAAY,SAAsBoB,EAAKwC,EAAM,CAAC,GAAGd,EAAU,GAAGI,EAAgB,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQW,EAA0BpB,GAAmB,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAUiB,EAAGD,GAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,gBAAgB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGhD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAsBW,EAAMxE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK9B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBpC,EAAK9B,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBM,EAAMxE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBkE,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKtC,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQoB,GAAU,SAAsBkB,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,QAAQa,GAAW,iBAAiBqD,EAAiB,SAAS,YAAY,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,GAAqB,CAAC,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,EAAe/B,EAAKtC,GAAwC,CAAC,sBAAsB,GAAK,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQuB,GAAW,SAAsBe,EAAWE,EAAS,CAAC,SAAsBwC,EAAMxE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAc8B,EAAK9B,EAAO,KAAK,CAAC,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,IAAI,CAAC,EAAE,qPAAgP,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,QAAQa,GAAW,iBAAiBqD,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,sBAAsB,wEAAwE,6BAA6B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,GAAqB,CAAC,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,uPAAkP,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK9B,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,iBAAiBkE,EAAiB,SAAS,YAAY,SAAsBM,EAAMvE,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQgB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,MAAM,QAAQJ,GAAW,iBAAiBqD,EAAiB,SAAS,YAAY,UAAU,GAAK,SAAS,CAAcpC,EAAK2C,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB3C,EAAK9B,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,WAAW,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,oCAAoC,EAAE,SAAsBpC,EAAKnC,EAAS,CAAC,sBAAsB,GAAK,SAAsBmC,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiBkE,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,iEAAiE,EAAE,UAAU,CAAC,qBAAqB,iEAAiE,CAAC,EAAE,kBAAkB,SAAS,mBAAmB,GAAK,GAAG7D,GAAqB,CAAC,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0FAA0F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB8B,EAAWE,EAAS,CAAC,SAAsBF,EAAK9B,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0FAA0F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK2C,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB3C,EAAK/B,GAAuC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQoB,GAAW,UAAU,gCAAgC,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB8C,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,oCAAoC,EAAE,SAAsBpC,EAAK4C,EAA0B,CAAC,SAAsB5C,EAAK6C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBT,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKhC,GAAQ,CAAC,MAAM,eAAe,OAAO,OAAO,WAAW,OAAO,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8E,GAAI,CAAC,kFAAkF,kFAAkF,sRAAsR,0SAA0S,gRAAgR,gRAAgR,gRAAgR,iJAAiJ,qKAAqK,2RAA2R,mRAAmR,6UAA6U,gHAAgH,sUAAsU,yGAAyG,kGAAkG,0FAA0F,8GAA8G,mEAAmE,gFAAgF,iGAAiG,2KAA2K,oEAAoE,yHAAyH,iIAAiI,0GAA0G,4MAA4M,8DAA8D,4EAA4E,mGAAmG,kFAAkF,8FAA8F,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAU9jiBC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjF,GAAa,GAAGuF,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVlrEC,GAAU,UAAU,CAAC,2BAA2B,aAAa,mBAAmB,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,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,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,ioCAAioC,EAAeC,GAAU,eCA53L,IAAMC,GAAsBC,EAASC,EAAgB,EAAQC,GAAgBF,EAASG,EAAU,EAAQC,GAAmCC,GAA0BC,EAAO,GAAG,EAAQC,GAAaP,EAASQ,EAAO,EAAQC,GAAsBT,EAASU,EAAgB,EAAQC,GAAkBX,EAASY,EAAY,EAAQC,GAAUb,EAASc,EAAI,EAAQC,GAAgBf,EAASgB,EAAU,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,4CAA4C,UAAU,qBAAqB,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,IAAI,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,EAAW,SAASF,EAAMG,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,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQtC,GAAY,EAAK,EAAQ+C,EAAe,OAAqOC,EAAkBC,EAAG/C,GAAkB,GAAtO,CAAakC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAY,IAASjD,GAAU,EAAiB2C,IAAc,YAAtB,GAAmEO,EAAa,IAASlD,GAAU,EAAiB2C,IAAc,YAAtB,GAAmEQ,EAAOC,GAAU,EAAQC,EAAa,IAAQ,CAACrD,GAAU,GAAiB2C,IAAc,YAAuC,OAAAW,GAAiB,CAAC,CAAC,EAAsBxC,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAArD,EAAiB,EAAE,SAAsBsD,EAAMC,EAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,4FAA4F,CAAC,EAAe6C,EAAMpE,EAAO,IAAI,CAAC,GAAGkD,EAAU,UAAUU,EAAGD,EAAkB,iBAAiBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsB7B,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM3B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK/B,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAY,GAAgBnC,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM3B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,yCAAyC,mBAAmB,8BAA8B,KAAK,8BAA8B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK7B,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,8BAA8B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iCAAiC,SAAsB0C,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,WAAW,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,sBAAsB,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kDAAkD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0IAA0I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oFAAoF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBnD,EAAK1B,EAAO,EAAE,CAAC,UAAU,gCAAgC,cAAc,GAAK,mBAAmB,MAAM,WAAWgB,GAAU,SAAsBU,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,MAAM,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,sBAAsB,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kDAAkD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oFAAoF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,sBAAsB,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kDAAkD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yFAAyF,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yFAAyF,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yFAAyF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oFAAoF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKmD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBnD,EAAK1B,EAAO,EAAE,CAAC,UAAU,gCAAgC,cAAc,GAAK,mBAAmB,MAAM,WAAWgB,GAAU,SAAsBU,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,iBAAiB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,mEAAmE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,mEAAmE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,GAAG,GAAG,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,GAAG,GAAG,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,GAAG,GAAG,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,GAAG,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,GAAG,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,GAAG,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQkB,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQ6B,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,OAAO,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKgD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQD,GAA2B7B,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAewB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc1C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,2DAA2D,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,sBAAsB,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kDAAkD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,8GAA8G,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,8GAA8G,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,iEAAiE,EAAE,SAAS,8GAA8G,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oFAAoF,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,gBAAgB,gBAAgB,IAAI,eAAe,KAAK,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAuqM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,SAAS,CAAcA,EAAMtE,GAAmC,CAAC,QAAQoB,GAAW,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,kBAAkB,QAAQC,GAAW,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcO,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,GAAG,SAAS,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oIAAoI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWiD,EAAS,CAAC,SAAsBjD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,oIAAoI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,oBAAoB,EAAE,MAAS,EAAE,UAAU,CAAC,MAAM,YAAYA,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM,YAAY3B,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,0BAA0B,mBAAmB,SAAS,KAAK,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAKxB,GAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4D,EAAa,GAAgBpC,EAAK5B,GAAmC,CAAC,QAAQuB,GAAW,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,SAAS,QAAQC,GAAW,UAAU,EAAI,CAAC,EAAeI,EAAKqD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BtD,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,OAAO,GAAG,GAAG3B,GAAmB,GAAG,GAAG,EAAE,KAAK,IAAI,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAWxD,GAAU,SAAsBU,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBtD,EAAKtB,GAAiB,CAAC,UAAU,kBAAkB,UAAU4E,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,UAAU,GAAM,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetD,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,OAAO,KAAK,MAAM3B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKpB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAsBA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQ,EAAE,MAAS,EAAE,UAAU,CAAC,MAAMX,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,EAAE,UAAU,CAAC,MAAMA,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,CAAC,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO3B,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlB,GAAK,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,EAAE,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM3B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBlB,EAAK8C,GAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKhB,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuD,EAAa,GAAgBvC,EAAK4C,EAAkB,CAAC,WAAWf,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAMX,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAK8C,GAAU,CAAC,UAAU,uEAAuE,mBAAmB,8BAA8B,KAAK,8BAA8B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK7B,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,8BAA8B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6B,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuD,GAAI,CAAC,kFAAkF,kFAAkF,uVAAuV,uKAAuK,0QAA0Q,0SAA0S,gSAAgS,+RAA+R,4QAA4Q,kvBAAkvB,mIAAmI,8RAA8R,0ZAA0Z,wtBAAwtB,2JAA2J,ySAAyS,8SAA8S,meAAme,oRAAoR,2eAA2e,2WAA2W,wtBAAwtB,0fAA0f,4QAA4Q,gLAAgL,+LAA+L,2SAA2S,iLAAiL,+LAA+L,+LAA+L,kLAAkL,wlBAAwlB,kIAAkI,+QAA+Q,iLAAiL,sTAAsT,mVAAmV,4RAA4R,8VAA8V,kPAAkP,kPAAkP,yWAAyW,2KAA2K,uSAAuS,4GAA4G,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,ytEAAytE,mwFAAmwF,4xEAA4xE,EAa/8qEC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,gBAAgB,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGzF,GAAsB,GAAGG,GAAgB,GAAGK,GAAa,GAAGE,GAAsB,GAAGE,GAAkB,GAAGE,GAAU,GAAGE,GAAgB,GAAG6E,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACznI,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,OAAO,yBAA2B,QAAQ,oCAAsC,oMAA0O,6BAA+B,OAAO,qBAAuB,OAAO,qBAAuB,4BAA4B,kBAAoB,OAAO,yBAA2B,OAAO,sBAAwB,OAAO,4BAA8B,OAAO,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "awaitRefCallback", "element", "controller", "refCallbackResolve", "current", "node", "resolve", "reject", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "amountChildren", "j", "hasChildren", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "Z", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "X", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "fallbackRef", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "key", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "GlobalPrimaryBtnFonts", "getFonts", "t_ORA6Te5_default", "SpeakerCardFonts", "IbDMdeL6w_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "addImageAlt", "image", "alt", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "u", "Image2", "getLoadingLazyAtYPosition", "addPropertyOverrides", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "animation", "t_ORA6Te5_default", "Slideshow", "IbDMdeL6w_default", "addImageAlt", "ChildrenCanSuspend", "iZ_2dKvKk_default", "collection", "l", "css", "FramerlxdJF1sPD", "withCSS", "lxdJF1sPD_default", "addPropertyControls", "ControlType", "addFonts", "GlobalPrimaryBtnFonts", "SpeakerCardFonts", "SlideshowFonts", "getFontsFromSharedStyle", "fonts", "GlobalPrimaryBtnFonts", "getFonts", "t_ORA6Te5_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1l3arve", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "getLoadingLazyAtYPosition", "css", "FramerSlCw0t4kG", "withCSS", "SlCw0t4kG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "RichText", "FeatherFonts", "getFonts", "Icon", "MotionAWithFXWithOptimizedAppearEffect", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerW92IWyjal", "withCSS", "W92IWyjal_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SectionNavBarV24Fonts", "getFonts", "wUBjfnWh1_default", "LabHeroV20Fonts", "W92IWyjal_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "ClientsFonts", "sqnODFYgP_default", "GlobalPrimaryBtnFonts", "t_ORA6Te5_default", "TalksLibraryFonts", "lxdJF1sPD_default", "TeamFonts", "SlCw0t4kG_default", "FooterMainFonts", "yykcUGwwA_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "x", "RichText", "Link", "SVG", "ResolveLinks", "resolvedLinks", "css", "FramerMQcEY9Zve", "withCSS", "MQcEY9Zve_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
