{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:prop-types@15.8.1/_/eb83dd95.js", "ssg:https://ga.jspm.io/npm:prop-types@15.8.1/index.js", "ssg:https://framerusercontent.com/modules/q6dHYxxM4UScL4Eexnm9/LV7ai599x8K1sZRzrBzp/Faq.js", "ssg:https://framerusercontent.com/modules/g9XQBu7M9U6gtih4aNxh/Qr7rBWASAn4yr3bjQgGB/VHZdW992p.js"],
  "sourcesContent": ["var _={};var a=\"SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED\";_=a;var r=_;export{r as _};\n\n//# sourceMappingURL=eb83dd95.js.map", "import{_ as e}from\"./_/eb83dd95.js\";var t={};var i=e;function emptyFunction(){}function emptyFunctionWithReset(){}emptyFunctionWithReset.resetWarningCache=emptyFunction;t=function(){function shim(e,t,n,r,s,m){if(m!==i){var o=new Error(\"Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types\");o.name=\"Invariant Violation\";throw o}}shim.isRequired=shim;function getShim(){return shim}var e={array:shim,bigint:shim,bool:shim,func:shim,number:shim,object:shim,string:shim,symbol:shim,any:shim,arrayOf:getShim,element:shim,elementType:shim,instanceOf:getShim,node:shim,objectOf:getShim,oneOf:getShim,oneOfType:getShim,shape:getShim,exact:getShim,checkPropTypes:emptyFunctionWithReset,resetWarningCache:emptyFunction};e.PropTypes=e;return e};var n=t;var r={};r=n();var s=r;export{s as default};\n\n//# sourceMappingURL=index.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState}from\"react\";import PropTypes from\"prop-types\";import{motion,AnimatePresence}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const FAQStyles={container:{display:\"flex\",flexDirection:\"column\",width:\"100%\"},question:{cursor:\"pointer\",display:\"flex\",alignItems:\"center\"},answer:{display:\"flex\",alignItems:\"start\",flexDirection:\"column\"},icon:{marginLeft:\"10px\",marginRight:\"10px\"}};const parsePadding=padding=>{if(!padding)return{};const[top,right,bottom,left]=padding.split(\" \").map(p=>p.trim());return{paddingTop:top,paddingRight:right,paddingBottom:bottom,paddingLeft:left};};export function FAQ(props){const{content:{questionsAndAnswers},fontStyles:{questionFont,answerFont,questionFontSize,answerFontSize,questionColor,answerColor,questionBackground,answerBackground},transition:{transitionDuration,transitionEase,damping,stiffness,delay},icons:{iconClosed,iconOpen,iconSize,iconPosition,iconMarginLeft,iconMarginRight},layout:{questionPadding,answerPadding,questionGap,questionBorderRadius,questionBorderColor,questionBorderWidth},behavior:{openFirstAnswer}}=props;const[activeIndex,setActiveIndex]=useState(openFirstAnswer?0:null);const toggleAnswer=index=>{setActiveIndex(activeIndex===index?null:index);};return /*#__PURE__*/_jsx(\"div\",{style:{...FAQStyles.container},children:questionsAndAnswers.map((qa,index)=>/*#__PURE__*/_jsx(\"div\",{style:{marginBottom:index===questionsAndAnswers.length-1?\"0px\":questionGap},children:/*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:questionBorderRadius,overflow:\"hidden\",borderColor:questionBorderColor,borderWidth:questionBorderWidth,borderStyle:\"solid\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:{...FAQStyles.question,justifyContent:iconPosition===\"right\"?\"space-between\":\"start\",fontFamily:questionFont.fontFamily,fontSize:questionFontSize,fontWeight:questionFont.fontWeight,color:questionColor,background:questionBackground,...parsePadding(questionPadding)},onClick:()=>toggleAnswer(index),children:[iconPosition===\"left\"&&/*#__PURE__*/_jsx(\"img\",{src:activeIndex===index?iconOpen:iconClosed,alt:\"icon\",style:{...FAQStyles.icon,width:iconSize,height:iconSize,marginLeft:iconMarginLeft,marginRight:iconMarginRight,order:-1}}),qa.question,iconPosition===\"right\"&&/*#__PURE__*/_jsx(\"img\",{src:activeIndex===index?iconOpen:iconClosed,alt:\"icon\",style:{...FAQStyles.icon,width:iconSize,height:iconSize,marginLeft:iconMarginLeft,marginRight:iconMarginRight,order:1}})]}),/*#__PURE__*/_jsx(AnimatePresence,{children:activeIndex===index&&/*#__PURE__*/_jsx(motion.div,{style:{...FAQStyles.answer,fontFamily:answerFont.fontFamily,fontSize:answerFontSize,fontWeight:answerFont.fontWeight,color:answerColor,background:answerBackground,...parsePadding(answerPadding)},initial:{height:.8,opacity:0},animate:{height:\"auto\",opacity:1},exit:{height:0,opacity:0},transition:{duration:transitionDuration,ease:transitionEase,type:transitionEase===\"bounce\"?\"spring\":\"tween\",damping:damping,stiffness:stiffness,delay:delay},dangerouslySetInnerHTML:{__html:qa.answer}})})]})},index))});}FAQ.propTypes={content:PropTypes.shape({questionsAndAnswers:PropTypes.arrayOf(PropTypes.shape({question:PropTypes.string.isRequired,answer:PropTypes.string.isRequired}))}),fontStyles:PropTypes.shape({questionFont:PropTypes.shape({fontFamily:PropTypes.string,fontWeight:PropTypes.string}),answerFont:PropTypes.shape({fontFamily:PropTypes.string,fontWeight:PropTypes.string}),questionFontSize:PropTypes.number,answerFontSize:PropTypes.number,questionColor:PropTypes.string,answerColor:PropTypes.string,questionBackground:PropTypes.string,answerBackground:PropTypes.string}),transition:PropTypes.shape({transitionDuration:PropTypes.number,transitionEase:PropTypes.oneOf([\"easeInOut\",\"linear\",\"easeIn\",\"easeOut\",\"bounce\"]),damping:PropTypes.number,stiffness:PropTypes.number,delay:PropTypes.number}),icons:PropTypes.shape({iconClosed:PropTypes.string,iconOpen:PropTypes.string,iconSize:PropTypes.string,iconPosition:PropTypes.oneOf([\"left\",\"right\"]),iconMarginLeft:PropTypes.string,iconMarginRight:PropTypes.string}),layout:PropTypes.shape({questionPadding:PropTypes.string,answerPadding:PropTypes.string,questionGap:PropTypes.string,questionBorderRadius:PropTypes.string,questionBorderColor:PropTypes.string,questionBorderWidth:PropTypes.string}),behavior:PropTypes.shape({openFirstAnswer:PropTypes.bool})};FAQ.defaultProps={content:{questionsAndAnswers:[{question:\"What is your name?\",answer:\"My name is John Doe.\"},{question:\"What do you do?\",answer:\"I am a no-code developer.\"}]},fontStyles:{questionFont:{fontFamily:\"Inter\",fontWeight:\"bold\"},answerFont:{fontFamily:\"Inter\",fontWeight:\"normal\"},questionFontSize:16,answerFontSize:14,questionColor:\"#000\",answerColor:\"#333\",questionBackground:\"#fff\",answerBackground:\"#f9f9f9\"},transition:{transitionDuration:.5,transitionEase:\"easeInOut\",damping:40,stiffness:400,delay:0},icons:{iconClosed:null,iconOpen:null,iconSize:\"20px\",iconPosition:\"left\",iconMarginLeft:\"10px\",iconMarginRight:\"10px\"},layout:{questionPadding:\"10px 10px 10px 10px\",answerPadding:\"10px 10px 10px 10px\",questionGap:\"10px\",questionBorderRadius:\"0px\",questionBorderColor:\"#ccc\",questionBorderWidth:\"1px\"},behavior:{openFirstAnswer:false}};addPropertyControls(FAQ,{content:{type:ControlType.Object,title:\"Content\",controls:{questionsAndAnswers:{type:ControlType.Array,title:\"Questions & Answers\",propertyControl:{type:ControlType.Object,controls:{question:{type:ControlType.String,title:\"Question\",displayTextArea:true},answer:{type:ControlType.String,title:\"Answer\",displayTextArea:true}}}}}},fontStyles:{type:ControlType.Object,title:\"Styles\",controls:{questionFont:{title:\"Question Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:\"bold\"}},answerFont:{title:\"Answer Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:\"normal\"}},questionFontSize:{type:ControlType.Number,title:\"Question Font Size\",defaultValue:16,min:10,max:200,step:1},answerFontSize:{type:ControlType.Number,title:\"Answer Font Size\",defaultValue:14,min:10,max:200,step:1},questionColor:{type:ControlType.Color,title:\"Question Color\",defaultValue:\"#000\"},answerColor:{type:ControlType.Color,title:\"Answer Color\",defaultValue:\"#333\"},questionBackground:{type:ControlType.Color,title:\"Question Background\",defaultValue:\"#fff\"},answerBackground:{type:ControlType.Color,title:\"Answer Background\",defaultValue:\"#f9f9f9\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}}},transition:{type:ControlType.Object,title:\"Transition\",controls:{transitionDuration:{type:ControlType.Number,title:\"Duration\",defaultValue:.5,min:.1,max:2,step:.1},transitionEase:{type:ControlType.Enum,title:\"Ease\",defaultValue:\"easeInOut\",options:[\"easeInOut\",\"linear\",\"easeIn\",\"easeOut\",\"bounce\"],optionTitles:[\"Ease In Out\",\"Linear\",\"Ease In\",\"Ease Out\",\"Bounce\"]},damping:{type:ControlType.Number,title:\"Damping\",defaultValue:40,min:0,max:200,step:1},stiffness:{type:ControlType.Number,title:\"Stiffness\",defaultValue:400,min:0,max:1e3,step:1},delay:{type:ControlType.Number,title:\"Delay\",defaultValue:0,min:0,max:5,step:.1,description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}}},icons:{type:ControlType.Object,title:\"Icons\",controls:{iconClosed:{type:ControlType.Image,title:\"Closed Icon\"},iconOpen:{type:ControlType.Image,title:\"Open Icon\"},iconSize:{type:ControlType.String,title:\"Size\",defaultValue:\"20px\"},iconPosition:{type:ControlType.Enum,title:\"Position\",defaultValue:\"left\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"]},iconMarginLeft:{type:ControlType.String,title:\"Left Margin\",defaultValue:\"10px\"},iconMarginRight:{type:ControlType.String,title:\"Right Margin\",defaultValue:\"10px\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}}},layout:{type:ControlType.Object,title:\"Layout\",controls:{questionPadding:{type:ControlType.String,title:\"Question Padding (top right bottom left)\",defaultValue:\"10px 10px 10px 10px\"},answerPadding:{type:ControlType.String,title:\"Answer Padding (top right bottom left)\",defaultValue:\"10px 10px 10px 10px\"},questionGap:{type:ControlType.String,title:\"Gap\",defaultValue:\"10px\"},questionBorderRadius:{type:ControlType.String,title:\"Radius\",defaultValue:\"0px\"},questionBorderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#ccc\"},questionBorderWidth:{type:ControlType.String,title:\"Border Width\",defaultValue:\"1px\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}}},behavior:{type:ControlType.Object,title:\"Behavior\",controls:{openFirstAnswer:{type:ControlType.Boolean,title:\"Open First\",defaultValue:false,description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"FAQ\":{\"type\":\"reactComponent\",\"name\":\"FAQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Faq.map", "// Generated by Framer (55cf326)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{FAQ}from\"https://framerusercontent.com/modules/q6dHYxxM4UScL4Eexnm9/LV7ai599x8K1sZRzrBzp/Faq.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import*as sharedStyle from\"#framer/local/css/TDjD2zGmr/TDjD2zGmr.js\";import metadataProvider from\"#framer/local/webPageMetadata/VHZdW992p/VHZdW992p.js\";const IconoirFonts=getFonts(Iconoir);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const FAQFonts=getFonts(FAQ);const breakpoints={EqR0sZVSD:\"(max-width: 1199px)\",HiRds26Lz:\"(min-width: 1200px) and (max-width: 1869px)\",JXy5DfIay:\"(min-width: 1870px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Qhm0I\";const variantClassNames={EqR0sZVSD:\"framer-v-l2jnx0\",HiRds26Lz:\"framer-v-vd2q33\",JXy5DfIay:\"framer-v-am5xi3\"};const transition1={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition1};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const transition2={delay:0,duration:1.5,ease:[.21,.61,0,1],type:\"tween\"};const animation2={opacity:1,rotate:-15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:620,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:1,rotate:-15,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:620,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:620,y:0};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:620,y:0};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:20,y:0};const transition3={delay:0,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:20,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:20,y:0};const transition5={delay:.05,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:20,y:0};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const transition6={delay:.1,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:20,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition1};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition1};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const transition7={delay:.15,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:20,y:0};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const transition8={delay:.2,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:20,y:0};const animation19={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const transition9={delay:.25,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:20,y:0};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={delay:.3,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:20,y:0};const animation23={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const transition11={delay:.35,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:20,y:0};const animation25={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition11,x:0,y:0};const transition12={delay:.4,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:20,y:0};const animation27={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition12,x:0,y:0};const transition13={delay:.45,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation28={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:20,y:0};const animation29={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:0};const transition14={delay:.55,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:20,y:0};const animation31={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:0};const transition15={delay:.6,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:20,y:0};const animation33={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:0};const transition16={delay:.7,duration:1.5,ease:[.12,.76,0,1.01],type:\"tween\"};const animation34={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:20,y:0};const animation35={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"HiRds26Lz\",FullDesktop:\"JXy5DfIay\",Phone:\"EqR0sZVSD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HiRds26Lz\"};};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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const onClick3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"EqR0sZVSD\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"EqR0sZVSD\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HiRds26Lz\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-vd2q33\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9969k3\",\"data-framer-name\":\"Nav Bar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b3ah4c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yuuqnk\",\"data-framer-name\":\"Other Pages\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wg8e71\",\"data-framer-name\":\"User\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"b8wC2tmOJ\",scopeId:\"VHZdW992p\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:64,intrinsicWidth:64,loading:getLoadingLazyAtYPosition(16.5),pixelHeight:3600,pixelWidth:3600,sizes:\"36px\",src:\"https://framerusercontent.com/images/uozJcPG1VNQG5GxBctKPj8AA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/uozJcPG1VNQG5GxBctKPj8AA.png?scale-down-to=512 512w,https://framerusercontent.com/images/uozJcPG1VNQG5GxBctKPj8AA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uozJcPG1VNQG5GxBctKPj8AA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uozJcPG1VNQG5GxBctKPj8AA.png 3600w\"},className:\"framer-14pbzqq framer-1jxafb4\",\"data-framer-name\":\"8 DIMENSION WELLNESS LOGO-06icon\"})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iGXN5rtea\"},motionChild:true,nodeId:\"ciVvKHu4e\",scopeId:\"VHZdW992p\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jeprw8 framer-1jxafb4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m4hifr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pOEkkgfil\",scopeId:\"VHZdW992p\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, rgb(15, 14, 14))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ProfileCircled\",id:\"pOEkkgfil\",layoutId:\"pOEkkgfil\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dOCyOwPNg\"},motionChild:true,nodeId:\"uj0xGkfDu\",scopeId:\"VHZdW992p\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nnqvnf framer-1jxafb4\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16j851b-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"p53mmjZEU\",scopeId:\"VHZdW992p\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, rgb(15, 14, 14))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"MessageText\",id:\"p53mmjZEU\",layoutId:\"p53mmjZEU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14my9ad\",\"data-framer-name\":\"Navigation\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ul87vf\",whileHover:animation,whileTap:animation1,children:/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1afywrt-container\",id:\"1afywrt\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nUtBaGbms\",scopeId:\"VHZdW992p\",children:[/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, rgb(15, 14, 14))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Menu\",id:\"nUtBaGbms\",layoutId:\"nUtBaGbms\",mirrored:false,onClick:onClick3bnx0g({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1},className:cx(scopingClassNames,\"framer-18c0s11\"),\"data-framer-portal-id\":\"1afywrt\",exit:{opacity:0},initial:{opacity:0},onTap:()=>overlay.hide(),transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},\"ccq5vBbu0\"),/*#__PURE__*/_jsx(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-peqfvu\"),\"data-framer-portal-id\":\"1afywrt\",exit:animation2,initial:animation4,style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(motion.div,{animate:animation3,className:cx(scopingClassNames,\"framer-j8vr3a\"),\"data-framer-portal-id\":\"1afywrt\",exit:animation5,initial:animation6,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTcwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Navigation Menu\"})}),className:\"framer-7hm918\",fonts:[\"GF;Lexend-700\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-r8amf2\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation11,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(255, 243, 237, 0.56)\",\"--framer-text-transform\":\"uppercase\"},children:\"Main Pages\"})}),className:\"framer-1gyuk85\",exit:animation10,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation15,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"XsPVtn9M9\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Home\"})})})}),className:\"framer-1ymrkbv\",exit:animation12,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation17,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"n8EZXRGKX\"},motionChild:true,nodeId:\"FuJt2q9pa\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Services\"})})})}),className:\"framer-yczh3j\",exit:animation16,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation19,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sebePnWOZ\"},motionChild:true,nodeId:\"Wxcwy4e2_\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"About Us\"})})})}),className:\"framer-7czjzg\",exit:animation18,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation19,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EEiWWlKFh\"},motionChild:true,nodeId:\"AGHk3yfHf\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Testimonials\"})})})}),className:\"framer-516j0z\",exit:animation18,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation19,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"FAQ\"})}),className:\"framer-i8d3i2\",exit:animation18,fonts:[\"GF;Lexend-600\"],initial:animation7,onTap:onTap1wnntms({overlay}),style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation21,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nDqAD0UY8\"},motionChild:true,nodeId:\"lGWMm5hpd\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Blog / Resources\"})})})}),className:\"framer-1mjrrbs\",exit:animation20,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation21,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DC_6Z0mDJ\"},motionChild:true,nodeId:\"AMU9S2n0U\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Contact Us\"})})})}),className:\"framer-1kaklst\",exit:animation20,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m9ykqa\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation23,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(255, 243, 237, 0.56)\",\"--framer-text-transform\":\"uppercase\"},children:\"Member Pages\"})}),className:\"framer-10q5rol\",exit:animation22,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation25,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iGXN5rtea\"},motionChild:true,nodeId:\"t9Mr0Sa1w\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Login / Sign Up\"})})})}),className:\"framer-1ai4w2r\",exit:animation24,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation27,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dOCyOwPNg\"},motionChild:true,nodeId:\"SXojOsmBt\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Dashboard\"})})})}),className:\"framer-wf6mx4\",exit:animation26,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation29,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dOCyOwPNg\"},motionChild:true,nodeId:\"s73CGcBw2\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Forum\"})})})}),className:\"framer-fmg8pa\",exit:animation28,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e4fbxb\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation31,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(255, 243, 237, 0.56)\",\"--framer-text-transform\":\"uppercase\"},children:\"Socials\"})}),className:\"framer-1x9jm38\",exit:animation30,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation33,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/8_dimensionspathway\",motionChild:true,nodeId:\"MG0bqRUAT\",openInNewTab:false,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Instagram\"})})})}),className:\"framer-182fbdv\",exit:animation32,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation35,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/share/1GFKFuxcfp/?mibextid=wwXIfr\",motionChild:true,nodeId:\"Y0rhUQndR\",openInNewTab:true,scopeId:\"VHZdW992p\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1xurh20\",\"data-styles-preset\":\"TDjD2zGmr\",children:\"Facebook\"})})})}),className:\"framer-ugofj1\",exit:animation34,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation7,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1yu4sgw\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation31,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1.9px\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgba(255, 243, 237, 0.56)\",\"--framer-text-transform\":\"uppercase\"},children:\"Corporate\"})}),className:\"framer-6f6upj\",exit:animation30,fonts:[\"GF;Lexend-600\"],initial:animation7,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,animate:animation33,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTYwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Home\"})}),className:\"framer-1awlmei\",exit:animation32,fonts:[\"GF;Lexend-600\"],initial:animation7,onTap:onTap1wnntms({overlay}),style:{transformPerspective:1200},verticalAlignment:\"top\",whileHover:animation13,whileTap:animation14,withExternalLayout:true})]})]})]}),getContainer())})})]})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10uo89r\"})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-um2zl1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-151ksww\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gxao19\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ignjb\",\"data-framer-name\":\"FAQs\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6h37ta\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EqR0sZVSD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtcmVndWxhcg==\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--token-0153e584-9df9-4a72-88c3-4bc9d0323c9a, rgb(29, 79, 45))\"},children:\"Frequently Asked\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtcmVndWxhcg==\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--token-0153e584-9df9-4a72-88c3-4bc9d0323c9a, rgb(29, 79, 45))\"},children:\"Questions\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),fonts:[\"GF;Lexend Deca-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kIERlY2EtNTAw\",\"--framer-font-family\":'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-0153e584-9df9-4a72-88c3-4bc9d0323c9a, rgb(29, 79, 45))\"},children:\"Frequently Asked Questions\"}),/*#__PURE__*/_jsx(\"p\",{children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-1s6qb43\",fonts:[\"GF;Lexend Deca-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10m282d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jRgAD3exe\",scopeId:\"VHZdW992p\",children:/*#__PURE__*/_jsx(FAQ,{behavior:{openFirstAnswer:false},content:{questionsAndAnswers:[{answer:\"Eight Dimensions Wellness Pathway, LLC is a holistic wellness consulting firm that helps individuals\\nand organizations achieve balanced, purpose-driven living by addressing eight interconnected areas\\nof well-being: physical, emotional, spiritual, social, financial, occupational, intellectual, and\\nenvironmental.\",question:\"What is the Eight Dimensions Wellness Pathway?\"},{answer:\"Our services benefit individuals, churches, nonprofit organizations, businesses, and community\\ngroups seeking to improve overall well-being, productivity, and purpose.\",question:\"Who can benefit from the Eight Dimensions Wellness Pathway?\"},{answer:\"Our core framework is faith-informed, rooted in Christian values, but we also provide general\\nwellness consulting that is adaptable to secular or multi-faith contexts.\",question:\"Is the wellness program faith-based or secular?\"},{answer:\"We uniquely blend biblical wisdom, public health best practices, and personalized coaching to\\ncreate practical, sustainable pathways to holistic well-being.\",question:\"What makes Eight Dimensions Wellness Pathway different from other wellness programs?\"},{answer:\"You can get started by completing our intake form, which includes a general wellness assessment.\\nAfterward, we schedule a one-on-one consultation to review your results.\",question:\"How do I get started with a personal wellness assessment?\"},{answer:\"Each consultation includes a personalized wellness review, goal setting, and recommendations\\ntailored to your top three areas of improvement across the eight dimensions.\",question:\"What is included in a standard wellness consultation?\"},{answer:\"Programs vary based on client needs, but most include a 3- to 6-month pathway plan, with progress\\nreviews every 30 days.\",question:\"How long does the typical wellness program last?\"},{answer:\"Our initial membership fee is $199 per year. Other services are offered \\xe0 la carte or as packages\\nbased on the level of engagement.\",question:\"How much does it cost to enroll in the program or become a member?\"}]},fontStyles:{answerBackground:\"var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, rgb(15, 14, 14))\",answerColor:\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\",answerFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},answerFontSize:18,questionBackground:\"var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, rgb(15, 14, 14))\",questionColor:\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\",questionFont:{fontFamily:'\"Lexend Deca\", \"Lexend Deca Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:400},questionFontSize:21},height:\"100%\",icons:{iconClosed:\"https://framerusercontent.com/images/U4PzYkDCXd4rEQxM11Z4L7qkU.png\",iconMarginLeft:\"0px\",iconMarginRight:\"0px\",iconOpen:\"https://framerusercontent.com/images/tasq2xYCrgmEucftPIxU76Fwerk.png\",iconPosition:\"right\",iconSize:\"20px\"},id:\"jRgAD3exe\",layout:{answerPadding:\"10px 20px 20px 40px\",questionBorderColor:\"rgba(61, 61, 61, 0)\",questionBorderRadius:\"20px\",questionBorderWidth:\"1px\",questionGap:\"24px\",questionPadding:\"20px 20px 20px 20px\"},layoutId:\"jRgAD3exe\",style:{width:\"100%\"},transition:{damping:40,delay:0,stiffness:400,transitionDuration:.1,transitionEase:\"linear\"},width:\"100%\"})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18rob2j\",\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-na522x\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j2xdbl hidden-l2jnx0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Email: eightdimensionspathway@gmail.com\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Phone: 434 941 5818\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Instagram: @8_dimensionspathway\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Facebook: @8Dimensions-Wellness-Pathway\"})]}),className:\"framer-f1pxkz\",fonts:[\"GF;Lexend-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fap3k9 hidden-l2jnx0\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"25.5px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Website by Laxamentum Ltd\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"JacobBerwick.Laxamentum@gmail.com\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TGV4ZW5kLTMwMA==\",\"--framer-font-family\":'\"Lexend\", \"Lexend Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"917 697 3620\"})]}),className:\"framer-1ry1eam\",fonts:[\"GF;Lexend-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-92ar88 hidden-vd2q33 hidden-am5xi3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4qbwez\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Email: eightdimensionspathway@gmail.com\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Phone: 434 941 5818\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Instagram: @8_dimensionspathway\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Facebook: @8Dimensions-Wellness-Pathway\"})]}),className:\"framer-1d8cjst\",fonts:[\"GF;Geologica-100\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rfzu51\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"Website by Laxamentum Ltd\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"JacobBerwick.Laxamentum@gmail.com\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2VvbG9naWNhLTEwMA==\",\"--framer-font-family\":'\"Geologica\", sans-serif',\"--framer-font-size\":\"9px\",\"--framer-font-weight\":\"100\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, rgb(255, 243, 237))\"},children:\"917 697 3620\"})]}),className:\"framer-1oo43n8\",fonts:[\"GF;Geologica-100\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qhm0I.framer-1jxafb4, .framer-Qhm0I .framer-1jxafb4 { display: block; }\",\".framer-Qhm0I.framer-vd2q33 { align-content: center; align-items: center; background-color: var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, #fff3ed); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-Qhm0I .framer-9969k3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 70px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: fixed; top: 0px; width: 100%; z-index: 6; }\",\".framer-Qhm0I .framer-1b3ah4c { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 70px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Qhm0I .framer-yuuqnk { align-content: center; align-items: center; background-color: var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, #fff3ed); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 5px 15px 5px 15px; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-wg8e71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: 80%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 33%; }\",\".framer-Qhm0I .framer-14pbzqq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 36px); overflow: visible; position: relative; text-decoration: none; width: 36px; }\",\".framer-Qhm0I .framer-1jeprw8, .framer-Qhm0I .framer-nnqvnf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 32px; }\",\".framer-Qhm0I .framer-1m4hifr-container, .framer-Qhm0I .framer-16j851b-container, .framer-Qhm0I .framer-1afywrt-container { aspect-ratio: 1 / 1; flex: none; height: 80%; position: relative; width: var(--framer-aspect-ratio-supported, 26px); }\",\".framer-Qhm0I .framer-14my9ad { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: visible; padding: 10px 5px 10px 5px; position: relative; width: 15%; }\",\".framer-Qhm0I .framer-ul87vf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 32px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Qhm0I.framer-18c0s11 { inset: 0px; position: fixed; user-select: none; z-index: 9; }\",\".framer-Qhm0I.framer-peqfvu { background-color: var(--token-0153e584-9df9-4a72-88c3-4bc9d0323c9a, #d11f19); bottom: -170px; flex: none; overflow: hidden; position: fixed; right: -85px; top: -156px; width: 453px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-Qhm0I.framer-j8vr3a { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; justify-content: flex-start; overflow: visible; padding: 48px 48px 48px 38px; position: fixed; right: 0px; top: 0px; width: 251px; will-change: var(--framer-will-change-effect-override, transform); z-index: 9; }\",\".framer-Qhm0I .framer-7hm918, .framer-Qhm0I .framer-1s6qb43 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qhm0I .framer-r8amf2, .framer-Qhm0I .framer-1m9ykqa, .framer-Qhm0I .framer-1e4fbxb, .framer-Qhm0I .framer-1yu4sgw { align-content: flex-end; align-items: flex-end; 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-Qhm0I .framer-1gyuk85, .framer-Qhm0I .framer-10q5rol, .framer-Qhm0I .framer-1x9jm38, .framer-Qhm0I .framer-6f6upj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Qhm0I .framer-1ymrkbv, .framer-Qhm0I .framer-yczh3j, .framer-Qhm0I .framer-7czjzg, .framer-Qhm0I .framer-516j0z, .framer-Qhm0I .framer-1mjrrbs, .framer-Qhm0I .framer-1kaklst, .framer-Qhm0I .framer-1ai4w2r, .framer-Qhm0I .framer-wf6mx4, .framer-Qhm0I .framer-fmg8pa, .framer-Qhm0I .framer-182fbdv, .framer-Qhm0I .framer-ugofj1 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Qhm0I .framer-i8d3i2, .framer-Qhm0I .framer-1awlmei { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-Qhm0I .framer-10uo89r { background-color: var(--token-986a6bb8-7748-4dba-8439-15781458c0ae, #fff3ed); flex: none; height: 3px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-um2zl1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-151ksww { background-color: #ffffff; flex: none; height: 70px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-1gxao19 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-3ignjb { 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 20px 20px 20px; position: relative; width: min-content; }\",\".framer-Qhm0I .framer-6h37ta { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 1160px; }\",\".framer-Qhm0I .framer-10m282d-container { flex: none; height: auto; position: relative; width: 1120px; }\",\".framer-Qhm0I .framer-18rob2j { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-na522x { align-content: center; align-items: center; background-color: var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, #0f0e0e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 128px; justify-content: space-between; overflow: hidden; padding: 25px; position: relative; width: 100%; }\",\".framer-Qhm0I .framer-1j2xdbl, .framer-Qhm0I .framer-1fap3k9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 90px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Qhm0I .framer-f1pxkz, .framer-Qhm0I .framer-1ry1eam, .framer-Qhm0I .framer-1d8cjst, .framer-Qhm0I .framer-1oo43n8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qhm0I .framer-92ar88 { align-content: center; align-items: center; background-color: var(--token-3bff1106-78be-40a2-b200-1fe2dab7d9f1, #0f0e0e); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100px; justify-content: space-between; overflow: hidden; padding: 5px; position: relative; width: 1px; }\",\".framer-Qhm0I .framer-4qbwez, .framer-Qhm0I .framer-1rfzu51 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 55px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",...sharedStyle.css,\"@media (min-width: 1870px) { .framer-Qhm0I.framer-vd2q33, .framer-Qhm0I .framer-151ksww { width: 1870px; } .framer-Qhm0I .framer-um2zl1, .framer-Qhm0I .framer-6h37ta { width: min-content; } .framer-Qhm0I .framer-1gxao19 { height: 890px; width: min-content; } .framer-Qhm0I .framer-3ignjb { align-content: flex-start; align-items: flex-start; }}\",\"@media (max-width: 1199px) { .framer-Qhm0I.framer-vd2q33 { width: 390px; } .framer-Qhm0I .framer-9969k3 { flex-direction: column; } .framer-Qhm0I .framer-1b3ah4c { flex: none; width: 100%; } .framer-Qhm0I .framer-14pbzqq { height: var(--framer-aspect-ratio-supported, 34px); } .framer-Qhm0I .framer-1m4hifr-container, .framer-Qhm0I .framer-16j851b-container, .framer-Qhm0I .framer-1afywrt-container { width: var(--framer-aspect-ratio-supported, 200px); } .framer-Qhm0I .framer-1gxao19, .framer-Qhm0I .framer-6h37ta { width: min-content; } .framer-Qhm0I .framer-10m282d-container { width: 320px; } .framer-Qhm0I .framer-na522x { gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1055\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JXy5DfIay\":{\"layout\":[\"fixed\",\"auto\"]},\"EqR0sZVSD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerVHZdW992p=withCSS(Component,css,\"framer-Qhm0I\");export default FramerVHZdW992p;FramerVHZdW992p.displayName=\"Page\";FramerVHZdW992p.defaultProps={height:1055,width:1200};addFonts(FramerVHZdW992p,[{explicitInter:true,fonts:[{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v24/wlptgwvFAVdoq2_F94zlCfv0bz1WC9wR_LVte6KuGEo.woff2\",weight:\"700\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v24/wlptgwvFAVdoq2_F94zlCfv0bz1WC-UR_LVte6KuGEo.woff2\",weight:\"600\"},{family:\"Lexend Deca\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexenddeca/v22/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U4ws1AqRPCqLNflg.woff2\",weight:\"500\"},{family:\"Lexend Deca\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexenddeca/v22/K2FifZFYk-dHSE0UPPuwQ7CrD94i-NCKm-U48M1AqRPCqLNflg.woff2\",weight:\"400\"},{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Lexend\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lexend/v24/wlptgwvFAVdoq2_F94zlCfv0bz1WC2UW_LVte6KuGEo.woff2\",weight:\"300\"},{family:\"Geologica\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geologica/v1/oY1o8evIr7j9P3TN9YwNAdyjzUyDKkKdAGOJh1UlCDUIhAIdhCZOn1fLsig7jfvCCPHZckU8H3G11_z-_OZqDx_qQ-YYAXWnqFs.woff2\",weight:\"100\"}]},...IconoirFonts,...FAQFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVHZdW992p\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1055\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JXy5DfIay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EqR0sZVSD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"* @framerResponsiveScreen\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "klBAAA,IAAIA,GAAE,CAAC,EAAMC,GAAE,+CAA+CD,GAAEC,GAAE,IAAIC,GAAEF,GCApC,IAAIG,GAAE,CAAC,EAAMC,GAAEC,GAAE,SAASC,IAAe,CAAC,CAAC,SAASC,IAAwB,CAAC,CAACA,GAAuB,kBAAkBD,GAAcH,GAAE,UAAU,CAAC,SAASK,EAAKC,EAAEN,EAAEO,EAAEL,EAAEM,EAAEC,EAAE,CAAC,GAAGA,IAAIR,GAAE,CAAC,IAAIS,EAAE,IAAI,MAAM,iLAAiL,EAAE,MAAAA,EAAE,KAAK,sBAA4BA,CAAC,CAAC,CAACL,EAAK,WAAWA,EAAK,SAASM,GAAS,CAAC,OAAON,CAAI,CAAC,IAAIC,EAAE,CAAC,MAAMD,EAAK,OAAOA,EAAK,KAAKA,EAAK,KAAKA,EAAK,OAAOA,EAAK,OAAOA,EAAK,OAAOA,EAAK,OAAOA,EAAK,IAAIA,EAAK,QAAQM,EAAQ,QAAQN,EAAK,YAAYA,EAAK,WAAWM,EAAQ,KAAKN,EAAK,SAASM,EAAQ,MAAMA,EAAQ,UAAUA,EAAQ,MAAMA,EAAQ,MAAMA,EAAQ,eAAeP,GAAuB,kBAAkBD,EAAa,EAAE,OAAAG,EAAE,UAAUA,EAASA,CAAC,EAAE,IAAIC,GAAEP,GAAME,GAAE,CAAC,EAAEA,GAAEK,GAAE,EAAE,IAAIC,EAAEN,GCA1pB,IAAMU,EAAU,CAAC,UAAU,CAAC,QAAQ,OAAO,cAAc,SAAS,MAAM,MAAM,EAAE,SAAS,CAAC,OAAO,UAAU,QAAQ,OAAO,WAAW,QAAQ,EAAE,OAAO,CAAC,QAAQ,OAAO,WAAW,QAAQ,cAAc,QAAQ,EAAE,KAAK,CAAC,WAAW,OAAO,YAAY,MAAM,CAAC,EAAQC,GAAaC,GAAS,CAAC,GAAG,CAACA,EAAQ,MAAM,CAAC,EAAE,GAAK,CAACC,EAAIC,EAAMC,EAAOC,CAAI,EAAEJ,EAAQ,MAAM,GAAG,EAAE,IAAIK,GAAGA,EAAE,KAAK,CAAC,EAAE,MAAM,CAAC,WAAWJ,EAAI,aAAaC,EAAM,cAAcC,EAAO,YAAYC,CAAI,CAAE,EAAS,SAASE,EAAIC,EAAM,CAAC,GAAK,CAAC,QAAQ,CAAC,oBAAAC,CAAmB,EAAE,WAAW,CAAC,aAAAC,EAAa,WAAAC,EAAW,iBAAAC,EAAiB,eAAAC,EAAe,cAAAC,EAAc,YAAAC,EAAY,mBAAAC,EAAmB,iBAAAC,CAAgB,EAAE,WAAW,CAAC,mBAAAC,EAAmB,eAAAC,EAAe,QAAAC,EAAQ,UAAAC,EAAU,MAAAC,EAAK,EAAE,MAAM,CAAC,WAAAC,EAAW,SAAAC,EAAS,SAAAC,EAAS,aAAAC,EAAa,eAAAC,EAAe,gBAAAC,CAAe,EAAE,OAAO,CAAC,gBAAAC,EAAgB,cAAAC,EAAc,YAAAC,EAAY,qBAAAC,EAAqB,oBAAAC,EAAoB,oBAAAC,CAAmB,EAAE,SAAS,CAAC,gBAAAC,EAAe,CAAC,EAAE3B,EAAW,CAAC4B,EAAYC,EAAc,EAAEC,GAASH,GAAgB,EAAE,IAAI,EAAQI,GAAaC,GAAO,CAACH,GAAeD,IAAcI,EAAM,KAAKA,CAAK,CAAE,EAAE,OAAoBlC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGP,EAAU,SAAS,EAAE,SAASU,EAAoB,IAAI,CAACgC,EAAGD,IAAqBlC,EAAK,MAAM,CAAC,MAAM,CAAC,aAAakC,IAAQ/B,EAAoB,OAAO,EAAE,MAAMsB,CAAW,EAAE,SAAsBW,EAAM,MAAM,CAAC,MAAM,CAAC,aAAaV,EAAqB,SAAS,SAAS,YAAYC,EAAoB,YAAYC,EAAoB,YAAY,OAAO,EAAE,SAAS,CAAcQ,EAAM,MAAM,CAAC,MAAM,CAAC,GAAG3C,EAAU,SAAS,eAAe2B,IAAe,QAAQ,gBAAgB,QAAQ,WAAWhB,EAAa,WAAW,SAASE,EAAiB,WAAWF,EAAa,WAAW,MAAMI,EAAc,WAAWE,EAAmB,GAAGhB,GAAa6B,CAAe,CAAC,EAAE,QAAQ,IAAIU,GAAaC,CAAK,EAAE,SAAS,CAACd,IAAe,QAAqBpB,EAAK,MAAM,CAAC,IAAI8B,IAAcI,EAAMhB,EAASD,EAAW,IAAI,OAAO,MAAM,CAAC,GAAGxB,EAAU,KAAK,MAAM0B,EAAS,OAAOA,EAAS,WAAWE,EAAe,YAAYC,EAAgB,MAAM,EAAE,CAAC,CAAC,EAAEa,EAAG,SAASf,IAAe,SAAsBpB,EAAK,MAAM,CAAC,IAAI8B,IAAcI,EAAMhB,EAASD,EAAW,IAAI,OAAO,MAAM,CAAC,GAAGxB,EAAU,KAAK,MAAM0B,EAAS,OAAOA,EAAS,WAAWE,EAAe,YAAYC,EAAgB,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetB,EAAKqC,EAAgB,CAAC,SAASP,IAAcI,GAAoBlC,EAAKsC,EAAO,IAAI,CAAC,MAAM,CAAC,GAAG7C,EAAU,OAAO,WAAWY,EAAW,WAAW,SAASE,EAAe,WAAWF,EAAW,WAAW,MAAMI,EAAY,WAAWE,EAAiB,GAAGjB,GAAa8B,CAAa,CAAC,EAAE,QAAQ,CAAC,OAAO,GAAG,QAAQ,CAAC,EAAE,QAAQ,CAAC,OAAO,OAAO,QAAQ,CAAC,EAAE,KAAK,CAAC,OAAO,EAAE,QAAQ,CAAC,EAAE,WAAW,CAAC,SAASZ,EAAmB,KAAKC,EAAe,KAAKA,IAAiB,SAAS,SAAS,QAAQ,QAAQC,EAAQ,UAAUC,EAAU,MAAMC,EAAK,EAAE,wBAAwB,CAAC,OAAOmB,EAAG,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAED,CAAK,CAAC,CAAC,CAAC,CAAE,CAACjC,EAAI,UAAU,CAAC,QAAQsC,EAAU,MAAM,CAAC,oBAAoBA,EAAU,QAAQA,EAAU,MAAM,CAAC,SAASA,EAAU,OAAO,WAAW,OAAOA,EAAU,OAAO,UAAU,CAAC,CAAC,CAAC,CAAC,EAAE,WAAWA,EAAU,MAAM,CAAC,aAAaA,EAAU,MAAM,CAAC,WAAWA,EAAU,OAAO,WAAWA,EAAU,MAAM,CAAC,EAAE,WAAWA,EAAU,MAAM,CAAC,WAAWA,EAAU,OAAO,WAAWA,EAAU,MAAM,CAAC,EAAE,iBAAiBA,EAAU,OAAO,eAAeA,EAAU,OAAO,cAAcA,EAAU,OAAO,YAAYA,EAAU,OAAO,mBAAmBA,EAAU,OAAO,iBAAiBA,EAAU,MAAM,CAAC,EAAE,WAAWA,EAAU,MAAM,CAAC,mBAAmBA,EAAU,OAAO,eAAeA,EAAU,MAAM,CAAC,YAAY,SAAS,SAAS,UAAU,QAAQ,CAAC,EAAE,QAAQA,EAAU,OAAO,UAAUA,EAAU,OAAO,MAAMA,EAAU,MAAM,CAAC,EAAE,MAAMA,EAAU,MAAM,CAAC,WAAWA,EAAU,OAAO,SAASA,EAAU,OAAO,SAASA,EAAU,OAAO,aAAaA,EAAU,MAAM,CAAC,OAAO,OAAO,CAAC,EAAE,eAAeA,EAAU,OAAO,gBAAgBA,EAAU,MAAM,CAAC,EAAE,OAAOA,EAAU,MAAM,CAAC,gBAAgBA,EAAU,OAAO,cAAcA,EAAU,OAAO,YAAYA,EAAU,OAAO,qBAAqBA,EAAU,OAAO,oBAAoBA,EAAU,OAAO,oBAAoBA,EAAU,MAAM,CAAC,EAAE,SAASA,EAAU,MAAM,CAAC,gBAAgBA,EAAU,IAAI,CAAC,CAAC,EAAEtC,EAAI,aAAa,CAAC,QAAQ,CAAC,oBAAoB,CAAC,CAAC,SAAS,qBAAqB,OAAO,sBAAsB,EAAE,CAAC,SAAS,kBAAkB,OAAO,2BAA2B,CAAC,CAAC,EAAE,WAAW,CAAC,aAAa,CAAC,WAAW,QAAQ,WAAW,MAAM,EAAE,WAAW,CAAC,WAAW,QAAQ,WAAW,QAAQ,EAAE,iBAAiB,GAAG,eAAe,GAAG,cAAc,OAAO,YAAY,OAAO,mBAAmB,OAAO,iBAAiB,SAAS,EAAE,WAAW,CAAC,mBAAmB,GAAG,eAAe,YAAY,QAAQ,GAAG,UAAU,IAAI,MAAM,CAAC,EAAE,MAAM,CAAC,WAAW,KAAK,SAAS,KAAK,SAAS,OAAO,aAAa,OAAO,eAAe,OAAO,gBAAgB,MAAM,EAAE,OAAO,CAAC,gBAAgB,sBAAsB,cAAc,sBAAsB,YAAY,OAAO,qBAAqB,MAAM,oBAAoB,OAAO,oBAAoB,KAAK,EAAE,SAAS,CAAC,gBAAgB,EAAK,CAAC,EAAEuC,GAAoBvC,EAAI,CAAC,QAAQ,CAAC,KAAKwC,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,oBAAoB,CAAC,KAAKA,EAAY,MAAM,MAAM,sBAAsB,gBAAgB,CAAC,KAAKA,EAAY,OAAO,SAAS,CAAC,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,gBAAgB,EAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,gBAAgB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,aAAa,CAAC,MAAM,gBAAgB,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,MAAM,CAAC,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,QAAQ,CAAC,EAAE,iBAAiB,CAAC,KAAKA,EAAY,OAAO,MAAM,qBAAqB,aAAa,GAAG,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC,EAAE,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,mBAAmB,aAAa,GAAG,IAAI,GAAG,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,MAAM,MAAM,iBAAiB,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,eAAe,aAAa,MAAM,EAAE,mBAAmB,CAAC,KAAKA,EAAY,MAAM,MAAM,sBAAsB,aAAa,MAAM,EAAE,iBAAiB,CAAC,KAAKA,EAAY,MAAM,MAAM,oBAAoB,aAAa,UAAU,YAAY,iFAAiF,CAAC,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,SAAS,CAAC,mBAAmB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,GAAG,IAAI,GAAG,IAAI,EAAE,KAAK,EAAE,EAAE,eAAe,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,aAAa,YAAY,QAAQ,CAAC,YAAY,SAAS,SAAS,UAAU,QAAQ,EAAE,aAAa,CAAC,cAAc,SAAS,UAAU,WAAW,QAAQ,CAAC,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,GAAG,YAAY,iFAAiF,CAAC,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,SAAS,CAAC,WAAW,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,EAAE,SAAS,CAAC,KAAKA,EAAY,MAAM,MAAM,WAAW,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,MAAM,EAAE,aAAa,CAAC,KAAKA,EAAY,KAAK,MAAM,WAAW,aAAa,OAAO,QAAQ,CAAC,OAAO,OAAO,EAAE,aAAa,CAAC,OAAO,OAAO,CAAC,EAAE,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,aAAa,MAAM,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,OAAO,YAAY,iFAAiF,CAAC,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,2CAA2C,aAAa,qBAAqB,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,yCAAyC,aAAa,qBAAqB,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,MAAM,EAAE,qBAAqB,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,KAAK,EAAE,oBAAoB,CAAC,KAAKA,EAAY,MAAM,MAAM,eAAe,aAAa,MAAM,EAAE,oBAAoB,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,MAAM,YAAY,iFAAiF,CAAC,CAAC,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,gBAAgB,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,GAAM,YAAY,iFAAiF,CAAC,CAAC,CAAC,CAAC,ECC/tP,IAAMC,GAAaC,GAASC,CAAO,EAAQC,GAAeC,EAAOC,CAAQ,EAAQC,EAAgBF,EAAOG,EAAO,GAAG,EAAQC,GAASP,GAASQ,CAAG,EAAQC,GAAY,CAAC,UAAU,sBAAsB,UAAU,8CAA8C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAQC,EAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,CAAW,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,CAAW,EAAQG,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWJ,GAAY,EAAE,IAAI,EAAE,CAAC,EAAQK,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,EAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,KAAK,MAAM,EAAE,MAAM,EAAE,WAAWnB,CAAW,EAAQoB,EAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWpB,CAAW,EAAQqB,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWJ,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQK,GAAY,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAY,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,IAAI,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,EAAE,IAAI,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAa,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAY,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWF,GAAa,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAa,IAAY,SAAS,cAAc,mBAAmB,GAAG,SAAS,cAAc,UAAU,GAAG,SAAS,KAAaC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,YAAY,YAAY,MAAM,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,EAAY,GAAO,IAAI,EAAQC,EAAWF,GAAKC,EAAkBE,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,EAAErB,GAASI,CAAK,EAAQkB,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,EAAmB,EAAEC,GAA8BR,EAAQzF,GAAY,EAAK,EAAQkG,EAAe,OAAe,CAAC,sBAAAC,EAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAc,CAAC,CAAC,QAAAC,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,IAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAa,CAAC,CAAC,QAAAH,EAAQ,SAAAC,CAAQ,IAAIL,EAAsB,SAASM,IAAO,CAACF,EAAQ,KAAK,CAAE,CAAC,EAA4DI,EAAkBC,EAAG1G,GAAkB,GAArE,CAAaqF,EAAS,CAAuE,EAAQsB,EAAY,IAAS5G,GAAU,EAAiB8F,IAAc,YAAtB,GAAmEe,EAAa,IAAQ,CAAC7G,GAAU,GAAiB8F,IAAc,YAAuC,OAAAgB,GAAiB,CAAC,CAAC,EAAsB5C,EAAK6C,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7G,EAAiB,EAAE,SAAsB8G,EAAMC,GAAY,CAAC,GAAG1B,GAAUT,EAAgB,SAAS,CAAcZ,EAAKH,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeiD,EAAMpH,EAAO,IAAI,CAAC,GAAG6F,EAAU,UAAUkB,EAAGD,EAAkB,gBAAgBpB,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcnB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB8C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc9C,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBhD,EAAKiD,GAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,GAAG,QAAQC,GAA0B,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAO,IAAI,sFAAsF,OAAO,wVAAwV,EAAE,UAAU,gCAAgC,mBAAmB,kCAAkC,CAAC,CAAC,CAAC,EAAelD,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,gCAAgC,SAAsBsE,EAAKmD,EAA0B,CAAC,SAAsBnD,EAAKoD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAK3E,EAAQ,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,iBAAiB,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsBsE,EAAKmD,EAA0B,CAAC,SAAsBnD,EAAKoD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAK3E,EAAQ,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBA,EAAKtE,EAAO,IAAI,CAAC,UAAU,gBAAgB,WAAWQ,GAAU,SAASC,GAAW,SAAsB6D,EAAKV,GAAQ,CAAC,SAAS8C,GAAsBpC,EAAKqD,EAAU,CAAC,SAAsBrD,EAAKmD,EAA0B,CAAC,SAAsBL,EAAMM,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAS,CAAcpD,EAAK3E,EAAQ,CAAC,MAAM,qEAAqE,OAAO,OAAO,WAAW,OAAO,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQ8G,EAAc,CAAC,QAAAC,CAAO,CAAC,EAAE,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,EAAepC,EAAKsD,EAAgB,CAAC,SAASlB,EAAQ,SAAsBpC,EAAKqD,EAAU,CAAC,SAA+BE,GAA0BT,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAKtE,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,EAAE,UAAU+G,EAAGD,EAAkB,gBAAgB,EAAE,wBAAwB,UAAU,KAAK,CAAC,QAAQ,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAIJ,EAAQ,KAAK,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,WAAW,EAAepC,EAAKtE,EAAO,IAAI,CAAC,QAAQY,GAAW,UAAUmG,EAAGD,EAAkB,eAAe,EAAE,wBAAwB,UAAU,KAAKnG,GAAW,QAAQE,GAAW,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAeuG,EAAMpH,EAAO,IAAI,CAAC,QAAQY,GAAW,UAAUmG,EAAGD,EAAkB,eAAe,EAAE,wBAAwB,UAAU,KAAKhG,GAAW,QAAQC,GAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcuD,EAAK1E,GAAe,CAAC,kBAAkB,CAAC,WAAWqB,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,EAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBoD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,eAAe,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe8C,EAAMrH,EAAgB,CAAC,kBAAkB,CAAC,WAAWoB,CAAW,EAAE,sBAAsB,GAAM,gBAAgBH,EAAW,eAAeI,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAckD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQyB,GAAY,SAAsB+C,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,0BAA0B,QAAQ,sBAAsB,4BAA4B,0BAA0B,WAAW,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKhD,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQN,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQ8B,GAAY,SAAsB0C,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKyB,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQT,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWU,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,EAAe2C,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQiC,GAAY,SAAsBuC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAK8B,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQd,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWU,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,EAAe2C,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQoC,GAAY,SAAsBoC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAKiC,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQjB,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWU,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,EAAe2C,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQoC,GAAY,SAAsBoC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAKiC,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQjB,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWU,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,EAAe2C,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQoC,GAAY,SAAsBoC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAKrC,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQjB,EAAW,MAAM6F,EAAa,CAAC,QAAAH,CAAO,CAAC,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWhF,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,EAAe2C,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQuC,GAAY,SAAsBiC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKoC,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQpB,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWU,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,EAAe2C,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQuC,GAAY,SAAsBiC,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKoC,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQpB,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWU,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeyF,EAAMrH,EAAgB,CAAC,kBAAkB,CAAC,WAAWoB,CAAW,EAAE,sBAAsB,GAAM,gBAAgBH,EAAW,eAAeI,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAckD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQ0C,GAAY,SAAsB8B,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,0BAA0B,QAAQ,sBAAsB,4BAA4B,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAK/B,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQvB,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQ6C,GAAY,SAAsB2B,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAK0C,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQ1B,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQgD,GAAY,SAAsBwB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAK6C,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQ7B,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQmD,GAAY,SAAsBqB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAKgD,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQhC,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeoG,EAAMrH,EAAgB,CAAC,kBAAkB,CAAC,WAAWoB,CAAW,EAAE,sBAAsB,GAAM,gBAAgBH,EAAW,eAAeI,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAckD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQsD,GAAY,SAAsBkB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,0BAA0B,QAAQ,sBAAsB,4BAA4B,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKnB,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQnC,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQyD,GAAY,SAAsBe,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,gDAAgD,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKsD,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQtC,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQ4D,GAAY,SAAsBY,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAKgD,EAAK,CAAC,KAAK,6DAA6D,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,aAAa,GAAM,SAAsBhD,EAAKtE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAKyD,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQzC,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeoG,EAAMrH,EAAgB,CAAC,kBAAkB,CAAC,WAAWoB,CAAW,EAAE,sBAAsB,GAAM,gBAAgBH,EAAW,eAAeI,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAckD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQsD,GAAY,SAAsBkB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,0BAA0B,QAAQ,sBAAsB,4BAA4B,0BAA0B,WAAW,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,KAAKnB,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQnC,EAAW,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesD,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,QAAQyD,GAAY,SAAsBe,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,KAAKhB,GAAY,MAAM,CAAC,eAAe,EAAE,QAAQtC,EAAW,MAAM6F,EAAa,CAAC,QAAAH,CAAO,CAAC,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,WAAWhF,EAAY,SAASC,EAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,GAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAc9C,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsB8C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAc9C,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,SAAsBA,EAAKyD,GAAkB,CAAC,WAAW7B,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBkB,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,uDAAuD,qBAAqB,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,uDAAuD,qBAAqB,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,WAAW,CAAC,EAAeA,EAAK,IAAI,CAAC,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,wBAAwB,CAAC,CAAC,EAAE,SAAsBA,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,SAAsBsH,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,oEAAoE,EAAE,SAAS,4BAA4B,CAAC,EAAeA,EAAK,IAAI,CAAC,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKmD,EAA0B,CAAC,SAAsBnD,EAAKoD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBpD,EAAKpE,EAAI,CAAC,SAAS,CAAC,gBAAgB,EAAK,EAAE,QAAQ,CAAC,oBAAoB,CAAC,CAAC,OAAO;AAAA;AAAA;AAAA,gBAA8T,SAAS,gDAAgD,EAAE,CAAC,OAAO;AAAA,0EAA2K,SAAS,6DAA6D,EAAE,CAAC,OAAO;AAAA,2EAA2K,SAAS,iDAAiD,EAAE,CAAC,OAAO;AAAA,gEAAgK,SAAS,sFAAsF,EAAE,CAAC,OAAO;AAAA,0EAA6K,SAAS,2DAA2D,EAAE,CAAC,OAAO;AAAA,8EAA6K,SAAS,uDAAuD,EAAE,CAAC,OAAO;AAAA,wBAA4H,SAAS,kDAAkD,EAAE,CAAC,OAAO;AAAA,mCAA0I,SAAS,oEAAoE,CAAC,CAAC,EAAE,WAAW,CAAC,iBAAiB,qEAAqE,YAAY,wEAAwE,WAAW,CAAC,WAAW,2CAA2C,UAAU,SAAS,WAAW,GAAG,EAAE,eAAe,GAAG,mBAAmB,qEAAqE,cAAc,wEAAwE,aAAa,CAAC,WAAW,uDAAuD,UAAU,SAAS,WAAW,GAAG,EAAE,iBAAiB,EAAE,EAAE,OAAO,OAAO,MAAM,CAAC,WAAW,qEAAqE,eAAe,MAAM,gBAAgB,MAAM,SAAS,uEAAuE,aAAa,QAAQ,SAAS,MAAM,EAAE,GAAG,YAAY,OAAO,CAAC,cAAc,sBAAsB,oBAAoB,sBAAsB,qBAAqB,OAAO,oBAAoB,MAAM,YAAY,OAAO,gBAAgB,qBAAqB,EAAE,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,WAAW,CAAC,QAAQ,GAAG,MAAM,EAAE,UAAU,IAAI,mBAAmB,GAAG,eAAe,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoE,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAsB8C,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACJ,EAAY,GAAgB1C,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,SAAsBsH,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yCAAyC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE0C,EAAY,GAAgB1C,EAAK,MAAM,CAAC,UAAU,+BAA+B,SAAsBA,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,SAAsBsH,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,mCAAmC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,6CAA6C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,QAAQ,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,eAAe,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE2C,EAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,4CAA4C,SAAS,CAAc9C,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,SAAsBsH,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,yCAAyC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,iCAAiC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,sBAAsB,uEAAuE,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKxE,EAAS,CAAC,sBAAsB,GAAK,SAAsBsH,EAAYU,EAAS,CAAC,SAAS,CAAcxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,2BAA2B,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,mCAAmC,CAAC,EAAeA,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,MAAM,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,QAAQ,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,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,EAAQ0D,GAAI,CAAC,kFAAkF,kFAAkF,sVAAsV,mUAAmU,0QAA0Q,6VAA6V,wQAAwQ,oMAAoM,4TAA4T,qPAAqP,sRAAsR,yUAAyU,+FAA+F,uSAAuS,kYAAkY,4NAA4N,iXAAiX,iZAAiZ,whBAAwhB,uRAAuR,8LAA8L,8QAA8Q,4IAA4I,mRAAmR,oSAAoS,0SAA0S,2GAA2G,yRAAyR,iVAAiV,4SAA4S,6MAA6M,kVAAkV,2SAA2S,GAAeA,GAAI,2VAA2V,ksBAAksB,EAa9qpDC,EAAgBC,GAAQrD,GAAUmD,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,EAAE,CAAC,OAAO,cAAc,OAAO,SAAS,MAAM,SAAS,IAAI,sGAAsG,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,uEAAuE,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,2FAA2F,OAAO,KAAK,EAAE,CAAC,OAAO,YAAY,OAAO,SAAS,MAAM,SAAS,IAAI,qJAAqJ,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxI,GAAa,GAAGQ,GAAS,GAAGoI,GAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/3F,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,OAAO,yBAA2B,QAAQ,6BAA+B,OAAO,kBAAoB,OAAO,oCAAsC,4JAA0L,qBAAuB,OAAO,qBAAuB,OAAO,yBAA2B,OAAO,4BAA8B,OAAO,sBAAwB,IAAI,qBAAuB,2BAA2B,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["_", "a", "r", "t", "i", "r", "emptyFunction", "emptyFunctionWithReset", "shim", "e", "n", "s", "m", "o", "getShim", "FAQStyles", "parsePadding", "padding", "top", "right", "bottom", "left", "p", "FAQ", "props", "questionsAndAnswers", "questionFont", "answerFont", "questionFontSize", "answerFontSize", "questionColor", "answerColor", "questionBackground", "answerBackground", "transitionDuration", "transitionEase", "damping", "stiffness", "delay", "iconClosed", "iconOpen", "iconSize", "iconPosition", "iconMarginLeft", "iconMarginRight", "questionPadding", "answerPadding", "questionGap", "questionBorderRadius", "questionBorderColor", "questionBorderWidth", "openFirstAnswer", "activeIndex", "setActiveIndex", "ye", "toggleAnswer", "index", "qa", "u", "AnimatePresence", "motion", "s", "addPropertyControls", "ControlType", "IconoirFonts", "getFonts", "Icon", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "FAQFonts", "FAQ", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "animation7", "transition3", "animation8", "transition4", "animation9", "transition5", "animation10", "animation11", "transition6", "animation12", "animation13", "animation14", "animation15", "transition7", "animation16", "animation17", "transition8", "animation18", "animation19", "transition9", "animation20", "animation21", "transition10", "animation22", "animation23", "transition11", "animation24", "animation25", "transition12", "animation26", "animation27", "transition13", "animation28", "animation29", "transition14", "animation30", "animation31", "transition15", "animation32", "animation33", "transition16", "animation34", "animation35", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick3bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "Link", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "Container", "l", "AnimatePresence", "Ga", "x", "PropertyOverrides2", "css", "FramerVHZdW992p", "withCSS", "VHZdW992p_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
