{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js", "ssg:https://framerusercontent.com/modules/XAwkphis6JkHEmwEsT6z/QYkFU0onF4I5jTW66Rxl/DFQQNLKex.js", "ssg:https://framerusercontent.com/modules/uS2cUOI5GHiRtg39nZDQ/ZT5iYsFNDDZH5iMsGMkQ/EDyObvRJ1.js", "ssg:https://framerusercontent.com/modules/GR8bjHxkhLQle3xHRkrb/QnGRlOmM7BDPKwuNlMbV/IKmwBW2_x.js", "ssg:https://framerusercontent.com/modules/B7fmlPyUWETR8Dol29wO/8AfHkcWY0lFFgpuv1EDs/isc7OfMv_.js", "ssg:https://framerusercontent.com/modules/zCE3Jjl4McB8oiMEorVj/ai56OwZ1jrIXasko7MHr/K1DyoYtXW.js", "ssg:https://framerusercontent.com/modules/v1s2D2WqhSEQv5NM7a0b/dYz62GV3yYo3Eerv4euo/ny10ibks3.js", "ssg:https://framerusercontent.com/modules/ns7QDg6kiKD9XNyWMA9W/tFqPBdD1go91dX2lxnhc/VozXPD5Y3.js", "ssg:https://framerusercontent.com/modules/OS1yx60IacQr47COETca/gtht7pf9vbB5bgcZBnjC/w_xokDaHo.js", "ssg:https://framerusercontent.com/modules/dtlqavxJMnprJdCK8aBA/q5J1pbCl2Yms2bIZcfvW/x_FYmvj_B.js", "ssg:https://framerusercontent.com/modules/yHfCCu6d7dcH4FejRRBJ/7io7Iu1HxEhOxXPmLK89/yQr1dbEq5.js", "ssg:https://framerusercontent.com/modules/CpZxk9yWihCvwEM7Bz1g/28kOE3BRB4XuCEq06HKV/Pe8pSGB2V.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,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";// 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;function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);}).catch(()=>{});// 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\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}/**\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}=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 hasChildren=Children.count(filteredSlots)>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 filteredSlots.map(index=>({current:null}));},[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     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.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);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);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=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,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();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* 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===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0: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===null||size===void 0?void 0: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){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-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){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{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);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)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.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],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===null||filteredSlots===void 0?void 0: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===null||filteredSlots===void 0?void 0: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=dotsBlurStyle.MozBackdropFilter=`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,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0: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();setIsMouseDown(true);},onMouseUp:()=>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),\"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),\"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},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}}},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__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0: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=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.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\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_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},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});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\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (d6b3045)\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,PathVariablesContext,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import DesignTV from\"https://framerusercontent.com/modules/t6ZRMK4ziCcjlQbrQPKo/DyTk37IrA0EyQ7vQin8H/lsl3HAWzJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"aF9kmECfI\",\"INOVeFhsv\"];const serializationHash=\"framer-acn6x\";const variantClassNames={aF9kmECfI:\"framer-v-1yj7ja3\",INOVeFhsv:\"framer-v-1ksgq7p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"mUfUURPHL\",data:DesignTV,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"mUfUURPHL\",name:\"ZFmCrk_El\",type:\"Identifier\"},{collection:\"mUfUURPHL\",name:\"I6VviQuE_\",type:\"Identifier\"},{collection:\"mUfUURPHL\",name:\"cFGzv_mX9\",type:\"Identifier\"},{collection:\"mUfUURPHL\",name:\"id\",type:\"Identifier\"}],where:{collection:\"mUfUURPHL\",name:\"WIuT370UY\",type:\"Identifier\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={DESKTOP:\"aF9kmECfI\",MOBILE:\"INOVeFhsv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aF9kmECfI\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZFmCrk_ElmUfUURPHL,I6VviQuE_mUfUURPHL,cFGzv_mX9mUfUURPHL,idmUfUURPHL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aF9kmECfI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1yj7ja3\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"aF9kmECfI\",ref:ref??ref1,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({INOVeFhsv:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17ib00t\",layoutDependency:layoutDependency,layoutId:\"mUfUURPHL\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"mUfUURPHL\",data:DesignTV,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"mUfUURPHL\",name:\"ZFmCrk_El\",type:\"Identifier\"},{collection:\"mUfUURPHL\",name:\"I6VviQuE_\",type:\"Identifier\"},{collection:\"mUfUURPHL\",name:\"cFGzv_mX9\",type:\"Identifier\"},{collection:\"mUfUURPHL\",name:\"id\",type:\"Identifier\"}],where:{collection:\"mUfUURPHL\",name:\"WIuT370UY\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"ZFmCrk_El\":ZFmCrk_ElmUfUURPHL,\"I6VviQuE_\":I6VviQuE_mUfUURPHL,\"cFGzv_mX9\":cFGzv_mX9mUfUURPHL,\"id\":idmUfUURPHL},i)=>{I6VviQuE_mUfUURPHL??=\"\";cFGzv_mX9mUfUURPHL??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`mUfUURPHL-${idmUfUURPHL}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cFGzv_mX9:cFGzv_mX9mUfUURPHL},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-111mu0\",layoutDependency:layoutDependency,layoutId:\"yxW41o0nr\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1+0)+0+0)+0+(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1)+0)+0),sizes:\"1px\",...toResponsiveImage(ZFmCrk_ElmUfUURPHL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1l9ugdd\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"idlxVPZhi\",...addPropertyOverrides({INOVeFhsv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+46960+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ZFmCrk_ElmUfUURPHL),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-erei7z\",\"data-framer-name\":\"TEXT BAR\",layoutDependency:layoutDependency,layoutId:\"COOrH7Als\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cjclrw\",\"data-framer-name\":\"TEXT STACK\",layoutDependency:layoutDependency,layoutId:\"FPuDAjsUY\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Introducing CMF Phone 1 - Wonderful by design\"})}),className:\"framer-rvm886\",\"data-framer-name\":\"News Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DKnM2qbq6\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I6VviQuE_mUfUURPHL,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({INOVeFhsv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Introducing CMF Phone 1 - Wonderful by design\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined},{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1+0)+0+0)+0+(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1)+0)+0+(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1-0-80+0+0)+17,...addPropertyOverrides({INOVeFhsv:{y:(componentViewport?.y||0)+0+0+0+46960+0+196.875+16+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cz9odq-container\",layoutDependency:layoutDependency,layoutId:\"H8NyaVXGE-container\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"H8NyaVXGE\",layoutId:\"H8NyaVXGE\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to DesignTV\",yzRVKfC3H:resolvedLinks[0],...addPropertyOverrides({INOVeFhsv:{yzRVKfC3H:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})},idmUfUURPHL);})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-acn6x.framer-1qb192d, .framer-acn6x .framer-1qb192d { display: block; }\",\".framer-acn6x.framer-1yj7ja3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-acn6x .framer-17ib00t { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-acn6x .framer-111mu0 { align-content: center; align-items: center; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-acn6x .framer-1l9ugdd { bottom: 80px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-acn6x .framer-erei7z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-acn6x .framer-cjclrw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 80px 0px 0px; position: relative; width: 1px; }\",\".framer-acn6x .framer-rvm886 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-acn6x .framer-cz9odq-container { flex: none; height: 46px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-acn6x.framer-1yj7ja3, .framer-acn6x .framer-17ib00t, .framer-acn6x .framer-111mu0, .framer-acn6x .framer-cjclrw { gap: 0px; } .framer-acn6x.framer-1yj7ja3 > *, .framer-acn6x .framer-17ib00t > *, .framer-acn6x .framer-111mu0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-acn6x.framer-1yj7ja3 > :first-child, .framer-acn6x .framer-17ib00t > :first-child, .framer-acn6x .framer-111mu0 > :first-child { margin-top: 0px; } .framer-acn6x.framer-1yj7ja3 > :last-child, .framer-acn6x .framer-17ib00t > :last-child, .framer-acn6x .framer-111mu0 > :last-child { margin-bottom: 0px; } .framer-acn6x .framer-cjclrw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-acn6x .framer-cjclrw > :first-child { margin-left: 0px; } .framer-acn6x .framer-cjclrw > :last-child { margin-right: 0px; } }\",\".framer-acn6x.framer-v-1ksgq7p.framer-1yj7ja3 { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-acn6x.framer-v-1ksgq7p .framer-17ib00t { aspect-ratio: unset; flex: none; height: min-content; width: 100%; }\",\".framer-acn6x.framer-v-1ksgq7p .framer-111mu0 { aspect-ratio: unset; flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-acn6x.framer-v-1ksgq7p .framer-1l9ugdd { aspect-ratio: 1.7777777777777777 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 191px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-acn6x.framer-v-1ksgq7p .framer-erei7z { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-acn6x.framer-v-1ksgq7p .framer-cjclrw { flex: none; height: min-content; padding: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-acn6x.framer-v-1ksgq7p .framer-erei7z { gap: 0px; } .framer-acn6x.framer-v-1ksgq7p .framer-erei7z > *, .framer-acn6x.framer-v-1ksgq7p .framer-erei7z > :first-child, .framer-acn6x.framer-v-1ksgq7p .framer-erei7z > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"INOVeFhsv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDFQQNLKex=withCSS(Component,css,\"framer-acn6x\");export default FramerDFQQNLKex;FramerDFQQNLKex.displayName=\"SLIDESHOW - DesignTV 2\";FramerDFQQNLKex.defaultProps={height:440,width:720};addPropertyControls(FramerDFQQNLKex,{variant:{options:[\"aF9kmECfI\",\"INOVeFhsv\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDFQQNLKex,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDFQQNLKex\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"INOVeFhsv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"440\",\"framerIntrinsicWidth\":\"720\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2fef4c5)\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,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FeaturedProjects from\"https://framerusercontent.com/modules/ZkUvaQT5azsmYEqK7CBV/xulil0wgTD7lDRbgAkgy/OrRW57wq3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"pCfGu3HEX\",\"LS9pdIxBf\"];const serializationHash=\"framer-iUJfz\";const variantClassNames={LS9pdIxBf:\"framer-v-zaplr1\",pCfGu3HEX:\"framer-v-1w3tnmw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"cXJut9OYo\",data:FeaturedProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"cXJut9OYo\",name:\"WSV1gUwIu\",type:\"Identifier\"},{collection:\"cXJut9OYo\",name:\"xKC0Tznbr\",type:\"Identifier\"},{collection:\"cXJut9OYo\",name:\"id\",type:\"Identifier\"}],where:{collection:\"cXJut9OYo\",name:\"AYS4_sRzU\",type:\"Identifier\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={DESKTOP:\"pCfGu3HEX\",MOBILE:\"LS9pdIxBf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pCfGu3HEX\"};};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,WSV1gUwIucXJut9OYo,xKC0TznbrcXJut9OYo,idcXJut9OYo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pCfGu3HEX\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1w3tnmw\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"pCfGu3HEX\",ref:refBinding,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({LS9pdIxBf:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ntb7rr\",layoutDependency:layoutDependency,layoutId:\"cXJut9OYo\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"cXJut9OYo\",data:FeaturedProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"cXJut9OYo\",name:\"WSV1gUwIu\",type:\"Identifier\"},{collection:\"cXJut9OYo\",name:\"xKC0Tznbr\",type:\"Identifier\"},{collection:\"cXJut9OYo\",name:\"id\",type:\"Identifier\"}],where:{collection:\"cXJut9OYo\",name:\"AYS4_sRzU\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idcXJut9OYo,WSV1gUwIu:WSV1gUwIucXJut9OYo,xKC0Tznbr:xKC0TznbrcXJut9OYo},index)=>{xKC0TznbrcXJut9OYo??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`cXJut9OYo-${idcXJut9OYo}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xKC0Tznbr:xKC0TznbrcXJut9OYo},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bmx4ga\",layoutDependency:layoutDependency,layoutId:\"dYXD4ZCuS\",style:{borderBottomLeftRadius:34,borderBottomRightRadius:34,borderTopLeftRadius:34,borderTopRightRadius:34},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+80+0)+0+0)+(16+(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1-32-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1-32)*1)/2)+((Math.max(0,((componentViewport?.height||440)-0-80)/1)*1-32)*1*.5000000000000002-((Math.max(0,((componentViewport?.height||440)-0-80)/1)*1-32)*1-0)*1/2)),pixelHeight:1080,pixelWidth:1080,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,...toResponsiveImage(WSV1gUwIucXJut9OYo)},className:\"framer-e8ov99\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"i6Ap4hFkI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(65, 67, 69, 0.5)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},...addPropertyOverrides({LS9pdIxBf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||340)-0-340)/1*0)+8+0+0),pixelHeight:1080,pixelWidth:1080,sizes:`max(max(${componentViewport?.width||\"100vw\"} - 16px, 1px), 50px)`,...toResponsiveImage(WSV1gUwIucXJut9OYo)}}},baseVariant,gestureVariant)})})})},idcXJut9OYo);})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q0xxcr\",layoutDependency:layoutDependency,layoutId:\"d23VFlxKq\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Discover Latest Projects\"})}),className:\"framer-10bd13q\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CeC22BVXY\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LS9pdIxBf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Discover Latest Projects\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nXEsmlxww\"},implicitPathVariables:undefined},{href:{webPageId:\"nXEsmlxww\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+80+0)+Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+0)+17,...addPropertyOverrides({LS9pdIxBf:{y:(componentViewport?.y||0)+0+(0+170+((componentViewport?.height||340)-0-340)/1*1)+16+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tf3sjl-container\",layoutDependency:layoutDependency,layoutId:\"DSXTFAi9m-container\",nodeId:\"DSXTFAi9m\",rendersWithMotion:true,scopeId:\"EDyObvRJ1\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"DSXTFAi9m\",layoutId:\"DSXTFAi9m\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to Featured Projects\",yzRVKfC3H:resolvedLinks[0],...addPropertyOverrides({LS9pdIxBf:{yzRVKfC3H:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iUJfz.framer-tr7iy1, .framer-iUJfz .framer-tr7iy1 { display: block; }\",\".framer-iUJfz.framer-1w3tnmw { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-iUJfz .framer-1ntb7rr { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-iUJfz .framer-bmx4ga { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-iUJfz .framer-e8ov99 { flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-iUJfz .framer-q0xxcr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-iUJfz .framer-10bd13q { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-iUJfz .framer-1tf3sjl-container { flex: none; height: 46px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iUJfz.framer-1w3tnmw, .framer-iUJfz .framer-1ntb7rr { gap: 0px; } .framer-iUJfz.framer-1w3tnmw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-iUJfz.framer-1w3tnmw > :first-child { margin-top: 0px; } .framer-iUJfz.framer-1w3tnmw > :last-child { margin-bottom: 0px; } .framer-iUJfz .framer-1ntb7rr > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-iUJfz .framer-1ntb7rr > :first-child { margin-left: 0px; } .framer-iUJfz .framer-1ntb7rr > :last-child { margin-right: 0px; } }\",\".framer-iUJfz.framer-v-zaplr1.framer-1w3tnmw { gap: unset; height: min-content; justify-content: space-between; width: 340px; }\",\".framer-iUJfz.framer-v-zaplr1 .framer-1ntb7rr { flex: none; gap: 8px; height: 170px; padding: 8px; }\",\".framer-iUJfz.framer-v-zaplr1 .framer-bmx4ga { display: grid; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); justify-content: center; padding: 0px; }\",\".framer-iUJfz.framer-v-zaplr1 .framer-e8ov99 { align-self: start; aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 158px); justify-self: start; left: unset; position: relative; top: unset; z-index: 1; }\",\".framer-iUJfz.framer-v-zaplr1 .framer-q0xxcr { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-iUJfz.framer-v-zaplr1.framer-1w3tnmw, .framer-iUJfz.framer-v-zaplr1 .framer-1ntb7rr, .framer-iUJfz.framer-v-zaplr1 .framer-bmx4ga, .framer-iUJfz.framer-v-zaplr1 .framer-q0xxcr { gap: 0px; } .framer-iUJfz.framer-v-zaplr1.framer-1w3tnmw > *, .framer-iUJfz.framer-v-zaplr1.framer-1w3tnmw > :first-child, .framer-iUJfz.framer-v-zaplr1.framer-1w3tnmw > :last-child, .framer-iUJfz.framer-v-zaplr1 .framer-bmx4ga > *, .framer-iUJfz.framer-v-zaplr1 .framer-bmx4ga > :first-child, .framer-iUJfz.framer-v-zaplr1 .framer-bmx4ga > :last-child, .framer-iUJfz.framer-v-zaplr1 .framer-q0xxcr > *, .framer-iUJfz.framer-v-zaplr1 .framer-q0xxcr > :first-child, .framer-iUJfz.framer-v-zaplr1 .framer-q0xxcr > :last-child { margin: 0px; } .framer-iUJfz.framer-v-zaplr1 .framer-1ntb7rr > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-iUJfz.framer-v-zaplr1 .framer-1ntb7rr > :first-child { margin-left: 0px; } .framer-iUJfz.framer-v-zaplr1 .framer-1ntb7rr > :last-child { margin-right: 0px; } }\",...sharedStyle.css,'.framer-iUJfz[data-border=\"true\"]::after, .framer-iUJfz [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LS9pdIxBf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEDyObvRJ1=withCSS(Component,css,\"framer-iUJfz\");export default FramerEDyObvRJ1;FramerEDyObvRJ1.displayName=\"SLIDESHOW - Projects v2\";FramerEDyObvRJ1.defaultProps={height:440,width:720};addPropertyControls(FramerEDyObvRJ1,{variant:{options:[\"pCfGu3HEX\",\"LS9pdIxBf\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEDyObvRJ1,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEDyObvRJ1\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LS9pdIxBf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"720\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"PJGt1bjCD\",\"PNHvg1bKf\"];const serializationHash=\"framer-Xnozy\";const variantClassNames={PJGt1bjCD:\"framer-v-1pdvvon\",PNHvg1bKf:\"framer-v-1l8emec\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={DESKTOP:\"PJGt1bjCD\",MOBILE:\"PNHvg1bKf\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"PJGt1bjCD\"};};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:\"PJGt1bjCD\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1pdvvon\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"PJGt1bjCD\",ref:refBinding,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({PNHvg1bKf:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10liua9\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"A5_m57h_8\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+80+0)+0+0)+0),pixelHeight:700,pixelWidth:1200,src:\"https://framerusercontent.com/images/5wwohV3B0WZDhHvaqlrthlgw7Ag.webp\"},className:\"framer-hw7lud\",\"data-framer-name\":\"Frame_1\",layoutDependency:layoutDependency,layoutId:\"ZJ6nIFuS9\",...addPropertyOverrides({PNHvg1bKf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:700,pixelWidth:1200,src:\"https://framerusercontent.com/images/5wwohV3B0WZDhHvaqlrthlgw7Ag.webp\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gcv5m3\",layoutDependency:layoutDependency,layoutId:\"Q8blRFKlj\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mwl7w7\",layoutDependency:layoutDependency,layoutId:\"osTwrAjyL\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"For our special series with London Design Biennale 2025, we asked creatives not to explain their work\u2014but to imagine its afterlife.\"})}),className:\"framer-16u36pk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eLHujxjGC\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({PNHvg1bKf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"For our special series with London Design Biennale 2025, we asked creatives not to explain their work\u2014but to imagine its afterlife.\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+80+0)+Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+0)+17,...addPropertyOverrides({PNHvg1bKf:{y:(componentViewport?.y||0)+0+170+16+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uwliqv-container\",layoutDependency:layoutDependency,layoutId:\"o0DLcpPHQ-container\",nodeId:\"o0DLcpPHQ\",rendersWithMotion:true,scopeId:\"IKmwBW2_x\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:true,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"o0DLcpPHQ\",layoutId:\"o0DLcpPHQ\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"See the full Interview\",yzRVKfC3H:\"https://www.instagram.com/p/DJiyagtMuZf/\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Xnozy.framer-1qy0iqc, .framer-Xnozy .framer-1qy0iqc { display: block; }\",\".framer-Xnozy.framer-1pdvvon { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Xnozy .framer-10liua9 { aspect-ratio: 2 / 1; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-Xnozy .framer-hw7lud { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 360px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-Xnozy .framer-1gcv5m3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Xnozy .framer-mwl7w7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-Xnozy .framer-16u36pk { flex: 1 0 0px; height: 100%; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Xnozy .framer-1uwliqv-container { flex: none; height: 46px; position: relative; width: auto; }\",\".framer-Xnozy.framer-v-1l8emec.framer-1pdvvon { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-Xnozy.framer-v-1l8emec .framer-10liua9 { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-Xnozy.framer-v-1l8emec .framer-hw7lud { height: var(--framer-aspect-ratio-supported, 170px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-Xnozy.framer-v-1l8emec .framer-1gcv5m3 { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-Xnozy.framer-v-1l8emec .framer-mwl7w7 { flex: none; height: min-content; padding: 0px; width: 100%; }\",\".framer-Xnozy.framer-v-1l8emec .framer-16u36pk { align-self: stretch; height: auto; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"PNHvg1bKf\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIKmwBW2_x=withCSS(Component,css,\"framer-Xnozy\");export default FramerIKmwBW2_x;FramerIKmwBW2_x.displayName=\"SLIDESHOW - FLEX\";FramerIKmwBW2_x.defaultProps={height:440,width:720};addPropertyControls(FramerIKmwBW2_x,{variant:{options:[\"PJGt1bjCD\",\"PNHvg1bKf\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIKmwBW2_x,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIKmwBW2_x\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"440\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"720\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PNHvg1bKf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IKmwBW2_x.map", "// Generated by Framer (7cbec57)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import News from\"https://framerusercontent.com/modules/i6NsR78tRhacnCDOoAlX/IUdb1Kf4m2rUWw3GFJwg/jkyBVd92T.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"KnKgDRAa2\",\"jX1iB3S0P\"];const serializationHash=\"framer-PKR8O\";const variantClassNames={jX1iB3S0P:\"framer-v-126nubp\",KnKgDRAa2:\"framer-v-55w02a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};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(React.Fragment);const humanReadableVariantMap={DESKTOP:\"KnKgDRAa2\",MOBILE:\"jX1iB3S0P\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KnKgDRAa2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,nikDhfeo_c3Vg7AuAf,t95wztpJ7c3Vg7AuAf,EuknzN5mfc3Vg7AuAf,idc3Vg7AuAf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KnKgDRAa2\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-55w02a\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"KnKgDRAa2\",ref:ref??ref1,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({jX1iB3S0P:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hjth2e\",layoutDependency:layoutDependency,layoutId:\"c3Vg7AuAf\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{name:\"nikDhfeo_\",type:\"Identifier\"},{name:\"t95wztpJ7\",type:\"Identifier\"},{name:\"EuknzN5mf\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{name:\"z1Zsu93P3\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({nikDhfeo_:nikDhfeo_c3Vg7AuAf,t95wztpJ7:t95wztpJ7c3Vg7AuAf,EuknzN5mf:EuknzN5mfc3Vg7AuAf,id:idc3Vg7AuAf},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`c3Vg7AuAf-${idc3Vg7AuAf}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EuknzN5mf:EuknzN5mfc3Vg7AuAf},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b7qdz0\",layoutDependency:layoutDependency,layoutId:\"xlBTwqJd7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1px\",...toResponsiveImage(nikDhfeo_c3Vg7AuAf)},className:\"framer-1wt6vhf\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"vaFaKAI8U\",...addPropertyOverrides({jX1iB3S0P:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(nikDhfeo_c3Vg7AuAf)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19itq89\",\"data-framer-name\":\"TEXT BAR\",layoutDependency:layoutDependency,layoutId:\"yJXgweTaI\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kqrtp5\",\"data-framer-name\":\"TEXT STACK\",layoutDependency:layoutDependency,layoutId:\"EI9GzuoKZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Try Affinity Designer, Photo and Publisher free for six months\"})}),className:\"framer-w3gyp2\",\"data-framer-name\":\"News Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aRisxS726\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:t95wztpJ7c3Vg7AuAf,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({jX1iB3S0P:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Try Affinity Designer, Photo and Publisher free for six months\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined},{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r150ik-container\",layoutDependency:layoutDependency,layoutId:\"TjOBMlU0x-container\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"TjOBMlU0x\",layoutId:\"TjOBMlU0x\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to Design News\",yzRVKfC3H:resolvedLinks[0],...addPropertyOverrides({jX1iB3S0P:{yzRVKfC3H:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})},idc3Vg7AuAf);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PKR8O.framer-6zt9tu, .framer-PKR8O .framer-6zt9tu { display: block; }\",\".framer-PKR8O.framer-55w02a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PKR8O .framer-1hjth2e { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-PKR8O .framer-b7qdz0 { align-content: center; align-items: center; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-PKR8O .framer-1wt6vhf { bottom: 80px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-PKR8O .framer-19itq89 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-PKR8O .framer-kqrtp5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-PKR8O .framer-w3gyp2 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-PKR8O .framer-1r150ik-container { flex: none; height: 46px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PKR8O.framer-55w02a, .framer-PKR8O .framer-1hjth2e, .framer-PKR8O .framer-b7qdz0, .framer-PKR8O .framer-kqrtp5 { gap: 0px; } .framer-PKR8O.framer-55w02a > *, .framer-PKR8O .framer-1hjth2e > *, .framer-PKR8O .framer-b7qdz0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PKR8O.framer-55w02a > :first-child, .framer-PKR8O .framer-1hjth2e > :first-child, .framer-PKR8O .framer-b7qdz0 > :first-child { margin-top: 0px; } .framer-PKR8O.framer-55w02a > :last-child, .framer-PKR8O .framer-1hjth2e > :last-child, .framer-PKR8O .framer-b7qdz0 > :last-child { margin-bottom: 0px; } .framer-PKR8O .framer-kqrtp5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PKR8O .framer-kqrtp5 > :first-child { margin-left: 0px; } .framer-PKR8O .framer-kqrtp5 > :last-child { margin-right: 0px; } }\",\".framer-PKR8O.framer-v-126nubp.framer-55w02a { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-PKR8O.framer-v-126nubp .framer-1hjth2e { aspect-ratio: unset; flex: none; height: min-content; width: 100%; }\",\".framer-PKR8O.framer-v-126nubp .framer-b7qdz0 { aspect-ratio: unset; flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-PKR8O.framer-v-126nubp .framer-1wt6vhf { aspect-ratio: 1.7777777777777777 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 192px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-PKR8O.framer-v-126nubp .framer-19itq89 { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-PKR8O.framer-v-126nubp .framer-kqrtp5 { flex: none; height: min-content; padding: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PKR8O.framer-v-126nubp .framer-19itq89 { gap: 0px; } .framer-PKR8O.framer-v-126nubp .framer-19itq89 > *, .framer-PKR8O.framer-v-126nubp .framer-19itq89 > :first-child, .framer-PKR8O.framer-v-126nubp .framer-19itq89 > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jX1iB3S0P\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerisc7OfMv_=withCSS(Component,css,\"framer-PKR8O\");export default Framerisc7OfMv_;Framerisc7OfMv_.displayName=\"SLIDESHOW - News 2\";Framerisc7OfMv_.defaultProps={height:440,width:720};addPropertyControls(Framerisc7OfMv_,{variant:{options:[\"KnKgDRAa2\",\"jX1iB3S0P\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerisc7OfMv_,[{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/5vvr9Vy74if2I6bQ bJvbw7SY1pQ.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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerisc7OfMv_\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jX1iB3S0P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"720\",\"framerIntrinsicHeight\":\"440\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"bFRlpKYWi\",\"J2g3yefP7\"];const serializationHash=\"framer-Q7nD8\";const variantClassNames={bFRlpKYWi:\"framer-v-1o0xssn\",J2g3yefP7:\"framer-v-1ojtuzd\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={DESKTOP:\"bFRlpKYWi\",MOBILE:\"J2g3yefP7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bFRlpKYWi\"};};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:\"bFRlpKYWi\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1o0xssn\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"bFRlpKYWi\",ref:refBinding,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({J2g3yefP7:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-199k1j3\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"SOdJHywlH\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+80+0)+0+0)+0),pixelHeight:700,pixelWidth:1200,src:\"https://framerusercontent.com/images/LrvVAUusaPNiJZrNuTJ2lPF8jh0.webp\"},className:\"framer-17qar39\",\"data-framer-name\":\"Frame_1\",layoutDependency:layoutDependency,layoutId:\"utaISRYo6\",...addPropertyOverrides({J2g3yefP7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:700,pixelWidth:1200,src:\"https://framerusercontent.com/images/LrvVAUusaPNiJZrNuTJ2lPF8jh0.webp\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jkx05i\",layoutDependency:layoutDependency,layoutId:\"t5SHFzpHy\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-29tduz\",layoutDependency:layoutDependency,layoutId:\"k5ADZaDhp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"DesignUplift has teamed up with LDB as a media partner to bring you key highlights from LDB 2025\"})}),className:\"framer-1aspit7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XoyBRAw16\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({J2g3yefP7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"DesignUplift has teamed up with LDB as a media partner to bring you key highlights from LDB 2025\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+80+0)+Math.max(0,((componentViewport?.height||440)-0-80)/1)*1+0)+17,...addPropertyOverrides({J2g3yefP7:{y:(componentViewport?.y||0)+0+360+16+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qgxhj1-container\",layoutDependency:layoutDependency,layoutId:\"ANkugJleF-container\",nodeId:\"ANkugJleF\",rendersWithMotion:true,scopeId:\"K1DyoYtXW\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:true,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"ANkugJleF\",layoutId:\"ANkugJleF\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Get Your Ticket\",yzRVKfC3H:\"https://londondesignbiennale.com/\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q7nD8.framer-1say8ax, .framer-Q7nD8 .framer-1say8ax { display: block; }\",\".framer-Q7nD8.framer-1o0xssn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q7nD8 .framer-199k1j3 { aspect-ratio: 2 / 1; flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-Q7nD8 .framer-17qar39 { aspect-ratio: 2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 360px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-Q7nD8 .framer-jkx05i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-Q7nD8 .framer-29tduz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 60px 0px 0px; position: relative; width: 1px; }\",\".framer-Q7nD8 .framer-1aspit7 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-Q7nD8 .framer-qgxhj1-container { flex: none; height: 46px; position: relative; width: auto; }\",\".framer-Q7nD8.framer-v-1ojtuzd.framer-1o0xssn { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-Q7nD8.framer-v-1ojtuzd .framer-199k1j3 { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; }\",\".framer-Q7nD8.framer-v-1ojtuzd .framer-17qar39 { height: var(--framer-aspect-ratio-supported, 170px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-Q7nD8.framer-v-1ojtuzd .framer-jkx05i { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-Q7nD8.framer-v-1ojtuzd .framer-29tduz { flex: none; height: min-content; padding: 0px; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"J2g3yefP7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerK1DyoYtXW=withCSS(Component,css,\"framer-Q7nD8\");export default FramerK1DyoYtXW;FramerK1DyoYtXW.displayName=\"SLIDESHOW - FLEX 2 (video)\";FramerK1DyoYtXW.defaultProps={height:440,width:720};addPropertyControls(FramerK1DyoYtXW,{variant:{options:[\"bFRlpKYWi\",\"J2g3yefP7\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerK1DyoYtXW,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerK1DyoYtXW\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"720\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J2g3yefP7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./K1DyoYtXW.map", "// Generated by Framer (3ae0a1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={ASg48YpEC:{hover:true},OWAH1gpjj:{hover:true}};const cycleOrder=[\"OWAH1gpjj\",\"ASg48YpEC\"];const serializationHash=\"framer-hq4bw\";const variantClassNames={ASg48YpEC:\"framer-v-1uqhw8v\",OWAH1gpjj:\"framer-v-iekh4y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={DESKTOP:\"OWAH1gpjj\",MOBILE:\"ASg48YpEC\"};const getProps=({height,id,link,name1,profilePicture,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,CXvmkQqoi:profilePicture!==null&&profilePicture!==void 0?profilePicture:props.CXvmkQqoi,dyHoPRdoe:(_ref=name1!==null&&name1!==void 0?name1:props.dyHoPRdoe)!==null&&_ref!==void 0?_ref:\"Name\",tBkUqM8U0:link!==null&&link!==void 0?link:props.tBkUqM8U0,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"OWAH1gpjj\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,CXvmkQqoi,dyHoPRdoe,tBkUqM8U0,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OWAH1gpjj\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"ASg48YpEC-hover\")return false;if(baseVariant===\"ASg48YpEC\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:tBkUqM8U0,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-iekh4y\",className,classNames)} framer-btqz5i`,\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"OWAH1gpjj\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"ASg48YpEC-hover\":{\"data-framer-name\":undefined},\"OWAH1gpjj-hover\":{\"data-framer-name\":undefined},ASg48YpEC:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"60px\",...toResponsiveImage(CXvmkQqoi)},className:\"framer-17x9u9e\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"lLDG4KzjR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(0, 0, 0, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999,opacity:1},variants:{\"OWAH1gpjj-hover\":{opacity:.5}},...addPropertyOverrides({ASg48YpEC:{background:{alt:\"\",fit:\"fill\",sizes:\"32px\",...toResponsiveImage(CXvmkQqoi)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u92ryy\",layoutDependency:layoutDependency,layoutId:\"YvYZQMT_b\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Name\"})}),className:\"framer-bywsun\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"dfqj6Gf_b\",style:{\"--extracted-1eung3n\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:dyHoPRdoe,variants:{\"OWAH1gpjj-hover\":{opacity:.5}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ASg48YpEC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1eung3n, rgb(255, 255, 255))\"},children:\"Name\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19xkhhs\",layoutDependency:layoutDependency,layoutId:\"i6trY5HMh\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5tol0j\",\"data-framer-name\":\"arrow_forward_FILL0_wght400_GRAD0_opsz24\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"m10ggWfyn\",opacity:0,style:{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:0},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 21\"><path d=\"M 15.98 11.812 L 0 11.812 L 0 9.187 L 15.98 9.187 L 8.63 1.837 L 10.5 0 L 21 10.5 L 10.5 21 L 8.63 19.162 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:1833595231,variants:{\"OWAH1gpjj-hover\":{opacity:.5}},withExternalLayout:true,...addPropertyOverrides({\"OWAH1gpjj-hover\":{opacity:.5,svgContentId:9144486636}},baseVariant,gestureVariant)})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hq4bw.framer-btqz5i, .framer-hq4bw .framer-btqz5i { display: block; }\",\".framer-hq4bw.framer-iekh4y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 12px 0px 12px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-hq4bw .framer-17x9u9e { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hq4bw .framer-1u92ryy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 4px 0px 12px; position: relative; width: min-content; }\",\".framer-hq4bw .framer-bywsun { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hq4bw .framer-19xkhhs { flex: none; height: 21px; overflow: visible; position: relative; width: 21px; }\",\".framer-hq4bw .framer-5tol0j { bottom: 0px; flex: none; height: 21px; left: -6px; position: absolute; width: 21px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hq4bw.framer-iekh4y, .framer-hq4bw .framer-1u92ryy { gap: 0px; } .framer-hq4bw.framer-iekh4y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hq4bw.framer-iekh4y > :first-child, .framer-hq4bw .framer-1u92ryy > :first-child { margin-left: 0px; } .framer-hq4bw.framer-iekh4y > :last-child, .framer-hq4bw .framer-1u92ryy > :last-child { margin-right: 0px; } .framer-hq4bw .framer-1u92ryy > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-hq4bw.framer-v-1uqhw8v .framer-17x9u9e { height: var(--framer-aspect-ratio-supported, 32px); width: 32px; }\",\".framer-hq4bw.framer-v-iekh4y.hover .framer-5tol0j { left: 0px; }\",'.framer-hq4bw[data-border=\"true\"]::after, .framer-hq4bw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 169\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ASg48YpEC\":{\"layout\":[\"auto\",\"auto\"]},\"FnbdR0t1b\":{\"layout\":[\"auto\",\"auto\"]},\"R4Z1heE66\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"CXvmkQqoi\":\"profilePicture\",\"dyHoPRdoe\":\"name1\",\"tBkUqM8U0\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerny10ibks3=withCSS(Component,css,\"framer-hq4bw\");export default Framerny10ibks3;Framerny10ibks3.displayName=\"DU Friends\";Framerny10ibks3.defaultProps={height:84,width:169};addPropertyControls(Framerny10ibks3,{variant:{options:[\"OWAH1gpjj\",\"ASg48YpEC\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum},CXvmkQqoi:{title:\"Profile Picture\",type:ControlType.ResponsiveImage},dyHoPRdoe:{defaultValue:\"Name\",displayTextArea:false,placeholder:\"Designer Name\",title:\"Name\",type:ControlType.String},tBkUqM8U0:{title:\"Link\",type:ControlType.Link}});addFonts(Framerny10ibks3,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerny10ibks3\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ASg48YpEC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"FnbdR0t1b\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"R4Z1heE66\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"CXvmkQqoi\\\":\\\"profilePicture\\\",\\\"dyHoPRdoe\\\":\\\"name1\\\",\\\"tBkUqM8U0\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"169\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"84\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ny10ibks3.map", "// Generated by Framer (d6b3045)\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,PathVariablesContext,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import DesignTV from\"https://framerusercontent.com/modules/t6ZRMK4ziCcjlQbrQPKo/DyTk37IrA0EyQ7vQin8H/lsl3HAWzJ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"KNYbmDkU8\",\"H1nGZLggy\"];const serializationHash=\"framer-BcET7\";const variantClassNames={H1nGZLggy:\"framer-v-9fdvj0\",KNYbmDkU8:\"framer-v-1ox1v9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"t5pTiT7a6\",data:DesignTV,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"t5pTiT7a6\",name:\"ZFmCrk_El\",type:\"Identifier\"},{collection:\"t5pTiT7a6\",name:\"I6VviQuE_\",type:\"Identifier\"},{collection:\"t5pTiT7a6\",name:\"cFGzv_mX9\",type:\"Identifier\"},{collection:\"t5pTiT7a6\",name:\"id\",type:\"Identifier\"}],where:{collection:\"t5pTiT7a6\",name:\"WIuT370UY\",type:\"Identifier\"}});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};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={DESKTOP:\"KNYbmDkU8\",MOBILE:\"H1nGZLggy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KNYbmDkU8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,ZFmCrk_Elt5pTiT7a6,I6VviQuE_t5pTiT7a6,cFGzv_mX9t5pTiT7a6,idt5pTiT7a6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KNYbmDkU8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ox1v9\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"KNYbmDkU8\",ref:ref??ref1,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({H1nGZLggy:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-605syd\",layoutDependency:layoutDependency,layoutId:\"t5pTiT7a6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"t5pTiT7a6\",data:DesignTV,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"t5pTiT7a6\",name:\"ZFmCrk_El\",type:\"Identifier\"},{collection:\"t5pTiT7a6\",name:\"I6VviQuE_\",type:\"Identifier\"},{collection:\"t5pTiT7a6\",name:\"cFGzv_mX9\",type:\"Identifier\"},{collection:\"t5pTiT7a6\",name:\"id\",type:\"Identifier\"}],where:{collection:\"t5pTiT7a6\",name:\"WIuT370UY\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"ZFmCrk_El\":ZFmCrk_Elt5pTiT7a6,\"I6VviQuE_\":I6VviQuE_t5pTiT7a6,\"cFGzv_mX9\":cFGzv_mX9t5pTiT7a6,\"id\":idt5pTiT7a6},i)=>{I6VviQuE_t5pTiT7a6??=\"\";cFGzv_mX9t5pTiT7a6??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`t5pTiT7a6-${idt5pTiT7a6}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cFGzv_mX9:cFGzv_mX9t5pTiT7a6},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e345s8\",layoutDependency:layoutDependency,layoutId:\"cvbViPoy2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1+0)+0+0)+0+(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1)+0)+0),sizes:\"1px\",...toResponsiveImage(ZFmCrk_Elt5pTiT7a6),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1qt223f\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"PDtXri4EQ\",...addPropertyOverrides({H1nGZLggy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+46960+0+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ZFmCrk_Elt5pTiT7a6),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-190njv\",\"data-framer-name\":\"TEXT BAR\",layoutDependency:layoutDependency,layoutId:\"ZyJjpxmas\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vorug0\",\"data-framer-name\":\"TEXT STACK\",layoutDependency:layoutDependency,layoutId:\"OJYNQ_WNF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Introducing CMF Phone 1 - Wonderful by design\"})}),className:\"framer-1ltu11x\",\"data-framer-name\":\"News Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nG1nxIkIp\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:I6VviQuE_t5pTiT7a6,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({H1nGZLggy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Introducing CMF Phone 1 - Wonderful by design\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined},{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+((componentViewport?.height||440)-0-(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1+0)+0+0)+0+(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+0)+(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1+Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1)+0)+0+(Math.max(0,(Math.max(0,((componentViewport?.height||440)-0-0)/1)*1-0-0)/129)*1-0-80+0+0)+17,...addPropertyOverrides({H1nGZLggy:{y:(componentViewport?.y||0)+0+0+0+46960+0+196.875+16+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yubvnd-container\",layoutDependency:layoutDependency,layoutId:\"kpq9uKYeb-container\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"kpq9uKYeb\",layoutId:\"kpq9uKYeb\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to DesignTV\",yzRVKfC3H:resolvedLinks[0],...addPropertyOverrides({H1nGZLggy:{yzRVKfC3H:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})},idt5pTiT7a6);})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BcET7.framer-wgkre6, .framer-BcET7 .framer-wgkre6 { display: block; }\",\".framer-BcET7.framer-1ox1v9 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BcET7 .framer-605syd { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-BcET7 .framer-e345s8 { align-content: center; align-items: center; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-BcET7 .framer-1qt223f { bottom: 80px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-BcET7 .framer-190njv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-BcET7 .framer-vorug0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 80px 0px 0px; position: relative; width: 1px; }\",\".framer-BcET7 .framer-1ltu11x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-BcET7 .framer-yubvnd-container { flex: none; height: 46px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BcET7.framer-1ox1v9, .framer-BcET7 .framer-605syd, .framer-BcET7 .framer-e345s8, .framer-BcET7 .framer-vorug0 { gap: 0px; } .framer-BcET7.framer-1ox1v9 > *, .framer-BcET7 .framer-605syd > *, .framer-BcET7 .framer-e345s8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BcET7.framer-1ox1v9 > :first-child, .framer-BcET7 .framer-605syd > :first-child, .framer-BcET7 .framer-e345s8 > :first-child { margin-top: 0px; } .framer-BcET7.framer-1ox1v9 > :last-child, .framer-BcET7 .framer-605syd > :last-child, .framer-BcET7 .framer-e345s8 > :last-child { margin-bottom: 0px; } .framer-BcET7 .framer-vorug0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BcET7 .framer-vorug0 > :first-child { margin-left: 0px; } .framer-BcET7 .framer-vorug0 > :last-child { margin-right: 0px; } }\",\".framer-BcET7.framer-v-9fdvj0.framer-1ox1v9 { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-BcET7.framer-v-9fdvj0 .framer-605syd { aspect-ratio: unset; flex: none; height: min-content; width: 100%; }\",\".framer-BcET7.framer-v-9fdvj0 .framer-e345s8 { aspect-ratio: unset; flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-BcET7.framer-v-9fdvj0 .framer-1qt223f { aspect-ratio: 1.7777777777777777 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 191px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-BcET7.framer-v-9fdvj0 .framer-190njv { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-BcET7.framer-v-9fdvj0 .framer-vorug0 { flex: none; height: min-content; padding: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BcET7.framer-v-9fdvj0 .framer-190njv { gap: 0px; } .framer-BcET7.framer-v-9fdvj0 .framer-190njv > *, .framer-BcET7.framer-v-9fdvj0 .framer-190njv > :first-child, .framer-BcET7.framer-v-9fdvj0 .framer-190njv > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"H1nGZLggy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVozXPD5Y3=withCSS(Component,css,\"framer-BcET7\");export default FramerVozXPD5Y3;FramerVozXPD5Y3.displayName=\"SLIDESHOW - DesignTV\";FramerVozXPD5Y3.defaultProps={height:440,width:720};addPropertyControls(FramerVozXPD5Y3,{variant:{options:[\"KNYbmDkU8\",\"H1nGZLggy\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVozXPD5Y3,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVozXPD5Y3\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"H1nGZLggy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"720\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (abcfa95)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import News from\"https://framerusercontent.com/modules/i6NsR78tRhacnCDOoAlX/IUdb1Kf4m2rUWw3GFJwg/jkyBVd92T.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"Klpt6k6qk\",\"HvZKbf6PQ\"];const serializationHash=\"framer-R9lAV\";const variantClassNames={HvZKbf6PQ:\"framer-v-1rwakhj\",Klpt6k6qk:\"framer-v-1jsya04\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query=prequery=>prequery({from:{alias:\"default\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"nikDhfeo_\",type:\"Identifier\"},{collection:\"default\",name:\"t95wztpJ7\",type:\"Identifier\"},{collection:\"default\",name:\"EuknzN5mf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{collection:\"default\",name:\"z1Zsu93P3\",type:\"Identifier\"}});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(React.Fragment);const humanReadableVariantMap={DESKTOP:\"Klpt6k6qk\",MOBILE:\"HvZKbf6PQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Klpt6k6qk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,nikDhfeo_kkBvVx2FP,t95wztpJ7kkBvVx2FP,EuknzN5mfkkBvVx2FP,idkkBvVx2FP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Klpt6k6qk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jsya04\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"Klpt6k6qk\",ref:ref??ref1,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({HvZKbf6PQ:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4qngxz\",layoutDependency:layoutDependency,layoutId:\"kkBvVx2FP\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"default\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"default\",name:\"nikDhfeo_\",type:\"Identifier\"},{collection:\"default\",name:\"t95wztpJ7\",type:\"Identifier\"},{collection:\"default\",name:\"EuknzN5mf\",type:\"Identifier\"},{collection:\"default\",name:\"id\",type:\"Identifier\"}],where:{collection:\"default\",name:\"z1Zsu93P3\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({\"nikDhfeo_\":nikDhfeo_kkBvVx2FP,\"t95wztpJ7\":t95wztpJ7kkBvVx2FP,\"EuknzN5mf\":EuknzN5mfkkBvVx2FP,\"id\":idkkBvVx2FP},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`kkBvVx2FP-${idkkBvVx2FP}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EuknzN5mf:EuknzN5mfkkBvVx2FP},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19udd7o\",layoutDependency:layoutDependency,layoutId:\"N38idlESf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1px\",...toResponsiveImage(nikDhfeo_kkBvVx2FP)},className:\"framer-pfaui3\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"gxtCXb_7W\",...addPropertyOverrides({HvZKbf6PQ:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(nikDhfeo_kkBvVx2FP)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n0c24o\",\"data-framer-name\":\"TEXT BAR\",layoutDependency:layoutDependency,layoutId:\"dzdieRldb\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1j9y6b1\",\"data-framer-name\":\"TEXT STACK\",layoutDependency:layoutDependency,layoutId:\"SjGUYQI8T\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Try Affinity Designer, Photo and Publisher free for six months\"})}),className:\"framer-1bilpo6\",\"data-framer-name\":\"News Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ClPcuEIkI\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:t95wztpJ7kkBvVx2FP,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HvZKbf6PQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"Try Affinity Designer, Photo and Publisher free for six months\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined},{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3rj7p-container\",layoutDependency:layoutDependency,layoutId:\"JrOiY0dn1-container\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"JrOiY0dn1\",layoutId:\"JrOiY0dn1\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to Design News\",yzRVKfC3H:resolvedLinks[0],...addPropertyOverrides({HvZKbf6PQ:{yzRVKfC3H:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})},idkkBvVx2FP);})})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-R9lAV.framer-cyt0rg, .framer-R9lAV .framer-cyt0rg { display: block; }\",\".framer-R9lAV.framer-1jsya04 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-R9lAV .framer-4qngxz { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-R9lAV .framer-19udd7o { align-content: center; align-items: center; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-R9lAV .framer-pfaui3 { bottom: 80px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-R9lAV .framer-n0c24o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-R9lAV .framer-1j9y6b1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 20px 0px 0px; position: relative; width: 1px; }\",\".framer-R9lAV .framer-1bilpo6 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-R9lAV .framer-q3rj7p-container { flex: none; height: 46px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R9lAV.framer-1jsya04, .framer-R9lAV .framer-4qngxz, .framer-R9lAV .framer-19udd7o, .framer-R9lAV .framer-1j9y6b1 { gap: 0px; } .framer-R9lAV.framer-1jsya04 > *, .framer-R9lAV .framer-4qngxz > *, .framer-R9lAV .framer-19udd7o > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-R9lAV.framer-1jsya04 > :first-child, .framer-R9lAV .framer-4qngxz > :first-child, .framer-R9lAV .framer-19udd7o > :first-child { margin-top: 0px; } .framer-R9lAV.framer-1jsya04 > :last-child, .framer-R9lAV .framer-4qngxz > :last-child, .framer-R9lAV .framer-19udd7o > :last-child { margin-bottom: 0px; } .framer-R9lAV .framer-1j9y6b1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-R9lAV .framer-1j9y6b1 > :first-child { margin-left: 0px; } .framer-R9lAV .framer-1j9y6b1 > :last-child { margin-right: 0px; } }\",\".framer-R9lAV.framer-v-1rwakhj.framer-1jsya04 { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-R9lAV.framer-v-1rwakhj .framer-4qngxz { aspect-ratio: unset; flex: none; height: min-content; width: 100%; }\",\".framer-R9lAV.framer-v-1rwakhj .framer-19udd7o { aspect-ratio: unset; flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-R9lAV.framer-v-1rwakhj .framer-pfaui3 { aspect-ratio: 1.7777777777777777 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 192px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-R9lAV.framer-v-1rwakhj .framer-n0c24o { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-R9lAV.framer-v-1rwakhj .framer-1j9y6b1 { flex: none; height: min-content; padding: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-R9lAV.framer-v-1rwakhj .framer-n0c24o { gap: 0px; } .framer-R9lAV.framer-v-1rwakhj .framer-n0c24o > *, .framer-R9lAV.framer-v-1rwakhj .framer-n0c24o > :first-child, .framer-R9lAV.framer-v-1rwakhj .framer-n0c24o > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"HvZKbf6PQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerw_xokDaHo=withCSS(Component,css,\"framer-R9lAV\");export default Framerw_xokDaHo;Framerw_xokDaHo.displayName=\"SLIDESHOW - News\";Framerw_xokDaHo.defaultProps={height:440,width:720};addPropertyControls(Framerw_xokDaHo,{variant:{options:[\"Klpt6k6qk\",\"HvZKbf6PQ\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerw_xokDaHo,[{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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw_xokDaHo\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"720\",\"framerIntrinsicHeight\":\"440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"HvZKbf6PQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6b748fa)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Button from\"https://framerusercontent.com/modules/zxRc9SPnxLETExdNL4NL/lnqvjGXx9bKdGeLp9ZbZ/UbNEed3Bl.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"ctZyh1egl\",\"rMSTCbOpd\",\"PLkiWrpz8\"];const serializationHash=\"framer-0FLaJ\";const variantClassNames={ctZyh1egl:\"framer-v-1np4xkm\",PLkiWrpz8:\"framer-v-1vssup3\",rMSTCbOpd:\"framer-v-13px44y\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Success - Thank You\":\"PLkiWrpz8\",Desktop:\"ctZyh1egl\",Loading:\"rMSTCbOpd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ctZyh1egl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ctZyh1egl\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSuccess1o769tw=activeVariantCallback(async(...args)=>{setVariant(\"PLkiWrpz8\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"PLkiWrpz8\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"PLkiWrpz8\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(FormContainer,{...restProps,...gestureHandlers,action:\"https://api.framer.com/forms/v1/forms/52a30ece-5c9a-4d45-a004-571002ec31fc/submit\",className:cx(serializationHash,...sharedStyleClassNames,\"framer-1np4xkm\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ctZyh1egl\",onSuccess:onSuccess1o769tw,ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(59deg, var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35)) 0%, var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35)) 100%)\",backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{PLkiWrpz8:{background:\"linear-gradient(59deg, rgb(204, 246, 255) 0%, rgb(155, 148, 255) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({PLkiWrpz8:{\"data-framer-name\":\"Success - Thank You\"},rMSTCbOpd:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"Thank you so much\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\"},children:\"for your feedback. \uD83C\uDF89\"})]}),className:\"framer-49nrmc\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"WpWlsDRgD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.label,{className:\"framer-1cjilzj\",layoutDependency:layoutDependency,layoutId:\"MDnweKCwd\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-15sxozk\",inputName:\"Feedback\",layoutDependency:layoutDependency,layoutId:\"nLsb8JpAw\",placeholder:\"What did you like or dislike? What would you like to see on this platform?\",required:true,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(255, 255, 255, 0.4)\"},type:\"textarea\"})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.label,{className:\"framer-7nnrrm\",layoutDependency:layoutDependency,layoutId:\"TtP97eUua\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.8))\"},children:\"Email (optional)\"})}),className:\"framer-1g00gez\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"rittVqzkn\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-hx48u\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"rxYACRp1t\",placeholder:\"name@mail.com\",required:false,style:{\"--framer-input-background\":\"rgba(187, 187, 187, 0.15)\",\"--framer-input-border-radius-bottom-left\":\"10px\",\"--framer-input-border-radius-bottom-right\":\"10px\",\"--framer-input-border-radius-top-left\":\"10px\",\"--framer-input-border-radius-top-right\":\"10px\",\"--framer-input-font-color\":\"rgb(255, 255, 255)\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgba(255, 255, 255, 0.4)\"},type:\"email\"})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px)`,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qrijja-container\",layoutDependency:layoutDependency,layoutId:\"iVGGqbwfY-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"iVGGqbwfY\",layoutId:\"iVGGqbwfY\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"xOx1sSAkj\",success:\"mN2lf9Nt3\"},\"zjLrqyuBW\"),width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0FLaJ.framer-15zk17f, .framer-0FLaJ .framer-15zk17f { display: block; }\",\".framer-0FLaJ.framer-1np4xkm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 337px; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 500px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0FLaJ .framer-49nrmc, .framer-0FLaJ .framer-1g00gez { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0FLaJ .framer-1cjilzj, .framer-0FLaJ .framer-7nnrrm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-0FLaJ .framer-15sxozk { --framer-input-focused-border-color: rgba(255, 255, 255, 0.5); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400px; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }','.framer-0FLaJ .framer-hx48u { --framer-input-focused-border-color: rgba(255, 255, 255, 0.5); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 400px; --framer-input-padding: 12px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-0FLaJ .framer-qrijja-container { flex: none; height: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0FLaJ.framer-1np4xkm, .framer-0FLaJ .framer-1cjilzj, .framer-0FLaJ .framer-7nnrrm { gap: 0px; } .framer-0FLaJ.framer-1np4xkm > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-0FLaJ.framer-1np4xkm > :first-child, .framer-0FLaJ .framer-1cjilzj > :first-child, .framer-0FLaJ .framer-7nnrrm > :first-child { margin-top: 0px; } .framer-0FLaJ.framer-1np4xkm > :last-child, .framer-0FLaJ .framer-1cjilzj > :last-child, .framer-0FLaJ .framer-7nnrrm > :last-child { margin-bottom: 0px; } .framer-0FLaJ .framer-1cjilzj > *, .framer-0FLaJ .framer-7nnrrm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 337\n * @framerIntrinsicWidth 500\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rMSTCbOpd\":{\"layout\":[\"fixed\",\"fixed\"]},\"PLkiWrpz8\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerx_FYmvj_B=withCSS(Component,css,\"framer-0FLaJ\");export default Framerx_FYmvj_B;Framerx_FYmvj_B.displayName=\"FORM - FEEDBACK\";Framerx_FYmvj_B.defaultProps={height:337,width:500};addPropertyControls(Framerx_FYmvj_B,{variant:{options:[\"ctZyh1egl\",\"rMSTCbOpd\",\"PLkiWrpz8\"],optionTitles:[\"Desktop\",\"Loading\",\"Success - Thank You\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerx_FYmvj_B,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx_FYmvj_B\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"500\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"337\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rMSTCbOpd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PLkiWrpz8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (8d84d1c)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,PathVariablesContext,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Toolbox from\"https://framerusercontent.com/modules/oJj6reFVlWIUrRRm0bj0/B63hUgb5Hy7xaXAaA4fS/IfuVSXbML.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/gx5R3VlzLQSfmTvfGBvb/cug5sORiDSOCjltKhZto/wJRWJDIhg.js\";import BUTTONPILLSHAPE from\"https://framerusercontent.com/modules/rzibeeKGViPXxZx52ej8/rbUohz98EacFBrt7rR8T/Iyyz1tCfN.js\";const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const cycleOrder=[\"Cnv6QHIE4\",\"qzk4X0EP0\"];const serializationHash=\"framer-heJ9P\";const variantClassNames={Cnv6QHIE4:\"framer-v-4yxpcn\",qzk4X0EP0:\"framer-v-1a0o2j1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};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(React.Fragment);const humanReadableVariantMap={DESKTOP:\"Cnv6QHIE4\",MOBILE:\"qzk4X0EP0\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Cnv6QHIE4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LVRhACTcKimrdqbr54,dU6SW_DF0imrdqbr54,wbo9zYCMvimrdqbr54,idimrdqbr54,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Cnv6QHIE4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-4yxpcn\",className,classNames),\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"Cnv6QHIE4\",ref:ref??ref1,style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({qzk4X0EP0:{\"data-framer-name\":\"MOBILE\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nl5xbb\",layoutDependency:layoutDependency,layoutId:\"imrdqbr54\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Toolbox,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{name:\"LVRhACTcK\",type:\"Identifier\"},{name:\"dU6SW_DF0\",type:\"Identifier\"},{name:\"wbo9zYCMv\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{left:{name:\"UjPEp6mjG\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:true},type:\"BinaryOperation\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({LVRhACTcK:LVRhACTcKimrdqbr54,dU6SW_DF0:dU6SW_DF0imrdqbr54,wbo9zYCMv:wbo9zYCMvimrdqbr54,id:idimrdqbr54},i)=>{const textContent=prefix(dU6SW_DF0imrdqbr54,\"New on Toolbox: \");return /*#__PURE__*/_jsx(LayoutGroup,{id:`imrdqbr54-${idimrdqbr54}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wbo9zYCMv:wbo9zYCMvimrdqbr54},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10xtmmg\",layoutDependency:layoutDependency,layoutId:\"isBXqAZ9K\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1px\",...toResponsiveImage(LVRhACTcKimrdqbr54)},className:\"framer-1vxegg2\",\"data-framer-name\":\"COVER\",layoutDependency:layoutDependency,layoutId:\"uOlw8aH9e\",...addPropertyOverrides({qzk4X0EP0:{background:{alt:\"\",fit:\"fill\",sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(LVRhACTcKimrdqbr54)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wpwi2b\",\"data-framer-name\":\"TEXT BAR\",layoutDependency:layoutDependency,layoutId:\"u7lBtCSOc\",style:{backgroundColor:\"var(--token-902bcfe4-85a6-4745-9f95-9e258fc5118b, rgb(31, 33, 35))\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8s3z\",\"data-framer-name\":\"TEXT STACK\",layoutDependency:layoutDependency,layoutId:\"zHWlMUVNy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1pesk95\",\"data-styles-preset\":\"wJRWJDIhg\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"New on Toolbox: Figma Slides\"})}),className:\"framer-xo7py1\",\"data-framer-name\":\"News Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S8iPDJm5y\",style:{\"--extracted-1w1cjl5\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({qzk4X0EP0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.1px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, rgb(255, 255, 255))\"},children:\"New on Toolbox: Figma Slides\"})}),fonts:[\"FS;Satoshi-bold\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pfT9YSKyi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfT9YSKyi\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-93opea-container\",layoutDependency:layoutDependency,layoutId:\"xt99u6ffC-container\",children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"xt99u6ffC\",layoutId:\"xt99u6ffC\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to Toolbox\",yzRVKfC3H:resolvedLinks[0],...addPropertyOverrides({qzk4X0EP0:{yzRVKfC3H:resolvedLinks[1]}},baseVariant,gestureVariant)})})})})]})]})})},idimrdqbr54);})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-heJ9P.framer-121hdc0, .framer-heJ9P .framer-121hdc0 { display: block; }\",\".framer-heJ9P.framer-4yxpcn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 440px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 720px; will-change: var(--framer-will-change-override, transform); }\",\".framer-heJ9P .framer-nl5xbb { align-content: flex-start; align-items: flex-start; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-heJ9P .framer-10xtmmg { align-content: center; align-items: center; aspect-ratio: 1.6363636363636365 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: flex-end; padding: 0px; position: relative; width: var(--framer-aspect-ratio-supported, 720px); }\",\".framer-heJ9P .framer-1vxegg2 { bottom: 80px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-heJ9P .framer-1wpwi2b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-heJ9P .framer-n8s3z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; overflow: hidden; padding: 0px 80px 0px 0px; position: relative; width: 1px; }\",\".framer-heJ9P .framer-xo7py1 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-heJ9P .framer-93opea-container { flex: none; height: 46px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-heJ9P.framer-4yxpcn, .framer-heJ9P .framer-nl5xbb, .framer-heJ9P .framer-10xtmmg, .framer-heJ9P .framer-n8s3z { gap: 0px; } .framer-heJ9P.framer-4yxpcn > *, .framer-heJ9P .framer-nl5xbb > *, .framer-heJ9P .framer-10xtmmg > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-heJ9P.framer-4yxpcn > :first-child, .framer-heJ9P .framer-nl5xbb > :first-child, .framer-heJ9P .framer-10xtmmg > :first-child { margin-top: 0px; } .framer-heJ9P.framer-4yxpcn > :last-child, .framer-heJ9P .framer-nl5xbb > :last-child, .framer-heJ9P .framer-10xtmmg > :last-child { margin-bottom: 0px; } .framer-heJ9P .framer-n8s3z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-heJ9P .framer-n8s3z > :first-child { margin-left: 0px; } .framer-heJ9P .framer-n8s3z > :last-child { margin-right: 0px; } }\",\".framer-heJ9P.framer-v-1a0o2j1.framer-4yxpcn { height: min-content; justify-content: flex-start; width: 340px; }\",\".framer-heJ9P.framer-v-1a0o2j1 .framer-nl5xbb { aspect-ratio: unset; flex: none; height: min-content; width: 100%; }\",\".framer-heJ9P.framer-v-1a0o2j1 .framer-10xtmmg { aspect-ratio: unset; flex: none; height: min-content; order: 0; width: 100%; }\",\".framer-heJ9P.framer-v-1a0o2j1 .framer-1vxegg2 { aspect-ratio: 1.7777777777777777 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 192px); left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-heJ9P.framer-v-1a0o2j1 .framer-1wpwi2b { align-content: flex-start; align-items: flex-start; flex-direction: column; height: 170px; padding: 16px 20px 20px 20px; }\",\".framer-heJ9P.framer-v-1a0o2j1 .framer-n8s3z { flex: none; height: min-content; padding: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-heJ9P.framer-v-1a0o2j1 .framer-1wpwi2b { gap: 0px; } .framer-heJ9P.framer-v-1a0o2j1 .framer-1wpwi2b > *, .framer-heJ9P.framer-v-1a0o2j1 .framer-1wpwi2b > :first-child, .framer-heJ9P.framer-v-1a0o2j1 .framer-1wpwi2b > :last-child { margin: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 440\n * @framerIntrinsicWidth 720\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qzk4X0EP0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryQr1dbEq5=withCSS(Component,css,\"framer-heJ9P\");export default FrameryQr1dbEq5;FrameryQr1dbEq5.displayName=\"SLIDESHOW - Toolbox\";FrameryQr1dbEq5.defaultProps={height:440,width:720};addPropertyControls(FrameryQr1dbEq5,{variant:{options:[\"Cnv6QHIE4\",\"qzk4X0EP0\"],optionTitles:[\"DESKTOP\",\"MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryQr1dbEq5,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...BUTTONPILLSHAPEFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryQr1dbEq5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"720\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"440\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qzk4X0EP0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/3r1MOrsbGq47TYKOPcQV/SlideShow.js\";import CARDFEATUREDPROJECTS from\"#framer/local/canvasComponent/AttijZ_mZ/AttijZ_mZ.js\";import CARDDESIGNTV from\"#framer/local/canvasComponent/chYjrF8yh/chYjrF8yh.js\";import SLIDESHOWDesignTV2 from\"#framer/local/canvasComponent/DFQQNLKex/DFQQNLKex.js\";import SLIDESHOWProjectsV2 from\"#framer/local/canvasComponent/EDyObvRJ1/EDyObvRJ1.js\";import NAVBAR from\"#framer/local/canvasComponent/G2GFIpBAb/G2GFIpBAb.js\";import CARDDIRECTORY from\"#framer/local/canvasComponent/gmuPgdYfe/gmuPgdYfe.js\";import SUBMITPROJECT from\"#framer/local/canvasComponent/i0I_3flEf/i0I_3flEf.js\";import SLIDESHOWFLEX from\"#framer/local/canvasComponent/IKmwBW2_x/IKmwBW2_x.js\";import SLIDESHOWNews2 from\"#framer/local/canvasComponent/isc7OfMv_/isc7OfMv_.js\";import BUTTONPILLSHAPE from\"#framer/local/canvasComponent/Iyyz1tCfN/Iyyz1tCfN.js\";import SLIDESHOWFLEX2Video from\"#framer/local/canvasComponent/K1DyoYtXW/K1DyoYtXW.js\";import CARDNEWS from\"#framer/local/canvasComponent/MUsc2Salq/MUsc2Salq.js\";import DUFriends from\"#framer/local/canvasComponent/ny10ibks3/ny10ibks3.js\";import Button2 from\"#framer/local/canvasComponent/p1DhgLJdt/p1DhgLJdt.js\";import FOOTERV2 from\"#framer/local/canvasComponent/rGWmbjGM7/rGWmbjGM7.js\";import SLIDESHOWDesignTV from\"#framer/local/canvasComponent/VozXPD5Y3/VozXPD5Y3.js\";import SLIDESHOWNews from\"#framer/local/canvasComponent/w_xokDaHo/w_xokDaHo.js\";import FORMFEEDBACK from\"#framer/local/canvasComponent/x_FYmvj_B/x_FYmvj_B.js\";import SLIDESHOWToolbox from\"#framer/local/canvasComponent/yQr1dbEq5/yQr1dbEq5.js\";import CARDTOOLBOXV2 from\"#framer/local/canvasComponent/yuTsAgR1b/yuTsAgR1b.js\";import SENDLINK from\"#framer/local/canvasComponent/YYA9LDnBH/YYA9LDnBH.js\";import Toolbox,{enumToDisplayNameFunctions}from\"#framer/local/collection/IfuVSXbML/IfuVSXbML.js\";import News from\"#framer/local/collection/jkyBVd92T/jkyBVd92T.js\";import DesignTV from\"#framer/local/collection/lsl3HAWzJ/lsl3HAWzJ.js\";import FeaturedProjects from\"#framer/local/collection/OrRW57wq3/OrRW57wq3.js\";import*as sharedStyle from\"#framer/local/css/AJ0xh6Vqz/AJ0xh6Vqz.js\";import metadataProvider from\"#framer/local/webPageMetadata/Pe8pSGB2V/Pe8pSGB2V.js\";const NAVBARFonts=getFonts(NAVBAR);const NAVBARWithVariantAppearEffect=withVariantAppearEffect(NAVBAR);const ContainerWithFX=withFX(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const Button2Fonts=getFonts(Button2);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SLIDESHOWFLEX2VideoFonts=getFonts(SLIDESHOWFLEX2Video);const SLIDESHOWNewsFonts=getFonts(SLIDESHOWNews);const SLIDESHOWDesignTVFonts=getFonts(SLIDESHOWDesignTV);const SLIDESHOWProjectsV2Fonts=getFonts(SLIDESHOWProjectsV2);const SLIDESHOWDesignTV2Fonts=getFonts(SLIDESHOWDesignTV2);const SLIDESHOWNews2Fonts=getFonts(SLIDESHOWNews2);const SLIDESHOWToolboxFonts=getFonts(SLIDESHOWToolbox);const SLIDESHOWFLEXFonts=getFonts(SLIDESHOWFLEX);const SlideshowFonts=getFonts(Slideshow);const CARDFEATUREDPROJECTSFonts=getFonts(CARDFEATUREDPROJECTS);const MotionDivWithFX=withFX(motion.div);const BUTTONPILLSHAPEFonts=getFonts(BUTTONPILLSHAPE);const SUBMITPROJECTFonts=getFonts(SUBMITPROJECT);const CARDDESIGNTVFonts=getFonts(CARDDESIGNTV);const CARDNEWSFonts=getFonts(CARDNEWS);const CARDDIRECTORYFonts=getFonts(CARDDIRECTORY);const TickerFonts=getFonts(Ticker);const CARDTOOLBOXV2Fonts=getFonts(CARDTOOLBOXV2);const SENDLINKFonts=getFonts(SENDLINK);const DUFriendsFonts=getFonts(DUFriends);const FORMFEEDBACKFonts=getFonts(FORMFEEDBACK);const FOOTERV2Fonts=getFonts(FOOTERV2);const breakpoints={KriPO4gSS:\"(min-width: 1200px)\",M3O4iu7ea:\"(min-width: 810px) and (max-width: 1199px)\",NKaPhW_FP:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-qAyCr\";const variantClassNames={KriPO4gSS:\"framer-v-1t3qd6a\",M3O4iu7ea:\"framer-v-virfvo\",NKaPhW_FP:\"framer-v-15p9j5h\"};const transition1={delay:0,duration:.7,ease:[.11,.62,.39,.96],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-72};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition2={damping:79,delay:.3,mass:.1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={damping:79,delay:1.2,mass:.1,stiffness:400,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={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={delay:.02,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const textEffect={effect:animation4,startDelay:1,tokenization:\"character\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const transition5={delay:2,duration:.6,ease:[0,0,1,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition6={delay:0,duration:.5,ease:[0,.8,.4,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:150};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:44,delay:0,mass:1,stiffness:443,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition8};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const convertFromEnum=(value,activeLocale)=>{switch(value){case\"B3EAjradN\":return\"High Quality\";default:return\"Medium Quality\";}};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:100};const transition9={damping:40,delay:0,mass:1,stiffness:440,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.02,skewX:0,skewY:0,transition:transition9};const transition10={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation15={opacity:.5,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition10};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"KriPO4gSS\",Phone:\"NKaPhW_FP\",Tablet:\"M3O4iu7ea\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KriPO4gSS\"};};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,AYS4_sRzUCZhZ20X73,xKC0TznbrCZhZ20X73,WSV1gUwIuCZhZ20X73,OLgFBWfQCCZhZ20X73,k2NufVIK7CZhZ20X73,cHiqEqLYQCZhZ20X73,SGD5XLjbvCZhZ20X73,idCZhZ20X73,L2g6ClzhcRdQZoISxS,I6VviQuE_RdQZoISxS,Ppkex77mkRdQZoISxS,fmnqEYVkgRdQZoISxS,s8ENooHSARdQZoISxS,tOck9xuYKRdQZoISxS,sdUf9uPRlRdQZoISxS,j8nLSNXRORdQZoISxS,cFGzv_mX9RdQZoISxS,vPeE5Ed1hRdQZoISxS,idRdQZoISxS,GCXrOa05YJ6hHp7GV0,K_UVVzlZVJ6hHp7GV0,EuknzN5mfJ6hHp7GV0,nikDhfeo_J6hHp7GV0,t95wztpJ7J6hHp7GV0,OLAgUYmV7J6hHp7GV0,JFbSteNURJ6hHp7GV0,WIYmADrH3J6hHp7GV0,idJ6hHp7GV0,SbpKEghqGmunbNUeef,j70g86dKbmunbNUeef,LVRhACTcKmunbNUeef,dU6SW_DF0munbNUeef,Y0y6XbeLkmunbNUeef,mjPRNcqBomunbNUeef,betWjP4K9munbNUeef,KZS0MV6tcmunbNUeef,wbo9zYCMvmunbNUeef,vQWTRjZRLmunbNUeef,idmunbNUeef,...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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"oyzbUtRqE\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"w5HCNyigs\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"o505c7bx7\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"NKaPhW_FP\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"NKaPhW_FP\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if([\"M3O4iu7ea\",\"NKaPhW_FP\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if([\"M3O4iu7ea\",\"NKaPhW_FP\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"rh_e80prg\");const ref4=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"KriPO4gSS\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-efabe322-7c67-4a0d-9e08-37540aa0f495, rgb(22, 23, 23)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1t3qd6a\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vott9p-container\",\"data-framer-name\":\"01 - NAV BAR - Menus\",id:elementId,layoutScroll:true,name:\"01 - NAV BAR - Menus\",nodeId:\"oyzbUtRqE\",ref:ref1,rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{__framer__targets:[{offset:-80,ref:ref1,target:\"GESihxyED\"}],nDPQh_CIQ:false,variant:\"fBNG1Cphi\"},NKaPhW_FP:{__framer__variantAppearEffectEnabled:undefined,variant:\"KDhyFsg3s\"}},children:/*#__PURE__*/_jsx(NAVBARWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:-80,ref:ref1,target:\"GygIp6AEq\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,A8fysLlDK:.5,bzXNODAh7:.5,dh3ns6fyk:true,GAOWAvp5h:.5,height:\"100%\",id:\"oyzbUtRqE\",layoutId:\"oyzbUtRqE\",name:\"01 - NAV BAR - Menus\",nDPQh_CIQ:true,style:{width:\"100%\"},vAFfkYbhe:.5,variant:\"idsrE6KTo\",width:\"100%\",wku4MUlBh:.5})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1plunwf\",\"data-framer-name\":\"HERO\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fc4vau\",\"data-framer-name\":\"Content\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnmwwc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NKaPhW_FP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Welcome to the all-new DesignUplift \uD83D\uDC4B\"})}),fonts:[\"FS;Satoshi-medium\"]}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Welcome to the all-new DesignUplift \uD83D\uDC4B\"})}),className:\"framer-16cin2p\",\"data-framer-appear-id\":\"16cin2p\",fonts:[\"FS;Satoshi-bold\"],initial:animation2,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Start your day with a splash of\",/*#__PURE__*/_jsx(\"br\",{}),\"design inspiration\"]})})},NKaPhW_FP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"Start your day\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"with a splash of\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"36px\"},children:\"design inspiration\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.5px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Start your day with a splash of\",/*#__PURE__*/_jsx(\"br\",{}),\"design inspiration\"]})}),className:\"framer-1aykn09\",\"data-framer-appear-id\":\"1aykn09\",effect:textEffect,fonts:[\"FS;Satoshi-bold\"],initial:animation2,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,className:\"framer-1hucgme\",\"data-framer-appear-id\":\"1hucgme\",\"data-framer-name\":\"Newsletter\",initial:animation6,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NKaPhW_FP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"Get the latest updates and recaps\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"16px\"},children:\"\u2014delivered to your inbox\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:\"Get the latest updates and recaps\u2014delivered to your inbox\"})}),className:\"framer-e0h5zs\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/6f8bf060-0034-4457-b06f-8dbc4b4f1a33/submit\",className:\"framer-v5j0h7\",nodeId:\"UC5eFOkcU\",redirectUrl:{webPageId:\"sZncdn6_L\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-1hnvpfz\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1c6jqlq\",inputName:\"Email\",placeholder:\"name@email.com\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{y:(componentViewport?.y||0)+0+0+180+0+0+246+0+40+0},NKaPhW_FP:{y:(componentViewport?.y||0)+0+0+140+0+0+170+0+36.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,width:\"135px\",y:(componentViewport?.y||0)+0+0+240+0+0+230+0+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jvdnek-container\",nodeId:\"Pk9MwPjIY\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"Pk9MwPjIY\",layoutId:\"Pk9MwPjIY\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"qrZI9DCga\",success:\"nRRszl4tQ\"},\"SwPQXbNY7\"),width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yu2rl8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-85w9pq\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-uz70wv\",\"data-framer-name\":\"Helper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+246+0+110+0+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/2n8UQrzm0oHzhOX1ckL8izFoE.png\"}},NKaPhW_FP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+0+0+170+0+106.8+0+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/2n8UQrzm0oHzhOX1ckL8izFoE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+240+0+0+230+0+110+0+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/2n8UQrzm0oHzhOX1ckL8izFoE.png\"},className:\"framer-1x1jrbn\",\"data-framer-name\":\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b5b9au\",\"data-framer-name\":\"Helper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+246+0+110+0+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/hF944J2HOWaKmZLpMGbhJD8cIw.jpeg\"}},NKaPhW_FP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+0+0+170+0+106.8+0+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/hF944J2HOWaKmZLpMGbhJD8cIw.jpeg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+240+0+0+230+0+110+0+0+0),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/hF944J2HOWaKmZLpMGbhJD8cIw.jpeg\"},className:\"framer-1ru073d\",\"data-framer-name\":\"IMG\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-au62d6\",\"data-framer-name\":\"Helper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+180+0+0+246+0+110+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/ObQP3mGC0FQqpRrXCCBkoTCVvb8.webp\"}},NKaPhW_FP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+140+0+0+170+0+106.8+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/ObQP3mGC0FQqpRrXCCBkoTCVvb8.webp\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+240+0+0+230+0+110+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/ObQP3mGC0FQqpRrXCCBkoTCVvb8.webp\"},className:\"framer-14f4f0b\",\"data-framer-name\":\"IMG\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NKaPhW_FP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-weight\":\"700\"},children:\"250+\"}),\" designers already joined!\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss01' on\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.4)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-weight\":\"700\"},children:\"250+\"}),\" awesome people already joined!\"]})}),className:\"framer-5ef1jk\",fonts:[\"FS;Satoshi-medium\",\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-56xpln\",\"data-framer-name\":\"SLIDESHOW\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nco3ew-container hidden-15p9j5h\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EMpY7Z3Ts\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-b30413c7-5640-4b8e-95f5-80ccf6ad4abe, rgb(43, 46, 49))\",arrowGap:10,arrowPadding:-56,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:500,arrowShouldFadeIn:true,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.85},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:72,height:\"100%\",id:\"EMpY7Z3Ts\",intervalControl:2.5,itemAmount:1,layoutId:\"EMpY7Z3Ts\",padding:0,paddingBottom:30,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-8,dotSize:10,dotsOpacity:.1,dotsPadding:10,dotsRadius:200,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w6pl9a-container\",\"data-framer-name\":\"SLIDESHOW - FLEX 2 (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - FLEX 2 (Desktop)\",nodeId:\"CtfngkOLq\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWFLEX2Video,{height:\"100%\",id:\"CtfngkOLq\",layoutId:\"CtfngkOLq\",name:\"SLIDESHOW - FLEX 2 (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"bFRlpKYWi\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11yg2oa-container\",\"data-framer-name\":\"SLIDESHOW - News (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - News (Desktop)\",nodeId:\"HlII6vCq1\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWNews,{height:\"100%\",id:\"HlII6vCq1\",layoutId:\"HlII6vCq1\",name:\"SLIDESHOW - News (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"Klpt6k6qk\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t4iu5y-container\",\"data-framer-name\":\"SLIDESHOW - DesignTV (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - DesignTV (Desktop)\",nodeId:\"Ydu8FMZOa\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWDesignTV,{height:\"100%\",id:\"Ydu8FMZOa\",layoutId:\"Ydu8FMZOa\",name:\"SLIDESHOW - DesignTV (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"KNYbmDkU8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-37khwe-container\",\"data-framer-name\":\"SLIDESHOW - Projects v2 (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - Projects v2 (Desktop)\",nodeId:\"ETHGCdAN3\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWProjectsV2,{height:\"100%\",id:\"ETHGCdAN3\",layoutId:\"ETHGCdAN3\",name:\"SLIDESHOW - Projects v2 (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"pCfGu3HEX\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-lhy3yb-container\",\"data-framer-name\":\"SLIDESHOW - DesignTV 2 (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - DesignTV 2 (Desktop)\",nodeId:\"tJanEKoB0\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWDesignTV2,{height:\"100%\",id:\"tJanEKoB0\",layoutId:\"tJanEKoB0\",name:\"SLIDESHOW - DesignTV 2 (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"aF9kmECfI\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-15u166u-container\",\"data-framer-name\":\"SLIDESHOW - News 2 (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - News 2 (Desktop)\",nodeId:\"DNIZDQQdr\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWNews2,{height:\"100%\",id:\"DNIZDQQdr\",layoutId:\"DNIZDQQdr\",name:\"SLIDESHOW - News 2 (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"KnKgDRAa2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-146hxug-container\",\"data-framer-name\":\"SLIDESHOW - Toolbox (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - Toolbox (Desktop)\",nodeId:\"vyyF3WrPi\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWToolbox,{height:\"100%\",id:\"vyyF3WrPi\",layoutId:\"vyyF3WrPi\",name:\"SLIDESHOW - Toolbox (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"Cnv6QHIE4\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"720px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6xf9ky-container\",\"data-framer-name\":\"SLIDESHOW - FLEX (Desktop)\",inComponentSlot:true,name:\"SLIDESHOW - FLEX (Desktop)\",nodeId:\"y3ArFaGgL\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWFLEX,{height:\"100%\",id:\"y3ArFaGgL\",layoutId:\"y3ArFaGgL\",name:\"SLIDESHOW - FLEX (Desktop)\",style:{height:\"100%\",width:\"100%\"},variant:\"PJGt1bjCD\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",maxHeight:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jqq1ko-container hidden-1t3qd6a hidden-virfvo\",\"data-framer-name\":\"MOBILE\",isAuthoredByUser:true,isModuleExternal:true,name:\"MOBILE\",nodeId:\"YyFYfOQTk\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-b30413c7-5640-4b8e-95f5-80ccf6ad4abe, rgb(43, 46, 49))\",arrowGap:10,arrowPadding:13,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:17,arrowPosition:\"top-mid\",arrowRadius:500,arrowShouldFadeIn:true,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:10,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.85},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:42,height:\"100%\",id:\"YyFYfOQTk\",intervalControl:2.5,itemAmount:1,layoutId:\"YyFYfOQTk\",name:\"MOBILE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:8,dotsInset:-20,dotSize:10,dotsOpacity:.1,dotsPadding:0,dotsRadius:200,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sjby32-container\",\"data-framer-name\":\"SLIDESHOW - FLEX 2 (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - FLEX 2 (Mobile)\",nodeId:\"w__G6uWnx\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWFLEX2Video,{height:\"100%\",id:\"w__G6uWnx\",layoutId:\"w__G6uWnx\",name:\"SLIDESHOW - FLEX 2 (Mobile)\",style:{width:\"100%\"},variant:\"J2g3yefP7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ezhaxk-container\",\"data-framer-name\":\"SLIDESHOW - News (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - News (Mobile)\",nodeId:\"idEIHxdcC\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWNews,{height:\"100%\",id:\"idEIHxdcC\",layoutId:\"idEIHxdcC\",name:\"SLIDESHOW - News (Mobile)\",style:{width:\"100%\"},variant:\"HvZKbf6PQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wrcbt5-container\",\"data-framer-name\":\"SLIDESHOW - DesignTV (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - DesignTV (Mobile)\",nodeId:\"xxifdbHWI\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWDesignTV,{height:\"100%\",id:\"xxifdbHWI\",layoutId:\"xxifdbHWI\",name:\"SLIDESHOW - DesignTV (Mobile)\",style:{width:\"100%\"},variant:\"H1nGZLggy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-wgn1kc-container\",\"data-framer-name\":\"SLIDESHOW - Projects v2 (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - Projects v2 (Mobile)\",nodeId:\"yjWlsKJ5O\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWProjectsV2,{height:\"100%\",id:\"yjWlsKJ5O\",layoutId:\"yjWlsKJ5O\",name:\"SLIDESHOW - Projects v2 (Mobile)\",style:{width:\"100%\"},variant:\"LS9pdIxBf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hkaq4c-container\",\"data-framer-name\":\"SLIDESHOW - DesignTV 2 (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - DesignTV 2 (Mobile)\",nodeId:\"cT6BvRbl_\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWDesignTV2,{height:\"100%\",id:\"cT6BvRbl_\",layoutId:\"cT6BvRbl_\",name:\"SLIDESHOW - DesignTV 2 (Mobile)\",style:{width:\"100%\"},variant:\"INOVeFhsv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xee1r3-container\",\"data-framer-name\":\"SLIDESHOW - News 2 (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - News 2 (Mobile)\",nodeId:\"nDf7LAVTY\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWNews2,{height:\"100%\",id:\"nDf7LAVTY\",layoutId:\"nDf7LAVTY\",name:\"SLIDESHOW - News 2 (Mobile)\",style:{width:\"100%\"},variant:\"jX1iB3S0P\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gdiu20-container\",\"data-framer-name\":\"SLIDESHOW - Toolbox (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - Toolbox (Mobile)\",nodeId:\"YRKfnUE6U\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWToolbox,{height:\"100%\",id:\"YRKfnUE6U\",layoutId:\"YRKfnUE6U\",name:\"SLIDESHOW - Toolbox (Mobile)\",style:{width:\"100%\"},variant:\"qzk4X0EP0\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:\"340px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-4cmt85-container\",\"data-framer-name\":\"SLIDESHOW - FLEX (Mobile)\",inComponentSlot:true,name:\"SLIDESHOW - FLEX (Mobile)\",nodeId:\"dZhreccBW\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(SLIDESHOWFLEX,{height:\"100%\",id:\"dZhreccBW\",layoutId:\"dZhreccBW\",name:\"SLIDESHOW - FLEX (Mobile)\",style:{width:\"100%\"},variant:\"PNHvg1bKf\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",maxHeight:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5bpx27\",\"data-framer-name\":\"FEATURED PROJECTS - v05\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h93te8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09f6a9b1-5931-4c61-ab1c-1f27e408879d, rgb(255, 57, 92))\"},children:\"Our top picks\"})}),className:\"framer-92rfpr\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-djwa1q\",\"data-styles-preset\":\"AJ0xh6Vqz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Featured Projects\"})}),className:\"framer-1a1xej9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ykydkh\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qhvmos\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{query:{from:{alias:\"CZhZ20X73\",data:FeaturedProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"CZhZ20X73\",name:\"AYS4_sRzU\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"xKC0Tznbr\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"WSV1gUwIu\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"OLgFBWfQC\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"k2NufVIK7\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"cHiqEqLYQ\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"SGD5XLjbv\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"id\",type:\"Identifier\"}],where:{collection:\"CZhZ20X73\",name:\"AYS4_sRzU\",type:\"Identifier\"}}},NKaPhW_FP:{query:{from:{alias:\"CZhZ20X73\",data:FeaturedProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"CZhZ20X73\",name:\"AYS4_sRzU\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"xKC0Tznbr\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"WSV1gUwIu\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"OLgFBWfQC\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"k2NufVIK7\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"cHiqEqLYQ\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"SGD5XLjbv\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"id\",type:\"Identifier\"}],where:{collection:\"CZhZ20X73\",name:\"AYS4_sRzU\",type:\"Identifier\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"CZhZ20X73\",data:FeaturedProjects,type:\"Collection\"},limit:{type:\"LiteralValue\",value:8},select:[{collection:\"CZhZ20X73\",name:\"AYS4_sRzU\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"xKC0Tznbr\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"WSV1gUwIu\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"OLgFBWfQC\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"k2NufVIK7\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"cHiqEqLYQ\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"SGD5XLjbv\",type:\"Identifier\"},{collection:\"CZhZ20X73\",name:\"id\",type:\"Identifier\"}],where:{collection:\"CZhZ20X73\",name:\"AYS4_sRzU\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({AYS4_sRzU:AYS4_sRzUCZhZ20X73,cHiqEqLYQ:cHiqEqLYQCZhZ20X73,id:idCZhZ20X73,k2NufVIK7:k2NufVIK7CZhZ20X73,OLgFBWfQC:OLgFBWfQCCZhZ20X73,SGD5XLjbv:SGD5XLjbvCZhZ20X73,WSV1gUwIu:WSV1gUwIuCZhZ20X73,xKC0Tznbr:xKC0TznbrCZhZ20X73},index)=>{AYS4_sRzUCZhZ20X73??=true;xKC0TznbrCZhZ20X73??=\"\";OLgFBWfQCCZhZ20X73??=\"\";k2NufVIK7CZhZ20X73??=\"\";cHiqEqLYQCZhZ20X73??=\"\";SGD5XLjbvCZhZ20X73??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`CZhZ20X73-${idCZhZ20X73}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{xKC0Tznbr:xKC0TznbrCZhZ20X73},children:AYS4_sRzUCZhZ20X73&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{xKC0Tznbr:xKC0TznbrCZhZ20X73},webPageId:\"gM4SD89L4\"},implicitPathVariables:undefined},{href:SGD5XLjbvCZhZ20X73,implicitPathVariables:{xKC0Tznbr:xKC0TznbrCZhZ20X73}},{href:{pathVariables:{xKC0Tznbr:xKC0TznbrCZhZ20X73},webPageId:\"gM4SD89L4\"},implicitPathVariables:undefined},{href:SGD5XLjbvCZhZ20X73,implicitPathVariables:{xKC0Tznbr:xKC0TznbrCZhZ20X73}},{href:{pathVariables:{xKC0Tznbr:xKC0TznbrCZhZ20X73},webPageId:\"gM4SD89L4\"},implicitPathVariables:undefined},{href:SGD5XLjbvCZhZ20X73,implicitPathVariables:{xKC0Tznbr:xKC0TznbrCZhZ20X73}}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{width:`max((${componentViewport?.width||\"100vw\"} - 96px) / 3, 200px)`,y:(componentViewport?.y||0)+0+1308+20+124.2+0+0+0+0},NKaPhW_FP:{width:`max((${componentViewport?.width||\"100vw\"} - 42px) / 2, 160px)`,y:(componentViewport?.y||0)+0+1028.8+20+124.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201.2619,width:`max((${componentViewport?.width||\"100vw\"} - 168px) / 4, 200px)`,y:(componentViewport?.y||0)+0+1342+100+124.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16z13xz-container\",nodeId:\"ww6j7v2eo\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",whileHover:animation11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{Hq4vydhGd:resolvedLinks[2],kO9Vcup3s:resolvedLinks[3],variant:\"rWa3tmykV\"},NKaPhW_FP:{Hq4vydhGd:resolvedLinks[4],kO9Vcup3s:resolvedLinks[5],variant:\"rWa3tmykV\"}},children:/*#__PURE__*/_jsx(CARDFEATUREDPROJECTS,{eTBuxmrZJ:OLgFBWfQCCZhZ20X73,height:\"100%\",Hq4vydhGd:resolvedLinks[0],id:\"ww6j7v2eo\",kO9Vcup3s:resolvedLinks[1],layoutId:\"ww6j7v2eo\",oxwcSeVR4:toResponsiveImage(WSV1gUwIuCZhZ20X73),rMbjShBkZ:k2NufVIK7CZhZ20X73,rsOE3Ipw2:cHiqEqLYQCZhZ20X73,style:{height:\"100%\",width:\"100%\"},variant:\"D_IXAjqXU\",width:\"100%\"})})})})})})})},idCZhZ20X73);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"nXEsmlxww\"},implicitPathVariables:undefined},{href:{webPageId:\"nXEsmlxww\"},implicitPathVariables:undefined},{href:{webPageId:\"nXEsmlxww\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{y:(componentViewport?.y||0)+0+1308+20+124.2+0+453},NKaPhW_FP:{y:(componentViewport?.y||0)+0+1028.8+20+124.2+0+447}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+1342+100+124.2+0+461,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ib2gxx-container\",nodeId:\"a0S2Q4YSn\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{yzRVKfC3H:resolvedLinks1[1]},NKaPhW_FP:{yzRVKfC3H:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"a0S2Q4YSn\",layoutId:\"a0S2Q4YSn\",variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Discover All Projects\",yzRVKfC3H:resolvedLinks1[0]})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yvdch6\",\"data-framer-name\":\"SUBMIT PROJECT - v03\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+0+2061.2+20},NKaPhW_FP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+1786+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+0+2173.2+100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m5z90d-container\",nodeId:\"r4g4IcGQN\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{variant:\"VLEw0atSB\"},NKaPhW_FP:{style:{width:\"100%\"},variant:\"tt3n9SOjU\"}},children:/*#__PURE__*/_jsx(SUBMITPROJECT,{height:\"100%\",id:\"r4g4IcGQN\",layoutId:\"r4g4IcGQN\",style:{height:\"100%\",width:\"100%\"},variant:\"liBM1FJ0l\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1soyydw\",\"data-framer-name\":\"DESIGN TV - v10\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d40t7f\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09f6a9b1-5931-4c61-ab1c-1f27e408879d, rgb(255, 57, 92))\"},children:\"Design in motion\"})}),className:\"framer-1s8h5ux\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-djwa1q\",\"data-styles-preset\":\"AJ0xh6Vqz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DesignTV\"})}),className:\"framer-1l7m6y6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ezkar\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-d955p2\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-b2e5vl\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"RdQZoISxS\",data:DesignTV,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"RdQZoISxS\",name:\"L2g6Clzhc\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"I6VviQuE_\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"Ppkex77mk\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"fmnqEYVkg\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"s8ENooHSA\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"tOck9xuYK\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"sdUf9uPRl\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"j8nLSNXRO\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"cFGzv_mX9\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"vPeE5Ed1h\",type:\"Identifier\"},{collection:\"RdQZoISxS\",name:\"id\",type:\"Identifier\"}],where:{collection:\"RdQZoISxS\",name:\"L2g6Clzhc\",type:\"Identifier\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({cFGzv_mX9:cFGzv_mX9RdQZoISxS,fmnqEYVkg:fmnqEYVkgRdQZoISxS,I6VviQuE_:I6VviQuE_RdQZoISxS,id:idRdQZoISxS,j8nLSNXRO:j8nLSNXRORdQZoISxS,L2g6Clzhc:L2g6ClzhcRdQZoISxS,Ppkex77mk:Ppkex77mkRdQZoISxS,s8ENooHSA:s8ENooHSARdQZoISxS,sdUf9uPRl:sdUf9uPRlRdQZoISxS,tOck9xuYK:tOck9xuYKRdQZoISxS,vPeE5Ed1h:vPeE5Ed1hRdQZoISxS},index1)=>{L2g6ClzhcRdQZoISxS??=true;I6VviQuE_RdQZoISxS??=\"\";Ppkex77mkRdQZoISxS??=\"\";s8ENooHSARdQZoISxS??=\"\";tOck9xuYKRdQZoISxS??=\"\";sdUf9uPRlRdQZoISxS??=\"\";j8nLSNXRORdQZoISxS??=\"\";cFGzv_mX9RdQZoISxS??=\"\";vPeE5Ed1hRdQZoISxS??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`RdQZoISxS-${idRdQZoISxS}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{cFGzv_mX9:cFGzv_mX9RdQZoISxS},children:L2g6ClzhcRdQZoISxS&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:j8nLSNXRORdQZoISxS,implicitPathVariables:{cFGzv_mX9:cFGzv_mX9RdQZoISxS}},{href:j8nLSNXRORdQZoISxS,implicitPathVariables:{cFGzv_mX9:cFGzv_mX9RdQZoISxS}},{href:j8nLSNXRORdQZoISxS,implicitPathVariables:{cFGzv_mX9:cFGzv_mX9RdQZoISxS}}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{width:`max((max(${componentViewport?.width||\"100vw\"} - 64px, 1px) + 16px) / 0, 1px)`,y:(componentViewport?.y||0)+0+2531.2+20+124.2+0+0+0+0},NKaPhW_FP:{height:721,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+0+2246+20+124.2+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:0,width:`max((max(${componentViewport?.width||\"100vw\"} - 96px, 1px) + 24px) / 0, 1px)`,y:(componentViewport?.y||0)+0+2693.2+100+124.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hkyat8-container\",nodeId:\"veKR833Pw\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{HAUj_5pli:resolvedLinks2[1],variant:\"AJJwSaRkY\"},NKaPhW_FP:{HAUj_5pli:resolvedLinks2[2],style:{width:\"100%\"},variant:\"AJJwSaRkY\"}},children:/*#__PURE__*/_jsx(CARDDESIGNTV,{DFFlgyeDy:convertFromEnum(fmnqEYVkgRdQZoISxS,activeLocale),GrZTbwPQ6:Ppkex77mkRdQZoISxS,HAUj_5pli:resolvedLinks2[0],height:\"100%\",id:\"veKR833Pw\",layoutId:\"veKR833Pw\",OBpW14BzJ:I6VviQuE_RdQZoISxS,Q1qvHNzwE:s8ENooHSARdQZoISxS,style:{height:\"100%\",width:\"100%\"},ucbz6C5sJ:tOck9xuYKRdQZoISxS,variant:\"zsJsyTL_a\",VJg6Le5Ht:vPeE5Ed1hRdQZoISxS,vxlDdCBiI:sdUf9uPRlRdQZoISxS,width:\"100%\"})})})})})})})},idRdQZoISxS);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined},{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined},{href:{webPageId:\"NYHXRCt3Y\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{y:(componentViewport?.y||0)+0+2531.2+20+124.2+0+36},NKaPhW_FP:{y:(componentViewport?.y||0)+0+2246+20+124.2+0+757}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+2693.2+100+124.2+0+36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ixh6il-container\",nodeId:\"h9bHUwCw_\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{yzRVKfC3H:resolvedLinks3[1]},NKaPhW_FP:{yzRVKfC3H:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(255, 255, 255)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"h9bHUwCw_\",layoutId:\"h9bHUwCw_\",variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"See All Videos\",yzRVKfC3H:resolvedLinks3[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wo18y4\",\"data-framer-name\":\"NEWS - v04\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uodu95\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09f6a9b1-5931-4c61-ab1c-1f27e408879d, rgb(255, 57, 92))\"},children:\"Stay up to date\"})}),className:\"framer-p7d22l\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-djwa1q\",\"data-styles-preset\":\"AJ0xh6Vqz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Latest News\"})}),className:\"framer-le7dcm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxav6f\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation12,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1aearlp\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{query:{from:{alias:\"J6hHp7GV0\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"J6hHp7GV0\",name:\"GCXrOa05Y\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"K_UVVzlZV\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"EuknzN5mf\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"nikDhfeo_\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"t95wztpJ7\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"OLAgUYmV7\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"JFbSteNUR\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"WIYmADrH3\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"id\",type:\"Identifier\"}],where:{collection:\"J6hHp7GV0\",name:\"GCXrOa05Y\",type:\"Identifier\"}}},NKaPhW_FP:{query:{from:{alias:\"J6hHp7GV0\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"J6hHp7GV0\",name:\"GCXrOa05Y\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"K_UVVzlZV\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"EuknzN5mf\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"nikDhfeo_\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"t95wztpJ7\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"OLAgUYmV7\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"JFbSteNUR\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"WIYmADrH3\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"id\",type:\"Identifier\"}],where:{collection:\"J6hHp7GV0\",name:\"GCXrOa05Y\",type:\"Identifier\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"J6hHp7GV0\",data:News,type:\"Collection\"},limit:{type:\"LiteralValue\",value:6},select:[{collection:\"J6hHp7GV0\",name:\"GCXrOa05Y\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"K_UVVzlZV\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"EuknzN5mf\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"nikDhfeo_\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"t95wztpJ7\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"OLAgUYmV7\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"JFbSteNUR\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"WIYmADrH3\",type:\"Identifier\"},{collection:\"J6hHp7GV0\",name:\"id\",type:\"Identifier\"}],where:{collection:\"J6hHp7GV0\",name:\"GCXrOa05Y\",type:\"Identifier\"}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({EuknzN5mf:EuknzN5mfJ6hHp7GV0,GCXrOa05Y:GCXrOa05YJ6hHp7GV0,id:idJ6hHp7GV0,JFbSteNUR:JFbSteNURJ6hHp7GV0,K_UVVzlZV:K_UVVzlZVJ6hHp7GV0,nikDhfeo_:nikDhfeo_J6hHp7GV0,OLAgUYmV7:OLAgUYmV7J6hHp7GV0,t95wztpJ7:t95wztpJ7J6hHp7GV0,WIYmADrH3:WIYmADrH3J6hHp7GV0},index2)=>{GCXrOa05YJ6hHp7GV0??=true;K_UVVzlZVJ6hHp7GV0??=\"\";EuknzN5mfJ6hHp7GV0??=\"\";t95wztpJ7J6hHp7GV0??=\"\";OLAgUYmV7J6hHp7GV0??=\"\";JFbSteNURJ6hHp7GV0??=\"\";WIYmADrH3J6hHp7GV0??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`J6hHp7GV0-${idJ6hHp7GV0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{EuknzN5mf:EuknzN5mfJ6hHp7GV0},children:GCXrOa05YJ6hHp7GV0&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:K_UVVzlZVJ6hHp7GV0,implicitPathVariables:{EuknzN5mf:EuknzN5mfJ6hHp7GV0}},{href:JFbSteNURJ6hHp7GV0,implicitPathVariables:{EuknzN5mf:EuknzN5mfJ6hHp7GV0}},{href:K_UVVzlZVJ6hHp7GV0,implicitPathVariables:{EuknzN5mf:EuknzN5mfJ6hHp7GV0}},{href:JFbSteNURJ6hHp7GV0,implicitPathVariables:{EuknzN5mf:EuknzN5mfJ6hHp7GV0}},{href:K_UVVzlZVJ6hHp7GV0,implicitPathVariables:{EuknzN5mf:EuknzN5mfJ6hHp7GV0}},{href:JFbSteNURJ6hHp7GV0,implicitPathVariables:{EuknzN5mf:EuknzN5mfJ6hHp7GV0}}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{height:208.2687,width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 200px)`,y:(componentViewport?.y||0)+0+2877.4+20+121.2+0+0+0+0},NKaPhW_FP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+3313.2+20+121.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:421,width:`max((${componentViewport?.width||\"100vw\"} - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+3099.4+100+121.2+0+0+0+0,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NKaPhW_FP:{whileHover:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-d04jrk-container\",nodeId:\"F6fmcUJ2G\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",whileHover:animation14,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{MQi5tLchg:resolvedLinks4[2],t14R7MeFg:resolvedLinks4[3],variant:\"EP3B2x_ul\"},NKaPhW_FP:{MQi5tLchg:resolvedLinks4[4],style:{width:\"100%\"},t14R7MeFg:resolvedLinks4[5],variant:\"EP3B2x_ul\"}},children:/*#__PURE__*/_jsx(CARDNEWS,{height:\"100%\",id:\"F6fmcUJ2G\",layoutId:\"F6fmcUJ2G\",MQi5tLchg:resolvedLinks4[0],oH_hQcDEQ:t95wztpJ7J6hHp7GV0,q7wifD5Vn:OLAgUYmV7J6hHp7GV0,S3OLWaCkc:WIYmADrH3J6hHp7GV0,style:{height:\"100%\",width:\"100%\"},t14R7MeFg:resolvedLinks4[1],udOHcC0hA:toResponsiveImage(nikDhfeo_J6hHp7GV0),variant:\"eRwXY97vQ\",width:\"100%\"})})})})})})})})},idJ6hHp7GV0);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined},{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined},{href:{webPageId:\"ILBo1i8yF\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{y:(componentViewport?.y||0)+0+2877.4+20+121.2+0+473},NKaPhW_FP:{y:(componentViewport?.y||0)+0+3313.2+20+121.2+0+457}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+3099.4+100+121.2+0+481,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w7yb1u-container\",nodeId:\"quJgKKFq7\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{yzRVKfC3H:resolvedLinks5[1]},NKaPhW_FP:{yzRVKfC3H:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"quJgKKFq7\",layoutId:\"quJgKKFq7\",variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Browse Latest News\",yzRVKfC3H:resolvedLinks5[0]})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-azxtnz\",\"data-framer-name\":\"STUDIO DIRECTORY - v03\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nui6b2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09f6a9b1-5931-4c61-ab1c-1f27e408879d, rgb(255, 57, 92))\"},children:\"Browse design powerhouses\"})}),className:\"framer-188kyie\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-djwa1q\",\"data-styles-preset\":\"AJ0xh6Vqz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Design Directory\"})}),className:\"framer-1r7904d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1thjwoo\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xw5akt-container hidden-1t3qd6a\",\"data-framer-name\":\"TICKER - MOBILE\",isAuthoredByUser:true,isModuleExternal:true,name:\"TICKER - MOBILE\",nodeId:\"jopqJLTGk\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",whileHover:animation15,children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:12,height:\"100%\",hoverFactor:1,id:\"jopqJLTGk\",layoutId:\"jopqJLTGk\",name:\"TICKER - MOBILE\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-njouzo-container\",\"data-framer-name\":\"CARD - STUDIO 1 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 1 (Mobile)\",nodeId:\"xziNsjxCs\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Sweeden\",height:\"100%\",id:\"xziNsjxCs\",layoutId:\"xziNsjxCs\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/qYL3nnNWVXxneksQYXPNHTVNPZE.jpg\"},\"\"),name:\"CARD - STUDIO 1 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Stockholm\",SjmLgdTlU:\"Above\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1311a9p-container\",\"data-framer-name\":\"CARD - STUDIO 2 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 2 (Mobile)\",nodeId:\"uKwtgdqnd\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Korea\",height:\"100%\",id:\"uKwtgdqnd\",layoutId:\"uKwtgdqnd\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/9rSBALp48OZjKTc4sEwyMEOyrHo.jpg\"},\"\"),name:\"CARD - STUDIO 2 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Seoul\",SjmLgdTlU:\"BKID\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oacynz-container\",\"data-framer-name\":\"CARD - STUDIO 3 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 3 (Mobile)\",nodeId:\"kmoUVwiYN\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United Kingdom\",height:\"100%\",id:\"kmoUVwiYN\",layoutId:\"kmoUVwiYN\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/ZZcEgOWglnBFkydoj3TeewH9DXM.jpg\"},\"\"),name:\"CARD - STUDIO 3 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"London\",SjmLgdTlU:\"BLOND\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1akqpl5-container\",\"data-framer-name\":\"CARD - STUDIO 4 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 4 (Mobile)\",nodeId:\"UJ2yo0H_D\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Germany\",height:\"100%\",id:\"UJ2yo0H_D\",layoutId:\"UJ2yo0H_D\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/sgKSWPzZEW7kkk4rz4Aojm7HzYU.jpg\"},\"\"),name:\"CARD - STUDIO 4 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Munich\",SjmLgdTlU:\"Relvaokellermann\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-59ui0h-container\",\"data-framer-name\":\"CARD - STUDIO 5 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 5 (Mobile)\",nodeId:\"IH226YP4l\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United Kingdom\",height:\"100%\",id:\"IH226YP4l\",layoutId:\"IH226YP4l\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/aZ7vQEHi8agAe3X56OtzMhj3sec.jpg\"},\"\"),name:\"CARD - STUDIO 5 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"London\",SjmLgdTlU:\"LAYER\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fmimcb-container\",\"data-framer-name\":\"CARD - STUDIO 6 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 6 (Mobile)\",nodeId:\"CnKX8ttMs\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United States\",height:\"100%\",id:\"CnKX8ttMs\",layoutId:\"CnKX8ttMs\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/1bDwy67ytzqsJxJkzuXKp9bnUw.jpg\"},\"\"),name:\"CARD - STUDIO 6 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Austin, TX\",SjmLgdTlU:\"Pentagram\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8f7wrq-container\",\"data-framer-name\":\"CARD - STUDIO 7 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 7 (Mobile)\",nodeId:\"uI5vWtMFz\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United States\",height:\"100%\",id:\"uI5vWtMFz\",layoutId:\"uI5vWtMFz\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/VRd7EIVQphwge4TcZjxJQZP1I54.jpg\"},\"\"),name:\"CARD - STUDIO 7 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Santa Cruz, CA\",SjmLgdTlU:\"Herbst Produkt\",variant:\"FfxLWVXIL\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yc5m7c-container\",\"data-framer-name\":\"CARD - STUDIO 8 (Mobile)\",inComponentSlot:true,name:\"CARD - STUDIO 8 (Mobile)\",nodeId:\"bqvdppgac\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Stockholm\",height:\"100%\",id:\"bqvdppgac\",layoutId:\"bqvdppgac\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/E8t0aI3LlyCbJJob7GgTgwC5PZ4.jpg\"},\"\"),name:\"CARD - STUDIO 8 (Mobile)\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Sweeden\",SjmLgdTlU:\"Teenage Engineering\",variant:\"FfxLWVXIL\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ymlw0-container hidden-virfvo hidden-15p9j5h\",\"data-framer-name\":\"TICKER - DESKTOP\",isAuthoredByUser:true,isModuleExternal:true,name:\"TICKER - DESKTOP\",nodeId:\"Ogg5CXYsP\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",whileHover:animation15,children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:12,height:\"100%\",hoverFactor:1,id:\"Ogg5CXYsP\",layoutId:\"Ogg5CXYsP\",name:\"TICKER - DESKTOP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:true,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r18ujp-container\",\"data-framer-name\":\"CARD - STUDIO 1\",inComponentSlot:true,name:\"CARD - STUDIO 1\",nodeId:\"B8YmT1iCg\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Sweeden\",height:\"100%\",id:\"B8YmT1iCg\",layoutId:\"B8YmT1iCg\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/qYL3nnNWVXxneksQYXPNHTVNPZE.jpg\"},\"\"),name:\"CARD - STUDIO 1\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Stockholm\",SjmLgdTlU:\"Above\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-9qa2xn-container\",\"data-framer-name\":\"CARD - STUDIO 2\",inComponentSlot:true,name:\"CARD - STUDIO 2\",nodeId:\"BvSn6mc4s\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Korea\",height:\"100%\",id:\"BvSn6mc4s\",layoutId:\"BvSn6mc4s\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/9rSBALp48OZjKTc4sEwyMEOyrHo.jpg\"},\"\"),name:\"CARD - STUDIO 2\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Seoul\",SjmLgdTlU:\"BKID\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h0imsr-container\",\"data-framer-name\":\"CARD - STUDIO 3\",inComponentSlot:true,name:\"CARD - STUDIO 3\",nodeId:\"DitnX4UD3\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United Kingdom\",height:\"100%\",id:\"DitnX4UD3\",layoutId:\"DitnX4UD3\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/ZZcEgOWglnBFkydoj3TeewH9DXM.jpg\"},\"\"),name:\"CARD - STUDIO 3\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"London\",SjmLgdTlU:\"BLOND\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xxg2lg-container\",\"data-framer-name\":\"CARD - STUDIO 7\",inComponentSlot:true,name:\"CARD - STUDIO 7\",nodeId:\"hQ3OeTAGh\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United States\",height:\"100%\",id:\"hQ3OeTAGh\",layoutId:\"hQ3OeTAGh\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/VRd7EIVQphwge4TcZjxJQZP1I54.jpg\"},\"\"),name:\"CARD - STUDIO 7\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Santa Cruz, CA\",SjmLgdTlU:\"Herbst Produkt\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e3fmob-container\",\"data-framer-name\":\"CARD - STUDIO 5\",inComponentSlot:true,name:\"CARD - STUDIO 5\",nodeId:\"IwAT9VEZW\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United Kingdom\",height:\"100%\",id:\"IwAT9VEZW\",layoutId:\"IwAT9VEZW\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/aZ7vQEHi8agAe3X56OtzMhj3sec.jpg\"},\"\"),name:\"CARD - STUDIO 5\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"London\",SjmLgdTlU:\"LAYER\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11uxjwa-container\",\"data-framer-name\":\"CARD - STUDIO 6\",inComponentSlot:true,name:\"CARD - STUDIO 6\",nodeId:\"d6aBoVk74\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"United States\",height:\"100%\",id:\"d6aBoVk74\",layoutId:\"d6aBoVk74\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/1bDwy67ytzqsJxJkzuXKp9bnUw.jpg\"},\"\"),name:\"CARD - STUDIO 6\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Austin, TX\",SjmLgdTlU:\"Pentagram\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8gcoi-container\",\"data-framer-name\":\"CARD - STUDIO 4\",inComponentSlot:true,name:\"CARD - STUDIO 4\",nodeId:\"kUH0fBEFR\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Germany\",height:\"100%\",id:\"kUH0fBEFR\",layoutId:\"kUH0fBEFR\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/sgKSWPzZEW7kkk4rz4Aojm7HzYU.jpg\"},\"\"),name:\"CARD - STUDIO 4\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Munich\",SjmLgdTlU:\"Relvaokellermann\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:360,width:\"210px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1az7bp-container\",\"data-framer-name\":\"CARD - STUDIO 8\",inComponentSlot:true,name:\"CARD - STUDIO 8\",nodeId:\"tirSHzoxA\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(CARDDIRECTORY,{Fkn7mt2J3:\"Stockholm\",height:\"100%\",id:\"tirSHzoxA\",layoutId:\"tirSHzoxA\",LnoNj_QbK:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/E8t0aI3LlyCbJJob7GgTgwC5PZ4.jpg\"},\"\"),name:\"CARD - STUDIO 8\",oHaZvJs8t:\"Ennsk_Hx4\",qIkhzj06X:\"Sweeden\",SjmLgdTlU:\"Teenage Engineering\",style:{height:\"100%\",width:\"100%\"},variant:\"YQlkjOPeT\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NKaPhW_FP:{whileHover:undefined}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1be7s1r\",whileHover:animation16,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GAVcV85WP\"},implicitPathVariables:undefined},{href:{webPageId:\"GAVcV85WP\"},implicitPathVariables:undefined},{href:{webPageId:\"GAVcV85WP\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{height:46,y:(componentViewport?.y||0)+0+3657.6+20+121.2+0+338+0+0},NKaPhW_FP:{height:46,y:(componentViewport?.y||0)+0+4077.4+20+107.2+0+338+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+3947.6+100+121.2+0+147.4118,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gjpvl8-container\",nodeId:\"NJ0NRsCw0\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{variant:\"zUQD5x3TY\",yzRVKfC3H:resolvedLinks6[1]},NKaPhW_FP:{variant:\"zUQD5x3TY\",yzRVKfC3H:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"NJ0NRsCw0\",layoutId:\"NJ0NRsCw0\",style:{height:\"100%\"},variant:\"vGjL6R3py\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to Directory\",yzRVKfC3H:resolvedLinks6[0]})})})})})})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p1mq16\",\"data-framer-name\":\"TOOLBOX\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4w0fu9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09f6a9b1-5931-4c61-ab1c-1f27e408879d, rgb(255, 57, 92))\"},children:\"Resources \"})}),className:\"framer-1yhm5za\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-djwa1q\",\"data-styles-preset\":\"AJ0xh6Vqz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Toolbox\"})}),className:\"framer-5onekk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-9jnomr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18s2xui\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{query:{from:{alias:\"munbNUeef\",data:Toolbox,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"munbNUeef\",name:\"SbpKEghqG\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"j70g86dKb\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"LVRhACTcK\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"dU6SW_DF0\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"Y0y6XbeLk\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"mjPRNcqBo\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"betWjP4K9\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"KZS0MV6tc\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"wbo9zYCMv\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"vQWTRjZRL\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"id\",type:\"Identifier\"}],where:{collection:\"munbNUeef\",name:\"SbpKEghqG\",type:\"Identifier\"}}},NKaPhW_FP:{query:{from:{alias:\"munbNUeef\",data:Toolbox,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},select:[{collection:\"munbNUeef\",name:\"SbpKEghqG\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"j70g86dKb\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"LVRhACTcK\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"dU6SW_DF0\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"Y0y6XbeLk\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"mjPRNcqBo\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"betWjP4K9\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"KZS0MV6tc\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"wbo9zYCMv\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"vQWTRjZRL\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"id\",type:\"Identifier\"}],where:{collection:\"munbNUeef\",name:\"SbpKEghqG\",type:\"Identifier\"}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"munbNUeef\",data:Toolbox,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"munbNUeef\",name:\"SbpKEghqG\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"j70g86dKb\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"LVRhACTcK\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"dU6SW_DF0\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"Y0y6XbeLk\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"mjPRNcqBo\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"betWjP4K9\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"KZS0MV6tc\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"wbo9zYCMv\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"vQWTRjZRL\",type:\"Identifier\"},{collection:\"munbNUeef\",name:\"id\",type:\"Identifier\"}],where:{collection:\"munbNUeef\",name:\"SbpKEghqG\",type:\"Identifier\"}},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({betWjP4K9:betWjP4K9munbNUeef,dU6SW_DF0:dU6SW_DF0munbNUeef,id:idmunbNUeef,j70g86dKb:j70g86dKbmunbNUeef,KZS0MV6tc:KZS0MV6tcmunbNUeef,LVRhACTcK:LVRhACTcKmunbNUeef,mjPRNcqBo:mjPRNcqBomunbNUeef,SbpKEghqG:SbpKEghqGmunbNUeef,vQWTRjZRL:vQWTRjZRLmunbNUeef,wbo9zYCMv:wbo9zYCMvmunbNUeef,Y0y6XbeLk:Y0y6XbeLkmunbNUeef},index3)=>{SbpKEghqGmunbNUeef??=true;dU6SW_DF0munbNUeef??=\"\";Y0y6XbeLkmunbNUeef??=\"\";betWjP4K9munbNUeef??=\"\";KZS0MV6tcmunbNUeef??=\"\";wbo9zYCMvmunbNUeef??=\"\";vQWTRjZRLmunbNUeef??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`munbNUeef-${idmunbNUeef}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wbo9zYCMv:wbo9zYCMvmunbNUeef},children:SbpKEghqGmunbNUeef&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:KZS0MV6tcmunbNUeef,implicitPathVariables:{wbo9zYCMv:wbo9zYCMvmunbNUeef}},{href:vQWTRjZRLmunbNUeef,implicitPathVariables:{wbo9zYCMv:wbo9zYCMvmunbNUeef}},{href:KZS0MV6tcmunbNUeef,implicitPathVariables:{wbo9zYCMv:wbo9zYCMvmunbNUeef}},{href:vQWTRjZRLmunbNUeef,implicitPathVariables:{wbo9zYCMv:wbo9zYCMvmunbNUeef}},{href:KZS0MV6tcmunbNUeef,implicitPathVariables:{wbo9zYCMv:wbo9zYCMvmunbNUeef}},{href:vQWTRjZRLmunbNUeef,implicitPathVariables:{wbo9zYCMv:wbo9zYCMvmunbNUeef}}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{width:`max((${componentViewport?.width||\"100vw\"} - 80px) / 2, 200px)`,y:(componentViewport?.y||0)+0+4302.8+20+121.2+0+0+0+0},NKaPhW_FP:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 200px)`,y:(componentViewport?.y||0)+0+4708.6+20+107.2+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:420,width:`max((${componentViewport?.width||\"100vw\"} - 144px) / 3, 200px)`,y:(componentViewport?.y||0)+0+4628.8+100+121.2+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-100n9x3-container\",nodeId:\"n2BZdPT7X\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",whileHover:animation17,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{mLUiNibVY:resolvedLinks7[2],ReHHqZcVF:resolvedLinks7[3],variant:\"eiPM3PFVK\"},NKaPhW_FP:{mLUiNibVY:resolvedLinks7[4],ReHHqZcVF:resolvedLinks7[5],style:{width:\"100%\"},variant:\"eiPM3PFVK\"}},children:/*#__PURE__*/_jsx(CARDTOOLBOXV2,{a0RAf19bu:betWjP4K9munbNUeef,cz4yp5_LM:Y0y6XbeLkmunbNUeef,height:\"100%\",id:\"n2BZdPT7X\",layoutId:\"n2BZdPT7X\",mLUiNibVY:resolvedLinks7[0],pPc9jFN2R:toResponsiveImage(LVRhACTcKmunbNUeef),PZA3n3xYp:toResponsiveImage(j70g86dKbmunbNUeef),ReHHqZcVF:resolvedLinks7[1],style:{height:\"100%\",width:\"100%\"},variant:\"UlEAipu8Q\",VsuFK53Zb:enumToDisplayNameFunctions[\"mjPRNcqBo\"]?.(mjPRNcqBomunbNUeef,activeLocale),width:\"100%\",za4dk3T_E:dU6SW_DF0munbNUeef})})})})})})})},idmunbNUeef);})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pfT9YSKyi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfT9YSKyi\"},implicitPathVariables:undefined},{href:{webPageId:\"pfT9YSKyi\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{y:(componentViewport?.y||0)+0+4302.8+20+121.2+0+472},NKaPhW_FP:{y:(componentViewport?.y||0)+0+4708.6+20+107.2+0+472}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:(componentViewport?.y||0)+0+4628.8+100+121.2+0+480,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tmruxq-container\",nodeId:\"ldHpd5t6A\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{yzRVKfC3H:resolvedLinks8[1]},NKaPhW_FP:{yzRVKfC3H:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(BUTTONPILLSHAPE,{d4AEyawJA:false,g0tpTBBMT:{borderColor:\"rgb(0, 0, 0)\",borderStyle:\"solid\",borderWidth:2},height:\"100%\",id:\"ldHpd5t6A\",layoutId:\"ldHpd5t6A\",style:{height:\"100%\"},variant:\"zUQD5x3TY\",width:\"100%\",ybFl_boEM:\"var(--token-8161e218-9bb8-44c3-aa99-57be0b031bad, rgb(0, 0, 0))\",yZkmT0i_7:\"Go to Tools\",yzRVKfC3H:resolvedLinks8[0]})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xq1va0\",\"data-framer-name\":\"SEND LINK SECTION\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+0+5092+20},NKaPhW_FP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+5473.8+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:320,width:`max(${componentViewport?.width||\"100vw\"} - 96px, 1px)`,y:(componentViewport?.y||0)+0+5476+100,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sq7l8e-container\",nodeId:\"sNfOSCw3B\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{variant:\"oOMFwOcc0\"},NKaPhW_FP:{style:{width:\"100%\"},variant:\"bODaCPcXm\"}},children:/*#__PURE__*/_jsx(SENDLINK,{height:\"100%\",id:\"sNfOSCw3B\",layoutId:\"sNfOSCw3B\",style:{height:\"100%\",width:\"100%\"},variant:\"a5E0QpJO2\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18rzc1l\",\"data-framer-name\":\"FRIENDS-ZONE\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ohdizt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-09f6a9b1-5931-4c61-ab1c-1f27e408879d, rgb(255, 57, 92))\"},children:\"Our Supporters\"})}),className:\"framer-1y7y481\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-djwa1q\",\"data-styles-preset\":\"AJ0xh6Vqz\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Friend Zone\"})}),className:\"framer-rebas\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-41fd264c-c1e8-405d-9d54-b41172a02f48, rgb(99, 103, 105))\"},children:\"Thank you for being a part of this\"})}),className:\"framer-1yr2jk\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14l679l hidden-15p9j5h\",\"data-framer-name\":\"TICKER (Desktop)\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d8tddh-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"NDYhNLRAo\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{gap:16}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:false},gap:32,height:\"100%\",hoverFactor:.7,id:\"NDYhNLRAo\",layoutId:\"NDYhNLRAo\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pezdz3-container\",\"data-framer-name\":\"DU Friends - Ayberk Kole\",inComponentSlot:true,name:\"DU Friends - Ayberk Kole\",nodeId:\"UjggpRznt\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/yN0WpZBYKO5CS9pJacrgGM9M.jpg\"},\"\"),dyHoPRdoe:\"Ayberk Kole\",height:\"100%\",id:\"UjggpRznt\",layoutId:\"UjggpRznt\",name:\"DU Friends - Ayberk Kole\",tBkUqM8U0:\"https://www.instagram.com/ayberkole/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jshhe3-container\",\"data-framer-name\":\"DU Friends - designersvane\",inComponentSlot:true,name:\"DU Friends - designersvane\",nodeId:\"G9hyhRv4j\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/K3NFkLbzvcxpfhS9jzukJjoGw.jpg\"},\"\"),dyHoPRdoe:\"designersvane\",height:\"100%\",id:\"G9hyhRv4j\",layoutId:\"G9hyhRv4j\",name:\"DU Friends - designersvane\",tBkUqM8U0:\"https://www.instagram.com/designersvane/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qvgs0g-container\",\"data-framer-name\":\"DU Friends - S\\xe9bastien\",inComponentSlot:true,name:\"DU Friends - S\\xe9bastien\",nodeId:\"FSvQxWu_3\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/bNGaXguPZzwsbjlCvJuzDgaOf4.jpg\"},\"\"),dyHoPRdoe:\"S\\xe9bastien Delerba\",height:\"100%\",id:\"FSvQxWu_3\",layoutId:\"FSvQxWu_3\",name:\"DU Friends - S\\xe9bastien\",tBkUqM8U0:\"https://www.instagram.com/seb.delerba.id/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qi724w-container\",\"data-framer-name\":\"DU Friends - PieceOfKeeb\",inComponentSlot:true,name:\"DU Friends - PieceOfKeeb\",nodeId:\"cs9QNYjNi\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/VSUyfHcKwShV2KH2WRuEwqxrSg.jpg\"},\"\"),dyHoPRdoe:\"PieceOfKeeb\",height:\"100%\",id:\"cs9QNYjNi\",layoutId:\"cs9QNYjNi\",name:\"DU Friends - PieceOfKeeb\",tBkUqM8U0:\"https://www.instagram.com/pieceofkeeb/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kamuey-container\",\"data-framer-name\":\"DU Friends - Sila\",inComponentSlot:true,name:\"DU Friends - Sila\",nodeId:\"rI10daZZA\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/Qd8e0JZ657DgXwgFpkHeNqVqE.jpg\"},\"\"),dyHoPRdoe:\"S\u0131la Tu\u0308lay Zeytin\",height:\"100%\",id:\"rI10daZZA\",layoutId:\"rI10daZZA\",name:\"DU Friends - Sila\",tBkUqM8U0:\"https://www.instagram.com/silatulayzeytin/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ap1tbr-container\",\"data-framer-name\":\"DU Friends - Shreyansh Onial\",inComponentSlot:true,name:\"DU Friends - Shreyansh Onial\",nodeId:\"OpKtbtQJr\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/9LHaZsVKvtk8ynXfb0yNQVG8pPk.jpg\"},\"\"),dyHoPRdoe:\"Shreyansh Onial\",height:\"100%\",id:\"OpKtbtQJr\",layoutId:\"OpKtbtQJr\",name:\"DU Friends - Shreyansh Onial\",tBkUqM8U0:\"https://www.instagram.com/s.o__design/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i3i2ja-container\",\"data-framer-name\":\"DU Friends - Haechan\",inComponentSlot:true,name:\"DU Friends - Haechan\",nodeId:\"lrEeWKZRz\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:276,pixelWidth:276,src:\"https://framerusercontent.com/images/3z2bqYYsGp35Pkh6r5Y86yqV9Z8.jpg\"},\"\"),dyHoPRdoe:\"Haechan Ryu\",height:\"100%\",id:\"lrEeWKZRz\",layoutId:\"lrEeWKZRz\",name:\"DU Friends - Haechan\",tBkUqM8U0:\"https://www.instagram.com/seoul_id/\",variant:\"OWAH1gpjj\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bv56hp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JT5wpkguR\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{gap:16}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:false},gap:32,height:\"100%\",hoverFactor:.7,id:\"JT5wpkguR\",layoutId:\"JT5wpkguR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nvx46z-container\",\"data-framer-name\":\"DU Friends - Gokhan Cetinkaya\",inComponentSlot:true,name:\"DU Friends - Gokhan Cetinkaya\",nodeId:\"Cjo5OZFeO\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/zLOdTf3ubNRWMeSKWPO3N5IYw8Q.jpg\"},\"\"),dyHoPRdoe:\"Go\u0308khan C\u0327etinkaya\",height:\"100%\",id:\"Cjo5OZFeO\",layoutId:\"Cjo5OZFeO\",name:\"DU Friends - Gokhan Cetinkaya\",tBkUqM8U0:\"https://www.instagram.com/gocetinkaya/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cjvfsl-container\",\"data-framer-name\":\"DU Friends - Woojin Jang\",inComponentSlot:true,name:\"DU Friends - Woojin Jang\",nodeId:\"CfN7j_7ui\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/9zFKm99mtpzwVm2YnetoZxpa9Yk.jpg\"},\"\"),dyHoPRdoe:\"Woojin Jang\",height:\"100%\",id:\"CfN7j_7ui\",layoutId:\"CfN7j_7ui\",name:\"DU Friends - Woojin Jang\",tBkUqM8U0:\"https://www.instagram.com/woojinjid/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s46o18-container\",\"data-framer-name\":\"DU Friends - Mingwan Bae\",inComponentSlot:true,name:\"DU Friends - Mingwan Bae\",nodeId:\"ySWSd5F9X\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/JKteCgI01d4AF4wTZPgfP11yWw.jpg\"},\"\"),dyHoPRdoe:\"Mingwan Bae\",height:\"100%\",id:\"ySWSd5F9X\",layoutId:\"ySWSd5F9X\",name:\"DU Friends - Mingwan Bae\",tBkUqM8U0:\"https://www.behance.net/baemingwan\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1brxp2x-container\",\"data-framer-name\":\"DU Friends - Josep\",inComponentSlot:true,name:\"DU Friends - Josep\",nodeId:\"tDLOERWPJ\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/YJWIkXlFybAuxWD2hHfYDcmGVg.jpg\"},\"\"),dyHoPRdoe:\"Josep Pedro\",height:\"100%\",id:\"tDLOERWPJ\",layoutId:\"tDLOERWPJ\",name:\"DU Friends - Josep\",tBkUqM8U0:\"https://www.instagram.com/josep_pedro/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mscqfp-container\",\"data-framer-name\":\"DU Friends - Merve\",inComponentSlot:true,name:\"DU Friends - Merve\",nodeId:\"Ykqy1EpoO\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/d4hISYzVnBd7SHkHTCiePtP4c.jpg\"},\"\"),dyHoPRdoe:\"Merve Nur So\u0308kmen\",height:\"100%\",id:\"Ykqy1EpoO\",layoutId:\"Ykqy1EpoO\",name:\"DU Friends - Merve\",tBkUqM8U0:\"https://www.instagram.com/mervenursokmen/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2rqyf-container\",\"data-framer-name\":\"DU Friends - Jasdeep\",inComponentSlot:true,name:\"DU Friends - Jasdeep\",nodeId:\"usVcYjJLU\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/SRUTMgWSe7612oprA7AxYt3ItuA.jpg\"},\"\"),dyHoPRdoe:\"Jasdeep Kular\",height:\"100%\",id:\"usVcYjJLU\",layoutId:\"usVcYjJLU\",name:\"DU Friends - Jasdeep\",tBkUqM8U0:\"https://www.instagram.com/_jk.design/\",variant:\"OWAH1gpjj\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rsnb20-container\",\"data-framer-name\":\"DU Friends - cohub\",inComponentSlot:true,name:\"DU Friends - cohub\",nodeId:\"OKvkmRfKP\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/6CoG5SsIG4xbBim6iqpA3hEbLN8.jpg\"},\"\"),dyHoPRdoe:\"cohub\",height:\"100%\",id:\"OKvkmRfKP\",layoutId:\"OKvkmRfKP\",name:\"DU Friends - cohub\",tBkUqM8U0:\"https://www.instagram.com/cohubco/\",variant:\"OWAH1gpjj\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-145zvkx hidden-1t3qd6a hidden-virfvo\",\"data-framer-name\":\"TICKER (Mobile)\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jkd8ua-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"m8b_J_0bQ\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:true},gap:16,height:\"100%\",hoverFactor:.7,id:\"m8b_J_0bQ\",layoutId:\"m8b_J_0bQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wlhe9r-container\",\"data-framer-name\":\"DU Friends - Ayberk (Mobile)\",inComponentSlot:true,name:\"DU Friends - Ayberk (Mobile)\",nodeId:\"RDnsHmrNt\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/yN0WpZBYKO5CS9pJacrgGM9M.jpg\"},\"\"),dyHoPRdoe:\"Ayberk Kole\",height:\"100%\",id:\"RDnsHmrNt\",layoutId:\"RDnsHmrNt\",name:\"DU Friends - Ayberk (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/ayberkole/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14k4o9y-container\",\"data-framer-name\":\"DU Friends - designersvane (Mobile)\",inComponentSlot:true,name:\"DU Friends - designersvane (Mobile)\",nodeId:\"nQwM2P3UK\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/K3NFkLbzvcxpfhS9jzukJjoGw.jpg\"},\"\"),dyHoPRdoe:\"designersvane\",height:\"100%\",id:\"nQwM2P3UK\",layoutId:\"nQwM2P3UK\",name:\"DU Friends - designersvane (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/designersvane/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a0ezn-container\",\"data-framer-name\":\"DU Friends - S\\xe9bastien (Mobile)\",inComponentSlot:true,name:\"DU Friends - S\\xe9bastien (Mobile)\",nodeId:\"HGH2cyQOX\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/bNGaXguPZzwsbjlCvJuzDgaOf4.jpg\"},\"\"),dyHoPRdoe:\"S\\xe9bastien Delerba\",height:\"100%\",id:\"HGH2cyQOX\",layoutId:\"HGH2cyQOX\",name:\"DU Friends - S\\xe9bastien (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/seb.delerba.id/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-116on7w-container\",\"data-framer-name\":\"DU Friends - PieceOfKeeb (Mobile)\",inComponentSlot:true,name:\"DU Friends - PieceOfKeeb (Mobile)\",nodeId:\"PTTnPoqU0\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/VSUyfHcKwShV2KH2WRuEwqxrSg.jpg\"},\"\"),dyHoPRdoe:\"PieceOfKeeb\",height:\"100%\",id:\"PTTnPoqU0\",layoutId:\"PTTnPoqU0\",name:\"DU Friends - PieceOfKeeb (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/pieceofkeeb/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5zcd8n-container\",\"data-framer-name\":\"DU Friends - Sila (Mobile)\",inComponentSlot:true,name:\"DU Friends - Sila (Mobile)\",nodeId:\"mgeLRzY3U\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/Qd8e0JZ657DgXwgFpkHeNqVqE.jpg\"},\"\"),dyHoPRdoe:\"S\u0131la Tu\u0308lay Zeytin\",height:\"100%\",id:\"mgeLRzY3U\",layoutId:\"mgeLRzY3U\",name:\"DU Friends - Sila (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/silatulayzeytin/\",variant:\"ASg48YpEC\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10osrpp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UoPi_w1Fm\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:true},gap:16,height:\"100%\",hoverFactor:.7,id:\"UoPi_w1Fm\",layoutId:\"UoPi_w1Fm\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gs3wbl-container\",\"data-framer-name\":\"DU Friends - Gokhan (Mobile)\",inComponentSlot:true,name:\"DU Friends - Gokhan (Mobile)\",nodeId:\"Y6xS3u2FK\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/zLOdTf3ubNRWMeSKWPO3N5IYw8Q.jpg\"},\"\"),dyHoPRdoe:\"Go\u0308khan C\u0327etinkaya\",height:\"100%\",id:\"Y6xS3u2FK\",layoutId:\"Y6xS3u2FK\",name:\"DU Friends - Gokhan (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/gocetinkaya/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hfej03-container\",\"data-framer-name\":\"DU Friends - Woojin Jang (Mobile)\",inComponentSlot:true,name:\"DU Friends - Woojin Jang (Mobile)\",nodeId:\"D5O0kZL9m\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/9zFKm99mtpzwVm2YnetoZxpa9Yk.jpg\"},\"\"),dyHoPRdoe:\"Woojin Jang\",height:\"100%\",id:\"D5O0kZL9m\",layoutId:\"D5O0kZL9m\",name:\"DU Friends - Woojin Jang (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/woojinjid/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lv4no9-container\",\"data-framer-name\":\"DU Friends - Mingwan Bae (Mobile)\",inComponentSlot:true,name:\"DU Friends - Mingwan Bae (Mobile)\",nodeId:\"a77tzbJWY\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/JKteCgI01d4AF4wTZPgfP11yWw.jpg\"},\"\"),dyHoPRdoe:\"Mingwan Bae\",height:\"100%\",id:\"a77tzbJWY\",layoutId:\"a77tzbJWY\",name:\"DU Friends - Mingwan Bae (Mobile)\",tBkUqM8U0:\"https://www.behance.net/baemingwan\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpddi0-container\",\"data-framer-name\":\"DU Friends - Josep (Mobile)\",inComponentSlot:true,name:\"DU Friends - Josep (Mobile)\",nodeId:\"VKmiy7iyn\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/YJWIkXlFybAuxWD2hHfYDcmGVg.jpg\"},\"\"),dyHoPRdoe:\"Josep Pedro\",height:\"100%\",id:\"VKmiy7iyn\",layoutId:\"VKmiy7iyn\",name:\"DU Friends - Josep (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/josep_pedro/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9zb9uw-container\",\"data-framer-name\":\"DU Friends - Merve (Mobile)\",inComponentSlot:true,name:\"DU Friends - Merve (Mobile)\",nodeId:\"FKFToXVO5\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/d4hISYzVnBd7SHkHTCiePtP4c.jpg\"},\"\"),dyHoPRdoe:\"Merve Nur So\u0308kmen\",height:\"100%\",id:\"FKFToXVO5\",layoutId:\"FKFToXVO5\",name:\"DU Friends - Merve (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/mervenursokmen/\",variant:\"ASg48YpEC\",width:\"100%\"})})})],speed:45,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nl55t2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zgY3uYgKR\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:30,overflow:true},gap:16,height:\"100%\",hoverFactor:.7,id:\"zgY3uYgKR\",layoutId:\"zgY3uYgKR\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bsjziq-container\",\"data-framer-name\":\"DU Friends - Shreyansh Onial (Mobile)\",inComponentSlot:true,name:\"DU Friends - Shreyansh Onial (Mobile)\",nodeId:\"b2Pg6uhuK\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/9LHaZsVKvtk8ynXfb0yNQVG8pPk.jpg\"},\"\"),dyHoPRdoe:\"Shreyansh Onial\",height:\"100%\",id:\"b2Pg6uhuK\",layoutId:\"b2Pg6uhuK\",name:\"DU Friends - Shreyansh Onial (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/p/C2HD9EpI0Oc/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vplqi7-container\",\"data-framer-name\":\"DU Friends - Haechan (Mobile)\",inComponentSlot:true,name:\"DU Friends - Haechan (Mobile)\",nodeId:\"vJmSCXjC7\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:230,pixelWidth:230,src:\"https://framerusercontent.com/images/mymcEUqn2IP4oi80URC2Yq5eXA.jpg\"},\"\"),dyHoPRdoe:\"Haechan Ryu\",height:\"100%\",id:\"vJmSCXjC7\",layoutId:\"vJmSCXjC7\",name:\"DU Friends - Haechan (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/seoul_id/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mt7uik-container\",\"data-framer-name\":\"DU Friends - cohub (Mobile)\",inComponentSlot:true,name:\"DU Friends - cohub (Mobile)\",nodeId:\"sbDIPrDtx\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/6CoG5SsIG4xbBim6iqpA3hEbLN8.jpg\"},\"\"),dyHoPRdoe:\"cohub\",height:\"100%\",id:\"sbDIPrDtx\",layoutId:\"sbDIPrDtx\",name:\"DU Friends - cohub (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/cohubco/\",variant:\"ASg48YpEC\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,children:/*#__PURE__*/_jsx(Container,{className:\"framer-el7k6d-container\",\"data-framer-name\":\"DU Friends - Jasdeep (Mobile)\",inComponentSlot:true,name:\"DU Friends - Jasdeep (Mobile)\",nodeId:\"JkLTUsnOQ\",rendersWithMotion:true,scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(DUFriends,{CXvmkQqoi:addImageAlt({pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/SRUTMgWSe7612oprA7AxYt3ItuA.jpg\"},\"\"),dyHoPRdoe:\"Jasdeep Kular\",height:\"100%\",id:\"JkLTUsnOQ\",layoutId:\"JkLTUsnOQ\",name:\"DU Friends - Jasdeep (Mobile)\",tBkUqM8U0:\"https://www.instagram.com/_jk.design/\",variant:\"ASg48YpEC\",width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15en23m\",\"data-framer-name\":\"FEEDBACK\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NKaPhW_FP:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We want to make our platform better.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tell us your honest opinions:\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"We want to make our platform better.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Tell us your honest opinions:\"})]}),className:\"framer-19pws8x\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{y:(componentViewport?.y||0)+0+6069.2+20+99.2},NKaPhW_FP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+6421+20+248}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:337,width:\"500px\",y:(componentViewport?.y||0)+0+6653.2+20+99.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1etzsfs-container\",nodeId:\"q_a0shOTS\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(FORMFEEDBACK,{height:\"100%\",id:\"q_a0shOTS\",layoutId:\"q_a0shOTS\",style:{width:\"100%\"},variant:\"ctZyh1egl\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fgwcr9\",\"data-framer-name\":\"FOOTER SECTION\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":o505c7bx7\",webPageId:\"Pe8pSGB2V\"},implicitPathVariables:undefined},{href:{hash:\":o505c7bx7\",webPageId:\"Pe8pSGB2V\"},implicitPathVariables:undefined},{href:{hash:\":o505c7bx7\",webPageId:\"Pe8pSGB2V\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+6645.4+20+0},NKaPhW_FP:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`,y:(componentViewport?.y||0)+0+7146+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:554,width:`calc(${componentViewport?.width||\"100vw\"} - 96px)`,y:(componentViewport?.y||0)+0+7229.4+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14lrsto-container\",nodeId:\"QZ8DHNIIw\",scopeId:\"Pe8pSGB2V\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{M3O4iu7ea:{variant:\"jzJDge4ru\",yYdo23NSV:resolvedLinks9[1]},NKaPhW_FP:{variant:\"NDIoHvtWV\",yYdo23NSV:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(FOOTERV2,{height:\"100%\",id:\"QZ8DHNIIw\",layoutId:\"QZ8DHNIIw\",style:{width:\"100%\"},variant:\"eWZlLqEcB\",width:\"100%\",yYdo23NSV:resolvedLinks9[0]})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qAyCr.framer-ho3wi2, .framer-qAyCr .framer-ho3wi2 { display: block; }\",\".framer-qAyCr.framer-1t3qd6a { align-content: center; align-items: center; background-color: var(--token-efabe322-7c67-4a0d-9e08-37540aa0f495, #161717); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-qAyCr .framer-vott9p-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 3; }\",\".framer-qAyCr .framer-1plunwf { 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: visible; padding: 240px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-fc4vau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 88px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qAyCr .framer-tnmwwc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-qAyCr .framer-16cin2p, .framer-qAyCr .framer-1aykn09 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-1hucgme { 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: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-e0h5zs, .framer-qAyCr .framer-5ef1jk, .framer-qAyCr .framer-92rfpr, .framer-qAyCr .framer-1a1xej9, .framer-qAyCr .framer-1s8h5ux, .framer-qAyCr .framer-1l7m6y6, .framer-qAyCr .framer-p7d22l, .framer-qAyCr .framer-le7dcm, .framer-qAyCr .framer-188kyie, .framer-qAyCr .framer-1r7904d, .framer-qAyCr .framer-1yhm5za, .framer-qAyCr .framer-5onekk, .framer-qAyCr .framer-1y7y481, .framer-qAyCr .framer-rebas, .framer-qAyCr .framer-1yr2jk, .framer-qAyCr .framer-19pws8x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-qAyCr .framer-v5j0h7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 430px; }\",\".framer-qAyCr .framer-1hnvpfz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-qAyCr .framer-1c6jqlq { --framer-input-background: #2c2d2e; --framer-input-border-radius-bottom-left: 999px; --framer-input-border-radius-bottom-right: 999px; --framer-input-border-radius-top-left: 999px; --framer-input-border-radius-top-right: 999px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-color: #ffffff; --framer-input-font-family: \"Satoshi\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 500; --framer-input-icon-color: #999999; --framer-input-padding: 24px; --framer-input-placeholder-color: #787d80; flex: none; height: 54px; position: relative; width: 100%; }',\".framer-qAyCr .framer-jvdnek-container { flex: none; height: 54px; position: relative; width: 135px; }\",\".framer-qAyCr .framer-yu2rl8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-qAyCr .framer-85w9pq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: visible; padding: 0px 5px 0px 27px; position: relative; width: min-content; }\",\".framer-qAyCr .framer-uz70wv { flex: none; height: 32px; overflow: visible; position: relative; width: 1px; }\",\".framer-qAyCr .framer-1x1jrbn { border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; box-shadow: 0px 0px 0px 2px var(--token-efabe322-7c67-4a0d-9e08-37540aa0f495, #161717); flex: none; height: 32px; left: calc(-500% - 32px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-qAyCr .framer-1b5b9au { flex: none; height: 32px; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-qAyCr .framer-1ru073d { border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; box-shadow: 0px 0px 0px 2px var(--token-efabe322-7c67-4a0d-9e08-37540aa0f495, #161717); flex: none; height: 32px; left: -31px; overflow: hidden; position: absolute; right: 0px; top: calc(50.00000000000002% - 32px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-qAyCr .framer-au62d6 { flex: none; height: 32px; overflow: visible; position: relative; width: 1px; z-index: 2; }\",\".framer-qAyCr .framer-14f4f0b { border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; box-shadow: 0px 0px 0px 2px var(--token-efabe322-7c67-4a0d-9e08-37540aa0f495, #161717); flex: none; height: 32px; left: -40px; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 33px; will-change: var(--framer-will-change-override, transform); }\",\".framer-qAyCr .framer-56xpln { 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: 40px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1nco3ew-container { aspect-ratio: 1.5319148936170213 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 470px); max-height: 800px; position: relative; width: 60%; }\",\".framer-qAyCr .framer-w6pl9a-container, .framer-qAyCr .framer-11yg2oa-container, .framer-qAyCr .framer-1t4iu5y-container, .framer-qAyCr .framer-37khwe-container, .framer-qAyCr .framer-lhy3yb-container, .framer-qAyCr .framer-15u166u-container, .framer-qAyCr .framer-146hxug-container, .framer-qAyCr .framer-6xf9ky-container { height: 440px; position: relative; width: 720px; }\",\".framer-qAyCr .framer-jqq1ko-container { aspect-ratio: 0.9944444444444445 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 0px); max-height: 560px; max-width: 100%; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1sjby32-container, .framer-qAyCr .framer-ezhaxk-container, .framer-qAyCr .framer-wrcbt5-container, .framer-qAyCr .framer-wgn1kc-container, .framer-qAyCr .framer-1hkaq4c-container, .framer-qAyCr .framer-xee1r3-container, .framer-qAyCr .framer-gdiu20-container, .framer-qAyCr .framer-4cmt85-container { height: auto; position: relative; width: 340px; }\",\".framer-qAyCr .framer-5bpx27 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 100px 48px 100px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1h93te8, .framer-qAyCr .framer-d40t7f, .framer-qAyCr .framer-uodu95, .framer-qAyCr .framer-nui6b2, .framer-qAyCr .framer-4w0fu9, .framer-qAyCr .framer-1ohdizt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 252px; }\",\".framer-qAyCr .framer-ykydkh, .framer-qAyCr .framer-5ezkar { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-qhvmos { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-16z13xz-container { align-self: start; flex: none; height: 50%; justify-self: start; min-height: 100%; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-1ib2gxx-container, .framer-qAyCr .framer-ixh6il-container, .framer-qAyCr .framer-w7yb1u-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-qAyCr .framer-1yvdch6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 48px 100px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1m5z90d-container, .framer-qAyCr .framer-1sq7l8e-container { flex: 1 0 0px; height: 320px; position: relative; width: 1px; }\",\".framer-qAyCr .framer-1soyydw, .framer-qAyCr .framer-1wo18y4 { 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; overflow: hidden; padding: 100px 48px 100px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-d955p2 { 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: 100%; }\",\".framer-qAyCr .framer-b2e5vl { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: auto; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-qAyCr .framer-1hkyat8-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-qAyCr .framer-qxav6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1aearlp { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-qAyCr .framer-d04jrk-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-qAyCr .framer-azxtnz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1thjwoo { flex: none; height: 360px; overflow: hidden; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1xw5akt-container { bottom: 0px; flex: none; position: absolute; right: -1px; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-njouzo-container, .framer-qAyCr .framer-1311a9p-container, .framer-qAyCr .framer-1oacynz-container, .framer-qAyCr .framer-1akqpl5-container, .framer-qAyCr .framer-59ui0h-container, .framer-qAyCr .framer-1fmimcb-container, .framer-qAyCr .framer-8f7wrq-container, .framer-qAyCr .framer-yc5m7c-container, .framer-qAyCr .framer-1pezdz3-container, .framer-qAyCr .framer-1jshhe3-container, .framer-qAyCr .framer-qvgs0g-container, .framer-qAyCr .framer-1qi724w-container, .framer-qAyCr .framer-1kamuey-container, .framer-qAyCr .framer-1ap1tbr-container, .framer-qAyCr .framer-1i3i2ja-container, .framer-qAyCr .framer-nvx46z-container, .framer-qAyCr .framer-1cjvfsl-container, .framer-qAyCr .framer-1s46o18-container, .framer-qAyCr .framer-1brxp2x-container, .framer-qAyCr .framer-mscqfp-container, .framer-qAyCr .framer-t2rqyf-container, .framer-qAyCr .framer-1rsnb20-container, .framer-qAyCr .framer-wlhe9r-container, .framer-qAyCr .framer-14k4o9y-container, .framer-qAyCr .framer-9a0ezn-container, .framer-qAyCr .framer-116on7w-container, .framer-qAyCr .framer-5zcd8n-container, .framer-qAyCr .framer-1gs3wbl-container, .framer-qAyCr .framer-hfej03-container, .framer-qAyCr .framer-1lv4no9-container, .framer-qAyCr .framer-zpddi0-container, .framer-qAyCr .framer-9zb9uw-container, .framer-qAyCr .framer-1bsjziq-container, .framer-qAyCr .framer-1vplqi7-container, .framer-qAyCr .framer-mt7uik-container, .framer-qAyCr .framer-el7k6d-container { height: auto; position: relative; width: auto; }\",\".framer-qAyCr .framer-11ymlw0-container { bottom: -10px; flex: none; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: -10px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-r18ujp-container, .framer-qAyCr .framer-9qa2xn-container, .framer-qAyCr .framer-1h0imsr-container, .framer-qAyCr .framer-1xxg2lg-container, .framer-qAyCr .framer-e3fmob-container, .framer-qAyCr .framer-11uxjwa-container, .framer-qAyCr .framer-8gcoi-container, .framer-qAyCr .framer-1az7bp-container { height: 360px; position: relative; width: 210px; }\",\".framer-qAyCr .framer-1be7s1r { background-color: rgba(26, 26, 26, 0.8); bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); opacity: 0; overflow: hidden; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-1gjpvl8-container { flex: none; height: 80px; left: 50%; position: absolute; top: 52%; transform: translate(-50%, -50%); width: auto; }\",\".framer-qAyCr .framer-1p1mq16 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 48px 100px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-9jnomr { align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-18s2xui { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-100n9x3-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-qAyCr .framer-tmruxq-container { flex: none; height: 46px; position: relative; width: auto; }\",\".framer-qAyCr .framer-1xq1va0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 48px 160px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-18rzc1l { 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; overflow: hidden; padding: 80px 0px 180px 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-14l679l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1d8tddh-container, .framer-qAyCr .framer-1bv56hp-container, .framer-qAyCr .framer-1jkd8ua-container, .framer-qAyCr .framer-10osrpp-container, .framer-qAyCr .framer-1nl55t2-container { flex: none; height: 90px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-145zvkx { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-15en23m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 48px 120px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-1etzsfs-container { flex: none; height: auto; position: relative; width: 500px; }\",\".framer-qAyCr .framer-fgwcr9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 48px 0px 48px; position: relative; width: 100%; }\",\".framer-qAyCr .framer-14lrsto-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-qAyCr.framer-1t3qd6a { width: 810px; } .framer-qAyCr .framer-1plunwf { padding: 180px 0px 120px 0px; } .framer-qAyCr .framer-tnmwwc { gap: 80px; } .framer-qAyCr .framer-56xpln { padding: 40px 32px 120px 32px; } .framer-qAyCr .framer-1nco3ew-container { height: var(--framer-aspect-ratio-supported, 487px); width: 100%; } .framer-qAyCr .framer-5bpx27 { padding: 20px 32px 110px 32px; } .framer-qAyCr .framer-qhvmos { gap: 16px; grid-template-columns: repeat(3, minmax(200px, 1fr)); } .framer-qAyCr .framer-1yvdch6, .framer-qAyCr .framer-1p1mq16 { padding: 20px 32px 130px 32px; } .framer-qAyCr .framer-1soyydw, .framer-qAyCr .framer-1wo18y4, .framer-qAyCr .framer-1xq1va0, .framer-qAyCr .framer-15en23m { padding: 20px 32px 120px 32px; } .framer-qAyCr .framer-b2e5vl { gap: 16px; } .framer-qAyCr .framer-1aearlp, .framer-qAyCr .framer-18s2xui { gap: 16px; grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-qAyCr .framer-d04jrk-container { height: 49%; min-height: 100%; } .framer-qAyCr .framer-azxtnz { padding: 20px 0px 120px 0px; } .framer-qAyCr .framer-1thjwoo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; padding: 0px; } .framer-qAyCr .framer-1xw5akt-container { bottom: unset; height: 310px; position: relative; right: unset; top: unset; } .framer-qAyCr .framer-1be7s1r { align-content: center; align-items: center; background-color: unset; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; opacity: unset; padding: 0px; position: relative; top: unset; width: min-content; z-index: 3; } .framer-qAyCr .framer-1gjpvl8-container { height: auto; left: unset; position: relative; top: unset; transform: unset; z-index: 1; } .framer-qAyCr .framer-18rzc1l { padding: 20px 0px 160px 0px; } .framer-qAyCr .framer-fgwcr9 { padding: 20px 32px 0px 32px; }}\",\"@media (max-width: 809px) { .framer-qAyCr.framer-1t3qd6a { width: 390px; } .framer-qAyCr .framer-1plunwf { padding: 140px 16px 80px 16px; } .framer-qAyCr .framer-fc4vau { gap: 70px; order: 0; width: 100%; } .framer-qAyCr .framer-tnmwwc { gap: 48px; width: 100%; } .framer-qAyCr .framer-1aykn09, .framer-qAyCr .framer-19pws8x { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-qAyCr .framer-1hucgme, .framer-qAyCr .framer-uodu95, .framer-qAyCr .framer-1etzsfs-container { width: 100%; } .framer-qAyCr .framer-v5j0h7 { max-width: 430px; width: 100%; } .framer-qAyCr .framer-56xpln { gap: 0px; padding: 20px 16px 120px 16px; } .framer-qAyCr .framer-jqq1ko-container { order: 1; } .framer-qAyCr .framer-5bpx27, .framer-qAyCr .framer-1soyydw, .framer-qAyCr .framer-1wo18y4, .framer-qAyCr .framer-15en23m { padding: 20px 16px 120px 16px; } .framer-qAyCr .framer-qhvmos { gap: 10px; grid-template-columns: repeat(2, minmax(160px, 1fr)); } .framer-qAyCr .framer-1yvdch6, .framer-qAyCr .framer-1xq1va0 { flex-direction: column; padding: 20px 16px 120px 16px; } .framer-qAyCr .framer-1m5z90d-container, .framer-qAyCr .framer-1hkyat8-container, .framer-qAyCr .framer-1sq7l8e-container { flex: none; height: auto; width: 100%; } .framer-qAyCr .framer-b2e5vl { align-self: unset; flex-direction: column; gap: 16px; height: min-content; } .framer-qAyCr .framer-1aearlp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; justify-content: flex-start; } .framer-qAyCr .framer-d04jrk-container { align-self: unset; height: auto; will-change: unset; } .framer-qAyCr .framer-azxtnz { gap: 36px; padding: 20px 0px 120px 0px; } .framer-qAyCr .framer-1thjwoo { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; padding: 0px; } .framer-qAyCr .framer-1xw5akt-container { bottom: unset; height: 310px; position: relative; right: unset; top: unset; } .framer-qAyCr .framer-1be7s1r { align-content: center; align-items: center; background-color: unset; bottom: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: unset; opacity: unset; padding: 0px; position: relative; top: unset; width: min-content; will-change: unset; } .framer-qAyCr .framer-1gjpvl8-container { height: auto; left: unset; position: relative; top: unset; transform: unset; } .framer-qAyCr .framer-1p1mq16 { gap: 36px; padding: 20px 16px 120px 16px; } .framer-qAyCr .framer-18s2xui { gap: 16px; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-qAyCr .framer-100n9x3-container { height: auto; } .framer-qAyCr .framer-18rzc1l { gap: 36px; padding: 20px 0px 180px 0px; } .framer-qAyCr .framer-1jkd8ua-container, .framer-qAyCr .framer-10osrpp-container, .framer-qAyCr .framer-1nl55t2-container { height: 48px; } .framer-qAyCr .framer-fgwcr9 { padding: 20px 16px 0px 16px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 9028.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M3O4iu7ea\":{\"layout\":[\"fixed\",\"auto\"]},\"NKaPhW_FP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"oyzbUtRqE\":{\"pattern\":\":oyzbUtRqE\",\"name\":\"nav-bar\"},\"w5HCNyigs\":{\"pattern\":\":w5HCNyigs\",\"name\":\"hero-section\"},\"o505c7bx7\":{\"pattern\":\":o505c7bx7\",\"name\":\"hero-welcome\"},\"rh_e80prg\":{\"pattern\":\":rh_e80prg\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FramerPe8pSGB2V=withCSS(Component,css,\"framer-qAyCr\");export default FramerPe8pSGB2V;FramerPe8pSGB2V.displayName=\"Home\";FramerPe8pSGB2V.defaultProps={height:9028.5,width:1200};addFonts(FramerPe8pSGB2V,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{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\"}]},...NAVBARFonts,...Button2Fonts,...SLIDESHOWFLEX2VideoFonts,...SLIDESHOWNewsFonts,...SLIDESHOWDesignTVFonts,...SLIDESHOWProjectsV2Fonts,...SLIDESHOWDesignTV2Fonts,...SLIDESHOWNews2Fonts,...SLIDESHOWToolboxFonts,...SLIDESHOWFLEXFonts,...SlideshowFonts,...CARDFEATUREDPROJECTSFonts,...BUTTONPILLSHAPEFonts,...SUBMITPROJECTFonts,...CARDDESIGNTVFonts,...CARDNEWSFonts,...CARDDIRECTORYFonts,...TickerFonts,...CARDTOOLBOXV2Fonts,...SENDLINKFonts,...DUFriendsFonts,...FORMFEEDBACKFonts,...FOOTERV2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPe8pSGB2V\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M3O4iu7ea\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NKaPhW_FP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"oyzbUtRqE\\\":{\\\"pattern\\\":\\\":oyzbUtRqE\\\",\\\"name\\\":\\\"nav-bar\\\"},\\\"w5HCNyigs\\\":{\\\"pattern\\\":\\\":w5HCNyigs\\\",\\\"name\\\":\\\"hero-section\\\"},\\\"o505c7bx7\\\":{\\\"pattern\\\":\\\":o505c7bx7\\\",\\\"name\\\":\\\"hero-welcome\\\"},\\\"rh_e80prg\\\":{\\\"pattern\\\":\\\":rh_e80prg\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"9028.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,E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AG,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GA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AAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,G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AAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,IAAI,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EAAE,GAAG,GAAG,EAAE,EAAE,KAAK,IAAI,GAAG,KAAK,IAAI,IAAIA,GAAmB,QAAQ,KAAK,EAAE,GAAG,CAAC,EAAE,EAAE,EA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",
  "names": ["isBrowser", "usePageVisibility", "isVisible", "setIsVisible", "ye", "ue", "onVisibilityChange", "OPACITY_0", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "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", "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", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "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", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "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", "setDelta", "delta", "setPage", "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", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ZFmCrk_ElmUfUURPHL", "I6VviQuE_mUfUURPHL", "cFGzv_mX9mUfUURPHL", "idmUfUURPHL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "cx", "serializationHash", "addPropertyOverrides", "ChildrenCanSuspend", "lsl3HAWzJ_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "u", "Image2", "getLoadingLazyAtYPosition", "toResponsiveImage", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Iyyz1tCfN_default", "css", "FramerDFQQNLKex", "withCSS", "DFQQNLKex_default", "addPropertyControls", "ControlType", "addFonts", "BUTTONPILLSHAPEFonts", "getFontsFromSharedStyle", "fonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "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", "WSV1gUwIucXJut9OYo", "xKC0TznbrcXJut9OYo", "idcXJut9OYo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "transition1", "u", "addPropertyOverrides", "ChildrenCanSuspend", "OrRW57wq3_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "Image2", "getLoadingLazyAtYPosition", "toResponsiveImage", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "Iyyz1tCfN_default", "css", "FramerEDyObvRJ1", "withCSS", "EDyObvRJ1_default", "addPropertyControls", "ControlType", "addFonts", "BUTTONPILLSHAPEFonts", "getFontsFromSharedStyle", "fonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerIKmwBW2_x", "withCSS", "IKmwBW2_x_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "nikDhfeo_c3Vg7AuAf", "t95wztpJ7c3Vg7AuAf", "EuknzN5mfc3Vg7AuAf", "idc3Vg7AuAf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "jkyBVd92T_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "u", "Image2", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "Framerisc7OfMv_", "withCSS", "isc7OfMv_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "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", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerK1DyoYtXW", "withCSS", "K1DyoYtXW_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "name1", "profilePicture", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CXvmkQqoi", "dyHoPRdoe", "tBkUqM8U0", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "Image2", "RichText2", "SVG", "css", "Framerny10ibks3", "withCSS", "ny10ibks3_default", "addPropertyControls", "ControlType", "addFonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "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", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "ZFmCrk_Elt5pTiT7a6", "I6VviQuE_t5pTiT7a6", "cFGzv_mX9t5pTiT7a6", "idt5pTiT7a6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "cx", "serializationHash", "addPropertyOverrides", "ChildrenCanSuspend", "lsl3HAWzJ_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "u", "Image2", "getLoadingLazyAtYPosition", "toResponsiveImage", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Iyyz1tCfN_default", "css", "FramerVozXPD5Y3", "withCSS", "VozXPD5Y3_default", "addPropertyControls", "ControlType", "addFonts", "BUTTONPILLSHAPEFonts", "getFontsFromSharedStyle", "fonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "nikDhfeo_kkBvVx2FP", "t95wztpJ7kkBvVx2FP", "EuknzN5mfkkBvVx2FP", "idkkBvVx2FP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "transition1", "cx", "serializationHash", "addPropertyOverrides", "ChildrenCanSuspend", "QueryData", "jkyBVd92T_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "u", "Image2", "toResponsiveImage", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Iyyz1tCfN_default", "css", "Framerw_xokDaHo", "withCSS", "w_xokDaHo_default", "addPropertyControls", "ControlType", "addFonts", "BUTTONPILLSHAPEFonts", "getFontsFromSharedStyle", "fonts", "ButtonFonts", "getFonts", "UbNEed3Bl_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSuccess1o769tw", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "FormContainer", "cx", "formState", "u", "l", "RichText2", "FormPlainTextInput2", "ComponentViewportProvider", "css", "Framerx_FYmvj_B", "withCSS", "x_FYmvj_B_default", "addPropertyControls", "ControlType", "addFonts", "BUTTONPILLSHAPEFonts", "getFonts", "Iyyz1tCfN_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "prefix", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LVRhACTcKimrdqbr54", "dU6SW_DF0imrdqbr54", "wbo9zYCMvimrdqbr54", "idimrdqbr54", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "IfuVSXbML_default", "collection", "paginationInfo", "loadMore", "l", "i", "textContent", "PathVariablesContext", "u", "Image2", "RichText2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FrameryQr1dbEq5", "withCSS", "yQr1dbEq5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NAVBARFonts", "getFonts", "G2GFIpBAb_default", "NAVBARWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "withFX", "Container", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "Button2Fonts", "p1DhgLJdt_default", "MotionDivWithOptimizedAppearEffect", "motion", "SLIDESHOWFLEX2VideoFonts", "K1DyoYtXW_default", "SLIDESHOWNewsFonts", "w_xokDaHo_default", "SLIDESHOWDesignTVFonts", "VozXPD5Y3_default", "SLIDESHOWProjectsV2Fonts", "EDyObvRJ1_default", "SLIDESHOWDesignTV2Fonts", "DFQQNLKex_default", "SLIDESHOWNews2Fonts", "isc7OfMv_default", "SLIDESHOWToolboxFonts", "yQr1dbEq5_default", "SLIDESHOWFLEXFonts", "IKmwBW2_x_default", "SlideshowFonts", "Slideshow", "CARDFEATUREDPROJECTSFonts", "AttijZ_mZ_default", "MotionDivWithFX", "BUTTONPILLSHAPEFonts", "Iyyz1tCfN_default", "SUBMITPROJECTFonts", "i0I_3flEf_default", "CARDDESIGNTVFonts", "chYjrF8yh_default", "CARDNEWSFonts", "MUsc2Salq_default", "CARDDIRECTORYFonts", "gmuPgdYfe_default", "TickerFonts", "Ticker", "CARDTOOLBOXV2Fonts", "yuTsAgR1b_default", "SENDLINKFonts", "YYA9LDnBH_default", "DUFriendsFonts", "ny10ibks3_default", "FORMFEEDBACKFonts", "x_FYmvj_B_default", "FOOTERV2Fonts", "rGWmbjGM7_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "transition4", "textEffect", "transition5", "animation5", "animation6", "formVariants", "form", "variants", "currentVariant", "animation7", "transition6", "animation8", "animation9", "transition7", "animation10", "transition8", "animation11", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "convertFromEnum", "activeLocale", "animation12", "animation13", "transition9", "animation14", "transition10", "animation15", "addImageAlt", "image", "alt", "animation16", "animation17", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "AYS4_sRzUCZhZ20X73", "xKC0TznbrCZhZ20X73", "WSV1gUwIuCZhZ20X73", "OLgFBWfQCCZhZ20X73", "k2NufVIK7CZhZ20X73", "cHiqEqLYQCZhZ20X73", "SGD5XLjbvCZhZ20X73", "idCZhZ20X73", "L2g6ClzhcRdQZoISxS", "I6VviQuE_RdQZoISxS", "Ppkex77mkRdQZoISxS", "fmnqEYVkgRdQZoISxS", "s8ENooHSARdQZoISxS", "tOck9xuYKRdQZoISxS", "sdUf9uPRlRdQZoISxS", "j8nLSNXRORdQZoISxS", "cFGzv_mX9RdQZoISxS", "vPeE5Ed1hRdQZoISxS", "idRdQZoISxS", "GCXrOa05YJ6hHp7GV0", "K_UVVzlZVJ6hHp7GV0", "EuknzN5mfJ6hHp7GV0", "nikDhfeo_J6hHp7GV0", "t95wztpJ7J6hHp7GV0", "OLAgUYmV7J6hHp7GV0", "JFbSteNURJ6hHp7GV0", "WIYmADrH3J6hHp7GV0", "idJ6hHp7GV0", "SbpKEghqGmunbNUeef", "j70g86dKbmunbNUeef", "LVRhACTcKmunbNUeef", "dU6SW_DF0munbNUeef", "Y0y6XbeLkmunbNUeef", "mjPRNcqBomunbNUeef", "betWjP4K9munbNUeef", "KZS0MV6tcmunbNUeef", "wbo9zYCMvmunbNUeef", "vQWTRjZRLmunbNUeef", "idmunbNUeef", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "elementId3", "ref4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "FormContainer", "formState", "l", "FormPlainTextInput2", "getLoadingLazyAtYPosition", "Image2", "ChildrenCanSuspend", "OrRW57wq3_default", "collection", "paginationInfo", "loadMore", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "lsl3HAWzJ_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks2", "resolvedLinks3", "jkyBVd92T_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "IfuVSXbML_default", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks7", "enumToDisplayNameFunctions", "resolvedLinks8", "resolvedLinks9", "css", "FramerPe8pSGB2V", "withCSS", "Pe8pSGB2V_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
