{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/6FrqS1fZnB6yYCvAzvDk/hqP7hEjZNBYe4hk16Hz1/PT_amgL_6.js", "ssg:https://framerusercontent.com/modules/sSXzf4NfG2W2NYYdU9o5/sKhlTTJibIGFBCC6mYZq/TgAOZR4ft.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js", "ssg:https://framerusercontent.com/modules/xCdpLzoDs0hykPmIkE1f/0c0Lr2AZx7nSWZ8lPx5z/dtOoAAwB_.js", "ssg:https://framerusercontent.com/modules/aaCPcIqse4BWDKedafdE/m70yJjfpy4fpF33PPCMD/kgbjPZzFI.js", "ssg:https://framerusercontent.com/modules/nmnGgx0rSeZA5y6ataGs/Ay12C4vnVTGsN8eSQbHT/zvEyb2MvP.js", "ssg:https://framerusercontent.com/modules/xAOwRaNgGnJmLYvcJ7wI/1UuVJcRUJd0aWvZlut40/gjx_tYCDR.js", "ssg:https://framerusercontent.com/modules/rDDVOEBQw1PjSO3uXp3Y/99b1k3d9wspxamw6Q0Ba/Fa6cofW5Z.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\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(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */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}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},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\"],defaultValue:\"left\",displaySegmentedControl:true},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},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},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;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* 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:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;F37 Jan Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"F37 Jan Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/0S3un4jNeW75bC0pGOoW3hloYs.woff2\"}]}];export const css=['.framer-pBFOG .framer-styles-preset-fi66dc:not(.rich-text-wrapper), .framer-pBFOG .framer-styles-preset-fi66dc.rich-text-wrapper h5 { --framer-font-family: \"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-pBFOG .framer-styles-preset-fi66dc:not(.rich-text-wrapper), .framer-pBFOG .framer-styles-preset-fi66dc.rich-text-wrapper h5 { --framer-font-family: \"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-pBFOG .framer-styles-preset-fi66dc:not(.rich-text-wrapper), .framer-pBFOG .framer-styles-preset-fi66dc.rich-text-wrapper h5 { --framer-font-family: \"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.3em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-pBFOG\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lstxEppoFwgjqTfRTuIL/qrXvA8kkOimQpxZt5LBz/HhLr_TFUZ.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/6FrqS1fZnB6yYCvAzvDk/hqP7hEjZNBYe4hk16Hz1/PT_amgL_6.js\";import Button from\"https://framerusercontent.com/modules/ybeF3ezO6eAP096Jhv5h/C0VCXoUI0cP1oMbGb6Wb/LNCJ8JrMb.js\";const PhosphorFonts=getFonts(Phosphor);const VideoFonts=getFonts(Video);const ButtonFonts=getFonts(Button);const cycleOrder=[\"k8MdYCRv0\",\"xlKo0vF5B\",\"IKZzeJXPe\",\"pnRDnsRZv\",\"B9b4CJLR9\",\"J33VWRZ5u\"];const serializationHash=\"framer-yWCuO\";const variantClassNames={B9b4CJLR9:\"framer-v-1yckbyk\",IKZzeJXPe:\"framer-v-1ozfwre\",J33VWRZ5u:\"framer-v-plkgzi\",k8MdYCRv0:\"framer-v-7f7t08\",pnRDnsRZv:\"framer-v-1hlmr2h\",xlKo0vF5B:\"framer-v-1q44i1k\"};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={delay:0,duration:.4,ease:[.44,0,.56,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.create(React.Fragment);const humanReadableVariantMap={\"Mobile Closed\":\"B9b4CJLR9\",\"Mobile Open\":\"J33VWRZ5u\",\"Tablet Closed\":\"IKZzeJXPe\",\"Tablet Open\":\"pnRDnsRZv\",Closed:\"k8MdYCRv0\",Open:\"xlKo0vF5B\"};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:\"k8MdYCRv0\"};};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:\"k8MdYCRv0\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const nSQvgmbyz1i2owf5=activeVariantCallback(async(...args)=>{setVariant(\"xlKo0vF5B\");});const nSQvgmbyz1pbse4f=activeVariantCallback(async(...args)=>{setVariant(\"k8MdYCRv0\");});const nSQvgmbyzi6zxjz=activeVariantCallback(async(...args)=>{setVariant(\"pnRDnsRZv\");});const nSQvgmbyz14b66u3=activeVariantCallback(async(...args)=>{setVariant(\"IKZzeJXPe\");});const nSQvgmbyz19q75dj=activeVariantCallback(async(...args)=>{setVariant(\"J33VWRZ5u\");});const nSQvgmbyz1xy3cxc=activeVariantCallback(async(...args)=>{setVariant(\"B9b4CJLR9\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"xlKo0vF5B\",\"pnRDnsRZv\",\"J33VWRZ5u\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7f7t08\",className,classNames),\"data-framer-name\":\"Closed\",layoutDependency:layoutDependency,layoutId:\"k8MdYCRv0\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",...style},...addPropertyOverrides({B9b4CJLR9:{\"data-framer-name\":\"Mobile Closed\"},IKZzeJXPe:{\"data-framer-name\":\"Tablet Closed\"},J33VWRZ5u:{\"data-framer-name\":\"Mobile Open\"},pnRDnsRZv:{\"data-framer-name\":\"Tablet Open\"},xlKo0vF5B:{\"data-framer-name\":\"Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1zrkb\",\"data-framer-name\":\"Top Left Info Card\",layoutDependency:layoutDependency,layoutId:\"XXZXRw_TI\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2x87m3\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"LiRj0SEGb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18g4zep\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"Ba4xQjUN2\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5ksghx\",layoutDependency:layoutDependency,layoutId:\"DWH7VX7Eq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-67u3jj\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"URRqeWvhv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uf8beo-container\",layoutDependency:layoutDependency,layoutId:\"Tx7Ca6nHY-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TreeStructure\",id:\"Tx7Ca6nHY\",layoutId:\"Tx7Ca6nHY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Workflows\"})}),className:\"framer-dlmuhm\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M5E9d8tof\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Create series of automated messages triggered by Keywords.\"})}),className:\"framer-1kvmxmi\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gy2aufA91\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11qyjnl-container\",layoutDependency:layoutDependency,layoutId:\"Obbua3EpL-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"Obbua3EpL\",isMixedBorderRadius:false,layoutId:\"Obbua3EpL\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/olXrF0J7nk61FLEk9QDgzfmUeg.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p3v0jr\",\"data-framer-name\":\"Top Right Info Card\",layoutDependency:layoutDependency,layoutId:\"SU2d8sdSP\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1frf2po\",\"data-framer-name\":\"Text Content\",layoutDependency:layoutDependency,layoutId:\"bSyijR7Ia\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a0ty3c\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"eRYgO4R6M\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fbnupk\",layoutDependency:layoutDependency,layoutId:\"AMq5hWgxb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-upqm9c\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"GeTDyc_66\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pttqy5-container\",layoutDependency:layoutDependency,layoutId:\"R6DZRGfnd-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"HandsPraying\",id:\"R6DZRGfnd\",layoutId:\"R6DZRGfnd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Prayer Inbox\"})}),className:\"framer-1hra0pr\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JJ37f8Bin\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Centralize prayer requests and assign team members with ease.\"})}),className:\"framer-1fvq4z2\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Pm3rZ4gEq\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1086m0n-container\",layoutDependency:layoutDependency,layoutId:\"OIlrdvkWM-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"OIlrdvkWM\",isMixedBorderRadius:false,layoutId:\"OIlrdvkWM\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/1vSADIiyV0wnfd9WmiaCDXTIac.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-c5o6ws\",\"data-framer-name\":\"Bottom Left Info Card\",layoutDependency:layoutDependency,layoutId:\"eRB3SYl9L\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ltjdun\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"Ih49cesJ1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q7z5as\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"hBeorbMTa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j13v58\",layoutDependency:layoutDependency,layoutId:\"Re0K7Fk_c\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wou88q\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"puE8D3_zP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9s9sfb-container\",layoutDependency:layoutDependency,layoutId:\"komuFTVhF-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChatCircleDots\",id:\"komuFTVhF\",layoutId:\"komuFTVhF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Messaging Analytics\"})}),className:\"framer-1oo31dr\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h63c_9O8S\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Track the effectiveness of your messaging strategy with real-time analytics.\"})}),className:\"framer-18yh632\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SMkGpbOk6\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lnzxbx\",layoutDependency:layoutDependency,layoutId:\"gtMFab3_5\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7pxxxr-container\",layoutDependency:layoutDependency,layoutId:\"DozD0q2UC-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DozD0q2UC\",isMixedBorderRadius:false,layoutId:\"DozD0q2UC\",loop:true,muted:true,objectFit:\"fill\",playing:true,poster:\"https://framerusercontent.com/images/btnyUEFxu6xPZqho8kY9id5QyE.png\",posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/kueGWYh2Xi0PWmAWiBFsdnVP0k.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-epp464\",layoutDependency:layoutDependency,layoutId:\"IvhRUxN9T\",style:{background:\"linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 14.414414414414415%, rgba(255, 255, 255, 0) 85.80377252252254%, rgba(255, 255, 255, 1) 100.45045045045045%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-sjlyj5\",layoutDependency:layoutDependency,layoutId:\"pKtsJhuem\"})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rjl44w\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"G61tgMaCk\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dnyd4a\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"ICUV_zQb2\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r6pdcm\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"OvY2XGFFW\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xf1cy1\",layoutDependency:layoutDependency,layoutId:\"bZ44PFsur\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ljefv0\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"POFIs3EkK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ydt47i-container\",layoutDependency:layoutDependency,layoutId:\"Drc0KVlC7-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Broadcast\",id:\"Drc0KVlC7\",layoutId:\"Drc0KVlC7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Broadcasts\"})}),className:\"framer-1suug6y\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k5QvmNxwF\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Send one-to-many messages to everyone or specific Groups in seconds.\"})}),className:\"framer-1pvchmk\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UFu2njUDA\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o8vuz9-container\",layoutDependency:layoutDependency,layoutId:\"ukXMnoThJ-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"ukXMnoThJ\",isMixedBorderRadius:false,layoutId:\"ukXMnoThJ\",loop:true,muted:true,objectFit:\"fill\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/mu7LDYYfHCqAajuu1omXDnmnaH4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wpe4wd\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"vwJgx2yrE\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1govnkz\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"sRzHidQDE\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w5onlx\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"QjasjmqUb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g5nmn4\",layoutDependency:layoutDependency,layoutId:\"Eu5m_uSc6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10r8sz3\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"xAGTOPxW0\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d6kvzo-container\",layoutDependency:layoutDependency,layoutId:\"Tsy5PlDB3-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"VideoCamera\",id:\"Tsy5PlDB3\",layoutId:\"Tsy5PlDB3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Video Messaging\"})}),className:\"framer-1jqojde\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JPVB9OJDN\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Record and share videos to connect on a personal level. Available in Gloo+.\"})}),className:\"framer-5awwas\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ps4hQk5c9\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1df3mgh-container\",layoutDependency:layoutDependency,layoutId:\"kP_XdlZy7-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"kP_XdlZy7\",isMixedBorderRadius:false,layoutId:\"kP_XdlZy7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/t4IqlpGlDujT76Ict6Ixp1v8eaI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dvnn4l\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"KsfIzJSKT\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i8r8wu\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"mUHSFIn76\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gaug42\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"Qyar_oP0T\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g7jyjk\",layoutDependency:layoutDependency,layoutId:\"bGPbRsjBm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-md4x22\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"fPjvt09MK\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a9ure5-container\",layoutDependency:layoutDependency,layoutId:\"oFBLdqdSh-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChartBar\",id:\"oFBLdqdSh\",layoutId:\"oFBLdqdSh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Polls\"})}),className:\"framer-1fvmhly\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v7WTd3qSE\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Engage your congregation with interactive Polls to gather live feedback and insights. Available in Gloo+\"})}),className:\"framer-zo8tvw\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L41szYZcy\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n6i47d\",layoutDependency:layoutDependency,layoutId:\"r2tDhyw0n\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wam1wd-container\",layoutDependency:layoutDependency,layoutId:\"clwZhGh23-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:24,bottomLeftRadius:24,bottomRightRadius:24,controls:false,height:\"100%\",id:\"clwZhGh23\",isMixedBorderRadius:false,layoutId:\"clwZhGh23\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/9BoKbo4Vk3ZZghaIu86RGISgCc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:24,topRightRadius:24,volume:25,width:\"100%\"})})})})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-u34fud\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"ndC3BjD70\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-20g2p3\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"g7DfpsUTG\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10wmg0z\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"qABaHPMyy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p6j75o\",layoutDependency:layoutDependency,layoutId:\"axVAI1Win\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h53lj7\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"z0xQWhL2F\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6zfgp3-container\",layoutDependency:layoutDependency,layoutId:\"tVWMyeylz-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plug\",id:\"tVWMyeylz\",layoutId:\"tVWMyeylz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Integrations\"})}),className:\"framer-1txuaok\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RCp3oBR1x\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Sync your favorite church management tools for seamless communication across platforms.\"})}),className:\"framer-zeun3m\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NDQmVcRnB\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-tbvde7\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"bggOMJuw7\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nnikmv\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"EPiyRb3pG\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mivrzs\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"jI_3RJ9IR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1myo5bi\",layoutDependency:layoutDependency,layoutId:\"vcfuZtkqb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tbw6wh\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"rNLJ36CbO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uj7pfd-container\",layoutDependency:layoutDependency,layoutId:\"f40pQQay5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UsersThree\",id:\"f40pQQay5\",layoutId:\"f40pQQay5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Subaccounts\"})}),className:\"framer-kjayx1\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"xCa95oVmZ\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Manage separate accounts for different ministries, campuses, or teams. Available in Gloo+\"})}),className:\"framer-1eiofv3\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EEsPbemMy\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0bi29\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"LYqQ2WFeu\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0zs4t\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"d_6roNVRv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qrzh7y\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"LRme_GFkD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vcx1nk\",layoutDependency:layoutDependency,layoutId:\"xRDI0lFyq\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gaw3lu\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"nqSxlEGoz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mialkj-container\",layoutDependency:layoutDependency,layoutId:\"Kt1qC_jU5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UsersFour\",id:\"Kt1qC_jU5\",layoutId:\"Kt1qC_jU5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Groups\"})}),className:\"framer-b7h52q\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dGt7tDtf_\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:[\"Organize contacts into dedicated Groups for personalized messages.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-1yn0pv\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DJ8YQkP4R\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pnRDnsRZv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Organize contacts into dedicated Groups for personalized messages.\"})})}},baseVariant,gestureVariant)})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hwwp1z\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"JdhqDYOar\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-kr1e6i\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"ruRP2NSoI\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tcmos3\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"oUIpDmYut\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kuvh6\",layoutDependency:layoutDependency,layoutId:\"WPOUQxzPE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-h0psmy\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"S7Ecd_m6q\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14grn4s-container\",layoutDependency:layoutDependency,layoutId:\"bn7TyLN7E-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ClipboardText\",id:\"bn7TyLN7E\",layoutId:\"bn7TyLN7E\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Surveys\"})}),className:\"framer-15hz00o\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vCHpbdrL_\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Gather feedback with customizable questions and shareable links to better serve your community.\"})}),className:\"framer-162zgzh\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LzTpYj07Y\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wgrrn4\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"s5lr3cRPj\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ngm4ef\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"QVWA4biLu\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i6ucij\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"qpXNeewZ9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6mi69e\",layoutDependency:layoutDependency,layoutId:\"f4s3zN2jN\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9lh7p6\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"wxOcnIOgU\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tr2fzr-container\",layoutDependency:layoutDependency,layoutId:\"U2sZMyzYg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"U2sZMyzYg\",layoutId:\"U2sZMyzYg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Automations\"})}),className:\"framer-1v1ipue\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ut_b0BdO5\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Customize and manage auto-response messages for onboarding, prayer requests, and more.\"})}),className:\"framer-l9z4la\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L1h_jfGZq\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-n5j2uq\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"koO1swJIU\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17wz055\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"u_1565EC7\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fu24qv\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"LU5O3zqwo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tik7tu\",layoutDependency:layoutDependency,layoutId:\"goNyI5jUh\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d4ugmc\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"y6A4hCN5I\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tw021i-container\",layoutDependency:layoutDependency,layoutId:\"z_v6pl5Kk-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Image\",id:\"z_v6pl5Kk\",layoutId:\"z_v6pl5Kk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"MMS\"})}),className:\"framer-qx2jbv\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VyWbvjfcs\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Send rich multimedia messages, including images and video, to make communication impactful.\"})}),className:\"framer-1ogmbwx\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N__5YZ5S5\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ocooi\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"YsPAfHBgK\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-seydet\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"RMSbuEtg8\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mvvloq\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"FJ6MHUYb8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yoa7b6\",layoutDependency:layoutDependency,layoutId:\"oVmep1fOw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rmp8go\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"SqqlVl1wj\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vbzhpb-container\",layoutDependency:layoutDependency,layoutId:\"Ql7dR5p3l-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"FileText\",id:\"Ql7dR5p3l\",layoutId:\"Ql7dR5p3l\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Messaging Templates\"})}),className:\"framer-1lvowuq\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DiFi3JZ08\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Save time with ready-to-use templates for common church communications.\"})}),className:\"framer-thuymy\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y0LNgNjoX\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-s607py\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"I7LF6PQuI\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pdf7g6\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"QskiykitP\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-olqypt\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"OOQosgyKm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1edb3db\",layoutDependency:layoutDependency,layoutId:\"yAJ7hBdtj\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ru58as\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"sNdPXDZzr\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bpfmyi-container\",layoutDependency:layoutDependency,layoutId:\"SQWuGm_m9-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Envelope\",id:\"SQWuGm_m9\",layoutId:\"SQWuGm_m9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Email Broadcasts\"})}),className:\"framer-niz4po\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"o63VvuD2r\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Easily send email updates alongside texts to keep your congregation informed across channels.\"})}),className:\"framer-1b2k6ue\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yfl_3A0Q0\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-wd120b\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"Lz91v9ROx\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qvjn6r\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"OJLLW0QK9\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mhov26\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"RqeRWeljR\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-82fcoh\",layoutDependency:layoutDependency,layoutId:\"BtFEqO8xG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3mjlrk\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Qu0vy67Fo\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lj8bvy-container\",layoutDependency:layoutDependency,layoutId:\"PqT6mnRuQ-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"List\",id:\"PqT6mnRuQ\",layoutId:\"PqT6mnRuQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Workflow Menus\"})}),className:\"framer-cm6q84\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zuIgus4lc\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Simplify communication journeys with customizable menu options in your messaging workflows. Available in Gloo+\"})}),className:\"framer-16j2ofm\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JOsVYYt0a\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5vizg2\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"RrCSRS7f6\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nsffd7\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"nxgZ9482j\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6bguum\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"NLNmjKlBg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-44yo0n\",layoutDependency:layoutDependency,layoutId:\"fpkWmfPU8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13dkkz5\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"i2_A910w3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qbjsxw-container\",layoutDependency:layoutDependency,layoutId:\"EtQ7twQH5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Link\",id:\"EtQ7twQH5\",layoutId:\"EtQ7twQH5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Link Shortner\"})}),className:\"framer-1bo0pce\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rO4F2fXVB\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Share clean, Gloo-generated links in your messages to drive engagement and monitor clicks.\"})}),className:\"framer-xuepsd\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KUHbsMSts\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15kz7wt\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"TAHH7cfsp\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hj9he1\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"dxR59L5My\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ya5mnz\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"dTB_c5jax\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xv9am1\",layoutDependency:layoutDependency,layoutId:\"cubtskPkg\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-easaeo\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"DUNqrOtBW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-160kcvf-container\",layoutDependency:layoutDependency,layoutId:\"m9c7r_uXa-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"QrCode\",id:\"m9c7r_uXa\",layoutId:\"m9c7r_uXa\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"QR Codes\"})}),className:\"framer-zxnsee\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j_Mdd_dl1\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:[\"Create custom QR Codes for people to scan and trigger Workflows.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-1az6673\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Txdsqv5NG\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-2dvz3m\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"devySnmEq\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1py8d9k\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"qLa1YrtQp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3cloik\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"cBwL3kURe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-csunlm\",layoutDependency:layoutDependency,layoutId:\"Tl7XKyPAp\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-kjxner\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"FdLWOXfLX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-r8f9c9-container\",layoutDependency:layoutDependency,layoutId:\"XDtbw5Fc_-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"UserCirclePlus\",id:\"XDtbw5Fc_\",layoutId:\"XDtbw5Fc_\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Unlimited Team Members\"})}),className:\"framer-1q104p5\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fMxFYAUxS\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:[\"Collaborate effortlessly by giving your entire team accounts to manage and send messages.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})}),className:\"framer-57a84l\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C5VdXCR6s\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8bwc5o\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"lp1D8ZkFV\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ca9f7u\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"oRmr8XgGV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cy5e8l\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"toHXayu9A\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ach0pa\",layoutDependency:layoutDependency,layoutId:\"fww2BgiG5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17jrle\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"wvvlwz5el\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1swgh1r-container\",layoutDependency:layoutDependency,layoutId:\"WeaKaI4ZF-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Phone\",id:\"WeaKaI4ZF\",layoutId:\"WeaKaI4ZF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Short Codes\"})}),className:\"framer-6z4om8\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"h842l3GHc\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Send high-volume messages with unmatched deliverability using a dedicated 5-digit Short Code (available for a monthly fee).\"})}),className:\"framer-76v25u\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VZz9cI3BP\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gotdd1\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"fNN1XNs33\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l8f6rp\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"IRQxaG8Pg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ivkpue\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"LEOyp8lu1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15d56vx\",layoutDependency:layoutDependency,layoutId:\"jXtQdRGTJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aq8d7i\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"UcYMC8hSb\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k4x784-container\",layoutDependency:layoutDependency,layoutId:\"dojxGMOwm-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Repeat\",id:\"dojxGMOwm\",layoutId:\"dojxGMOwm\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Recurring Broadcasts\"})}),className:\"framer-mnrq03\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mS8Xoq0uL\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Schedule and automate regular updates to ensure important messages are always delivered on time. Available in Gloo+\"})}),className:\"framer-172ae53\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"onLxWhpdB\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({pnRDnsRZv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:[\"Schedule and automate regular updates to ensure important messages are always delivered on time.\",/*#__PURE__*/_jsx(motion.br,{}),/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})]})})}},baseVariant,gestureVariant)})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q8t5vs\",\"data-framer-name\":\"Bottom Right Info Card\",layoutDependency:layoutDependency,layoutId:\"y5KwfiQ1o\",style:{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hp2v2l\",\"data-framer-name\":\"Text Content Stack\",layoutDependency:layoutDependency,layoutId:\"axntvrOdc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zb0785\",\"data-framer-name\":\"Text Stack\",layoutDependency:layoutDependency,layoutId:\"bvY1mrKqa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h2ux2a\",layoutDependency:layoutDependency,layoutId:\"I0v8PGlF0\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jbq1ds\",\"data-border\":true,\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"VmGwncjpz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 12px 15px -10px rgba(0, 0, 0, 0.2)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bknj8a-container\",layoutDependency:layoutDependency,layoutId:\"wc5NXx3z5-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d335a8dd-091a-4687-9e40-0a386f7d7d51, rgb(40, 113, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Note\",id:\"wc5NXx3z5\",layoutId:\"wc5NXx3z5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-fi66dc\",\"data-styles-preset\":\"PT_amgL_6\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Memos\"})}),className:\"framer-5p1inw\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FMQVoUcXU\",style:{\"--extracted-1lwpl3i\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-11zorzc\",\"data-styles-preset\":\"HhLr_TFUZ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122)))\"},children:\"Send beautifully formatted, long-form messages with rich text and images as a shareable link directly to your people\u2019s phones.\"})}),className:\"framer-tbdxft\",\"data-framer-name\":\"Body Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MKqayGWVM\",style:{\"--extracted-r6o4lv\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1192.5,...addPropertyOverrides({B9b4CJLR9:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+3072.5},IKZzeJXPe:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+1662.5},J33VWRZ5u:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+6762.5},pnRDnsRZv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+3630.5},xlKo0vF5B:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+2422.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s97eyd-container\",\"data-framer-name\":\"Primary Button\",layoutDependency:layoutDependency,layoutId:\"xOhzHkMmx-container\",name:\"Primary Button\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:false,G77f5Yx_v:\"See More\",height:\"100%\",HFfTjmBlq:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",id:\"xOhzHkMmx\",layoutId:\"xOhzHkMmx\",n9WP3fBIv:false,name:\"Primary Button\",nSQvgmbyz:nSQvgmbyz1i2owf5,oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",style:{height:\"100%\"},SZQpZ3lk2:16,variant:\"rt1NrdlKK\",VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false,...addPropertyOverrides({B9b4CJLR9:{nSQvgmbyz:nSQvgmbyz19q75dj},IKZzeJXPe:{nSQvgmbyz:nSQvgmbyzi6zxjz},J33VWRZ5u:{G77f5Yx_v:\"See Less\",nSQvgmbyz:nSQvgmbyz1xy3cxc},pnRDnsRZv:{G77f5Yx_v:\"See Less\",nSQvgmbyz:nSQvgmbyz14b66u3},xlKo0vF5B:{G77f5Yx_v:\"See Less\",nSQvgmbyz:nSQvgmbyz1pbse4f}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yWCuO.framer-11hhr5y, .framer-yWCuO .framer-11hhr5y { display: block; }\",\".framer-yWCuO.framer-7f7t08 { display: grid; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1240px; }\",\".framer-yWCuO .framer-v1zrkb, .framer-yWCuO .framer-1p3v0jr, .framer-yWCuO .framer-c5o6ws, .framer-yWCuO .framer-rjl44w, .framer-yWCuO .framer-wpe4wd, .framer-yWCuO .framer-1dvnn4l { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; justify-self: start; min-height: 200px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yWCuO .framer-2x87m3, .framer-yWCuO .framer-1frf2po, .framer-yWCuO .framer-1ltjdun, .framer-yWCuO .framer-dnyd4a, .framer-yWCuO .framer-1govnkz, .framer-yWCuO .framer-i8r8wu, .framer-yWCuO .framer-20g2p3, .framer-yWCuO .framer-nnikmv, .framer-yWCuO .framer-1g0zs4t, .framer-yWCuO .framer-kr1e6i, .framer-yWCuO .framer-1ngm4ef, .framer-yWCuO .framer-17wz055, .framer-yWCuO .framer-seydet, .framer-yWCuO .framer-pdf7g6, .framer-yWCuO .framer-1qvjn6r, .framer-yWCuO .framer-1nsffd7, .framer-yWCuO .framer-hj9he1, .framer-yWCuO .framer-1py8d9k, .framer-yWCuO .framer-1ca9f7u, .framer-yWCuO .framer-1l8f6rp, .framer-yWCuO .framer-hp2v2l { 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-yWCuO .framer-18g4zep, .framer-yWCuO .framer-1a0ty3c, .framer-yWCuO .framer-1q7z5as, .framer-yWCuO .framer-1r6pdcm, .framer-yWCuO .framer-1w5onlx, .framer-yWCuO .framer-1gaug42, .framer-yWCuO .framer-10wmg0z, .framer-yWCuO .framer-1mivrzs, .framer-yWCuO .framer-qrzh7y, .framer-yWCuO .framer-1tcmos3, .framer-yWCuO .framer-i6ucij, .framer-yWCuO .framer-fu24qv, .framer-yWCuO .framer-mvvloq, .framer-yWCuO .framer-olqypt, .framer-yWCuO .framer-mhov26, .framer-yWCuO .framer-6bguum, .framer-yWCuO .framer-1ya5mnz, .framer-yWCuO .framer-3cloik, .framer-yWCuO .framer-cy5e8l, .framer-yWCuO .framer-ivkpue, .framer-yWCuO .framer-zb0785 { align-content: flex-start; align-items: flex-start; 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-yWCuO .framer-5ksghx, .framer-yWCuO .framer-1fbnupk, .framer-yWCuO .framer-1j13v58, .framer-yWCuO .framer-xf1cy1, .framer-yWCuO .framer-1g5nmn4, .framer-yWCuO .framer-g7jyjk, .framer-yWCuO .framer-1p6j75o, .framer-yWCuO .framer-1myo5bi, .framer-yWCuO .framer-vcx1nk, .framer-yWCuO .framer-1kuvh6, .framer-yWCuO .framer-6mi69e, .framer-yWCuO .framer-tik7tu, .framer-yWCuO .framer-1yoa7b6, .framer-yWCuO .framer-1edb3db, .framer-yWCuO .framer-82fcoh, .framer-yWCuO .framer-44yo0n, .framer-yWCuO .framer-1xv9am1, .framer-yWCuO .framer-csunlm, .framer-yWCuO .framer-ach0pa, .framer-yWCuO .framer-15d56vx, .framer-yWCuO .framer-h2ux2a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yWCuO .framer-67u3jj, .framer-yWCuO .framer-upqm9c, .framer-yWCuO .framer-1wou88q, .framer-yWCuO .framer-1ljefv0, .framer-yWCuO .framer-10r8sz3, .framer-yWCuO .framer-md4x22, .framer-yWCuO .framer-h53lj7, .framer-yWCuO .framer-1tbw6wh, .framer-yWCuO .framer-gaw3lu, .framer-yWCuO .framer-h0psmy, .framer-yWCuO .framer-9lh7p6, .framer-yWCuO .framer-d4ugmc, .framer-yWCuO .framer-1rmp8go, .framer-yWCuO .framer-1ru58as, .framer-yWCuO .framer-3mjlrk, .framer-yWCuO .framer-13dkkz5, .framer-yWCuO .framer-easaeo, .framer-yWCuO .framer-kjxner, .framer-yWCuO .framer-17jrle, .framer-yWCuO .framer-1aq8d7i, .framer-yWCuO .framer-1jbq1ds { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 54px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 54px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yWCuO .framer-uf8beo-container, .framer-yWCuO .framer-1pttqy5-container, .framer-yWCuO .framer-9s9sfb-container, .framer-yWCuO .framer-1ydt47i-container, .framer-yWCuO .framer-1d6kvzo-container, .framer-yWCuO .framer-1a9ure5-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); position: relative; width: 33px; }\",\".framer-yWCuO .framer-dlmuhm, .framer-yWCuO .framer-1hra0pr, .framer-yWCuO .framer-1oo31dr, .framer-yWCuO .framer-1suug6y, .framer-yWCuO .framer-1jqojde, .framer-yWCuO .framer-1fvmhly, .framer-yWCuO .framer-1txuaok, .framer-yWCuO .framer-kjayx1, .framer-yWCuO .framer-b7h52q, .framer-yWCuO .framer-15hz00o, .framer-yWCuO .framer-1v1ipue, .framer-yWCuO .framer-qx2jbv, .framer-yWCuO .framer-1lvowuq, .framer-yWCuO .framer-niz4po, .framer-yWCuO .framer-cm6q84, .framer-yWCuO .framer-1bo0pce, .framer-yWCuO .framer-zxnsee, .framer-yWCuO .framer-1q104p5, .framer-yWCuO .framer-6z4om8, .framer-yWCuO .framer-mnrq03, .framer-yWCuO .framer-5p1inw { --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-yWCuO .framer-1kvmxmi, .framer-yWCuO .framer-1fvq4z2, .framer-yWCuO .framer-18yh632, .framer-yWCuO .framer-1pvchmk, .framer-yWCuO .framer-5awwas, .framer-yWCuO .framer-zo8tvw, .framer-yWCuO .framer-zeun3m, .framer-yWCuO .framer-1eiofv3, .framer-yWCuO .framer-1yn0pv, .framer-yWCuO .framer-162zgzh, .framer-yWCuO .framer-l9z4la, .framer-yWCuO .framer-1ogmbwx, .framer-yWCuO .framer-thuymy, .framer-yWCuO .framer-1b2k6ue, .framer-yWCuO .framer-16j2ofm, .framer-yWCuO .framer-xuepsd, .framer-yWCuO .framer-1az6673, .framer-yWCuO .framer-57a84l, .framer-yWCuO .framer-76v25u, .framer-yWCuO .framer-172ae53, .framer-yWCuO .framer-tbdxft { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yWCuO .framer-11qyjnl-container, .framer-yWCuO .framer-1086m0n-container, .framer-yWCuO .framer-o8vuz9-container, .framer-yWCuO .framer-1df3mgh-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 355px); position: relative; width: 100%; }\",\".framer-yWCuO .framer-lnzxbx { flex: none; height: 326px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yWCuO .framer-7pxxxr-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 359px); left: -2px; position: absolute; right: -2px; top: -2px; }\",\".framer-yWCuO .framer-epp464 { bottom: -2px; flex: none; left: -1px; overflow: hidden; position: absolute; right: -1px; top: -2px; }\",\".framer-yWCuO .framer-sjlyj5 { bottom: -2px; flex: none; left: -1px; overflow: hidden; position: absolute; right: -3px; top: -2px; }\",\".framer-yWCuO .framer-n6i47d { aspect-ratio: 1.0874233128834356 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 327px); overflow: hidden; position: relative; width: 355px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yWCuO .framer-1wam1wd-container { bottom: -2px; flex: none; left: -2px; position: absolute; right: -2px; top: -2px; }\",\".framer-yWCuO .framer-u34fud, .framer-yWCuO .framer-tbvde7, .framer-yWCuO .framer-1g0bi29, .framer-yWCuO .framer-hwwp1z, .framer-yWCuO .framer-1wgrrn4, .framer-yWCuO .framer-n5j2uq, .framer-yWCuO .framer-8ocooi, .framer-yWCuO .framer-s607py, .framer-yWCuO .framer-wd120b, .framer-yWCuO .framer-5vizg2, .framer-yWCuO .framer-15kz7wt, .framer-yWCuO .framer-2dvz3m, .framer-yWCuO .framer-8bwc5o, .framer-yWCuO .framer-1gotdd1, .framer-yWCuO .framer-1q8t5vs { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; min-height: 200px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yWCuO .framer-6zfgp3-container, .framer-yWCuO .framer-uj7pfd-container, .framer-yWCuO .framer-mialkj-container, .framer-yWCuO .framer-14grn4s-container, .framer-yWCuO .framer-1tr2fzr-container, .framer-yWCuO .framer-1tw021i-container, .framer-yWCuO .framer-vbzhpb-container, .framer-yWCuO .framer-1bpfmyi-container, .framer-yWCuO .framer-lj8bvy-container, .framer-yWCuO .framer-1qbjsxw-container, .framer-yWCuO .framer-160kcvf-container, .framer-yWCuO .framer-r8f9c9-container, .framer-yWCuO .framer-1swgh1r-container, .framer-yWCuO .framer-1k4x784-container, .framer-yWCuO .framer-1bknj8a-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 33px; }\",\".framer-yWCuO .framer-1s97eyd-container { align-self: center; flex: none; grid-column: 1 / -1; height: 59px; justify-self: center; position: relative; width: fit-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yWCuO .framer-v1zrkb, .framer-yWCuO .framer-2x87m3, .framer-yWCuO .framer-18g4zep, .framer-yWCuO .framer-5ksghx, .framer-yWCuO .framer-67u3jj, .framer-yWCuO .framer-1p3v0jr, .framer-yWCuO .framer-1frf2po, .framer-yWCuO .framer-1a0ty3c, .framer-yWCuO .framer-1fbnupk, .framer-yWCuO .framer-upqm9c, .framer-yWCuO .framer-c5o6ws, .framer-yWCuO .framer-1ltjdun, .framer-yWCuO .framer-1q7z5as, .framer-yWCuO .framer-1j13v58, .framer-yWCuO .framer-1wou88q, .framer-yWCuO .framer-rjl44w, .framer-yWCuO .framer-dnyd4a, .framer-yWCuO .framer-1r6pdcm, .framer-yWCuO .framer-xf1cy1, .framer-yWCuO .framer-1ljefv0, .framer-yWCuO .framer-wpe4wd, .framer-yWCuO .framer-1govnkz, .framer-yWCuO .framer-1w5onlx, .framer-yWCuO .framer-1g5nmn4, .framer-yWCuO .framer-10r8sz3, .framer-yWCuO .framer-1dvnn4l, .framer-yWCuO .framer-i8r8wu, .framer-yWCuO .framer-1gaug42, .framer-yWCuO .framer-g7jyjk, .framer-yWCuO .framer-md4x22, .framer-yWCuO .framer-u34fud, .framer-yWCuO .framer-20g2p3, .framer-yWCuO .framer-10wmg0z, .framer-yWCuO .framer-1p6j75o, .framer-yWCuO .framer-h53lj7, .framer-yWCuO .framer-tbvde7, .framer-yWCuO .framer-nnikmv, .framer-yWCuO .framer-1mivrzs, .framer-yWCuO .framer-1myo5bi, .framer-yWCuO .framer-1tbw6wh, .framer-yWCuO .framer-1g0bi29, .framer-yWCuO .framer-1g0zs4t, .framer-yWCuO .framer-qrzh7y, .framer-yWCuO .framer-vcx1nk, .framer-yWCuO .framer-gaw3lu, .framer-yWCuO .framer-hwwp1z, .framer-yWCuO .framer-kr1e6i, .framer-yWCuO .framer-1tcmos3, .framer-yWCuO .framer-1kuvh6, .framer-yWCuO .framer-h0psmy, .framer-yWCuO .framer-1wgrrn4, .framer-yWCuO .framer-1ngm4ef, .framer-yWCuO .framer-i6ucij, .framer-yWCuO .framer-6mi69e, .framer-yWCuO .framer-9lh7p6, .framer-yWCuO .framer-n5j2uq, .framer-yWCuO .framer-17wz055, .framer-yWCuO .framer-fu24qv, .framer-yWCuO .framer-tik7tu, .framer-yWCuO .framer-d4ugmc, .framer-yWCuO .framer-8ocooi, .framer-yWCuO .framer-seydet, .framer-yWCuO .framer-mvvloq, .framer-yWCuO .framer-1yoa7b6, .framer-yWCuO .framer-1rmp8go, .framer-yWCuO .framer-s607py, .framer-yWCuO .framer-pdf7g6, .framer-yWCuO .framer-olqypt, .framer-yWCuO .framer-1edb3db, .framer-yWCuO .framer-1ru58as, .framer-yWCuO .framer-wd120b, .framer-yWCuO .framer-1qvjn6r, .framer-yWCuO .framer-mhov26, .framer-yWCuO .framer-82fcoh, .framer-yWCuO .framer-3mjlrk, .framer-yWCuO .framer-5vizg2, .framer-yWCuO .framer-1nsffd7, .framer-yWCuO .framer-6bguum, .framer-yWCuO .framer-44yo0n, .framer-yWCuO .framer-13dkkz5, .framer-yWCuO .framer-15kz7wt, .framer-yWCuO .framer-hj9he1, .framer-yWCuO .framer-1ya5mnz, .framer-yWCuO .framer-1xv9am1, .framer-yWCuO .framer-easaeo, .framer-yWCuO .framer-2dvz3m, .framer-yWCuO .framer-1py8d9k, .framer-yWCuO .framer-3cloik, .framer-yWCuO .framer-csunlm, .framer-yWCuO .framer-kjxner, .framer-yWCuO .framer-8bwc5o, .framer-yWCuO .framer-1ca9f7u, .framer-yWCuO .framer-cy5e8l, .framer-yWCuO .framer-ach0pa, .framer-yWCuO .framer-17jrle, .framer-yWCuO .framer-1gotdd1, .framer-yWCuO .framer-1l8f6rp, .framer-yWCuO .framer-ivkpue, .framer-yWCuO .framer-15d56vx, .framer-yWCuO .framer-1aq8d7i, .framer-yWCuO .framer-1q8t5vs, .framer-yWCuO .framer-hp2v2l, .framer-yWCuO .framer-zb0785, .framer-yWCuO .framer-h2ux2a, .framer-yWCuO .framer-1jbq1ds { gap: 0px; } .framer-yWCuO .framer-v1zrkb > *, .framer-yWCuO .framer-1p3v0jr > *, .framer-yWCuO .framer-c5o6ws > *, .framer-yWCuO .framer-rjl44w > *, .framer-yWCuO .framer-wpe4wd > *, .framer-yWCuO .framer-1dvnn4l > *, .framer-yWCuO .framer-u34fud > *, .framer-yWCuO .framer-tbvde7 > *, .framer-yWCuO .framer-1g0bi29 > *, .framer-yWCuO .framer-hwwp1z > *, .framer-yWCuO .framer-1wgrrn4 > *, .framer-yWCuO .framer-n5j2uq > *, .framer-yWCuO .framer-8ocooi > *, .framer-yWCuO .framer-s607py > *, .framer-yWCuO .framer-wd120b > *, .framer-yWCuO .framer-5vizg2 > *, .framer-yWCuO .framer-15kz7wt > *, .framer-yWCuO .framer-2dvz3m > *, .framer-yWCuO .framer-8bwc5o > *, .framer-yWCuO .framer-1gotdd1 > *, .framer-yWCuO .framer-1q8t5vs > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yWCuO .framer-v1zrkb > :first-child, .framer-yWCuO .framer-2x87m3 > :first-child, .framer-yWCuO .framer-18g4zep > :first-child, .framer-yWCuO .framer-67u3jj > :first-child, .framer-yWCuO .framer-1p3v0jr > :first-child, .framer-yWCuO .framer-1frf2po > :first-child, .framer-yWCuO .framer-1a0ty3c > :first-child, .framer-yWCuO .framer-upqm9c > :first-child, .framer-yWCuO .framer-c5o6ws > :first-child, .framer-yWCuO .framer-1ltjdun > :first-child, .framer-yWCuO .framer-1q7z5as > :first-child, .framer-yWCuO .framer-1wou88q > :first-child, .framer-yWCuO .framer-rjl44w > :first-child, .framer-yWCuO .framer-dnyd4a > :first-child, .framer-yWCuO .framer-1r6pdcm > :first-child, .framer-yWCuO .framer-1ljefv0 > :first-child, .framer-yWCuO .framer-wpe4wd > :first-child, .framer-yWCuO .framer-1govnkz > :first-child, .framer-yWCuO .framer-1w5onlx > :first-child, .framer-yWCuO .framer-10r8sz3 > :first-child, .framer-yWCuO .framer-1dvnn4l > :first-child, .framer-yWCuO .framer-i8r8wu > :first-child, .framer-yWCuO .framer-1gaug42 > :first-child, .framer-yWCuO .framer-md4x22 > :first-child, .framer-yWCuO .framer-u34fud > :first-child, .framer-yWCuO .framer-20g2p3 > :first-child, .framer-yWCuO .framer-10wmg0z > :first-child, .framer-yWCuO .framer-h53lj7 > :first-child, .framer-yWCuO .framer-tbvde7 > :first-child, .framer-yWCuO .framer-nnikmv > :first-child, .framer-yWCuO .framer-1mivrzs > :first-child, .framer-yWCuO .framer-1tbw6wh > :first-child, .framer-yWCuO .framer-1g0bi29 > :first-child, .framer-yWCuO .framer-1g0zs4t > :first-child, .framer-yWCuO .framer-qrzh7y > :first-child, .framer-yWCuO .framer-gaw3lu > :first-child, .framer-yWCuO .framer-hwwp1z > :first-child, .framer-yWCuO .framer-kr1e6i > :first-child, .framer-yWCuO .framer-1tcmos3 > :first-child, .framer-yWCuO .framer-h0psmy > :first-child, .framer-yWCuO .framer-1wgrrn4 > :first-child, .framer-yWCuO .framer-1ngm4ef > :first-child, .framer-yWCuO .framer-i6ucij > :first-child, .framer-yWCuO .framer-9lh7p6 > :first-child, .framer-yWCuO .framer-n5j2uq > :first-child, .framer-yWCuO .framer-17wz055 > :first-child, .framer-yWCuO .framer-fu24qv > :first-child, .framer-yWCuO .framer-d4ugmc > :first-child, .framer-yWCuO .framer-8ocooi > :first-child, .framer-yWCuO .framer-seydet > :first-child, .framer-yWCuO .framer-mvvloq > :first-child, .framer-yWCuO .framer-1rmp8go > :first-child, .framer-yWCuO .framer-s607py > :first-child, .framer-yWCuO .framer-pdf7g6 > :first-child, .framer-yWCuO .framer-olqypt > :first-child, .framer-yWCuO .framer-1ru58as > :first-child, .framer-yWCuO .framer-wd120b > :first-child, .framer-yWCuO .framer-1qvjn6r > :first-child, .framer-yWCuO .framer-mhov26 > :first-child, .framer-yWCuO .framer-3mjlrk > :first-child, .framer-yWCuO .framer-5vizg2 > :first-child, .framer-yWCuO .framer-1nsffd7 > :first-child, .framer-yWCuO .framer-6bguum > :first-child, .framer-yWCuO .framer-13dkkz5 > :first-child, .framer-yWCuO .framer-15kz7wt > :first-child, .framer-yWCuO .framer-hj9he1 > :first-child, .framer-yWCuO .framer-1ya5mnz > :first-child, .framer-yWCuO .framer-easaeo > :first-child, .framer-yWCuO .framer-2dvz3m > :first-child, .framer-yWCuO .framer-1py8d9k > :first-child, .framer-yWCuO .framer-3cloik > :first-child, .framer-yWCuO .framer-kjxner > :first-child, .framer-yWCuO .framer-8bwc5o > :first-child, .framer-yWCuO .framer-1ca9f7u > :first-child, .framer-yWCuO .framer-cy5e8l > :first-child, .framer-yWCuO .framer-17jrle > :first-child, .framer-yWCuO .framer-1gotdd1 > :first-child, .framer-yWCuO .framer-1l8f6rp > :first-child, .framer-yWCuO .framer-ivkpue > :first-child, .framer-yWCuO .framer-1aq8d7i > :first-child, .framer-yWCuO .framer-1q8t5vs > :first-child, .framer-yWCuO .framer-hp2v2l > :first-child, .framer-yWCuO .framer-zb0785 > :first-child, .framer-yWCuO .framer-1jbq1ds > :first-child { margin-top: 0px; } .framer-yWCuO .framer-v1zrkb > :last-child, .framer-yWCuO .framer-2x87m3 > :last-child, .framer-yWCuO .framer-18g4zep > :last-child, .framer-yWCuO .framer-67u3jj > :last-child, .framer-yWCuO .framer-1p3v0jr > :last-child, .framer-yWCuO .framer-1frf2po > :last-child, .framer-yWCuO .framer-1a0ty3c > :last-child, .framer-yWCuO .framer-upqm9c > :last-child, .framer-yWCuO .framer-c5o6ws > :last-child, .framer-yWCuO .framer-1ltjdun > :last-child, .framer-yWCuO .framer-1q7z5as > :last-child, .framer-yWCuO .framer-1wou88q > :last-child, .framer-yWCuO .framer-rjl44w > :last-child, .framer-yWCuO .framer-dnyd4a > :last-child, .framer-yWCuO .framer-1r6pdcm > :last-child, .framer-yWCuO .framer-1ljefv0 > :last-child, .framer-yWCuO .framer-wpe4wd > :last-child, .framer-yWCuO .framer-1govnkz > :last-child, .framer-yWCuO .framer-1w5onlx > :last-child, .framer-yWCuO .framer-10r8sz3 > :last-child, .framer-yWCuO .framer-1dvnn4l > :last-child, .framer-yWCuO .framer-i8r8wu > :last-child, .framer-yWCuO .framer-1gaug42 > :last-child, .framer-yWCuO .framer-md4x22 > :last-child, .framer-yWCuO .framer-u34fud > :last-child, .framer-yWCuO .framer-20g2p3 > :last-child, .framer-yWCuO .framer-10wmg0z > :last-child, .framer-yWCuO .framer-h53lj7 > :last-child, .framer-yWCuO .framer-tbvde7 > :last-child, .framer-yWCuO .framer-nnikmv > :last-child, .framer-yWCuO .framer-1mivrzs > :last-child, .framer-yWCuO .framer-1tbw6wh > :last-child, .framer-yWCuO .framer-1g0bi29 > :last-child, .framer-yWCuO .framer-1g0zs4t > :last-child, .framer-yWCuO .framer-qrzh7y > :last-child, .framer-yWCuO .framer-gaw3lu > :last-child, .framer-yWCuO .framer-hwwp1z > :last-child, .framer-yWCuO .framer-kr1e6i > :last-child, .framer-yWCuO .framer-1tcmos3 > :last-child, .framer-yWCuO .framer-h0psmy > :last-child, .framer-yWCuO .framer-1wgrrn4 > :last-child, .framer-yWCuO .framer-1ngm4ef > :last-child, .framer-yWCuO .framer-i6ucij > :last-child, .framer-yWCuO .framer-9lh7p6 > :last-child, .framer-yWCuO .framer-n5j2uq > :last-child, .framer-yWCuO .framer-17wz055 > :last-child, .framer-yWCuO .framer-fu24qv > :last-child, .framer-yWCuO .framer-d4ugmc > :last-child, .framer-yWCuO .framer-8ocooi > :last-child, .framer-yWCuO .framer-seydet > :last-child, .framer-yWCuO .framer-mvvloq > :last-child, .framer-yWCuO .framer-1rmp8go > :last-child, .framer-yWCuO .framer-s607py > :last-child, .framer-yWCuO .framer-pdf7g6 > :last-child, .framer-yWCuO .framer-olqypt > :last-child, .framer-yWCuO .framer-1ru58as > :last-child, .framer-yWCuO .framer-wd120b > :last-child, .framer-yWCuO .framer-1qvjn6r > :last-child, .framer-yWCuO .framer-mhov26 > :last-child, .framer-yWCuO .framer-3mjlrk > :last-child, .framer-yWCuO .framer-5vizg2 > :last-child, .framer-yWCuO .framer-1nsffd7 > :last-child, .framer-yWCuO .framer-6bguum > :last-child, .framer-yWCuO .framer-13dkkz5 > :last-child, .framer-yWCuO .framer-15kz7wt > :last-child, .framer-yWCuO .framer-hj9he1 > :last-child, .framer-yWCuO .framer-1ya5mnz > :last-child, .framer-yWCuO .framer-easaeo > :last-child, .framer-yWCuO .framer-2dvz3m > :last-child, .framer-yWCuO .framer-1py8d9k > :last-child, .framer-yWCuO .framer-3cloik > :last-child, .framer-yWCuO .framer-kjxner > :last-child, .framer-yWCuO .framer-8bwc5o > :last-child, .framer-yWCuO .framer-1ca9f7u > :last-child, .framer-yWCuO .framer-cy5e8l > :last-child, .framer-yWCuO .framer-17jrle > :last-child, .framer-yWCuO .framer-1gotdd1 > :last-child, .framer-yWCuO .framer-1l8f6rp > :last-child, .framer-yWCuO .framer-ivkpue > :last-child, .framer-yWCuO .framer-1aq8d7i > :last-child, .framer-yWCuO .framer-1q8t5vs > :last-child, .framer-yWCuO .framer-hp2v2l > :last-child, .framer-yWCuO .framer-zb0785 > :last-child, .framer-yWCuO .framer-1jbq1ds > :last-child { margin-bottom: 0px; } .framer-yWCuO .framer-2x87m3 > *, .framer-yWCuO .framer-1frf2po > *, .framer-yWCuO .framer-1ltjdun > *, .framer-yWCuO .framer-dnyd4a > *, .framer-yWCuO .framer-1govnkz > *, .framer-yWCuO .framer-i8r8wu > *, .framer-yWCuO .framer-20g2p3 > *, .framer-yWCuO .framer-nnikmv > *, .framer-yWCuO .framer-1g0zs4t > *, .framer-yWCuO .framer-kr1e6i > *, .framer-yWCuO .framer-1ngm4ef > *, .framer-yWCuO .framer-17wz055 > *, .framer-yWCuO .framer-seydet > *, .framer-yWCuO .framer-pdf7g6 > *, .framer-yWCuO .framer-1qvjn6r > *, .framer-yWCuO .framer-1nsffd7 > *, .framer-yWCuO .framer-hj9he1 > *, .framer-yWCuO .framer-1py8d9k > *, .framer-yWCuO .framer-1ca9f7u > *, .framer-yWCuO .framer-1l8f6rp > *, .framer-yWCuO .framer-hp2v2l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yWCuO .framer-18g4zep > *, .framer-yWCuO .framer-1a0ty3c > *, .framer-yWCuO .framer-1q7z5as > *, .framer-yWCuO .framer-1r6pdcm > *, .framer-yWCuO .framer-1w5onlx > *, .framer-yWCuO .framer-1gaug42 > *, .framer-yWCuO .framer-10wmg0z > *, .framer-yWCuO .framer-1mivrzs > *, .framer-yWCuO .framer-qrzh7y > *, .framer-yWCuO .framer-1tcmos3 > *, .framer-yWCuO .framer-i6ucij > *, .framer-yWCuO .framer-fu24qv > *, .framer-yWCuO .framer-mvvloq > *, .framer-yWCuO .framer-olqypt > *, .framer-yWCuO .framer-mhov26 > *, .framer-yWCuO .framer-6bguum > *, .framer-yWCuO .framer-1ya5mnz > *, .framer-yWCuO .framer-3cloik > *, .framer-yWCuO .framer-cy5e8l > *, .framer-yWCuO .framer-ivkpue > *, .framer-yWCuO .framer-zb0785 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-yWCuO .framer-5ksghx > *, .framer-yWCuO .framer-1fbnupk > *, .framer-yWCuO .framer-1j13v58 > *, .framer-yWCuO .framer-xf1cy1 > *, .framer-yWCuO .framer-1g5nmn4 > *, .framer-yWCuO .framer-g7jyjk > *, .framer-yWCuO .framer-1p6j75o > *, .framer-yWCuO .framer-1myo5bi > *, .framer-yWCuO .framer-vcx1nk > *, .framer-yWCuO .framer-1kuvh6 > *, .framer-yWCuO .framer-6mi69e > *, .framer-yWCuO .framer-tik7tu > *, .framer-yWCuO .framer-1yoa7b6 > *, .framer-yWCuO .framer-1edb3db > *, .framer-yWCuO .framer-82fcoh > *, .framer-yWCuO .framer-44yo0n > *, .framer-yWCuO .framer-1xv9am1 > *, .framer-yWCuO .framer-csunlm > *, .framer-yWCuO .framer-ach0pa > *, .framer-yWCuO .framer-15d56vx > *, .framer-yWCuO .framer-h2ux2a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yWCuO .framer-5ksghx > :first-child, .framer-yWCuO .framer-1fbnupk > :first-child, .framer-yWCuO .framer-1j13v58 > :first-child, .framer-yWCuO .framer-xf1cy1 > :first-child, .framer-yWCuO .framer-1g5nmn4 > :first-child, .framer-yWCuO .framer-g7jyjk > :first-child, .framer-yWCuO .framer-1p6j75o > :first-child, .framer-yWCuO .framer-1myo5bi > :first-child, .framer-yWCuO .framer-vcx1nk > :first-child, .framer-yWCuO .framer-1kuvh6 > :first-child, .framer-yWCuO .framer-6mi69e > :first-child, .framer-yWCuO .framer-tik7tu > :first-child, .framer-yWCuO .framer-1yoa7b6 > :first-child, .framer-yWCuO .framer-1edb3db > :first-child, .framer-yWCuO .framer-82fcoh > :first-child, .framer-yWCuO .framer-44yo0n > :first-child, .framer-yWCuO .framer-1xv9am1 > :first-child, .framer-yWCuO .framer-csunlm > :first-child, .framer-yWCuO .framer-ach0pa > :first-child, .framer-yWCuO .framer-15d56vx > :first-child, .framer-yWCuO .framer-h2ux2a > :first-child { margin-left: 0px; } .framer-yWCuO .framer-5ksghx > :last-child, .framer-yWCuO .framer-1fbnupk > :last-child, .framer-yWCuO .framer-1j13v58 > :last-child, .framer-yWCuO .framer-xf1cy1 > :last-child, .framer-yWCuO .framer-1g5nmn4 > :last-child, .framer-yWCuO .framer-g7jyjk > :last-child, .framer-yWCuO .framer-1p6j75o > :last-child, .framer-yWCuO .framer-1myo5bi > :last-child, .framer-yWCuO .framer-vcx1nk > :last-child, .framer-yWCuO .framer-1kuvh6 > :last-child, .framer-yWCuO .framer-6mi69e > :last-child, .framer-yWCuO .framer-tik7tu > :last-child, .framer-yWCuO .framer-1yoa7b6 > :last-child, .framer-yWCuO .framer-1edb3db > :last-child, .framer-yWCuO .framer-82fcoh > :last-child, .framer-yWCuO .framer-44yo0n > :last-child, .framer-yWCuO .framer-1xv9am1 > :last-child, .framer-yWCuO .framer-csunlm > :last-child, .framer-yWCuO .framer-ach0pa > :last-child, .framer-yWCuO .framer-15d56vx > :last-child, .framer-yWCuO .framer-h2ux2a > :last-child { margin-right: 0px; } .framer-yWCuO .framer-67u3jj > *, .framer-yWCuO .framer-upqm9c > *, .framer-yWCuO .framer-1wou88q > *, .framer-yWCuO .framer-1ljefv0 > *, .framer-yWCuO .framer-10r8sz3 > *, .framer-yWCuO .framer-md4x22 > *, .framer-yWCuO .framer-h53lj7 > *, .framer-yWCuO .framer-1tbw6wh > *, .framer-yWCuO .framer-gaw3lu > *, .framer-yWCuO .framer-h0psmy > *, .framer-yWCuO .framer-9lh7p6 > *, .framer-yWCuO .framer-d4ugmc > *, .framer-yWCuO .framer-1rmp8go > *, .framer-yWCuO .framer-1ru58as > *, .framer-yWCuO .framer-3mjlrk > *, .framer-yWCuO .framer-13dkkz5 > *, .framer-yWCuO .framer-easaeo > *, .framer-yWCuO .framer-kjxner > *, .framer-yWCuO .framer-17jrle > *, .framer-yWCuO .framer-1aq8d7i > *, .framer-yWCuO .framer-1jbq1ds > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",\".framer-yWCuO.framer-v-1q44i1k .framer-6zfgp3-container, .framer-yWCuO.framer-v-1q44i1k .framer-uj7pfd-container, .framer-yWCuO.framer-v-1q44i1k .framer-mialkj-container, .framer-yWCuO.framer-v-1q44i1k .framer-14grn4s-container, .framer-yWCuO.framer-v-1q44i1k .framer-1tr2fzr-container, .framer-yWCuO.framer-v-1q44i1k .framer-1tw021i-container, .framer-yWCuO.framer-v-1q44i1k .framer-vbzhpb-container, .framer-yWCuO.framer-v-1q44i1k .framer-1bpfmyi-container, .framer-yWCuO.framer-v-1q44i1k .framer-lj8bvy-container, .framer-yWCuO.framer-v-1q44i1k .framer-1qbjsxw-container, .framer-yWCuO.framer-v-1q44i1k .framer-160kcvf-container, .framer-yWCuO.framer-v-1q44i1k .framer-r8f9c9-container, .framer-yWCuO.framer-v-1q44i1k .framer-1swgh1r-container, .framer-yWCuO.framer-v-1q44i1k .framer-1k4x784-container, .framer-yWCuO.framer-v-1q44i1k .framer-1bknj8a-container { height: var(--framer-aspect-ratio-supported, 36px); }\",\".framer-yWCuO.framer-v-1ozfwre.framer-7f7t08, .framer-yWCuO.framer-v-1hlmr2h.framer-7f7t08 { grid-template-columns: repeat(2, minmax(200px, 1fr)); }\",\".framer-yWCuO.framer-v-1ozfwre .framer-uf8beo-container, .framer-yWCuO.framer-v-1ozfwre .framer-1pttqy5-container, .framer-yWCuO.framer-v-1ozfwre .framer-9s9sfb-container, .framer-yWCuO.framer-v-1ozfwre .framer-1ydt47i-container, .framer-yWCuO.framer-v-1ozfwre .framer-1d6kvzo-container, .framer-yWCuO.framer-v-1ozfwre .framer-1a9ure5-container, .framer-yWCuO.framer-v-1hlmr2h .framer-uf8beo-container, .framer-yWCuO.framer-v-1hlmr2h .framer-1pttqy5-container, .framer-yWCuO.framer-v-1hlmr2h .framer-9s9sfb-container, .framer-yWCuO.framer-v-1hlmr2h .framer-1ydt47i-container, .framer-yWCuO.framer-v-1hlmr2h .framer-1d6kvzo-container, .framer-yWCuO.framer-v-1hlmr2h .framer-1a9ure5-container, .framer-yWCuO.framer-v-1yckbyk .framer-uf8beo-container, .framer-yWCuO.framer-v-1yckbyk .framer-1pttqy5-container, .framer-yWCuO.framer-v-1yckbyk .framer-9s9sfb-container, .framer-yWCuO.framer-v-1yckbyk .framer-1ydt47i-container, .framer-yWCuO.framer-v-1yckbyk .framer-1d6kvzo-container, .framer-yWCuO.framer-v-1yckbyk .framer-1a9ure5-container, .framer-yWCuO.framer-v-plkgzi .framer-uf8beo-container, .framer-yWCuO.framer-v-plkgzi .framer-1pttqy5-container, .framer-yWCuO.framer-v-plkgzi .framer-9s9sfb-container, .framer-yWCuO.framer-v-plkgzi .framer-1ydt47i-container, .framer-yWCuO.framer-v-plkgzi .framer-1d6kvzo-container, .framer-yWCuO.framer-v-plkgzi .framer-1a9ure5-container { height: var(--framer-aspect-ratio-supported, 33px); }\",\".framer-yWCuO.framer-v-1ozfwre .framer-11qyjnl-container, .framer-yWCuO.framer-v-1ozfwre .framer-1086m0n-container, .framer-yWCuO.framer-v-1ozfwre .framer-o8vuz9-container, .framer-yWCuO.framer-v-1ozfwre .framer-1df3mgh-container, .framer-yWCuO.framer-v-1hlmr2h .framer-11qyjnl-container, .framer-yWCuO.framer-v-1hlmr2h .framer-1086m0n-container, .framer-yWCuO.framer-v-1hlmr2h .framer-o8vuz9-container, .framer-yWCuO.framer-v-1hlmr2h .framer-1df3mgh-container, .framer-yWCuO.framer-v-1yckbyk .framer-11qyjnl-container, .framer-yWCuO.framer-v-1yckbyk .framer-1086m0n-container, .framer-yWCuO.framer-v-1yckbyk .framer-o8vuz9-container, .framer-yWCuO.framer-v-1yckbyk .framer-1df3mgh-container, .framer-yWCuO.framer-v-plkgzi .framer-11qyjnl-container, .framer-yWCuO.framer-v-plkgzi .framer-1086m0n-container, .framer-yWCuO.framer-v-plkgzi .framer-o8vuz9-container, .framer-yWCuO.framer-v-plkgzi .framer-1df3mgh-container { height: var(--framer-aspect-ratio-supported, 200px); }\",\".framer-yWCuO.framer-v-1ozfwre .framer-7pxxxr-container, .framer-yWCuO.framer-v-1hlmr2h .framer-7pxxxr-container, .framer-yWCuO.framer-v-1yckbyk .framer-7pxxxr-container, .framer-yWCuO.framer-v-plkgzi .framer-7pxxxr-container { height: var(--framer-aspect-ratio-supported, 330px); }\",\".framer-yWCuO.framer-v-1yckbyk.framer-7f7t08, .framer-yWCuO.framer-v-plkgzi.framer-7f7t08 { grid-template-columns: repeat(1, minmax(200px, 1fr)); }\",...sharedStyle.css,...sharedStyle1.css,'.framer-yWCuO[data-border=\"true\"]::after, .framer-yWCuO [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1183.5\n * @framerIntrinsicWidth 1240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xlKo0vF5B\":{\"layout\":[\"fixed\",\"auto\"]},\"IKZzeJXPe\":{\"layout\":[\"fixed\",\"auto\"]},\"pnRDnsRZv\":{\"layout\":[\"fixed\",\"auto\"]},\"B9b4CJLR9\":{\"layout\":[\"fixed\",\"auto\"]},\"J33VWRZ5u\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTgAOZR4ft=withCSS(Component,css,\"framer-yWCuO\");export default FramerTgAOZR4ft;FramerTgAOZR4ft.displayName=\"Feature Card Grid - See More\";FramerTgAOZR4ft.defaultProps={height:1183.5,width:1240};addPropertyControls(FramerTgAOZR4ft,{variant:{options:[\"k8MdYCRv0\",\"xlKo0vF5B\",\"IKZzeJXPe\",\"pnRDnsRZv\",\"B9b4CJLR9\",\"J33VWRZ5u\"],optionTitles:[\"Closed\",\"Open\",\"Tablet Closed\",\"Tablet Open\",\"Mobile Closed\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTgAOZR4ft,[{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\"}]},...PhosphorFonts,...VideoFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTgAOZR4ft\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"1183.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xlKo0vF5B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IKZzeJXPe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pnRDnsRZv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"B9b4CJLR9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J33VWRZ5u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1240\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TgAOZR4ft.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility=progress(start,end,target);if(visibility>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>{var _child_props;return /*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,...childStyle}})});})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var _scrollInfo_current,_scrollInfo_current1;if(!((_scrollInfo_current=scrollInfo.current)===null||_scrollInfo_current===void 0?void 0:_scrollInfo_current.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((_scrollInfo_current1=scrollInfo.current)===null||_scrollInfo_current1===void 0?void 0:_scrollInfo_current1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;F37 Jan Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"F37 Jan Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/0S3un4jNeW75bC0pGOoW3hloYs.woff2\"}]}];export const css=['.framer-9kVgm .framer-styles-preset-ntfn9g:not(.rich-text-wrapper), .framer-9kVgm .framer-styles-preset-ntfn9g.rich-text-wrapper h6 { --framer-font-family: \"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-9kVgm .framer-styles-preset-ntfn9g:not(.rich-text-wrapper), .framer-9kVgm .framer-styles-preset-ntfn9g.rich-text-wrapper h6 { --framer-font-family: \"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-9kVgm .framer-styles-preset-ntfn9g:not(.rich-text-wrapper), .framer-9kVgm .framer-styles-preset-ntfn9g.rich-text-wrapper h6 { --framer-font-family: \"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.01em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, #09090b); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-9kVgm\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (55492a8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={kZJrWIxnV:{hover:true}};const serializationHash=\"framer-3tLnN\";const variantClassNames={kZJrWIxnV:\"framer-v-ox882j\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};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 getProps=({height,icon,id,link,title,width,...props})=>{var _ref,_ref1;return{...props,hoET_jC_i:link!==null&&link!==void 0?link:props.hoET_jC_i,M_VmQbagT:(_ref=title!==null&&title!==void 0?title:props.M_VmQbagT)!==null&&_ref!==void 0?_ref:\"Title\",XBKzeTe4d:(_ref1=icon!==null&&icon!==void 0?icon:props.XBKzeTe4d)!==null&&_ref1!==void 0?_ref1:\"Circle\"};};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,XBKzeTe4d,M_VmQbagT,hoET_jC_i,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"kZJrWIxnV\",enabledGestures,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(Link,{href:hoET_jC_i,nodeId:\"kZJrWIxnV\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-ox882j\",className,classNames)} framer-o6xlk8`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kZJrWIxnV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-3711503b-3d3b-4886-a85c-4293b65e43e7, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},variants:{\"kZJrWIxnV-hover\":{backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\"}},...addPropertyOverrides({\"kZJrWIxnV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-130xbdn\",layoutDependency:layoutDependency,layoutId:\"atAbjfsaw\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ydhlmp\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kMmwa5s5u\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},variants:{\"kZJrWIxnV-hover\":{\"--border-color\":\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(229, 229, 229))\",backgroundColor:\"var(--token-b0454cba-c19e-43a6-8075-f4b7a5ae4372, rgb(245, 245, 245))\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c84gou-container\",layoutDependency:layoutDependency,layoutId:\"R50mfzslw-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-48db76b1-b6f7-481c-9646-e2e74df040d6, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:XBKzeTe4d,id:\"R50mfzslw\",layoutId:\"R50mfzslw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gQm9sZA==\",\"--framer-font-family\":'\"F37 Jan Bold\", \"F37 Jan Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-48db76b1-b6f7-481c-9646-e2e74df040d6, rgb(0, 0, 0)))\"},children:\"Support\"})}),className:\"framer-1ltqnx4\",fonts:[\"CUSTOM;F37 Jan Bold\"],layoutDependency:layoutDependency,layoutId:\"tFiyk0tKhAFJtRwux2\",style:{\"--extracted-1w1cjl5\":\"var(--token-48db76b1-b6f7-481c-9646-e2e74df040d6, rgb(0, 0, 0))\"},text:M_VmQbagT,verticalAlignment:\"bottom\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3tLnN.framer-o6xlk8, .framer-3tLnN .framer-o6xlk8 { display: block; }\",\".framer-3tLnN.framer-ox882j { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 8px 0px 8px 0px; position: relative; text-decoration: none; width: 240px; }\",\".framer-3tLnN .framer-130xbdn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-3tLnN .framer-1ydhlmp { flex: none; height: 36px; overflow: visible; position: relative; width: 36px; }\",\".framer-3tLnN .framer-c84gou-container { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-3tLnN .framer-1ltqnx4 { flex: 1 0 0px; height: 23px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3tLnN.framer-ox882j, .framer-3tLnN .framer-130xbdn { gap: 0px; } .framer-3tLnN.framer-ox882j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-3tLnN.framer-ox882j > :first-child { margin-top: 0px; } .framer-3tLnN.framer-ox882j > :last-child { margin-bottom: 0px; } .framer-3tLnN .framer-130xbdn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-3tLnN .framer-130xbdn > :first-child { margin-left: 0px; } .framer-3tLnN .framer-130xbdn > :last-child { margin-right: 0px; } }\",'.framer-3tLnN[data-border=\"true\"]::after, .framer-3tLnN [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RHnFsEJWl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XBKzeTe4d\":\"icon\",\"M_VmQbagT\":\"title\",\"hoET_jC_i\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkgbjPZzFI=withCSS(Component,css,\"framer-3tLnN\");export default FramerkgbjPZzFI;FramerkgbjPZzFI.displayName=\"Mega Nav Resources Icons\";FramerkgbjPZzFI.defaultProps={height:52,width:240};addPropertyControls(FramerkgbjPZzFI,{XBKzeTe4d:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Circle\",description:undefined,hidden:undefined,title:\"Icon\"},M_VmQbagT:{defaultValue:\"Title\",displayTextArea:true,title:\"Title\",type:ControlType.String},hoET_jC_i:{title:\"Link\",type:ControlType.Link}});addFonts(FramerkgbjPZzFI,[{explicitInter:true,fonts:[{family:\"F37 Jan Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/cKWDnvIhXDw2loxYjM54rmUnx5c.woff2\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkgbjPZzFI\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"52\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RHnFsEJWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"XBKzeTe4d\\\":\\\"icon\\\",\\\"M_VmQbagT\\\":\\\"title\\\",\\\"hoET_jC_i\\\":\\\"link\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kgbjPZzFI.map", "// Generated by Framer (99bc0fd)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"cJeLjaTUE\",\"dnXokQAcf\"];const serializationHash=\"framer-6RdYI\";const variantClassNames={cJeLjaTUE:\"framer-v-1bpkqph\",dnXokQAcf:\"framer-v-173isqs\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={\"Variant 1\":\"cJeLjaTUE\",\"Variant 2\":\"dnXokQAcf\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,Jg17TNDCY:click!==null&&click!==void 0?click:props.Jg17TNDCY,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"cJeLjaTUE\"};};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,Jg17TNDCY,Zyt70NhfG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cJeLjaTUE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1jikilu=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Jg17TNDCY){const res=await Jg17TNDCY(...args);if(res===false)return false;}setVariant(\"dnXokQAcf\");});const onTap1f4oasp=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(Zyt70NhfG){const res=await Zyt70NhfG(...args);if(res===false)return false;}if(Jg17TNDCY){const res=await Jg17TNDCY(...args);if(res===false)return false;}setVariant(\"cJeLjaTUE\");});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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1bpkqph\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cJeLjaTUE\",onTap:onTap1jikilu,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(254, 255, 254, 0)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},...addPropertyOverrides({dnXokQAcf:{\"data-framer-name\":\"Variant 2\",onTap:onTap1f4oasp}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18c1afe\",\"data-framer-name\":\"Transition\",layoutDependency:layoutDependency,layoutId:\"t_IcTG9q7\",style:{backgroundColor:\"var(--token-3864de58-9c2a-419c-b7af-a93f76ca6f06, rgb(11, 12, 14))\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,opacity:0},transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-evabsl\",layoutDependency:layoutDependency,layoutId:\"vsf1VxCfu\",style:{backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,rotate:0},variants:{dnXokQAcf:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j7phvc\",layoutDependency:layoutDependency,layoutId:\"vUoIRAF4o\",style:{backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,rotate:0},variants:{dnXokQAcf:{rotate:45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6RdYI.framer-1bwbpx, .framer-6RdYI .framer-1bwbpx { display: block; }\",\".framer-6RdYI.framer-1bpkqph { cursor: pointer; height: 42px; overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6RdYI .framer-18c1afe { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 1px; }\",\".framer-6RdYI .framer-evabsl { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: hidden; position: absolute; top: 16px; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6RdYI .framer-j7phvc { bottom: 17px; flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: hidden; position: absolute; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-6RdYI.framer-v-173isqs.framer-1bpkqph { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 42px); }\",\".framer-6RdYI.framer-v-173isqs .framer-evabsl { top: calc(50.00000000000002% - 2px / 2); }\",\".framer-6RdYI.framer-v-173isqs .framer-j7phvc { bottom: unset; top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 42\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dnXokQAcf\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Jg17TNDCY\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzvEyb2MvP=withCSS(Component,css,\"framer-6RdYI\");export default FramerzvEyb2MvP;FramerzvEyb2MvP.displayName=\"Menu Hamburger\";FramerzvEyb2MvP.defaultProps={height:42,width:42};addPropertyControls(FramerzvEyb2MvP,{variant:{options:[\"cJeLjaTUE\",\"dnXokQAcf\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},Jg17TNDCY:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerzvEyb2MvP,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzvEyb2MvP\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"42\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"42\",\"framerVariables\":\"{\\\"Jg17TNDCY\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dnXokQAcf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zvEyb2MvP.map", "// Generated by Framer (b0998f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xCdpLzoDs0hykPmIkE1f/0c0Lr2AZx7nSWZ8lPx5z/dtOoAAwB_.js\";import MegaNavResourcesIcons from\"https://framerusercontent.com/modules/aaCPcIqse4BWDKedafdE/m70yJjfpy4fpF33PPCMD/kgbjPZzFI.js\";import MenuHamburger from\"https://framerusercontent.com/modules/nmnGgx0rSeZA5y6ataGs/Ay12C4vnVTGsN8eSQbHT/zvEyb2MvP.js\";const ImageWithFX=withFX(Image);const MenuHamburgerFonts=getFonts(MenuHamburger);const MegaNavResourcesIconsFonts=getFonts(MegaNavResourcesIcons);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"t5NEvvUhO\",\"r3fd6Zq8v\"];const serializationHash=\"framer-zxpKg\";const variantClassNames={r3fd6Zq8v:\"framer-v-87onkt\",t5NEvvUhO:\"framer-v-1985v7s\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const transition3={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-20};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={\"Variant 1\":\"t5NEvvUhO\",\"Variant 2\":\"r3fd6Zq8v\"};const getProps=({click3,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,cqo7OFqis:click3!==null&&click3!==void 0?click3:props.cqo7OFqis,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"t5NEvvUhO\"};};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,cqo7OFqis,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"t5NEvvUhO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const Jg17TNDCY11xcq9r=activeVariantCallback(async(...args)=>{if(cqo7OFqis){const res=await cqo7OFqis(...args);if(res===false)return false;}setVariant(\"r3fd6Zq8v\");});const Jg17TNDCYf0uqob=activeVariantCallback(async(...args)=>{if(cqo7OFqis){const res=await cqo7OFqis(...args);if(res===false)return false;}setVariant(\"t5NEvvUhO\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"r3fd6Zq8v\")return true;return false;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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-1985v7s\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"t5NEvvUhO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({r3fd6Zq8v:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1pgwemg\",layoutDependency:layoutDependency,layoutId:\"t5NEvvUhOQedbDwGk7\",style:{borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ycl6l\",\"data-framer-name\":\"Main Area\",layoutDependency:layoutDependency,layoutId:\"t5NEvvUhOtLxUrbDd1\",style:{borderBottomLeftRadius:35,borderBottomRightRadius:35,borderTopLeftRadius:35,borderTopRightRadius:35},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o61lc0\",\"data-border\":true,\"data-framer-name\":\"Frame 3\",layoutDependency:layoutDependency,layoutId:\"t5NEvvUhOnefQW27KR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(247, 247, 247, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(32px)\",backgroundColor:\"rgba(185, 185, 185, 0.2)\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 37px 15px -33px rgba(0, 0, 0, 0.15)\",WebkitBackdropFilter:\"blur(32px)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f371i0\",\"data-framer-name\":\"Frame 4\",layoutDependency:layoutDependency,layoutId:\"V5_hzqq9U\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w6esdh\",\"data-framer-name\":\"Gloo Logo\",layoutDependency:layoutDependency,layoutId:\"FokHKgoe6\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:125.5,intrinsicWidth:611.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||105)-0-105)/2+0+0)+0+0+18+13.5+5+2),pixelHeight:251,pixelWidth:1223,sizes:\"137.0526px\",src:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png 1223w\"},className:\"framer-1qs4968\",\"data-framer-name\":\"Messaging Logo\",layoutDependency:layoutDependency,layoutId:\"q4tqS0Frp\",...addPropertyOverrides({r3fd6Zq8v:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:125.5,intrinsicWidth:611.5,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||666)-0-666)/2+0+0)+0+0+18+13.5+5+2),pixelHeight:251,pixelWidth:1223,sizes:\"137.0526px\",src:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png 1223w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"42px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||105)-0-105)/2+0+0)+0+0+18+13.5+0,...addPropertyOverrides({r3fd6Zq8v:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||666)-0-666)/2+0+0)+0+0+18+13.5+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ov4g7-container\",layoutDependency:layoutDependency,layoutId:\"ub44_cTHO-container\",children:/*#__PURE__*/_jsx(MenuHamburger,{height:\"100%\",id:\"ub44_cTHO\",Jg17TNDCY:Jg17TNDCY11xcq9r,layoutId:\"ub44_cTHO\",style:{height:\"100%\",width:\"100%\"},variant:\"cJeLjaTUE\",width:\"100%\",...addPropertyOverrides({r3fd6Zq8v:{Jg17TNDCY:Jg17TNDCYf0uqob,variant:\"dnXokQAcf\"}},baseVariant,gestureVariant)})})})]})})}),isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1n0qncs\",\"data-framer-appear-id\":\"1n0qncs\",\"data-framer-name\":\"Products\",initial:animation2,layoutDependency:layoutDependency,layoutId:\"nhTcuthjS\",optimized:true,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,boxShadow:\"0px 0.7409732186279143px 3.704866093139571px 0px rgba(0, 0, 0, 0.00711), 0px 2.0178668455264415px 10.089334227632207px 0px rgba(0, 0, 0, 0.01937), 0px 4.430505261661892px 22.152526308309465px 0px rgba(0, 0, 0, 0.04253), 0px 9.834710084098335px 49.17355042049167px 0px rgba(0, 0, 0, 0.09441), 0px 25px 125px 0px rgba(0, 0, 0, 0.24)\"},children:[/*#__PURE__*/_jsx(Link,{href:\"https://app.gloo.us/auth\",nodeId:\"NSyPk0zpn\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-g6qf8u framer-k71ity\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"NSyPk0zpn\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",borderBottomLeftRadius:99,borderBottomRightRadius:99,borderTopLeftRadius:99,borderTopRightRadius:99},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gQm9sZA==\",\"--framer-font-family\":'\"F37 Jan Bold\", \"F37 Jan Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250)))\"},children:\"Start Free\"})}),className:\"framer-xcted5\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;F37 Jan Bold\"],layoutDependency:layoutDependency,layoutId:\"So5t66c2l\",style:{\"--extracted-r6o4lv\":\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vcbnqc\",layoutDependency:layoutDependency,layoutId:\"dGkHCqteH\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dq63fx\",layoutDependency:layoutDependency,layoutId:\"bxF3xalf2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pur76\",layoutDependency:layoutDependency,layoutId:\"TQ6aEIMPp\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qji7f9\",layoutDependency:layoutDependency,layoutId:\"m9u5PxKOB\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-shm7gt\",layoutDependency:layoutDependency,layoutId:\"QsoYRRBbA\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ntfn9g\",\"data-styles-preset\":\"dtOoAAwB_\",children:\"Resources\"})}),className:\"framer-1k66ozw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"djc6p4WVA\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k5jmrb\",\"data-framer-name\":\"Line 1\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:3,intrinsicWidth:741,layoutDependency:layoutDependency,layoutId:\"mmaHzTX8b\",svg:'<svg width=\"741\" height=\"3\" viewBox=\"-1 -1 741 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"738.017\" y2=\"0.5\" stroke=\"#D4D4D4\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xfbbg8\",layoutDependency:layoutDependency,layoutId:\"HPDB_CKIp\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Q9hNIqkxh\",webPageId:\"Dgbv3dKly\"},implicitPathVariables:undefined},{href:{hash:\":Q9hNIqkxh\",webPageId:\"Dgbv3dKly\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,...addPropertyOverrides({r3fd6Zq8v:{width:`max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1200px) - 24px, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||666)-0-666)/2+0+0)+0+105+12+81+0+0+0+0+0+0+0+61+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sgqcb-container\",layoutDependency:layoutDependency,layoutId:\"hnYnjjRY_-container\",children:/*#__PURE__*/_jsx(MegaNavResourcesIcons,{height:\"100%\",hoET_jC_i:resolvedLinks[0],id:\"hnYnjjRY_\",layoutId:\"hnYnjjRY_\",M_VmQbagT:\"Features\",style:{width:\"100%\"},width:\"100%\",XBKzeTe4d:\"SquaresFour\",...addPropertyOverrides({r3fd6Zq8v:{hoET_jC_i:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":BqZDJCH06\",webPageId:\"Dgbv3dKly\"},implicitPathVariables:undefined},{href:{hash:\":BqZDJCH06\",webPageId:\"Dgbv3dKly\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,...addPropertyOverrides({r3fd6Zq8v:{width:`max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1200px) - 24px, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||666)-0-666)/2+0+0)+0+105+12+81+0+0+0+0+0+0+0+61+0+64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13z56l7-container\",layoutDependency:layoutDependency,layoutId:\"D5PZSi1we-container\",children:/*#__PURE__*/_jsx(MegaNavResourcesIcons,{height:\"100%\",hoET_jC_i:resolvedLinks1[0],id:\"D5PZSi1we\",layoutId:\"D5PZSi1we\",M_VmQbagT:\"Integrations\",style:{width:\"100%\"},width:\"100%\",XBKzeTe4d:\"ArrowsLeftRight\",...addPropertyOverrides({r3fd6Zq8v:{hoET_jC_i:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":g0ADwrkNh\",webPageId:\"Dgbv3dKly\"},implicitPathVariables:undefined},{href:{hash:\":g0ADwrkNh\",webPageId:\"Dgbv3dKly\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,...addPropertyOverrides({r3fd6Zq8v:{width:`max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 30px, 1200px) - 24px, 50px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||666)-0-666)/2+0+0)+0+105+12+81+0+0+0+0+0+0+0+61+0+128}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vbcmn-container\",layoutDependency:layoutDependency,layoutId:\"PJbvLkaWl-container\",children:/*#__PURE__*/_jsx(MegaNavResourcesIcons,{height:\"100%\",hoET_jC_i:resolvedLinks2[0],id:\"PJbvLkaWl\",layoutId:\"PJbvLkaWl\",M_VmQbagT:\"Testimonials\",style:{width:\"100%\"},width:\"100%\",XBKzeTe4d:\"Star\",...addPropertyOverrides({r3fd6Zq8v:{hoET_jC_i:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})})]})]})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zxpKg.framer-k71ity, .framer-zxpKg .framer-k71ity { display: block; }\",\".framer-zxpKg.framer-1985v7s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 736px; }\",\".framer-zxpKg .framer-1pgwemg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-15ycl6l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 18px 0px 18px 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-zxpKg .framer-o61lc0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 69px; justify-content: space-between; overflow: visible; padding: 24px 36px 24px 24px; position: relative; width: 1px; }\",\".framer-zxpKg .framer-f371i0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zxpKg .framer-1w6esdh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zxpKg .framer-1qs4968 { aspect-ratio: 4.894736842105263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 137px; }\",\".framer-zxpKg .framer-3ov4g7-container { flex: none; height: 42px; position: relative; width: 42px; }\",\".framer-zxpKg .framer-1n0qncs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 561px; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxpKg .framer-g6qf8u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 57px; justify-content: center; overflow: visible; padding: 24px 48px 24px 48px; position: relative; text-decoration: none; width: 100%; z-index: 1; }\",\".framer-zxpKg .framer-xcted5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zxpKg .framer-vcbnqc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 75%; justify-content: flex-start; min-height: 500px; overflow: auto; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-1dq63fx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-pur76, .framer-zxpKg .framer-qji7f9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-shm7gt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-1k66ozw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zxpKg .framer-k5jmrb { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-1xfbbg8 { display: grid; flex: none; gap: 12px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxpKg .framer-sgqcb-container, .framer-zxpKg .framer-13z56l7-container, .framer-zxpKg .framer-15vbcmn-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zxpKg.framer-1985v7s, .framer-zxpKg .framer-15ycl6l, .framer-zxpKg .framer-1w6esdh, .framer-zxpKg .framer-1n0qncs, .framer-zxpKg .framer-g6qf8u, .framer-zxpKg .framer-vcbnqc, .framer-zxpKg .framer-1dq63fx, .framer-zxpKg .framer-pur76, .framer-zxpKg .framer-qji7f9, .framer-zxpKg .framer-shm7gt { gap: 0px; } .framer-zxpKg.framer-1985v7s > *, .framer-zxpKg .framer-shm7gt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zxpKg.framer-1985v7s > :first-child, .framer-zxpKg .framer-1n0qncs > :first-child, .framer-zxpKg .framer-vcbnqc > :first-child, .framer-zxpKg .framer-1dq63fx > :first-child, .framer-zxpKg .framer-pur76 > :first-child, .framer-zxpKg .framer-qji7f9 > :first-child, .framer-zxpKg .framer-shm7gt > :first-child { margin-top: 0px; } .framer-zxpKg.framer-1985v7s > :last-child, .framer-zxpKg .framer-1n0qncs > :last-child, .framer-zxpKg .framer-vcbnqc > :last-child, .framer-zxpKg .framer-1dq63fx > :last-child, .framer-zxpKg .framer-pur76 > :last-child, .framer-zxpKg .framer-qji7f9 > :last-child, .framer-zxpKg .framer-shm7gt > :last-child { margin-bottom: 0px; } .framer-zxpKg .framer-15ycl6l > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zxpKg .framer-15ycl6l > :first-child, .framer-zxpKg .framer-1w6esdh > :first-child, .framer-zxpKg .framer-g6qf8u > :first-child { margin-left: 0px; } .framer-zxpKg .framer-15ycl6l > :last-child, .framer-zxpKg .framer-1w6esdh > :last-child, .framer-zxpKg .framer-g6qf8u > :last-child { margin-right: 0px; } .framer-zxpKg .framer-1w6esdh > * { margin: 0px; margin-left: calc(8.258064270019531px / 2); margin-right: calc(8.258064270019531px / 2); } .framer-zxpKg .framer-1n0qncs > *, .framer-zxpKg .framer-1dq63fx > *, .framer-zxpKg .framer-pur76 > *, .framer-zxpKg .framer-qji7f9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zxpKg .framer-g6qf8u > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zxpKg .framer-vcbnqc > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",...sharedStyle.css,'.framer-zxpKg[data-border=\"true\"]::after, .framer-zxpKg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 105\n * @framerIntrinsicWidth 736\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"r3fd6Zq8v\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"cqo7OFqis\":\"click3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framergjx_tYCDR=withCSS(Component,css,\"framer-zxpKg\");export default Framergjx_tYCDR;Framergjx_tYCDR.displayName=\"messaging nav\";Framergjx_tYCDR.defaultProps={height:105,width:736};addPropertyControls(Framergjx_tYCDR,{variant:{options:[\"t5NEvvUhO\",\"r3fd6Zq8v\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},cqo7OFqis:{title:\"Click 3\",type:ControlType.EventHandler}});addFonts(Framergjx_tYCDR,[{explicitInter:true,fonts:[{family:\"F37 Jan Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/cKWDnvIhXDw2loxYjM54rmUnx5c.woff2\"},{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\"}]},...MenuHamburgerFonts,...MegaNavResourcesIconsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framergjx_tYCDR\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"r3fd6Zq8v\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"105\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"cqo7OFqis\\\":\\\"click3\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"736\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gjx_tYCDR.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import FeatureCardGridSeeMore from\"https://framerusercontent.com/modules/sSXzf4NfG2W2NYYdU9o5/sKhlTTJibIGFBCC6mYZq/TgAOZR4ft.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/7r5UGUpFh6FWtcVOCSDp/Carousel.js\";import MessagingNav from\"https://framerusercontent.com/modules/xAOwRaNgGnJmLYvcJ7wI/1UuVJcRUJd0aWvZlut40/gjx_tYCDR.js\";import Button from\"https://framerusercontent.com/modules/ybeF3ezO6eAP096Jhv5h/C0VCXoUI0cP1oMbGb6Wb/LNCJ8JrMb.js\";import metadataProvider from\"#framer/local/webPageMetadata/Fa6cofW5Z/Fa6cofW5Z.js\";const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const FeatureCardGridSeeMoreFonts=getFonts(FeatureCardGridSeeMore);const TickerFonts=getFonts(Ticker);const CarouselFonts=getFonts(Carousel);const MessagingNavFonts=getFonts(MessagingNav);const MotionDivWithFX=withFX(motion.div);const breakpoints={aPQUGiCBk:\"(min-width: 1200px) and (max-width: 1399px)\",FJXmxVWly:\"(max-width: 809px)\",OtNTt8vWw:\"(min-width: 810px) and (max-width: 1199px)\",W7bqIBcla:\"(min-width: 1400px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-guqeA\";const variantClassNames={aPQUGiCBk:\"framer-v-sag0pl\",FJXmxVWly:\"framer-v-1ei2v68\",OtNTt8vWw:\"framer-v-1w8hhcf\",W7bqIBcla:\"framer-v-1dhe7jc\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={delay:.075,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const textEffect={effect:animation1,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const transition3={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={damping:50,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:10};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition5={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"\u2B50\\xa0Desktop\":\"aPQUGiCBk\",\"XL Desktop\":\"W7bqIBcla\",Phone:\"FJXmxVWly\",Tablet:\"OtNTt8vWw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"aPQUGiCBk\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"KDen5wODa\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"cM9Kh3l4w\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"dd0qFPY18\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"FJXmxVWly\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"FJXmxVWly\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"aPQUGiCBk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-bba9acad-4587-42d5-9c0b-6c83dec88e99, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-sag0pl\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"header\",{className:\"framer-ksiour\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ouosy1\",\"data-framer-name\":\"Content Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:125.5,intrinsicWidth:611.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+75.3+0+0),pixelHeight:251,pixelWidth:1223,sizes:\"186px\",src:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png 1223w\"}},OtNTt8vWw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:125.5,intrinsicWidth:611.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+139.8+0+0),pixelHeight:251,pixelWidth:1223,sizes:\"186px\",src:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png 1223w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:125.5,intrinsicWidth:611.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+84+153.7+0+0),pixelHeight:251,pixelWidth:1223,sizes:\"186px\",src:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png 1223w\"},className:\"framer-5lycg6\",\"data-framer-name\":\"Messaging Logo\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8018f068-2382-40d9-8b4b-af3244742b70, rgb(40, 113, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Free messaging for \"}),/*#__PURE__*/_jsx(\"strong\",{children:\"churches & ministries\"})]})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8018f068-2382-40d9-8b4b-af3244742b70, rgb(40, 113, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Free messaging for \"}),/*#__PURE__*/_jsx(\"strong\",{children:\"churches & ministries\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8018f068-2382-40d9-8b4b-af3244742b70, rgb(40, 113, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Free messaging for \"}),/*#__PURE__*/_jsx(\"strong\",{children:\"churches & ministries\"})]})}),className:\"framer-xzmgw3\",\"data-framer-name\":\"Header Text\",effect:textEffect,fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"The only texting platform that gives you\\u2028\\u202810,000 free message credits every month.\"})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"The only texting platform that gives you\\u2028\\u202810,000 free message credits every month.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"The only texting platform that gives you\\u2028\\u202810,000 free message credits every month.\"})}),className:\"framer-1dtuar6\",\"data-framer-name\":\"Sub Text\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{y:(componentViewport?.y||0)+0+0+84+75.3+0+166.4},OtNTt8vWw:{y:(componentViewport?.y||0)+0+0+84+139.8+0+177.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+0+84+153.7+0+191.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pqvr0o-container\",\"data-framer-name\":\"Primary Button\",isModuleExternal:true,name:\"Primary Button\",nodeId:\"Alj7ZF6CZ\",scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:true,G77f5Yx_v:\"Start Free\",height:\"100%\",HFfTjmBlq:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",id:\"Alj7ZF6CZ\",layoutId:\"Alj7ZF6CZ\",n9WP3fBIv:false,name:\"Primary Button\",oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",style:{height:\"100%\"},SZQpZ3lk2:16,U1Kbkgydv:\"https://app.gloo.us/auth?_gl=1*bvsk5o*_gcl_au*MTQyODc0NDA5MS4xNzI3NzMxMDQxLjQ5NzQwNDMyNS4xNzMxMzc5MTA0LjE3MzEzNzk3OTQ.\",variant:\"rt1NrdlKK\",VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-tx3k4f\",\"data-framer-name\":\"Product Image Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:1105,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+460+40+0),pixelHeight:1680,pixelWidth:2210,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1240px)`,src:\"https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=512 512w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png 2210w\"}},OtNTt8vWw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:1105,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+600+40+0),pixelHeight:1680,pixelWidth:2210,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1240px)`,src:\"https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=512 512w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png 2210w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:840,intrinsicWidth:1105,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+642+40+0),pixelHeight:1680,pixelWidth:2210,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1240px)`,src:\"https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=512 512w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PNypDgx5jPRHLkjcTCYskbgA.png 2210w\"},className:\"framer-1q9o1l\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-22mlwb\",\"data-framer-name\":\"Benefits Section 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzuzh8\",\"data-framer-name\":\"Benefits Stack\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a9ppqo\",\"data-framer-name\":\"Text Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-on4lbw\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Features\"})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Features\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Features\"})}),className:\"framer-1ush3eu\",\"data-framer-name\":\"Display Text\",fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1csncyj\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Built for engagement, powered for ministry\"})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Built for engagement, powered for ministry\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Built for engagement, powered for ministry\"})}),className:\"framer-vvl3tz\",\"data-framer-name\":\"Header Text\",effect:textEffect,fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{y:(componentViewport?.y||0)+0+1405.5+0+0+80+135.2},OtNTt8vWw:{y:(componentViewport?.y||0)+0+1545.5+0+0+80+146.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1183,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1240px)`,y:(componentViewport?.y||0)+0+1587.5+0+0+80+157.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-20pf9t-container\",isModuleExternal:true,nodeId:\"A7dVUu9_d\",scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{variant:\"B9b4CJLR9\"},OtNTt8vWw:{variant:\"IKZzeJXPe\"}},children:/*#__PURE__*/_jsx(FeatureCardGridSeeMore,{height:\"100%\",id:\"A7dVUu9_d\",layoutId:\"A7dVUu9_d\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"k8MdYCRv0\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9c8id\",\"data-framer-name\":\"Benefits Stack\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p68fde\",\"data-framer-name\":\"Text Stack\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1450svx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Integrations\"})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"},children:\"Integrations\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Integrations\"})}),className:\"framer-1h2zy4d\",\"data-framer-name\":\"Display Text\",fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tlss5l\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Streamlined communication starts with dynamic integrations\"})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Streamlined communication starts with dynamic integrations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Streamlined communication starts with dynamic integrations\"})}),className:\"framer-1uv8tjw\",\"data-framer-name\":\"Header Text\",effect:textEffect,fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s5qnax\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sr3yhf-container\",isModuleExternal:true,nodeId:\"wVaGke_XM\",scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"wVaGke_XM\",layoutId:\"wVaGke_XM\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dwa5qq\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:183,pixelHeight:80,pixelWidth:366,src:\"https://framerusercontent.com/images/estEkz88PgPtuegkE1uFBfEBs.png\"},className:\"framer-gfutwd\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:40,pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/jjVyKwF3mKFEZFNIP1Q15jutTMg.png\"},className:\"framer-15xiw9g\",\"data-framer-name\":\"IdVKOoCnkx logos\"})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bpkwdb\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 267 40\"><path d=\"M 57.623 23.286 C 56.397 23.286 55.307 22.857 54.626 22.571 C 54.081 22.286 53.672 21.571 53.672 20.857 L 53.672 15.143 C 53.672 14.714 53.809 14.429 53.945 14.143 C 54.217 13.571 55.58 12 57.759 12 C 60.484 12 62.391 14.286 62.391 17.714 C 62.391 21 60.484 23.286 57.623 23.286 Z M 58.304 8.429 C 55.716 8.429 54.081 9.571 52.991 10.571 L 52.855 10.714 L 52.583 9.286 C 52.446 9 52.31 8.857 51.902 8.857 L 50.267 8.857 C 49.858 8.857 49.586 9.143 49.586 9.571 L 49.586 33.857 C 49.586 34.286 49.994 34.714 50.403 34.714 L 52.719 34.714 C 53.264 34.714 53.672 34.429 53.672 33.857 L 53.809 25.857 C 55.171 26.571 56.533 27 58.032 27 C 62.663 27 66.205 23 66.205 17.714 C 66.341 12.429 62.799 8.429 58.304 8.429 Z M 164.968 21.857 C 164.968 22.571 164.559 23.143 164.014 23.571 C 163.333 23.857 162.38 24.286 161.017 24.286 C 158.157 24.286 156.249 22 156.249 18.714 C 156.249 15.286 158.157 13 160.881 13 C 163.197 13 164.423 14.571 164.695 15.143 C 164.832 15.429 164.968 15.857 164.968 16.143 Z M 168.101 9.714 L 166.466 9.714 C 166.194 9.714 165.921 9.857 165.785 10.143 L 165.513 11.429 C 164.695 10.571 163.061 9.286 160.2 9.286 C 155.705 9.286 152.299 13.286 152.299 18.571 C 152.299 23.857 155.841 27.857 160.472 27.857 C 161.835 27.857 163.333 27.429 164.832 26.714 L 164.832 27 C 164.968 28.143 164.559 29.143 163.742 30.143 C 162.788 31.286 161.29 31.857 159.246 31.857 C 157.612 31.857 156.113 31.143 155.432 30.571 C 155.296 30.571 155.16 30.429 155.16 30.429 C 154.887 30.429 154.751 30.571 154.615 30.714 L 153.797 32.429 C 153.661 32.714 153.661 33 153.934 33.286 C 154.479 33.571 157.067 35.429 160.2 35.429 L 160.472 35.429 C 165.513 35.286 168.918 32.143 168.918 27.571 L 168.918 10.429 C 168.782 10 168.51 9.714 168.101 9.714 Z M 149.438 26.143 C 149.847 26.143 150.256 25.714 150.256 25.286 L 150.256 17.143 C 150.256 10.429 146.033 9.286 143.581 9.286 C 140.584 9.286 138.677 10.857 137.995 11.286 L 137.587 10.143 C 137.451 9.857 137.178 9.571 136.906 9.571 L 135.816 9.571 C 135.271 9.714 134.862 10 134.862 10.571 L 134.862 25.286 C 134.862 25.714 135.271 26.143 135.68 26.143 L 137.723 26.143 C 138.404 26.143 138.677 25.857 138.677 25.286 L 138.677 15.286 C 138.949 14.571 140.72 12.857 143.036 12.857 C 145.079 12.857 146.305 14.286 146.305 16.857 L 146.305 25.143 C 146.305 25.571 146.714 26 147.122 26 Z M 130.776 26.143 C 131.184 26.143 131.593 25.714 131.593 25.286 L 131.593 10.571 C 131.593 10.143 131.184 9.714 130.776 9.714 L 128.46 9.714 C 128.051 9.714 127.642 10.143 127.642 10.571 L 127.642 25.286 C 127.642 25.714 128.051 26.143 128.46 26.143 Z M 132.002 4.571 C 132.002 3.143 130.912 2.143 129.549 2.143 C 128.187 2.143 127.234 3.286 127.234 4.571 C 127.234 6 128.323 7 129.549 7 C 130.912 7 132.002 5.857 132.002 4.571 Z M 123.828 26.143 C 124.237 26.143 124.645 25.714 124.645 25.286 L 124.645 17.143 C 124.645 12.143 122.193 9.286 117.97 9.286 C 114.973 9.286 113.066 10.857 112.385 11.286 L 111.977 10.143 C 111.84 9.857 111.568 9.571 111.295 9.571 L 110.206 9.571 C 109.797 9.571 109.388 10 109.388 10.429 L 109.388 25.143 C 109.388 25.571 109.797 26 110.206 26 L 112.249 26 C 112.93 26 113.203 25.714 113.203 25.143 L 113.203 15.143 C 113.475 14.429 115.246 12.714 117.562 12.714 C 119.605 12.714 120.831 14.143 120.831 16.714 L 120.831 25 C 120.831 25.429 121.24 25.857 121.648 25.857 L 123.828 25.857 Z M 105.438 26.143 C 105.846 26.143 106.255 25.714 106.255 25.286 L 106.255 17.143 C 106.255 12.143 103.803 9.286 99.58 9.286 C 96.719 9.286 94.812 10.714 93.995 11.286 L 93.586 10.143 C 93.45 9.857 93.178 9.571 92.905 9.571 L 91.815 9.571 C 91.407 9.571 90.998 10 90.998 10.429 L 90.998 25.143 C 90.998 25.571 91.407 26 91.815 26 L 93.859 26 C 94.54 26 94.812 25.714 94.812 25.143 L 94.812 15.143 C 95.085 14.429 96.856 12.714 99.171 12.714 C 101.215 12.714 102.441 14.143 102.441 16.714 L 102.441 25 C 102.441 25.429 102.849 25.857 103.258 25.857 L 105.438 25.857 Z M 84.868 21.571 C 84.323 22.429 82.961 23.571 81.326 23.571 C 79.964 23.571 79.01 22.571 79.01 21 C 79.01 19.429 80.236 18.429 82.143 18.429 C 83.369 18.429 84.459 18.857 84.868 19.143 Z M 82.824 9.286 C 79.691 9.286 77.376 10.286 77.239 10.286 C 76.831 10.429 76.558 10.857 76.694 11.286 L 76.967 12.857 C 77.103 13.286 77.376 13.571 77.784 13.571 L 78.057 13.571 C 79.691 13.143 81.19 12.857 82.552 12.857 C 83.369 12.857 83.914 13 84.323 13.429 C 84.732 13.857 85.004 14.714 84.868 16.286 C 84.323 16 83.097 15.714 81.735 15.714 C 77.92 15.714 75.332 17.857 75.332 21 C 75.332 24.286 77.376 26.571 80.509 26.571 C 82.28 26.571 83.914 26 85.413 24.714 L 85.685 25.571 C 85.821 26 85.958 26.143 86.366 26.143 L 87.456 26.143 C 87.865 26.143 88.273 25.714 88.273 25.286 L 88.273 16.571 C 88.41 12.571 88.001 9.286 82.824 9.286 Z M 73.289 26.143 C 73.561 26.143 73.834 25.857 73.834 25.571 L 73.834 22.571 C 73.834 22.286 73.561 22 73.289 22 L 73.016 22 C 72.608 22 72.199 21.571 72.199 21.143 L 72.199 4.857 C 72.199 4.429 71.79 4 71.382 4 L 69.066 4 C 68.657 4 68.248 4.429 68.248 4.857 L 68.248 23.429 C 68.248 24.857 69.474 26 70.837 26 L 73.289 26 Z M 257.737 26.143 C 258.282 26.143 258.827 26.143 258.827 25.286 L 258.827 15 C 258.963 14.714 260.053 13.143 262.368 13.143 C 262.913 13.143 263.458 13.286 263.731 13.429 C 263.867 13.429 264.003 13.571 264.139 13.571 C 264.412 13.571 264.684 13.429 264.82 13.143 L 265.774 11.143 C 265.91 10.857 265.91 10.571 265.774 10.429 C 265.365 9.857 264.003 9.571 262.913 9.571 C 260.325 9.571 258.963 11 258.282 11.714 L 258.009 10.714 C 257.873 10.429 257.601 10.143 257.328 10.143 L 256.102 10.143 C 255.693 10.143 255.285 10.571 255.285 11 L 255.285 25.714 C 255.285 26.143 255.693 26.571 256.102 26.571 L 257.737 26.571 Z M 241.798 15.857 C 242.071 13.857 243.706 12.571 245.749 12.571 C 247.52 12.571 249.155 14 249.291 16 Z M 245.749 9.286 C 241.117 9.286 237.712 13 237.712 17.857 C 237.712 22.714 241.254 26.429 245.749 26.429 C 248.065 26.429 250.244 25.714 251.743 24.429 C 252.015 24.286 252.015 24 252.152 23.857 C 252.152 23.571 252.015 23.429 251.879 23.286 L 250.789 21.714 C 250.653 21.571 250.517 21.429 250.381 21.429 C 250.108 21.429 249.972 21.571 249.699 21.714 C 249.018 22.143 247.656 22.857 246.158 22.857 C 243.569 22.857 241.935 20.714 241.798 18.714 L 252.424 18.714 C 252.833 18.714 253.105 18.429 253.241 18 C 253.241 17.714 253.378 17.143 253.378 16.857 C 253.105 12.571 249.972 9.286 245.749 9.286 Z M 236.758 25.286 C 237.167 25 237.303 24.714 237.167 24.286 L 236.486 22.429 C 236.349 22.286 236.349 22 236.077 22 L 235.941 22 C 235.805 22 235.668 22 235.532 22.143 C 234.851 22.429 233.897 22.857 233.08 22.857 C 232.535 22.857 231.854 22.714 231.854 21.286 L 231.99 13.286 L 235.941 13.286 C 236.349 13.286 236.758 12.857 236.758 12.429 L 236.758 10.571 C 236.758 10.143 236.349 9.714 235.941 9.714 L 231.99 9.571 L 231.99 4.571 C 231.99 4.143 231.582 3.714 231.173 3.714 L 228.857 3.714 C 228.448 3.714 228.04 4.143 228.04 4.571 L 227.904 9.571 L 226.405 9.571 C 225.996 9.571 225.588 10 225.588 10.429 L 225.588 12.286 C 225.588 12.714 225.996 13.143 226.405 13.143 L 228.04 13.286 L 228.04 21.571 C 228.04 23.714 228.448 26.429 232.127 26.429 C 234.034 26.429 236.349 25.429 236.758 25.286 Z M 223.817 26.143 C 224.226 26.143 224.634 25.714 224.634 25.286 L 224.634 17.143 C 224.634 12.143 222.182 9.286 217.959 9.286 C 215.098 9.286 213.055 10.857 212.374 11.286 L 211.965 10.143 C 211.829 9.857 211.557 9.571 211.284 9.571 L 210.194 9.571 C 209.786 9.571 209.377 10 209.377 10.429 L 209.377 25.143 C 209.377 25.571 209.786 26 210.194 26 L 212.238 26 C 212.919 26 213.191 25.714 213.191 25.143 L 213.191 15.143 C 213.464 14.429 215.235 12.714 217.551 12.714 C 219.594 12.714 220.82 14.143 220.82 16.714 L 220.82 25 C 220.82 25.429 221.229 25.857 221.637 25.857 L 223.817 25.857 Z M 195.346 15.857 C 195.618 13.857 197.253 12.571 199.296 12.571 C 201.067 12.571 202.702 14 202.838 16 Z M 199.296 9.286 C 194.665 9.286 191.259 13 191.259 17.857 C 191.259 22.714 194.665 26.429 199.296 26.429 C 201.612 26.429 203.792 25.714 205.29 24.429 C 205.563 24.286 205.563 24 205.699 23.857 C 205.699 23.571 205.563 23.429 205.427 23.286 L 204.337 21.714 C 204.201 21.571 204.064 21.429 203.928 21.429 C 203.656 21.429 203.519 21.571 203.247 21.714 C 202.566 22.143 201.204 22.857 199.705 22.857 C 197.117 22.857 195.346 20.714 195.346 18.714 L 205.971 18.714 C 206.38 18.714 206.653 18.429 206.789 18 C 206.789 17.714 206.925 17.143 206.925 16.857 C 206.653 12.571 203.519 9.286 199.296 9.286 Z M 184.176 26.429 C 179.544 26.429 175.73 22.571 175.73 17.857 C 175.73 13.143 179.544 9.143 184.176 9.143 C 186.628 9.143 188.535 10.143 190.033 12 C 190.169 12.143 190.306 12.429 190.169 12.714 C 190.169 13 190.033 13.143 189.761 13.286 L 188.398 14.571 C 188.262 14.714 188.126 14.857 187.854 14.857 C 187.581 14.857 187.445 14.714 187.309 14.571 C 186.355 13.571 185.265 13 184.039 13 C 181.451 13 179.544 15.143 179.544 18 C 179.544 20.857 181.587 23 184.039 23 C 185.81 23 186.628 22.143 187.445 21.429 L 187.717 21.143 C 187.854 21 188.126 20.857 188.398 20.857 C 188.535 20.857 188.807 21 188.943 21.143 L 190.033 22 C 190.442 22.429 190.578 22.857 190.306 23.286 C 188.943 25.286 186.764 26.429 184.176 26.429 Z\" fill=\"rgb(70,70,70)\"></path><path d=\"M 32.558 4 C 35.146 4.714 36.781 7.286 36.781 10 L 36.781 29 C 36.781 31.714 35.01 34.143 32.558 35 L 21.387 38.571 C 19.48 39.143 17.301 39.143 15.393 38.571 L 4.223 35.143 C 1.771 34.286 0 31.714 0 29 L 0 10 C 0 7.286 1.771 4.857 4.223 4 L 15.393 0.571 C 17.301 0 19.48 0 21.387 0.571 Z\" fill=\"rgb(37,101,244)\"></path><path d=\"M 25.202 11.143 L 18.663 13.143 C 18.39 13.143 18.254 13.286 17.982 13.143 L 11.443 11.143 C 10.081 10.714 8.855 11.714 8.855 13.143 L 8.855 28.571 C 8.855 28.857 8.991 29.143 9.263 29.143 L 11.715 29.857 C 12.124 30 12.396 29.714 12.396 29.286 L 12.396 25.714 C 12.396 25.714 12.396 25.571 12.533 25.571 L 17.437 27.143 C 18.118 27.286 18.799 27.286 19.344 27.143 L 26.7 24.714 C 27.517 24.571 27.926 24 27.926 23.286 L 27.926 13.286 C 27.926 11.857 26.564 10.714 25.202 11.143 Z M 24.384 21.429 C 24.384 21.571 24.248 21.714 24.112 21.714 L 18.799 23.429 C 18.527 23.571 18.254 23.571 17.982 23.429 L 12.805 21.857 C 12.669 21.857 12.533 21.714 12.533 21.571 L 12.533 15.857 C 12.533 15.714 12.669 15.571 12.941 15.571 L 17.164 16.857 C 17.982 17.143 18.935 17.143 19.753 16.857 L 23.976 15.571 C 24.112 15.571 24.384 15.714 24.384 15.857 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11001362501,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:143.5,intrinsicWidth:500,pixelHeight:287,pixelWidth:1e3,sizes:\"140px\",src:\"https://framerusercontent.com/images/SXkbeyzYUZVr38d2yf2V9Ozk0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/SXkbeyzYUZVr38d2yf2V9Ozk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/SXkbeyzYUZVr38d2yf2V9Ozk0.png 1000w\"},className:\"framer-kbw5wf\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cphmjd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g3gmpm\",\"data-framer-name\":\"HubSpot idPJcOROpd_0\",fill:\"black\",intrinsicHeight:31,intrinsicWidth:106,svg:'<svg width=\"106\" height=\"31\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\"><path d=\"M11.48 4.974v8.475H3.694V4.974H0v20.231h3.695v-8.2h7.784v8.2h3.696V4.974zm15.522 13.692a3.057 3.057 0 1 1-6.115 0V10h-3.505v8.666a6.556 6.556 0 0 0 13.112 0V10h-3.492v8.666zm25.971-7.773c0-1.777 1.175-2.34 2.462-2.34 1.038 0 2.408.79 3.305 1.748l2.295-2.706c-1.146-1.55-3.47-2.621-5.373-2.621-3.803 0-6.553 2.227-6.553 5.919 0 6.85 8.372 4.676 8.372 8.51 0 1.182-1.148 2.226-2.462 2.226-2.073 0-2.745-1.013-3.697-2.085l-2.548 2.649c1.63 2 3.64 3.016 6.047 3.016 3.613 0 6.519-2.254 6.519-5.778 0-7.604-8.373-5.241-8.373-8.538m51.8 11.08c-2.071 0-2.66-.896-2.66-2.268V13.63h3.22v-3.078h-3.22V6.491l-3.554 1.595V20.46c0 3.165 2.184 4.76 5.178 4.76.47.008.94-.03 1.402-.112l.867-3.192c-.391.027-.84.054-1.233.054M40.344 10.101c-1.736 0-2.948.504-4.12 1.653V5.095h-3.51v12.343c0 4.62 3.34 7.786 7.094 7.786 4.164 0 7.827-3.222 7.827-7.56 0-4.284-3.371-7.56-7.291-7.56m-.022 11.587a3.983 3.983 0 1 1 0-7.967 3.983 3.983 0 0 1 0 7.967m38.142-4.211c0-4.346-3.655-7.56-7.827-7.56-3.753 0-7.094 3.165-7.094 7.786v12.35h3.51v-6.668c1.17 1.147 2.384 1.653 4.118 1.653 3.92 0 7.292-3.276 7.292-7.561m-3.323-.044a3.983 3.983 0 1 1-7.967 0 3.983 3.983 0 0 1 7.967 0\" fill=\"#33475B\"/><path d=\"M89.806 9.75V6.223a2.716 2.716 0 0 0 1.566-2.448v-.081c0-1.5-1.216-2.716-2.716-2.716h-.081a2.716 2.716 0 0 0-2.716 2.716v.081a2.716 2.716 0 0 0 1.566 2.448V9.75a7.691 7.691 0 0 0-3.657 1.61l-9.673-7.534c.069-.249.105-.505.109-.762a3.06 3.06 0 1 0-3.064 3.054 3.027 3.027 0 0 0 1.507-.41l9.525 7.412a7.715 7.715 0 0 0 .118 8.69l-2.897 2.898a2.488 2.488 0 0 0-.724-.118 2.513 2.513 0 1 0 2.515 2.515 2.48 2.48 0 0 0-.118-.724l2.866-2.867A7.728 7.728 0 1 0 89.806 9.75m-1.188 11.6a3.965 3.965 0 1 1 0-7.927 3.965 3.965 0 0 1 .004 7.925\" fill=\"#FF7A59\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:107.5,intrinsicWidth:400,pixelHeight:215,pixelWidth:800,sizes:\"149px\",src:\"https://framerusercontent.com/images/9wQ08ib9uRY5298JwlwuWqSNg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9wQ08ib9uRY5298JwlwuWqSNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/9wQ08ib9uRY5298JwlwuWqSNg.png 800w\"},className:\"framer-1et9zdc\",\"data-framer-name\":\"Mailchimp id-GhpqWpt_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:423,intrinsicWidth:410,pixelHeight:846,pixelWidth:820,sizes:\"39px\",src:\"https://framerusercontent.com/images/hfbnifCLU6AR5XXCDqs5ntBOLrw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hfbnifCLU6AR5XXCDqs5ntBOLrw.png 820w\"},className:\"framer-14lrzxy\",\"data-framer-name\":\"Rock RMS idj38NQWlD_0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38.5,intrinsicWidth:224,pixelHeight:77,pixelWidth:448,src:\"https://framerusercontent.com/images/8Y8r7hVuQTp5Ii6GBifJbU8i8.png\"},className:\"framer-12bs2l1\",\"data-framer-name\":\"Image\"})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{y:(componentViewport?.y||0)+0+1405.5+0+1478.2+80+135.2+0+104},OtNTt8vWw:{y:(componentViewport?.y||0)+0+1545.5+0+1489.2+80+146.2+0+104}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:59,y:(componentViewport?.y||0)+0+1587.5+0+1500.2+80+157.2+0+104,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uno0xk-container\",\"data-framer-name\":\"Primary Button\",isModuleExternal:true,name:\"Primary Button\",nodeId:\"fH0C65ja9\",scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},ey7w8muFX:true,G77f5Yx_v:\"Start Free\",height:\"100%\",HFfTjmBlq:\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\",id:\"fH0C65ja9\",layoutId:\"fH0C65ja9\",n9WP3fBIv:false,name:\"Primary Button\",oV7zrnzuy:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(10, 10, 10))\",style:{height:\"100%\"},SZQpZ3lk2:16,U1Kbkgydv:\"https://app.gloo.us/auth?_gl=1*bvsk5o*_gcl_au*MTQyODc0NDA5MS4xNzI3NzMxMDQxLjQ5NzQwNDMyNS4xNzMxMzc5MTA0LjE3MzEzNzk3OTQ.\",variant:\"rt1NrdlKK\",VkxZQkMEC:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.10798), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.09534), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.0375)\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false})})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1eerpll\",\"data-framer-name\":\"Benefits Section\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Trusted by thousands of ministry leaders\"})})},OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Trusted by thousands of ministry leaders\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Trusted by thousands of ministry leaders\"})}),className:\"framer-chqcmx\",\"data-framer-name\":\"Header Text\",effect:textEffect,fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9etq1-container\",isModuleExternal:true,nodeId:\"j8T4sWBWV\",scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-48db76b1-b6f7-481c-9646-e2e74df040d6, rgb(0, 0, 0))\",arrowPadding:0,arrowRadius:214,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:100,height:\"100%\",id:\"j8T4sWBWV\",layoutId:\"j8T4sWBWV\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"columns\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x36oxh\",\"data-framer-name\":\"Info Card Left\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,positionX:\"49.8%\",positionY:\"34.2%\",sizes:\"142px\",src:\"https://framerusercontent.com/images/hcsXize7ydP9TBYcR62N0AMbwU.png\",srcSet:\"https://framerusercontent.com/images/hcsXize7ydP9TBYcR62N0AMbwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hcsXize7ydP9TBYcR62N0AMbwU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hcsXize7ydP9TBYcR62N0AMbwU.png 2048w\"},className:\"framer-10kae44\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gm2vxt\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:'\u201CIt\u2019s like Gloo gathered the friendliest humans on earth, handed them capes, and said, \"Go forth, and help the people!\" [The Support Team] is always there, texting you back quicker than your best friend, ready to fix things. And they ACTUALLY follow up. You know those support bots that make you want to throw your phone into the ocean? Not here. These folks actually care.\u201D'})}),className:\"framer-bcl8ya\",\"data-framer-name\":\"Header Text\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\" - Steve B. Pastor\"})}),className:\"framer-ifpjev\",\"data-framer-name\":\"Body Text\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15abqi7\",\"data-framer-name\":\"Info Card Left\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:804,pixelWidth:764,sizes:\"142px\",src:\"https://framerusercontent.com/images/3mkxFo2DvD8cjCsbROAwcNChz4.png\",srcSet:\"https://framerusercontent.com/images/3mkxFo2DvD8cjCsbROAwcNChz4.png 764w\"},className:\"framer-zo1whu\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fy0dj3\",\"data-framer-name\":\"Text Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"\u201CI find the tech support to be quick and very helpful. Whenever I have questions or encounter issues, the support team is responsive and knowledgeable, which makes my experience much smoother. Their assistance gives me confidence in using the platform fully.\u201D\"})}),className:\"framer-l964f5\",\"data-framer-name\":\"Header Text\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-05d3d3db-be9e-464a-9684-d4b46306a4c3, rgb(113, 113, 122))\"},children:\" - Antonio G. Associate Pastor\"})}),className:\"framer-x2d61q\",\"data-framer-name\":\"Body Text\",fonts:[\"FS;Poppins-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],snapObject:{fluid:true,snap:true,snapEdge:\"center\"},style:{maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation5},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{className:\"framer-1w8kvbe\",\"data-framer-name\":\"New Navigation\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"nav\",{className:\"framer-ame5y\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{FJXmxVWly:{height:105,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13lfpe2-container hidden-sag0pl hidden-1dhe7jc hidden-1w8hhcf\",isModuleExternal:true,nodeId:\"OL5not8fe\",scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(MessagingNav,{height:\"100%\",id:\"OL5not8fe\",layoutId:\"OL5not8fe\",style:{width:\"100%\"},variant:\"t5NEvvUhO\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-hp9ga2 hidden-1ei2v68\",\"data-framer-name\":\"Main Area\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cj769z\",\"data-border\":true,\"data-framer-name\":\"Frame 3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13uzd8u\",\"data-framer-name\":\"Frame 4\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cu7ava\",\"data-framer-name\":\"Gloo Logo\",children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:125.5,intrinsicWidth:611.5,loading:getLoadingLazyAtYPosition(38.5),pixelHeight:251,pixelWidth:1223,sizes:\"137.0526px\",src:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=512 512w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8iz4y32P4RW4n4OBN2LVOLl8QI0.png 1223w\"},className:\"framer-1d8hga5\",\"data-framer-name\":\"Messaging Logo\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u0n7bx\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Dgbv3dKly\"},motionChild:true,nodeId:\"UCy939ybO\",openInNewTab:false,scopeId:\"Fa6cofW5Z\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vaihqu framer-lbd2b9\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Features\"})}),className:\"framer-r48sca\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Dgbv3dKly\"},motionChild:true,nodeId:\"BXGUVNJqo\",openInNewTab:false,scopeId:\"Fa6cofW5Z\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-3ivjq0 framer-lbd2b9\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Integrations\"})}),className:\"framer-1m2csm5\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Dgbv3dKly\"},motionChild:true,nodeId:\"uqzx7k48U\",openInNewTab:false,scopeId:\"Fa6cofW5Z\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p9oso7 framer-lbd2b9\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gUmVndWxhcg==\",\"--framer-font-family\":'\"F37 Jan Regular\", \"F37 Jan Regular Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0.03em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, rgb(10, 10, 10))\"},children:\"Testimonials\"})}),className:\"framer-1qx06tr\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;F37 Jan Regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(Link,{href:\"https://app.gloo.us/auth\",motionChild:true,nodeId:\"VhFd1kCGF\",openInNewTab:false,scopeId:\"Fa6cofW5Z\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1x9oz5j framer-lbd2b9\",\"data-border\":true,\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{OtNTt8vWw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gQm9sZA==\",\"--framer-font-family\":'\"F37 Jan Bold\", \"F37 Jan Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\"},children:\"Start Free\"})})},W7bqIBcla:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gQm9sZA==\",\"--framer-font-family\":'\"F37 Jan Bold\", \"F37 Jan Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-bebb5c17-844d-419e-ab0e-ada0b43a4350, rgb(250, 250, 250))\"},children:\"Start Free\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0YzNyBKYW4gQm9sZA==\",\"--framer-font-family\":'\"F37 Jan Bold\", \"F37 Jan Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--token-0dd595c4-7a3d-46b6-af74-6a86b4f25f1b, rgb(250, 250, 250))\"},children:\"Start Free\"})}),className:\"framer-thu7jj\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;F37 Jan Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})]})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-guqeA.framer-lbd2b9, .framer-guqeA .framer-lbd2b9 { display: block; }\",\".framer-guqeA.framer-sag0pl { align-content: center; align-items: center; background-color: var(--token-bba9acad-4587-42d5-9c0b-6c83dec88e99, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-guqeA .framer-ksiour { align-content: center; align-items: center; background-color: var(--token-05d5bb86-5b82-446d-8b0b-cdb129f8cbb1, #edf5ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 642px; justify-content: center; overflow: hidden; padding: 84px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-guqeA .framer-ouosy1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-guqeA .framer-5lycg6 { flex: none; height: 38px; overflow: visible; position: relative; width: 186px; }\",\".framer-guqeA .framer-xzmgw3, .framer-guqeA .framer-vvl3tz, .framer-guqeA .framer-1uv8tjw, .framer-guqeA .framer-chqcmx { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; --framer-text-wrap: balance; flex: none; height: auto; max-width: 800px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-guqeA .framer-1dtuar6 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; max-width: 650px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-guqeA .framer-1pqvr0o-container, .framer-guqeA .framer-uno0xk-container { flex: none; height: 59px; position: relative; width: auto; }\",\".framer-guqeA .framer-tx3k4f { align-content: center; align-items: center; background: linear-gradient(0deg, #ffffff 0%, rgb(237, 245, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 54px 40px; position: relative; width: 100%; }\",\".framer-guqeA .framer-1q9o1l { aspect-ratio: 1.3154761904761905 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 852px); max-width: 1240px; overflow: visible; position: relative; width: 100%; }\",\".framer-guqeA .framer-22mlwb { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-guqeA .framer-1jzuzh8 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-guqeA .framer-1a9ppqo, .framer-guqeA .framer-1p68fde { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-guqeA .framer-on4lbw, .framer-guqeA .framer-1450svx { 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: min-content; }\",\".framer-guqeA .framer-1ush3eu, .framer-guqeA .framer-1h2zy4d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-guqeA .framer-1csncyj { background-color: var(--token-56e90ef0-8bd9-449d-98eb-6d78d887e4fb, #00c980); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; bottom: 0px; flex: none; height: 2px; left: 7px; max-width: 80%; overflow: hidden; position: absolute; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-guqeA .framer-20pf9t-container { flex: none; height: auto; max-width: 1240px; position: relative; width: 100%; }\",\".framer-guqeA .framer-1v9c8id { align-content: center; align-items: center; background: linear-gradient(180deg, #ffffff 0%, rgb(237, 245, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-guqeA .framer-tlss5l { background-color: var(--token-56e90ef0-8bd9-449d-98eb-6d78d887e4fb, #00c980); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; bottom: 0px; flex: none; height: 2px; left: 10px; max-width: 80%; overflow: hidden; position: absolute; width: 80%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-guqeA .framer-1s5qnax { 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-guqeA .framer-1sr3yhf-container { flex: none; height: 80px; max-width: 1240px; position: relative; width: 100%; }\",\".framer-guqeA .framer-1dwa5qq { height: 40px; overflow: hidden; position: relative; width: 183px; }\",\".framer-guqeA .framer-gfutwd { -webkit-filter: invert(1); aspect-ratio: 4.575 / 1; filter: invert(1); flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-guqeA .framer-15xiw9g { aspect-ratio: 1 / 1; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-guqeA .framer-bpkwdb { height: 40px; position: relative; width: 267px; }\",\".framer-guqeA .framer-kbw5wf { aspect-ratio: 3.484320557491289 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 140px; }\",\".framer-guqeA .framer-cphmjd { height: 40px; overflow: hidden; position: relative; width: 137px; }\",\".framer-guqeA .framer-g3gmpm { aspect-ratio: 3.4193548387096775 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-guqeA .framer-1et9zdc { aspect-ratio: 3.7209302325581395 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 149px; }\",\".framer-guqeA .framer-14lrzxy { aspect-ratio: 0.9692671394799054 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 39px; }\",\".framer-guqeA .framer-12bs2l1 { aspect-ratio: 5.818181818181818 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 233px; }\",\".framer-guqeA .framer-1eerpll { align-content: center; align-items: center; background-color: var(--token-05d5bb86-5b82-446d-8b0b-cdb129f8cbb1, #edf5ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 24px 80px 24px; position: relative; width: 100%; }\",\".framer-guqeA .framer-1l9etq1-container { flex: none; height: auto; max-width: 800px; position: relative; width: 100%; }\",\".framer-guqeA .framer-x36oxh, .framer-guqeA .framer-15abqi7 { 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-direction: column; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 560px; will-change: var(--framer-will-change-override, transform); }\",\".framer-guqeA .framer-10kae44, .framer-guqeA .framer-zo1whu { aspect-ratio: 1 / 1; border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: var(--framer-aspect-ratio-supported, 142px); overflow: hidden; position: relative; width: 142px; will-change: var(--framer-will-change-override, transform); }\",\".framer-guqeA .framer-1gm2vxt { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-guqeA .framer-bcl8ya, .framer-guqeA .framer-ifpjev, .framer-guqeA .framer-l964f5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-guqeA .framer-fy0dj3 { 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-guqeA .framer-x2d61q { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-guqeA .framer-1w8kvbe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; padding: 0px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-guqeA .framer-ame5y { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 100%; }\",\".framer-guqeA .framer-13lfpe2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-guqeA .framer-hp9ga2 { align-content: center; align-items: center; border-bottom-left-radius: 35px; border-bottom-right-radius: 35px; border-top-left-radius: 35px; border-top-right-radius: 35px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1240px; overflow: visible; padding: 18px 0px 18px 0px; position: relative; width: min-content; z-index: 10; }\",\".framer-guqeA .framer-1cj769z { --border-bottom-width: 1px; --border-color: rgba(247, 247, 247, 0.4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(32px); align-content: center; align-items: center; backdrop-filter: blur(32px); background-color: rgba(185, 185, 185, 0.2); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; box-shadow: 0px 37px 15px -33px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 69px; justify-content: space-between; min-width: 800px; overflow: hidden; padding: 24px 6px 24px 24px; position: relative; width: 800px; will-change: var(--framer-will-change-override, transform); }\",\".framer-guqeA .framer-13uzd8u { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-guqeA .framer-1cu7ava { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-guqeA .framer-1d8hga5 { aspect-ratio: 4.894736842105263 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 137px; }\",\".framer-guqeA .framer-u0n7bx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-guqeA .framer-vaihqu, .framer-guqeA .framer-3ivjq0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-guqeA .framer-r48sca, .framer-guqeA .framer-1m2csm5, .framer-guqeA .framer-1qx06tr, .framer-guqeA .framer-thu7jj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-guqeA .framer-p9oso7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-guqeA .framer-1x9oz5j { --border-bottom-width: 1px; --border-color: var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, #0a0a0a); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-9b2f50f3-159e-468f-8c8e-b0e682d4caa9, #0a0a0a); border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 57px; justify-content: center; overflow: visible; padding: 24px 48px 24px 48px; position: relative; text-decoration: none; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-guqeA.framer-sag0pl, .framer-guqeA .framer-ksiour, .framer-guqeA .framer-ouosy1, .framer-guqeA .framer-tx3k4f, .framer-guqeA .framer-22mlwb, .framer-guqeA .framer-1jzuzh8, .framer-guqeA .framer-1a9ppqo, .framer-guqeA .framer-on4lbw, .framer-guqeA .framer-1v9c8id, .framer-guqeA .framer-1p68fde, .framer-guqeA .framer-1450svx, .framer-guqeA .framer-1s5qnax, .framer-guqeA .framer-1eerpll, .framer-guqeA .framer-x36oxh, .framer-guqeA .framer-1gm2vxt, .framer-guqeA .framer-15abqi7, .framer-guqeA .framer-fy0dj3, .framer-guqeA .framer-1w8kvbe, .framer-guqeA .framer-hp9ga2, .framer-guqeA .framer-1cu7ava, .framer-guqeA .framer-u0n7bx, .framer-guqeA .framer-vaihqu, .framer-guqeA .framer-3ivjq0, .framer-guqeA .framer-p9oso7, .framer-guqeA .framer-1x9oz5j { gap: 0px; } .framer-guqeA.framer-sag0pl > *, .framer-guqeA .framer-22mlwb > *, .framer-guqeA .framer-on4lbw > *, .framer-guqeA .framer-1450svx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-guqeA.framer-sag0pl > :first-child, .framer-guqeA .framer-ksiour > :first-child, .framer-guqeA .framer-ouosy1 > :first-child, .framer-guqeA .framer-tx3k4f > :first-child, .framer-guqeA .framer-22mlwb > :first-child, .framer-guqeA .framer-1jzuzh8 > :first-child, .framer-guqeA .framer-1a9ppqo > :first-child, .framer-guqeA .framer-on4lbw > :first-child, .framer-guqeA .framer-1v9c8id > :first-child, .framer-guqeA .framer-1p68fde > :first-child, .framer-guqeA .framer-1450svx > :first-child, .framer-guqeA .framer-1s5qnax > :first-child, .framer-guqeA .framer-1eerpll > :first-child, .framer-guqeA .framer-x36oxh > :first-child, .framer-guqeA .framer-1gm2vxt > :first-child, .framer-guqeA .framer-15abqi7 > :first-child, .framer-guqeA .framer-fy0dj3 > :first-child, .framer-guqeA .framer-1w8kvbe > :first-child { margin-top: 0px; } .framer-guqeA.framer-sag0pl > :last-child, .framer-guqeA .framer-ksiour > :last-child, .framer-guqeA .framer-ouosy1 > :last-child, .framer-guqeA .framer-tx3k4f > :last-child, .framer-guqeA .framer-22mlwb > :last-child, .framer-guqeA .framer-1jzuzh8 > :last-child, .framer-guqeA .framer-1a9ppqo > :last-child, .framer-guqeA .framer-on4lbw > :last-child, .framer-guqeA .framer-1v9c8id > :last-child, .framer-guqeA .framer-1p68fde > :last-child, .framer-guqeA .framer-1450svx > :last-child, .framer-guqeA .framer-1s5qnax > :last-child, .framer-guqeA .framer-1eerpll > :last-child, .framer-guqeA .framer-x36oxh > :last-child, .framer-guqeA .framer-1gm2vxt > :last-child, .framer-guqeA .framer-15abqi7 > :last-child, .framer-guqeA .framer-fy0dj3 > :last-child, .framer-guqeA .framer-1w8kvbe > :last-child { margin-bottom: 0px; } .framer-guqeA .framer-ksiour > *, .framer-guqeA .framer-tx3k4f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-guqeA .framer-ouosy1 > *, .framer-guqeA .framer-1a9ppqo > *, .framer-guqeA .framer-1p68fde > *, .framer-guqeA .framer-1s5qnax > *, .framer-guqeA .framer-x36oxh > *, .framer-guqeA .framer-15abqi7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-guqeA .framer-1jzuzh8 > *, .framer-guqeA .framer-1v9c8id > *, .framer-guqeA .framer-1eerpll > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-guqeA .framer-1gm2vxt > *, .framer-guqeA .framer-fy0dj3 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-guqeA .framer-1w8kvbe > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-guqeA .framer-hp9ga2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-guqeA .framer-hp9ga2 > :first-child, .framer-guqeA .framer-1cu7ava > :first-child, .framer-guqeA .framer-u0n7bx > :first-child, .framer-guqeA .framer-vaihqu > :first-child, .framer-guqeA .framer-3ivjq0 > :first-child, .framer-guqeA .framer-p9oso7 > :first-child, .framer-guqeA .framer-1x9oz5j > :first-child { margin-left: 0px; } .framer-guqeA .framer-hp9ga2 > :last-child, .framer-guqeA .framer-1cu7ava > :last-child, .framer-guqeA .framer-u0n7bx > :last-child, .framer-guqeA .framer-vaihqu > :last-child, .framer-guqeA .framer-3ivjq0 > :last-child, .framer-guqeA .framer-p9oso7 > :last-child, .framer-guqeA .framer-1x9oz5j > :last-child { margin-right: 0px; } .framer-guqeA .framer-1cu7ava > * { margin: 0px; margin-left: calc(8.258064270019531px / 2); margin-right: calc(8.258064270019531px / 2); } .framer-guqeA .framer-u0n7bx > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-guqeA .framer-vaihqu > *, .framer-guqeA .framer-3ivjq0 > *, .framer-guqeA .framer-p9oso7 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-guqeA .framer-1x9oz5j > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",'.framer-guqeA[data-border=\"true\"]::after, .framer-guqeA [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: 1400px) { .framer-guqeA.framer-sag0pl { width: 1400px; } .framer-guqeA .framer-1q9o1l { height: var(--framer-aspect-ratio-supported, 943px); } .framer-guqeA .framer-1cj769z { order: 0; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-guqeA.framer-sag0pl { width: 810px; } .framer-guqeA .framer-ksiour { height: 600px; } .framer-guqeA .framer-1q9o1l { height: var(--framer-aspect-ratio-supported, 555px); } .framer-guqeA .framer-1cj769z { order: 0; }}\",\"@media (max-width: 809px) { .framer-guqeA.framer-sag0pl { width: 390px; } .framer-guqeA .framer-ksiour { height: 460px; } .framer-guqeA .framer-1q9o1l { height: var(--framer-aspect-ratio-supported, 236px); } .framer-guqeA .framer-ame5y { padding: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4263\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"W7bqIBcla\":{\"layout\":[\"fixed\",\"auto\"]},\"OtNTt8vWw\":{\"layout\":[\"fixed\",\"auto\"]},\"FJXmxVWly\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"KDen5wODa\":{\"pattern\":\":KDen5wODa\",\"name\":\"features\"},\"cM9Kh3l4w\":{\"pattern\":\":cM9Kh3l4w\",\"name\":\"integrations\"},\"dd0qFPY18\":{\"pattern\":\":dd0qFPY18\",\"name\":\"testimonials\"}}\n * @framerResponsiveScreen\n */const FramerFa6cofW5Z=withCSS(Component,css,\"framer-guqeA\");export default FramerFa6cofW5Z;FramerFa6cofW5Z.displayName=\"Page\";FramerFa6cofW5Z.defaultProps={height:4263,width:1200};addFonts(FramerFa6cofW5Z,[{explicitInter:true,fonts:[{family:\"F37 Jan Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/0S3un4jNeW75bC0pGOoW3hloYs.woff2\"},{family:\"Poppins\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NC2MP33RO4WQTSTEEAWBJLAEXNCNEQVF/7F4U3COKLHQH4WUH3AXPC7N4UELEWJQN/JMWNCAGBH3TLANIVQPVABVAVNV5QERTH.woff2\",weight:\"400\"},{family:\"F37 Jan Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/cKWDnvIhXDw2loxYjM54rmUnx5c.woff2\"}]},...ButtonFonts,...FeatureCardGridSeeMoreFonts,...TickerFonts,...CarouselFonts,...MessagingNavFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFa6cofW5Z\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4263\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W7bqIBcla\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OtNTt8vWw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FJXmxVWly\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"KDen5wODa\\\":{\\\"pattern\\\":\\\":KDen5wODa\\\",\\\"name\\\":\\\"features\\\"},\\\"cM9Kh3l4w\\\":{\\\"pattern\\\":\\\":cM9Kh3l4w\\\",\\\"name\\\":\\\"integrations\\\"},\\\"dd0qFPY18\\\":{\\\"pattern\\\":\\\":dd0qFPY18\\\",\\\"name\\\":\\\"testimonials\\\"}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "qlCAAgY,IAAMA,GAAqB,IAAUC,GAAS,IAAUC,GAAa,kBAAwBC,GAAc,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAAeC,GAAyB,GAAK,GAAG,OAAOC,GAAS,IAAa,GAAG,CAACA,GAAO,IAAI,iBAAiB,CAAC,KAAKH,GAAa,OAAO,WAAW,aAAa,MAAM,SAAS,EAAK,CAAC,CAAE,MAAS,CAACE,GAAyB,EAAM,CASxwB,SAARE,GAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,EAAYC,GAAS,MAAMF,CAAa,EAAQG,EAAYF,EAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcoB,EAAOC,GAAe,CAAC,EAAQC,EAAKH,EAAa,IAAI,IAAUI,EAAMvB,IAAY,QAAQA,IAAY,MAAM,IAAI,GAASwB,GAAUC,GAAa,IAAI,YAAYH,CAAI,IAAIC,CAAK,GAAGH,EAAO,IAAI,CAAC,KAAK,EAA4BM,GAAUC,EAAO,IAAI,EAAQC,GAAYC,GAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,GAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,aAAa,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,GAAY,EAAMC,GAAQ,EAAKxB,IAAUuB,GAAYpB,EAAY,KAAK,MAAM,GAAGA,CAAW,EAAE,EAAEqB,GAAQ,GAAM,CAACxB,GAAUK,GAAaa,GAAK,SAAQK,GAAY,KAAK,MAAML,GAAK,OAAOA,GAAK,SAAS,CAAC,EAAE,EAAEK,GAAY,KAAK,IAAIA,GAAYtD,EAAoB,EAAEuD,GAAQ,GAAG,IAAMC,GAAiBP,GAAK,eAAe,KAAK,KAAKA,GAAK,cAAcK,GAAY,GAASG,GAAcD,KAAmB,KAAK,KAAKA,GAAiBvD,GAA6CyD,GAAQC,GAAY,IAAI,CAAC,GAAGvB,GAAaQ,GAAU,QAAQ,CAAC,IAAMgB,EAAavB,EAAaO,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAkB,CAACiB,EAAWC,CAAS,EAAEhB,GAAkBiB,EAAaF,EAAW,QAAQA,EAAW,QAAQ,WAAW,EAAQG,GAAcF,EAAU,QAAQA,EAAU,QAAQ,WAAWA,EAAU,QAAQ,YAAY,EAAQG,GAAYJ,EAAW,QAAQA,EAAW,QAAQ,UAAU,EAAQK,EAAeJ,EAAU,QAAQA,EAAU,QAAQ,UAAUA,EAAU,QAAQ,aAAa,EAAQK,EAAcH,GAAcD,EAAmBK,GAAeF,EAAeD,GAAkBI,GAAaF,EAAcC,GAAqBE,IAAgBjC,EAAa8B,EAAcC,IAAgB3D,EAAIyC,GAAQ,CAAC,OAAOU,EAAa,SAASU,GAAe,aAAAD,EAAY,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQE,GAAexC,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CACjkE,GAAG,CAACL,EAAS,CAGE,IAAIyC,EAAc3B,EAAO,EAAI,EAAE4B,GAAU,KAAKC,GAAM,KAAKhB,EAAO,EAASiB,GAAO/B,GAAU,QAAQ,CAAC,CAAC,YAAAgC,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKhB,EAAO,EAAGc,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACpB,GAAejB,GAAS,IAAIF,EAAc,CAAC4C,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,GAAcC,GAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAIrC,GAAY,CAAC,GAAMgC,IAAQ7C,EAAc,OAAO,IAAGkD,EAAIrC,GAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMrB,GAAWmD,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOlD,GAAYmD,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMlC,EAAK,SAAsBqC,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,GAAGhC,EAAK,WAAW,EAAE,GAAGsB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,GAAcL,EAAM,SAAS,MAAMK,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,CAAC,CAAC,EAAEJ,EAAM,WAAW,CAAE,CAAC,CAAE,CAAC,GAAG,CAAC/C,EAAU,QAAQwD,EAAE,EAAEA,EAAEjC,GAAYiC,IAAKlC,GAAc,CAAC,GAAGA,GAAc,GAAGlB,GAAS,IAAIF,EAAc,CAAC4C,EAAMW,IAAa,CAAC,IAAIT,EAAaC,GAAcC,GAAcC,EAAcO,EAAcC,GAAc,IAAMzC,GAAK,CAAC,MAAMrB,GAAWmD,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOlD,GAAYmD,GAAcH,EAAM,SAAS,MAAMG,KAAgB,OAAO,OAAOA,GAAc,OAAO,OAAO,WAAWvB,KAAgB,GAAK,OAAO,WAAW,EAAE,OAAoB2B,EAAKC,GAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMnC,GAAK,cAAc,GAAK,SAAsBqC,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,GAAcJ,EAAM,SAAS,MAAMI,KAAgB,OAAO,OAAOA,GAAc,MAAM,MAAMrD,GAAWsD,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOrD,GAAY4D,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAe1C,GAAK,SAASA,GAAK,SAAS,KAAK,MAAMA,GAAK,OAAOA,GAAK,QAAQ,EAAQ2C,GAAY/C,EAAO,IAAI,EAAQgD,GAAShD,EAAO,IAAI,EAAQiD,GAAKjD,EAAO,CAAC,EAAQkD,GAAQlD,EAAO,EAAK,EAAQmD,GAAgBC,GAAiB,EAAQC,EAAQrD,EAAO,IAAI,EAAQsD,EAAatD,EAAO,IAAI,EAE3oF,GAAG,CAACd,EAAS,CAAC,IAAMqE,EAASC,GAAUzD,EAAS,EAEzCzC,KAAgB,CAACsD,IAAeA,IAAerD,KAA2BqE,GAAU,IAAI,CAAC,GAAGuB,IAAiB,CAACL,GAAgB,CAAC3E,GAAOyC,KAAgB,KAAM,OAAQ,GAAGA,GAAe,GAAG,CAACpD,GAAO,IAAI,iBAAiB,CAAC,KAAKH,GAAa,OAAO,WAAW,aAAa,MAAM,SAAS,EAAK,CAAC,CAAE,MAAS,CAAC,CAGpS,IAAMoG,EAAU7C,GAAc,CAAC,CAACvD,EAAY,EAAE,CAAC,MAAM,GAAGuC,CAAK,GAAGkD,CAAc,IAAI,CAAC,EAAE,CAAC,UAAU,CAAC,YAAYnD,CAAI,QAAQ,YAAYA,CAAI,IAAIC,CAAK,GAAGkD,CAAc,KAAK,CAAC,EAAE,OAAAQ,EAAa,QAAQD,EAAQ,QAAQ,QAAQI,EAAU,CAAC,SAAS,KAAK,IAAIX,CAAc,EAAE3E,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAImF,EAAa,QAAQ,OAAO,CAAE,EAAE,CAAClF,EAAY0E,EAAe3E,EAAMyC,EAAa,CAAC,EAClagB,GAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NG,GAAkBC,GAAG,CAAC,GAAG,CAACb,GAAgBK,IAAiB7F,GAAe,OAKnEyF,GAAY,UAAU,OAAMA,GAAY,QAAQY,GAAGA,EAAEA,EAAEZ,GAAY,QAAqE,IAAIa,GAAjDZ,GAAS,UAAU,KAAK,EAAEW,EAAEX,GAAS,UAA6B7E,EAAM,KAAQ+E,GAAQ,UAASU,GAAOxF,GAAa6E,GAAK,SAASW,EAAMX,GAAK,QAAQY,GAAK,EAAEf,EAAeG,GAAK,OAAO,EAAED,GAAS,QAAQW,EAAMJ,GAAgB9D,EAAO,IAAIwD,GAAK,OAAO,CAAE,CAAC,CAAG,CAAY,IAAMa,GAActE,EAAa,WAAW,YAAkBuE,GAAenF,EAAU,EAAQoF,GAAa,IAAIpF,EAAU,EAAQqF,GAAeC,GAAMrF,EAAU,EAAEkF,EAAc,EAAQI,GAAa,IAAItF,EAAgBuF,GAAS,mBAAmBN,EAAa,mBAAmBhF,CAAS,KAAKmF,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBlF,CAAS,KAAKqF,EAAY,KAAsB,OAAI5E,EAAkWgD,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG8B,GAAe,QAAQ3D,GAAQ,gBAAgBhC,EAAY0F,GAAS,OAAU,aAAa1F,EAAY0F,GAAS,OAAU,UAAU1F,EAAY0F,GAAS,OAAU,SAASzF,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIc,GAAU,SAAsBuE,EAAMC,EAAO,GAAG,CAAC,IAAIlB,EAAQ,MAAM,CAAC,GAAGgB,GAAe,IAAIzG,EAAI,IAAIS,IAAY,UAAUmG,GAAc1B,CAAc,EAAE,CAACA,EAAe,OAAU,KAAKzE,IAAY,SAASmG,GAAc1B,CAAc,EAAE,CAACA,EAAe,OAAU,WAAWxE,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,GAAU0B,GAAc,OAAO,YAAY,UAAUtD,GAAcsD,GAAc,YAAYjB,CAAI,QAAQtC,EAAY,KAAK,OAAOwC,EAAS,EAAE,aAAa,IAAI,CAACqD,GAAQ,QAAQ,GAAQI,EAAa,UACv8DA,EAAa,QAAQ,aAAalF,EAAa,EAAE,aAAa,IAAI,CAAC8E,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAAC/C,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wB8D,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAclC,EAAK,MAAM,CAAC,MAAMmC,GAAY,SAAS,QAAG,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAY,SAAS,oBAAoB,CAAC,EAAepC,EAAK,IAAI,CAAC,MAAMqC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBnH,GAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBoH,GAAoBpH,GAAO,CAAC,MAAM,CAAC,KAAKqH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,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,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,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,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoH,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpH,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKoH,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC/Bl3GC,GAAU,UAAU,CAAC,wBAAwB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,kBAAkB,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,orBAAorB,0uBAA0uB,suBAAsuB,EAAeC,GAAU,eCA7+C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAWF,EAASG,EAAK,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,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,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,cAAc,YAAY,gBAAgB,YAAY,cAAc,YAAY,OAAO,YAAY,KAAK,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAU0B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3C,CAAQ,EAAE4C,GAAgB,CAAC,WAAAjD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgD,EAAiBpB,GAAuBH,EAAMtB,CAAQ,EAAO,CAAC,sBAAA8C,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAiBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAiBL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAiBP,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAiBR,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAiBT,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,EAAsBC,GAAM,EAAQC,EAAsB,CAAa5B,GAAuBA,EAAS,EAAQ6B,EAAkBC,GAAqB,EAAE,OAAoBlD,EAAKmD,GAAY,CAAC,GAAG9B,GAA4CyB,EAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAU2B,GAAGtE,GAAkB,GAAGiE,EAAsB,gBAAgB5B,EAAUI,CAAU,EAAE,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6B4B,EAAK,MAAM,CAAC,gBAAgB,yBAAyB,GAAGxB,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEsC,EAAYI,CAAc,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,gBAAgB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKrB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,eAAe,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,+DAA+D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKrB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,8EAA8E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAchC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKrB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,OAAO,QAAQ,GAAK,OAAO,sEAAsE,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,mLAAmL,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,sEAAsE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKrB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,OAAO,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKrB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,0GAA0G,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAehC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKrB,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkE,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,yFAAyF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBiD,EAAMlD,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,qEAAkFF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,gBAAgB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,iGAAiG,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,wFAAwF,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,6FAA6F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,yEAAyE,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,WAAW,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,+FAA+F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,gHAAgH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,4FAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBiD,EAAMlD,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,mEAAgFF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBiD,EAAMlD,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,4FAAyGF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,6HAA6H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEa,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,qHAAqH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG/C,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBiD,EAAMlD,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,CAAC,mGAAgHF,EAAKE,EAAO,GAAG,CAAC,CAAC,EAAeF,EAAKE,EAAO,GAAG,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkB,EAAY,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBhC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAsBoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAcoB,EAAMlD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8B,EAAiB,SAAS,YAAY,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBhC,EAAKsD,EAA0B,CAAC,SAAsBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,SAAsBhC,EAAKvB,EAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,iGAAiG,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,qIAAgI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAgEL,GAAkB,GAAI,GAAG,EAAE,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,GAAgEgE,GAAkB,GAAI,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAgEA,GAAkB,GAAI,GAAG,EAAE,MAAM,CAAC,EAAE1B,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,iBAAiB,iBAAiB8B,EAAiB,SAAS,sBAAsB,KAAK,iBAAiB,SAAsBhC,EAAKnB,GAAO,CAAC,UAAU,CAAC,YAAY,4GAA4G,YAAY,QAAQ,YAAY,CAAC,EAAE,UAAU,GAAM,UAAU,WAAW,OAAO,OAAO,UAAU,wEAAwE,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,KAAK,iBAAiB,UAAUuD,EAAiB,UAAU,qEAAqE,MAAM,CAAC,OAAO,MAAM,EAAE,UAAU,GAAG,QAAQ,YAAY,UAAU,0MAA0M,UAAU,aAAa,MAAM,OAAO,UAAU,GAAM,GAAGnD,GAAqB,CAAC,UAAU,CAAC,UAAUwD,CAAgB,EAAE,UAAU,CAAC,UAAUF,CAAe,EAAE,UAAU,CAAC,UAAU,WAAW,UAAUG,CAAgB,EAAE,UAAU,CAAC,UAAU,WAAW,UAAUF,CAAgB,EAAE,UAAU,CAAC,UAAU,WAAW,UAAUF,CAAgB,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6B,GAAI,CAAC,kFAAkF,kFAAkF,4SAA4S,kiBAAkiB,k3BAAk3B,y3BAAy3B,82BAA82B,g+BAAg+B,+WAA+W,yuBAAyuB,uuBAAuuB,+RAA+R,6KAA6K,2LAA2L,uIAAuI,uIAAuI,0PAA0P,gIAAgI,+yBAA+yB,4tBAA4tB,+KAA+K,o6gBAAo6gB,y5BAAy5B,uJAAuJ,25CAA25C,k9BAAk9B,6RAA6R,sJAAsJ,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAQjzmHC,GAAgBC,GAAQ7C,GAAU2C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,+BAA+BA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,OAAO,gBAAgB,cAAc,gBAAgB,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlF,GAAc,GAAGG,GAAW,GAAGE,GAAY,GAAGmF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECLxtE,SAASC,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACC,GAAgB,IAAIH,EAAiBI,GAAO,WAAW,gBAAgB,EAAE,OAAO,CAAC,CAAE,EAAE,CAAC,CAAC,EAASL,CAAc,CAK/M,SAASM,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,GAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,GAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,GAAaX,EAAYa,GAAG,EAAEA,CAAC,EAAQX,EAAUM,EAAO,IAAI,EAKxpBM,EAAcH,GAAaC,EAAcC,GAAGA,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOJ,GAAaG,EAAcD,GAAGA,IAAI,OAAO,UAAU,SAAS,EAAQG,EAAY,CAAC,GAAGC,GAAiB,QAAQL,EAAc,cAAAE,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAd,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAgB,EAAY,UAAAd,CAAS,CAAE,CAAC,SAASgB,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,GAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,GAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,CAAK,EAAE,CACvK,IAAMC,EAAcZ,EAAM,OAAO,OAAO,EAAQa,EAASC,GAAS,MAAMF,CAAa,EAAQG,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAQC,GAAWP,CAAK,EAAQQ,EAAUhC,EAAK,IAAI,IAAS,CAAC,YAAAiC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,UAAAC,CAAS,EAAEpB,EAAgB,CAAC,KAAAqB,EAAK,SAAAC,EAAS,MAAAC,CAAK,EAAErB,EAAgB,CAAC,UAAAsB,EAAU,WAAAC,EAAW,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,CAAU,EAAE9B,EAAkB,CAAC,cAAA+B,GAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAEtC,EAAoB,CAAC,kBAAAuC,GAAkB,UAAAC,EAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE/C,EAE5oBjB,EAAWf,EAAO,MAAS,EAG3BiB,EAAajB,EAAO,MAAS,EAI7BgF,GAAc/E,GAAe,CAAC,EAAQe,GAAoBiE,GAAW,CAACD,GAAc,IAAI/D,EAAa,UAAU,OAAUA,EAAa,QAAQgE,CAAS,CAAE,EAGzJlG,GAAcD,GAAW,EAEzBoG,GAAMrF,GAAO,GAAMsD,CAAS,EAAQgC,GAAItF,GAAO,GAAKsD,CAAS,EAAQiC,GAAenF,GAAegD,EAAU,EAAE,EAAQoC,EAAalF,GAAaiF,GAAe/E,GAAG,IAAIA,CAAC,EAAQiF,EAAUrF,GAAe+C,CAAS,EAAQuC,EAAepF,GAAa,CAACiF,GAAeE,CAAS,EAAE3G,EAAa,EAAQ6G,EAAarF,GAAaoF,EAAelF,GAAG,IAAIA,CAAC,EAAQoF,GAAUxF,GAAea,EAAK,QAAQ,QAAQ,EAAQ4E,GAAKvF,GAAa,CAACsF,GAAUP,GAAM,YAAYE,GAAeG,EAAeJ,GAAI,YAAYE,EAAaG,CAAY,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,CAAC,kBAAkBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,sBAAsBA,EAAO,CAAC,CAAC,uBAAuBA,EAAO,CAAC,CAAC,mBAAmBA,EAAO,CAAC,CAAC,KAAKA,EAAO,CAAC,CAAC,IAAM,EAAQC,EAAY5F,EAAO,IAAI,EAEnvB,CAAC6F,EAASC,EAAW,EAAE7G,GAASyD,EAAS,EAAE,CAAC,EAE3CqD,GAAU,CAAC,gBAAgB1C,EAAS,WAAW,CAAC,EAAQ2C,GAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,GAAW,OAAO,OAAOD,GAAU,OAAO,SAAaC,GAAW,MAAM,OAAOD,GAAU,MAAM,SAAazC,IAAOyC,GAAU,eAAe,UAAaxC,IAAY,WAAWwC,GAAU,MAAM,eAAevC,GAAY,CAAC,MAAMwC,GAAW,MAAM,QAAgBzC,IAAY,YAAWwC,GAAU,MAAM,QAAQ,IAAItC,CAAY,OAAO7B,CAAG,QAAQA,EAAI6B,CAAY,MAAMuC,GAAW,MAAM,QAAWtC,IAAa,WAAWqC,GAAU,OAAO,eAAepC,GAAa,CAAC,MAAMqC,GAAW,OAAO,QAAgBtC,IAAa,SAAQqC,GAAU,OAAO,QAAQ,IAAInC,CAAU,OAAOhC,CAAG,QAAQA,EAAIgC,CAAU,MAAMoC,GAAW,OAAO,QAAQ,IAAMC,GAAevD,EAAS,SAAS,OAAawD,GAAe,CAAC,GAAGC,GAAmB,QAAAvD,CAAO,EAAQwD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe7C,EAAK,GAAGN,CAAS,aAAa,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY2C,GAAK,OAAU,aAAa3C,EAAY2C,GAAK,OAAU,UAAU3C,EAAY2C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAE,uBAAwB,UAAU,EAAKnE,IAAWmE,GAAa,YAAY,EAAEnE,GAAW,IAAMoE,GAAS,CAAC,EAAgG,GAA3F1E,IAAQ,YAAW0E,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC7D,EAAS,CAAC,IAAM8D,EAAUxG,EAAO,CAAC,CAAC,EAAEY,GAAgBgF,EAAY9C,EAAU/B,EAAWC,GAAoBC,EAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,GAAgB,aAAAC,EAAY,EAAE7F,EAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAE,GAAG,CAAC0B,GAAc,CAACC,GAAgB,OAAO,GAAGD,EAAaC,GAAgB,CAACtH,GAAWwH,GAAQ,EAAE3B,GAAMhC,CAAc,EAAE7D,GAAWwH,GAAQD,GAAazB,GAAIjC,CAAc,EAAE,QAAQ4D,GAAE,EAAEA,GAAEN,EAAU,QAAQ,OAAOM,KAAI,CAAC,GAAK,CAAC,QAAAnG,GAAQ,MAAAuE,GAAM,IAAAC,EAAG,EAAEqB,EAAU,QAAQM,EAAC,EAAK3B,GAAI0B,IAAS3B,GAAM2B,GAAQF,GAAiBhG,GAAQ,aAAa,cAAc,EAAI,EAAQA,GAAQ,aAAa,cAAc,EAAK,CAAG,CAAC,MAAMtB,GAAW,EAAE,EAAE6F,GAAMhC,CAAc,EAAE7D,GAAW,EAAE,EAAE8F,GAAIjC,CAAc,EAAEsD,EAAU,QAAQ,QAAQ9F,EAAc,EAO/qE,IAAIqG,GAAY,KAAK,KAAKL,EAAaC,EAAe,EAAM,MAAMI,EAAW,IAC7FA,GAAYvE,EAAS,MAAIuE,GAAYvE,GAAYuE,KAAclB,GAASC,GAAYiB,EAAW,EAAG,EAAE,CAAClB,CAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,EAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,EAAY,QAAQ,QAAQ,EAAE,IAAIjF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,CAAE,CAInZ+B,IAAUtB,GAAU,IAAI,CAACkE,EAAU,IAAItC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,GAAU,IAAI,CAACgE,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE7B,GAAU,IAAI,CAACqE,GAAU,IAAI3E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAAG,IAAMkG,GAAa,CAACC,EAAM1H,IAAS,CAAC,GAAG,CAACwB,EAAW,QAAQ,OAAO,GAAK,CAAC,QAAA8F,EAAO,EAAE9F,EAAW,QAAa,CAAC,SAAAmG,EAAQ,EAAEtB,EAAY,QAAYuB,GAAiBL,GAAEG,IAAQ,EAAE,EAAEC,GAAS,OAAO,EAAE,KAAMC,KAAe,QAAU,CAAC,IAAMC,GAAKF,GAASJ,EAAC,EAAQ5B,GAAMpE,EAAKsG,GAAK,WAAWA,GAAK,UAAgBC,GAAOvG,EAAKsG,GAAK,YAAYA,GAAK,aAAmBjC,GAAID,GAAMmC,GAAaC,GAAU,IAAOL,IAAQ,EAAoB3H,GAAS4F,GAAMC,GAAI5F,CAAM,EAAgB,EAAE+H,GAAWH,GAAajC,GAAe4B,KAAII,GAAS,OAAO,IAAGC,GAAahC,IAAc8B,IAAQ,KAAqB3H,GAAS4F,GAAMC,GAAI5F,CAAM,EAAgB+H,GAAWH,GAAahC,GAAa2B,KAAI,IAAGK,GAAajC,KAAQ4B,IAAGG,CAAM,CAAC,OAAOE,EAAa,EAAQI,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAACzG,EAAa,QAAQyG,EAAS,IAAMC,EAAQ7G,EAAK,CAAC,KAAK4G,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAE9B,EAAY,QAAQ,SAAS,CAAC,GAAG+B,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAASC,GAAM,CAAC,GAAG,CAAC9G,EAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,CAAY,EAAE7F,EAAW,QAAQ0G,GAAKI,GAAMjB,GAAcf,EAAS,GAAG,CAAE,EAAQiC,GAAUb,GAAO,IAAI,CAAC,GAAG,CAAClG,EAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,EAAY,EAAE7F,EAAW,QAAc8F,GAAQ7B,GAAc,IAAI,EAAQ+C,GAAWnB,GAAaf,EAAemC,GAAYC,GAAM,EAAEpC,EAAS,EAAE,KAAK,MAAMgB,GAAQkB,EAAU,CAAC,EAAEH,GAASI,GAAYf,CAAK,CAAE,EAEphD,GAAGzE,IAAW,EAAG,OAAoB0F,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGxC,EAAS,GAAG/B,IAAkB,CAACD,GAAc,CAAC,QAAQiD,EAAE,EAAEA,EAAEjB,EAASiB,IAAI,CAAC,IAAMwB,EAAW5F,GAAU,CAACoE,GAAG,GAAMsB,GAAK,KAAkBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMzE,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY3D,GAAiB,WAAW6H,EAAW,gBAAgBhE,GAAkB,QAAQC,GAAY,QAAQ,IAAIqD,GAASd,CAAC,EAAE,cAAc9B,GAAc,WAAWjE,EAAW,MAAM8E,EAAS,MAAMiB,EAAE,IAAI3C,GAAQ,QAAQD,GAAY,KAAKpD,CAAI,CAAC,CAAC,CAAE,CAAI0D,KAAU6D,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ7D,EAAQ,MAAO,CAAC,OAAoBiE,EAAM,UAAU,CAAC,MAAMvC,GAAe,GAAGI,GAAa,SAAS,CAAc4B,EAAKQ,EAAO,GAAG,CAAC,IAAI9C,EAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBvC,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI5C,EAAa,QAAQ,OAAU,SAASwB,GAAS,IAAIF,EAAc,CAACoG,EAAMC,IAAQ,CAAC,IAAIC,GAAa,OAAoBX,EAAK,KAAK,CAAC,MAAMnC,GAAU,GAAGQ,GAAS,aAAa,GAAGqC,EAAM,CAAC,OAAOpG,CAAQ,GAAG,SAAsBsG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,GAAaF,EAAM,SAAS,MAAME,KAAe,OAAO,OAAOA,GAAa,MAAM,GAAG7C,EAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAeyC,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGM,GAAe,QAAQhE,GAAa,QAAQ,OAAO,cAAcjE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B2D,GAAkB,SAAS,CAAcyD,EAAKQ,EAAO,OAAO,CAAC,IAAIxD,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQqD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMxD,EAAU,OAAOA,EAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAeqD,EAAKQ,EAAO,OAAO,CAAC,IAAIvD,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,EAAU,OAAOA,EAAU,aAAaC,GAAY,OAAQ7D,EAAQ,EAAH,GAAK,QAAQ2D,GAAkB,QAAQ,MAAM,EAAE,QAAQqD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBI,EAAK,MAAM,CAAC,SAAS,QAAQ,IAAI,GAAG,MAAMxD,EAAU,OAAOA,EAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEsD,GAAK,OAAO,EAAeF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGc,GAAmB,KAAKlI,EAAK,MAAMkD,GAAU,IAAKlD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKkD,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAGgE,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAeF,EAAKe,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyBvH,GAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAAyBwH,GAAoBxH,GAAS,CAAC,MAAM,CAAC,KAAKyH,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO7G,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO7G,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAK6G,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO7G,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO7G,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAO7G,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAK6G,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAO7G,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO7G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,OAAO7G,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAK6G,EAAY,WAAW,MAAM,aAAa,OAAO7G,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAK6G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAO7G,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK6G,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6G,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK6G,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK6G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO7G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6G,EAAY,MAAM,MAAM,WAAW,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK6G,EAAY,MAAM,MAAM,OAAO,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK6G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAK6G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO7G,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK6G,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASZ,GAAI,CAAC,cAAAvD,EAAc,WAAAjE,EAAW,WAAAuH,EAAW,gBAAAe,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAJ,EAAS,YAAAhI,EAAY,IAAAoB,EAAI,QAAAgB,EAAQ,KAAA9B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAMkH,EAAQrJ,GAAa6E,EAAc3E,GAAG,CAAC,IAAIoJ,EAAoBC,EAAqB,GAAG,EAAG,GAAAD,EAAoB1I,EAAW,WAAW,MAAM0I,IAAsB,SAAcA,EAAoB,cAAe,OAAOb,IAAQ,EAAES,EAAgBC,EAAmB,IAAMvB,IAAa2B,EAAqB3I,EAAW,WAAW,MAAM2I,IAAuB,OAAO,OAAOA,EAAqB,cAAcH,EAAYI,EAAU5B,EAAWa,EAAYgB,EAAUD,EAAU5B,EAAsF,OAA1D1H,GAAGsJ,IAAYf,EAAMW,EAAM,EAAElJ,EAAEuJ,EAAUhB,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQO,EAAcjI,EAAI,EAAMkI,EAAI,CAAChJ,GAAM8H,EAAM,EAAEiB,EAAcjH,EAAYmH,EAAO,CAACjJ,GAAM8H,IAAQW,EAAM,EAAEM,EAAcjH,EAAYoH,EAAMlJ,GAAM8H,IAAQW,EAAM,EAAEM,EAAcjH,EAAYqH,EAAKnJ,GAAM8H,EAAM,EAAEiB,EAAcjH,EAAQ,OAAoBsF,EAAK,SAAS,CAAC,aAAa,kBAAkBU,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGtG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGsJ,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAsB/B,EAAKQ,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGF,EAAS,QAAAgB,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,IAAa,CAAC,OAAoBM,EAAM,UAAU,CAAC,MAAMyB,GAAkB,SAAS,CAAchC,EAAK,MAAM,CAAC,MAAMiC,GAAY,SAAS,QAAG,CAAC,EAAejC,EAAK,IAAI,CAAC,MAAMkC,GAAY,SAAS,oBAAoB,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASpB,IAAa,CAAC,OAAoBf,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgBl7T,CAAC,CAAC,CAAE,CAAa,IAAMgC,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECrF5PC,GAAU,UAAU,CAAC,wBAAwB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,kBAAkB,OAAO,SAAS,IAAI,uEAAuE,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,orBAAorB,0uBAA0uB,suBAAsuB,EAAeC,GAAU,eCAr9D,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAiBC,GAAoBF,EAAQ,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,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,GAAS,CAAC,CAAC,OAAAC,EAAO,KAAAC,EAAK,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAM,MAAM,CAAC,GAAGF,EAAM,UAAUH,GAAgCG,EAAM,UAAU,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,QAAQ,WAAWC,EAAMP,GAAgCK,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,QAAQ,CAAE,EAAQC,GAAuB,CAACH,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAlC,EAAQ,UAAAmC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASO,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,GAAgB,CAAC,eAAe,YAAY,gBAAAtD,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiBvB,GAAuBH,EAAMxB,CAAQ,EAAQmD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB5C,EAAK6C,GAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK8C,GAAK,CAAC,KAAKpB,EAAU,OAAO,YAAY,SAAsB1B,EAAKE,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAU,GAAGgB,GAAGhE,GAAkB,GAAG2D,EAAsB,gBAAgBpB,EAAUO,CAAU,CAAC,iBAAiB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,GAA6BqB,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGjB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,GAAGpC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBgB,EAAM9C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC,kBAAkB,CAAC,iBAAiB,wEAAwE,gBAAgB,uEAAuE,CAAC,EAAE,SAAsBrC,EAAKiD,EAA0B,CAAC,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBmC,EAAiB,SAAS,sBAAsB,SAAsBrC,EAAKrB,GAAS,CAAC,MAAM,kEAAkE,OAAO,OAAO,WAAW,QAAQ,cAAc6C,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,2FAA2F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,EAAE,iBAAiBmC,EAAiB,SAAS,qBAAqB,MAAM,CAAC,sBAAsB,iEAAiE,EAAE,KAAKZ,EAAU,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,qSAAqS,yRAAyR,kHAAkH,6LAA6L,uKAAuK,4nBAA4nB,+bAA+b,EASv2PC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,2BAA2BA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAqExE,IAAiB,eAAmB,CAAC,GAAGA,GAAiB,cAAiB,aAAa,SAAS,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAK,MAAM,QAAQ,KAAK4E,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAG3E,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT1gB,IAAMiF,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,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,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUJ,GAAmCI,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBtB,GAAuBH,EAAM1B,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKT,GAAqB,MAAMA,EAAU,GAAGiB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAAkH,GAAjHR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,IAAuBjB,GAAqB,MAAMA,EAAU,GAAGiB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBhD,EAAKiD,GAAY,CAAC,GAAG3B,GAA4CsB,EAAgB,SAAsB5C,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsB+D,EAAMhD,EAAO,IAAI,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAUsB,GAAGvE,GAAkB,GAAGkE,EAAsB,iBAAiBzB,EAAUM,CAAU,EAAE,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAIvB,GAA6B0B,EAAK,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGtB,CAAK,EAAE,GAAGtC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,MAAM2D,CAAY,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc9B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,CAAC,EAAE,kBAAkB/C,EAAkB,CAAC,EAAeY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,EAAenC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiB,GAAI,CAAC,kFAAkF,gFAAgF,iLAAiL,gMAAgM,iOAAiO,oOAAoO,6HAA6H,6FAA6F,2GAA2G,EASloMC,GAAgBC,GAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTgV,IAAMM,GAAYC,GAAOC,EAAK,EAAQC,GAAmBC,EAASC,EAAa,EAAQC,GAA2BF,EAASG,EAAqB,EAAQC,GAAyCC,GAA0BR,GAAOS,EAAO,GAAG,CAAC,EAAQC,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,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,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,GAASzB,EAAO,OAAa0B,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUJ,GAAsCI,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAU+B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAArC,EAAQ,UAAAsC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBrB,GAAuBH,EAAM3B,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAiBH,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAgBL,EAAsB,SAASI,IAAO,CAAC,GAAGhB,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQlB,IAAc,YAA6CmB,EAAOC,GAAU,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAa3B,EAAS,EAAQ4B,EAAkBC,GAAqB,EAAE,OAAoBjD,EAAKkD,GAAY,CAAC,GAAG7B,GAA4CwB,EAAgB,SAAsB7C,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKT,GAAW,CAAC,MAAMN,GAAY,SAAsBe,EAAKxB,EAAO,IAAI,CAAC,GAAG+C,EAAU,GAAGI,EAAgB,UAAUwB,GAAGzE,GAAkB,GAAGqE,EAAsB,iBAAiB3B,EAAUK,CAAU,EAAE,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6ByB,EAAK,MAAM,CAAC,GAAGrB,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAsBwB,EAAM5E,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByD,EAAiB,SAAS,qBAAqB,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAcjC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByD,EAAiB,SAAS,qBAAqB,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBjC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiByD,EAAiB,SAAS,qBAAqB,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,2BAA2B,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,IAAI,UAAU,0CAA0C,qBAAqB,YAAY,EAAE,SAAsBmB,EAAM5E,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiByD,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiByD,EAAiB,SAAS,YAAY,SAAsBjC,EAAKlC,GAAY,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQmE,IAAwFL,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBf,EAAiB,SAAS,YAAY,GAAGrD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQyE,IAAwFL,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAKsD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEN,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,KAAK,EAAE,GAAGpE,GAAqB,CAAC,UAAU,CAAC,GAAgEoE,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,EAAE,GAAG,KAAK,CAAC,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAsB5B,EAAKxB,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiByD,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK7B,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUkE,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGzD,GAAqB,CAAC,UAAU,CAAC,UAAU2D,EAAgB,QAAQ,WAAW,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,EAAY,GAAgBU,EAAM9E,GAAyC,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQe,GAAW,UAAU,iBAAiB,wBAAwB,UAAU,mBAAmB,WAAW,QAAQC,GAAW,iBAAiB2C,EAAiB,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,4UAA4U,EAAE,SAAS,CAAcjC,EAAKuD,GAAK,CAAC,KAAK,2BAA2B,OAAO,YAAY,aAAa,GAAM,SAAsBvD,EAAKxB,EAAO,EAAE,CAAC,UAAU,8BAA8B,cAAc,GAAK,mBAAmB,SAAS,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qEAAqE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBjC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,EAAE,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAKxB,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,EAAE,EAAE,SAAsBjC,EAAKxB,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByD,EAAiB,SAAS,YAAY,SAAsBjC,EAAKxB,EAAO,IAAI,CAAC,UAAU,eAAe,iBAAiByD,EAAiB,SAAS,YAAY,SAAsBmB,EAAM5E,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByD,EAAiB,SAAS,YAAY,SAAS,CAAcmB,EAAM5E,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiByD,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWE,EAAS,CAAC,SAAsBF,EAAKxB,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,OAAO,EAAE,iBAAiByD,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejC,EAAKyD,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,eAAe,gBAAgB,EAAE,eAAe,IAAI,iBAAiBxB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAuK,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAM5E,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiByD,EAAiB,SAAS,YAAY,SAAS,CAAcjC,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B3D,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAG1E,GAAqB,CAAC,UAAU,CAAC,MAAM,WAAwEoE,GAAkB,OAAQ,OAAO,iCAAiC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,CAAC,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAsB5B,EAAKxB,EAAO,IAAI,CAAC,UAAU,yBAAyB,iBAAiByD,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK3B,GAAsB,CAAC,OAAO,OAAO,UAAUsF,EAAc,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,UAAU,WAAW,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,cAAc,GAAG/E,GAAqB,CAAC,UAAU,CAAC,UAAU+E,EAAc,CAAC,CAAC,CAAC,EAAEnC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6B5D,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAG1E,GAAqB,CAAC,UAAU,CAAC,MAAM,WAAwEoE,GAAkB,OAAQ,OAAO,iCAAiC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,EAAE,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAsB5B,EAAKxB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByD,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK3B,GAAsB,CAAC,OAAO,OAAO,UAAUuF,EAAe,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,kBAAkB,GAAGhF,GAAqB,CAAC,UAAU,CAAC,UAAUgF,EAAe,CAAC,CAAC,CAAC,EAAEpC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5B,EAAK0D,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B7D,EAAKsD,EAA0B,CAAC,OAAO,GAAG,GAAG1E,GAAqB,CAAC,UAAU,CAAC,MAAM,WAAwEoE,GAAkB,OAAQ,OAAO,iCAAiC,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,EAAE,IAAI,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAG,EAAE,GAAG,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAsB5B,EAAKxB,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiByD,EAAiB,SAAS,sBAAsB,SAAsBjC,EAAK3B,GAAsB,CAAC,OAAO,OAAO,UAAUwF,EAAe,CAAC,EAAE,GAAG,YAAY,SAAS,YAAY,UAAU,eAAe,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,UAAU,OAAO,GAAGjF,GAAqB,CAAC,UAAU,CAAC,UAAUiF,EAAe,CAAC,CAAC,CAAC,EAAErC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkC,GAAI,CAAC,kFAAkF,gFAAgF,kPAAkP,2RAA2R,4TAA4T,oRAAoR,2QAA2Q,6QAA6Q,8LAA8L,wGAAwG,sWAAsW,wTAAwT,gHAAgH,iTAAiT,ySAAyS,qTAAqT,wRAAwR,qKAAqK,6FAA6F,8TAA8T,iOAAiO,0pEAA0pE,GAAeA,GAAI,+bAA+b,EAS9rvBC,GAAgBC,GAAQnD,GAAUiD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,wEAAwE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9F,GAAmB,GAAGG,GAA2B,GAAGiG,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT/nC,IAAMC,GAAYC,GAAOC,EAAK,EAAQC,GAAeF,GAAOG,CAAQ,EAAQC,GAAYC,EAASC,EAAM,EAAQC,GAA4BF,EAASG,EAAsB,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAAcN,EAASO,EAAQ,EAAQC,GAAkBR,EAASS,EAAY,EAAQC,GAAgBf,GAAOgB,EAAO,GAAG,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,MAAM,KAAK,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,OAAOF,GAAW,OAAO,GAAM,WAAW,EAAE,UAAU,GAAG,aAAa,OAAO,WAAWC,GAAY,QAAQ,WAAW,KAAK,QAAQ,EAAQE,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,EAAE,EAAQC,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,EAAE,EAAQE,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,IAAI,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,oBAAe,YAAY,aAAa,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,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ7C,GAAY,EAAK,EAAQsD,EAAe,OAA+CC,EAAkBC,GAAGtD,GAAkB,GAAhD,CAAC,CAAuE,EAAQuD,EAAUC,GAAkB,WAAW,EAAQC,EAAW1B,EAAO,IAAI,EAAQ2B,EAAWF,GAAkB,WAAW,EAAQG,EAAW5B,EAAO,IAAI,EAAQ6B,EAAWJ,GAAkB,WAAW,EAAQK,EAAW9B,EAAO,IAAI,EAAQ+B,EAAY,IAAQ,CAAC/D,GAAU,GAAiBkD,IAAc,YAA6Cc,EAAa,IAAShE,GAAU,EAAiBkD,IAAc,YAAtB,GAA6D,OAAAe,GAAiB,CAAC,CAAC,EAAsB5C,EAAK6C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAhE,EAAiB,EAAE,SAAsBiE,EAAMC,GAAY,CAAC,GAAGzB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeiD,EAAMrE,EAAO,IAAI,CAAC,GAAG+C,EAAU,UAAUU,GAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAK,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAsB8C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,SAAS,CAAc9C,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQoB,IAA2B/B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQ+B,IAA2B/B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,MAAM,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKxC,GAAY,CAAC,kBAAkB,CAAC,WAAWuB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQmE,IAA2B/B,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,MAAM,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,EAAelB,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,CAAc9C,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,SAAS,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,CAAc9C,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,SAAS,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBJ,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,sEAAsE,EAAE,SAAS,CAAc9C,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,SAAS,CAAC,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,OAAOd,GAAW,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAec,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrC,GAAe,CAAC,kBAAkB,CAAC,WAAWwB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBL,GAAU,eAAeM,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBY,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,iBAAiB,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,KAAK,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,MAAM,EAAE,KAAK,CAAC,EAAE,SAAsBlB,EAAKmD,EAA0B,CAAC,OAAO,GAAG,GAAGjC,GAAmB,GAAG,GAAG,EAAE,EAAE,GAAG,MAAM,EAAE,MAAM,SAAsBlB,EAAKoD,GAAU,CAAC,UAAU,2BAA2B,mBAAmB,iBAAiB,iBAAiB,GAAK,KAAK,iBAAiB,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAKjC,GAAO,CAAC,UAAU,CAAC,YAAY,4GAA4G,YAAY,QAAQ,YAAY,CAAC,EAAE,UAAU,GAAK,UAAU,aAAa,OAAO,OAAO,UAAU,wEAAwE,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,KAAK,iBAAiB,UAAU,qEAAqE,MAAM,CAAC,OAAO,MAAM,EAAE,UAAU,GAAG,UAAU,yHAAyH,QAAQ,YAAY,UAAU,0MAA0M,UAAU,aAAa,MAAM,OAAO,UAAU,EAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAK,SAAS,CAAC,UAAU,gBAAgB,mBAAmB,wBAAwB,SAAsBA,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQoB,IAA2B/B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,uFAAuF,OAAO,wVAAwV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ+B,IAA2B/B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,uFAAuF,OAAO,wVAAwV,CAAC,CAAC,EAAE,SAAsBlB,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQuF,IAA2B/B,GAAmB,GAAG,GAAG,EAAE,IAAI,GAAG,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,OAAO,mBAAmB,IAAI,uFAAuF,OAAO,wVAAwV,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4B,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,GAAGX,EAAU,IAAIE,EAAK,SAAS,CAAcS,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,kEAAkE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,kEAAkE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrC,GAAe,CAAC,kBAAkB,CAAC,WAAW2B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,OAAOd,GAAW,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,KAAK,CAAC,EAAE,SAAsBlB,EAAKmD,EAA0B,CAAC,OAAO,KAAK,MAAM,OAAOjC,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,GAAG,MAAM,SAAsBlB,EAAKoD,GAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK/B,GAAuB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,GAAGR,EAAW,IAAIC,EAAK,SAAS,CAAcO,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,kEAAkE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,kEAAkE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrC,GAAe,CAAC,kBAAkB,CAAC,WAAW2B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBS,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,OAAOd,GAAW,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe4D,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAc9C,EAAKmD,EAA0B,CAAC,SAAsBnD,EAAKoD,GAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAK7B,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,IAAI,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,CAAc2E,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcuB,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAesC,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,YAAY,GAAG,WAAW,GAAG,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAKqD,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,QAAQ,EAAE,IAAI,40UAA40U,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAerD,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,oKAAoK,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,EAAesC,EAAKvB,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBuB,EAAKqD,GAAI,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,IAAI,qyDAAqyD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAerD,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,iBAAiB,mBAAmB,wBAAwB,CAAC,EAAesC,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAM,OAAO,IAAI,yFAAyF,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,CAAC,EAAesC,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesC,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,GAAG,CAAC,EAAE,SAAsBlB,EAAKmD,EAA0B,CAAC,OAAO,GAAG,GAAGjC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,OAAO,GAAG,MAAM,EAAE,IAAI,SAAsBlB,EAAKoD,GAAU,CAAC,UAAU,0BAA0B,mBAAmB,iBAAiB,iBAAiB,GAAK,KAAK,iBAAiB,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAKjC,GAAO,CAAC,UAAU,CAAC,YAAY,4GAA4G,YAAY,QAAQ,YAAY,CAAC,EAAE,UAAU,GAAK,UAAU,aAAa,OAAO,OAAO,UAAU,wEAAwE,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,KAAK,iBAAiB,UAAU,qEAAqE,MAAM,CAAC,OAAO,MAAM,EAAE,UAAU,GAAG,UAAU,yHAAyH,QAAQ,YAAY,UAAU,0MAA0M,UAAU,aAAa,MAAM,OAAO,UAAU,EAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,GAAGN,EAAW,IAAIC,EAAK,SAAS,CAAczC,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,OAAOd,GAAW,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAec,EAAKmD,EAA0B,CAAC,SAAsBnD,EAAKoD,GAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAK3B,GAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,kEAAkE,aAAa,EAAE,YAAY,IAAI,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,IAAI,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAM,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,SAAS,EAAE,MAAM,CAAcyE,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAcuB,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,EAAeoF,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcuB,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,uYAAwX,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAMrE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAcuB,EAAKtC,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,0EAA0E,EAAE,UAAU,eAAe,CAAC,EAAeoF,EAAMrE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcuB,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,+QAAqQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,QAAQ,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAWlC,EAAW,EAAE,sBAAsB,GAAM,0BAA0B,CAAC,UAAU,OAAO,OAAOC,EAAU,EAAE,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBI,EAAKxB,GAAgB,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,kBAAkBgB,GAAmB,SAAsBsD,EAAM,MAAM,CAAC,UAAU,eAAe,SAAS,CAACJ,EAAY,GAAgB1C,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,CAAC,CAAC,EAAE,SAAsB7B,EAAKmD,EAA0B,CAAC,SAAsBnD,EAAKoD,GAAU,CAAC,UAAU,uEAAuE,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAKzB,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoE,EAAa,GAAgB3C,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,YAAY,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,SAAsB8C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc9C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAKxC,GAAY,CAAC,kBAAkB,CAAC,WAAWuB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQmE,GAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,EAAeH,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc9C,EAAKsD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBtD,EAAKvB,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,SAAsBuB,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBtD,EAAKvB,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,SAAsBuB,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBtD,EAAKvB,EAAO,EAAE,CAAC,UAAU,8BAA8B,mBAAmB,SAAS,SAAsBuB,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+DAA+D,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,wBAAwB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,GAAK,CAAC,KAAK,2BAA2B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBtD,EAAKvB,EAAO,EAAE,CAAC,UAAU,+BAA+B,cAAc,GAAK,mBAAmB,SAAS,SAAsBuB,EAAKgD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKpC,EAAS,CAAC,sBAAsB,GAAK,SAAsBoC,EAAWkD,EAAS,CAAC,SAAsBlD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,+BAA+B,uBAAuB,yDAAyD,qBAAqB,OAAO,0BAA0B,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,MAAM,CAAC,qBAAqB,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,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuD,GAAI,CAAC,kFAAkF,gFAAgF,qVAAqV,sWAAsW,mSAAmS,kHAAkH,+aAA+a,iSAAiS,iJAAiJ,uWAAuW,iNAAiN,sTAAsT,+TAA+T,gTAAgT,oTAAoT,yOAAyO,ibAAib,2HAA2H,8WAA8W,ibAAib,gRAAgR,4HAA4H,sGAAsG,kPAAkP,iMAAiM,mFAAmF,iLAAiL,qGAAqG,8LAA8L,mLAAmL,kLAAkL,kLAAkL,8WAA8W,2HAA2H,6dAA6d,4YAA4Y,wRAAwR,0UAA0U,+QAA+Q,+QAA+Q,0TAA0T,yZAAyZ,yGAAyG,kcAAkc,szBAAszB,4QAA4Q,6QAA6Q,8LAA8L,wRAAwR,kVAAkV,6OAA6O,mSAAmS,2tBAA2tB,0xJAA0xJ,gcAAgc,iNAAiN,uRAAuR,gQAAgQ,EAWpo3EC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,kBAAkB,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,wEAAwE,CAAC,CAAC,EAAE,GAAG3F,GAAY,GAAGG,GAA4B,GAAGE,GAAY,GAAGE,GAAc,GAAGE,EAAiB,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACz0B,IAAMsF,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,OAAO,4BAA8B,OAAO,oCAAsC,oMAA0O,uBAAyB,GAAG,qBAAuB,OAAO,yBAA2B,QAAQ,qBAAuB,iLAA+M,sBAAwB,IAAI,yBAA2B,OAAO,6BAA+B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "VideoFonts", "Video", "ButtonFonts", "LNCJ8JrMb_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_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", "nSQvgmbyz1i2owf5", "args", "nSQvgmbyz1pbse4f", "nSQvgmbyzi6zxjz", "nSQvgmbyz14b66u3", "nSQvgmbyz19q75dj", "nSQvgmbyz1xy3cxc", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerTgAOZR4ft", "withCSS", "TgAOZR4ft_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "_child_props", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "_scrollInfo_current", "_scrollInfo_current1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "link", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XBKzeTe4d", "M_VmQbagT", "hoET_jC_i", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "ComponentViewportProvider", "RichText2", "css", "FramerkgbjPZzFI", "withCSS", "kgbjPZzFI_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Jg17TNDCY", "Zyt70NhfG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1jikilu", "args", "onTap1f4oasp", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerzvEyb2MvP", "withCSS", "zvEyb2MvP_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "MenuHamburgerFonts", "getFonts", "zvEyb2MvP_default", "MegaNavResourcesIconsFonts", "kgbjPZzFI_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "animation1", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click3", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "cqo7OFqis", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "Jg17TNDCY11xcq9r", "args", "Jg17TNDCYf0uqob", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Link", "RichText2", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "Framergjx_tYCDR", "withCSS", "gjx_tYCDR_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "ButtonFonts", "getFonts", "LNCJ8JrMb_default", "FeatureCardGridSeeMoreFonts", "TgAOZR4ft_default", "TickerFonts", "Ticker", "CarouselFonts", "Carousel", "MessagingNavFonts", "gjx_tYCDR_default", "MotionDivWithFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "textEffect", "transition3", "animation2", "animation3", "transition4", "animation4", "transformTemplate1", "_", "t", "transition5", "animation5", "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", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "getLoadingLazyAtYPosition", "x", "ComponentViewportProvider", "Container", "SVG", "Link", "css", "FramerFa6cofW5Z", "withCSS", "Fa6cofW5Z_default", "addFonts", "__FramerMetadata__"]
}
