{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js", "ssg:https://framerusercontent.com/modules/2sJgmB6Tr3PyhvI9JHeX/fTJJTponHN5uhkr0BRv1/u16YOZg2E-0.js", "ssg:https://framerusercontent.com/modules/2sJgmB6Tr3PyhvI9JHeX/fTJJTponHN5uhkr0BRv1/u16YOZg2E.js", "ssg:https://framerusercontent.com/modules/sxrizgmzQ3WfYvHq4eSC/DZI2KybP9x6F8rNmMXY0/mSbVEpG7j.js", "ssg:https://framerusercontent.com/modules/Q2DnUVDHKjao875Kjo9G/aip6x0235gN5ffq3XEvE/gxtz5Ndj5-0.js", "ssg:https://framerusercontent.com/modules/Q2DnUVDHKjao875Kjo9G/aip6x0235gN5ffq3XEvE/gxtz5Ndj5-1.js", "ssg:https://framerusercontent.com/modules/Q2DnUVDHKjao875Kjo9G/aip6x0235gN5ffq3XEvE/gxtz5Ndj5.js", "ssg:https://framerusercontent.com/modules/UVVrJlPRFmJnTulv6oQm/2qztyVEtc6jmPP0wqjbK/XyNQJ6Lm7-0.js", "ssg:https://framerusercontent.com/modules/UVVrJlPRFmJnTulv6oQm/2qztyVEtc6jmPP0wqjbK/XyNQJ6Lm7-1.js", "ssg:https://framerusercontent.com/modules/UVVrJlPRFmJnTulv6oQm/2qztyVEtc6jmPP0wqjbK/XyNQJ6Lm7.js", "ssg:https://framerusercontent.com/modules/vi9A1eqhP8t7aavNaNF1/JOKsJNpPyAUTm17iju2J/u16YOZg2E.js", "ssg:https://framerusercontent.com/modules/pJL4ek4FpgdIsaJJ0FO0/soUYg8TeWHRZAk4D06gL/WYK1LwUtG.js", "ssg:https://framerusercontent.com/modules/qH0kqIhmEtPgKW7E1Agn/fIqaKWY7L6lSSSbq7Lhm/WYK1LwUtG.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/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;/**\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=>/*#__PURE__*/createRef());},[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(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.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     */let 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     * */let 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.onChange(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;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let 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\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=\"Produit\";export const v1=\"Collecter les retours utilisateurs sur le moment\";export const v2=\"Satisfaction\";export const v3=\"Mesurer la satisfaction de vos utilisateurs sur votre produit.\";export const v4=\"G\\xe9n\\xe9ration de leads\";export const v5=\"Obtenez plus leads gr\\xe2ce aux formulaires Told\";export const v6=\"R\\xe9tention\";export const v7=\"Comprenez vos clients pour am\\xe9liorer leur fid\\xe9lit\\xe9\";export const v8=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Produit\"})});export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.5px\"},children:\"Collecter les retours des utilisateurs en temps r\\xe9el\"})});export const v10=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\"},children:\"Collecter les retours des utilisateurs pour orienter plus pr\\xe9cisemment votre roadmap produit.\"})});export const v11=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Satisfaction\"})});export const v12=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.5px\"},children:\"Mesurer la satisfaction de vos utilisateurs et employ\\xe9s\"})});export const v13=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Mesurez votre NPS, CSAT et d'autres KPI pour garder un \u0153il ferm\\xe9 sur votre satisfaction.\"})});export const v14=\"Une personne lisant un e-mail contenant un lien d'enqu\\xeate\";export const v15=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"G\\xe9n\\xe9ration de leads\"})});export const v16=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:\"Ne laissez plus jamais un lead vous \\xe9chapper : affichez un Told\"})});export const v17=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Gr\\xe2ce aux d\\xe9clencheurs no-code, d\\xe9ployez instantan\\xe9ment des formulaire sur votre site, pour maximiser la g\\xe9n\\xe9ration de leads.\"})});export const v18=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"R\\xe9tention\"})});export const v19=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:\"Vous ignorez pourquoi vos clients partent ? Demandez-leur directement.\"})});export const v20=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"En cr\\xe9ant un simple questionnaire lors du d\\xe9sabonnement de vos utilisateurs, vous pouvez r\\xe9duire le taux de churn de jusqu'\\xe0 40%.\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v18\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v20\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v19\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (3bc9980)\nimport*as localizedValues from\"./u16YOZg2E-0.js\";const valuesByLocaleId={hfMsFxwrH:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (78a4586)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as localizedValues from\"./mSbVEpG7j-0.js\";const cycleOrder=[\"IX9eJrEVN\",\"KqXFBmWEd\"];const serializationHash=\"framer-A30e2\";const variantClassNames={IX9eJrEVN:\"framer-v-p5eb1n\",KqXFBmWEd:\"framer-v-1kbnyl5\"};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 valuesByLocaleId={hfMsFxwrH:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={delay:0,duration:5,ease:[0,0,1,1],type:\"tween\"};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={\"0%\":\"IX9eJrEVN\",\"100%\":\"KqXFBmWEd\"};const getProps=({background,backgroundBar,height,id,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,LeuAJ7c7f:(_ref=background!==null&&background!==void 0?background:props.LeuAJ7c7f)!==null&&_ref!==void 0?_ref:\"var(--token-42c9468a-c8d1-48ac-9b05-24245bfe26ee, rgb(234, 237, 240))\",UUNVXcH8i:(_ref1=backgroundBar!==null&&backgroundBar!==void 0?backgroundBar:props.UUNVXcH8i)!==null&&_ref1!==void 0?_ref1:\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"IX9eJrEVN\"};};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,LeuAJ7c7f,UUNVXcH8i,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IX9eJrEVN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-p5eb1n\",className,classNames),\"data-framer-name\":\"0%\",layoutDependency:layoutDependency,layoutId:\"IX9eJrEVN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:LeuAJ7c7f,...style},...addPropertyOverrides({KqXFBmWEd:{\"data-framer-name\":\"100%\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14kwm6o\",\"data-framer-name\":\"Bar\",layoutDependency:layoutDependency,layoutId:\"IWc1NJBGZ\",style:{backgroundColor:UUNVXcH8i}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A30e2.framer-zq905f, .framer-A30e2 .framer-zq905f { display: block; }\",\".framer-A30e2.framer-p5eb1n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 2px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 314px; }\",\".framer-A30e2 .framer-14kwm6o { flex: none; height: 100%; position: relative; width: 0%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A30e2.framer-p5eb1n { gap: 0px; } .framer-A30e2.framer-p5eb1n > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-A30e2.framer-p5eb1n > :first-child { margin-left: 0px; } .framer-A30e2.framer-p5eb1n > :last-child { margin-right: 0px; } }\",\".framer-A30e2.framer-v-1kbnyl5 .framer-14kwm6o { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2\n * @framerIntrinsicWidth 314\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"KqXFBmWEd\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LeuAJ7c7f\":\"background\",\"UUNVXcH8i\":\"backgroundBar\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramermSbVEpG7j=withCSS(Component,css,\"framer-A30e2\");export default FramermSbVEpG7j;FramermSbVEpG7j.displayName=\"Atoms/ProgressBar\";FramermSbVEpG7j.defaultProps={height:2,width:314};addPropertyControls(FramermSbVEpG7j,{variant:{options:[\"IX9eJrEVN\",\"KqXFBmWEd\"],optionTitles:[\"0%\",\"100%\"],title:\"Variant\",type:ControlType.Enum},LeuAJ7c7f:{defaultValue:'var(--token-42c9468a-c8d1-48ac-9b05-24245bfe26ee, rgb(234, 237, 240)) /* {\"name\":\"grey/100\"} */',title:\"Background\",type:ControlType.Color},UUNVXcH8i:{defaultValue:'var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)) /* {\"name\":\"grey/1000\"} */',title:\"Background Bar\",type:ControlType.Color}});addFonts(FramermSbVEpG7j,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramermSbVEpG7j\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KqXFBmWEd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"314\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"LeuAJ7c7f\\\":\\\"background\\\",\\\"UUNVXcH8i\\\":\\\"backgroundBar\\\"}\",\"framerIntrinsicHeight\":\"2\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./mSbVEpG7j.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AtomsProgressBar from\"https://framerusercontent.com/modules/sxrizgmzQ3WfYvHq4eSC/DZI2KybP9x6F8rNmMXY0/mSbVEpG7j.js\";import*as localizedValues from\"./gxtz5Ndj5-0.js\";import*as localizedValues1 from\"./gxtz5Ndj5-1.js\";const AtomsProgressBarFonts=getFonts(AtomsProgressBar);const cycleOrder=[\"Xb1gs_LMf\",\"vFbSlbjtH\",\"liX3nB9SN\"];const serializationHash=\"framer-WjWZc\";const variantClassNames={liX3nB9SN:\"framer-v-17ot66n\",vFbSlbjtH:\"framer-v-wwtjgy\",Xb1gs_LMf:\"framer-v-a68ux2\"};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 valuesByLocaleId={hfMsFxwrH:localizedValues,z7ourZ3ou:localizedValues1};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={delay:0,duration:5,ease:[0,0,1,1],type:\"tween\"};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={\"Active 0%\":\"Xb1gs_LMf\",\"Active 100%\":\"vFbSlbjtH\",Disabled:\"liX3nB9SN\"};const getProps=({activeIcon,click,description,disableIcon,height,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3,_ref4;return{...props,E8F7acgpr:click!==null&&click!==void 0?click:props.E8F7acgpr,ERT0mtFse:(_ref=activeIcon!==null&&activeIcon!==void 0?activeIcon:props.ERT0mtFse)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/P7zmezPathXdDkf11p70cypEGg4.svg\"},IBJXwxVNI:(_ref1=description!==null&&description!==void 0?description:props.IBJXwxVNI)!==null&&_ref1!==void 0?_ref1:\"Collect user feedback in the moment\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"Xb1gs_LMf\",X4HddnvAE:(_ref3=title!==null&&title!==void 0?title:props.X4HddnvAE)!==null&&_ref3!==void 0?_ref3:\"Product\",Xs_ArzY7H:(_ref4=disableIcon!==null&&disableIcon!==void 0?disableIcon:props.Xs_ArzY7H)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/P7zmezPathXdDkf11p70cypEGg4.svg\"}};};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,ERT0mtFse,Xs_ArzY7H,X4HddnvAE,IBJXwxVNI,E8F7acgpr,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Xb1gs_LMf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1rrr0gm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E8F7acgpr){const res=await E8F7acgpr(...args);if(res===false)return false;}});const onAppear17p5735=activeVariantCallback(async(...args)=>{setVariant(\"vFbSlbjtH\");});const onAppear11608nf=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"liX3nB9SN\"),5e3);});useOnVariantChange(baseVariant,{default:onAppear17p5735,liX3nB9SN:undefined,vFbSlbjtH:onAppear11608nf});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"liX3nB9SN\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"liX3nB9SN\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-a68ux2\",className,classNames),\"data-framer-name\":\"Active 0%\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Xb1gs_LMf\",onTap:onTap1rrr0gm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({liX3nB9SN:{\"data-framer-name\":\"Disabled\"},vFbSlbjtH:{\"data-framer-name\":\"Active 100%\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11mlcfz\",\"data-framer-name\":\"Molecule\",layoutDependency:layoutDependency,layoutId:\"iBpjiLXdX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q9kzqv\",layoutDependency:layoutDependency,layoutId:\"K8CghYgMJ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,sizes:\"42px\",...toResponsiveImage(ERT0mtFse)},className:\"framer-19s46ce\",\"data-framer-name\":\"Active Item\",layoutDependency:layoutDependency,layoutId:\"SWNMH9IBM\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,...toResponsiveImage(Xs_ArzY7H)},className:\"framer-d7enby\",\"data-framer-name\":\"Disabled Item\",layoutDependency:layoutDependency,layoutId:\"zgl1sswAo\",...addPropertyOverrides({liX3nB9SN:{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,sizes:\"42px\",...toResponsiveImage(Xs_ArzY7H)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Product\"})}),className:\"framer-arasd1\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],layoutDependency:layoutDependency,layoutId:\"zyASld92V\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4HddnvAE,variants:{liX3nB9SN:{\"--extracted-r6o4lv\":\"var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({liX3nB9SN:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Product\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Collect user feedback in the moment\"})}),className:\"framer-zutpa3\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],layoutDependency:layoutDependency,layoutId:\"Geq_MpvQa\",style:{\"--extracted-r6o4lv\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IBJXwxVNI,variants:{liX3nB9SN:{\"--extracted-r6o4lv\":\"var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({liX3nB9SN:{children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Collect user feedback in the moment\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15pjraq-container\",layoutDependency:layoutDependency,layoutId:\"P6ekHhG5U-container\",children:/*#__PURE__*/_jsx(AtomsProgressBar,{height:\"100%\",id:\"P6ekHhG5U\",layoutId:\"P6ekHhG5U\",LeuAJ7c7f:\"var(--token-42c9468a-c8d1-48ac-9b05-24245bfe26ee, rgb(234, 237, 240))\",style:{height:\"100%\",width:\"100%\"},UUNVXcH8i:\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",variant:\"IX9eJrEVN\",width:\"100%\",...addPropertyOverrides({vFbSlbjtH:{variant:\"KqXFBmWEd\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WjWZc.framer-nr68tv, .framer-WjWZc .framer-nr68tv { display: block; }\",\".framer-WjWZc.framer-a68ux2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 303px; }\",\".framer-WjWZc .framer-11mlcfz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WjWZc .framer-q9kzqv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WjWZc .framer-19s46ce, .framer-WjWZc .framer-d7enby { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 42px; }\",\".framer-WjWZc .framer-arasd1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WjWZc .framer-zutpa3 { flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WjWZc .framer-15pjraq-container { flex: none; height: 2px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WjWZc.framer-a68ux2, .framer-WjWZc .framer-11mlcfz, .framer-WjWZc .framer-q9kzqv { gap: 0px; } .framer-WjWZc.framer-a68ux2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-WjWZc.framer-a68ux2 > :first-child, .framer-WjWZc .framer-11mlcfz > :first-child { margin-top: 0px; } .framer-WjWZc.framer-a68ux2 > :last-child, .framer-WjWZc .framer-11mlcfz > :last-child { margin-bottom: 0px; } .framer-WjWZc .framer-11mlcfz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-WjWZc .framer-q9kzqv > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-WjWZc .framer-q9kzqv > :first-child { margin-left: 0px; } .framer-WjWZc .framer-q9kzqv > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 303\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vFbSlbjtH\":{\"layout\":[\"fixed\",\"auto\"]},\"liX3nB9SN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ERT0mtFse\":\"activeIcon\",\"Xs_ArzY7H\":\"disableIcon\",\"X4HddnvAE\":\"title\",\"IBJXwxVNI\":\"description\",\"E8F7acgpr\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framergxtz5Ndj5=withCSS(Component,css,\"framer-WjWZc\");export default Framergxtz5Ndj5;Framergxtz5Ndj5.displayName=\"Molecules/CarousselSwitchItem\";Framergxtz5Ndj5.defaultProps={height:200,width:303};addPropertyControls(Framergxtz5Ndj5,{variant:{options:[\"Xb1gs_LMf\",\"vFbSlbjtH\",\"liX3nB9SN\"],optionTitles:[\"Active 0%\",\"Active 100%\",\"Disabled\"],title:\"Variant\",type:ControlType.Enum},ERT0mtFse:{__defaultAssetReference:\"data:framer/asset-reference,P7zmezPathXdDkf11p70cypEGg4.svg?originalFilename=ic-circle-product.svg&preferredSize=auto\",title:\"Active Icon\",type:ControlType.ResponsiveImage},Xs_ArzY7H:{__defaultAssetReference:\"data:framer/asset-reference,P7zmezPathXdDkf11p70cypEGg4.svg?originalFilename=ic-circle-product.svg&preferredSize=auto\",title:\"Disable Icon\",type:ControlType.ResponsiveImage},X4HddnvAE:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String},IBJXwxVNI:{defaultValue:\"Collect user feedback in the moment\",displayTextArea:false,title:\"Description\",type:ControlType.String},E8F7acgpr:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framergxtz5Ndj5,[{explicitInter:true,fonts:[{family:\"Euclid Circular B Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/i1IXYmRU77jczU8YAi01ge7n10.woff2\"},{family:\"Euclid Circular B Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TdsUurmmvUqLEJCx0oI7m6Y7sw.woff2\"}]},...AtomsProgressBarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framergxtz5Ndj5\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"303\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vFbSlbjtH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"liX3nB9SN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ERT0mtFse\\\":\\\"activeIcon\\\",\\\"Xs_ArzY7H\\\":\\\"disableIcon\\\",\\\"X4HddnvAE\\\":\\\"title\\\",\\\"IBJXwxVNI\\\":\\\"description\\\",\\\"E8F7acgpr\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"200\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gxtz5Ndj5.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});export const v1=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});export const v2=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});export const v3=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Told est l'outil d'enqu\\xeate facile \\xe0 utiliser qui vous aide \\xe0 recueillir de pr\\xe9cieux commentaires d'utilisateurs ou de clients et \\xe0 comprendre vos donn\\xe9es en quelques secondes.\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "\nexport const __FramerMetadata__ = {\"exports\":{\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import AtomsProgressBar from\"https://framerusercontent.com/modules/sxrizgmzQ3WfYvHq4eSC/DZI2KybP9x6F8rNmMXY0/mSbVEpG7j.js\";import*as localizedValues from\"./XyNQJ6Lm7-0.js\";import*as localizedValues1 from\"./XyNQJ6Lm7-1.js\";const AtomsProgressBarFonts=getFonts(AtomsProgressBar);const cycleOrder=[\"j9DUaqVhk\",\"QPiM4oYPO\",\"ByygZ6aKh\"];const serializationHash=\"framer-cE1rD\";const variantClassNames={ByygZ6aKh:\"framer-v-1989hyz\",j9DUaqVhk:\"framer-v-1jee13x\",QPiM4oYPO:\"framer-v-163lhpv\"};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 valuesByLocaleId={hfMsFxwrH:localizedValues,z7ourZ3ou:localizedValues1};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={delay:0,duration:5,ease:[0,0,1,1],type:\"tween\"};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={\"Active 0%\":\"j9DUaqVhk\",\"Active 100%\":\"QPiM4oYPO\",Disabled:\"ByygZ6aKh\"};const getProps=({activeIcon,click,description,disableIcon,height,id,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2,_ref3,_ref4;return{...props,E8F7acgpr:click!==null&&click!==void 0?click:props.E8F7acgpr,ERT0mtFse:(_ref=activeIcon!==null&&activeIcon!==void 0?activeIcon:props.ERT0mtFse)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/P7zmezPathXdDkf11p70cypEGg4.svg\"},IBJXwxVNI:(_ref1=description!==null&&description!==void 0?description:props.IBJXwxVNI)!==null&&_ref1!==void 0?_ref1:\"Collect user feedback in the moment\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"j9DUaqVhk\",X4HddnvAE:(_ref3=title!==null&&title!==void 0?title:props.X4HddnvAE)!==null&&_ref3!==void 0?_ref3:\"Product\",Xs_ArzY7H:(_ref4=disableIcon!==null&&disableIcon!==void 0?disableIcon:props.Xs_ArzY7H)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/P7zmezPathXdDkf11p70cypEGg4.svg\"}};};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,ERT0mtFse,Xs_ArzY7H,X4HddnvAE,IBJXwxVNI,E8F7acgpr,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"j9DUaqVhk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1rrr0gm=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E8F7acgpr){const res=await E8F7acgpr(...args);if(res===false)return false;}});const onAppear1pd5w6t=activeVariantCallback(async(...args)=>{setVariant(\"QPiM4oYPO\");});const onAppear1ft284r=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ByygZ6aKh\"),5e3);});useOnVariantChange(baseVariant,{ByygZ6aKh:undefined,default:onAppear1pd5w6t,QPiM4oYPO:onAppear1ft284r});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"ByygZ6aKh\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"ByygZ6aKh\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jee13x\",className,classNames),\"data-framer-name\":\"Active 0%\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"j9DUaqVhk\",onTap:onTap1rrr0gm,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ByygZ6aKh:{\"data-framer-name\":\"Disabled\"},QPiM4oYPO:{\"data-framer-name\":\"Active 100%\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m28d90\",\"data-framer-name\":\"Molecule\",layoutDependency:layoutDependency,layoutId:\"GEie6rnOw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hwjo9d\",layoutDependency:layoutDependency,layoutId:\"ttl0g0qrG\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,sizes:\"42px\",...toResponsiveImage(ERT0mtFse)},className:\"framer-bcge6t\",\"data-framer-name\":\"Active Item\",layoutDependency:layoutDependency,layoutId:\"FCJv9kH8B\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,...toResponsiveImage(Xs_ArzY7H)},className:\"framer-mz4dae\",\"data-framer-name\":\"Disabled Item\",layoutDependency:layoutDependency,layoutId:\"hT668iCMa\",...addPropertyOverrides({ByygZ6aKh:{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,sizes:\"42px\",...toResponsiveImage(Xs_ArzY7H)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Product\"})}),className:\"framer-1o3nnl9\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],layoutDependency:layoutDependency,layoutId:\"IaYIlB9DI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4HddnvAE,variants:{ByygZ6aKh:{\"--extracted-r6o4lv\":\"var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ByygZ6aKh:{children:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Product\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Collect user feedback in the moment\"})}),className:\"framer-1fk82sd\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],layoutDependency:layoutDependency,layoutId:\"zmOx3prNv\",style:{\"--extracted-r6o4lv\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IBJXwxVNI,variants:{ByygZ6aKh:{\"--extracted-r6o4lv\":\"var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ByygZ6aKh:{children:(_getLocalizedValue3=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-881d7f51-ddf5-4e64-96f0-8ed6baf4ee17, rgb(158, 176, 191)))\"},children:\"Collect user feedback in the moment\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7y3vnx-container\",layoutDependency:layoutDependency,layoutId:\"ALOwje7jR-container\",children:/*#__PURE__*/_jsx(AtomsProgressBar,{height:\"100%\",id:\"ALOwje7jR\",layoutId:\"ALOwje7jR\",LeuAJ7c7f:\"var(--token-42c9468a-c8d1-48ac-9b05-24245bfe26ee, rgb(234, 237, 240))\",style:{height:\"100%\",width:\"100%\"},UUNVXcH8i:\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",variant:\"IX9eJrEVN\",width:\"100%\",...addPropertyOverrides({QPiM4oYPO:{variant:\"KqXFBmWEd\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cE1rD.framer-r5q4aj, .framer-cE1rD .framer-r5q4aj { display: block; }\",\".framer-cE1rD.framer-1jee13x { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 303px; }\",\".framer-cE1rD .framer-1m28d90 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cE1rD .framer-1hwjo9d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-cE1rD .framer-bcge6t, .framer-cE1rD .framer-mz4dae { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 42px; }\",\".framer-cE1rD .framer-1o3nnl9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-cE1rD .framer-1fk82sd { flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cE1rD .framer-7y3vnx-container { flex: none; height: 2px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cE1rD.framer-1jee13x, .framer-cE1rD .framer-1m28d90, .framer-cE1rD .framer-1hwjo9d { gap: 0px; } .framer-cE1rD.framer-1jee13x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-cE1rD.framer-1jee13x > :first-child, .framer-cE1rD .framer-1m28d90 > :first-child { margin-top: 0px; } .framer-cE1rD.framer-1jee13x > :last-child, .framer-cE1rD .framer-1m28d90 > :last-child { margin-bottom: 0px; } .framer-cE1rD .framer-1m28d90 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cE1rD .framer-1hwjo9d > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-cE1rD .framer-1hwjo9d > :first-child { margin-left: 0px; } .framer-cE1rD .framer-1hwjo9d > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 124\n * @framerIntrinsicWidth 303\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QPiM4oYPO\":{\"layout\":[\"fixed\",\"auto\"]},\"ByygZ6aKh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ERT0mtFse\":\"activeIcon\",\"Xs_ArzY7H\":\"disableIcon\",\"X4HddnvAE\":\"title\",\"IBJXwxVNI\":\"description\",\"E8F7acgpr\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXyNQJ6Lm7=withCSS(Component,css,\"framer-cE1rD\");export default FramerXyNQJ6Lm7;FramerXyNQJ6Lm7.displayName=\"Molecules/CarousselSwitchItem Copy\";FramerXyNQJ6Lm7.defaultProps={height:124,width:303};addPropertyControls(FramerXyNQJ6Lm7,{variant:{options:[\"j9DUaqVhk\",\"QPiM4oYPO\",\"ByygZ6aKh\"],optionTitles:[\"Active 0%\",\"Active 100%\",\"Disabled\"],title:\"Variant\",type:ControlType.Enum},ERT0mtFse:{__defaultAssetReference:\"data:framer/asset-reference,P7zmezPathXdDkf11p70cypEGg4.svg?originalFilename=ic-circle-product.svg&preferredSize=auto\",title:\"Active Icon\",type:ControlType.ResponsiveImage},Xs_ArzY7H:{__defaultAssetReference:\"data:framer/asset-reference,P7zmezPathXdDkf11p70cypEGg4.svg?originalFilename=ic-circle-product.svg&preferredSize=auto\",title:\"Disable Icon\",type:ControlType.ResponsiveImage},X4HddnvAE:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String},IBJXwxVNI:{defaultValue:\"Collect user feedback in the moment\",displayTextArea:false,title:\"Description\",type:ControlType.String},E8F7acgpr:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerXyNQJ6Lm7,[{explicitInter:true,fonts:[{family:\"Euclid Circular B Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/i1IXYmRU77jczU8YAi01ge7n10.woff2\"},{family:\"Euclid Circular B Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TdsUurmmvUqLEJCx0oI7m6Y7sw.woff2\"}]},...AtomsProgressBarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXyNQJ6Lm7\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QPiM4oYPO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ByygZ6aKh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"124\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"ERT0mtFse\\\":\\\"activeIcon\\\",\\\"Xs_ArzY7H\\\":\\\"disableIcon\\\",\\\"X4HddnvAE\\\":\\\"title\\\",\\\"IBJXwxVNI\\\":\\\"description\\\",\\\"E8F7acgpr\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"303\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XyNQJ6Lm7.map", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/2sJgmB6Tr3PyhvI9JHeX/fTJJTponHN5uhkr0BRv1/u16YOZg2E.js\";import MoleculesCarousselSwitchItem from\"https://framerusercontent.com/modules/Q2DnUVDHKjao875Kjo9G/aip6x0235gN5ffq3XEvE/gxtz5Ndj5.js\";import MoleculesCarousselSwitchItemCopy from\"https://framerusercontent.com/modules/UVVrJlPRFmJnTulv6oQm/2qztyVEtc6jmPP0wqjbK/XyNQJ6Lm7.js\";const MoleculesCarousselSwitchItemCopyFonts=getFonts(MoleculesCarousselSwitchItemCopy);const MoleculesCarousselSwitchItemFonts=getFonts(MoleculesCarousselSwitchItem);const cycleOrder=[\"FvSCish52\",\"z4fBXMIRt\",\"xoCC5maSV\",\"fitpPqOVQ\"];const serializationHash=\"framer-vv65e\";const variantClassNames={fitpPqOVQ:\"framer-v-6tkcfx\",FvSCish52:\"framer-v-1dnurki\",xoCC5maSV:\"framer-v-1vbw6bm\",z4fBXMIRt:\"framer-v-288gfn\"};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:300,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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.create(React.Fragment);const humanReadableVariantMap={Business:\"xoCC5maSV\",Product:\"FvSCish52\",Retention:\"fitpPqOVQ\",Satisfaction:\"z4fBXMIRt\"};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:\"FvSCish52\"};};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:\"FvSCish52\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear19qs4x9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"z4fBXMIRt\"),5e3);});const onAppear9sb8i6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xoCC5maSV\"),5e3);});const onAppear1khpm4z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fitpPqOVQ\"),5e3);});const onAppear11kb5bt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"FvSCish52\"),5e3);});const E8F7acgpr7uzapc=activeVariantCallback(async(...args)=>{setVariant(\"FvSCish52\");});const E8F7acgprelx79d=activeVariantCallback(async(...args)=>{setVariant(\"z4fBXMIRt\");});const E8F7acgpr1r3pkym=activeVariantCallback(async(...args)=>{setVariant(\"xoCC5maSV\");});const E8F7acgprtyxkyg=activeVariantCallback(async(...args)=>{setVariant(\"fitpPqOVQ\");});useOnVariantChange(baseVariant,{default:onAppear19qs4x9,fitpPqOVQ:onAppear11kb5bt,xoCC5maSV:onAppear1khpm4z,z4fBXMIRt:onAppear9sb8i6});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"z4fBXMIRt\",\"xoCC5maSV\",\"fitpPqOVQ\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"z4fBXMIRt\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"xoCC5maSV\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"fitpPqOVQ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21;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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dnurki\",className,classNames),\"data-framer-name\":\"Product\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FvSCish52\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({fitpPqOVQ:{\"data-framer-name\":\"Retention\"},xoCC5maSV:{\"data-framer-name\":\"Business\"},z4fBXMIRt:{\"data-framer-name\":\"Satisfaction\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-123o2ov\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"hjrjlMcZy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:124,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xz48gy-container\",layoutDependency:layoutDependency,layoutId:\"m9mIicQFK-container\",children:/*#__PURE__*/_jsx(MoleculesCarousselSwitchItemCopy,{E8F7acgpr:E8F7acgpr7uzapc,ERT0mtFse:addImageAlt({src:\"https://framerusercontent.com/images/VLGNcXKwLPQk7dy9rfpkqXQ.svg\"},\"\"),height:\"100%\",IBJXwxVNI:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Collect user feedback in the moment\",id:\"m9mIicQFK\",layoutId:\"m9mIicQFK\",style:{width:\"100%\"},variant:\"j9DUaqVhk\",width:\"100%\",X4HddnvAE:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Product\",Xs_ArzY7H:addImageAlt({src:\"https://framerusercontent.com/images/Gk05AKdQE2XHy8cc6ADjk1Usi2o.svg\"},\"\"),...addPropertyOverrides({fitpPqOVQ:{variant:\"ByygZ6aKh\"},xoCC5maSV:{variant:\"ByygZ6aKh\"},z4fBXMIRt:{variant:\"ByygZ6aKh\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x8ch2n-container\",layoutDependency:layoutDependency,layoutId:\"peaNqlqku-container\",children:/*#__PURE__*/_jsx(MoleculesCarousselSwitchItem,{E8F7acgpr:E8F7acgprelx79d,ERT0mtFse:addImageAlt({src:\"https://framerusercontent.com/images/C57KUeMcYdEJJNGRtyw7SPTZ89E.svg\"},\"\"),height:\"100%\",IBJXwxVNI:(_getLocalizedValue2=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Measure satisfaction of your users on your product and service\",id:\"peaNqlqku\",layoutId:\"peaNqlqku\",style:{width:\"100%\"},variant:\"liX3nB9SN\",width:\"100%\",X4HddnvAE:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Satisfaction\",Xs_ArzY7H:addImageAlt({src:\"https://framerusercontent.com/images/VBDtG8VuLo4vS3eYxE6q6l5AZs.svg\"},\"\"),...addPropertyOverrides({z4fBXMIRt:{variant:\"Xb1gs_LMf\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ihcsd-container\",layoutDependency:layoutDependency,layoutId:\"BLjGUrQXG-container\",children:/*#__PURE__*/_jsx(MoleculesCarousselSwitchItem,{E8F7acgpr:E8F7acgpr1r3pkym,ERT0mtFse:addImageAlt({src:\"https://framerusercontent.com/images/KlwnhnlCdkncOGZF8asNgtPpH0.svg\"},\"\"),height:\"100%\",IBJXwxVNI:(_getLocalizedValue4=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Collect user data in the moment  to catch more leads\",id:\"BLjGUrQXG\",layoutId:\"BLjGUrQXG\",style:{width:\"100%\"},variant:\"liX3nB9SN\",width:\"100%\",X4HddnvAE:(_getLocalizedValue5=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Business\",Xs_ArzY7H:addImageAlt({src:\"https://framerusercontent.com/images/z4fdtFwMdlKCziglv1mnEVgulss.svg\"},\"\"),...addPropertyOverrides({xoCC5maSV:{variant:\"Xb1gs_LMf\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9y7h0v-container\",layoutDependency:layoutDependency,layoutId:\"vyYKQt7es-container\",children:/*#__PURE__*/_jsx(MoleculesCarousselSwitchItem,{E8F7acgpr:E8F7acgprtyxkyg,ERT0mtFse:addImageAlt({src:\"https://framerusercontent.com/images/KVebrvvtA0VFzxRMpw1AT7ccQ.svg\"},\"\"),height:\"100%\",IBJXwxVNI:(_getLocalizedValue6=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Understand your customers to strengthen their commitment\",id:\"vyYKQt7es\",layoutId:\"vyYKQt7es\",style:{width:\"100%\"},variant:\"liX3nB9SN\",width:\"100%\",X4HddnvAE:(_getLocalizedValue7=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Retention\",Xs_ArzY7H:addImageAlt({src:\"https://framerusercontent.com/images/Sc6zQzj62jdF2u1CxtbjuTViuRU.svg\"},\"\"),...addPropertyOverrides({fitpPqOVQ:{variant:\"Xb1gs_LMf\"}},baseVariant,gestureVariant)})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1012843\",\"data-framer-name\":\"Product Card\",layoutDependency:layoutDependency,layoutId:\"NB_fvd20N\",style:{backgroundColor:\"rgb(252, 226, 222)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e63kss\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"yTb3uILvX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tunw4t\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"RLD6orpdM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aoci4l\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"vOo1s2hJ8\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0+80+0+0+0+8),pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/VLGNcXKwLPQk7dy9rfpkqXQ.svg\"},className:\"framer-eyi0d7\",\"data-framer-name\":\"CircleIcon\",layoutDependency:layoutDependency,layoutId:\"MT4npalgy\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue8=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Product\"})}),className:\"framer-1mllqh7\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],layoutDependency:layoutDependency,layoutId:\"ZgWr7Wq81\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue9=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.5px\"},children:\"Display a popup survey on your product\"})}),className:\"framer-cw0qvl\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],layoutDependency:layoutDependency,layoutId:\"jQDvFBOjt\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue10=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\"},children:\"Collect feedback to identify pain points and drive your product roadmap.\"})}),className:\"framer-1hm1pmp\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],layoutDependency:layoutDependency,layoutId:\"DdeRG082K\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Interface of a product survey tool displaying real-time feedback questions on a laptop.\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0),pixelHeight:1144,pixelWidth:1324,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg\",srcSet:\"https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg 1324w\"},className:\"framer-156gezl\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"z1jfojXzS\"})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18ek0cv\",\"data-framer-name\":\"Satisfaction Card\",layoutDependency:layoutDependency,layoutId:\"zPePUs6bU\",style:{backgroundColor:\"rgb(244, 252, 238)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lyvxe6\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"yZqsDuK1T\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cgtxha\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"cltsAmq5r\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dy1aaq\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"iA1oyp749\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/1DEdeiA21SMwvK0Tmtd3rMuMoqk.svg\"},className:\"framer-y1b9dq\",\"data-framer-name\":\"CircleIcon\",layoutDependency:layoutDependency,layoutId:\"lg0CW3ve8\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({z4fBXMIRt:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0+80+0+0+0+8),pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/1DEdeiA21SMwvK0Tmtd3rMuMoqk.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue11=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Satisfaction\"})}),className:\"framer-1rz8i2j\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],layoutDependency:layoutDependency,layoutId:\"fT9aPHx6g\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue12=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.5px\"},children:[\"Measure satisfaction on \",/*#__PURE__*/_jsx(motion.br,{}),\"your users and employes\"]})}),className:\"framer-hpj4to\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],layoutDependency:layoutDependency,layoutId:\"NcoWhAISj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue13=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Measure your NPS, CSAT and more KPI\u2019s to keep an eye closed to your satisfaction.\"})}),className:\"framer-ogo6ov\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],layoutDependency:layoutDependency,layoutId:\"iiXHuL_R7\",style:{\"--extracted-r6o4lv\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue14=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"People at table reading an email containing our system of survey\",fit:\"fill\",pixelHeight:1144,pixelWidth:1324,src:\"https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg\",srcSet:\"https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg 1324w\"},className:\"framer-1ks15qi\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"ePBqI4Sox\",...addPropertyOverrides({z4fBXMIRt:{background:{alt:(_getLocalizedValue15=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"People at table reading an email containing our system of survey\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0),pixelHeight:1144,pixelWidth:1324,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg\",srcSet:\"https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg 1324w\"}}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14e07dt\",\"data-framer-name\":\"Business Card\",layoutDependency:layoutDependency,layoutId:\"QdFq8Zttk\",style:{backgroundColor:\"var(--token-52dea63a-489c-42af-b19b-7d470bf04fab, rgb(235, 241, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-238w5v\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"U8U7QPz0b\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qwqild\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"wO9e4jKgu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e2ni6o\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"PauxykyX_\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/mp7Zn1m0OPtQ0Ycfxjr0zwdGlao.svg\"},className:\"framer-1t82jxo\",\"data-framer-name\":\"CircleIcon\",layoutDependency:layoutDependency,layoutId:\"N4yDHArn3\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({xoCC5maSV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0+80+0+0+0+8),pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/mp7Zn1m0OPtQ0Ycfxjr0zwdGlao.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue16=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Business\"})}),className:\"framer-1xwl7iu\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],layoutDependency:layoutDependency,layoutId:\"z88PiEIis\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue17=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:[\"Collect user data on \",/*#__PURE__*/_jsx(motion.br,{}),\"your touchpoints\"]})}),className:\"framer-s6z7ym\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],layoutDependency:layoutDependency,layoutId:\"vWSrRS5aZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue18=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Collect more user data in the moment to catch more leads and generate more business.\"})}),className:\"framer-1ptivwy\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],layoutDependency:layoutDependency,layoutId:\"Yxz6VG4zc\",style:{\"--extracted-r6o4lv\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Inqom by Visma website containing a Told (survey)\",fit:\"fill\",pixelHeight:1144,pixelWidth:1324,src:\"https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg\",srcSet:\"https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg 1324w\"},className:\"framer-hsnrqu\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"dzI9uKNPp\",...addPropertyOverrides({xoCC5maSV:{background:{alt:\"Inqom by Visma website containing a Told (survey)\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0),pixelHeight:1144,pixelWidth:1324,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg\",srcSet:\"https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg 1324w\"}}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16qpy7r\",\"data-framer-name\":\"Retention Card\",layoutDependency:layoutDependency,layoutId:\"C5NIn45MN\",style:{backgroundColor:\"rgb(245, 235, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cvoqrc\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"CAeBwtcLH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-p0tceq\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"jMqC2UZGF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bzjutn\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"XOzEqty15\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 1px 2px 0px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/KVebrvvtA0VFzxRMpw1AT7ccQ.svg\"},className:\"framer-a99h1u\",\"data-framer-name\":\"CircleIcon\",layoutDependency:layoutDependency,layoutId:\"ACOdvhQ3i\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({fitpPqOVQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0+80+0+0+0+8),pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/KVebrvvtA0VFzxRMpw1AT7ccQ.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue19=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Retention\"})}),className:\"framer-jrfvi3\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],layoutDependency:layoutDependency,layoutId:\"BtRrKTwXi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue20=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:[\"Understand your customers \",/*#__PURE__*/_jsx(motion.br,{}),\"to improve their loyalty\"]})}),className:\"framer-s6n60f\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],layoutDependency:layoutDependency,layoutId:\"pOKJaijfs\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:(_getLocalizedValue21=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36)))\"},children:\"Collect, analyze and drastically reduce the number of users who unsubscribe/leave your product\"})}),className:\"framer-11u3wj1\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],layoutDependency:layoutDependency,layoutId:\"KJjLwcsMm\",style:{\"--extracted-r6o4lv\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Results view of our user feedback tool\",fit:\"fill\",pixelHeight:1144,pixelWidth:1324,src:\"https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg\",srcSet:\"https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg 1324w\"},className:\"framer-1omxnyh\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"GXR1tyE1L\",...addPropertyOverrides({fitpPqOVQ:{background:{alt:\"Results view of our user feedback tool\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+240+0),pixelHeight:1144,pixelWidth:1324,sizes:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 10px) / 2, 1px)`,src:\"https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg\",srcSet:\"https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nFrH4s1NshYtxzpmubLbdHBSp6o.jpg 1324w\"}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vv65e.framer-40cgq0, .framer-vv65e .framer-40cgq0 { display: block; }\",\".framer-vv65e.framer-1dnurki { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1272px; }\",\".framer-vv65e .framer-123o2ov { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vv65e .framer-xz48gy-container, .framer-vv65e .framer-1x8ch2n-container, .framer-vv65e .framer-5ihcsd-container, .framer-vv65e .framer-9y7h0v-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-vv65e .framer-1012843, .framer-vv65e .framer-18ek0cv, .framer-vv65e .framer-14e07dt, .framer-vv65e .framer-16qpy7r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 600px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vv65e .framer-1e63kss, .framer-vv65e .framer-1lyvxe6, .framer-vv65e .framer-238w5v, .framer-vv65e .framer-1cvoqrc { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 0px 64px; position: relative; width: 1px; }\",\".framer-vv65e .framer-1tunw4t, .framer-vv65e .framer-cgtxha, .framer-vv65e .framer-1qwqild, .framer-vv65e .framer-p0tceq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vv65e .framer-1aoci4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 8px 16px 8px 12px; position: relative; width: min-content; z-index: 2; }\",\".framer-vv65e .framer-eyi0d7, .framer-vv65e .framer-y1b9dq, .framer-vv65e .framer-1t82jxo, .framer-vv65e .framer-a99h1u { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 42px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 42px; }\",\".framer-vv65e .framer-1mllqh7, .framer-vv65e .framer-1rz8i2j, .framer-vv65e .framer-1xwl7iu, .framer-vv65e .framer-jrfvi3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vv65e .framer-cw0qvl, .framer-vv65e .framer-hpj4to, .framer-vv65e .framer-s6z7ym, .framer-vv65e .framer-s6n60f { flex: none; height: auto; max-width: 545px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vv65e .framer-1hm1pmp, .framer-vv65e .framer-ogo6ov, .framer-vv65e .framer-1ptivwy, .framer-vv65e .framer-11u3wj1 { flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vv65e .framer-156gezl, .framer-vv65e .framer-1ks15qi, .framer-vv65e .framer-hsnrqu, .framer-vv65e .framer-1omxnyh { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-vv65e .framer-1dy1aaq, .framer-vv65e .framer-1e2ni6o, .framer-vv65e .framer-bzjutn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vv65e.framer-1dnurki, .framer-vv65e .framer-123o2ov, .framer-vv65e .framer-1012843, .framer-vv65e .framer-1e63kss, .framer-vv65e .framer-1tunw4t, .framer-vv65e .framer-1aoci4l, .framer-vv65e .framer-eyi0d7, .framer-vv65e .framer-156gezl, .framer-vv65e .framer-18ek0cv, .framer-vv65e .framer-1lyvxe6, .framer-vv65e .framer-cgtxha, .framer-vv65e .framer-1dy1aaq, .framer-vv65e .framer-y1b9dq, .framer-vv65e .framer-1ks15qi, .framer-vv65e .framer-14e07dt, .framer-vv65e .framer-238w5v, .framer-vv65e .framer-1qwqild, .framer-vv65e .framer-1e2ni6o, .framer-vv65e .framer-1t82jxo, .framer-vv65e .framer-hsnrqu, .framer-vv65e .framer-16qpy7r, .framer-vv65e .framer-1cvoqrc, .framer-vv65e .framer-p0tceq, .framer-vv65e .framer-bzjutn, .framer-vv65e .framer-a99h1u, .framer-vv65e .framer-1omxnyh { gap: 0px; } .framer-vv65e.framer-1dnurki > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vv65e.framer-1dnurki > :first-child, .framer-vv65e .framer-1e63kss > :first-child, .framer-vv65e .framer-1tunw4t > :first-child, .framer-vv65e .framer-eyi0d7 > :first-child, .framer-vv65e .framer-156gezl > :first-child, .framer-vv65e .framer-1lyvxe6 > :first-child, .framer-vv65e .framer-cgtxha > :first-child, .framer-vv65e .framer-y1b9dq > :first-child, .framer-vv65e .framer-1ks15qi > :first-child, .framer-vv65e .framer-238w5v > :first-child, .framer-vv65e .framer-1qwqild > :first-child, .framer-vv65e .framer-1t82jxo > :first-child, .framer-vv65e .framer-hsnrqu > :first-child, .framer-vv65e .framer-1cvoqrc > :first-child, .framer-vv65e .framer-p0tceq > :first-child, .framer-vv65e .framer-a99h1u > :first-child, .framer-vv65e .framer-1omxnyh > :first-child { margin-top: 0px; } .framer-vv65e.framer-1dnurki > :last-child, .framer-vv65e .framer-1e63kss > :last-child, .framer-vv65e .framer-1tunw4t > :last-child, .framer-vv65e .framer-eyi0d7 > :last-child, .framer-vv65e .framer-156gezl > :last-child, .framer-vv65e .framer-1lyvxe6 > :last-child, .framer-vv65e .framer-cgtxha > :last-child, .framer-vv65e .framer-y1b9dq > :last-child, .framer-vv65e .framer-1ks15qi > :last-child, .framer-vv65e .framer-238w5v > :last-child, .framer-vv65e .framer-1qwqild > :last-child, .framer-vv65e .framer-1t82jxo > :last-child, .framer-vv65e .framer-hsnrqu > :last-child, .framer-vv65e .framer-1cvoqrc > :last-child, .framer-vv65e .framer-p0tceq > :last-child, .framer-vv65e .framer-a99h1u > :last-child, .framer-vv65e .framer-1omxnyh > :last-child { margin-bottom: 0px; } .framer-vv65e .framer-123o2ov > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-vv65e .framer-123o2ov > :first-child, .framer-vv65e .framer-1012843 > :first-child, .framer-vv65e .framer-1aoci4l > :first-child, .framer-vv65e .framer-18ek0cv > :first-child, .framer-vv65e .framer-1dy1aaq > :first-child, .framer-vv65e .framer-14e07dt > :first-child, .framer-vv65e .framer-1e2ni6o > :first-child, .framer-vv65e .framer-16qpy7r > :first-child, .framer-vv65e .framer-bzjutn > :first-child { margin-left: 0px; } .framer-vv65e .framer-123o2ov > :last-child, .framer-vv65e .framer-1012843 > :last-child, .framer-vv65e .framer-1aoci4l > :last-child, .framer-vv65e .framer-18ek0cv > :last-child, .framer-vv65e .framer-1dy1aaq > :last-child, .framer-vv65e .framer-14e07dt > :last-child, .framer-vv65e .framer-1e2ni6o > :last-child, .framer-vv65e .framer-16qpy7r > :last-child, .framer-vv65e .framer-bzjutn > :last-child { margin-right: 0px; } .framer-vv65e .framer-1012843 > *, .framer-vv65e .framer-18ek0cv > *, .framer-vv65e .framer-14e07dt > *, .framer-vv65e .framer-16qpy7r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vv65e .framer-1e63kss > *, .framer-vv65e .framer-1lyvxe6 > *, .framer-vv65e .framer-238w5v > *, .framer-vv65e .framer-1cvoqrc > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-vv65e .framer-1tunw4t > *, .framer-vv65e .framer-cgtxha > *, .framer-vv65e .framer-1qwqild > *, .framer-vv65e .framer-p0tceq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-vv65e .framer-1aoci4l > *, .framer-vv65e .framer-1dy1aaq > *, .framer-vv65e .framer-1e2ni6o > *, .framer-vv65e .framer-bzjutn > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-vv65e .framer-eyi0d7 > *, .framer-vv65e .framer-y1b9dq > *, .framer-vv65e .framer-1t82jxo > *, .framer-vv65e .framer-a99h1u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vv65e .framer-156gezl > *, .framer-vv65e .framer-1ks15qi > *, .framer-vv65e .framer-hsnrqu > *, .framer-vv65e .framer-1omxnyh > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 764.5\n * @framerIntrinsicWidth 1272\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"z4fBXMIRt\":{\"layout\":[\"fixed\",\"auto\"]},\"xoCC5maSV\":{\"layout\":[\"fixed\",\"auto\"]},\"fitpPqOVQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameru16YOZg2E=withCSS(Component,css,\"framer-vv65e\");export default Frameru16YOZg2E;Frameru16YOZg2E.displayName=\"Organisms/Caroussel Uses cases\";Frameru16YOZg2E.defaultProps={height:764.5,width:1272};addPropertyControls(Frameru16YOZg2E,{variant:{options:[\"FvSCish52\",\"z4fBXMIRt\",\"xoCC5maSV\",\"fitpPqOVQ\"],optionTitles:[\"Product\",\"Satisfaction\",\"Business\",\"Retention\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Frameru16YOZg2E,[{explicitInter:true,fonts:[{family:\"Euclid Circular B Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/i1IXYmRU77jczU8YAi01ge7n10.woff2\"},{family:\"Kobe1.1 Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/pKnzkiEaZG10eAdKJV4xpWOlal8.woff2\"},{family:\"Euclid Circular B Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TdsUurmmvUqLEJCx0oI7m6Y7sw.woff2\"}]},...MoleculesCarousselSwitchItemCopyFonts,...MoleculesCarousselSwitchItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameru16YOZg2E\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"764.5\",\"framerIntrinsicWidth\":\"1272\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z4fBXMIRt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xoCC5maSV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fitpPqOVQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fb31e5e)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={hfMsFxwrH:new LazyValue(()=>import(\"./WYK1LwUtG-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withOptimizedAppearEffect}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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Mn69eMnaMcqJ65TjxwR1/Embed.js\";import AtomsCircleNumber from\"https://framerusercontent.com/modules/qpOa23N5m7pRiUv6EWkc/jZXt5kkc97I45yGQFlT0/LVQtOeb6x.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/i9GayUyuKzq5AZLIseXV/SlideShow.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import AtomsButtonCopy from\"#framer/local/canvasComponent/CQInAJbmD/CQInAJbmD.js\";import OrganismsCTASection from\"#framer/local/canvasComponent/EeJHrWEn1/EeJHrWEn1.js\";import OrganismsFooter from\"#framer/local/canvasComponent/jaJWJK3_2/jaJWJK3_2.js\";import OrganismsNavigation from\"#framer/local/canvasComponent/Ts0k3FBUv/Ts0k3FBUv.js\";import OrganismsCarousselUsesCases from\"#framer/local/canvasComponent/u16YOZg2E/u16YOZg2E.js\";import OrganismsCarousselHowToUse from\"#framer/local/canvasComponent/VkW7G0tJr/VkW7G0tJr.js\";import OrganismsSlideshowFeatures from\"#framer/local/canvasComponent/Y3SSdXr39/Y3SSdXr39.js\";import*as sharedStyle2 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle1 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/WYK1LwUtG/WYK1LwUtG.js\";import metadataProvider from\"#framer/local/webPageMetadata/WYK1LwUtG/WYK1LwUtG.js\";const OrganismsNavigationFonts=getFonts(OrganismsNavigation);const AtomsButtonCopyFonts=getFonts(AtomsButtonCopy);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const SlideshowFonts=getFonts(Slideshow);const TickerFonts=getFonts(Ticker);const OrganismsCarousselUsesCasesFonts=getFonts(OrganismsCarousselUsesCases);const Slideshow1Fonts=getFonts(Slideshow1);const OrganismsCarousselHowToUseFonts=getFonts(OrganismsCarousselHowToUse);const AtomsCircleNumberFonts=getFonts(AtomsCircleNumber);const EmbedFonts=getFonts(Embed);const OrganismsSlideshowFeaturesFonts=getFonts(OrganismsSlideshowFeatures);const CarouselFonts=getFonts(Carousel);const OrganismsCTASectionFonts=getFonts(OrganismsCTASection);const OrganismsFooterFonts=getFonts(OrganismsFooter);const breakpoints={ahtDHWXxd:\"(min-width: 1200px) and (max-width: 1439px)\",cfK4xIwOX:\"(min-width: 810px) and (max-width: 1199px)\",IJlZRlO95:\"(min-width: 1440px)\",P3HhB_xPK:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-0Iavx\";const variantClassNames={ahtDHWXxd:\"framer-v-1dex5nc\",cfK4xIwOX:\"framer-v-lkbqjq\",IJlZRlO95:\"framer-v-ujzoxa\",P3HhB_xPK:\"framer-v-ecrbuc\"};const transition1={damping:40,delay:.3,mass:4,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.03,skewX:0,skewY:0,transition:transition2};const transition3={damping:40,delay:.35,mass:4,stiffness:300,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 transition4={damping:40,delay:.4,mass:4,stiffness:300,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:40,delay:.45,mass:4,stiffness:300,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:40,delay:.5,mass:4,stiffness:300,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop Large\":\"IJlZRlO95\",Desktop:\"ahtDHWXxd\",Phone:\"P3HhB_xPK\",Tablet:\"cfK4xIwOX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IJlZRlO95\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"N_TtSIAts\");const ref1=React.useRef(null);usePreloadLocalizedValues(activeLocale);const visible=equals(activeLocale?.id,\"default\");const visible1=equals(activeLocale?.id,\"hfMsFxwrH\");const elementId1=useRouteElementId(\"nyjd97poq\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"P3HhB_xPK\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"P3HhB_xPK\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IJlZRlO95\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-ujzoxa\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15srxms-container\",nodeId:\"k4xWEDPT2\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{variant:\"qiHWsnd_S\"},P3HhB_xPK:{variant:\"qiHWsnd_S\"}},children:/*#__PURE__*/_jsx(OrganismsNavigation,{height:\"100%\",id:\"k4xWEDPT2\",layoutId:\"k4xWEDPT2\",style:{width:\"100%\"},variant:\"Qx1RCjKEC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c0fb1l\",\"data-framer-name\":\"Header\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sdlyty\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106zxxb\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bm1knw\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gfrmt3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\"},children:\"Boost your insights with our powerful Survey Tool\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Transform user feedback \",/*#__PURE__*/_jsx(\"br\",{}),\"into powerful insights\"]})}),className:\"framer-p29z2y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Told lets you collect feedback on the channels of your choice in just a few clicks. Complement your conventional analysis data with feedback and make better decisions. Try it for 14 days.\"})}),className:\"framer-6mfw26\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uau9w7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+88+56+0+0+0+0+232.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jm142z-container\",nodeId:\"FUG4Nwelp\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsButtonCopy,{bhDaw8gT6:{borderColor:\"#222\",borderStyle:\"solid\",borderWidth:1},eUazCBlgk:\"rgb(255, 255, 255)\",height:\"100%\",id:\"FUG4Nwelp\",JIIBd62o_:\"\",layoutId:\"FUG4Nwelp\",o63iM_imi:\"https://app.told.club/signup\",sFeT0IUs7:\"rgb(230, 62, 90)\",variant:\"YU0CNLcB8\",width:\"100%\",YWX7VgYG3:getLocalizedValue(\"v3\",activeLocale)??\"Start now\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wq2xq7\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nsv48s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dd4f5c\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{background:{alt:getLocalizedValue(\"v4\",activeLocale)??\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/xfnq9EZZT8oxPVUj7WdyRp9lAU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v4\",activeLocale)??\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+56+0+0+0+0+232.4+0+0+0+0+.5),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/xfnq9EZZT8oxPVUj7WdyRp9lAU.svg\"},className:\"framer-1m9e6l2\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-4fc49333-086e-409a-af41-9216ec18dddf, rgb(101, 123, 143))\"},children:\"No credit card required \"})}),className:\"framer-14acgfl\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17yc2f0\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{background:{alt:getLocalizedValue(\"v6\",activeLocale)??\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/oxjshKhuX16BmCcvnM1sG5mx2M.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v6\",activeLocale)??\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+56+0+0+0+0+232.4+0+0+0+0+.5),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/oxjshKhuX16BmCcvnM1sG5mx2M.svg\"},className:\"framer-fuymbm\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-4fc49333-086e-409a-af41-9216ec18dddf, rgb(101, 123, 143))\"},children:\"Servers in EU\"})}),className:\"framer-d0jej9\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1reu1h\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q30214\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{background:{alt:getLocalizedValue(\"v8\",activeLocale)??\"\",fit:\"fill\",pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/FOhDdigl49A7vu4nj1duucvb08.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v8\",activeLocale)??\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+88+56+0+0+0+0+232.4+0+0+27+0+.5),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/FOhDdigl49A7vu4nj1duucvb08.svg\"},className:\"framer-1brqked\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-4fc49333-086e-409a-af41-9216ec18dddf, rgb(101, 123, 143))\"},children:\"Available in 15 languages\"})}),className:\"framer-1tbor5h\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8nxlsb-container\",isModuleExternal:true,nodeId:\"aYo687X0i\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{itemAmount:2},P3HhB_xPK:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},itemAmount:1}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"aYo687X0i\",intervalControl:2.5,itemAmount:3,layoutId:\"aYo687X0i\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vxme79\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"t3fKWJ_dA\"},motionChild:true,nodeId:\"X94tZvPjZ\",openInNewTab:false,scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation,className:\"framer-mvt7io framer-1nsokf6\",\"data-framer-appear-id\":\"mvt7io\",\"data-framer-name\":\"CardsSources/InProduct\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gkk3lu\",\"data-framer-name\":\"Wrapper\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Integration of our popup survey tool on a SaaS tablet tool\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:\"410px\",src:\"https://framerusercontent.com/images/W2lGz2SGZnTwFCIe1WCWjrH6aNA.jpg\",srcSet:\"https://framerusercontent.com/images/W2lGz2SGZnTwFCIe1WCWjrH6aNA.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/W2lGz2SGZnTwFCIe1WCWjrH6aNA.jpg 820w\"},className:\"framer-s87s71\",\"data-framer-name\":\"Cover-EN\",whileHover:animation2}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v10\",activeLocale)??\"Integration of our popup survey tool on a SaaS tablet tool\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,positionX:\"center\",positionY:\"center\",sizes:\"410px\",src:\"https://framerusercontent.com/images/oKDML8wLt38MA3AwxBvLgx9jw.jpg\",srcSet:\"https://framerusercontent.com/images/oKDML8wLt38MA3AwxBvLgx9jw.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/oKDML8wLt38MA3AwxBvLgx9jw.jpg 820w\"},className:\"framer-7tqn22\",\"data-framer-name\":\"Cover-FR\",whileHover:animation2}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uowo6v\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jaetcx\",\"data-framer-name\":\"CircleIcon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/gRoLdzW35hPwc6QFaii6nMYmqlU.svg\"},className:\"framer-eik408\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"In a Product\"})}),className:\"framer-19ouerf\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Get your users talking by deploying a survey directly in your digital product.\"})}),className:\"framer-1rr0j4e\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yn3j56\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ia0yFEMIh\"},motionChild:true,nodeId:\"cBwJO8ipa\",openInNewTab:false,scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation3,className:\"framer-a6fv7b framer-1nsokf6\",\"data-framer-appear-id\":\"a6fv7b\",\"data-framer-name\":\"CardsSources/InApp\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mvac0g\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rra6kr\",\"data-framer-name\":\"CircleIcon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/Gm0rcsPyf0RfsmnPDfRuQRnVA.svg\"},className:\"framer-8ok5vu\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"In a Mobile-app\"})}),className:\"framer-1rynb1\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Gather insights around the experience of your mobile application.\"})}),className:\"framer-j3fzvi\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v15\",activeLocale)??\"An Iphone with mobile-app which contains our survey tool\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/nVvsYvFKuYM71qEVOsNqbTLXio.jpg\",srcSet:\"https://framerusercontent.com/images/nVvsYvFKuYM71qEVOsNqbTLXio.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/nVvsYvFKuYM71qEVOsNqbTLXio.jpg 820w\"},className:\"framer-edn0df\",\"data-framer-name\":\"Cover-EN\",whileHover:animation2}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v15\",activeLocale)??\"An Iphone with mobile-app which contains our survey tool\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/wRQR0xZ9t4if9iFPD8X5MheCzB0.jpg\",srcSet:\"https://framerusercontent.com/images/wRQR0xZ9t4if9iFPD8X5MheCzB0.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/wRQR0xZ9t4if9iFPD8X5MheCzB0.jpg 820w\"},className:\"framer-17mytpn\",\"data-framer-name\":\"Cover-FR\",whileHover:animation2})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zia281\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CMlW6tLrJ\"},motionChild:true,nodeId:\"K8Y4jMed_\",openInNewTab:false,scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation4,className:\"framer-61qmtn framer-1nsokf6\",\"data-framer-appear-id\":\"61qmtn\",\"data-framer-name\":\"CardsSources/InEmail\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2ah7x5\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1tol\",\"data-framer-name\":\"CircleIcon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/gRoLdzW35hPwc6QFaii6nMYmqlU.svg\"},className:\"framer-hlfns5\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"In an Email\"})}),className:\"framer-cflm1k\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Receive practical feedback via embedded email surveys.\"})}),className:\"framer-1e9xccz\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Web browser window containing an email survey\",fit:\"fit\",pixelHeight:800,pixelWidth:606,positionX:\"center\",positionY:\"bottom\",sizes:\"410px\",src:\"https://framerusercontent.com/images/q8J58G9uERdhNcPsj7cUZIVANT0.jpg\",srcSet:\"https://framerusercontent.com/images/q8J58G9uERdhNcPsj7cUZIVANT0.jpg 606w\"},className:\"framer-1timp58\",\"data-framer-name\":\"Cover-EN\",whileHover:animation2}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v18\",activeLocale)??\"Web browser window containing an email survey\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/Z1ieJnnygjzKg7FR6BhD4yyaX7Q.jpg\",srcSet:\"https://framerusercontent.com/images/Z1ieJnnygjzKg7FR6BhD4yyaX7Q.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/Z1ieJnnygjzKg7FR6BhD4yyaX7Q.jpg 820w\"},className:\"framer-blmvfe\",\"data-framer-name\":\"Cover-FR\",whileHover:animation2})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u22uvi\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LWKErXGnH\"},motionChild:true,nodeId:\"F4GW9jLfg\",openInNewTab:false,scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation5,className:\"framer-ygbhnb framer-1nsokf6\",\"data-framer-appear-id\":\"ygbhnb\",\"data-framer-name\":\"CardsSources/OnWebsite\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w623b5\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-uc8zw9\",\"data-framer-name\":\"CircleIcon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/9W6UwtafowinDBEz6PGNw5kzKmE.svg\"},className:\"framer-65amh3\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"On a Website\"})}),className:\"framer-vu0tfm\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v20\",activeLocale)??\"E-commerce website for pets with our survey tool deployed\",fit:\"fill\",pixelHeight:1280,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/sf4k6aJvpAfh5Mxi0VKHaD6k.jpg\",srcSet:\"https://framerusercontent.com/images/sf4k6aJvpAfh5Mxi0VKHaD6k.jpg?scale-down-to=1024 656w,https://framerusercontent.com/images/sf4k6aJvpAfh5Mxi0VKHaD6k.jpg 820w\"},className:\"framer-36iu5\",\"data-framer-name\":\"Cover-EN\",whileHover:animation2}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v20\",activeLocale)??\"E-commerce website for pets with our survey tool deployed\",fit:\"fill\",pixelHeight:1280,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/qNixBCrD8ja18xzfdcjTNfgIE.jpg\",srcSet:\"https://framerusercontent.com/images/qNixBCrD8ja18xzfdcjTNfgIE.jpg?scale-down-to=1024 656w,https://framerusercontent.com/images/qNixBCrD8ja18xzfdcjTNfgIE.jpg 820w\"},className:\"framer-65f8cd\",\"data-framer-name\":\"Cover-FR\",whileHover:animation2}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Evaluate the quality of your website and your offer by displaying a popup on your pages.\"})}),className:\"framer-jwjkn8\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mw2v4k\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"o5rI4k6pi\"},motionChild:true,nodeId:\"WTDGHUPwD\",openInNewTab:false,scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation6,className:\"framer-11sby9 framer-1nsokf6\",\"data-framer-appear-id\":\"11sby9\",\"data-framer-name\":\"CardsSources/WithLink\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-134uorn\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ciq82q\",\"data-framer-name\":\"CircleIcon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:22,pixelWidth:22,src:\"https://framerusercontent.com/images/7Jvf2scy0uPfvgOI8BOJ51oxWI.svg\"},className:\"framer-gp2134\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"With a Link\"})}),className:\"framer-ww0hpl\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v23\",activeLocale)??\"Screenshot of a survey link showing a step in the distributed survey\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/csnyQRQZOoVlh7Dk2r8gF3pLSkU.jpg\",srcSet:\"https://framerusercontent.com/images/csnyQRQZOoVlh7Dk2r8gF3pLSkU.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/csnyQRQZOoVlh7Dk2r8gF3pLSkU.jpg 820w\"},className:\"framer-aa105v\",\"data-framer-name\":\"Cover-EN\",whileHover:animation2}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:getLocalizedValue(\"v23\",activeLocale)??\"Screenshot of a survey link showing a step in the distributed survey\",fit:\"fill\",pixelHeight:1284,pixelWidth:820,sizes:\"410px\",src:\"https://framerusercontent.com/images/7tapye90tyxMFHpYbXhmwxvDf4.jpg\",srcSet:\"https://framerusercontent.com/images/7tapye90tyxMFHpYbXhmwxvDf4.jpg?scale-down-to=1024 653w,https://framerusercontent.com/images/7tapye90tyxMFHpYbXhmwxvDf4.jpg 820w\"},className:\"framer-9pl897\",\"data-framer-name\":\"Cover-FR\",whileHover:animation2}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Distribute you forms across multiple platforms.\"})}),className:\"framer-1ipw80g\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})],startFrom:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tjnzd6\",\"data-framer-name\":\"Companies\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3d3o3\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"They trust us to collect user feedback\"})}),className:\"framer-1njlx7h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gvk5ut\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k8fug8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"N8g769MKw\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{gap:20,speed:90}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"N8g769MKw\",layoutId:\"N8g769MKw\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eb3app\",\"data-framer-name\":\"Worklife Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16ysooq\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:82,svg:'<svg width=\"82\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.462 9.249h-.004v.003c.568 1.064.912 2.306.912 3.749 0 .219-.019.549-.055 1.012l-.013.165a.062.062 0 0 1-.063.057H70.773a.062.062 0 0 0-.062.065c.052 1.285.445 2.333 1.164 3.108.745.802 1.696 1.191 2.905 1.191.926 0 1.72-.244 2.362-.727.64-.48 1.074-1.162 1.29-2.023l.035-.134a.064.064 0 0 1 .061-.048h2.575c.04 0 .069.036.062.075l-.038.211c-.276 1.516-.98 2.773-2.089 3.736-1.11.966-2.488 1.455-4.093 1.455-1.395 0-2.634-.318-3.685-.95-1.052-.632-1.88-1.538-2.461-2.694-.578-1.149-.87-2.463-.87-3.96 0-1.498.282-2.833.842-3.971.135-.275.283-.533.445-.779a.064.064 0 0 0-.052-.099h-3.116a.062.062 0 0 0-.061.062V20.85a.064.064 0 0 1-.063.063h-2.642a.064.064 0 0 1-.063-.063V8.755a.063.063 0 0 0-.063-.064h-2.132a.063.063 0 0 0-.063.064V20.85a.064.064 0 0 1-.063.063h-2.641a.064.064 0 0 1-.063-.063V6.242c0-.035.028-.064.063-.064h4.901a.063.063 0 0 0 .063-.063V4.657c0-1.31.282-2.278.843-2.904.562-.626 1.467-.939 2.719-.939h2.538c.034 0 .063.03.063.064v2.271a.064.064 0 0 1-.063.064h-1.75c-.537 0-1.002.126-1.234.375-.233.25-.348.663-.348 1.242v1.284c0 .034.027.063.062.063h3.244c.033 0 .061.028.061.062v2.156c0 .062.079.087.114.038a6.189 6.189 0 0 1 1.681-1.546c1.017-.632 2.214-.953 3.501-.953s2.444.286 3.44.85c1 .565 1.796 1.394 2.37 2.465Zm-9.51 2.582h7.565v.001c.04 0 .068-.036.063-.074-.146-.992-.543-1.783-1.18-2.352-.71-.633-1.626-.955-2.72-.955-.97 0-1.835.339-2.572 1.009-.657.598-1.066 1.367-1.218 2.295a.066.066 0 0 0 .063.076ZM58.258.814H60.9c.035 0 .063.028.063.064v3.05a.063.063 0 0 1-.063.063h-2.642a.063.063 0 0 1-.063-.064V.877c0-.034.029-.063.063-.063Zm-17.344 9.292h.003l.73-3.345c-.333-.168-.932-.254-1.357-.186-2.12.333-3.39 2.146-4.895 7.509L36.9 6.706l-.22-.166H32.4v.333c1.156.083 1.507.304 1.204 1.943l-2.547 12.097h2.872c1.723-7.726 4.036-12.955 6.985-10.806ZM53.231.814h2.641c.034 0 .063.03.063.064V20.85a.064.064 0 0 1-.063.063H53.23a.064.064 0 0 1-.063-.063v-3.053c0-.07-.09-.088-.119-.027-.997 2.138-2.523 3.394-3.918 3.394-1.983 0-3.193-1.779-4.872-5.946-.08-.271-.142-.54-.14-.608-.652 1.729-1.292 3.821-1.869 6.303h-2.917l3.866-17.812c.303-1.639-.048-1.87-1.204-1.953V.814h4.357l.221.168L43.58 13.96c2.01-6.224 4.23-7.357 6.79-7.357 1.24 0 2.064.889 1.954 2.167-.166 1.89-2.285 4.195-5.505 5.28 2.01 4.251 2.835 5.446 3.77 5.53.606.038 1.285-.607 1.866-1.925a8.661 8.661 0 0 0 .713-3.492V.878c0-.035.029-.064.063-.064Zm-9.104 13.778v.001c1.572-.508 5.113-1.937 5.474-4.766.133-1.05-.47-1.612-1.047-1.612-1.044 0-2.779 2.02-4.427 6.377Zm-24.909-1.134c1.019-4.418 4.652-6.92 7.872-6.92 3.221 0 5.56 3.14 4.542 7.614-.991 4.474-4.597 7.03-7.79 7.03-3.412 0-5.615-3.25-4.624-7.725v.001Zm4.928 7.28c1.706-.056 3.495-2.611 4.403-7.03.854-4.363.138-6.78-1.734-6.725-1.816.056-3.688 2.723-4.541 7.003-.853 4.417 0 6.808 1.872 6.752ZM18.137 7.171l.023.06-.002.004c1.574 4.08-.275 10.439-3.57 12.919-.676.51-1.574 1.027-2.58 1.027-2.004 0-3.765-1.965-3.119-5.637l.32-1.472c-1.68 5.114-4.2 7.114-6.65 7.114-2.175 0-3.056-1.668-2.284-5.558L1.62 8.82c.29-1.64-.046-1.862-1.153-1.945v-.333h4.159l.211.166-1.563 8.337c-.606 3.306-.083 4.335.936 4.335 1.134 0 2.599-1.715 3.884-4.728.692-1.626 1.633-5.775 1.633-5.775.304-1.64-.022-1.92-1.178-2.002V6.54h4.331l.222.166-1.294 8.003c-.484 2.72-.166 4.761 1.399 4.761.552 0 1.104-.38 1.568-.79 1.326-1.171 2.127-2.826 2.425-4.552.373-2.108.21-4.337-.864-6.177a8.512 8.512 0 0 0-.34-.514c-.345-.48-.817-.534-1.231-.564h-.008V6.54h2.974l.216.165c.072.162.128.307.189.466Z\" fill=\"#101010\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1szc7gg\",\"data-framer-name\":\"RC Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fcwt2a\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:36,intrinsicWidth:96,svg:'<svg width=\"96\" height=\"36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M91.811 22.698c.79 0 1.431.644 1.431 1.436 0 .792-.641 1.436-1.43 1.436a1.436 1.436 0 0 1 0-2.873Zm0 2.522c.6 0 1.083-.485 1.083-1.086a1.081 1.081 0 1 0-2.163 0c0 .601.483 1.086 1.08 1.086Zm-.225-.47c0 .11-.038.189-.175.189-.136 0-.174-.063-.174-.188v-1.207c0-.089.03-.163.178-.163h.44c.315 0 .58.093.58.457 0 .277-.14.417-.39.43l.277.452.022.082c0 .086-.053.137-.182.137-.125 0-.163-.095-.214-.188l-.245-.46h-.117v.46Zm.292-.74c.128 0 .206-.031.206-.172 0-.14-.078-.176-.206-.176h-.292v.348h.292Z\" fill=\"#1F2429\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M.192 34.024a1.3 1.3 0 0 0 1.297 1.302 1.3 1.3 0 0 0 1.297-1.302l.045-3.253c0-.079.063-.143.141-.143l.067.017 3.183 4.34c.223.211.522.341.854.341.685 0 1.32-.56 1.32-1.249 0-.206-.051-.4-.139-.573l-1.99-3.17c.992-.52 1.741-1.736 1.741-3.095 0-2.276-1.595-3.985-3.928-4.123-1.302-.077-2.254.39-2.973 1.061C.26 24.97 0 26.063 0 27.239l.192 6.785Zm3.75-8.169c.786 0 1.425.593 1.425 1.323 0 .731-.639 1.323-1.426 1.323-.787 0-1.425-.592-1.425-1.323 0-.73.638-1.323 1.425-1.323Zm44.876 3.385c0 3.803 3.198 6.088 5.739 6.088 1.747 0 3.572-.774 4.577-1.96.188-.226.3-.516.3-.834a1.298 1.298 0 0 0-1.888-1.157l-1.063.72a3.17 3.17 0 0 1-1.732.513c-1.802 0-3.23-1.508-3.23-3.37s1.428-3.37 3.23-3.37c.637 0 1.23.187 1.732.513l1.03.686a1.298 1.298 0 0 0 1.89-1.158 1.313 1.313 0 0 0-.302-.833c-1.005-1.186-2.473-1.926-4.218-1.926-3.35 0-6.065 2.726-6.065 6.088Zm-21.825 3.934a1.319 1.319 0 0 0 1.048 2.12c.43 0 .814-.21 1.054-.531l1.417-1.895h3.347l.01 1.09c0 .738.673 1.335 1.408 1.335.734 0 1.33-.597 1.33-1.336v-9.6a1.397 1.397 0 0 0-2.455-.913l-7.16 9.73Zm6.867-5.006v2.019H32.6a.112.112 0 0 1-.114-.112l.019-.063 1.355-1.844Zm28.76-4.724a1.39 1.39 0 0 0-1.058-.487c-.771 0-1.397.387-1.397 1.162v9.84c0 .736.596 1.334 1.33 1.334.736 0 1.408-.598 1.408-1.334l.012-1.092h3.346l1.417 1.896c.24.322.624.53 1.054.53a1.323 1.323 0 0 0 1.049-2.12l-7.161-9.729Zm1.648 6.569.02.062a.115.115 0 0 1-.114.114l-1.26-.002v-2.018l1.354 1.843Zm-43.698-.81c0-3.383-2.732-6.124-6.1-6.124-3.372 0-6.102 2.741-6.102 6.124 0 3.382 2.73 6.125 6.101 6.125 3.369 0 6.101-2.743 6.101-6.125Zm-6.101-3.295a3.289 3.289 0 0 1 3.282 3.295 3.29 3.29 0 0 1-3.282 3.296 3.29 3.29 0 0 1-3.284-3.296 3.29 3.29 0 0 1 3.284-3.295Zm10.365.802a.175.175 0 0 1-.128-.055l-3.024-3.195a1.275 1.275 0 0 0-.931-.4 1.286 1.286 0 0 0-.943 2.16l3.672 4.275.058 4.496c0 .718.58 1.3 1.296 1.3.716 0 1.295-.582 1.295-1.3l.059-4.496 3.672-4.276a1.286 1.286 0 0 0-.944-2.16c-.366 0-.697.154-.93.401l-3.024 3.195a.175.175 0 0 1-.128.055Zm64.476-2.788c-.323-.577-.881-.89-1.632-.89-.957 0-1.762.78-1.762 1.74v9.349c0 .728.617 1.318 1.342 1.318.726 0 1.341-.59 1.341-1.318v-5.698a.08.08 0 0 1 .082-.08l.068.038 3.398 6.025a1.732 1.732 0 0 0 3.247-.85v-9.508c0-.727-.589-1.318-1.314-1.318-.726 0-1.314.591-1.314 1.318v5.698l-.082.08-.068-.038-3.306-5.866Zm-15.221 0c-.323-.577-.88-.89-1.632-.89-.958 0-1.761.78-1.761 1.74v9.349c0 .728.616 1.318 1.341 1.318.726 0 1.342-.59 1.342-1.318l-.001-5.698a.08.08 0 0 1 .082-.08l.07.038 3.396 6.025a1.732 1.732 0 0 0 3.247-.85v-9.508c0-.727-.588-1.318-1.314-1.318-.726 0-1.314.591-1.314 1.318v5.698l-.082.08-.067-.038-3.307-5.866ZM41.212 32.68a.155.155 0 0 1-.154-.155V24.37c0-.765-.618-1.386-1.38-1.386-.764 0-1.382.62-1.382 1.386v10.15c0 .427.344.773.77.773h4.819c.718 0 1.301-.584 1.301-1.306 0-.72-.583-1.306-1.301-1.306l-2.673-.001Zm40.405 1.336a1.42 1.42 0 0 0 1.418 1.424 1.42 1.42 0 0 0 1.418-1.424v-9.863a1.42 1.42 0 0 0-1.418-1.423c-.783 0-1.418.638-1.418 1.423v9.863ZM39.683 6.552c.218 0 .436-.03.646-.087a2.464 2.464 0 0 0 1.715-3.02 2.455 2.455 0 0 0-3.01-1.724 2.463 2.463 0 0 0-1.719 3.022 2.47 2.47 0 0 0 2.353 1.809h.015Zm26.203.12a2.44 2.44 0 0 0-1.127-1.505 2.443 2.443 0 0 0-3.353.865 2.445 2.445 0 0 0-.264 1.863 2.44 2.44 0 0 0 1.125 1.504 2.43 2.43 0 0 0 1.245.343 2.459 2.459 0 0 0 2.374-3.07Zm-4.248 3.795a2.435 2.435 0 0 0-1.243-.342 2.459 2.459 0 0 0-2.376 3.07 2.435 2.435 0 0 0 1.125 1.505c.379.223.808.342 1.246.342.861 0 1.67-.462 2.11-1.207a2.448 2.448 0 0 0 .262-1.863 2.442 2.442 0 0 0-1.124-1.505Zm-5.042-8.746a2.454 2.454 0 0 0-.647-.087c-1.1 0-2.069.745-2.36 1.81a2.463 2.463 0 0 0 1.715 3.02c.212.06.43.088.647.088a2.46 2.46 0 0 0 .645-4.831Zm-1.618 5.94a2.455 2.455 0 0 0-3.007 1.724 2.46 2.46 0 0 0 2.363 3.107 2.458 2.458 0 0 0 2.36-1.81 2.464 2.464 0 0 0-1.716-3.022Zm-19.745 2.465a2.41 2.41 0 0 0-1.24.342 2.464 2.464 0 0 0-.863 3.37 2.475 2.475 0 0 0 2.099 1.204h.014a2.436 2.436 0 0 0 2.37-1.848 2.45 2.45 0 0 0-.264-1.86 2.467 2.467 0 0 0-2.116-1.208ZM41.3 7.574c-.218 0-.438.028-.648.085a2.463 2.463 0 0 0-1.717 3.022 2.47 2.47 0 0 0 2.352 1.81h.056a2.434 2.434 0 0 0 2.085-1.24 2.448 2.448 0 0 0 .234-1.866A2.457 2.457 0 0 0 41.3 7.574ZM47.816.56a2.458 2.458 0 0 0 0 4.916 2.456 2.456 0 0 0 2.449-2.459A2.456 2.456 0 0 0 47.816.56Zm0 6.157a2.458 2.458 0 0 0 0 4.917 2.457 2.457 0 0 0 2.449-2.46 2.456 2.456 0 0 0-2.449-2.457ZM32.111 4.825a2.458 2.458 0 0 0-2.369 1.848 2.45 2.45 0 0 0 .265 1.861 2.47 2.47 0 0 0 2.099 1.207l.016.002a2.43 2.43 0 0 0 1.245-.344 2.44 2.44 0 0 0 1.123-1.503 2.445 2.445 0 0 0-.264-1.863 2.462 2.462 0 0 0-2.115-1.208Zm5.724 15.434a.729.729 0 0 0 .465-.166c2.166-1.788 5.819-2.897 9.531-2.897 3.75 0 7.3 1.083 9.502 2.896a.729.729 0 0 0 1.029-.1.733.733 0 0 0-.103-1.033c-2.452-2.023-6.35-3.23-10.428-3.23-4.097 0-8.007 1.208-10.46 3.23a.737.737 0 0 0-.102 1.032.73.73 0 0 0 .566.268Zm-.976-1.831c-.324 0-.646-.149-.855-.43a1.078 1.078 0 0 1 .214-1.501c2.837-2.13 7.177-3.404 11.612-3.404 4.418 0 8.748 1.273 11.583 3.404a1.072 1.072 0 0 1-1.28 1.716c-1.914-1.438-5.625-2.974-10.302-2.974h-.001c-4.698 0-8.416 1.536-10.331 2.975a1.06 1.06 0 0 1-.64.214Z\" fill=\"#1F2429\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1ji64\",\"data-framer-name\":\"Cr\\xe9dit Agricole Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16rjwrw\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:109,svg:'<svg width=\"109\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m12.777 16.763.258-.026.27-.04.636-.082.703-.149.717-.163.704-.203.73-.216.731-.257.555-.176.23-.108.216-.136.19-.175.176-.19.135-.23 3.505-7.36 5.614 13.99.068.162.095.15.122.135.135.108.162.094.163.055.175.04h.176L34.02 22 25.28 3.26h-5.168l-7.334 13.503Zm24.49-12.379V1.002l-8.538 4.654-.08.04-.177.068-.189.054h-.176l-.148-.027-.163-.054-.136-.054-.053-.027.067.216.135.433.176.447.23.446.27.406.285.338.27.244.244.135.23.054h.23l.216-.027.163-.054.135-.054.054-.04 6.955-3.816Zm17.115 11.609h-.095l-.08.013-.082.014-.054.027-.068.04-.054.04-.054.055-.04.067-.65 1.097h2.936v1.934l-.23.068-.203.054-.19.04-.202.041-.19.04-.257.028-.203.027-.175.014h-.583l-.203-.027-.284-.028-.175-.026-.177-.04-.175-.042-.176-.054-.162-.068-.203-.108-.163-.095-.135-.108-.135-.108-.135-.122-.122-.121-.122-.136-.095-.149-.121-.203-.082-.162-.068-.176-.053-.176-.041-.175-.04-.19-.028-.176-.014-.19v-.54l.028-.177.04-.162.054-.176.054-.162.068-.163.082-.162.067-.095.108-.148.122-.136.121-.135.136-.122.135-.108.19-.122.162-.095.176-.094.19-.068.175-.067.257-.068.203-.04.204-.028.189-.027.203-.013.203-.014.202-.014h.19l.203.014.202.014.204.027.203.027.202.027.204.04.203.028.203.04.203.054.202.041.204.054.19.054.201.054.095.028V13.07l-.229-.068-.19-.067-.203-.054-.202-.04-.19-.042-.203-.04-.203-.04-.366-.054-.202-.028-.204-.027-.202-.013-.203-.014-.19-.013h-1.028l-.203.013-.203.014-.203.027-.189.026-.19.027-.203.055-.19.054-.256.068-.19.054-.176.067-.189.082-.162.08-.176.082-.162.108-.163.094-.189.136-.149.122-.148.122-.136.135-.135.149-.136.135-.108.149-.108.162-.109.163-.094.162-.121.23-.069.163-.067.19-.068.175-.04.19-.054.189-.028.19-.027.188-.013.244v.379l.027.189.027.203.027.19.054.189.04.19.069.175.067.176.095.203.081.176.094.162.095.163.108.162.123.149.108.15.135.134.163.15.162.12.162.109.175.108.177.095.175.095.177.094.189.068.176.081.19.068.216.067.202.041.203.04.204.028.203.027.203.027.216.013.19.027.216.014h.203l.352.013.203-.014h.189l.203-.013.216-.014.203-.013.203-.027.203-.027.203-.027.217-.013.189-.04.203-.028.203-.041.203-.04.202-.027.203-.054.204-.054.202-.041.203-.054.177-.055v-4.315h-3.559Zm8.064-12.881.15.014.174.04.136.04.108.041.121.068.095.068.095.08.095.096.095.122.054.121.054.108.027.122.027.135v.19l-.013.122-.027.108-.04.122-.068.107-.082.11-.081.107-.136.122-.12.081-.136.068-.136.04-.136.054-.134.028-.149.014H61.08l-.068.013-.081.027-.054.013-.068.04-.054.055-.041.054-.027.027-.608 1.11 1.92-.014 1.95 2.909h2.3l-2.233-3.396.188-.054.163-.068.162-.081.217-.108.149-.095.136-.094.135-.109.12-.121.11-.136.135-.176.095-.135.08-.149.054-.149.054-.135.041-.149.014-.176.013-.162v-.122l-.013-.162-.027-.162-.04-.163-.055-.162-.053-.163-.081-.162-.095-.149-.11-.149-.108-.135-.12-.121-.122-.122-.136-.109-.15-.108-.147-.08-.163-.082-.163-.068-.161-.054-.163-.054-.176-.04-.175-.014-.177-.014-.176-.013-.15.013h-5.708v7.888h2.056V3.112l2.855-.013.122.013Zm9.769-1.813L73.338 0h-1.922l-.636 1.299h1.435ZM93.321 9.7h2.07V3.207h2.314l.068-.014.081-.013.053-.014.055-.027.04-.027.028-.04.04-.041.014-.041.026-.054.014-.027.014-.013.379-1.07h-7.442l-.067.028-.055.014-.054.04-.054.04-.04.041-.042.054-.027.054-.012.027-.528 1.083h3.125V9.7Zm-27.073 7.496.162-.055.163-.053.15-.081.201-.109.136-.081.122-.108.12-.108.11-.122.094-.136.095-.135.082-.149.053-.162.054-.163.04-.162.027-.175.014-.177v-.149l-.014-.175-.026-.163-.028-.162-.054-.162-.053-.15-.082-.162-.067-.108-.095-.149-.108-.134-.122-.123-.121-.122-.204-.148-.163-.095-.161-.081-.176-.081-.284-.095-.19-.054-.203-.041-.189-.04-.19-.028-.202-.027-.203-.013-.204-.014h-5.047v7.902h2.07V14.18h2.761l.095.013.135.013.135.028.122.04.163.082.108.053.08.069.082.067.082.121.053.108.055.123.04.121.028.109.012.107v.068l-.012.109-.015.121-.04.095-.054.122-.067.122-.082.095-.136.148-.12.068-.122.081-.122.054-.15.054-.134.027-.136.028H63.19l-.055.013-.052.027-.069.027-.053.027-.055.04-.054.042-.04.04-.042.04-.027.055-.541 1.014h1.8l2.07 2.896h2.245L66.06 17.25l.19-.054Zm-24.11-4.465-4.019 7.915h2.22l.825-1.786h2.407l.095-.027.095-.027.081-.04.082-.055.067-.067.068-.068.054-.081.013-.027.623-1.029h-2.936l1.65-3.464 2.977 6.644h2.138l-3.653-7.888h-2.787ZM89.275 1.8H87.26v7.9h2.015V1.8ZM48.997 8.55l.15.135.148.122.149.122.162.108.162.108.163.109.176.094.176.081.135.055.19.054.189.067.19.054.202.054.19.042.203.026.189.041.243.027.203.014.203.013h.203l.203.013h.203l.203-.013.298-.013.203-.014.203-.013.19-.028.202-.027.19-.04.189-.04.203-.042.19-.04.202-.068.189-.04.19-.068.19-.068.148-.04V7.847l-.08.041-.19.068-.19.081-.19.054-.189.068-.19.054-.202.04-.284.054-.176.028-.203.027-.19.026-.189.014-.203.014h-.405l-.19.014-.176-.014-.189-.014-.176-.027-.19-.04-.176-.054-.203-.055-.162-.054-.162-.068-.149-.08-.15-.095-.134-.095-.135-.108-.176-.163-.108-.135-.109-.135-.108-.149-.08-.149-.07-.162-.067-.162-.067-.258-.04-.176-.028-.19v-.54l.028-.176.04-.257.04-.163.054-.176.055-.162.08-.149.082-.148.135-.19.122-.135.122-.122.148-.122.136-.108.148-.108.244-.135.163-.082.189-.067.176-.054.19-.054.256-.055.19-.013.203-.027h.595l.285.013.202.014.203.027.203.027.176.027.203.04.19.041.202.054.19.04.189.069.19.054.094.04.23.068.014-1.475-.121-.027-.19-.054-.19-.067-.202-.055-.19-.04-.204-.054-.188-.041-.203-.04-.23-.041-.203-.027-.19-.027-.203-.028-.203-.013-.203-.014h-.784l-.19.014-.203.013-.203.028-.19.027-.189.04-.189.04-.19.055-.189.054-.216.068-.176.067-.176.068-.19.081-.162.095-.175.095-.163.095-.163.108-.148.121-.149.122-.135.122-.136.135-.135.136-.122.148-.122.15-.108.162-.108.148-.081.176-.095.163-.108.257-.068.176-.054.175-.054.19-.04.19-.041.19-.014.27-.013.19v.378l.027.189.027.19.027.189.054.176.054.19.095.27.08.176.082.162.095.176.095.162.108.15.108.148.122.162.162.149ZM69.82 20.647h2.084v-7.888h-2.07l-.014 7.888Zm24.883-7.888h-1.935v7.888h6.156l.594-1.407h-4.815v-6.481ZM75.882 8.32h-6.32V3.14h6.021l-.5-1.353H67.56v7.888h7.644l.677-1.353Zm28.953 10.892h-2.557v-5.1h6.021l-.474-1.381h-7.617v7.9h7.78l.623-1.42h-3.776Z\" fill=\"#1F2429\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m103.739 15.925-.054.013h-.068l-.082.014-.066.027-.054.041-.068.04-.055.054-.013.028-.784 1.163h3.45l.054-.014.068-.013.067-.027.067-.027.055-.041.054-.054.027-.04.838-1.164h-3.436Zm-11.73.514-.013-.19-.028-.148-.027-.19-.04-.176-.055-.189-.054-.176-.08-.176-.068-.177-.095-.162-.095-.162-.122-.162-.12-.149-.123-.149-.135-.149-.136-.134-.148-.136-.15-.122-.176-.122-.161-.108-.176-.108-.177-.095-.189-.081-.176-.095-.176-.068-.189-.068-.19-.067-.188-.054-.19-.055-.204-.04-.188-.04-.204-.04-.203-.014-.19-.013-.19-.013h-.174l-.068-.014h-.095l-.163.014h-.162l-.189.013-.19.013-.202.013-.19.027-.203.04-.189.041-.19.04-.19.055-.188.055-.177.067-.175.081-.19.082-.162.08-.19.123-.148.094-.163.122-.148.122-.15.122-.134.135-.136.149-.12.135-.136.176-.109.149-.109.162-.095.162-.08.176-.068.176-.081.177-.055.189-.067.257-.027.189-.028.203-.027.19v.54l.027.204.014.189.04.19.04.189.041.176.068.203.067.189.082.176.08.162.095.176.11.163.162.244.12.148.136.136.135.148.136.135.148.122.176.136.163.108.161.095.177.108.176.081.189.095.176.067.19.082.256.068.19.054.203.04.203.04.189.028.203.027.19.013.203.027h.203l.177.014h.216l.203-.014.204-.013.203-.013.19-.027.324-.055.19-.04.188-.04.19-.055.19-.054.188-.082.177-.067.175-.081.258-.135.176-.095.161-.095.15-.108.149-.122.148-.122.136-.135.135-.135.176-.217.108-.162.109-.162.095-.176.081-.162.082-.176.066-.19.068-.176.04-.189.055-.19.027-.188.027-.19.027-.203.014-.19v-.108l-.014-.19-.014-.203Zm-2.22.338v.162l-.013.19-.027.189-.026.15-.04.188-.04.19-.069.176-.067.176-.068.176-.095.176-.095.149-.12.135-.123.122-.122.122-.135.121-.162.095-.149.095-.163.067-.16.055-.163.054-.163.04-.256.04-.19.014h-.352l-.19-.027-.175-.028-.176-.04-.177-.054-.175-.054-.177-.068-.203-.108-.148-.095-.136-.108-.135-.123-.122-.122-.189-.23-.095-.134-.081-.15-.082-.161-.068-.162-.067-.177-.053-.176-.041-.175-.04-.257-.028-.19v-.365l.027-.23.028-.204.027-.189.04-.176.055-.189.066-.162.068-.176.095-.149.082-.162.122-.135.107-.136.122-.121.136-.109.202-.149.15-.081.162-.082.163-.067.161-.054.163-.04.27-.04.257-.028h.177l.081-.014.27.027.325.055.162.04.177.055.161.067.15.068.162.094.136.095.134.108.135.123.122.121.121.135.095.15.095.148.068.162.067.162.068.162.04.163.027.135.027.189.027.19.027.175v.19ZM71.12 5.02h-.068l-.082.013-.095.014-.066.04-.082.027-.053.055-.069.067-.838 1.137h3.342l.08-.014.082-.013.068-.028.08-.04.068-.054.054-.04.054-.068.041-.041.73-1.055H71.12Zm11.433 4.52.27-.069.19-.068.175-.067.177-.068.176-.095.27-.149.163-.095.148-.094.163-.109.135-.121.135-.136.121-.121.163-.19.109-.149.094-.149.094-.162.095-.176.068-.176.081-.203.04-.203.055-.189.04-.19.028-.189.013-.189.013-.203.014-.176.013-.176V5.48l-.013-.175-.027-.19-.028-.19-.04-.175-.054-.19-.055-.175-.068-.176-.081-.176-.082-.163-.093-.162-.11-.163-.135-.189-.122-.149-.134-.135-.135-.135-.15-.122-.149-.095-.148-.108-.15-.095-.162-.094-.148-.082-.162-.081-.163-.068-.175-.068-.163-.054-.176-.054-.162-.055-.176-.04-.177-.04-.175-.028-.162-.027-.177-.014-.161-.013-.177-.013h-.054l-.109.013h-4.181v7.888h4.628l.19-.013.19-.027.188-.027.203-.04.192-.04Zm-.487-1.34-.163.054-.162.04-.163.027-.161.027h-2.423V3.112h1.99l.188.013h.082l.095.014.162.04.176.04.162.054.163.068.161.082.15.08.149.096.148.108.122.121.109.095.122.135.095.135.094.149.067.149.082.162.054.149.04.176.028.108.04.176.028.176v.5l-.028.176-.027.176-.054.176-.04.149-.055.175-.068.176-.081.163-.094.162-.095.162-.109.15-.109.135-.108.121-.135.095-.135.095-.15.08-.147.07Zm-.813 10.742-.149.054-.202.055-.19.053-.202.054-.204.041-.19.04-.202.041-.203.014-.175.027-.204.027-.19.013-.188.014h-.203l-.19-.014-.203-.013-.257-.014-.175-.027-.19-.027-.163-.04-.175-.068-.163-.054-.19-.095-.161-.081-.136-.095-.149-.094-.136-.109-.161-.175-.109-.136-.108-.135-.095-.149-.082-.149-.066-.162-.081-.27-.041-.19-.014-.19-.014-.175v-.19l.014-.19.014-.175.027-.176.027-.176.054-.162.055-.162.066-.15.109-.189.094-.149.11-.149.121-.121.121-.122.135-.122.15-.108.161-.094.163-.082.176-.081.177-.068.175-.054.203-.04.189-.028.19-.027.203-.013.189-.013.258.013.188.013.217.027.203.014.189.04.204.027.202.04.19.055.203.055.189.053.203.054.189.068.19.068h.013l.217.08v-1.515l-.067-.026-.15-.055-.04-.013-.19-.068-.202-.067-.19-.054-.243-.055-.19-.04-.204-.04-.202-.028-.203-.027-.392-.04-.203-.014-.203-.013-.204-.014-.242-.013h-.393l-.203.013-.203.014-.311.04-.203.027-.189.04-.19.041-.19.054-.175.068-.244.095-.175.068-.177.095-.162.094-.175.095-.15.108-.189.149-.15.121-.134.122-.15.135-.12.15-.122.148-.176.216-.109.176-.095.163-.095.176-.066.176-.068.135-.068.19-.054.176-.04.189-.041.189-.041.311-.013.19v.379l.013.243.027.19.04.189.041.19.041.189.095.244.068.175.08.176.095.163.095.175.135.216.122.15.121.149.122.148.15.136.19.162.148.122.162.122.163.094.188.122.177.081.188.082.19.067.177.068.188.054.38.08.202.028.204.027.202.027.203.014.312.013.203.013h.405l.203-.013h.204l.216-.027.19-.013.175-.014.203-.027.203-.027.203-.04.19-.041.202-.054.204-.054.19-.055.188-.054.081-.027.014-.014.217-.067.014-1.475-.204.081-.04.014ZM37.267 10.04V6.034l-2.814 1.597-2.72 1.53-2.544 1.406-2.314 1.259-2.083 1.11-1.867.96-1.704.825-1.53.69-1.434.61-1.366.499-1.353.447-1.313.379-1.312.31-1.272.272-1.204.202-1.137.162-1.015.109-.906.054-.758.04-.663-.026-1-.109-.69-.162-.501-.203-.406-.27-.325-.312-.257-.365-.149-.406-.054-.473.054-.569.203-.649.325-.704.432-.717.542-.717.609-.69.622-.636.636-.554.69-.542.771-.582.799-.527.77-.474.799-.446.825-.42.825-.365.84-.339.798-.27.744-.23.663-.149.608-.094.61-.027.635.053.338.04-.175-.621-.311-1.055-.244-.745-.19-.446-.148-.244-.149-.149-.163-.108-.256-.094-.407-.041-.581.027-.73.095-.826.176-.853.243-.892.325-.866.365-.826.38-.798.418-.785.447-.798.5-.825.555-.812.582-.717.582-.636.528-.568.54-.555.569-.515.622-.473.65-.42.663-.338.717-.27.717-.149.73-.068.704.055.758.135.798.216.798.284.758.325.69.379.609.446.595.515.541.554.474.595.406.664.324.785.285.933.257 1.001.176 1.028.108 1.015.027.974-.054.88-.068.839-.122.839-.149.838-.162.785-.19.771-.189.812-.243.839-.244.839-.27.852-.298.853-.325.852-.338.852-.365.866-.406.92-.446.528-.285.69-.365.947-.514 1.38-.744 1.908-1.056 2.53-1.394 3.031-1.691 3.342-1.84Z\" fill=\"#1F2429\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7yc7k\",\"data-framer-name\":\"Axeptio Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f9zuh9\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:111,svg:'<svg width=\"111\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M5.946 15.93a.92.92 0 0 0 .306-.207L17.17 4.632a.974.974 0 0 0 0-1.35.94.94 0 0 0-.668-.282.928.928 0 0 0-.667.282L5.578 13.69l-3.523-3.577a.94.94 0 0 0-.667-.283.928.928 0 0 0-.668.283.945.945 0 0 0-.28.674.955.955 0 0 0 .28.675l4.203 4.26a.924.924 0 0 0 .661.278.91.91 0 0 0 .362-.07Zm7.876-3.088a.783.783 0 0 0 1.08-.13l6.286-7.077a.957.957 0 0 0 .187-.31 1.05 1.05 0 0 0 0-.734.958.958 0 0 0-.187-.31.845.845 0 0 0-.275-.208.763.763 0 0 0-.648 0 .845.845 0 0 0-.275.208l-6.297 7.083a.998.998 0 0 0-.236.491c-.034.187-.017.38.048.556a.94.94 0 0 0 .317.43Zm6.008 4.851 2.366-2.956c.077-.093.138-.205.18-.328a1.23 1.23 0 0 0 .003-.78 1.051 1.051 0 0 0-.178-.33.828.828 0 0 0-.264-.221.675.675 0 0 0-.624 0 .83.83 0 0 0-.264.22l-2.371 2.95a1.172 1.172 0 0 0-.238.722c0 .27.085.53.238.723a.818.818 0 0 0 .263.227.664.664 0 0 0 .626 0 .818.818 0 0 0 .263-.227Zm-2.824-2.974 5.165-5.156A.915.915 0 0 0 21.523 8a.918.918 0 0 0-.649.268l-5.17 5.168a.913.913 0 0 0 0 1.283.923.923 0 0 0 .651.281.927.927 0 0 0 .651-.281Zm26.429-7.761c0 .02-.028.034-.043.015-.903-1.259-2.475-2.018-4.231-2.018-3.26 0-5.72 2.551-5.72 5.92 0 3.335 2.518 5.94 5.72 5.94 1.761 0 3.333-.764 4.231-2.028.015-.02.043-.01.043.01v1.146a.63.63 0 0 0 .621.637h.51a.627.627 0 0 0 .621-.637V5.827a.633.633 0 0 0-.382-.584.616.616 0 0 0-.239-.048h-.51a.628.628 0 0 0-.437.188.64.64 0 0 0-.184.444v1.13Zm-2.692 7.913c-2.94.984-5.541-1.136-5.541-4.016a4.119 4.119 0 0 1 1.168-2.96 4.044 4.044 0 0 1 2.913-1.23 4.092 4.092 0 0 1 1.705.352c.538.238 1.018.59 1.41 1.032a4.198 4.198 0 0 1 1.023 3.277 4.056 4.056 0 0 1-.81 2.18 4 4 0 0 1-1.868 1.365ZM64.41 4.96c-3.338 0-5.754 2.482-5.754 5.9 0 3.456 2.416 5.963 5.754 5.963 1.941 0 3.649-.842 4.688-2.286a.572.572 0 0 0-.233-.843l-.398-.186a.737.737 0 0 0-.844.206 4.1 4.1 0 0 1-1.432 1.058 4.064 4.064 0 0 1-1.742.347c-2.174 0-3.688-1.317-3.988-3.442 0-.014.014-.024.034-.024h8.995a.477.477 0 0 0 .47-.45l.01-.343c-.009-3.536-2.24-5.9-5.56-5.9Zm0 1.703c2.096 0 3.537 1.298 3.8 3.393.004.015-.01.03-.02.03h-7.68c-.015 0-.025-.015-.02-.03.315-2.13 1.771-3.393 3.92-3.393ZM78.706 4.96c-1.743 0-3.338.793-4.231 2.052-.01.014-.049.01-.049-.015v-1.2a.6.6 0 0 0-.172-.415.59.59 0 0 0-.41-.177h-.577a.595.595 0 0 0-.597.592v15.61c0 .324.267.593.597.593h.577c.315 0 .582-.27.582-.593v-6.605c0-.02.039-.03.049-.01.907 1.264 2.475 2.028 4.23 2.028 3.261 0 5.721-2.542 5.721-5.915 0-3.389-2.46-5.945-5.72-5.945ZM77.158 6.9a4.109 4.109 0 0 1 3.823.544c.546.398.987.923 1.286 1.53.3.609.448 1.281.432 1.96a4.158 4.158 0 0 1-1.183 2.965 4.08 4.08 0 0 1-2.927 1.221 4.087 4.087 0 0 1-1.71-.351 4.123 4.123 0 0 1-1.414-1.036 4.194 4.194 0 0 1-1.015-3.289 4.042 4.042 0 0 1 .82-2.188A3.986 3.986 0 0 1 77.158 6.9ZM88.793.763h-.354a.69.69 0 0 0-.489.203.701.701 0 0 0-.205.492V5.17c0 .014-.014.03-.024.03h-1.296a.69.69 0 0 0-.49.204.703.703 0 0 0-.204.495v.167c0 .387.311.695.695.695h1.295c.01 0 .024.01.024.025v9.102c0 .382.31.7.694.7h.354a.696.696 0 0 0 .49-.206.708.708 0 0 0 .204-.494V6.787c0-.015.01-.025.03-.025h1.809a.691.691 0 0 0 .489-.203.704.704 0 0 0 .205-.492V5.9a.703.703 0 0 0-.203-.495.69.69 0 0 0-.491-.205h-1.81c-.02 0-.029-.01-.029-.03V1.46a.704.704 0 0 0-.205-.493.691.691 0 0 0-.489-.203ZM94.985 0c-.714 0-1.281.539-1.281 1.224 0 .656.577 1.195 1.28 1.195.748 0 1.315-.514 1.315-1.195C96.295.524 95.732 0 94.985 0Zm-.141 16.584h.286a.734.734 0 0 0 .518-.22.746.746 0 0 0 .215-.524V5.944a.747.747 0 0 0-.215-.524.733.733 0 0 0-.518-.22h-.286a.727.727 0 0 0-.683.459.754.754 0 0 0-.055.285v9.896c0 .412.33.744.738.744Zm9.69-11.624c-3.416 0-5.89 2.483-5.89 5.9 0 3.164 2.178 5.597 5.181 5.925 3.867.431 7.138-3.07 6.546-6.938-.442-2.89-2.761-4.887-5.837-4.887Zm0 10.155c-2.392 0-4.134-1.792-4.134-4.26 0-2.247 1.494-3.931 3.615-4.166a4.203 4.203 0 0 1 3.303 1.113 4.305 4.305 0 0 1 1.364 3.235 4.136 4.136 0 0 1-1.234 2.91 4.091 4.091 0 0 1-1.342.877c-.5.201-1.034.3-1.572.292ZM56.415 5.2h-.878a.844.844 0 0 0-.7.362l-2.28 3.59a.028.028 0 0 1-.043 0l-2.305-3.59a.845.845 0 0 0-.699-.362h-.878a.418.418 0 0 0-.378.234.43.43 0 0 0 .038.447l3.179 4.769c.01.005.01.02 0 .03l-3.654 5.214a.438.438 0 0 0 .344.69h.83a.85.85 0 0 0 .694-.352l2.829-4.064c.01-.01.034-.01.044 0l2.78 4.054a.85.85 0 0 0 .699.362h.853c.35 0 .55-.391.35-.685l-3.639-5.244v-.034l3.158-4.74a.428.428 0 0 0-.344-.68Z\" fill=\"#1F2429\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vl760u\",\"data-framer-name\":\"U Tech logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ssbph3\",\"data-framer-name\":\"Graphic\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 109 40\"><path d=\"M 24.457 0.175 C 23.917 0.128 23.635 0.115 23.096 0.115 C 24.059 0.141 25.023 0.249 25.993 0.438 C 36.252 2.438 42.82 12.798 40.664 23.584 C 38.51 34.362 28.438 41.482 18.18 39.48 C 17.727 39.392 17.277 39.287 16.832 39.164 C 18.577 39.703 20.45 39.999 22.43 39.999 C 24.41 39.999 25.94 39.729 27.402 39.399 C 33.734 37.958 38.86 33.505 41.42 27.928 C 42.533 25.423 43.107 22.713 43.104 19.972 C 43.104 8.932 34.461 1.03 24.451 0.181\" fill=\"rgb(0,0,0)\"></path><path d=\"M 0.98 18.47 C 0.227 29.317 8.607 38.76 20.032 39.745 C 19.413 39.689 18.796 39.602 18.186 39.482 C 7.926 37.487 1.358 27.121 3.514 16.335 C 5.656 5.631 15.599 -1.462 25.784 0.397 C 24.921 0.228 24.048 0.113 23.17 0.054 C 11.55 -0.748 1.735 7.504 0.98 18.47 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 26 0.438 C 15.74 -1.562 5.67 5.558 3.514 16.335 C 1.358 27.12 7.926 37.481 18.185 39.481 C 28.445 41.482 38.509 34.361 40.665 23.577 C 42.826 12.799 36.251 2.439 26 0.437 Z M 21.66 38.134 C 11.704 38.134 3.64 30.057 3.64 20.094 C 3.64 10.131 11.71 2.061 21.66 2.061 C 31.61 2.061 39.68 10.131 39.68 20.094 C 39.68 30.057 31.61 38.134 21.66 38.134 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.4\"></path><path d=\"M 31.671 11.499 L 25.501 11.499 C 24.369 11.499 24.214 11.957 24.214 12.651 L 24.214 22.695 C 24.14 24.998 23.284 25.733 21.648 25.733 C 20.011 25.733 19.115 24.958 19.075 22.506 L 19.075 12.644 C 19.075 11.95 18.913 11.492 17.788 11.492 L 11.618 11.492 L 11.618 23.442 C 11.618 26.09 12.123 27.208 13.221 28.346 C 14.911 30.111 17.869 30.852 21.648 30.852 C 25.427 30.852 28.384 30.112 30.075 28.346 C 31.166 27.208 31.678 26.096 31.678 23.442 L 31.665 11.492 Z\" fill=\"rgb(0,0,0)\"></path><path d=\"M 77.074 21.38 C 77.074 20.68 77.162 20.007 77.337 19.36 C 77.512 18.72 77.754 18.127 78.071 17.582 C 78.388 17.036 78.771 16.544 79.216 16.106 C 80.122 15.213 81.25 14.578 82.483 14.267 C 83.123 14.099 83.783 14.018 84.477 14.018 C 84.767 14.018 85.104 14.038 85.494 14.072 C 85.885 14.106 86.282 14.173 86.7 14.261 C 87.116 14.349 87.525 14.463 87.926 14.604 C 88.308 14.732 88.67 14.911 89.004 15.136 C 89.314 15.352 89.576 15.601 89.772 15.891 C 89.967 16.181 90.068 16.511 90.068 16.888 L 90.068 18.835 L 87.663 18.835 L 87.663 17.716 C 87.663 17.456 87.547 17.209 87.347 17.043 C 87.117 16.846 86.852 16.695 86.565 16.598 C 86.243 16.48 85.908 16.399 85.568 16.356 C 85.245 16.31 84.919 16.285 84.592 16.282 C 83.938 16.274 83.288 16.393 82.679 16.632 C 82.11 16.855 81.594 17.195 81.163 17.629 C 80.728 18.08 80.389 18.614 80.166 19.199 C 79.923 19.811 79.809 20.499 79.809 21.253 C 79.809 22.061 79.93 22.796 80.179 23.449 C 80.409 24.07 80.759 24.64 81.21 25.126 C 81.65 25.59 82.183 25.957 82.773 26.204 C 83.373 26.46 84.026 26.581 84.733 26.581 C 84.874 26.581 85.056 26.575 85.265 26.554 C 85.475 26.534 85.696 26.507 85.925 26.467 C 86.155 26.427 86.384 26.366 86.619 26.298 C 86.836 26.237 87.044 26.149 87.239 26.036 C 87.408 25.94 87.559 25.815 87.684 25.666 C 87.799 25.525 87.861 25.348 87.859 25.166 L 87.859 24.05 L 90.257 24.05 L 90.257 26.016 C 90.257 26.373 90.162 26.69 89.974 26.966 C 89.775 27.258 89.521 27.508 89.226 27.701 C 88.895 27.922 88.538 28.101 88.162 28.233 C 87.764 28.374 87.353 28.495 86.936 28.59 C 86.518 28.684 86.1 28.745 85.69 28.785 C 85.279 28.825 84.908 28.845 84.578 28.845 C 83.858 28.845 83.17 28.758 82.517 28.583 C 81.883 28.415 81.273 28.163 80.705 27.835 C 80.153 27.518 79.647 27.126 79.203 26.67 C 78.759 26.217 78.374 25.71 78.057 25.161 C 77.737 24.598 77.492 23.996 77.33 23.369 C 77.161 22.714 77.077 22.039 77.08 21.362 L 77.074 21.382 Z M 53.894 26.635 L 52.177 26.635 L 52.177 28.615 L 58.273 28.615 L 58.273 26.635 L 56.535 26.635 L 56.535 16.39 L 59.27 16.39 L 59.27 18.553 L 61.513 18.553 L 61.513 14.268 L 48.943 14.268 L 48.943 18.553 L 51.193 18.553 L 51.193 16.39 L 53.894 16.39 L 53.894 26.636 Z M 65.387 26.635 L 63.669 26.635 L 63.669 28.622 L 74.622 28.622 L 74.622 24.884 L 72.365 24.884 L 72.365 26.5 L 68.041 26.5 L 68.041 22.452 L 72.769 22.452 L 72.769 20.33 L 68.041 20.33 L 68.041 16.396 L 72.055 16.396 L 72.055 17.972 L 74.325 17.972 L 74.325 14.274 L 63.67 14.274 L 63.67 16.274 L 65.388 16.274 L 65.388 26.635 Z M 94.595 26.635 L 92.877 26.635 L 92.877 28.615 L 98.987 28.615 L 98.987 26.635 L 97.249 26.635 L 97.249 22.54 L 103.77 22.54 L 103.77 26.635 L 102.032 26.635 L 102.032 28.615 L 108.142 28.615 L 108.142 26.635 L 106.424 26.635 L 106.424 16.275 L 108.142 16.275 L 108.142 14.275 L 102.032 14.275 L 102.032 16.275 L 103.77 16.275 L 103.77 20.418 L 97.249 20.418 L 97.249 16.275 L 98.987 16.275 L 98.987 14.275 L 92.877 14.275 L 92.877 16.275 L 94.595 16.275 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:11857076619,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9mj71\",\"data-framer-name\":\"Matooma Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ffymi1\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:108,svg:'<svg width=\"108\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M103.127 3.974c-.838 0-2.126.078-3.85.233-.745.093-1.52.14-2.297.202l-.466.03.807 3.183 1.692-.202c1.398-.155 2.453-.232 3.136-.232 1.661 0 1.956.512 1.956 1.956v.605h-3.353c-4.067 0-5.883 2.53-5.883 5.045 0 2.67 1.738 5.356 5.076 5.356 1.444 0 3.058-.512 4.611-1.475l.853 1.18h2.174V8.29c0-1.987-1.165-4.316-4.456-4.316Zm-2.375 8.725h3.353v3.353c-.962.605-2.514 1.18-3.663 1.18-1.956 0-2.05-2.018-2.05-2.422-.015-1.444.746-2.111 2.36-2.111ZM88.55 3.974c-1.397 0-2.638.435-3.772 1.335-1.117-.978-2.81-1.335-3.99-1.335-1.148 0-2.235.326-3.244.978l-.978-.543h-1.8v15.477h3.4V7.933c.651-.482 1.396-.73 2.281-.73 1.785 0 2.018.823 2.018 1.615v11.068h3.462V7.902c.652-.466 1.397-.699 2.251-.699 1.785 0 2.018.823 2.018 1.615v11.068h3.462V7.653c0-2.546-2.98-3.679-5.107-3.679Zm-59.845.062c-.838 0-2.126.078-3.85.233-.745.093-1.52.14-2.297.202l-.466.03.792 3.183 1.692-.201c1.397-.156 2.453-.233 3.136-.233 1.66 0 1.956.512 1.956 1.956v.605h-3.353c-4.068 0-5.884 2.53-5.884 5.045 0 2.67 1.739 5.356 5.076 5.356 1.444 0 3.059-.512 4.611-1.475l.854 1.18h2.173V8.352c.031-1.987-1.133-4.316-4.44-4.316Zm-2.36 8.725H29.7v3.353c-.963.605-2.515 1.18-3.664 1.18-1.956 0-2.049-2.018-2.049-2.422-.015-1.444.745-2.111 2.36-2.111ZM40.582.264l-3.462.947v3.26h-1.785V7.7h1.8v8.973c0 1.956 1.537 3.275 3.648 3.275 1.46 0 3.105-.745 3.105-.745V16.72h-2.002c-1.165 0-1.289-.31-1.289-1.521V7.7h3.151l.435-3.23h-3.586V.265h-.015Zm25.133 3.229c-2.609 0-4.844 1.257-6.272 3.275-1.428-2.018-3.664-3.275-6.287-3.275-4.502 0-7.886 3.695-7.886 8.6 0 4.906 3.384 8.6 7.886 8.6 2.623 0 4.874-1.257 6.287-3.275 1.413 2.018 3.648 3.275 6.272 3.275 4.517 0 7.917-3.694 7.917-8.6-.016-4.905-3.416-8.6-7.917-8.6Zm-12.56 13.863c-2.716 0-4.625-2.174-4.625-5.278 0-3.105 1.893-5.279 4.626-5.279 2.716 0 4.626 2.174 4.626 5.279 0 3.073-1.956 5.278-4.626 5.278Zm12.56 0c-2.717 0-4.627-2.174-4.627-5.278 0-3.105 1.894-5.279 4.627-5.279 2.716 0 4.626 2.174 4.626 5.279-.016 3.073-1.956 5.278-4.626 5.278ZM69.55 3.074c-.901-.482-2.066-.807-3.354-.9a10.997 10.997 0 0 0-.73-.032c-1.381 0-2.654.28-3.663.73.885-.885 2.127-1.32 3.772-1.32 1.77 0 3.09.513 3.974 1.522Z\" fill=\"#000\"/><path d=\"M66.335.807a17.457 17.457 0 0 0-.915-.03c-1.74 0-3.323.356-4.596.946C61.928.574 63.495 0 65.56 0c2.22 0 3.881.668 4.983 1.987C69.41 1.351 67.95.916 66.335.807ZM49.244 20.91c.9.482 2.065.808 3.353.901.233.016.481.031.73.031 1.381 0 2.654-.28 3.663-.73-.885.885-2.126 1.32-3.772 1.32-1.754 0-3.09-.497-3.974-1.521Z\" fill=\"#000\"/><path d=\"M52.473 23.193c.295.015.605.03.916.03 1.738 0 3.337-.356 4.595-.946C56.88 23.426 55.314 24 53.249 24c-2.22 0-3.881-.668-4.983-1.987 1.133.636 2.592 1.056 4.207 1.18ZM13.927 4.036c-1.397 0-2.64.435-3.772 1.335-1.118-.978-2.81-1.335-3.99-1.335-1.149 0-2.236.326-3.245.978l-.978-.543h-1.8v15.477h3.4V7.995c.651-.481 1.397-.73 2.281-.73 1.786 0 2.018.823 2.018 1.615v11.068h3.462V7.964c.652-.466 1.397-.699 2.251-.699 1.785 0 2.018.823 2.018 1.615v11.068h3.462V7.715c0-2.546-2.98-3.679-5.107-3.679Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1brnpaj\",\"data-framer-name\":\"Inqom Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1docsg7\",\"data-framer-name\":\"Graphic\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87 32\"><path d=\"M 17.72 0.775 L 6.17 0.775 C 2.983 0.775 0.4 3.358 0.4 6.545 L 0.4 18.095 C 0.4 21.282 2.983 23.865 6.17 23.865 L 17.72 23.865 C 20.907 23.865 23.49 21.282 23.49 18.095 L 23.49 6.545 C 23.49 3.358 20.907 0.775 17.72 0.775 Z\" fill=\"rgb(31,36,41)\"></path><path d=\"M 8.54 9.995 C 8.19 9.935 8.13 9.455 8.45 9.315 L 15.79 5.985 C 16.26 5.775 16.72 6.265 16.5 6.725 L 13.49 12.725 C 13.07 13.555 13.41 14.575 14.24 14.995 C 14.54 15.145 14.69 15.145 15.81 15.335 C 16.16 15.395 16.22 15.875 15.9 16.015 L 8.56 19.345 C 8.09 19.555 7.63 19.065 7.85 18.605 L 10.86 12.605 C 11.28 11.775 10.94 10.755 10.11 10.335 C 9.81 10.185 9.66 10.185 8.54 9.995 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 31.6 17.185 L 31.6 8.165 C 31.6 7.765 31.92 7.445 32.32 7.445 L 34.12 7.445 L 34.12 16.465 C 34.12 16.865 33.8 17.185 33.4 17.185 Z M 32.38 3.295 L 34.13 3.295 L 34.13 5.045 C 34.13 5.475 33.78 5.825 33.35 5.825 L 31.6 5.825 L 31.6 4.075 C 31.6 3.645 31.95 3.295 32.38 3.295 Z M 36.11 17.185 L 36.11 8.165 C 36.11 7.765 36.43 7.445 36.83 7.445 L 38.63 7.445 L 38.63 8.845 C 38.97 8.365 39.37 8.025 39.9 7.725 C 40.43 7.425 41.05 7.265 41.77 7.265 C 42.91 7.265 43.85 7.615 44.43 8.315 C 45.01 9.015 45.3 9.975 45.3 11.205 L 45.3 17.185 L 42.59 17.185 L 42.59 11.855 C 42.59 11.115 42.43 10.575 42.11 10.245 C 41.79 9.915 41.35 9.745 40.81 9.745 C 40.05 9.745 39.51 10.005 39.18 10.515 C 38.85 11.025 38.63 11.715 38.63 12.595 L 38.63 17.185 L 36.1 17.185 Z M 46.93 12.385 C 46.93 11.565 47.05 10.845 47.28 10.205 C 47.51 9.565 47.84 9.035 48.25 8.595 C 48.66 8.155 49.13 7.825 49.67 7.605 C 50.2 7.375 50.78 7.265 51.39 7.265 C 52.11 7.265 52.79 7.415 53.34 7.715 C 53.89 8.005 54.34 8.405 54.69 8.885 L 54.69 8.175 C 54.69 7.775 55 7.455 55.4 7.445 L 57.21 7.445 L 57.21 20.605 C 57.21 21.005 56.89 21.325 56.49 21.325 L 54.68 21.325 L 54.68 15.855 C 54.34 16.325 53.9 16.715 53.36 17.035 C 52.82 17.355 52.11 17.515 51.34 17.515 C 50.74 17.515 50.18 17.405 49.64 17.175 C 49.11 16.945 48.64 16.615 48.23 16.185 C 47.83 15.755 47.51 15.215 47.27 14.575 C 47.03 13.935 46.92 13.215 46.92 12.395 Z M 49.66 12.375 C 49.66 12.765 49.72 13.125 49.85 13.445 C 49.98 13.775 50.16 14.055 50.38 14.275 C 50.6 14.505 50.87 14.675 51.18 14.795 C 51.49 14.915 51.83 14.975 52.19 14.975 C 52.91 14.975 53.52 14.745 54 14.285 C 54.48 13.825 54.72 13.185 54.72 12.365 C 54.72 11.545 54.48 10.915 54 10.455 C 53.52 9.985 52.91 9.755 52.19 9.755 C 51.83 9.755 51.5 9.815 51.18 9.935 C 50.87 10.055 50.6 10.235 50.38 10.455 C 50.16 10.685 49.98 10.965 49.85 11.285 C 49.72 11.615 49.66 11.975 49.66 12.355 Z M 58.84 12.405 C 58.84 11.645 58.97 10.955 59.24 10.315 C 59.51 9.685 59.87 9.145 60.34 8.685 C 60.81 8.235 61.36 7.885 61.99 7.635 C 62.62 7.385 63.32 7.265 64.07 7.265 C 64.82 7.265 65.52 7.385 66.15 7.635 C 66.79 7.885 67.34 8.235 67.8 8.685 C 68.26 9.135 68.63 9.685 68.9 10.315 C 69.17 10.945 69.3 11.645 69.3 12.405 C 69.3 13.165 69.17 13.875 68.9 14.505 C 68.63 15.135 68.27 15.665 67.8 16.125 C 67.33 16.575 66.78 16.925 66.15 17.175 C 65.52 17.425 64.82 17.545 64.07 17.545 C 63.32 17.545 62.62 17.425 61.99 17.175 C 61.36 16.925 60.81 16.575 60.34 16.125 C 59.87 15.675 59.5 15.135 59.24 14.505 C 58.97 13.875 58.84 13.185 58.84 12.405 Z M 61.47 12.365 C 61.47 12.755 61.54 13.105 61.67 13.425 C 61.8 13.745 61.98 14.015 62.22 14.245 C 62.45 14.475 62.73 14.645 63.05 14.765 C 63.37 14.885 63.71 14.955 64.07 14.955 C 64.43 14.955 64.77 14.895 65.09 14.765 C 65.41 14.645 65.69 14.465 65.92 14.245 C 66.15 14.015 66.34 13.745 66.47 13.425 C 66.6 13.105 66.67 12.755 66.67 12.365 C 66.67 11.975 66.6 11.625 66.47 11.305 C 66.34 10.985 66.16 10.715 65.92 10.485 C 65.69 10.255 65.41 10.085 65.09 9.965 C 64.761 9.84 64.412 9.775 64.06 9.775 C 63.69 9.775 63.36 9.835 63.04 9.965 C 62.72 10.085 62.45 10.265 62.21 10.485 C 61.98 10.715 61.79 10.985 61.66 11.305 C 61.53 11.625 61.46 11.975 61.46 12.365 Z M 70.92 17.185 L 70.92 8.165 C 70.92 7.765 71.24 7.445 71.64 7.445 L 73.44 7.445 L 73.44 8.875 C 73.74 8.405 74.1 8.065 74.58 7.745 C 75.06 7.425 75.68 7.265 76.45 7.265 C 77.91 7.265 78.92 7.875 79.48 9.085 C 79.78 8.555 80.19 8.115 80.73 7.775 C 81.26 7.435 81.94 7.265 82.76 7.265 C 83.9 7.265 84.74 7.625 85.39 8.345 C 86.04 9.065 86.44 10.145 86.44 11.415 L 86.44 16.465 C 86.44 16.865 86.12 17.185 85.72 17.185 L 83.92 17.185 L 83.92 11.785 C 83.92 10.385 83.27 9.685 82.09 9.685 C 81.7 9.685 81.37 9.755 81.1 9.895 C 80.83 10.035 80.61 10.235 80.44 10.485 C 80.27 10.735 80.15 11.035 80.07 11.375 C 79.99 11.725 79.95 12.105 79.95 12.525 L 79.95 16.455 C 79.95 16.855 79.63 17.175 79.23 17.175 L 77.43 17.175 L 77.43 11.775 C 77.43 10.375 76.75 9.675 75.57 9.675 C 75.18 9.675 74.86 9.745 74.59 9.885 C 74.32 10.025 74.11 10.225 73.94 10.475 C 73.77 10.725 73.65 11.025 73.58 11.365 C 73.51 11.715 73.47 12.095 73.47 12.515 L 73.47 16.535 C 73.47 16.885 73.18 17.175 72.83 17.175 L 70.94 17.175 Z M 50.65 29.625 L 50.65 23.945 L 51.48 23.945 L 51.48 26.055 L 51.53 26.055 C 51.58 25.965 51.65 25.865 51.74 25.745 C 51.83 25.625 51.96 25.525 52.12 25.435 C 52.28 25.345 52.49 25.305 52.76 25.305 C 53.1 25.305 53.41 25.395 53.68 25.565 C 53.95 25.735 54.16 25.985 54.32 26.315 C 54.47 26.645 54.55 27.035 54.55 27.495 C 54.55 27.955 54.47 28.345 54.32 28.675 C 54.17 29.005 53.96 29.255 53.69 29.435 C 53.42 29.615 53.12 29.695 52.77 29.695 C 52.51 29.695 52.3 29.655 52.14 29.565 C 51.98 29.475 51.85 29.375 51.76 29.265 C 51.67 29.145 51.6 29.045 51.55 28.955 L 51.48 28.955 L 51.48 29.615 L 50.67 29.615 Z M 51.46 27.495 C 51.46 27.795 51.5 28.055 51.59 28.285 C 51.68 28.515 51.8 28.685 51.97 28.815 C 52.13 28.945 52.34 29.005 52.57 29.005 C 52.793 29.009 53.011 28.939 53.19 28.805 C 53.35 28.675 53.48 28.495 53.57 28.265 C 53.66 28.035 53.7 27.785 53.7 27.495 C 53.7 27.205 53.66 26.965 53.57 26.735 C 53.49 26.515 53.36 26.335 53.19 26.205 C 53.01 26.074 52.792 26.007 52.57 26.015 C 52.33 26.015 52.13 26.075 51.96 26.205 C 51.79 26.325 51.67 26.505 51.58 26.725 C 51.5 26.945 51.45 27.205 51.45 27.505 Z M 55.85 31.225 C 55.73 31.225 55.61 31.225 55.51 31.195 C 55.41 31.165 55.33 31.155 55.28 31.135 L 55.48 30.455 C 55.63 30.495 55.77 30.515 55.88 30.505 C 56 30.505 56.1 30.455 56.2 30.375 C 56.29 30.295 56.37 30.155 56.44 29.965 L 56.54 29.685 L 54.98 25.365 L 55.87 25.365 L 56.95 28.675 L 56.99 28.675 L 58.07 25.365 L 58.96 25.365 L 57.21 30.195 C 57.13 30.415 57.02 30.605 56.9 30.755 C 56.77 30.905 56.62 31.025 56.45 31.105 C 56.28 31.185 56.07 31.225 55.85 31.225 Z M 62.38 23.945 L 63.96 28.575 L 64.02 28.575 L 65.6 23.945 L 66.53 23.945 L 64.49 29.625 L 63.5 29.625 L 61.46 23.945 L 62.39 23.945 Z M 68.28 23.945 L 68.28 29.625 L 67.42 29.625 L 67.42 23.945 Z M 72.7 25.435 C 72.68 25.185 72.543 24.959 72.33 24.825 C 72.12 24.675 71.85 24.605 71.52 24.605 C 71.29 24.605 71.09 24.645 70.92 24.715 C 70.75 24.785 70.62 24.885 70.52 25.015 C 70.43 25.145 70.38 25.285 70.38 25.445 C 70.38 25.585 70.41 25.695 70.48 25.795 C 70.54 25.895 70.63 25.975 70.73 26.045 C 70.83 26.115 70.95 26.165 71.07 26.205 C 71.19 26.245 71.31 26.285 71.42 26.315 L 71.97 26.455 C 72.15 26.495 72.34 26.555 72.53 26.635 C 72.72 26.715 72.9 26.815 73.06 26.935 C 73.413 27.197 73.614 27.616 73.6 28.055 C 73.6 28.375 73.52 28.665 73.35 28.915 C 73.18 29.165 72.94 29.365 72.63 29.505 C 72.32 29.645 71.94 29.725 71.49 29.725 C 71.04 29.725 70.7 29.655 70.39 29.525 C 70.097 29.404 69.844 29.203 69.66 28.945 C 69.48 28.695 69.39 28.405 69.37 28.055 L 70.23 28.055 C 70.25 28.265 70.31 28.435 70.43 28.565 C 70.55 28.695 70.7 28.805 70.88 28.865 C 71.06 28.935 71.27 28.965 71.49 28.965 C 71.73 28.965 71.95 28.925 72.14 28.845 C 72.33 28.765 72.48 28.665 72.59 28.525 C 72.7 28.385 72.75 28.225 72.75 28.045 C 72.75 27.875 72.7 27.735 72.61 27.635 C 72.51 27.525 72.39 27.435 72.22 27.365 C 72.05 27.295 71.88 27.235 71.67 27.175 L 71 26.995 C 70.54 26.875 70.18 26.685 69.92 26.445 C 69.65 26.205 69.52 25.885 69.52 25.495 C 69.52 25.165 69.61 24.885 69.79 24.635 C 69.97 24.395 70.21 24.205 70.51 24.065 C 70.81 23.925 71.16 23.865 71.54 23.865 C 71.92 23.865 72.26 23.935 72.56 24.065 C 72.85 24.205 73.09 24.385 73.26 24.625 C 73.43 24.865 73.52 25.135 73.53 25.435 Z M 74.71 23.945 L 75.75 23.945 L 77.56 28.365 L 77.63 28.365 L 79.44 23.945 L 80.48 23.945 L 80.48 29.625 L 79.66 29.625 L 79.66 25.515 L 79.61 25.515 L 77.94 29.615 L 77.26 29.615 L 75.59 25.515 L 75.54 25.515 L 75.54 29.625 L 74.72 29.625 L 74.72 23.945 Z M 82.28 29.625 L 81.37 29.625 L 83.41 23.945 L 84.4 23.945 L 86.44 29.625 L 85.53 29.625 L 83.92 24.975 L 83.88 24.975 L 82.27 29.625 Z M 82.43 27.405 L 85.38 27.405 L 85.38 28.125 L 82.43 28.125 Z\" fill=\"rgb(31,36,41)\"></path></svg>',svgContentId:10330885047,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ybxecs\",\"data-framer-name\":\"Make Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-r25kge\",\"data-framer-name\":\"Group\",fill:\"black\",intrinsicHeight:34,intrinsicWidth:63,svg:'<svg width=\"63\" height=\"34\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M31.427 15.721h3.587V.771h-3.587v14.95ZM45.536.771l-.021 3.295h10.012V.77h-9.991Zm9.887 14.95.094-3.296H45.452l-.02 3.296h9.991Zm-.114-5.947V6.561h-9.805l-.02 3.213h9.825Zm-38.885 5.947h3.816l.728-2.225h4.564l.686 2.225h3.816l-.811-2.246H17.235l-.81 2.246ZM21.186.771l3.39 9.658h3.545L24.638.77h-3.452ZM.673 15.72h3.65V7.424L.672.76v14.961Zm4.128 13.57c-.333-.437-.541-.925-.541-3.66 0-2.734.208-3.233.54-3.68.271-.354.79-.655 1.456-.655V18.02c-1.809 0-3.056.592-4.148 1.684C.548 21.283.61 23.383.61 25.63s-.063 4.346 1.497 5.927c1.081 1.091 2.34 1.674 4.148 1.674v-3.275c-.665 0-1.185-.313-1.455-.666Zm19.203-9.815a4.353 4.353 0 0 0-.936-.686l-.02.031c.322.167.654.385.956.655Zm-3.598 8.068h-.998l2.62 5.563h4.232l-3.192-6.207c-.728.405-1.622.644-2.662.644Z\" fill=\"#1F2429\"/><path d=\"M23.068 26.908c.343-.187.655-.416.936-.686a4.97 4.97 0 0 1-.957.645l.021.041Zm-8.536-8.754v14.95h3.65v-14.95h-3.65Zm20.908 9.617c0 .572-.145 1.175-.561 1.601-.333.354-.853.593-1.622.593-.665 0-1.164-.27-1.435-.634-.333-.437-.54-.967-.54-3.702 0-2.734.207-3.233.54-3.68.27-.354.77-.655 1.435-.655 1.248 0 1.83.54 2.12 1.684h3.671c-.354-2.454-1.975-4.96-5.791-4.96-1.788 0-3.046.593-4.128 1.685-1.56 1.58-1.497 3.68-1.497 5.926s-.062 4.346 1.497 5.927c1.082 1.091 2.392 1.684 4.128 1.684 1.622 0 3.036-.354 4.315-1.684.966-.988 1.372-2.173 1.476-4.014h-3.597v.23h-.01ZM7.992 14.151l.25-.52-.27.49.02.03Z\" fill=\"#1F2429\"/><path d=\"m11.714.77-.062.115-3.67 6.8-1.747 3.243 1.747 3.192.27-.488 3.4-6.207L15.302.77h-3.588Z\" fill=\"#1F2429\"/><path d=\"M45.484 15.721h3.587V6.583h-3.587v9.138ZM43.944.771h-4.137l-2.37 4.158-1.893 3.317 1.893 3.327 2.37 4.159h4.138l-4.512-7.476L43.945.771Zm-19.369 9.658h-6.238l-1.102 3.047h11.988l-1.102-3.047h-3.545ZM15.292.771v14.95h-3.65V7.425L15.292.77ZM4.312.885 4.25.771H.673l3.65 6.654 1.912 3.503 1.747-3.243-3.67-6.8Zm6.093 18.818c-1.082-1.091-2.33-1.684-4.149-1.684v3.275c.666 0 1.185.291 1.456.655.332.437.54.946.54 3.68 0 2.735-.208 3.213-.54 3.65-.27.353-.79.676-1.456.676v3.275c1.81 0 3.057-.593 4.149-1.684 1.56-1.58 1.497-3.681 1.497-5.927 0-2.235.062-4.335-1.497-5.916Zm13.599-.228a4.97 4.97 0 0 0-.957-.645l.021-.031c-.728-.406-1.622-.634-2.662-.634h-2.225v3.296h2.059c.946 0 1.528.665 1.58 1.393 0 .041.01.072.01.114 0 .78-.581 1.508-1.58 1.508h-2.058v3.067h2.225c1.04 0 1.934-.24 2.661-.635l-.02-.03a4.98 4.98 0 0 0 .956-.645c.936-.884 1.435-2.11 1.456-3.38v-.114a4.24 4.24 0 0 0-1.466-3.264Zm9.253 5.021v3.047h5.791c.02-.302.02-.624.02-.967v-2.08h-5.811ZM60.694 11.48a2.298 2.298 0 0 0-2.297 2.297v.021c0 1.268 1.019 2.318 2.297 2.318 1.28 0 2.298-1.05 2.298-2.318a2.299 2.299 0 0 0-2.277-2.319h-.02Z\" fill=\"#1F2429\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kpdm2z\",\"data-framer-name\":\"Localsearch Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cbky2m\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:28,intrinsicWidth:143,svg:'<svg width=\"143\" height=\"28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m19.047 3.29 4.323 4.467c5.685 5.877.725 11.693.113 12.411-.042.05-.064.075-.06.075L19.1 24.71c-6.006 6.277-12.079 0-12.079 0L2.7 20.242c-6.073-6.263 0-12.485 0-12.485L6.97 3.29c6.006-6.277 12.078 0 12.078 0Zm-1.524 17.076 1.697-1.754s4.481-4.646 0-9.265l-1.697-1.754s-4.482-4.632-8.964 0L6.862 9.347s-4.481 4.633 0 9.265l1.697 1.754s4.482 4.632 8.964 0Zm-.823-6.674c0 2.083-1.63 3.782-3.66 3.782a3.647 3.647 0 0 1-3.659-3.782c0-2.084 1.644-3.783 3.66-3.783 2.015 0 3.66 1.7 3.66 3.783Z\" fill=\"#1F2429\"/><path d=\"M35.867 22.078h-1.125c-.526 0-.671-.151-.671-.698V6.375c0-.547.145-.698.671-.698h1.125c.526 0 .671.151.671.698V21.38c.018.547-.145.698-.671.698Zm8.165-11.744c3.211 0 4.862 1.715 4.862 4.43v3.11c0 2.715-1.724 4.43-4.862 4.43-3.14 0-4.863-1.715-4.863-4.43v-3.11c0-2.715 1.724-4.43 4.863-4.43Zm0 2.337c-1.579 0-2.395.773-2.395 2.093v3.11c0 1.32.889 2.092 2.395 2.092 1.578 0 2.395-.773 2.395-2.092v-3.11c.072-1.32-.817-2.093-2.395-2.093Zm12.047-2.337c2.54 0 4.046 1.244 4.572 2.884.145.546 0 .848-.453 1.018l-.89.301c-.525.226-.743.076-.979-.471-.381-.924-1.052-1.47-2.322-1.47-1.579 0-2.323.772-2.323 2.168v3.11c0 1.395.817 2.168 2.323 2.168 1.27 0 1.94-.547 2.322-1.546.218-.547.381-.622.98-.471l.98.301c.526.226.67.472.453 1.018-.671 1.866-2.177 2.96-4.717 2.96-3.212 0-4.718-1.716-4.718-4.505v-2.96c-.163-2.715 1.397-4.505 4.772-4.505Zm11.068 0c3.52 0 4.572 1.941 4.572 4.505v5.599c0 .773-.145 1.018-.744 1.244-.816.396-2.086.622-3.81.622-3.737 0-4.717-1.32-4.717-3.582 0-2.564 1.415-3.412 4.79-3.412.816 0 1.65.076 2.013.076v-.698c0-1.395-.526-2.168-2.086-2.168-1.053 0-1.797.396-2.25 1.094-.29.47-.453.546-.889.301l-.816-.396c-.526-.226-.6-.471-.381-1.018.653-1.225 2.068-2.167 4.318-2.167Zm-.218 7.012c-1.65 0-2.014.547-2.014 1.47 0 .849.381 1.47 2.014 1.47 1.125 0 1.724-.15 2.087-.225.218-.076.218-.076.218-.302v-2.338c-.436 0-1.488-.075-2.305-.075Zm9.344 4.732h-1.125c-.526 0-.671-.151-.671-.698V6.375c0-.547.145-.698.671-.698h1.126c.525 0 .67.151.67.698V21.38c0 .547-.145.698-.67.698Zm7.639-11.744c2.467 0 3.882.923 4.572 2.337.218.547.072.773-.381 1.018l-.98.396c-.526.226-.598.15-.889-.302-.38-.697-.889-1.169-2.322-1.169s-2.014.396-2.014 1.245c0 1.018.817 1.168 2.467 1.32 2.54.225 4.337.847 4.337 3.411 0 2.168-1.579 3.733-4.645 3.733-2.468 0-4.046-.924-4.717-2.64-.218-.47-.073-.772.38-.923l.98-.302c.454-.15.671-.075.89.396.38.849 1.124 1.244 2.394 1.244 1.488 0 2.25-.471 2.25-1.32 0-1.017-.816-1.243-2.54-1.394-2.086-.226-4.336-.547-4.336-3.412.145-2.15 1.633-3.638 4.554-3.638Zm11.74 0c3.374 0 4.934 2.017 4.934 4.505v1.32c0 .546-.218.923-.98.923h-6.423v.773c0 1.47.89 2.168 2.395 2.168 1.27 0 2.087-.471 2.54-1.169.382-.471.6-.547 1.126-.226l.743.396c.526.226.526.622.218 1.093-.744 1.32-2.178 2.093-4.573 2.093-3.52 0-4.862-2.017-4.862-4.75v-2.565c-.054-2.846 1.67-4.561 4.881-4.561Zm0 2.186c-1.58 0-2.469.848-2.469 2.168v.547h4.935v-.471c0-1.396-.889-2.244-2.467-2.244Zm11.52-2.186c3.52 0 4.572 1.941 4.572 4.505v5.599c0 .773-.145 1.018-.743 1.244-.817.396-2.087.622-3.81.622-3.738 0-4.718-1.32-4.718-3.582 0-2.564 1.415-3.412 4.79-3.412.817 0 1.651.076 2.014.076v-.698c0-1.395-.526-2.168-2.086-2.168-1.053 0-1.797.396-2.25 1.094-.291.47-.454.546-.889.301l-.817-.396c-.526-.226-.599-.471-.381-1.018.653-1.225 2.087-2.167 4.318-2.167Zm-.218 7.012c-1.651 0-2.013.547-2.013 1.47 0 .849.38 1.47 2.013 1.47 1.126 0 1.724-.15 2.087-.225.218-.076.218-.076.218-.302v-2.338c-.435 0-1.488-.075-2.305-.075Zm12.937-7.012c.526 0 .671.15.671.697v1.018c0 .547-.145.697-.671.697h-.744c-.816 0-1.488.076-2.014.227-.145.075-.218.15-.218.226v8.087c0 .547-.144.697-.671.697h-1.125c-.526 0-.671-.15-.671-.697v-9.01c0-.698.145-1.019.816-1.245.817-.302 2.014-.622 3.974-.697h.653Zm6.749 0c2.541 0 4.046 1.244 4.573 2.884.145.546 0 .848-.454 1.018l-.889.301c-.526.226-.744.076-.98-.471-.381-.924-1.052-1.47-2.322-1.47-1.579 0-2.323.772-2.323 2.168v3.11c0 1.395.817 2.168 2.323 2.168 1.27 0 1.941-.547 2.322-1.546.218-.547.381-.622.98-.471l.98.301c.526.226.671.472.453 1.018-.671 1.866-2.177 2.96-4.717 2.96-3.212 0-4.718-1.716-4.718-4.505v-2.96c-.108-2.715 1.398-4.505 4.772-4.505Zm9.345-3.96v4.355c.671-.15 1.415-.301 2.539-.301 3.067 0 4.41 1.64 4.41 4.43v6.522c0 .547-.145.698-.671.698h-1.198c-.526 0-.671-.151-.671-.698v-6.447c0-1.395-.817-2.168-2.323-2.168-1.052 0-2.014.226-2.177.302v8.313c0 .547-.145.698-.671.698h-1.125c-.526 0-.671-.151-.671-.698V6.375c0-.547.145-.698.671-.698h1.125c.617 0 .762.151.762.698Z\" fill=\"#1F2429\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-997wo3\",\"data-framer-name\":\"Pongo Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18gw2jh\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:71,svg:'<svg width=\"71\" height=\"46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"71\" height=\"46\"><path d=\"M70.37 0h-70v46h70V0Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#1F2429\"><path d=\"M11.196 2.984v7.306H8.724V7.597h-2.28v2.693H3.972V2.984h2.472v2.588h2.28V2.984h2.472Zm5.546 5.247 1.236 1.242c-.565.606-1.37.916-2.5.916-2.103 0-3.464-1.26-3.464-2.965 0-1.704 1.404-2.95 3.287-2.95 1.662 0 3.108 1.021 3.108 2.922l-3.913.75c.186.353.546.5 1.058.5.513 0 .815-.133 1.193-.415h-.005Zm-2.41-1.198 1.83-.353a.873.873 0 0 0-.857-.597c-.531 0-.9.3-.972.95Zm11.081-2.454v4.57c0 2.21-1.298 3.265-3.463 3.265-1.121 0-2.137-.238-2.846-.711l.796-1.61c.45.345 1.202.564 1.81.564.953 0 1.341-.43 1.341-1.189v-.043a2.263 2.263 0 0 1-1.508.545c-1.37 0-2.41-.802-2.41-2.66V4.574H21.5V6.9c0 .811.282 1.083.742 1.083.407 0 .805-.3.805-1.145V4.574h2.366v.005Z\"/><path d=\"M22.252 14.53H7.66c-4.02 0-7.29-3.257-7.29-7.263S3.642 0 7.66 0h14.592c4.019 0 7.29 3.261 7.29 7.267s-3.271 7.267-7.29 7.267v-.004ZM7.66.61C3.977.611.983 3.595.983 7.267s2.994 6.651 6.673 6.651h14.591c3.679 0 6.673-2.984 6.673-6.65C28.92 3.6 25.93.61 22.252.61H7.66Zm54.567 15.82a8.159 8.159 0 0 0-7.042 4.044 8.152 8.152 0 0 0-7.037-4.035 8.154 8.154 0 0 0-7.329 4.589 7.062 7.062 0 0 0-6.61-4.589c-3.028 0-5.816 2.063-6.721 4.9a8.15 8.15 0 0 0-14.242-1.29 7.066 7.066 0 0 0-6.155-3.61H.677v21.472h3.89v-7.41H7.09a7.055 7.055 0 0 0 5.494-2.626 8.15 8.15 0 0 0 14.572.573v4.206h3.89v-9.182a3.165 3.165 0 0 1 3.166-3.155 3.162 3.162 0 0 1 3.167 3.155v9.182h3.89v-3.781a8.143 8.143 0 0 0 6.893 3.8c1.47 0 2.85-.391 4.043-1.074-.374 5.868-5.28 10.528-11.257 10.528a11.347 11.347 0 0 1-9.763-5.6l-3.363 1.948a15.247 15.247 0 0 0 13.12 7.53c8.364 0 15.172-6.785 15.172-15.122 0-.344-.015-.688-.039-1.027a8.14 8.14 0 0 0 6.156 2.813c4.488 0 8.143-3.639 8.143-8.117 0-4.48-3.655-8.117-8.143-8.117l-.005-.005ZM7.09 26.62H4.567v-6.308H7.09a3.165 3.165 0 0 1 3.166 3.156 3.162 3.162 0 0 1-3.166 3.156v-.005Zm12.924 2.172a4.25 4.25 0 0 1-4.254-4.24 4.25 4.25 0 0 1 4.254-4.24 4.25 4.25 0 0 1 4.254 4.24 4.25 4.25 0 0 1-4.254 4.24Zm28.138 0a4.25 4.25 0 0 1-4.254-4.24 4.25 4.25 0 0 1 4.254-4.24 4.25 4.25 0 0 1 4.254 4.24 4.25 4.25 0 0 1-4.254 4.24Zm14.074-.01a4.25 4.25 0 0 1-4.254-4.24 4.25 4.25 0 0 1 4.254-4.24 4.25 4.25 0 0 1 4.254 4.24 4.25 4.25 0 0 1-4.254 4.24Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ezu5ht\",\"data-framer-name\":\"Wingly Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kgz6tm\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:105,svg:'<svg width=\"105\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M.4 14.397c.15.257.044.565.2.828a4.897 4.897 0 0 1 .242-1.674C1.89 10.344 4.145 8.465 7.49 7.798c.143-.029.286-.05.428-.066.766-.085.76-.085.842-.853.33-3.097 1.995-5.217 4.93-6.39.651-.26 1.347-.354 2.042-.42.143-.012.283-.047.426-.072.473.126.965.085 1.445.17C19.64.533 21.227 1.58 22.437 3.2c.147.198.293.399.417.612.152.266.305.291.562.106 1.96-1.404 4.18-2.04 6.588-2.075a8.844 8.844 0 0 1 3.138.524c.311.112.6.043.89-.026.997-.235 1.994-.486 2.991-.72.21-.05.435-.142.721.112-.53.104-.943.339-1.378.53a70.764 70.764 0 0 0-3.313 1.565c-.241.119-.457.128-.718.068-2.938-.658-5.686-.275-8.144 1.518-.569.414-1.064.925-1.591 1.392-.34.3-.41.285-.509-.157-.38-1.724-1.213-3.166-2.798-4.088-3.256-1.894-7.81-.452-8.738 3.753-.204.925-.105 1.846.117 2.756.121.495.083.551-.438.457-.943-.169-1.877-.203-2.827-.006-2.646.552-4.723 2.712-5.101 5.336-.248 1.712.486 2.79 2.198 3.226.829.21 1.652.449 2.516.486.127.006.263.02.371.107-.003.14-.12.122-.2.125-2.182.094-4.282-.238-6.27-1.154-.226-.103-.302-.279-.308-.495-.007-.27 0-.54 0-.846-.14.216-.08.457-.22.633v-2.555l.007.012Z\" fill=\"#1F2429\"/><path d=\"M19.817 11.579c.686.003 1.137.131 1.575.326.696.307 1.389.624 2.148.774.934.185 1.778-.031 2.57-.501a7.063 7.063 0 0 0 1.289-1.02c1.077-1.04 2.109-2.128 3.287-3.072 1.69-1.351 3.596-2.126 5.794-2.157.143 0 .305-.019.432.035.572.241 1.074.075 1.614-.15 1.197-.503 2.423-.945 3.633-1.418.21-.082.353-.06.461.138.181.33.359.658.546.988.105.181.045.348-.031.517-.388.85-1.049 1.473-1.754 2.063-.759.633-1.642 1.072-2.51 1.536a3.727 3.727 0 0 0-1.092.875 1193.52 1193.52 0 0 1-4.52 5.226c-.616.706-1.378 1.23-2.214 1.662-1.073.558-2.236.922-3.316 1.46-.07.035-.155.085-.216.01-.108-.138.013-.238.086-.338.52-.712 1.058-1.418 1.57-2.135.526-.74 1.07-1.47 1.533-2.255.315-.53.283-.815-.133-1.248-.35-.363-.972-.504-1.375-.31-.102.05-.181.12-.162.238.022.148.123.217.273.23.212.018.416-.101.625-.038.147.044.334.072.334.272 0 .189-.175.204-.311.242-2.545.68-5.035 1.527-7.541 2.32-.368.116-.622.081-.921-.182-1.147-1.01-2.319-1.99-3.485-2.975-.177-.15-.292-.292-.022-.442.635-.348 1.28-.671 1.836-.671h-.003Zm16.38-4.828c-1.68.006-3.106.526-4.345 1.545-.372.304-.375.345.06.555 2.116 1.022 4.365-.119 5.492-1.705.137-.192.029-.286-.168-.31-.365-.048-.73-.11-1.042-.089l.003.004Zm52.731 7.257c0 1.446.023 2.888-.006 4.333-.025 1.264-.343 2.455-1.407 3.276-1.515 1.17-3.234 1.43-5.076.875a5.486 5.486 0 0 1-1.928-1.034c-.229-.188-.225-.323-.048-.54.264-.32.512-.658.734-1.006.194-.298.35-.307.613-.063.788.728 1.744.938 2.786.73 1.226-.24 1.547-1.194 1.594-2.188.016-.31-.165-.144-.266-.072-.394.28-.782.565-1.274.674-1.843.414-3.66-.489-4.44-2.282-.785-1.803-.792-3.64-.026-5.452.645-1.527 2.106-2.496 3.662-2.436.832.031 1.617.241 2.201.893.06.066.118.166.223.132.124-.044.095-.17.098-.27.026-.536.026-.536.556-.539.515 0 1.03.016 1.544 0 .343-.012.463.116.463.452-.012 1.508-.006 3.016-.006 4.524h.007l-.004-.007Zm-4.427-2.937c-.963-.022-1.554.401-1.836 1.307-.286.919-.302 1.856-.121 2.79.245 1.248 1.13 1.853 2.398 1.684.721-.097 1.293-.683 1.236-1.267a17.718 17.718 0 0 1-.016-3.125c.047-.609-.242-.907-.667-1.192-.302-.2-.651-.185-.991-.194l-.004-.003Zm-30.86 3.941c.166-.135.2-.33.245-.511.4-1.696.978-3.345 1.442-5.023.092-.335.28-.458.623-.442.368.019.74.01 1.108 0 .267-.006.404.107.477.36.482 1.716.978 3.424 1.467 5.14.054.184.105.37.238.557.181-.156.124-.367.153-.539.254-1.54.629-3.057.946-4.58.213-1.023.035-.928 1.17-.935.447 0 .895 0 1.346-.003.26-.003.314.1.245.339-.855 2.978-1.585 5.985-2.376 8.979-.137.514-.178.549-.728.552-.422 0-.845-.01-1.267.006-.299.013-.473-.116-.566-.38-.07-.206-.152-.413-.2-.626-.362-1.546-.953-3.029-1.308-4.578-.032-.138-.023-.367-.216-.367-.175 0-.207.223-.238.361-.388 1.674-.998 3.286-1.458 4.938-.172.62-.21.646-.867.646-.398 0-.791-.013-1.189.006-.32.013-.473-.11-.549-.417a641.305 641.305 0 0 0-1.483-5.891c-.28-1.088-.582-2.17-.886-3.248-.07-.245-.016-.326.247-.32.645.016 1.293.016 1.938.01.27 0 .403.106.457.366.362 1.756.766 3.502 1.061 5.268.02.122.016.26.165.335l.003-.003Z\" fill=\"#1F2429\"/><path d=\"M17.292 19.806c-.127.291-.35.451-.553.617-.65.527-1.248 1.11-1.943 1.584-.064.044-.15.087-.127.175.022.091.12.085.197.091.066.003.133 0 .196 0 4.946 0 9.895.028 14.84-.019 3.939-.037 6.804-1.871 8.605-5.264.848-1.592 1.13-3.314.877-5.104-.032-.213.016-.335.2-.448a79.846 79.846 0 0 0 3.853-2.505c.12-.085.238-.213.435-.15-.013.178-.169.253-.267.36-.667.712-1.337 1.423-2.017 2.129-.311.323-.457.649-.42 1.132.166 2.257-.438 4.351-1.648 6.26-1.794 2.828-4.405 4.525-7.744 5.145a8.86 8.86 0 0 1-1.613.129c-6.464-.003-12.928 0-19.392-.003-.788 0-1.579.157-2.366-.006-.09-.02-.184-.02-.273-.041-.06-.016-.134-.04-.127-.126.01-.081.085-.084.149-.097.35-.069.699-.125 1.045-.207 2.414-.567 4.593-1.655 6.702-2.897.318-.185.616-.395.927-.592.128-.082.251-.179.461-.16l.003-.003Zm82.49-4.916c.127-.455.231-.875.362-1.289.435-1.392.892-2.778 1.229-4.195.063-.263.21-.367.47-.367.753 0 1.502.003 2.255 0 .261 0 .366.079.264.351-1.347 3.565-2.57 7.174-3.866 10.754-.079.22-.168.433-.263.646-.728 1.627-2.09 2.323-3.872 1.997-.251-.047-.382-.16-.388-.401-.013-.49-.019-.978-.025-1.467-.003-.23.117-.33.346-.317h.118c1.19.072 1.569-.307 1.953-1.483.076-.232.022-.455-.06-.68-1.093-3.023-2.183-6.048-3.282-9.07-.092-.251-.022-.33.232-.33.737.007 1.477.007 2.214.01.264 0 .426.084.512.37.511 1.718 1.045 3.43 1.572 5.144.035.11.06.226.229.33v-.004Zm-30.442-.957c0-1.47.009-2.94-.007-4.411-.003-.37.117-.511.502-.492a24.46 24.46 0 0 0 1.66.01c.363-.01.557.109.5.491a.353.353 0 0 0 0 .116c.015.11-.06.267.06.32.136.06.238-.081.327-.166a3.626 3.626 0 0 1 1.169-.712c.572-.22 1.16-.348 1.779-.247 1.734.288 2.728 1.451 2.747 3.25.016 1.562 0 3.123.01 4.682 0 .555.028 1.106.057 1.661.016.326-.108.477-.454.47a50.227 50.227 0 0 0-1.941 0c-.362.01-.48-.137-.476-.485.016-1.96.012-3.923.012-5.882 0-.22.007-.442-.031-.655-.074-.411-.445-.762-.868-.787-.562-.038-1.137-.129-1.658.194-.428.267-.641.596-.629 1.145.048 2.037.032 4.075.045 6.113 0 .245-.12.351-.362.355-.699 0-1.398 0-2.097.006-.352 0-.349-.242-.349-.483v-4.49l.003-.003Zm24.422-2.175v6.308c.009.56-.273.84-.844.84h-1.544c-.302 0-.442-.107-.378-.427.035-.175.025-.36.025-.539V5.907c0-.128 0-.257-.006-.385-.028-.391.166-.588.581-.59.607 0 1.213 0 1.82.003.216 0 .372.038.369.323-.01 2.167-.007 4.333-.007 6.5h-.019.003Zm-79.163 6.894c-.01.216-.299.25-.26.517.615-.248 1.27-.317 1.892-.495.115-.032.229-.066.346-.082.077-.01.175.007.197.091.026.094-.066.125-.136.16-1.954 1.019-3.869 2.12-5.946 2.888-1.754.648-3.542 1.185-5.448 1.203-.33.004-.62-.078-.895-.254a8.32 8.32 0 0 1-2.484-2.404c-.188-.28-.378-.558-.563-.84-.05-.079-.079-.173-.012-.254.076-.091.171-.041.25 0 1.154.56 2.405.63 3.657.69 2.897.134 5.733-.214 8.522-.97.152-.04.298-.097.448-.147.13-.044.238-.172.422-.106l.01.003Zm52.72-4.687c0 1.483-.01 2.965.006 4.448.003.364-.108.511-.495.499a33.368 33.368 0 0 0-1.858-.003c-.328.006-.474-.104-.47-.448.009-2.991.012-5.982 0-8.973 0-.336.107-.464.454-.455a38.37 38.37 0 0 0 1.9.006c.336-.01.466.097.46.445-.016 1.496-.007 2.991-.007 4.487h.01v-.006ZM65.861 7.92c-.908-.006-1.515-.558-1.518-1.38 0-.82.645-1.401 1.553-1.395.883.01 1.579.634 1.566 1.411-.013.796-.686 1.37-1.6 1.364ZM37.522 5.293c-.61-.167-1.302-.204-2-.141-.182.015-.233-.082-.188-.245.098-.348.187-.696.292-1.04a.638.638 0 0 1 .327-.37c.442-.24.905-.415 1.41-.465.506-.05.81.144.925.627.083.348.133.706.175 1.063.028.257-.48.577-.937.564l-.004.007Z\" fill=\"#1F2429\"/><path d=\"M24.493 16.188c-.05.066-.108.15-.175.229-.727.859-1.693 1.37-2.712 1.802-.194.082-.388.16-.582.235-.06.026-.127.05-.184 0-.067-.056-.032-.125.013-.169.629-.658.99-1.596 2.07-1.777.449-.076.871-.286 1.306-.433.105-.035.235-.113.267.113h-.003ZM44.027 3.907c.238.081.6-.126.677.282.035.191-.54.894-.69.887-.162-.006-.673-.718-.632-.925.08-.404.436-.138.645-.244Z\" fill=\"#1F2429\"/></svg>',withExternalLayout:true})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14686z9\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ydrhb5\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gykq7g\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Feedback is the new routine for every team\"})}),className:\"framer-h5er04\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"From product, statisfaction, business or retention, everyone needs feedback.\"})}),fonts:[\"CUSTOM;Euclid Circular B Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whether you work on the product, marketing or business side, there's a Told to help you make the right decisions. Consolidate your analytical data with the survey tool!\"})}),className:\"framer-13c50w7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+1542.4+0+0+0+242}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:764,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1272px)`,y:(componentViewport?.y||0)+0+1522.4+0+0+0+242,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gi6ogr-container hidden-ecrbuc\",nodeId:\"MrSTURoQw\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(OrganismsCarousselUsesCases,{height:\"100%\",id:\"MrSTURoQw\",layoutId:\"MrSTURoQw\",style:{width:\"100%\"},variant:\"FvSCish52\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hv9ebq-container hidden-ujzoxa hidden-1dex5nc hidden-lkbqjq\",\"data-framer-name\":\"Mobile/Slideshow\",isAuthoredByUser:true,isModuleExternal:true,name:\"Mobile/Slideshow\",nodeId:\"sHRhQXG3X\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{dragControl:true,fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:24}},children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:12,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"sHRhQXG3X\",intervalControl:5,itemAmount:1,layoutId:\"sHRhQXG3X\",name:\"Mobile/Slideshow\",padding:20,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:20,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ld8vgv\",\"data-framer-name\":\"Product Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nhnyfh\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hkg66e\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16q7yjj\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/VLGNcXKwLPQk7dy9rfpkqXQ.svg\"},className:\"framer-18sx2z7\",\"data-framer-name\":\"CircleIcon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\"},children:\"Product\"})}),className:\"framer-ogw4vc\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:[\"Collect user feedback \",/*#__PURE__*/_jsx(\"br\",{}),\"in the moment\"]})}),className:\"framer-ms54ov\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Collect feedback user feedback to identify pain points and drive your product roadmap.\"})}),className:\"framer-1cqeoo2\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1144,pixelWidth:1324,sizes:\"350px\",src:\"https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg\",srcSet:\"https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yK2dYUKkP3h2RuPcliCnhADTM8w.jpg 1324w\"},className:\"framer-1s0g4pd\",\"data-framer-name\":\"Right\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c47iuq\",\"data-framer-name\":\"Satisfaction Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tj5xyx\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vs8o48\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1duxihr\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/1DEdeiA21SMwvK0Tmtd3rMuMoqk.svg\"},className:\"framer-gv82wi\",\"data-framer-name\":\"CircleIcon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\"},children:\"Satisfaction\"})}),className:\"framer-1vud1x6\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:[\"Measure satisfaction on \",/*#__PURE__*/_jsx(\"br\",{}),\"your users and employes\"]})}),className:\"framer-f54719\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Measure your NPS, CSAT and more KPI\u2019s to keep an eye closed to your satisfaction.\"})}),className:\"framer-1hjjc7f\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1144,pixelWidth:1324,sizes:\"350px\",src:\"https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg\",srcSet:\"https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2ACrFl08PVV6fzPEkvfysQqPchA.jpg 1324w\"},className:\"framer-1b8rz4v\",\"data-framer-name\":\"Right\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v6iq9n\",\"data-framer-name\":\"Business Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16msljd\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19y0928\",\"data-framer-name\":\"Top\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dnjf50\",\"data-framer-name\":\"Label\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:42,pixelWidth:42,src:\"https://framerusercontent.com/images/mp7Zn1m0OPtQ0Ycfxjr0zwdGlao.svg\"},className:\"framer-2g242z\",\"data-framer-name\":\"CircleIcon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"Business\"})}),className:\"framer-1tcg6i9\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\"},children:[\"Collect user data \",/*#__PURE__*/_jsx(\"br\",{}),\"to generate leads\"]})}),className:\"framer-i42loh\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Collect more user data in the moment to catch more leads and generate more business.\"})}),className:\"framer-15jodcp\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1144,pixelWidth:1324,sizes:\"350px\",src:\"https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg\",srcSet:\"https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MQbyirKZYCk7o3pWcc9XbyXLGos.jpg 1324w\"},className:\"framer-114v0f\",\"data-framer-name\":\"Right\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10a4nkk\",\"data-framer-name\":\"Vid\\xe9os\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cq8vxp\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vaak9c\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Just a few clicks to launch your survey\"})}),className:\"framer-x5945q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ahtDHWXxd:{children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whatever your profile, you can get to grips with the survey tool in just a few minutes. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Whatever your profile, you can get to grips with the survey tool in just a few minutes. \"})}),className:\"framer-z0qz43\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+2624.4+76+0+0+242}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:885,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1272px)`,y:(componentViewport?.y||0)+0+2604.4+76+0+0+242,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ilm4gw-container hidden-ecrbuc\",nodeId:\"h1aS5sJWK\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(OrganismsCarousselHowToUse,{AQYCLXD8T:getLocalizedValue(\"v44\",activeLocale)??\"Enhance your brand with a customizable widget. Adjust colors, add an avatar, overlays, and more options.\",CFW179J0e:getLocalizedValue(\"v42\",activeLocale)??\"Create your survey easily with different types of questions in multiple languages.\",dLn1aA9s_:'<script src=\"https://fast.wistia.com/embed/medias/b0qxa5znwz.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.08% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_b0qxa5znwz seo=true videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/b0qxa5znwz/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',ENVv4IW7K:getLocalizedValue(\"v47\",activeLocale)??\"Analyze\",F0foEPMeU:getLocalizedValue(\"v45\",activeLocale)??\"Trigger\",height:\"100%\",id:\"h1aS5sJWK\",KlK35QvL_:'<script src=\"https://fast.wistia.com/embed/medias/00la0ed3of.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.08% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_00la0ed3of seo=false videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/00la0ed3of/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',kvsEJhqR3:'<script src=\"https://fast.wistia.com/embed/medias/mzy8luasz5.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.29% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_mzy8luasz5 seo=true videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/mzy8luasz5/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',Kw27FQFik:getLocalizedValue(\"v46\",activeLocale)??\"Target the right audience at the right time. Choose when and where to launch your survey.\",layoutId:\"h1aS5sJWK\",NsJk6rGBL:'<script src=\"https://fast.wistia.com/embed/medias/9e4duxnbb2.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.29% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_9e4duxnbb2 seo=true videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/9e4duxnbb2/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',QlXCmUZQT:getLocalizedValue(\"v43\",activeLocale)??\"Customize\",S3taxu5Vq:getLocalizedValue(\"v41\",activeLocale)??\"Create\",style:{width:\"100%\"},SvGefofS6:getLocalizedValue(\"v48\",activeLocale)??\"Build your team's vision around intuitive data. Benefit from a global vision thanks to the different views available.\",variant:\"YT98RjO0S\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjqrci hidden-ujzoxa hidden-1dex5nc hidden-lkbqjq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-660ofl\",\"data-border\":true,\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-135vse4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qagxtb-container\",isModuleExternal:true,nodeId:\"XH0o772W5\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsCircleNumber,{CDohOX2xD:\"1\",height:\"100%\",id:\"XH0o772W5\",layoutId:\"XH0o772W5\",style:{height:\"100%\",width:\"100%\"},variant:\"B8ryuBC7X\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Create\"})}),className:\"framer-17pb8fq\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Create your survey easily with different types of questions in multiple languages.\"})}),className:\"framer-92np2k\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4fpbt1-container\",\"data-framer-name\":\"1\",isModuleExternal:true,name:\"1\",nodeId:\"GllhuU9iC\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://fast.wistia.com/embed/medias/00la0ed3of.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.08% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_00la0ed3of seo=false videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/00la0ed3of/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',id:\"GllhuU9iC\",layoutId:\"GllhuU9iC\",name:\"1\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jcc9r1\",\"data-border\":true,\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7qakla\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-e9whmi-container\",isModuleExternal:true,nodeId:\"IPVnuJBWP\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsCircleNumber,{CDohOX2xD:\"4\",height:\"100%\",id:\"IPVnuJBWP\",layoutId:\"IPVnuJBWP\",style:{height:\"100%\",width:\"100%\"},variant:\"B8ryuBC7X\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Analyse\"})}),className:\"framer-ff8fj4\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Browse your report views to see the results of your survey. You can view your data in a variety of forms and dimensions. Refine your reports with filters and export them in PDF or Excel format.\"})}),className:\"framer-12cvnoq\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jo9m63-container\",\"data-framer-name\":\"4\",isModuleExternal:true,name:\"4\",nodeId:\"Gi9yefbv7\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://fast.wistia.com/embed/medias/b0qxa5znwz.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.08% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_b0qxa5znwz seo=true videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/b0qxa5znwz/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',id:\"Gi9yefbv7\",layoutId:\"Gi9yefbv7\",name:\"4\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x00fik\",\"data-border\":true,\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ghuqpb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nltrwy-container\",isModuleExternal:true,nodeId:\"YNPGyrftw\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsCircleNumber,{CDohOX2xD:\"3\",height:\"100%\",id:\"YNPGyrftw\",layoutId:\"YNPGyrftw\",style:{height:\"100%\",width:\"100%\"},variant:\"B8ryuBC7X\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Trigger\"})}),className:\"framer-1bly07n\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Choose when and how to initiate the investigation. You can configure a specific delay or action to show the survey only in certain cases.\"})}),className:\"framer-xz0z9m\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19v2bot-container\",\"data-framer-name\":\"3\",isModuleExternal:true,name:\"3\",nodeId:\"oifGTM74M\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://fast.wistia.com/embed/medias/9e4duxnbb2.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.29% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_9e4duxnbb2 seo=true videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/9e4duxnbb2/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',id:\"oifGTM74M\",layoutId:\"oifGTM74M\",name:\"3\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13b9lrb\",\"data-border\":true,\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qo7vu2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-zgc79w-container\",isModuleExternal:true,nodeId:\"nyAtr4AIK\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsCircleNumber,{CDohOX2xD:\"2\",height:\"100%\",id:\"nyAtr4AIK\",layoutId:\"nyAtr4AIK\",style:{height:\"100%\",width:\"100%\"},variant:\"B8ryuBC7X\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO0tvYmUxLjEgQm9sZA==\",\"--framer-font-family\":'\"Kobe1.1 Bold\", \"Kobe1.1 Bold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Customize\"})}),className:\"framer-mm6nbc\",fonts:[\"CUSTOM;Kobe1.1 Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Enhance your brand with a personalized widget. Manage color, add an avatar, an overlay, and more options.\"})}),className:\"framer-1a4rzxw\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18s26iu-container\",\"data-framer-name\":\"2\",isModuleExternal:true,name:\"2\",nodeId:\"eIvo9mWxw\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script src=\"https://fast.wistia.com/embed/medias/mzy8luasz5.jsonp\" async></script><script src=\"https://fast.wistia.com/assets/external/E-v1.js\" async></script><div class=\"wistia_responsive_padding\" style=\"padding:52.29% 0 0 0;position:relative;\"><div class=\"wistia_responsive_wrapper\" style=\"height:100%;left:0;position:absolute;top:0;width:100%;\"><div class=\"wistia_embed wistia_async_mzy8luasz5 seo=true videoFoam=true autoPlay=true silentAutoPlay=true muted=true\" style=\"height:100%;position:relative;width:100%\"><div class=\"wistia_swatch\" style=\"height:100%;left:0;opacity:0;overflow:hidden;position:absolute;top:0;transition:opacity 200ms;width:100%;\"><img src=\"https://fast.wistia.com/embed/medias/mzy8luasz5/swatch\" style=\"filter:blur(5px);height:100%;object-fit:contain;width:100%;\" alt=\"\" aria-hidden=\"true\" onload=\"this.parentNode.style.opacity=1;\" /></div></div></div></div>',id:\"eIvo9mWxw\",layoutId:\"eIvo9mWxw\",name:\"2\",style:{width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kxgqlh\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vndxm5\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y8uh8f\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6lm2cf\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our super features to improve your surveys\"})}),className:\"framer-io4i7k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"Because it's more than just a simple popup!\"})}),className:\"framer-1rn7mgi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t83vyb\",\"data-framer-name\":\"Slideshow\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+3971.4+0+144+242+0+0},P3HhB_xPK:{width:`max(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px, 1px)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 40px)`,y:(componentViewport?.y||0)+0+3951.4+0+144+242+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cdfkea-container\",nodeId:\"d7IN9eKqh\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{R38scOi31:2},P3HhB_xPK:{R38scOi31:1}},children:/*#__PURE__*/_jsx(OrganismsSlideshowFeatures,{height:\"100%\",id:\"d7IN9eKqh\",layoutId:\"d7IN9eKqh\",R38scOi31:3,style:{width:\"100%\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19dlnio\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jdhrms\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"And much more:\"})}),className:\"framer-1vmm2x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19x56wd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-21s13j\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/9cjlMd3PZhGnpQMipUrg6nwfHE.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/9cjlMd3PZhGnpQMipUrg6nwfHE.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/9cjlMd3PZhGnpQMipUrg6nwfHE.svg\"},className:\"framer-q7c98c\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Team management\"})}),className:\"framer-q2l3dy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vz2f1b\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/7GWm6wNSv7YZaTIxCz4xlh7Ozu4.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/7GWm6wNSv7YZaTIxCz4xlh7Ozu4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/7GWm6wNSv7YZaTIxCz4xlh7Ozu4.svg\"},className:\"framer-11zrb7n\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Multiple distribution channels\"})}),className:\"framer-2cpxqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vo3mda\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/gLaTxs5PV5FmLPOi4EtcASFKVo.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/gLaTxs5PV5FmLPOi4EtcASFKVo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/gLaTxs5PV5FmLPOi4EtcASFKVo.svg\"},className:\"framer-1mk6txj\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Excel & PPT export\"})}),className:\"framer-14e30pf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18hzywe\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/9K6WbpPRnaBx3r5nTZfmmaAIIQY.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/9K6WbpPRnaBx3r5nTZfmmaAIIQY.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+150+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/9K6WbpPRnaBx3r5nTZfmmaAIIQY.svg\"},className:\"framer-1hl7r32\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Remove branding\"})}),className:\"framer-1nre9h8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hil383\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36tuqn\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+199.2+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/w9pEiSlFJaDfQvOVOHqwfDYdZ4.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/w9pEiSlFJaDfQvOVOHqwfDYdZ4.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+199.2+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/w9pEiSlFJaDfQvOVOHqwfDYdZ4.svg\"},className:\"framer-m2z3m4\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Customize widget\"})}),className:\"framer-4x6cq1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ocawkm\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+199.2+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/k2LX5fRzN3PljW5gwLkZZgpkDI.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/k2LX5fRzN3PljW5gwLkZZgpkDI.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+199.2+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/k2LX5fRzN3PljW5gwLkZZgpkDI.svg\"},className:\"framer-y4o833\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v65\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Automatic redirection\"})}),className:\"framer-1984x9v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zjvtrw\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3971.4+0+144+798+0+0+0+199.2+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/hSCLXcHQYwpXSDhgENrfbxQyU.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/hSCLXcHQYwpXSDhgENrfbxQyU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3951.4+0+144+798+0+0+0+199.2+0+0),pixelHeight:25,pixelWidth:24,src:\"https://framerusercontent.com/images/hSCLXcHQYwpXSDhgENrfbxQyU.svg\"},className:\"framer-1pte7gg\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-752680e7-6fdd-4101-a4bc-56790a63e139, rgb(90, 106, 119))\"},children:\"Account management\"})}),className:\"framer-3nb26b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+3971.4+0+144+798+0+266.4},P3HhB_xPK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+3951.4+0+144+798+0+266.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jfpw77-container\",nodeId:\"gzWznpT5X\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsButtonCopy,{bhDaw8gT6:{borderColor:\"#222\",borderStyle:\"solid\",borderWidth:1},eUazCBlgk:\"rgb(255, 255, 255)\",height:\"100%\",id:\"gzWznpT5X\",JIIBd62o_:\"\",layoutId:\"gzWznpT5X\",o63iM_imi:\"https://app.told.club/signup\",sFeT0IUs7:\"rgb(230, 62, 90)\",variant:\"YU0CNLcB8\",width:\"100%\",YWX7VgYG3:getLocalizedValue(\"v3\",activeLocale)??\"Start now\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-85odlj\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f9f1bi\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4unqip\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5w7z6k\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+0+0+0+0+0),pixelHeight:45,pixelWidth:146,src:\"https://framerusercontent.com/images/c1R4YY3UoCDOwvziLZNNReKwCZM.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:45,pixelWidth:146,src:\"https://framerusercontent.com/images/c1R4YY3UoCDOwvziLZNNReKwCZM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+0+0+0+0+0),pixelHeight:45,pixelWidth:146,src:\"https://framerusercontent.com/images/c1R4YY3UoCDOwvziLZNNReKwCZM.svg\"},className:\"framer-164ui2j\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Love words from our supporters\"})}),className:\"framer-18sz4u3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\"},children:\"They trust us every day to collect feedback in a simple and intuitive way.\"})}),className:\"framer-117gb05\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tsco5b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b8yavl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xykx1w\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Told help us to collect user feedback on our solution. It's easy for product managers to manage surveys without the developers. It's a lot of time saved for our team.\"})}),className:\"framer-4atgw1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1unfb8m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+307+0+0+0+24+158+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/acDHBFSUKBlZilELCYmFzYMyc18.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/acDHBFSUKBlZilELCYmFzYMyc18.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+307+0+0+0+32+158+0),pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/acDHBFSUKBlZilELCYmFzYMyc18.svg\"},className:\"framer-1mum9eg\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ct6rfg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v70\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Romain Passilly\"})}),className:\"framer-17yywie\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v71\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"CEO @Inqom by Visma\"})}),className:\"framer-m2q2sr\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ixe8dj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v72\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Told is perfect if you want to gain autonomy regarding the dev team. Just install few lines of code and you can manage your survey easily!\"})}),className:\"framer-1vppbv4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1brtdno\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+307+0+0+468+24+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/cmEt3yeda6LkWczN91akpqpLjc.png\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/cmEt3yeda6LkWczN91akpqpLjc.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+307+0+0+484+32+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/cmEt3yeda6LkWczN91akpqpLjc.png\"},className:\"framer-hw1j1x\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12lwyiu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v73\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Bruno Ballester\"})}),className:\"framer-o6sbix\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v74\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Head of product @Royal Canin\"})}),className:\"framer-1ym3dp7\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-141kdz4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g81xnt\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v75\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Told is the tool I was always looking for. I'm very excited to get onboard on what's coming next.\"})}),className:\"framer-14u5aw8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jv6y2f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+307+0+0+0+24+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/XO97g3Fh0AY4agHhSrf7dYBxIo.png\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/XO97g3Fh0AY4agHhSrf7dYBxIo.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+307+0+0+0+32+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/XO97g3Fh0AY4agHhSrf7dYBxIo.png\"},className:\"framer-1u1pmha\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19kl6ff\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v76\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Marcel Bertram\"})}),className:\"framer-ayj1jn\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v77\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Shared Service UX/Design System @Porsche\"})}),className:\"framer-8rbr\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-duvldc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v78\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:'In a \"community-led growth\" marketing strategy, it\\'s important to be able to listen to your community and meet their expectations. With Told, I can get feedback, measure their satisfaction and get all the information I need. This tool is really excellent!'})}),className:\"framer-1yhn1tf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v1x1tv\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+307+0+0+468+24+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ln2bN8IgpufgZGKiJOuckNE9RDQ.png\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ln2bN8IgpufgZGKiJOuckNE9RDQ.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+307+0+0+484+32+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/ln2bN8IgpufgZGKiJOuckNE9RDQ.png\"},className:\"framer-ozakhr\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1cvtv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v79\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Yoann Ros\"})}),className:\"framer-17h9idy\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v80\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Head of Marketing @Bricks\"})}),className:\"framer-1c4yp8m\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1epuho9\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-afp6hz\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v81\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Told is my new favorite widget! I wanted a simple to use solution that allows feedback collection while preserving the user experience. It's done with told. The UX is great and the team is awesome.\"})}),className:\"framer-1cp0f8f\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g03yzm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+307+0+0+0+24+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/cHctkhSKBPzeHHXuA4bEeBVdp8U.png\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/cHctkhSKBPzeHHXuA4bEeBVdp8U.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+307+0+0+0+32+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/cHctkhSKBPzeHHXuA4bEeBVdp8U.png\"},className:\"framer-y5ltvm\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14sypit\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v82\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Manon Manso\"})}),className:\"framer-1dd483d\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v83\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Head of retention @axeptio\"})}),className:\"framer-1em3pak\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-23ravh\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v84\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"Collecting user feedback\",/*#__PURE__*/_jsx(\"br\",{}),\"is essential for designers, and Told makes it easy and stylish to do so on websites, SaaS, and apps.\"]})}),className:\"framer-1sji3y8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xo6ug8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5303.8+144+0+0+307+0+0+468+24+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/9Ysk6FUUvAWGqVt97Oq5eIcBT90.png\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/9Ysk6FUUvAWGqVt97Oq5eIcBT90.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5283.8+144+0+0+307+0+0+484+32+158+0),pixelHeight:96,pixelWidth:96,src:\"https://framerusercontent.com/images/9Ysk6FUUvAWGqVt97Oq5eIcBT90.png\"},className:\"framer-1d2hgsq\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-72gxcm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v85\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-05ab9d4a-6303-4e37-b018-2d990a4356d4, rgb(68, 79, 89))\"},children:\"Valentin Salmon\"})}),className:\"framer-6tq0re\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v86\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIE1lZGl1bQ==\",\"--framer-font-family\":'\"Euclid Circular B Medium\", \"Euclid Circular B Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Co-founder @anagram\"})}),className:\"framer-6r4t82\",fonts:[\"CUSTOM;Euclid Circular B Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ogk0g\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qm10k4\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fnw6p7\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m6k7e3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6810.8+0+0+0+0+0+0+0+0),pixelHeight:71,pixelWidth:60,src:\"https://framerusercontent.com/images/WfiYJrepOkoAvabet64DuQdZQQ.svg\"}},P3HhB_xPK:{background:{alt:\"\",fit:\"fill\",pixelHeight:71,pixelWidth:60,src:\"https://framerusercontent.com/images/WfiYJrepOkoAvabet64DuQdZQQ.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6822.8+0+0+153.5+0+0+0+0),pixelHeight:71,pixelWidth:60,src:\"https://framerusercontent.com/images/WfiYJrepOkoAvabet64DuQdZQQ.svg\"},className:\"framer-15o2omy\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{children:getLocalizedValue(\"v88\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start from our templates\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v87\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Start from our templates\"})}),className:\"framer-12uaxzu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{P3HhB_xPK:{children:getLocalizedValue(\"v90\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:[\"Save time with our pre-designed templates. Choose from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif'},children:\"25 available templates\"}),\" and start from a solid base.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v89\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:[\"Save time with our pre-designed templates. Choose from \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif'},children:\"25 available templates\"}),\" and start from a solid base.\"]})}),className:\"framer-lyqe6g\",fonts:[\"CUSTOM;Euclid Circular B Regular\",\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+6810.8+0+0+0+0+0+289},P3HhB_xPK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+6822.8+0+0+153.5+0+289,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mm3c07-container\",nodeId:\"mfB2ooOoc\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(AtomsButtonCopy,{bhDaw8gT6:{borderColor:\"#222\",borderStyle:\"solid\",borderWidth:1},eUazCBlgk:\"rgb(255, 255, 255)\",height:\"100%\",id:\"mfB2ooOoc\",JIIBd62o_:\"\",layoutId:\"mfB2ooOoc\",o63iM_imi:\"https://app.told.club/signup\",sFeT0IUs7:\"rgb(230, 62, 90)\",variant:\"YU0CNLcB8\",width:\"100%\",YWX7VgYG3:getLocalizedValue(\"v3\",activeLocale)??\"Start now\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-el9y5u\",\"data-framer-name\":\"Right\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yw1jye-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zfoHxJjCO\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}},P3HhB_xPK:{arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:10,arrowRadius:40,arrowSize:40,showMouseControls:true},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"stretch\"}}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:42,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:0,height:\"100%\",id:\"zfoHxJjCO\",layoutId:\"zfoHxJjCO\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1btj1a9\",children:[visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:414,pixelWidth:391,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Lb0EBT5LOK178ZNlugEEW3JuOxQ.png\"},className:\"framer-12cqw9w\",\"data-framer-name\":\"Told-FR\"}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:806,pixelWidth:760,positionX:\"center\",positionY:\"center\",sizes:\"340px\",src:\"https://framerusercontent.com/images/kIB7Ir42ieWem0WuMJYSHa0HVw.png\",srcSet:\"https://framerusercontent.com/images/kIB7Ir42ieWem0WuMJYSHa0HVw.png 760w\"},className:\"framer-ygiluw\",\"data-framer-name\":\"Told-EN\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a70b4k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v91\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Net Promotion Score (NPS)\"})}),className:\"framer-1bqr90f\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v92\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Measure long-term customer happiness and loyalty.\"})}),className:\"framer-1m383jf\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3z8xat\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:760,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"397px\",src:\"https://framerusercontent.com/images/O7jG4Ew5xuNHsvOThpRN0VdVnik.png\",srcSet:\"https://framerusercontent.com/images/O7jG4Ew5xuNHsvOThpRN0VdVnik.png?scale-down-to=512 512w,https://framerusercontent.com/images/O7jG4Ew5xuNHsvOThpRN0VdVnik.png 780w\"},className:\"framer-1ly45l3\",\"data-framer-name\":\"Told-EN\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:760,pixelWidth:785,positionX:\"center\",positionY:\"center\",sizes:\"397px\",src:\"https://framerusercontent.com/images/HYsuX8r4qypZjMLsFDIMVkjnc0.png\",srcSet:\"https://framerusercontent.com/images/HYsuX8r4qypZjMLsFDIMVkjnc0.png?scale-down-to=512 512w,https://framerusercontent.com/images/HYsuX8r4qypZjMLsFDIMVkjnc0.png 785w\"},className:\"framer-1gvugjv\",\"data-framer-name\":\"Told-FR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d7eod2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v93\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Customer satisfaction score\"})}),className:\"framer-jvnql7\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v94\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"This satisfaction indicator measures user effort in product interactions.\"})}),className:\"framer-1pof25v\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v6sxup\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:760,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"408px\",src:\"https://framerusercontent.com/images/ILijp88psTKq0fGfaRkvyxA3lKk.png\",srcSet:\"https://framerusercontent.com/images/ILijp88psTKq0fGfaRkvyxA3lKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ILijp88psTKq0fGfaRkvyxA3lKk.png 780w\"},className:\"framer-b5t83y\",\"data-framer-name\":\"Told-EN\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:760,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"408px\",src:\"https://framerusercontent.com/images/ILijp88psTKq0fGfaRkvyxA3lKk.png\",srcSet:\"https://framerusercontent.com/images/ILijp88psTKq0fGfaRkvyxA3lKk.png?scale-down-to=512 512w,https://framerusercontent.com/images/ILijp88psTKq0fGfaRkvyxA3lKk.png 780w\"},className:\"framer-1x22h9e\",\"data-framer-name\":\"Told-FR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1upykyz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v95\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Evaluate your payment funnel\"})}),className:\"framer-3xlzr8\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v96\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Correct imperfections in your checkout tunnel through user feedback.\"})}),className:\"framer-1lao24o\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5fbovs\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:822,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"391px\",src:\"https://framerusercontent.com/images/3XKQhNkxAr2ogVudSUVhUwga7M.png\",srcSet:\"https://framerusercontent.com/images/3XKQhNkxAr2ogVudSUVhUwga7M.png 780w\"},className:\"framer-mqo2p3\",\"data-framer-name\":\"Told-EN\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:822,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"391px\",src:\"https://framerusercontent.com/images/XUvrrO4XpMYJkV0BiFj8JZt58QQ.png\",srcSet:\"https://framerusercontent.com/images/XUvrrO4XpMYJkV0BiFj8JZt58QQ.png 780w\"},className:\"framer-181rky\",\"data-framer-name\":\"Told-FR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dilgio\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v97\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Measure your Product Market Fit\"})}),className:\"framer-h2a5sg\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v98\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:'If less than 40% of respondents answer \"very disappointed\", it means you are on the right track.'})}),className:\"framer-1622mq2\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-162i1ww\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:760,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"402px\",src:\"https://framerusercontent.com/images/1XK1GUU8Yxa8a615tFPsN967cI.png\",srcSet:\"https://framerusercontent.com/images/1XK1GUU8Yxa8a615tFPsN967cI.png?scale-down-to=512 512w,https://framerusercontent.com/images/1XK1GUU8Yxa8a615tFPsN967cI.png 780w\"},className:\"framer-87virc\",\"data-framer-name\":\"Told-EN\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:760,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"341.7px\",src:\"https://framerusercontent.com/images/VPEO9dx9zIqajffnBnCBOtAd5g.png\",srcSet:\"https://framerusercontent.com/images/VPEO9dx9zIqajffnBnCBOtAd5g.png?scale-down-to=512 512w,https://framerusercontent.com/images/VPEO9dx9zIqajffnBnCBOtAd5g.png 780w\"},className:\"framer-1jgwm73\",\"data-framer-name\":\"Told-FR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n8xhdb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v99\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Validate a product idea\"})}),className:\"framer-u2guvi\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v100\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Test an idea with your users before launching its development.\"})}),className:\"framer-7piw1m\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ye3j9n\",children:[visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:598,pixelWidth:680,positionX:\"center\",positionY:\"center\",sizes:\"340px\",src:\"https://framerusercontent.com/images/qH73h8g62vj175Hc842O5G1LXY.png\",srcSet:\"https://framerusercontent.com/images/qH73h8g62vj175Hc842O5G1LXY.png?scale-down-to=512 512w,https://framerusercontent.com/images/qH73h8g62vj175Hc842O5G1LXY.png 680w\"},className:\"framer-ck15rt\",\"data-framer-name\":\"Told-EN\"}),visible1&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:790,pixelWidth:780,positionX:\"center\",positionY:\"center\",sizes:\"340px\",src:\"https://framerusercontent.com/images/gks3BqwE2Gn4qwq8Carws4lbZM.png\",srcSet:\"https://framerusercontent.com/images/gks3BqwE2Gn4qwq8Carws4lbZM.png 780w\"},className:\"framer-mrtybt\",\"data-framer-name\":\"Told-FR\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nrwnj6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v101\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFNlbWlib2xk\",\"--framer-font-family\":'\"Euclid Circular B Semibold\", \"Euclid Circular B Semibold Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\"},children:\"Request a new feature\"})}),className:\"framer-ixy3ul\",fonts:[\"CUSTOM;Euclid Circular B Semibold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v102\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0V1Y2xpZCBDaXJjdWxhciBCIFJlZ3VsYXI=\",\"--framer-font-family\":'\"Euclid Circular B Regular\", \"Euclid Circular B Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-11bdc266-bb51-49f4-b82d-3f7f124fdc21, rgb(26, 31, 36))\"},children:\"Continuously place a floating button that opens this template, to let your users push new features\"})}),className:\"framer-11fc9v7\",fonts:[\"CUSTOM;Euclid Circular B Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+7999.8},P3HhB_xPK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:574,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7610.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-prvydd-container\",nodeId:\"eAy9UCMO8\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ahtDHWXxd:{variant:\"rLzLyof00\"},cfK4xIwOX:{variant:\"OAyemByEd\"},P3HhB_xPK:{variant:\"AowZOigzr\"}},children:/*#__PURE__*/_jsx(OrganismsCTASection,{aEYjIftKU:getLocalizedValue(\"v104\",activeLocale)??\"Start integrating an online survey tool into your analysis process today to make the difference. No credit card required to try it out.\",height:\"100%\",id:\"eAy9UCMO8\",layoutId:\"eAy9UCMO8\",style:{width:\"100%\"},variant:\"gGCWwl4pF\",width:\"100%\",ZLCUdkA8U:getLocalizedValue(\"v103\",activeLocale)??\"Get started today!\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cfK4xIwOX:{y:(componentViewport?.y||0)+0+8573.8},P3HhB_xPK:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:486,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8184.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pibueu-container\",nodeId:\"SalIk7kaz\",scopeId:\"WYK1LwUtG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ahtDHWXxd:{variant:\"hG9Q3ic77\"},cfK4xIwOX:{variant:\"kJvkHEsa7\"},P3HhB_xPK:{variant:\"tq7DpA99Z\"}},children:/*#__PURE__*/_jsx(OrganismsFooter,{height:\"100%\",id:\"SalIk7kaz\",layoutId:\"SalIk7kaz\",style:{width:\"100%\"},variant:\"WzWPwTG7D\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0Iavx.framer-1nsokf6, .framer-0Iavx .framer-1nsokf6 { display: block; }\",\".framer-0Iavx.framer-ujzoxa { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-0Iavx .framer-15srxms-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-0Iavx .framer-1c0fb1l { 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: 56px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-sdlyty { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-106zxxb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1272px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-bm1knw, .framer-0Iavx .framer-hkg66e, .framer-0Iavx .framer-1vs8o48, .framer-0Iavx .framer-19y0928, .framer-0Iavx .framer-1m6k7e3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-gfrmt3 { 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-0Iavx .framer-p29z2y, .framer-0Iavx .framer-1njlx7h, .framer-0Iavx .framer-h5er04, .framer-0Iavx .framer-x5945q, .framer-0Iavx .framer-io4i7k, .framer-0Iavx .framer-1vmm2x, .framer-0Iavx .framer-18sz4u3, .framer-0Iavx .framer-12uaxzu, .framer-0Iavx .framer-1bqr90f, .framer-0Iavx .framer-jvnql7, .framer-0Iavx .framer-3xlzr8, .framer-0Iavx .framer-h2a5sg, .framer-0Iavx .framer-u2guvi, .framer-0Iavx .framer-ixy3ul { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-6mfw26, .framer-0Iavx .framer-13c50w7, .framer-0Iavx .framer-1cqeoo2, .framer-0Iavx .framer-1hjjc7f, .framer-0Iavx .framer-15jodcp, .framer-0Iavx .framer-92np2k, .framer-0Iavx .framer-12cvnoq, .framer-0Iavx .framer-xz0z9m, .framer-0Iavx .framer-1a4rzxw, .framer-0Iavx .framer-1rn7mgi, .framer-0Iavx .framer-117gb05, .framer-0Iavx .framer-4atgw1, .framer-0Iavx .framer-17yywie, .framer-0Iavx .framer-m2q2sr, .framer-0Iavx .framer-1vppbv4, .framer-0Iavx .framer-o6sbix, .framer-0Iavx .framer-1ym3dp7, .framer-0Iavx .framer-14u5aw8, .framer-0Iavx .framer-ayj1jn, .framer-0Iavx .framer-8rbr, .framer-0Iavx .framer-1yhn1tf, .framer-0Iavx .framer-17h9idy, .framer-0Iavx .framer-1c4yp8m, .framer-0Iavx .framer-1cp0f8f, .framer-0Iavx .framer-1dd483d, .framer-0Iavx .framer-1em3pak, .framer-0Iavx .framer-1sji3y8, .framer-0Iavx .framer-6tq0re, .framer-0Iavx .framer-6r4t82 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 580px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-uau9w7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-jm142z-container { flex: none; height: auto; position: relative; width: auto; z-index: 6; }\",\".framer-0Iavx .framer-1wq2xq7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0Iavx .framer-nsv48s { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-0Iavx .framer-1dd4f5c, .framer-0Iavx .framer-17yc2f0, .framer-0Iavx .framer-1q30214 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0Iavx .framer-1m9e6l2, .framer-0Iavx .framer-fuymbm, .framer-0Iavx .framer-1brqked { flex: none; height: 20px; overflow: hidden; position: relative; width: 20px; }\",\".framer-0Iavx .framer-14acgfl, .framer-0Iavx .framer-d0jej9, .framer-0Iavx .framer-1tbor5h, .framer-0Iavx .framer-19ouerf, .framer-0Iavx .framer-1rynb1, .framer-0Iavx .framer-cflm1k, .framer-0Iavx .framer-vu0tfm, .framer-0Iavx .framer-ww0hpl, .framer-0Iavx .framer-ogw4vc, .framer-0Iavx .framer-1vud1x6, .framer-0Iavx .framer-1tcg6i9, .framer-0Iavx .framer-q2l3dy, .framer-0Iavx .framer-2cpxqm, .framer-0Iavx .framer-14e30pf, .framer-0Iavx .framer-1nre9h8, .framer-0Iavx .framer-4x6cq1, .framer-0Iavx .framer-1984x9v, .framer-0Iavx .framer-3nb26b { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0Iavx .framer-1reu1h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0Iavx .framer-8nxlsb-container { flex: none; height: 722px; max-width: 1272px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1vxme79, .framer-0Iavx .framer-1yn3j56, .framer-0Iavx .framer-zia281, .framer-0Iavx .framer-1u22uvi, .framer-0Iavx .framer-1mw2v4k { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 410px; }\",\".framer-0Iavx .framer-mvt7io { align-content: flex-start; align-items: flex-start; background-color: #fce2de; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 642px; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 410px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0Iavx .framer-1gkk3lu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 560px; justify-content: flex-start; overflow: visible; padding: 34px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-s87s71, .framer-0Iavx .framer-7tqn22 { bottom: -82px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-0Iavx .framer-uowo6v, .framer-0Iavx .framer-1mvac0g, .framer-0Iavx .framer-2ah7x5, .framer-0Iavx .framer-w623b5, .framer-0Iavx .framer-134uorn { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 12px 16px 12px 12px; position: relative; width: min-content; z-index: 2; }\",\".framer-0Iavx .framer-jaetcx { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #f66b55; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; z-index: 4; }\",\".framer-0Iavx .framer-eik408, .framer-0Iavx .framer-8ok5vu, .framer-0Iavx .framer-hlfns5, .framer-0Iavx .framer-65amh3, .framer-0Iavx .framer-gp2134 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\".framer-0Iavx .framer-1rr0j4e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-0Iavx .framer-a6fv7b { align-content: flex-start; align-items: flex-start; background-color: var(--token-09b825f2-c2fd-4c7e-bf1b-aefae3a841dd, #fff2db); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 642px; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 34px; position: relative; text-decoration: none; width: 410px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0Iavx .framer-rra6kr { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-31cd362b-5669-4e84-8295-44d824e544a3, #ffc65c); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-0Iavx .framer-j3fzvi, .framer-0Iavx .framer-1e9xccz, .framer-0Iavx .framer-jwjkn8, .framer-0Iavx .framer-1ipw80g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-0Iavx .framer-edn0df, .framer-0Iavx .framer-1timp58, .framer-0Iavx .framer-36iu5 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-0Iavx .framer-17mytpn, .framer-0Iavx .framer-blmvfe, .framer-0Iavx .framer-65f8cd, .framer-0Iavx .framer-9pl897 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-0Iavx .framer-61qmtn { align-content: flex-start; align-items: flex-start; background-color: var(--token-bdea5e81-748e-43ca-a355-2d9cc4eeab83, #e2e7f8); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 642px; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 34px; position: relative; text-decoration: none; width: 410px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0Iavx .framer-1b1tol { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-8d91f106-b40e-4d4e-a221-4a188eb8a93a, #acb8ec); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-0Iavx .framer-ygbhnb { align-content: flex-start; align-items: flex-start; background-color: var(--token-34604e49-9667-4bed-aa27-14415724fbca, #dffbf1); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 642px; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 34px; position: relative; text-decoration: none; width: 410px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0Iavx .framer-uc8zw9 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-c9db7041-0959-4bd9-b609-a255084377b3, #50e3c2); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-0Iavx .framer-11sby9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-1ab8dfbf-853b-4f35-916e-1477a3741e7a, #d9e5ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 642px; justify-content: flex-start; max-width: 100%; overflow: hidden; padding: 34px; position: relative; text-decoration: none; width: 410px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-0Iavx .framer-1ciq82q { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-10cab969-edc0-408c-b95a-b4822595a007, #82aaff); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-0Iavx .framer-aa105v { bottom: 0px; flex: none; left: 0px; max-width: 100%; overflow: visible; position: absolute; top: 0px; width: 100%; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-0Iavx .framer-tjnzd6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 112px 20px 112px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-b3d3o3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1272px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0Iavx .framer-1gvk5ut { 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-0Iavx .framer-k8fug8-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1eb3app, .framer-0Iavx .framer-1szc7gg, .framer-0Iavx .framer-v1ji64, .framer-0Iavx .framer-u7yc7k, .framer-0Iavx .framer-vl760u, .framer-0Iavx .framer-k9mj71, .framer-0Iavx .framer-1brnpaj, .framer-0Iavx .framer-ybxecs, .framer-0Iavx .framer-kpdm2z, .framer-0Iavx .framer-997wo3, .framer-0Iavx .framer-ezu5ht { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; }\",\".framer-0Iavx .framer-16ysooq { aspect-ratio: 3.727272727272727 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 82px; }\",\".framer-0Iavx .framer-1fcwt2a { aspect-ratio: 2.6666666666666665 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 96px; }\",\".framer-0Iavx .framer-16rjwrw { aspect-ratio: 4.954545454545454 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 109px; }\",\".framer-0Iavx .framer-f9zuh9 { aspect-ratio: 5.045454545454546 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 111px; }\",\".framer-0Iavx .framer-ssbph3 { flex: none; height: 40px; position: relative; width: 109px; }\",\".framer-0Iavx .framer-ffymi1 { aspect-ratio: 4.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 108px; }\",\".framer-0Iavx .framer-1docsg7 { flex: none; height: 32px; position: relative; width: 87px; }\",\".framer-0Iavx .framer-r25kge { aspect-ratio: 1.8529411764705883 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 63px; }\",\".framer-0Iavx .framer-1cbky2m { aspect-ratio: 5.107142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 143px; }\",\".framer-0Iavx .framer-18gw2jh { aspect-ratio: 1.5434782608695652 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); position: relative; width: 71px; }\",\".framer-0Iavx .framer-kgz6tm { aspect-ratio: 4.375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 105px; }\",\".framer-0Iavx .framer-14686z9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 20px 76px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-ydrhb5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1272px; overflow: hidden; padding: 0px; position: sticky; top: 100px; width: 100%; z-index: 1; }\",\".framer-0Iavx .framer-gykq7g, .framer-0Iavx .framer-1vaak9c, .framer-0Iavx .framer-6lm2cf, .framer-0Iavx .framer-4unqip, .framer-0Iavx .framer-5w7z6k { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-gi6ogr-container, .framer-0Iavx .framer-ilm4gw-container, .framer-0Iavx .framer-4fpbt1-container, .framer-0Iavx .framer-1jo9m63-container, .framer-0Iavx .framer-19v2bot-container, .framer-0Iavx .framer-18s26iu-container, .framer-0Iavx .framer-cdfkea-container, .framer-0Iavx .framer-prvydd-container, .framer-0Iavx .framer-pibueu-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-0Iavx .framer-hv9ebq-container { flex: none; height: 515px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-ld8vgv { align-content: flex-start; align-items: flex-start; background-color: #fce2de; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Iavx .framer-nhnyfh, .framer-0Iavx .framer-1tj5xyx, .framer-0Iavx .framer-16msljd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 20px 20px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-16q7yjj, .framer-0Iavx .framer-1duxihr, .framer-0Iavx .framer-1dnjf50 { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; z-index: 2; }\",\".framer-0Iavx .framer-18sx2z7, .framer-0Iavx .framer-gv82wi, .framer-0Iavx .framer-2g242z { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 32px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; }\",\".framer-0Iavx .framer-ms54ov, .framer-0Iavx .framer-f54719, .framer-0Iavx .framer-i42loh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 545px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-1s0g4pd, .framer-0Iavx .framer-1b8rz4v, .framer-0Iavx .framer-114v0f { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: 240px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-c47iuq { align-content: flex-start; align-items: flex-start; background-color: #f4fcee; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Iavx .framer-1v6iq9n { align-content: flex-start; align-items: flex-start; background-color: var(--token-52dea63a-489c-42af-b19b-7d470bf04fab, #ebf1ff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Iavx .framer-10a4nkk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 76px 20px 144px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1cq8vxp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1272px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-z0qz43 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 709px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-yjqrci, .framer-0Iavx .framer-jdhrms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-660ofl, .framer-0Iavx .framer-1jcc9r1, .framer-0Iavx .framer-x00fik, .framer-0Iavx .framer-13b9lrb { --border-bottom-width: 1px; --border-color: var(--token-42c9468a-c8d1-48ac-9b05-24245bfe26ee, #eaedf0); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-1945f39c-a14d-4dfe-9245-297b7f5f7b5e, #f9fafb); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Iavx .framer-135vse4, .framer-0Iavx .framer-7qakla, .framer-0Iavx .framer-1ghuqpb, .framer-0Iavx .framer-qo7vu2, .framer-0Iavx .framer-1kxgqlh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1qagxtb-container, .framer-0Iavx .framer-e9whmi-container, .framer-0Iavx .framer-1nltrwy-container, .framer-0Iavx .framer-zgc79w-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-0Iavx .framer-17pb8fq, .framer-0Iavx .framer-ff8fj4, .framer-0Iavx .framer-1bly07n, .framer-0Iavx .framer-mm6nbc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-vndxm5 { align-content: center; align-items: center; background: linear-gradient(180deg, #f5f5f7 0%, rgb(255, 255, 255) 100%); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 144px 20px 76px 20px; position: relative; width: 1px; }\",\".framer-0Iavx .framer-y8uh8f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1272px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1t83vyb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-19dlnio { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-19x56wd, .framer-0Iavx .framer-1hil383 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-21s13j, .framer-0Iavx .framer-vz2f1b, .framer-0Iavx .framer-vo3mda, .framer-0Iavx .framer-18hzywe, .framer-0Iavx .framer-36tuqn, .framer-0Iavx .framer-1ocawkm, .framer-0Iavx .framer-zjvtrw { 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: min-content; }\",\".framer-0Iavx .framer-q7c98c, .framer-0Iavx .framer-11zrb7n, .framer-0Iavx .framer-1mk6txj, .framer-0Iavx .framer-1hl7r32, .framer-0Iavx .framer-m2z3m4, .framer-0Iavx .framer-y4o833, .framer-0Iavx .framer-1pte7gg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-0Iavx .framer-1jfpw77-container, .framer-0Iavx .framer-mm3c07-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0Iavx .framer-85odlj { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(255, 219, 223, 0) 0%, rgba(255, 219, 223, 0.20082) 11%, rgba(255, 219, 223, 0.3) 41.95895889333246%, rgba(255, 219, 223, 0.26171) 72%, rgba(255, 219, 223, 0) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 144px 20px 144px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1f9f1bi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1272px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-164ui2j { flex: none; height: 45px; overflow: hidden; position: relative; width: 146px; }\",\".framer-0Iavx .framer-1tsco5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-b8yavl, .framer-0Iavx .framer-141kdz4, .framer-0Iavx .framer-1epuho9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-0Iavx .framer-xykx1w, .framer-0Iavx .framer-1ixe8dj, .framer-0Iavx .framer-duvldc, .framer-0Iavx .framer-afp6hz, .framer-0Iavx .framer-23ravh { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Iavx .framer-1unfb8m, .framer-0Iavx .framer-1brtdno, .framer-0Iavx .framer-jv6y2f, .framer-0Iavx .framer-1v1x1tv, .framer-0Iavx .framer-1g03yzm, .framer-0Iavx .framer-1xo6ug8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1mum9eg, .framer-0Iavx .framer-hw1j1x, .framer-0Iavx .framer-1u1pmha, .framer-0Iavx .framer-ozakhr, .framer-0Iavx .framer-y5ltvm, .framer-0Iavx .framer-1d2hgsq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: hidden; position: relative; width: 48px; }\",\".framer-0Iavx .framer-ct6rfg, .framer-0Iavx .framer-12lwyiu, .framer-0Iavx .framer-19kl6ff, .framer-0Iavx .framer-1s1cvtv, .framer-0Iavx .framer-14sypit, .framer-0Iavx .framer-72gxcm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0Iavx .framer-g81xnt { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-ogk0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 144px 20px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-qm10k4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1272px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1fnw6p7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0Iavx .framer-15o2omy { flex: none; height: 71px; overflow: hidden; position: relative; width: 60px; }\",\".framer-0Iavx .framer-lyqe6g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 415px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-el9y5u { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Iavx .framer-1yw1jye-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1btj1a9 { align-content: center; align-items: center; background-color: #ebf1ff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 626px; }\",\".framer-0Iavx .framer-12cqw9w, .framer-0Iavx .framer-ygiluw, .framer-0Iavx .framer-ck15rt, .framer-0Iavx .framer-mrtybt { flex: none; height: 392px; overflow: hidden; position: relative; width: 340px; }\",\".framer-0Iavx .framer-1a70b4k, .framer-0Iavx .framer-d7eod2, .framer-0Iavx .framer-1upykyz, .framer-0Iavx .framer-dilgio, .framer-0Iavx .framer-1n8xhdb, .framer-0Iavx .framer-nrwnj6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-0Iavx .framer-1m383jf, .framer-0Iavx .framer-1pof25v, .framer-0Iavx .framer-7piw1m { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 310px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-3z8xat { align-content: center; align-items: center; background-color: var(--token-addc4f3b-6e8f-4f90-a89c-20b6b603c9a2, #eefae1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 626px; }\",\".framer-0Iavx .framer-1ly45l3, .framer-0Iavx .framer-1gvugjv { flex: none; height: 392px; overflow: hidden; position: relative; width: 397px; }\",\".framer-0Iavx .framer-1v6sxup { align-content: center; align-items: center; background-color: #fdebe8; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 626px; }\",\".framer-0Iavx .framer-b5t83y, .framer-0Iavx .framer-1x22h9e { flex: none; height: 392px; overflow: hidden; position: relative; width: 408px; }\",\".framer-0Iavx .framer-1lao24o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 400px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-5fbovs { align-content: center; align-items: center; background-color: #ddf6ff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 626px; }\",\".framer-0Iavx .framer-mqo2p3, .framer-0Iavx .framer-181rky { flex: none; height: 392px; overflow: hidden; position: relative; width: 391px; }\",\".framer-0Iavx .framer-1622mq2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0Iavx .framer-162i1ww { align-content: center; align-items: center; background-color: #fff2db; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 626px; }\",\".framer-0Iavx .framer-87virc { flex: none; height: 392px; overflow: hidden; position: relative; width: 402px; }\",\".framer-0Iavx .framer-1jgwm73 { flex: none; height: 392px; overflow: hidden; position: relative; width: 342px; }\",\".framer-0Iavx .framer-ye3j9n { align-content: center; align-items: center; background-color: #e4fcf3; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 644px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 626px; }\",\".framer-0Iavx .framer-11fc9v7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 420px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0Iavx.framer-ujzoxa, .framer-0Iavx .framer-1c0fb1l, .framer-0Iavx .framer-sdlyty, .framer-0Iavx .framer-106zxxb, .framer-0Iavx .framer-bm1knw, .framer-0Iavx .framer-gfrmt3, .framer-0Iavx .framer-uau9w7, .framer-0Iavx .framer-1wq2xq7, .framer-0Iavx .framer-nsv48s, .framer-0Iavx .framer-1dd4f5c, .framer-0Iavx .framer-17yc2f0, .framer-0Iavx .framer-1reu1h, .framer-0Iavx .framer-1q30214, .framer-0Iavx .framer-1vxme79, .framer-0Iavx .framer-mvt7io, .framer-0Iavx .framer-1gkk3lu, .framer-0Iavx .framer-uowo6v, .framer-0Iavx .framer-jaetcx, .framer-0Iavx .framer-1yn3j56, .framer-0Iavx .framer-a6fv7b, .framer-0Iavx .framer-1mvac0g, .framer-0Iavx .framer-rra6kr, .framer-0Iavx .framer-zia281, .framer-0Iavx .framer-61qmtn, .framer-0Iavx .framer-2ah7x5, .framer-0Iavx .framer-1b1tol, .framer-0Iavx .framer-1u22uvi, .framer-0Iavx .framer-ygbhnb, .framer-0Iavx .framer-w623b5, .framer-0Iavx .framer-uc8zw9, .framer-0Iavx .framer-1mw2v4k, .framer-0Iavx .framer-11sby9, .framer-0Iavx .framer-134uorn, .framer-0Iavx .framer-1ciq82q, .framer-0Iavx .framer-tjnzd6, .framer-0Iavx .framer-b3d3o3, .framer-0Iavx .framer-1gvk5ut, .framer-0Iavx .framer-1eb3app, .framer-0Iavx .framer-1szc7gg, .framer-0Iavx .framer-v1ji64, .framer-0Iavx .framer-u7yc7k, .framer-0Iavx .framer-vl760u, .framer-0Iavx .framer-k9mj71, .framer-0Iavx .framer-1brnpaj, .framer-0Iavx .framer-ybxecs, .framer-0Iavx .framer-kpdm2z, .framer-0Iavx .framer-997wo3, .framer-0Iavx .framer-ezu5ht, .framer-0Iavx .framer-14686z9, .framer-0Iavx .framer-ydrhb5, .framer-0Iavx .framer-gykq7g, .framer-0Iavx .framer-ld8vgv, .framer-0Iavx .framer-nhnyfh, .framer-0Iavx .framer-hkg66e, .framer-0Iavx .framer-16q7yjj, .framer-0Iavx .framer-18sx2z7, .framer-0Iavx .framer-1s0g4pd, .framer-0Iavx .framer-c47iuq, .framer-0Iavx .framer-1tj5xyx, .framer-0Iavx .framer-1vs8o48, .framer-0Iavx .framer-1duxihr, .framer-0Iavx .framer-gv82wi, .framer-0Iavx .framer-1b8rz4v, .framer-0Iavx .framer-1v6iq9n, .framer-0Iavx .framer-16msljd, .framer-0Iavx .framer-19y0928, .framer-0Iavx .framer-1dnjf50, .framer-0Iavx .framer-2g242z, .framer-0Iavx .framer-114v0f, .framer-0Iavx .framer-10a4nkk, .framer-0Iavx .framer-1cq8vxp, .framer-0Iavx .framer-1vaak9c, .framer-0Iavx .framer-yjqrci, .framer-0Iavx .framer-660ofl, .framer-0Iavx .framer-135vse4, .framer-0Iavx .framer-1jcc9r1, .framer-0Iavx .framer-7qakla, .framer-0Iavx .framer-x00fik, .framer-0Iavx .framer-1ghuqpb, .framer-0Iavx .framer-13b9lrb, .framer-0Iavx .framer-qo7vu2, .framer-0Iavx .framer-1kxgqlh, .framer-0Iavx .framer-vndxm5, .framer-0Iavx .framer-y8uh8f, .framer-0Iavx .framer-6lm2cf, .framer-0Iavx .framer-1t83vyb, .framer-0Iavx .framer-19dlnio, .framer-0Iavx .framer-jdhrms, .framer-0Iavx .framer-19x56wd, .framer-0Iavx .framer-21s13j, .framer-0Iavx .framer-vz2f1b, .framer-0Iavx .framer-vo3mda, .framer-0Iavx .framer-18hzywe, .framer-0Iavx .framer-1hil383, .framer-0Iavx .framer-36tuqn, .framer-0Iavx .framer-1ocawkm, .framer-0Iavx .framer-zjvtrw, .framer-0Iavx .framer-85odlj, .framer-0Iavx .framer-1f9f1bi, .framer-0Iavx .framer-4unqip, .framer-0Iavx .framer-5w7z6k, .framer-0Iavx .framer-1tsco5b, .framer-0Iavx .framer-b8yavl, .framer-0Iavx .framer-xykx1w, .framer-0Iavx .framer-1unfb8m, .framer-0Iavx .framer-ct6rfg, .framer-0Iavx .framer-1ixe8dj, .framer-0Iavx .framer-1brtdno, .framer-0Iavx .framer-12lwyiu, .framer-0Iavx .framer-141kdz4, .framer-0Iavx .framer-g81xnt, .framer-0Iavx .framer-jv6y2f, .framer-0Iavx .framer-19kl6ff, .framer-0Iavx .framer-duvldc, .framer-0Iavx .framer-1v1x1tv, .framer-0Iavx .framer-1s1cvtv, .framer-0Iavx .framer-1epuho9, .framer-0Iavx .framer-afp6hz, .framer-0Iavx .framer-1g03yzm, .framer-0Iavx .framer-14sypit, .framer-0Iavx .framer-23ravh, .framer-0Iavx .framer-1xo6ug8, .framer-0Iavx .framer-72gxcm, .framer-0Iavx .framer-ogk0g, .framer-0Iavx .framer-qm10k4, .framer-0Iavx .framer-1fnw6p7, .framer-0Iavx .framer-1m6k7e3, .framer-0Iavx .framer-el9y5u, .framer-0Iavx .framer-1btj1a9, .framer-0Iavx .framer-1a70b4k, .framer-0Iavx .framer-3z8xat, .framer-0Iavx .framer-d7eod2, .framer-0Iavx .framer-1v6sxup, .framer-0Iavx .framer-1upykyz, .framer-0Iavx .framer-5fbovs, .framer-0Iavx .framer-dilgio, .framer-0Iavx .framer-162i1ww, .framer-0Iavx .framer-1n8xhdb, .framer-0Iavx .framer-ye3j9n, .framer-0Iavx .framer-nrwnj6 { gap: 0px; } .framer-0Iavx.framer-ujzoxa > *, .framer-0Iavx .framer-1c0fb1l > *, .framer-0Iavx .framer-sdlyty > *, .framer-0Iavx .framer-gfrmt3 > *, .framer-0Iavx .framer-1gvk5ut > *, .framer-0Iavx .framer-14686z9 > *, .framer-0Iavx .framer-10a4nkk > *, .framer-0Iavx .framer-ct6rfg > *, .framer-0Iavx .framer-12lwyiu > *, .framer-0Iavx .framer-19kl6ff > *, .framer-0Iavx .framer-1s1cvtv > *, .framer-0Iavx .framer-14sypit > *, .framer-0Iavx .framer-72gxcm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0Iavx.framer-ujzoxa > :first-child, .framer-0Iavx .framer-1c0fb1l > :first-child, .framer-0Iavx .framer-sdlyty > :first-child, .framer-0Iavx .framer-106zxxb > :first-child, .framer-0Iavx .framer-bm1knw > :first-child, .framer-0Iavx .framer-gfrmt3 > :first-child, .framer-0Iavx .framer-1wq2xq7 > :first-child, .framer-0Iavx .framer-mvt7io > :first-child, .framer-0Iavx .framer-1gkk3lu > :first-child, .framer-0Iavx .framer-jaetcx > :first-child, .framer-0Iavx .framer-a6fv7b > :first-child, .framer-0Iavx .framer-rra6kr > :first-child, .framer-0Iavx .framer-61qmtn > :first-child, .framer-0Iavx .framer-1b1tol > :first-child, .framer-0Iavx .framer-ygbhnb > :first-child, .framer-0Iavx .framer-uc8zw9 > :first-child, .framer-0Iavx .framer-11sby9 > :first-child, .framer-0Iavx .framer-1ciq82q > :first-child, .framer-0Iavx .framer-b3d3o3 > :first-child, .framer-0Iavx .framer-1gvk5ut > :first-child, .framer-0Iavx .framer-14686z9 > :first-child, .framer-0Iavx .framer-ydrhb5 > :first-child, .framer-0Iavx .framer-gykq7g > :first-child, .framer-0Iavx .framer-ld8vgv > :first-child, .framer-0Iavx .framer-nhnyfh > :first-child, .framer-0Iavx .framer-hkg66e > :first-child, .framer-0Iavx .framer-18sx2z7 > :first-child, .framer-0Iavx .framer-1s0g4pd > :first-child, .framer-0Iavx .framer-c47iuq > :first-child, .framer-0Iavx .framer-1tj5xyx > :first-child, .framer-0Iavx .framer-1vs8o48 > :first-child, .framer-0Iavx .framer-gv82wi > :first-child, .framer-0Iavx .framer-1b8rz4v > :first-child, .framer-0Iavx .framer-1v6iq9n > :first-child, .framer-0Iavx .framer-16msljd > :first-child, .framer-0Iavx .framer-19y0928 > :first-child, .framer-0Iavx .framer-2g242z > :first-child, .framer-0Iavx .framer-114v0f > :first-child, .framer-0Iavx .framer-10a4nkk > :first-child, .framer-0Iavx .framer-1cq8vxp > :first-child, .framer-0Iavx .framer-1vaak9c > :first-child, .framer-0Iavx .framer-yjqrci > :first-child, .framer-0Iavx .framer-660ofl > :first-child, .framer-0Iavx .framer-1jcc9r1 > :first-child, .framer-0Iavx .framer-x00fik > :first-child, .framer-0Iavx .framer-13b9lrb > :first-child, .framer-0Iavx .framer-vndxm5 > :first-child, .framer-0Iavx .framer-y8uh8f > :first-child, .framer-0Iavx .framer-6lm2cf > :first-child, .framer-0Iavx .framer-1t83vyb > :first-child, .framer-0Iavx .framer-19dlnio > :first-child, .framer-0Iavx .framer-jdhrms > :first-child, .framer-0Iavx .framer-85odlj > :first-child, .framer-0Iavx .framer-1f9f1bi > :first-child, .framer-0Iavx .framer-4unqip > :first-child, .framer-0Iavx .framer-5w7z6k > :first-child, .framer-0Iavx .framer-b8yavl > :first-child, .framer-0Iavx .framer-xykx1w > :first-child, .framer-0Iavx .framer-ct6rfg > :first-child, .framer-0Iavx .framer-1ixe8dj > :first-child, .framer-0Iavx .framer-12lwyiu > :first-child, .framer-0Iavx .framer-141kdz4 > :first-child, .framer-0Iavx .framer-g81xnt > :first-child, .framer-0Iavx .framer-19kl6ff > :first-child, .framer-0Iavx .framer-duvldc > :first-child, .framer-0Iavx .framer-1s1cvtv > :first-child, .framer-0Iavx .framer-1epuho9 > :first-child, .framer-0Iavx .framer-afp6hz > :first-child, .framer-0Iavx .framer-14sypit > :first-child, .framer-0Iavx .framer-23ravh > :first-child, .framer-0Iavx .framer-72gxcm > :first-child, .framer-0Iavx .framer-ogk0g > :first-child, .framer-0Iavx .framer-1fnw6p7 > :first-child, .framer-0Iavx .framer-1m6k7e3 > :first-child, .framer-0Iavx .framer-el9y5u > :first-child, .framer-0Iavx .framer-1btj1a9 > :first-child, .framer-0Iavx .framer-1a70b4k > :first-child, .framer-0Iavx .framer-3z8xat > :first-child, .framer-0Iavx .framer-d7eod2 > :first-child, .framer-0Iavx .framer-1v6sxup > :first-child, .framer-0Iavx .framer-1upykyz > :first-child, .framer-0Iavx .framer-5fbovs > :first-child, .framer-0Iavx .framer-dilgio > :first-child, .framer-0Iavx .framer-162i1ww > :first-child, .framer-0Iavx .framer-1n8xhdb > :first-child, .framer-0Iavx .framer-ye3j9n > :first-child, .framer-0Iavx .framer-nrwnj6 > :first-child { margin-top: 0px; } .framer-0Iavx.framer-ujzoxa > :last-child, .framer-0Iavx .framer-1c0fb1l > :last-child, .framer-0Iavx .framer-sdlyty > :last-child, .framer-0Iavx .framer-106zxxb > :last-child, .framer-0Iavx .framer-bm1knw > :last-child, .framer-0Iavx .framer-gfrmt3 > :last-child, .framer-0Iavx .framer-1wq2xq7 > :last-child, .framer-0Iavx .framer-mvt7io > :last-child, .framer-0Iavx .framer-1gkk3lu > :last-child, .framer-0Iavx .framer-jaetcx > :last-child, .framer-0Iavx .framer-a6fv7b > :last-child, .framer-0Iavx .framer-rra6kr > :last-child, .framer-0Iavx .framer-61qmtn > :last-child, .framer-0Iavx .framer-1b1tol > :last-child, .framer-0Iavx .framer-ygbhnb > :last-child, .framer-0Iavx .framer-uc8zw9 > :last-child, .framer-0Iavx .framer-11sby9 > :last-child, .framer-0Iavx .framer-1ciq82q > :last-child, .framer-0Iavx .framer-b3d3o3 > :last-child, .framer-0Iavx .framer-1gvk5ut > :last-child, .framer-0Iavx .framer-14686z9 > :last-child, .framer-0Iavx .framer-ydrhb5 > :last-child, .framer-0Iavx .framer-gykq7g > :last-child, .framer-0Iavx .framer-ld8vgv > :last-child, .framer-0Iavx .framer-nhnyfh > :last-child, .framer-0Iavx .framer-hkg66e > :last-child, .framer-0Iavx .framer-18sx2z7 > :last-child, .framer-0Iavx .framer-1s0g4pd > :last-child, .framer-0Iavx .framer-c47iuq > :last-child, .framer-0Iavx .framer-1tj5xyx > :last-child, .framer-0Iavx .framer-1vs8o48 > :last-child, .framer-0Iavx .framer-gv82wi > :last-child, .framer-0Iavx .framer-1b8rz4v > :last-child, .framer-0Iavx .framer-1v6iq9n > :last-child, .framer-0Iavx .framer-16msljd > :last-child, .framer-0Iavx .framer-19y0928 > :last-child, .framer-0Iavx .framer-2g242z > :last-child, .framer-0Iavx .framer-114v0f > :last-child, .framer-0Iavx .framer-10a4nkk > :last-child, .framer-0Iavx .framer-1cq8vxp > :last-child, .framer-0Iavx .framer-1vaak9c > :last-child, .framer-0Iavx .framer-yjqrci > :last-child, .framer-0Iavx .framer-660ofl > :last-child, .framer-0Iavx .framer-1jcc9r1 > :last-child, .framer-0Iavx .framer-x00fik > :last-child, .framer-0Iavx .framer-13b9lrb > :last-child, .framer-0Iavx .framer-vndxm5 > :last-child, .framer-0Iavx .framer-y8uh8f > :last-child, .framer-0Iavx .framer-6lm2cf > :last-child, .framer-0Iavx .framer-1t83vyb > :last-child, .framer-0Iavx .framer-19dlnio > :last-child, .framer-0Iavx .framer-jdhrms > :last-child, .framer-0Iavx .framer-85odlj > :last-child, .framer-0Iavx .framer-1f9f1bi > :last-child, .framer-0Iavx .framer-4unqip > :last-child, .framer-0Iavx .framer-5w7z6k > :last-child, .framer-0Iavx .framer-b8yavl > :last-child, .framer-0Iavx .framer-xykx1w > :last-child, .framer-0Iavx .framer-ct6rfg > :last-child, .framer-0Iavx .framer-1ixe8dj > :last-child, .framer-0Iavx .framer-12lwyiu > :last-child, .framer-0Iavx .framer-141kdz4 > :last-child, .framer-0Iavx .framer-g81xnt > :last-child, .framer-0Iavx .framer-19kl6ff > :last-child, .framer-0Iavx .framer-duvldc > :last-child, .framer-0Iavx .framer-1s1cvtv > :last-child, .framer-0Iavx .framer-1epuho9 > :last-child, .framer-0Iavx .framer-afp6hz > :last-child, .framer-0Iavx .framer-14sypit > :last-child, .framer-0Iavx .framer-23ravh > :last-child, .framer-0Iavx .framer-72gxcm > :last-child, .framer-0Iavx .framer-ogk0g > :last-child, .framer-0Iavx .framer-1fnw6p7 > :last-child, .framer-0Iavx .framer-1m6k7e3 > :last-child, .framer-0Iavx .framer-el9y5u > :last-child, .framer-0Iavx .framer-1btj1a9 > :last-child, .framer-0Iavx .framer-1a70b4k > :last-child, .framer-0Iavx .framer-3z8xat > :last-child, .framer-0Iavx .framer-d7eod2 > :last-child, .framer-0Iavx .framer-1v6sxup > :last-child, .framer-0Iavx .framer-1upykyz > :last-child, .framer-0Iavx .framer-5fbovs > :last-child, .framer-0Iavx .framer-dilgio > :last-child, .framer-0Iavx .framer-162i1ww > :last-child, .framer-0Iavx .framer-1n8xhdb > :last-child, .framer-0Iavx .framer-ye3j9n > :last-child, .framer-0Iavx .framer-nrwnj6 > :last-child { margin-bottom: 0px; } .framer-0Iavx .framer-106zxxb > *, .framer-0Iavx .framer-nhnyfh > *, .framer-0Iavx .framer-1tj5xyx > *, .framer-0Iavx .framer-16msljd > *, .framer-0Iavx .framer-xykx1w > *, .framer-0Iavx .framer-1ixe8dj > *, .framer-0Iavx .framer-g81xnt > *, .framer-0Iavx .framer-duvldc > *, .framer-0Iavx .framer-afp6hz > *, .framer-0Iavx .framer-23ravh > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-0Iavx .framer-bm1knw > *, .framer-0Iavx .framer-gykq7g > *, .framer-0Iavx .framer-hkg66e > *, .framer-0Iavx .framer-1vs8o48 > *, .framer-0Iavx .framer-19y0928 > *, .framer-0Iavx .framer-1vaak9c > *, .framer-0Iavx .framer-6lm2cf > *, .framer-0Iavx .framer-4unqip > *, .framer-0Iavx .framer-5w7z6k > *, .framer-0Iavx .framer-1m6k7e3 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-0Iavx .framer-uau9w7 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-0Iavx .framer-uau9w7 > :first-child, .framer-0Iavx .framer-nsv48s > :first-child, .framer-0Iavx .framer-1dd4f5c > :first-child, .framer-0Iavx .framer-17yc2f0 > :first-child, .framer-0Iavx .framer-1reu1h > :first-child, .framer-0Iavx .framer-1q30214 > :first-child, .framer-0Iavx .framer-1vxme79 > :first-child, .framer-0Iavx .framer-uowo6v > :first-child, .framer-0Iavx .framer-1yn3j56 > :first-child, .framer-0Iavx .framer-1mvac0g > :first-child, .framer-0Iavx .framer-zia281 > :first-child, .framer-0Iavx .framer-2ah7x5 > :first-child, .framer-0Iavx .framer-1u22uvi > :first-child, .framer-0Iavx .framer-w623b5 > :first-child, .framer-0Iavx .framer-1mw2v4k > :first-child, .framer-0Iavx .framer-134uorn > :first-child, .framer-0Iavx .framer-tjnzd6 > :first-child, .framer-0Iavx .framer-1eb3app > :first-child, .framer-0Iavx .framer-1szc7gg > :first-child, .framer-0Iavx .framer-v1ji64 > :first-child, .framer-0Iavx .framer-u7yc7k > :first-child, .framer-0Iavx .framer-vl760u > :first-child, .framer-0Iavx .framer-k9mj71 > :first-child, .framer-0Iavx .framer-1brnpaj > :first-child, .framer-0Iavx .framer-ybxecs > :first-child, .framer-0Iavx .framer-kpdm2z > :first-child, .framer-0Iavx .framer-997wo3 > :first-child, .framer-0Iavx .framer-ezu5ht > :first-child, .framer-0Iavx .framer-16q7yjj > :first-child, .framer-0Iavx .framer-1duxihr > :first-child, .framer-0Iavx .framer-1dnjf50 > :first-child, .framer-0Iavx .framer-135vse4 > :first-child, .framer-0Iavx .framer-7qakla > :first-child, .framer-0Iavx .framer-1ghuqpb > :first-child, .framer-0Iavx .framer-qo7vu2 > :first-child, .framer-0Iavx .framer-1kxgqlh > :first-child, .framer-0Iavx .framer-19x56wd > :first-child, .framer-0Iavx .framer-21s13j > :first-child, .framer-0Iavx .framer-vz2f1b > :first-child, .framer-0Iavx .framer-vo3mda > :first-child, .framer-0Iavx .framer-18hzywe > :first-child, .framer-0Iavx .framer-1hil383 > :first-child, .framer-0Iavx .framer-36tuqn > :first-child, .framer-0Iavx .framer-1ocawkm > :first-child, .framer-0Iavx .framer-zjvtrw > :first-child, .framer-0Iavx .framer-1tsco5b > :first-child, .framer-0Iavx .framer-1unfb8m > :first-child, .framer-0Iavx .framer-1brtdno > :first-child, .framer-0Iavx .framer-jv6y2f > :first-child, .framer-0Iavx .framer-1v1x1tv > :first-child, .framer-0Iavx .framer-1g03yzm > :first-child, .framer-0Iavx .framer-1xo6ug8 > :first-child, .framer-0Iavx .framer-qm10k4 > :first-child { margin-left: 0px; } .framer-0Iavx .framer-uau9w7 > :last-child, .framer-0Iavx .framer-nsv48s > :last-child, .framer-0Iavx .framer-1dd4f5c > :last-child, .framer-0Iavx .framer-17yc2f0 > :last-child, .framer-0Iavx .framer-1reu1h > :last-child, .framer-0Iavx .framer-1q30214 > :last-child, .framer-0Iavx .framer-1vxme79 > :last-child, .framer-0Iavx .framer-uowo6v > :last-child, .framer-0Iavx .framer-1yn3j56 > :last-child, .framer-0Iavx .framer-1mvac0g > :last-child, .framer-0Iavx .framer-zia281 > :last-child, .framer-0Iavx .framer-2ah7x5 > :last-child, .framer-0Iavx .framer-1u22uvi > :last-child, .framer-0Iavx .framer-w623b5 > :last-child, .framer-0Iavx .framer-1mw2v4k > :last-child, .framer-0Iavx .framer-134uorn > :last-child, .framer-0Iavx .framer-tjnzd6 > :last-child, .framer-0Iavx .framer-1eb3app > :last-child, .framer-0Iavx .framer-1szc7gg > :last-child, .framer-0Iavx .framer-v1ji64 > :last-child, .framer-0Iavx .framer-u7yc7k > :last-child, .framer-0Iavx .framer-vl760u > :last-child, .framer-0Iavx .framer-k9mj71 > :last-child, .framer-0Iavx .framer-1brnpaj > :last-child, .framer-0Iavx .framer-ybxecs > :last-child, .framer-0Iavx .framer-kpdm2z > :last-child, .framer-0Iavx .framer-997wo3 > :last-child, .framer-0Iavx .framer-ezu5ht > :last-child, .framer-0Iavx .framer-16q7yjj > :last-child, .framer-0Iavx .framer-1duxihr > :last-child, .framer-0Iavx .framer-1dnjf50 > :last-child, .framer-0Iavx .framer-135vse4 > :last-child, .framer-0Iavx .framer-7qakla > :last-child, .framer-0Iavx .framer-1ghuqpb > :last-child, .framer-0Iavx .framer-qo7vu2 > :last-child, .framer-0Iavx .framer-1kxgqlh > :last-child, .framer-0Iavx .framer-19x56wd > :last-child, .framer-0Iavx .framer-21s13j > :last-child, .framer-0Iavx .framer-vz2f1b > :last-child, .framer-0Iavx .framer-vo3mda > :last-child, .framer-0Iavx .framer-18hzywe > :last-child, .framer-0Iavx .framer-1hil383 > :last-child, .framer-0Iavx .framer-36tuqn > :last-child, .framer-0Iavx .framer-1ocawkm > :last-child, .framer-0Iavx .framer-zjvtrw > :last-child, .framer-0Iavx .framer-1tsco5b > :last-child, .framer-0Iavx .framer-1unfb8m > :last-child, .framer-0Iavx .framer-1brtdno > :last-child, .framer-0Iavx .framer-jv6y2f > :last-child, .framer-0Iavx .framer-1v1x1tv > :last-child, .framer-0Iavx .framer-1g03yzm > :last-child, .framer-0Iavx .framer-1xo6ug8 > :last-child, .framer-0Iavx .framer-qm10k4 > :last-child { margin-right: 0px; } .framer-0Iavx .framer-1wq2xq7 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-0Iavx .framer-nsv48s > *, .framer-0Iavx .framer-uowo6v > *, .framer-0Iavx .framer-1mvac0g > *, .framer-0Iavx .framer-2ah7x5 > *, .framer-0Iavx .framer-w623b5 > *, .framer-0Iavx .framer-134uorn > *, .framer-0Iavx .framer-16q7yjj > *, .framer-0Iavx .framer-1duxihr > *, .framer-0Iavx .framer-1dnjf50 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-0Iavx .framer-1dd4f5c > *, .framer-0Iavx .framer-17yc2f0 > *, .framer-0Iavx .framer-1q30214 > * { margin: 0px; margin-left: calc(9px / 2); margin-right: calc(9px / 2); } .framer-0Iavx .framer-1reu1h > *, .framer-0Iavx .framer-1eb3app > *, .framer-0Iavx .framer-1szc7gg > *, .framer-0Iavx .framer-v1ji64 > *, .framer-0Iavx .framer-u7yc7k > *, .framer-0Iavx .framer-vl760u > *, .framer-0Iavx .framer-k9mj71 > *, .framer-0Iavx .framer-1brnpaj > *, .framer-0Iavx .framer-ybxecs > *, .framer-0Iavx .framer-kpdm2z > *, .framer-0Iavx .framer-997wo3 > *, .framer-0Iavx .framer-ezu5ht > *, .framer-0Iavx .framer-135vse4 > *, .framer-0Iavx .framer-7qakla > *, .framer-0Iavx .framer-1ghuqpb > *, .framer-0Iavx .framer-qo7vu2 > *, .framer-0Iavx .framer-1kxgqlh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0Iavx .framer-1vxme79 > *, .framer-0Iavx .framer-1yn3j56 > *, .framer-0Iavx .framer-zia281 > *, .framer-0Iavx .framer-1u22uvi > *, .framer-0Iavx .framer-1mw2v4k > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-0Iavx .framer-mvt7io > *, .framer-0Iavx .framer-1gkk3lu > *, .framer-0Iavx .framer-a6fv7b > *, .framer-0Iavx .framer-61qmtn > *, .framer-0Iavx .framer-ygbhnb > *, .framer-0Iavx .framer-11sby9 > *, .framer-0Iavx .framer-660ofl > *, .framer-0Iavx .framer-1jcc9r1 > *, .framer-0Iavx .framer-x00fik > *, .framer-0Iavx .framer-13b9lrb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-0Iavx .framer-jaetcx > *, .framer-0Iavx .framer-rra6kr > *, .framer-0Iavx .framer-1b1tol > *, .framer-0Iavx .framer-uc8zw9 > *, .framer-0Iavx .framer-1ciq82q > *, .framer-0Iavx .framer-18sx2z7 > *, .framer-0Iavx .framer-gv82wi > *, .framer-0Iavx .framer-2g242z > *, .framer-0Iavx .framer-1t83vyb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0Iavx .framer-tjnzd6 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-0Iavx .framer-b3d3o3 > *, .framer-0Iavx .framer-yjqrci > *, .framer-0Iavx .framer-jdhrms > *, .framer-0Iavx .framer-b8yavl > *, .framer-0Iavx .framer-141kdz4 > *, .framer-0Iavx .framer-1epuho9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0Iavx .framer-ydrhb5 > *, .framer-0Iavx .framer-1cq8vxp > *, .framer-0Iavx .framer-vndxm5 > *, .framer-0Iavx .framer-85odlj > *, .framer-0Iavx .framer-ogk0g > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-0Iavx .framer-ld8vgv > *, .framer-0Iavx .framer-c47iuq > *, .framer-0Iavx .framer-1v6iq9n > *, .framer-0Iavx .framer-1fnw6p7 > *, .framer-0Iavx .framer-1btj1a9 > *, .framer-0Iavx .framer-1a70b4k > *, .framer-0Iavx .framer-3z8xat > *, .framer-0Iavx .framer-d7eod2 > *, .framer-0Iavx .framer-1v6sxup > *, .framer-0Iavx .framer-1upykyz > *, .framer-0Iavx .framer-5fbovs > *, .framer-0Iavx .framer-dilgio > *, .framer-0Iavx .framer-162i1ww > *, .framer-0Iavx .framer-1n8xhdb > *, .framer-0Iavx .framer-ye3j9n > *, .framer-0Iavx .framer-nrwnj6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0Iavx .framer-1s0g4pd > *, .framer-0Iavx .framer-1b8rz4v > *, .framer-0Iavx .framer-114v0f > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-0Iavx .framer-y8uh8f > *, .framer-0Iavx .framer-1f9f1bi > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-0Iavx .framer-19dlnio > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } .framer-0Iavx .framer-19x56wd > *, .framer-0Iavx .framer-1hil383 > *, .framer-0Iavx .framer-1unfb8m > *, .framer-0Iavx .framer-1brtdno > *, .framer-0Iavx .framer-jv6y2f > *, .framer-0Iavx .framer-1v1x1tv > *, .framer-0Iavx .framer-1g03yzm > *, .framer-0Iavx .framer-1xo6ug8 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0Iavx .framer-21s13j > *, .framer-0Iavx .framer-vz2f1b > *, .framer-0Iavx .framer-vo3mda > *, .framer-0Iavx .framer-18hzywe > *, .framer-0Iavx .framer-36tuqn > *, .framer-0Iavx .framer-1ocawkm > *, .framer-0Iavx .framer-zjvtrw > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-0Iavx .framer-1tsco5b > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-0Iavx .framer-qm10k4 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-0Iavx .framer-el9y5u > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-0Iavx[data-border=\"true\"]::after, .framer-0Iavx [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1439px) { .framer-0Iavx.framer-ujzoxa { width: 1200px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-0Iavx.framer-ujzoxa { width: 810px; } .framer-0Iavx .framer-tjnzd6 { padding: 100px 20px 136px 20px; } .framer-0Iavx .framer-b3d3o3 { gap: 32px; justify-content: center; } .framer-0Iavx .framer-1njlx7h { max-width: 400px; } .framer-0Iavx .framer-1tsco5b { gap: 16px; } .framer-0Iavx .framer-xykx1w, .framer-0Iavx .framer-1ixe8dj, .framer-0Iavx .framer-g81xnt, .framer-0Iavx .framer-duvldc, .framer-0Iavx .framer-afp6hz, .framer-0Iavx .framer-23ravh { padding: 24px; } .framer-0Iavx .framer-qm10k4 { flex-direction: column; } .framer-0Iavx .framer-1fnw6p7, .framer-0Iavx .framer-el9y5u { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0Iavx .framer-b3d3o3, .framer-0Iavx .framer-1tsco5b, .framer-0Iavx .framer-qm10k4 { gap: 0px; } .framer-0Iavx .framer-b3d3o3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-0Iavx .framer-b3d3o3 > :first-child, .framer-0Iavx .framer-qm10k4 > :first-child { margin-top: 0px; } .framer-0Iavx .framer-b3d3o3 > :last-child, .framer-0Iavx .framer-qm10k4 > :last-child { margin-bottom: 0px; } .framer-0Iavx .framer-1tsco5b > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-0Iavx .framer-1tsco5b > :first-child { margin-left: 0px; } .framer-0Iavx .framer-1tsco5b > :last-child { margin-right: 0px; } .framer-0Iavx .framer-qm10k4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\",\"@media (max-width: 809px) { .framer-0Iavx.framer-ujzoxa { width: 390px; } .framer-0Iavx .framer-1c0fb1l { padding: 40px 0px 0px 0px; } .framer-0Iavx .framer-sdlyty { gap: 56px; } .framer-0Iavx .framer-uau9w7 { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-0Iavx .framer-tjnzd6 { padding: 100px 20px 112px 20px; } .framer-0Iavx .framer-b3d3o3 { gap: 32px; } .framer-0Iavx .framer-10a4nkk { padding: 76px 20px 112px 20px; } .framer-0Iavx .framer-1vaak9c, .framer-0Iavx .framer-660ofl, .framer-0Iavx .framer-135vse4 { order: 0; } .framer-0Iavx .framer-yjqrci, .framer-0Iavx .framer-92np2k, .framer-0Iavx .framer-13b9lrb { order: 1; } .framer-0Iavx .framer-4fpbt1-container, .framer-0Iavx .framer-x00fik { order: 2; } .framer-0Iavx .framer-1jcc9r1 { order: 3; } .framer-0Iavx .framer-vndxm5 { padding: 112px 0px 80px 0px; } .framer-0Iavx .framer-6lm2cf { padding: 0px 20px 0px 20px; } .framer-0Iavx .framer-1t83vyb { flex-direction: row; padding: 0px 20px 0px 20px; } .framer-0Iavx .framer-cdfkea-container { flex: 1 0 0px; width: 1px; } .framer-0Iavx .framer-jdhrms { gap: 12px; } .framer-0Iavx .framer-19x56wd, .framer-0Iavx .framer-1hil383 { flex-wrap: wrap; } .framer-0Iavx .framer-q7c98c, .framer-0Iavx .framer-11zrb7n, .framer-0Iavx .framer-1mk6txj, .framer-0Iavx .framer-1hl7r32, .framer-0Iavx .framer-m2z3m4, .framer-0Iavx .framer-y4o833, .framer-0Iavx .framer-1pte7gg { height: var(--framer-aspect-ratio-supported, 20px); width: 20px; } .framer-0Iavx .framer-85odlj { padding: 80px 20px 112px 20px; } .framer-0Iavx .framer-1tsco5b, .framer-0Iavx .framer-qm10k4 { flex-direction: column; } .framer-0Iavx .framer-b8yavl, .framer-0Iavx .framer-141kdz4, .framer-0Iavx .framer-1epuho9, .framer-0Iavx .framer-el9y5u { flex: none; width: 100%; } .framer-0Iavx .framer-ogk0g { padding: 0px 20px 112px 20px; } .framer-0Iavx .framer-1fnw6p7 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-0Iavx .framer-1m6k7e3 { align-content: center; align-items: center; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-0Iavx .framer-sdlyty, .framer-0Iavx .framer-uau9w7, .framer-0Iavx .framer-b3d3o3, .framer-0Iavx .framer-1t83vyb, .framer-0Iavx .framer-jdhrms, .framer-0Iavx .framer-1tsco5b, .framer-0Iavx .framer-qm10k4 { gap: 0px; } .framer-0Iavx .framer-sdlyty > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-0Iavx .framer-sdlyty > :first-child, .framer-0Iavx .framer-uau9w7 > :first-child, .framer-0Iavx .framer-b3d3o3 > :first-child, .framer-0Iavx .framer-jdhrms > :first-child, .framer-0Iavx .framer-1tsco5b > :first-child, .framer-0Iavx .framer-qm10k4 > :first-child { margin-top: 0px; } .framer-0Iavx .framer-sdlyty > :last-child, .framer-0Iavx .framer-uau9w7 > :last-child, .framer-0Iavx .framer-b3d3o3 > :last-child, .framer-0Iavx .framer-jdhrms > :last-child, .framer-0Iavx .framer-1tsco5b > :last-child, .framer-0Iavx .framer-qm10k4 > :last-child { margin-bottom: 0px; } .framer-0Iavx .framer-uau9w7 > *, .framer-0Iavx .framer-b3d3o3 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-0Iavx .framer-1t83vyb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0Iavx .framer-1t83vyb > :first-child { margin-left: 0px; } .framer-0Iavx .framer-1t83vyb > :last-child { margin-right: 0px; } .framer-0Iavx .framer-jdhrms > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-0Iavx .framer-1tsco5b > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-0Iavx .framer-qm10k4 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7897\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ahtDHWXxd\":{\"layout\":[\"fixed\",\"auto\"]},\"cfK4xIwOX\":{\"layout\":[\"fixed\",\"auto\"]},\"P3HhB_xPK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"N_TtSIAts\":{\"pattern\":\":N_TtSIAts\",\"name\":\"header\"},\"nyjd97poq\":{\"pattern\":\":nyjd97poq\",\"name\":\"companies\"}}\n * @framerResponsiveScreen\n */const FramerWYK1LwUtG=withCSS(Component,css,\"framer-0Iavx\");export default FramerWYK1LwUtG;FramerWYK1LwUtG.displayName=\"Page\";FramerWYK1LwUtG.defaultProps={height:7897,width:1440};addFonts(FramerWYK1LwUtG,[{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:\"Euclid Circular B Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/i1IXYmRU77jczU8YAi01ge7n10.woff2\"},{family:\"Euclid Circular B Semibold\",source:\"custom\",url:\"https://framerusercontent.com/assets/hFOISAdApjOKYtimYROzJU7DKKc.woff2\"},{family:\"Euclid Circular B Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/TdsUurmmvUqLEJCx0oI7m6Y7sw.woff2\"},{family:\"Kobe1.1 Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/pKnzkiEaZG10eAdKJV4xpWOlal8.woff2\"}]},...OrganismsNavigationFonts,...AtomsButtonCopyFonts,...SlideshowFonts,...TickerFonts,...OrganismsCarousselUsesCasesFonts,...Slideshow1Fonts,...OrganismsCarousselHowToUseFonts,...AtomsCircleNumberFonts,...EmbedFonts,...OrganismsSlideshowFeaturesFonts,...CarouselFonts,...OrganismsCTASectionFonts,...OrganismsFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWYK1LwUtG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"7897\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ahtDHWXxd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cfK4xIwOX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P3HhB_xPK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"N_TtSIAts\\\":{\\\"pattern\\\":\\\":N_TtSIAts\\\",\\\"name\\\":\\\"header\\\"},\\\"nyjd97poq\\\":{\\\"pattern\\\":\\\":nyjd97poq\\\",\\\"name\\\":\\\"companies\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "qyCAEA,IAAMA,GAAU,KAaE,SAARC,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,EAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,GAAa,cAAAC,EAAc,mBAAAC,EAAmB,aAAAC,CAAY,EAAEvB,EAAoB,CAAC,YAAAwB,GAAY,SAAAC,GAAS,UAAAC,GAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,EAAU,YAAAC,GAAY,UAAAC,EAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,EAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,EAAkB,CAAC,iBAAA6B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,EAAsBsC,GAAajD,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAE16BmD,GAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,EAAc7D,EAAM,OAAO,OAAO,EAAQ8D,GAAYC,GAAS,MAAMF,CAAa,EAAE,EAAQG,EAAa9D,IAAY,QAAQA,IAAY,QAAc+D,GAAW/D,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC4D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAYd,EAAc,IAAIe,GAAoBC,GAAU,CAAC,EAAI,CAAChB,CAAa,CAAC,EAAQiB,GAAWL,EAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,GAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,GAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,GAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,GAAS,EAAK,EAE9jBS,GAAc,CAAC,EAAMC,GAAY,EAAKhC,KAAUgC,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG/B,IAAaU,GAAU,QAAQ,CAAC,IAAMsB,EAAMjC,EAAc,OAAO,EAAQkC,GAAa/B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBwB,GAAMtB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNuB,IAA1MvB,EAAYoB,CAAK,EAAE,QAAQ9B,EAAaU,EAAYoB,CAAK,EAAE,QAAQ,WAAWpB,EAAYoB,CAAK,EAAE,QAAQ,YAAYpB,EAAYoB,CAAK,EAAE,QAAQ,UAAUpB,EAAYoB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,GAAMzF,EAAU2F,GAASxB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQyB,GAAUzB,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQ0B,GAAW1B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQ2B,GAAerC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEsC,EAAO,YAAY,EAAE9B,GAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE8B,EAAO,aAAa,EAAE9B,GAAU,QAAQ,YAAY,EAAEQ,GAAQ,CAAC,OAAOe,GAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,EAAG,EAAE,CAACvC,EAAW,CAAC,EAAQyC,GAAgBV,GAAY,IAAI,CAACW,GAAK,KAAKZ,EAAO,CAAE,EAAE,CAACA,EAAO,CAAC,EAG7uCa,GAAgB,IAAI,CAAI3C,IAAYyC,GAAgB,CAAE,EAAE,CAACzC,GAAYhD,CAAU,CAAC,EAGhF,IAAI4F,GAAcjC,EAAO,EAAI,EAAEkC,GAAU,IAAYC,GAAOpC,GAAU,QAAQ,CAAC,CAAC,YAAAqC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASN,GAAgB,EAAEd,GAAc,EAAI,GAAGiB,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGnB,GAAW,CAAC,IAAMsB,EAAM,WAAW,IAAIrB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAaqB,CAAK,EAAG,EAAE,CAACtB,EAAU,CAAC,EAEhX,IAAMuB,GAA+DlD,GAAc,OAAamD,GAAarD,GAAS,EAAoCoB,GAAK,SAAekC,GAA+ClC,GAAK,KAAMxE,EAAU2G,GAAWjH,EAAUgH,GAAiB,CAACE,GAAYC,EAAc,EAAEnC,GAAShF,EAAU8G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAErC,GAAS,EAAK,EAAyGsC,GAAc9C,EAAO,IAAI,EAAQ+C,GAASC,GAAUF,EAAa,EAAQG,GAAUC,GAAkB,GAAGH,GAAeI,GAAO3D,GAAW,EAAE,GAA+C4D,GAAKC,GAAed,EAAY,EAAuEe,GAAe/D,EAAa,CAAC/D,GAA8C8E,GAAK,UAAWxE,GAAK,CAACN,GAA8C8E,GAAK,WAAYxE,GAAsDyH,GAAY,IAAIJ,GAAOT,GAAYF,GAAwIgB,GAActE,GAA8H,EAArHuE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,GAAQC,GAAK,CAACrB,GAAa,CAACA,GAAa,EAAEmB,CAAK,EAAE,OAAO,MAAMC,EAAO,EAAE,EAAEA,EAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEtB,GAAWI,EAAW,EAAQoB,GAAqBF,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAqHV,GAAgB,IAAI,CAAuC1B,GAAK,WAAY,MAG9mD,CAAC2B,GAAc,SAASlB,IAAYqC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAACjD,EAAKiC,GAAaY,GAAOV,GAAWC,GAAYF,GAAYzB,EAAU,CAAC,EAG3G,IAAMgD,GAAY,IAAI,CAAI7E,IAAU,CAACG,IAAa,CAACiB,EAAK,QAAQsC,KAAqBQ,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAE/G,CAAiB,EAAMb,GAAiBgF,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACsC,GAAeD,GAAY,CAAC,EAAEqB,GAAY,CAAE,EAAExH,EAAgB,GAAG,GAAG,EAAuC0H,GAASC,GAAO,CAAyDvB,GAApDnD,GAAmEkD,GAAYwB,EAApDxB,GAAYwB,CAA6C,CAAG,EAAQC,GAAQhE,GAAO,CAAC,IAAMiE,GAAmBR,GAAK,EAAEtB,GAAWI,EAAW,EAAQ2B,GAAyBT,GAAK,EAAE,CAACtB,GAAWI,EAAW,EAAQ4B,GAAKnE,EAAMiE,GAAyBG,GAAapE,EAAM,KAAK,IAAIkE,EAAwB,EAAyD1B,GAAnDnD,GAAkEkD,GAAY6B,GAAnD7B,GAAY4B,EAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAAC3B,GAAc,EAAI,CAAE,EAAQ4B,GAAc,CAACC,EAAM,CAAC,OAAAC,GAAO,SAAAC,EAAQ,IAAI,CAAC/B,GAAc,EAAK,EAAE,IAAMgC,GAAWtF,EAAaoF,GAAO,EAAEA,GAAO,EAAQG,GAAkB,IAC9LC,GAAaxF,EAAaqF,GAAS,EAAEA,GAAS,EAAQI,GAAaH,GAAW,CAACvE,EAAK,KAAK,EAAQ2E,GAAaJ,GAAWvE,EAAK,KAAK,EAA6D4E,GAAiB,KAAK,IAAIL,EAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiB5E,EAAK,IAAI,EAAqF8E,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgEjD,GAAU,IAAI,CAAC,GAAG,GAACe,IAAWlC,IAAkB,OAAAgD,GAAY,EAAQ,IAAI1D,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAcgC,GAAUlC,EAAU,CAAC,EAA8D,IAAIsE,GAAa,EAE5gCC,GAAiB,QAAQ,IAAIjJ,QAAiBP,SAAWA,EAAIO,OAInE,QAAQ8D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAIF,EAAc,CAACmG,GAAMC,KAAa,CAAC,IAAIC,GAAI,OAAGD,KAAa,IAAGC,GAAIxF,EAAY,CAAC,GAAMuF,KAAapG,EAAc,OAAO,IAAGqG,GAAIxF,EAAY,CAAC,GAAuBN,EAAK+F,GAAM,CAAC,IAAIzF,EAAYuF,EAAU,EAAE,SAASrF,EAAMqF,GAAW,KAAK,MAAMrF,EAAM,MAAMZ,GAAalD,EAAW,EAAEiJ,GAAwB,OAAO,OAAQ/F,EAAkD,OAArClD,EAAW,EAAEiJ,GAAiB,OAAc,KAAKhF,EAAK,MAAMiF,GAAM,YAAgEnG,GAAc,OAAO,aAAaoE,GAAa,aAAa6B,KAAe,IAAIvJ,EAAI,SAASoD,GAAS,aAAaK,EAAa,eAAe1C,EAAe,aAAaC,GAAa,cAAcC,EAAc,SAASoD,EAAMqF,EAAU,EAAErF,EAAMqF,GAAW,IAAI,CAAE,CAAC,CAAC,EAEhyB,IAAMG,GAAcpG,EAAa,WAAW,YAAkBqG,GAAexI,GAAU,EAAQyI,GAAa,IAAIzI,GAAU,EAAQ0I,GAAeC,GAAM1I,EAAU,EAAEuI,EAAc,EAAQI,GAAa,IAAI3I,EAAgB4I,GAAS,mBAAmBN,qBAAgCrI,MAAcwI,yBAAqCF,yBAAqCC,sBAAgCvI,MAAc0I,OAEtZE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG7H,GAAiB,CAAC,QAAQ8H,EAAE,EAAEA,EAAuDhH,GAAc,OAAQgH,IAAKF,GAAK,KAAkBvG,EAAK0G,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAM/H,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY2H,GAAiB,gBAAgBzH,GAAkB,QAAQC,GAAY,QAAQ,IAAIoF,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMxB,GAAW,MAAM8D,EAAE,IAAIzH,GAAQ,QAAQD,GAAY,aAAaa,EAAa,WAAWC,EAAU,EAAE4G,CAAC,CAAC,EAAMpH,GAAS,IAAGmH,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQnH,SAAgB,IAAMwH,GAAU5K,EAAY,CAAC,KAAK2D,EAAa,IAAI,IAAI,YAAYiF,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAY1I,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkB2I,GAAe3I,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqB4I,GAAa5I,IAAgB,YAAYA,IAAgB,cAAoB6I,GAAc7I,IAAgB,aAAaA,IAAgB,eAAqB8I,GAAY9I,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGqH,GAAe,QAAQ7H,GAAa,gBAAgB/B,GAAY+I,GAAS,OAAU,aAAa/I,GAAY+I,GAAS,OAAU,UAAU/I,GAAY+I,GAAS,OAAU,QAA2C3F,GAAK,OAAQ,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,GAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,GAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAY8D,GAAO,CACtyDA,EAAM,eAAe,EAAE5D,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,IAAIgC,GAAc,SAAS,CAAcnD,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,GAAS,UAAU,SAAS,aAAaT,EAAa,WAAW,OAAO,YAAYwC,GAAS,OAAOlC,CAAkB,EAAE,SAAsB2C,EAAKoH,EAAO,GAAG,CAAC,IAAIhH,GAAU,GAAGyG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIhL,EAAI,WAAWD,EAAU,EAAE0D,EAAaL,GAASoE,GAAeE,GAAa,EAAE,EAAGjE,EAAkD,EAArCL,GAASoE,GAAeE,GAAe,cAAcjE,EAAa,MAAM,SAAS,eAAexC,IAAgB,GAAG,CAACmC,GAAS,cAAc,OAAU,OAAOtD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,CAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAexB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGuH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcvH,EAAMsH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAcxH,EAAa,MAAM,SAAS,eAAe1B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB1C,GAAU,EAAE,WAAW,SAAS,MAAM4C,GAAa,IAAIH,GAAiBG,GAAayI,GAAYvI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAa2I,GAAatI,GAAiBwI,GAAY,EAAE,QAAQ,MAAMhJ,GAAiBG,GAAa4I,GAAczI,GAAkB0I,GAAY,EAAE,QAAQ,OAAOhJ,GAAiBG,GAAa0I,GAAetI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ2C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,EAAkB,SAAS,CAAcmD,EAAKoH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB7I,EAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI0G,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBtE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,EAAU,OAAOA,EAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAKoH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB7I,EAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAI0G,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBtE,EAAK,MAAM,CAAC,SAAS,QAAQ,MAAMnC,EAAU,OAAOA,EAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsI,GAAK,OAAO,EAAevG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGsH,GAAmB,KAAK1H,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGsH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyB7K,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAAyB6L,GAAoB7L,EAAU,CAAC,MAAM,CAAC,KAAK8L,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAa9L,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAK8L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAO7L,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAK6L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa9L,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAK8L,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa9L,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAK8L,EAAY,OAAO,MAAM,QAAQ,aAAa9L,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAK8L,EAAY,OAAO,MAAM,cAAc,aAAa9L,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAK8L,EAAY,OAAO,MAAM,SAAS,aAAa9L,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAK8L,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAa9L,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK8L,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa9L,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAK8L,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAa9L,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAK8L,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO7L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa9L,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAK8L,EAAY,MAAM,MAAM,OAAO,OAAO7L,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAK8L,EAAY,MAAM,MAAM,WAAW,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK6L,EAAY,MAAM,MAAM,OAAO,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa9L,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAO7L,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAK6L,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAa9L,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAK6L,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK6L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6L,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK6L,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK6L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK6L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO7L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMwL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BpH,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAA4ByG,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAW,SAAmBjM,EAAMmK,EAAI,CAAC,IAAI+B,EAAaC,EAAc,GAAK,CAAC,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAAjF,EAAK,IAAAxE,EAAI,aAAA0H,EAAa,YAAAqE,EAAY,aAAAxC,EAAa,SAAAnG,EAAS,QAAA4I,EAAQ,eAAAjL,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAwC,EAAa,OAAAwI,EAAO,MAAA5H,CAAK,EAAE7E,EAEzma0M,GAAgD1H,GAAK,KAAMxE,GAAKuJ,EAAmB4C,EAAY,CAAC,CAAoC3H,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMxE,EAAsCwE,GAAK,MAAM,EAAE,IAAI4H,GAAKA,EAAIF,CAAW,EAE1TG,GAAQ,CAACjJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAC,CAAClL,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQqL,EAAQ,CAAClJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAClL,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQsL,EAAQ,CAACnJ,GAAUuE,GAAaD,EAAayE,EAAY,CAACpL,EAAe,EAAE,EAAEA,CAAc,CAAC,EAAQyL,EAAM,CAACpJ,GAAUuE,GAAaD,EAAayE,EAAY,CAACnL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQyL,GAAW,CAACrJ,GAAUuE,GAAaD,EAAayE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQhF,GAAU,CAAC/D,GAAUuE,GAAaD,EAAagF,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE/F,GAAU,IAAI,CAAC,GAAIe,GAAiB,OAAOA,GAAU,SAASwF,GAAU,CAAC,IAAIC,GAAcA,EAAajD,EAAI,WAAW,MAAMiD,IAAe,QAAcA,EAAa,aAAa,cAAc,CAACD,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAME,GAAWzJ,EAAS,UAAUuE,GAAaD,EAAa,CAACyE,EAAY,CAAC,EAAE3H,EAAK,eAAesI,GAAIX,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAE3H,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAE,OAAoBX,EAAKkJ,GAAY,CAAC,QAAQ,KAAK,SAAsBlJ,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,IAAQ,EAAa,SAAsB2I,GAAavD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAS,QAAQ,MAAM,CAAC,IAAIF,EAAajC,EAAM,SAAS,MAAMiC,IAAe,OAAO,OAAOA,EAAa,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,EAAQ,MAAMC,EAAM,QAAQ/I,EAAagJ,GAAW,GAAG,QAAShJ,EAAwB,GAAXgJ,GAAc,QAAQhJ,EAAa4I,GAAQ,EAAE,QAAS5I,EAAqB,EAAR6I,EAAU,WAAAO,EAAU,EAAE,SAASpD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAapF,EAAM,MAAS,GAAGsH,EAAclC,EAAM,SAAS,MAAMkC,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAA0C,EAAgB,QAAAV,EAAQ,MAAAhH,EAAM,MAAAlB,EAAM,aAAA0D,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAA0C,EAAY,IAAAlN,EAAI,QAAAC,EAAQ,aAAAwD,EAAa,WAAAC,EAAW,GAAGlE,CAAK,EAAE,CAA8C,IAAI2N,EAAWpF,IAAe1D,EAAuDX,IAAYyJ,EAAW,KAAK,IAAInF,CAAoB,IAAI3D,GAAO,IAAM+I,EAAcpN,EAAI,EAAMqN,EAAI,CAAC5J,GAAcY,EAAM,EAAE+I,EAAcnN,EAAYqN,EAAO,CAAC7J,GAAcY,IAAQkB,EAAM,EAAE6H,EAAcnN,EAAYsN,EAAM9J,GAAcY,IAAQkB,EAAM,EAAE6H,EAAcnN,EAAYuN,EAAK/J,GAAcY,EAAM,EAAE+I,EAAcnN,EAAQ,OAAoB4D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,IAAI,KAAK,SAAS,GAAG7E,EAAM,MAAM,CAAC,GAAG0N,EAAY,QAAQ,GAAGG,OAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAsB3J,EAAKoH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQ2C,EAAWF,EAAgBV,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,IAAMpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,EC5Dx3F,IAAAiD,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,QAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAG,UAAuBC,GAAG,mDAAgEC,GAAG,eAA4BC,GAAG,iEAA8EC,GAAG,4BAAyCC,GAAG,mDAAgEC,GAAG,eAA4BC,GAAG,8DAA2EC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAS,yDAAyD,CAAC,CAAC,CAAC,EAAeE,GAAiBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,EAAeG,GAAiBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeI,GAAiBN,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAeK,GAAiBP,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,kGAA6F,CAAC,CAAC,CAAC,EAAeM,GAAI,+DAA4EC,GAAiBT,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAeQ,GAAiBV,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,EAAeS,GAAiBX,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,iJAAiJ,CAAC,CAAC,CAAC,EAAeU,GAAiBZ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAeW,GAAiBb,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,wEAAwE,CAAC,CAAC,CAAC,EAAeY,GAAiBd,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,+IAA+I,CAAC,CAAC,CAAC,EAC3lLa,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,IAAM,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECA19C,IAAMC,GAAiB,CAAC,UAAUC,EAAe,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCAkB,IAAMG,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAwO,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,KAAK,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,cAAAC,EAAc,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKN,GAAkDK,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,wEAAwE,WAAWC,EAAMN,GAA2DI,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,qEAAqE,SAASE,GAAOD,EAAuCV,GAAwBO,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACL,EAAMM,IAAeN,EAAM,iBAAwBM,EAAS,KAAK,GAAG,EAAEN,EAAM,iBAAwBM,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAASR,EAAMS,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzB,GAASM,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnB,CAAQ,EAAEoB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAX,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiBxB,GAAuBL,EAAMM,CAAQ,EAAQwB,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB/C,EAAKgD,GAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsB3C,EAAKC,GAAS,CAAC,QAAQgB,EAAS,QAAQ,GAAM,SAAsBjB,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG4B,EAAU,GAAGG,EAAgB,UAAUgB,GAAGC,GAAkB,GAAGL,EAAsB,gBAAgBpB,EAAUO,CAAU,EAAE,mBAAmB,KAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,gBAAgBb,EAAU,GAAGJ,CAAK,EAAE,GAAG2B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEpB,EAAYG,CAAc,EAAE,SAAsBlC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBsC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgBX,CAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,gFAAgF,2PAA2P,6FAA6F,yWAAyW,iEAAiE,EAStnJC,GAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,EAAE,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,KAAK,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,kGAAkG,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,gGAAgG,MAAM,iBAAiB,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV5vB,IAAAM,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAChhFI,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECD3W,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,KACO,IAAMC,GAAqB,CAAC,QAAU,CAAC,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECAuf,IAAMC,GAAsBC,EAASC,EAAgB,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAiB,CAAC,UAAUC,GAAgB,UAAUC,EAAgB,EAAQC,GAAkB,CAACC,EAAIC,IAAS,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAON,GAAiBK,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAO,OAAOA,EAAQF,EAAOA,EAAO,SAAU,EAAQG,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAkBF,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBG,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWR,GAAmCK,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,cAAc,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,MAAAC,EAAM,YAAAC,EAAY,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAMC,EAAMC,EAAM,MAAM,CAAC,GAAGN,EAAM,UAAUP,GAAmCO,EAAM,UAAU,WAAWC,EAAKT,GAAkDQ,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,sEAAsE,EAAE,WAAWC,EAAMR,GAAqDM,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,sCAAsC,SAASE,GAAOD,EAAuCb,GAAwBU,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMP,GAAmCE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,UAAU,WAAWC,EAAMX,GAAqDK,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,CAAC,IAAI,sEAAsE,CAAC,CAAE,EAAQC,GAAuB,CAACP,EAAMnC,IAAemC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAEmC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAU2C,GAA6BC,GAAW,SAAST,EAAMU,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjD,EAAQ,UAAAkD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE/B,GAASS,CAAK,EAAO,CAAC,YAAAuB,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/D,CAAQ,EAAEgE,GAAgB,CAAC,WAAArE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoE,EAAiBvB,GAAuBP,EAAMnC,CAAQ,EAAO,CAAC,sBAAAkE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBV,CAAW,EAAQW,GAAaH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKN,GAAqB,MAAMA,EAAU,GAAGc,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAgBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAEU,GAAmBf,EAAY,CAAC,QAAQa,EAAgB,UAAU,OAAU,UAAUC,CAAe,CAAC,EAAE,IAAME,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQlB,IAAc,YAA6CmB,GAAa,IAAQnB,IAAc,YAA6CoB,GAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,IAAIC,GAAmBC,EAAoBC,GAAoBC,EAAoB,OAAoBjE,EAAKkE,GAAY,CAAC,GAAGpC,GAA4C2B,GAAgB,SAAsBzD,EAAKC,GAAS,CAAC,QAAQtB,EAAS,QAAQ,GAAM,SAAsBqB,EAAKR,GAAW,CAAC,MAAMF,GAAY,SAAsB6E,EAAMjE,EAAO,IAAI,CAAC,GAAGkC,EAAU,GAAGG,EAAgB,UAAU6B,GAAG7F,GAAkB,GAAGoF,EAAsB,gBAAgB9B,EAAUS,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBM,EAAiB,SAAS,YAAY,MAAMI,GAAa,IAAIxB,GAA6B6B,EAAK,MAAM,CAAC,GAAGzB,CAAK,EAAE,GAAGnD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAE4D,EAAYG,CAAc,EAAE,SAAS,CAAc2B,EAAMjE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAAcuB,EAAMjE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAACW,GAAY,GAAgBvD,EAAKqE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG9E,GAAkBwC,CAAS,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiBa,EAAiB,SAAS,WAAW,CAAC,EAAEY,GAAa,GAAgBxD,EAAKqE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,GAAG9E,GAAkByC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBY,EAAiB,SAAS,YAAY,GAAGnE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAGc,GAAkByC,CAAS,CAAC,CAAC,CAAC,EAAEK,EAAYG,CAAc,CAAC,CAAC,EAAexC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,UAAUR,GAAmB7E,GAAkB,KAAKwC,CAAY,KAAK,MAAMqC,KAAqB,OAAOA,GAAgC9D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxD,GAAqB,CAAC,UAAU,CAAC,UAAUsF,EAAoB9E,GAAkB,KAAKwC,CAAY,KAAK,MAAMsC,IAAsB,OAAOA,EAAiC/D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmC,EAAYG,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,UAAUN,GAAoB/E,GAAkB,KAAKwC,CAAY,KAAK,MAAMuC,KAAsB,OAAOA,GAAiChE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKV,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,GAAqB,CAAC,UAAU,CAAC,UAAUwF,EAAoBhF,GAAkB,KAAKwC,CAAY,KAAK,MAAMwC,IAAsB,OAAOA,EAAiCjE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmC,EAAYG,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKuE,EAA0B,CAAC,MAAmEX,GAAkB,OAAQ,QAAQ,SAAsB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB0C,EAAiB,SAAS,sBAAsB,SAAsB5C,EAAK3B,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE4D,EAAYG,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,gFAAgF,gSAAgS,gRAAgR,gRAAgR,0MAA0M,gHAAgH,sLAAsL,wGAAwG,i2BAAi2B,EASxrZC,GAAgBC,GAAQpD,GAAUkD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gCAAgCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,cAAc,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,wHAAwH,MAAM,cAAc,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,wHAAwH,MAAM,eAAe,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,sCAAsC,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,2BAA2B,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,4BAA4B,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGtG,EAAqB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVv7C,IAAA4G,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAgH,IAAMC,GAAgBC,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAeC,GAAgBH,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAeE,GAAgBJ,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAeG,GAAgBL,EAAWC,EAAS,CAAC,SAAsBD,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAChhFI,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECD3W,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,KACO,IAAMC,GAAqB,CAAC,QAAU,CAAC,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECAuf,IAAMC,GAAsBC,EAASC,EAAgB,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAiB,CAAC,UAAUC,GAAgB,UAAUC,EAAgB,EAAQC,GAAkB,CAACC,EAAIC,IAAS,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAON,GAAiBK,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAO,OAAOA,EAAQF,EAAOA,EAAO,SAAU,EAAQG,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAkBF,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBG,GAAW,CAAC,CAAC,MAAAH,EAAM,SAAAI,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWR,GAAmCK,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,cAAc,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,MAAAC,EAAM,YAAAC,EAAY,YAAAC,EAAY,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAuCC,EAAMC,EAAMC,EAAM,MAAM,CAAC,GAAGN,EAAM,UAAUP,GAAmCO,EAAM,UAAU,WAAWC,EAAKT,GAAkDQ,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,CAAC,IAAI,sEAAsE,EAAE,WAAWC,EAAMR,GAAqDM,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,sCAAsC,SAASE,GAAOD,EAAuCb,GAAwBU,EAAM,OAAO,KAAK,MAAMG,IAAyC,OAAOA,EAAuCH,EAAM,WAAW,MAAMI,IAAQ,OAAOA,EAAM,YAAY,WAAWC,EAAMP,GAAmCE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,UAAU,WAAWC,EAAMX,GAAqDK,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,CAAC,IAAI,sEAAsE,CAAC,CAAE,EAAQC,GAAuB,CAACP,EAAMnC,IAAemC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAEmC,EAAM,iBAAwBnC,EAAS,KAAK,GAAG,EAAU2C,GAA6BC,GAAW,SAAST,EAAMU,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjD,EAAQ,UAAAkD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAE/B,GAASS,CAAK,EAAO,CAAC,YAAAuB,EAAY,WAAAC,EAAW,gBAAAC,EAAgB,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAA/D,CAAQ,EAAEgE,GAAgB,CAAC,WAAArE,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoE,EAAiBvB,GAAuBP,EAAMnC,CAAQ,EAAO,CAAC,sBAAAkE,EAAsB,MAAAC,CAAK,EAAEC,GAAyBV,CAAW,EAAQW,GAAaH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKN,GAAqB,MAAMA,EAAU,GAAGc,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAgBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAEU,GAAmBf,EAAY,CAAC,UAAU,OAAU,QAAQa,EAAgB,UAAUC,CAAe,CAAC,EAAE,IAAME,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQlB,IAAc,YAA6CmB,GAAa,IAAQnB,IAAc,YAA6CoB,GAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,IAAIC,GAAmBC,EAAoBC,GAAoBC,EAAoB,OAAoBjE,EAAKkE,GAAY,CAAC,GAAGpC,GAA4C2B,GAAgB,SAAsBzD,EAAKC,GAAS,CAAC,QAAQtB,EAAS,QAAQ,GAAM,SAAsBqB,EAAKR,GAAW,CAAC,MAAMF,GAAY,SAAsB6E,EAAMjE,EAAO,IAAI,CAAC,GAAGkC,EAAU,GAAGG,EAAgB,UAAU6B,GAAG7F,GAAkB,GAAGoF,EAAsB,iBAAiB9B,EAAUS,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBM,EAAiB,SAAS,YAAY,MAAMI,GAAa,IAAIxB,GAA6B6B,EAAK,MAAM,CAAC,GAAGzB,CAAK,EAAE,GAAGnD,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,aAAa,CAAC,EAAE4D,EAAYG,CAAc,EAAE,SAAS,CAAc2B,EAAMjE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAAcuB,EAAMjE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB0C,EAAiB,SAAS,YAAY,SAAS,CAACW,GAAY,GAAgBvD,EAAKqE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAG9E,GAAkBwC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBa,EAAiB,SAAS,WAAW,CAAC,EAAEY,GAAa,GAAgBxD,EAAKqE,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,GAAG9E,GAAkByC,CAAS,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBY,EAAiB,SAAS,YAAY,GAAGnE,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,MAAM,OAAO,GAAGc,GAAkByC,CAAS,CAAC,CAAC,CAAC,EAAEK,EAAYG,CAAc,CAAC,CAAC,EAAexC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,UAAUR,GAAmB7E,GAAkB,KAAKwC,CAAY,KAAK,MAAMqC,KAAqB,OAAOA,GAAgC9D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxD,GAAqB,CAAC,UAAU,CAAC,UAAUsF,EAAoB9E,GAAkB,KAAKwC,CAAY,KAAK,MAAMsC,IAAsB,OAAOA,EAAiC/D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmC,EAAYG,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKsE,EAAS,CAAC,sBAAsB,GAAK,UAAUN,GAAoB/E,GAAkB,KAAKwC,CAAY,KAAK,MAAMuC,KAAsB,OAAOA,GAAiChE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,iBAAiB0C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKV,EAAU,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,GAAqB,CAAC,UAAU,CAAC,UAAUwF,EAAoBhF,GAAkB,KAAKwC,CAAY,KAAK,MAAMwC,IAAsB,OAAOA,EAAiCjE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,gGAAgG,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmC,EAAYG,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexC,EAAKuE,EAA0B,CAAC,MAAmEX,GAAkB,OAAQ,QAAQ,SAAsB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB0C,EAAiB,SAAS,sBAAsB,SAAsB5C,EAAK3B,GAAiB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,GAAGI,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE4D,EAAYG,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgC,GAAI,CAAC,kFAAkF,gFAAgF,iSAAiS,gRAAgR,iRAAiR,yMAAyM,iHAAiH,uLAAuL,uGAAuG,y2BAAy2B,EAStsZC,GAAgBC,GAAQpD,GAAUkD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qCAAqCA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,cAAc,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,wBAAwB,wHAAwH,MAAM,cAAc,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,wBAAwB,wHAAwH,MAAM,eAAe,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,sCAAsC,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,2BAA2B,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,4BAA4B,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGtG,EAAqB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTpqB,IAAM4G,GAAsCC,EAASC,EAAgC,EAAQC,GAAkCF,EAASG,EAA4B,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,SAAS,YAAY,QAAQ,YAAY,UAAU,YAAY,aAAa,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,GAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBpB,GAAuBH,EAAMzB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQQ,EAAeL,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQU,GAAgBP,EAAsB,SAASI,KAAO,CAAC,MAAMH,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQW,EAAgBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAgBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAiBV,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAgBX,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAEe,GAAmBtB,EAAY,CAAC,QAAQa,EAAgB,UAAUI,GAAgB,UAAUD,EAAgB,UAAUD,CAAc,CAAC,EAAE,IAAMQ,GAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASzB,CAAW,EAAmC0B,EAAa,IAAQ1B,IAAc,YAA6C2B,EAAa,IAAQ3B,IAAc,YAA6C4B,GAAa,IAAQ5B,IAAc,YAA6C6B,EAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,IAAIC,GAAmBC,GAAoBC,GAAoBC,GAAoBC,EAAoBC,GAAoBC,GAAoBC,GAAoBC,GAAoBC,GAAoBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqBC,GAAqB,OAAoB9E,EAAK+E,GAAY,CAAC,GAAG1D,GAA4C+B,EAAgB,SAAsBpD,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsB6F,EAAM9E,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUuD,GAAGrG,GAAkB,GAAG0E,GAAsB,iBAAiBlC,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6B+B,GAAK,MAAM,CAAC,GAAG3B,CAAK,EAAE,GAAGrC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAS,CAAcqD,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAqE3B,GAAkB,OAAQ,4BAA4B,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKxB,GAAiC,CAAC,UAAUiE,EAAgB,UAAUrD,GAAY,CAAC,IAAI,kEAAkE,EAAE,EAAE,EAAE,OAAO,OAAO,WAAWqE,GAAmB0B,EAAkB,KAAKnE,CAAY,KAAK,MAAMyC,KAAqB,OAAOA,GAAmB,sCAAsC,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,WAAWC,GAAoByB,EAAkB,KAAKnE,CAAY,KAAK,MAAM0C,KAAsB,OAAOA,GAAoB,UAAU,UAAUtE,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,GAAGN,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAqE3B,GAAkB,OAAQ,4BAA4B,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKtB,GAA6B,CAAC,UAAUgE,EAAgB,UAAUtD,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,OAAO,OAAO,WAAWuE,GAAoBwB,EAAkB,KAAKnE,CAAY,KAAK,MAAM2C,KAAsB,OAAOA,GAAoB,iEAAiE,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,WAAWC,GAAoBuB,EAAkB,KAAKnE,CAAY,KAAK,MAAM4C,KAAsB,OAAOA,GAAoB,eAAe,UAAUxE,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,GAAGN,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAqE3B,GAAkB,OAAQ,4BAA4B,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKtB,GAA6B,CAAC,UAAUiE,EAAiB,UAAUvD,GAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,OAAO,OAAO,WAAWyE,EAAoBsB,EAAkB,KAAKnE,CAAY,KAAK,MAAM6C,IAAsB,OAAOA,EAAoB,uDAAuD,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,WAAWC,GAAoBqB,EAAkB,KAAKnE,CAAY,KAAK,MAAM8C,KAAsB,OAAOA,GAAoB,WAAW,UAAU1E,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,GAAGN,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKkF,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAqE3B,GAAkB,OAAQ,4BAA4B,GAAgEA,GAAkB,GAAI,GAAG,EAAE,EAAE,EAAE,SAAsBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKtB,GAA6B,CAAC,UAAUkE,GAAgB,UAAUxD,GAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,OAAO,OAAO,WAAW2E,GAAoBoB,EAAkB,KAAKnE,CAAY,KAAK,MAAM+C,KAAsB,OAAOA,GAAoB,2DAA2D,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,WAAWC,GAAoBmB,EAAkB,KAAKnE,CAAY,KAAK,MAAMgD,KAAsB,OAAOA,GAAoB,YAAY,UAAU5E,GAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,GAAGN,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAY,GAAgBgC,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,qCAAqC,EAAE,SAAS,CAAchC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,kEAAkE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiBvB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,CAAC,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUrB,GAAoBkB,EAAkB,KAAKnE,CAAY,KAAK,MAAMiD,KAAsB,OAAOA,GAAiCjE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUpB,GAAoBiB,EAAkB,KAAKnE,CAAY,KAAK,MAAMkD,KAAsB,OAAOA,GAAiClE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUnB,GAAqBgB,EAAkB,MAAMnE,CAAY,KAAK,MAAMmD,KAAuB,OAAOA,GAAkCnE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,0EAA0E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,0FAA0F,IAAI,OAAO,QAAQC,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAqEA,GAAkB,OAAQ,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBvB,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAEiB,EAAa,GAAgB+B,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,oBAAoB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,qCAAqC,EAAE,SAAS,CAAchC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiBpD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGlD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuG,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUlB,GAAqBe,EAAkB,MAAMnE,CAAY,KAAK,MAAMoD,KAAuB,OAAOA,GAAkCpE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUjB,GAAqBc,EAAkB,MAAMnE,CAAY,KAAK,MAAMqD,KAAuB,OAAOA,GAAkCrE,EAAWG,EAAS,CAAC,SAAsB6E,EAAM9E,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,QAAQ,EAAE,SAAS,CAAC,2BAAwCF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUhB,GAAqBa,EAAkB,MAAMnE,CAAY,KAAK,MAAMsD,KAAuB,OAAOA,GAAkCtE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,wFAAmF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKoF,EAAM,CAAC,WAAW,CAAC,KAAKb,GAAqBY,EAAkB,MAAMnE,CAAY,KAAK,MAAMuD,KAAuB,OAAOA,GAAqB,mEAAmE,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBvC,EAAiB,SAAS,YAAY,GAAGlD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,KAAK0F,GAAqBW,EAAkB,MAAMnE,CAAY,KAAK,MAAMwD,KAAuB,OAAOA,GAAqB,mEAAmE,IAAI,OAAO,QAAQa,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAqEA,GAAkB,OAAQ,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuB,EAAa,GAAgB8B,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,qCAAqC,EAAE,SAAS,CAAchC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBpD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGlD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuG,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUb,GAAqBU,EAAkB,MAAMnE,CAAY,KAAK,MAAMyD,KAAuB,OAAOA,GAAkCzE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUZ,GAAqBS,EAAkB,MAAMnE,CAAY,KAAK,MAAM0D,KAAuB,OAAOA,GAAkC1E,EAAWG,EAAS,CAAC,SAAsB6E,EAAM9E,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,CAAC,wBAAqCF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUX,GAAqBQ,EAAkB,MAAMnE,CAAY,KAAK,MAAM2D,KAAuB,OAAOA,GAAkC3E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,sFAAsF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,oDAAoD,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBpD,EAAiB,SAAS,YAAY,GAAGlD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,oDAAoD,IAAI,OAAO,QAAQuG,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAqEA,GAAkB,OAAQ,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,GAAa,GAAgB6B,EAAM9E,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcgD,EAAM9E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,qCAAqC,EAAE,SAAS,CAAchC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiBpD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,GAAGlD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQuG,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,EAAe3B,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUV,GAAqBO,EAAkB,MAAMnE,CAAY,KAAK,MAAM4D,KAAuB,OAAOA,GAAkC5E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUT,GAAqBM,EAAkB,MAAMnE,CAAY,KAAK,MAAM6D,KAAuB,OAAOA,GAAkC7E,EAAWG,EAAS,CAAC,SAAsB6E,EAAM9E,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,CAAC,6BAA0CF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAE,0BAA0B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsF,EAAS,CAAC,sBAAsB,GAAK,UAAUR,GAAqBK,EAAkB,MAAMnE,CAAY,KAAK,MAAM8D,KAAuB,OAAOA,GAAkC9E,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,gGAAgG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKoF,EAAM,CAAC,WAAW,CAAC,IAAI,yCAAyC,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBpD,EAAiB,SAAS,YAAY,GAAGlD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,yCAAyC,IAAI,OAAO,QAAQuG,GAAwF9B,GAAkB,GAAI,GAAG,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,QAAqEA,GAAkB,OAAQ,4BAA4B,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAEhC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4D,GAAI,CAAC,kFAAkF,gFAAgF,iRAAiR,yRAAyR,mOAAmO,4aAA4a,0YAA0Y,uXAAuX,+SAA+S,+ZAA+Z,6MAA6M,gRAAgR,mRAAmR,qXAAqX,4WAA4W,2tJAA2tJ,EAQ/9yCC,GAAgBC,GAAQ5E,GAAU0E,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iCAAiCA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,eAAe,WAAW,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,2BAA2B,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,4BAA4B,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,EAAE,GAAGlH,GAAsC,GAAGG,EAAiC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRn6B,IAAMqH,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,EAAGL,EAAOA,EAAO,SAAU,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCAq/C,IAAMC,GAAyBC,EAASC,EAAmB,EAAQC,GAAqBF,EAASG,EAAe,EAAQC,GAAiCC,GAA0BC,EAAO,CAAC,EAAQC,GAAeP,EAASQ,CAAS,EAAQC,GAAYT,EAASU,EAAM,EAAQC,GAAiCX,EAASY,EAA2B,EAAQC,GAAgBb,EAASQ,EAAU,EAAQM,GAAgCd,EAASe,EAA0B,EAAQC,GAAuBhB,EAASiB,EAAiB,EAAQC,GAAWlB,EAASmB,EAAK,EAAQC,GAAgCpB,EAASqB,EAA0B,EAAQC,GAActB,EAASuB,EAAQ,EAAQC,GAAyBxB,EAASyB,EAAmB,EAAQC,GAAqB1B,EAAS2B,EAAe,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAO,CAACC,EAAEC,IAAY,OAAOD,GAAI,UAAU,OAAOC,GAAI,SAASD,EAAE,YAAY,IAAIC,EAAE,YAAY,EAAED,IAAIC,EAAUC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,KAAK,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,IAAI,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEtB,GAASI,CAAK,EAAQmB,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ9C,GAAY,EAAK,EAAQuD,EAAe,OAAkHC,EAAkBC,GAAGvD,GAAkB,GAAnH,CAAa0C,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAUC,GAAkB,WAAW,EAAQC,EAAW1B,EAAO,IAAI,EAAE2B,GAA0BvB,CAAY,EAAE,IAAMwB,EAAQvD,GAAO+B,GAAc,GAAG,SAAS,EAAQyB,EAASxD,GAAO+B,GAAc,GAAG,WAAW,EAAQ0B,EAAWL,GAAkB,WAAW,EAAQM,EAAW/B,EAAO,IAAI,EAAQgC,GAAY,IAASjE,GAAU,EAAiBmD,IAAc,YAAtB,GAAmEe,EAAa,IAAQ,CAAClE,GAAU,GAAiBmD,IAAc,YAAuC,OAAAgB,GAAiB,CAAC,CAAC,EAAsB7C,EAAK8C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlE,EAAiB,EAAE,SAAsBmE,EAAMC,GAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAekD,EAAM5F,EAAO,IAAI,CAAC,GAAGqE,EAAU,UAAUU,GAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlD,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiG,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,GAAGZ,EAAU,IAAIE,EAAK,SAAS,CAAcU,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASuB,EAAkB,KAAKrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAKrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,CAAC,2BAAwC/C,EAAK,KAAK,CAAC,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAKrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6LAA6L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsB7B,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGhC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhD,GAAgB,CAAC,UAAU,CAAC,YAAY,OAAO,YAAY,QAAQ,YAAY,CAAC,EAAE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,+BAA+B,UAAU,mBAAmB,QAAQ,YAAY,MAAM,OAAO,UAAUoG,EAAkB,KAAKrC,CAAY,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIuB,EAAkB,KAAKrC,CAAY,GAAG,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBf,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,KAAKrC,CAAY,GAAG,GAAG,IAAI,OAAO,QAAQyC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAKrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIuB,EAAkB,KAAKrC,CAAY,GAAG,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBf,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,KAAKrC,CAAY,GAAG,GAAG,IAAI,OAAO,QAAQyC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAKrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsB+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIuB,EAAkB,KAAKrC,CAAY,GAAG,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBf,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,KAAKrC,CAAY,GAAG,GAAG,IAAI,OAAO,QAAQyC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,EAAE,GAAG,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,KAAKrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,EAAE,UAAU,CAAC,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,UAAU,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,WAAW,CAAC,CAAC,EAAE,SAAsB7B,EAAK3C,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAc2C,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB6C,EAAKyD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBzD,EAAK/C,GAAiC,CAAC,QAAQ6B,GAAU,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,yBAAyB,QAAQC,GAAW,UAAU,GAAK,SAAsBgE,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAACoF,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,6DAA6D,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAEoD,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,6DAA6D,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAe2D,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsB6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,gFAAgF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB6C,EAAKyD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBV,EAAM9F,GAAiC,CAAC,QAAQqC,GAAW,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,qBAAqB,QAAQP,GAAW,UAAU,GAAK,SAAS,CAAcgE,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsB6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,mEAAmE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEuC,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,2DAA2D,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAEoD,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,2DAA2D,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsB6C,EAAKyD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBV,EAAM9F,GAAiC,CAAC,QAAQuC,GAAW,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,uBAAuB,QAAQT,GAAW,UAAU,GAAK,SAAS,CAAcgE,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsB6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,wDAAwD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEuC,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,gDAAgD,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAEoD,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,gDAAgD,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB6C,EAAKyD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBV,EAAM9F,GAAiC,CAAC,QAAQyC,GAAW,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,yBAAyB,QAAQX,GAAW,UAAU,GAAK,SAAS,CAAcgE,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsB6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEuC,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,4DAA4D,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,oEAAoE,OAAO,kKAAkK,EAAE,UAAU,eAAe,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAEoD,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,4DAA4D,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAeY,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,0FAA0F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAsB6C,EAAKyD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBV,EAAM9F,GAAiC,CAAC,QAAQ2C,GAAW,UAAU,+BAA+B,wBAAwB,SAAS,mBAAmB,wBAAwB,QAAQb,GAAW,UAAU,GAAK,SAAS,CAAcgE,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsB6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,CAAC,CAAC,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEuC,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,uEAAuE,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAEoD,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAIH,EAAkB,MAAMrC,CAAY,GAAG,uEAAuE,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,WAAW3B,EAAU,CAAC,EAAeY,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,iDAAiD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,GAAGyC,EAAW,IAAIC,EAAK,SAAsBK,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,GAAG,MAAM,EAAE,CAAC,EAAE,SAAsB7B,EAAKzC,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcyC,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,qgHAAqgH,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,4rLAA4rL,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,2/XAA2/X,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,kzIAAkzI,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,gqJAAgqJ,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,wgGAAwgG,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,OAAO,WAAW,QAAQ,EAAE,IAAI,2kRAA2kR,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,qrFAAqrF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,k+IAAk+I,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,IAAI,42EAA42E,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe1D,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAsB6C,EAAK0D,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,ivPAAivP,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASuB,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,8EAA8E,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,kCAAkC,CAAC,CAAC,EAAE,SAAsBA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0KAA0K,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2C,GAAY,GAAgB3C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,IAAI,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,wCAAwC,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKvC,GAA4B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmF,EAAa,GAAgB5C,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,qEAAqE,mBAAmB,mBAAmB,iBAAiB,GAAK,iBAAiB,GAAK,KAAK,mBAAmB,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,GAAK,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,EAAE,CAAC,EAAE,SAAsB7B,EAAK3C,GAAW,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,eAAe,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,KAAK,mBAAmB,QAAQ,GAAG,cAAc,EAAE,YAAY,EAAE,eAAe,GAAK,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAc0F,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsB4F,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,SAAS,CAAc4F,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,kEAAkE,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,CAAC,yBAAsC/C,EAAK,KAAK,CAAC,CAAC,EAAE,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,uBAAuB,OAAO,EAAE,SAAS,wFAAwF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsB4F,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc4F,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,CAAC,2BAAwC/C,EAAK,KAAK,CAAC,CAAC,EAAE,yBAAyB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,uBAAuB,OAAO,EAAE,SAAS,wFAAmF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAc6C,EAAK7C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAsB4F,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc4F,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,SAAS,CAAc6C,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,EAAevD,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,OAAO,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,MAAM,EAAE,SAAS,CAAC,qBAAkC/C,EAAK,KAAK,CAAC,CAAC,EAAE,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,uBAAuB,OAAO,EAAE,SAAS,sFAAsF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsB+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASuB,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0FAA0F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0FAA0F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2C,GAAY,GAAgB3C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOhC,GAAmB,OAAO,0BAA0B,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,GAAG,EAAE,EAAE,IAAI,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,wCAAwC,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKpC,GAA2B,CAAC,UAAUwF,EAAkB,MAAMrC,CAAY,GAAG,2GAA2G,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,qFAAqF,UAAU,23BAAy3B,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,UAAU,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,UAAU,OAAO,OAAO,GAAG,YAAY,UAAU,43BAA03B,UAAU,23BAAy3B,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,4FAA4F,SAAS,YAAY,UAAU,23BAAy3B,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,YAAY,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,UAAUqC,EAAkB,MAAMrC,CAAY,GAAG,wHAAwH,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,EAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,2DAA2D,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKlC,GAAkB,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,oFAAoF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,IAAI,iBAAiB,GAAK,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,GAAM,CAAC,OAAO,OAAO,KAAK,43BAA03B,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKlC,GAAkB,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,iBAAiB,GAAK,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,GAAM,CAAC,OAAO,OAAO,KAAK,23BAAy3B,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKlC,GAAkB,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,2IAA2I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,iBAAiB,GAAK,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,GAAM,CAAC,OAAO,OAAO,KAAK,23BAAy3B,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,IAAI,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKkD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKlC,GAAkB,CAAC,UAAU,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,2GAA2G,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,IAAI,iBAAiB,GAAK,KAAK,IAAI,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhC,GAAM,CAAC,OAAO,OAAO,KAAK,23BAAy3B,GAAG,YAAY,SAAS,YAAY,KAAK,IAAI,MAAM,CAAC,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsB+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,MAAM,WAAWA,GAAmB,OAAO,6BAA6B,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYhC,GAAmB,OAAO,wBAAwB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,CAAC,EAAE,UAAU,CAAC,UAAU,CAAC,CAAC,EAAE,SAAsB7B,EAAK9B,GAA2B,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,KAAK,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGhC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,IAAI,IAAI,EAAE,MAAM,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhD,GAAgB,CAAC,UAAU,CAAC,YAAY,OAAO,YAAY,QAAQ,YAAY,CAAC,EAAE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,+BAA+B,UAAU,mBAAmB,QAAQ,YAAY,MAAM,OAAO,UAAUoG,EAAkB,KAAKrC,CAAY,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc/C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,4EAA4E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wKAAwK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,uBAAuB,OAAO,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4IAA4I,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,uBAAuB,OAAO,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mGAAmG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,uBAAuB,OAAO,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,cAAc,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iQAAkQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,uBAAuB,OAAO,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uMAAuM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,EAAE,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,uBAAuB,OAAO,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,2BAAwC/C,EAAK,KAAK,CAAC,CAAC,EAAE,sGAAsG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,IAAI,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,GAAG,IAAI,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAe6B,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc/C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,iFAAiF,uBAAuB,OAAO,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iCAAiC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,UAAU,SAAsB+C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc/C,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2B,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBlB,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BtC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASuB,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASuB,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,0DAAuE/C,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,oFAAoF,EAAE,SAAS,wBAAwB,CAAC,EAAE,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,0DAAuE/C,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,oFAAoF,EAAE,SAAS,wBAAwB,CAAC,EAAE,+BAA+B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,GAAG,GAAGhC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,IAAI,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKhD,GAAgB,CAAC,UAAU,CAAC,YAAY,OAAO,YAAY,QAAQ,YAAY,CAAC,EAAE,UAAU,qBAAqB,OAAO,OAAO,GAAG,YAAY,UAAU,GAAG,SAAS,YAAY,UAAU,+BAA+B,UAAU,mBAAmB,QAAQ,YAAY,MAAM,OAAO,UAAUoG,EAAkB,KAAKrC,CAAY,GAAG,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKmD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,CAAC,EAAE,UAAU,CAAC,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,CAAC,CAAC,EAAE,SAAsB7B,EAAK5B,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,EAAE,EAAE,IAAI,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAc2E,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAACqF,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAEhB,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc6C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAACoF,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAEf,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc6C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,2EAA2E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAACoF,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAEf,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc6C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,8BAA8B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,sEAAsE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAACoF,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAEf,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc6C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,kGAAkG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAACoF,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAEf,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,UAAU,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAc6C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,MAAMrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,OAAOrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,gEAAgE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+C,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAACoF,GAAsBvC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAEf,GAAuBxC,EAAKuD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAeR,EAAM5F,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAc6C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,OAAOrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,qFAAqF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mCAAmC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAASF,EAAkB,OAAOrC,CAAY,GAAgBf,EAAWqD,EAAS,CAAC,SAAsBrD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+CAA+C,uBAAuB,mFAAmF,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,oGAAoG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kCAAkC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAM,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK1B,GAAoB,CAAC,UAAU8E,EAAkB,OAAOrC,CAAY,GAAG,0IAA0I,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUqC,EAAkB,OAAOrC,CAAY,GAAG,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAS,CAAC,EAAE,SAAsBlB,EAAKkD,EAA0B,CAAC,OAAO,IAAI,MAAMhC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,SAAsBlB,EAAKmD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBnD,EAAKiD,EAAkB,CAAC,WAAWpB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKxB,GAAgB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ2D,GAAI,CAAC,kFAAkF,kFAAkF,mSAAmS,8HAA8H,4RAA4R,gSAAgS,+SAA+S,sZAAsZ,+QAA+Q,2nBAA2nB,4lCAA4lC,gRAAgR,oHAAoH,kSAAkS,iSAAiS,qVAAqV,8KAA8K,msBAAmsB,mRAAmR,4HAA4H,yYAAyY,2kBAA2kB,wRAAwR,oPAAoP,0nBAA0nB,+eAA+e,iRAAiR,8PAA8P,glBAAglB,shBAAshB,yVAAyV,gRAAgR,8SAA8S,glBAAglB,shBAAshB,glBAAglB,shBAAshB,glBAAglB,uhBAAuhB,qOAAqO,8RAA8R,wSAAwS,+QAA+Q,wGAAwG,gjBAAgjB,0KAA0K,2KAA2K,2KAA2K,0KAA0K,+FAA+F,4JAA4J,+FAA+F,0KAA0K,2KAA2K,2KAA2K,8JAA8J,mSAAmS,wTAAwT,wYAAwY,2aAA2a,yGAAyG,ueAAue,yWAAyW,6jBAA6jB,qgBAAqgB,+TAA+T,mVAAmV,ueAAue,2hBAA2hB,oSAAoS,mSAAmS,mQAAmQ,6SAA6S,+0BAA+0B,uYAAuY,kOAAkO,+UAA+U,gXAAgX,kSAAkS,gRAAgR,gRAAgR,4SAA4S,odAAod,mWAAmW,iJAAiJ,mfAAmf,oSAAoS,kHAAkH,kRAAkR,4VAA4V,0pBAA0pB,mbAAmb,oUAAoU,sbAAsb,seAAse,kSAAkS,+RAA+R,8RAA8R,iHAAiH,mQAAmQ,scAAsc,2GAA2G,0RAA0R,6MAA6M,waAAwa,iUAAiU,4UAA4U,kJAAkJ,0RAA0R,iJAAiJ,oQAAoQ,yRAAyR,gJAAgJ,oQAAoQ,0RAA0R,kHAAkH,mHAAmH,yRAAyR,oQAAoQ,yguBAAyguB,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,uGAAuG,+/CAA+/C,gpHAAgpH,EAW/gqPC,GAAgBC,GAAQtD,GAAUoD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,2BAA2B,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,6BAA6B,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,4BAA4B,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAGhH,GAAyB,GAAGG,GAAqB,GAAGK,GAAe,GAAGE,GAAY,GAAGE,GAAiC,GAAGE,GAAgB,GAAGC,GAAgC,GAAGE,GAAuB,GAAGE,GAAW,GAAGE,GAAgC,GAAGE,GAAc,GAAGE,GAAyB,GAAGE,GAAqB,GAAGyF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/uF,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,OAAO,6BAA+B,OAAO,4BAA8B,OAAO,oCAAsC,oMAA0O,qBAAuB,OAAO,uBAAyB,GAAG,yBAA2B,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,qBAAuB,gHAAoI,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "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", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "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", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "u16YOZg2E_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v2", "v20", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "p", "x", "motion", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v18", "v19", "v20", "__FramerMetadata__", "valuesByLocaleId", "u16YOZg2E_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "backgroundBar", "height", "id", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "LeuAJ7c7f", "UUNVXcH8i", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "addPropertyOverrides", "css", "FramermSbVEpG7j", "withCSS", "mSbVEpG7j_default", "addPropertyControls", "ControlType", "addFonts", "gxtz5Ndj5_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "v1", "v2", "v3", "__FramerMetadata__", "gxtz5Ndj5_1_exports", "__export", "__FramerMetadata__", "__FramerMetadata__", "AtomsProgressBarFonts", "getFonts", "mSbVEpG7j_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "gxtz5Ndj5_0_exports", "gxtz5Ndj5_1_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "activeIcon", "click", "description", "disableIcon", "height", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ERT0mtFse", "Xs_ArzY7H", "X4HddnvAE", "IBJXwxVNI", "E8F7acgpr", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1rrr0gm", "args", "onAppear17p5735", "onAppear11608nf", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "LayoutGroup", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "Framergxtz5Ndj5", "withCSS", "gxtz5Ndj5_default", "addPropertyControls", "ControlType", "addFonts", "XyNQJ6Lm7_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v0", "p", "x", "motion", "v1", "v2", "v3", "__FramerMetadata__", "XyNQJ6Lm7_1_exports", "__export", "__FramerMetadata__", "__FramerMetadata__", "AtomsProgressBarFonts", "getFonts", "mSbVEpG7j_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "XyNQJ6Lm7_0_exports", "XyNQJ6Lm7_1_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "activeIcon", "click", "description", "disableIcon", "height", "id", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ERT0mtFse", "Xs_ArzY7H", "X4HddnvAE", "IBJXwxVNI", "E8F7acgpr", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1rrr0gm", "args", "onAppear1pd5w6t", "onAppear1ft284r", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "LayoutGroup", "u", "cx", "Image2", "RichText2", "ComponentViewportProvider", "css", "FramerXyNQJ6Lm7", "withCSS", "XyNQJ6Lm7_default", "addPropertyControls", "ControlType", "addFonts", "MoleculesCarousselSwitchItemCopyFonts", "getFonts", "XyNQJ6Lm7_default", "MoleculesCarousselSwitchItemFonts", "gxtz5Ndj5_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "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", "onAppear19qs4x9", "args", "onAppear9sb8i6", "onAppear1khpm4z", "onAppear11kb5bt", "E8F7acgpr7uzapc", "E8F7acgprelx79d", "E8F7acgpr1r3pkym", "E8F7acgprtyxkyg", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "getLocalizedValue", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Frameru16YOZg2E", "withCSS", "u16YOZg2E_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "OrganismsNavigationFonts", "getFonts", "Ts0k3FBUv_default", "AtomsButtonCopyFonts", "CQInAJbmD_default", "MotionAWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SlideshowFonts", "Slideshow", "TickerFonts", "Ticker", "OrganismsCarousselUsesCasesFonts", "u16YOZg2E_default", "Slideshow1Fonts", "OrganismsCarousselHowToUseFonts", "VkW7G0tJr_default", "AtomsCircleNumberFonts", "LVQtOeb6x_default", "EmbedFonts", "Embed", "OrganismsSlideshowFeaturesFonts", "Y3SSdXr39_default", "CarouselFonts", "Carousel", "OrganismsCTASectionFonts", "EeJHrWEn1_default", "OrganismsFooterFonts", "jaJWJK3_2_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "equals", "a", "b", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "usePreloadLocalizedValues", "visible", "visible1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLocalizedValue", "x", "RichText2", "Image2", "getLoadingLazyAtYPosition", "Link", "SVG", "css", "FramerWYK1LwUtG", "withCSS", "WYK1LwUtG_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
