{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js", "ssg:https://framerusercontent.com/modules/kCf2rIwYAMCBaNW1CLcN/4ybeMeHyK9CuYzaIYcsM/dDK1VKcxZ.js", "ssg:https://framerusercontent.com/modules/a6kwumqexXNALfUOvx0e/HBiOzFEsJy6XThjHYFnV/ho5QA9G44.js", "ssg:https://framerusercontent.com/modules/XzpkyyDAY9e2oGBD6s1k/MfUxYl0ZTEltHGsFVmzT/bmd15BjYa.js", "ssg:https://framerusercontent.com/modules/l8KhMDdcZL1WJlslYne6/w1gYRQDtBJtNRbxA26Hz/oQggsgEZ9.js", "ssg:https://framerusercontent.com/modules/m4bXnpT0YKogv8KLiFos/r6WS76NQX7wj8c9DhVlO/QBNajWZdU.js", "ssg:https://framerusercontent.com/modules/t9ocBpSLvvgJmx0gHS6y/S5VvGAQduTERSLgve6oS/rZxsEorCR.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */function SVG(props){const[customSvgElement,setCustomSvgElement]=useState(null);useEffect(()=>{const svgContent=props.customSvgCode;processCustomSVGContent(svgContent);});const processCustomSVGContent=svgContent=>{const replacements=[[/width=\"[^\"]*\"/,'width=\"100%\"'],[/height=\"[^\"]*\"/,'height=\"100%\"']];const hasCustomStroke=svgContent.includes('stroke=\"');const hasCustomStrokeWidth=svgContent.includes('stroke-width=\"');const hasLineCap=svgContent.includes('stroke-linecap=\"');const hasLineJoin=svgContent.includes('stroke-linejoin=\"');if(svgContent.includes(\"<circle\")){const circleFillRegex=/<circle[^>]*fill=\"([^\"]*)\"/;const match=svgContent.match(circleFillRegex);if(match){const updatedCircle=match[0].replace(match[1],props.customColor);svgContent=svgContent.replace(circleFillRegex,updatedCircle);}else{replacements.push([/<circle/g,`<circle fill=\"${props.customColor}\"`]);}}if(hasCustomStroke){if(!hasLineCap){replacements.push([/<path/g,`<path stroke=\"${props.customColor}\"`]);}else{replacements.push([/<path/g,`<path stroke=\"${props.customColor}\" stroke-linecap=\"${props.lineCap}\"`]);}if(hasCustomStrokeWidth){replacements.push([/stroke-width=\"(?!0\\b)\\d+(\\.\\d+)?\"/g,`stroke-width=\"${props.customStrokeWidth}\"`]);}}else{replacements.push([/<path/g,`<path fill=\"${props.customColor}\"`]);}if(svgContent.includes('overflow=\"')){replacements.push([/overflow=\"[^\"]*\"/,`overflow=\"visible\"`]);}else{replacements.push([/<svg/,`<svg overflow=\"visible\"`]);}if(!hasLineJoin){replacements.push([/<path/g,`<path stroke-linejoin=\"${props.lineJoin}\"`]);}else{replacements.push([/stroke-linejoin=\"[^\"]*\"/,`stroke-linejoin=\"${props.lineJoin}\"`]);}replacements.forEach(([regex,replacement])=>{svgContent=svgContent.replace(regex,replacement);});setCustomSvgElement(svgContent);};const customContainerStyle={padding:`${props.customPadding}px`,display:\"flex\",flexDirection:\"column\",alignItems:\"center\",justifyContent:\"center\",overflow:\"visible\"};const accessibilityProps={role:\"img\",...props.title&&{\"aria-label\":props.title},...props.description&&{\"aria-description\":props.description}};return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:customSvgElement},style:customContainerStyle,...accessibilityProps});}SVG.displayName=\"SVG\";SVG.defaultProps={customSvgCode:`<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>`,customColor:\"#ffffff\",customPadding:0,customStrokeWidth:2,lineCap:\"butt\",lineJoin:\"miter\",title:\"\",description:\"\"};addPropertyControls(SVG,{customSvgCode:{type:ControlType.String,title:\"SVG Code\",displayTextArea:false},customColor:{type:ControlType.Color,title:\"Color\",defaultValue:\"#ffffff\"},customPadding:{type:ControlType.Number,title:\"Padding\",defaultValue:0,min:0,step:1,displayStepper:true},customStrokeWidth:{type:ControlType.Number,title:\"Stroke\",defaultValue:2,min:0,step:.1,displayStepper:true,hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineCap:{type:ControlType.Enum,title:\"Line Cap\",options:[\"butt\",\"round\",\"square\"],optionTitles:[\"Butt\",\"Round\",\"Square\"],defaultValue:\"butt\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},lineJoin:{type:ControlType.Enum,title:\"Line Join\",options:[\"round\",\"miter\",\"bevel\"],optionTitles:[\"Round\",\"Miter\",\"Bevel\"],defaultValue:\"miter\",hidden:props=>!props.customSvgCode.includes('stroke=\"')},title:{type:ControlType.String,title:\"Title\",defaultValue:\"\",placeholder:\"Icon name...\"},description:{type:ControlType.String,title:\"Description\",defaultValue:\"\",placeholder:\"Icon purpose...\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});export default SVG;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVG\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVG_Prod.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SVG from\"https://framerusercontent.com/modules/I1DC9cTt2FcHsDUAaRxW/6iIIX4SzvuX6GX8XtSv5/SVG_Prod.js\";const SVGFonts=getFonts(SVG);const enabledGestures={NDMn7rbBK:{hover:true}};const serializationHash=\"framer-b0dGv\";const variantClassNames={NDMn7rbBK:\"framer-v-upb21f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({color,height,id,link,subHeading,sVGCode,title,width,...props})=>{return{...props,CM166jIQh:color??props.CM166jIQh??\"rgb(255, 255, 255)\",f2FbBz7aT:subHeading??props.f2FbBz7aT??\"Program that makes fun \",Fym_HPJve:sVGCode??props.Fym_HPJve??'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>',kqvuRLT7J:link??props.kqvuRLT7J,lFxISvyEu:title??props.lFxISvyEu??\"Translation\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,lFxISvyEu,f2FbBz7aT,Fym_HPJve,CM166jIQh,kqvuRLT7J,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NDMn7rbBK\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:kqvuRLT7J,motionChild:true,nodeId:\"NDMn7rbBK\",openInNewTab:true,scopeId:\"dDK1VKcxZ\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-upb21f\",className,classNames)} framer-18s57ej`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"NDMn7rbBK\",ref:refBinding,style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},...addPropertyOverrides({\"NDMn7rbBK-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-z8bttx-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xNfR3XcGv-container\",nodeId:\"xNfR3XcGv\",rendersWithMotion:true,scopeId:\"dDK1VKcxZ\",children:/*#__PURE__*/_jsx(SVG,{customColor:CM166jIQh,customPadding:0,customStrokeWidth:2,customSvgCode:Fym_HPJve,description:\"\",height:\"100%\",id:\"xNfR3XcGv\",layoutId:\"xNfR3XcGv\",lineCap:\"butt\",lineJoin:\"miter\",style:{height:\"100%\",width:\"100%\"},title:\"\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j0okrh\",\"data-framer-name\":\"Frame 1707477882\",layoutDependency:layoutDependency,layoutId:\"RdYUxbWHt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"Translation\"})}),className:\"framer-169y0z4\",\"data-framer-name\":\"Translation\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"o1W4YbwsE\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:lFxISvyEu,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"156%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(151, 151, 151))\"},children:\"Program that makes fun \"})}),className:\"framer-i88p1n\",\"data-framer-name\":\"Program that makes fun\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ADCEYclWZ\",style:{\"--extracted-r6o4lv\":\"rgb(151, 151, 151)\",\"--framer-paragraph-spacing\":\"0px\"},text:f2FbBz7aT,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-b0dGv.framer-18s57ej, .framer-b0dGv .framer-18s57ej { display: block; }\",\".framer-b0dGv.framer-upb21f { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px; position: relative; text-decoration: none; width: 212px; }\",\".framer-b0dGv .framer-z8bttx-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-b0dGv .framer-j0okrh { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-b0dGv .framer-169y0z4, .framer-b0dGv .framer-i88p1n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-b0dGv.framer-upb21f, .framer-b0dGv .framer-j0okrh { gap: 0px; } .framer-b0dGv.framer-upb21f > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-b0dGv.framer-upb21f > :first-child { margin-left: 0px; } .framer-b0dGv.framer-upb21f > :last-child { margin-right: 0px; } .framer-b0dGv .framer-j0okrh > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-b0dGv .framer-j0okrh > :first-child { margin-top: 0px; } .framer-b0dGv .framer-j0okrh > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 212\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"njbiH2RyM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"lFxISvyEu\":\"title\",\"f2FbBz7aT\":\"subHeading\",\"Fym_HPJve\":\"sVGCode\",\"CM166jIQh\":\"color\",\"kqvuRLT7J\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdDK1VKcxZ=withCSS(Component,css,\"framer-b0dGv\");export default FramerdDK1VKcxZ;FramerdDK1VKcxZ.displayName=\"Item Overlay\";FramerdDK1VKcxZ.defaultProps={height:44,width:212};addPropertyControls(FramerdDK1VKcxZ,{lFxISvyEu:{defaultValue:\"Translation\",displayTextArea:false,title:\"Title\",type:ControlType.String},f2FbBz7aT:{defaultValue:\"Program that makes fun \",displayTextArea:false,title:\"Sub heading\",type:ControlType.String},Fym_HPJve:{defaultValue:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"> <g clip-path=\"url(#clip0_967_124)\"> <path d=\"M18 6.09674C18 6.0348 18.0246 5.97539 18.0684 5.93159L23.6013 0.398708C23.7484 0.251575 24 0.35578 24 0.563858V11.9033C24 11.9652 23.9754 12.0246 23.9316 12.0684L18 18V6.09674Z\" fill=\"white\"/> <path d=\"M6 18V6.56386C6 6.35578 5.74843 6.25158 5.60129 6.39871L0.0684074 11.9316C0.0246069 11.9754 0 12.0348 0 12.0967V23.7664C0 23.8954 0.104567 24 0.233557 24H11.9033C11.9652 24 12.0246 23.9754 12.0684 23.9316L18 18H6Z\" fill=\"white\"/> </g> <defs> <clipPath id=\"clip0_967_124\"> <rect width=\"24\" height=\"24\" fill=\"white\"/> </clipPath> </defs> </svg>',displayTextArea:true,title:\"SVG Code\",type:ControlType.String},CM166jIQh:{defaultValue:\"rgb(255, 255, 255)\",title:\"Color\",type:ControlType.Color},kqvuRLT7J:{title:\"Link\",type:ControlType.Link}});addFonts(FramerdDK1VKcxZ,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...SVGFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdDK1VKcxZ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"njbiH2RyM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"lFxISvyEu\\\":\\\"title\\\",\\\"f2FbBz7aT\\\":\\\"subHeading\\\",\\\"Fym_HPJve\\\":\\\"sVGCode\\\",\\\"CM166jIQh\\\":\\\"color\\\",\\\"kqvuRLT7J\\\":\\\"link\\\"}\",\"framerIntrinsicWidth\":\"212\",\"framerIntrinsicHeight\":\"44\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dDK1VKcxZ.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"pSId5ktnG\",\"scp_Jt8uC\"];const serializationHash=\"framer-Jqzkz\";const variantClassNames={pSId5ktnG:\"framer-v-1himzwk\",scp_Jt8uC:\"framer-v-969l8m\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.4,delay:0,duration:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Click:\"scp_Jt8uC\",Idle:\"pSId5ktnG\"};const getProps=({click,height,id,width,...props})=>{return{...props,FQhK0JwiR:click??props.FQhK0JwiR,variant:humanReadableVariantMap[props.variant]??props.variant??\"pSId5ktnG\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,FQhK0JwiR,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"pSId5ktnG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sf8qx4=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(FQhK0JwiR){const res=await FQhK0JwiR(...args);if(res===false)return false;}setVariant(\"scp_Jt8uC\");});const onTapc3zdpq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(FQhK0JwiR){const res=await FQhK0JwiR(...args);if(res===false)return false;}setVariant(\"pSId5ktnG\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1himzwk\",className,classNames),\"data-framer-name\":\"Idle\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pSId5ktnG\",onTap:onTap1sf8qx4,ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\",...style},...addPropertyOverrides({scp_Jt8uC:{\"data-framer-name\":\"Click\",onTap:onTapc3zdpq}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Features\"})}),className:\"framer-11ny97\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"z9S9F4W6u\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4bgatu\",\"data-framer-name\":\"inline-down\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"C8iQsADoy\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 6 9 L 10 13 L 14 9\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)) /* {&quot;name&quot;:&quot;Neutral-800&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\" opacity=\"0.8\"></path></svg>',svgContentId:10724397372,withExternalLayout:true,...addPropertyOverrides({scp_Jt8uC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 4 4 L 8 0\" transform=\"translate(6 9) rotate(180 4 2)\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)) /* {&quot;name&quot;:&quot;Neutral-800&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\" opacity=\"0.8\"></path></svg>',svgContentId:10004226552}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Jqzkz.framer-1ani8qz, .framer-Jqzkz .framer-1ani8qz { display: block; }\",\".framer-Jqzkz.framer-1himzwk { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 8px 14px; position: relative; width: min-content; }\",\".framer-Jqzkz .framer-11ny97 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Jqzkz .framer-4bgatu { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Jqzkz.framer-1himzwk { gap: 0px; } .framer-Jqzkz.framer-1himzwk > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Jqzkz.framer-1himzwk > :first-child { margin-left: 0px; } .framer-Jqzkz.framer-1himzwk > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 85\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"scp_Jt8uC\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"FQhK0JwiR\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerho5QA9G44=withCSS(Component,css,\"framer-Jqzkz\");export default Framerho5QA9G44;Framerho5QA9G44.displayName=\"Click Menu Nav\";Framerho5QA9G44.defaultProps={height:36,width:85};addPropertyControls(Framerho5QA9G44,{variant:{options:[\"pSId5ktnG\",\"scp_Jt8uC\"],optionTitles:[\"Idle\",\"Click\"],title:\"Variant\",type:ControlType.Enum},FQhK0JwiR:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerho5QA9G44,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerho5QA9G44\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"85\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"FQhK0JwiR\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"scp_Jt8uC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ho5QA9G44.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"zTIeY9xjz\",\"JFHSMko14\",\"Osw7bguNl\",\"nO1BVdNcq\"];const serializationHash=\"framer-mogZg\";const variantClassNames={JFHSMko14:\"framer-v-qjyq8q\",nO1BVdNcq:\"framer-v-h51ql7\",Osw7bguNl:\"framer-v-5xvz1c\",zTIeY9xjz:\"framer-v-19a5fyc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Customer Icon\":\"zTIeY9xjz\",Blog:\"JFHSMko14\",Tools:\"nO1BVdNcq\",Tutorials:\"Osw7bguNl\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,NG6vqsKR7:click!==null&&click!==void 0?click:props.NG6vqsKR7,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"zTIeY9xjz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,NG6vqsKR7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zTIeY9xjz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1w4lb0r=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(NG6vqsKR7){const res=await NG6vqsKR7(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JFHSMko14\",\"Osw7bguNl\",\"nO1BVdNcq\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"JFHSMko14\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"nO1BVdNcq\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Osw7bguNl\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-19a5fyc\",className,classNames),\"data-framer-name\":\"Customer Icon\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"zTIeY9xjz\",onTap:onTap1w4lb0r,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({JFHSMko14:{\"data-framer-name\":\"Blog\"},nO1BVdNcq:{\"data-framer-name\":\"Tools\"},Osw7bguNl:{\"data-framer-name\":\"Tutorials\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1m9cd5h\",\"data-framer-name\":\"Customer Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"g9_owhLjO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 12.093 14.412 C 11.507 14.586 10.813 14.666 10 14.666 L 6 14.666 C 5.187 14.666 4.493 14.586 3.907 14.412 C 4.053 12.679 5.833 11.313 8 11.313 C 10.167 11.313 11.947 12.679 12.093 14.412 Z\" fill=\"transparent\" stroke-width=\"1.1\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 10 1.334 L 6 1.334 C 2.667 1.334 1.333 2.667 1.333 6.001 L 1.333 10.001 C 1.333 12.521 2.094 13.901 3.907 14.414 C 4.053 12.681 5.833 11.314 8 11.314 C 10.167 11.314 11.947 12.681 12.094 14.414 C 13.907 13.901 14.667 12.521 14.667 10.001 L 14.667 6.001 C 14.667 2.667 13.334 1.334 10 1.334 Z M 8 9.447 C 6.68 9.447 5.613 8.374 5.613 7.054 C 5.613 5.734 6.68 4.667 8 4.667 C 9.32 4.667 10.387 5.734 10.387 7.054 C 10.387 8.374 9.32 9.447 8 9.447 Z\" fill=\"transparent\" stroke-width=\"1.1\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 10.387 7.053 C 10.387 8.373 9.32 9.446 8 9.446 C 6.68 9.446 5.613 8.373 5.613 7.053 C 5.613 5.733 6.68 4.666 8 4.666 C 9.32 4.666 10.387 5.733 10.387 7.053 Z\" fill=\"transparent\" stroke-width=\"1.1\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12375603183,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kemv9p\",\"data-framer-name\":\"vuesax/linear/layer\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"thiiOGRN9\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 8.673 1.947 L 12.607 3.694 C 13.74 4.194 13.74 5.02 12.607 5.52 L 8.673 7.267 C 8.227 7.467 7.493 7.467 7.047 7.267 L 3.113 5.52 C 1.98 5.02 1.98 4.194 3.113 3.694 L 7.047 1.947 C 7.493 1.747 8.227 1.747 8.673 1.947 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 2 7.334 C 2 7.894 2.42 8.541 2.933 8.767 L 7.46 10.781 C 7.807 10.934 8.2 10.934 8.54 10.781 L 13.067 8.767 C 13.58 8.541 14 7.894 14 7.334\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 2 10.666 C 2 11.286 2.367 11.846 2.933 12.099 L 7.46 14.113 C 7.807 14.266 8.2 14.266 8.54 14.113 L 13.067 12.099 C 13.633 11.846 14 11.286 14 10.666\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11725606282,withExternalLayout:true,...addPropertyOverrides({JFHSMko14:{svgContentId:9608181340}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1houm4r\",\"data-framer-name\":\"vuesax/linear/magicpen\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"j543Ab6aO\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 2.333 13.668 C 2.887 14.221 3.78 14.221 4.333 13.668 L 13 5.001 C 13.553 4.448 13.553 3.554 13 3.001 C 12.447 2.448 11.553 2.448 11 3.001 L 2.333 11.668 C 1.78 12.221 1.78 13.114 2.333 13.668 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 12.006 5.992 L 10.006 3.992\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 5.667 1.625 L 6.667 1.332 L 6.373 2.332 L 6.667 3.332 L 5.667 3.039 L 4.667 3.332 L 4.96 2.332 L 4.667 1.332 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 3 5.625 L 4 5.332 L 3.707 6.332 L 4 7.332 L 3 7.039 L 2 7.332 L 2.293 6.332 L 2 5.332 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 13 8.961 L 14 8.668 L 13.707 9.668 L 14 10.668 L 13 10.375 L 12 10.668 L 12.293 9.668 L 12 8.668 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11207307520,withExternalLayout:true,...addPropertyOverrides({nO1BVdNcq:{svgContentId:9780353421}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1e47cum\",\"data-framer-name\":\"video-play\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"mqK5KgGJW\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 14.667 10 L 14.667 6 C 14.667 2.667 13.334 1.333 10 1.333 L 6 1.333 C 2.667 1.333 1.333 2.667 1.333 6 L 1.333 10 C 1.333 13.333 2.667 14.667 6 14.667 L 10 14.667 C 13.334 14.667 14.667 13.333 14.667 10 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 1.68 4.74 L 14.32 4.74\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 5.68 1.407 L 5.68 4.647\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 10.32 1.407 L 10.32 4.347\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 6.5 9.633 L 6.5 8.833 C 6.5 7.807 7.227 7.387 8.113 7.9 L 8.807 8.3 L 9.5 8.7 C 10.387 9.213 10.387 10.053 9.5 10.567 L 8.807 10.967 L 8.113 11.367 C 7.227 11.88 6.5 11.46 6.5 10.433 L 6.5 9.633 Z\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)) /* {&quot;name&quot;:&quot;purple&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:10561664233,withExternalLayout:true,...addPropertyOverrides({Osw7bguNl:{svgContentId:10383775758}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mogZg.framer-w1d9vt, .framer-mogZg .framer-w1d9vt { display: block; }\",\".framer-mogZg.framer-19a5fyc { cursor: pointer; height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-mogZg .framer-1m9cd5h { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); position: absolute; top: calc(47.05882352941179% - 16px / 2); width: 16px; }\",\".framer-mogZg .framer-1kemv9p, .framer-mogZg .framer-1houm4r, .framer-mogZg .framer-1e47cum { flex: none; height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 16\n * @framerIntrinsicWidth 16\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JFHSMko14\":{\"layout\":[\"fixed\",\"fixed\"]},\"Osw7bguNl\":{\"layout\":[\"fixed\",\"fixed\"]},\"nO1BVdNcq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"NG6vqsKR7\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerbmd15BjYa=withCSS(Component,css,\"framer-mogZg\");export default Framerbmd15BjYa;Framerbmd15BjYa.displayName=\"Icons\";Framerbmd15BjYa.defaultProps={height:16,width:16};addPropertyControls(Framerbmd15BjYa,{variant:{options:[\"zTIeY9xjz\",\"JFHSMko14\",\"Osw7bguNl\",\"nO1BVdNcq\"],optionTitles:[\"Customer Icon\",\"Blog\",\"Tutorials\",\"Tools\"],title:\"Variant\",type:ControlType.Enum},NG6vqsKR7:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerbmd15BjYa,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerbmd15BjYa\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"NG6vqsKR7\\\":\\\"click\\\"}\",\"framerIntrinsicWidth\":\"16\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JFHSMko14\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Osw7bguNl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nO1BVdNcq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"16\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bmd15BjYa.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Icons from\"https://framerusercontent.com/modules/XzpkyyDAY9e2oGBD6s1k/MfUxYl0ZTEltHGsFVmzT/bmd15BjYa.js\";const IconsFonts=getFonts(Icons);const IconsControls=getPropertyControls(Icons);const enabledGestures={attmR41Rs:{hover:true}};const serializationHash=\"framer-A3mbK\";const variantClassNames={attmR41Rs:\"framer-v-10in2l3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Custome P\":\"KSRl7Jdxg\",\"Customer Icon\":\"zTIeY9xjz\",Blog:\"JFHSMko14\",Tools:\"nO1BVdNcq\",Tutorials:\"Osw7bguNl\"};const getProps=({height,icons,id,title,width,...props})=>{var _ref,_humanReadableEnumMap_icons,_ref1,_ref2;return{...props,HcRSKMxI5:(_ref=title!==null&&title!==void 0?title:props.HcRSKMxI5)!==null&&_ref!==void 0?_ref:\"Customer stories\",HZ8GFcPoj:(_ref2=(_ref1=(_humanReadableEnumMap_icons=humanReadableEnumMap[icons])!==null&&_humanReadableEnumMap_icons!==void 0?_humanReadableEnumMap_icons:icons)!==null&&_ref1!==void 0?_ref1:props.HZ8GFcPoj)!==null&&_ref2!==void 0?_ref2:\"zTIeY9xjz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,HcRSKMxI5,HZ8GFcPoj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"attmR41Rs\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const NG6vqsKR7aejkcd=activeVariantCallback(async(...args)=>{setVariant(\"attmR41Rs\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10in2l3\",className,classNames),\"data-framer-name\":\"Idle\",layoutDependency:layoutDependency,layoutId:\"attmR41Rs\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\",...style},variants:{\"attmR41Rs-hover\":{backgroundColor:\"var(--token-7ef56079-1bd1-435d-a775-994666e07088, rgb(250, 250, 250))\"}},...addPropertyOverrides({\"attmR41Rs-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12jdd7t\",layoutDependency:layoutDependency,layoutId:\"VXmcNS97i\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,width:\"16px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||36)-16-16.8)/2)+.40000000000000036,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rgxkdv-container\",layoutDependency:layoutDependency,layoutId:\"W82diPoyB-container\",children:/*#__PURE__*/_jsx(Icons,{height:\"100%\",id:\"W82diPoyB\",layoutId:\"W82diPoyB\",NG6vqsKR7:NG6vqsKR7aejkcd,style:{height:\"100%\",width:\"100%\"},variant:HZ8GFcPoj,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Customer stories\"})}),className:\"framer-r77a57\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"dyggBXcWC\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:HcRSKMxI5,variants:{\"attmR41Rs-hover\":{\"--extracted-r6o4lv\":\"var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"attmR41Rs-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-53381d36-57ec-4f4c-b877-9e315ad51c40, rgb(105, 64, 255)))\"},children:\"Customer stories\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6fgkqu\",\"data-framer-name\":\"inline-down\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Sao73UaRo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 4 4 L 8 0\" transform=\"translate(6 9) rotate(-90 4 2)\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163)) /* {&quot;name&quot;:&quot;Neutral-400&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\" opacity=\"0.8\"></path></svg>',svgContentId:11334360988,withExternalLayout:true,...addPropertyOverrides({\"attmR41Rs-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 0 0 L 4 4 L 8 0\" transform=\"translate(6 9) rotate(-90 4 2)\" fill=\"transparent\" stroke-width=\"1.2\" stroke=\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)) /* {&quot;name&quot;:&quot;Neutral-800&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\" opacity=\"0.8\"></path></svg>',svgContentId:9974128970}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-A3mbK.framer-l0mku1, .framer-A3mbK .framer-l0mku1 { display: block; }\",\".framer-A3mbK.framer-10in2l3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 8px; position: relative; width: 200px; }\",\".framer-A3mbK .framer-12jdd7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-A3mbK .framer-rgxkdv-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-A3mbK .framer-r77a57 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-A3mbK .framer-6fgkqu { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-A3mbK .framer-12jdd7t { gap: 0px; } .framer-A3mbK .framer-12jdd7t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-A3mbK .framer-12jdd7t > :first-child { margin-left: 0px; } .framer-A3mbK .framer-12jdd7t > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TL9RzrSGg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"HcRSKMxI5\":\"title\",\"HZ8GFcPoj\":\"icons\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroQggsgEZ9=withCSS(Component,css,\"framer-A3mbK\");export default FrameroQggsgEZ9;FrameroQggsgEZ9.displayName=\"Overlay in text\";FrameroQggsgEZ9.defaultProps={height:36,width:200};addPropertyControls(FrameroQggsgEZ9,{HcRSKMxI5:{defaultValue:\"Customer stories\",displayTextArea:false,title:\"Title\",type:ControlType.String},HZ8GFcPoj:(IconsControls===null||IconsControls===void 0?void 0:IconsControls[\"variant\"])&&{...IconsControls[\"variant\"],defaultValue:\"zTIeY9xjz\",description:undefined,hidden:undefined,title:\"Icons\"}});addFonts(FrameroQggsgEZ9,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...IconsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroQggsgEZ9\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"36\",\"framerIntrinsicWidth\":\"200\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"HcRSKMxI5\\\":\\\"title\\\",\\\"HZ8GFcPoj\\\":\\\"icons\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TL9RzrSGg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5eef525)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ffjn3o1KQ\",\"UpqaV1zsI\"];const serializationHash=\"framer-w2xfl\";const variantClassNames={ffjn3o1KQ:\"framer-v-1frrtr5\",UpqaV1zsI:\"framer-v-1wkggry\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Close:\"UpqaV1zsI\",Default:\"ffjn3o1KQ\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,mNnEtKoz7:tap!==null&&tap!==void 0?tap:props.mNnEtKoz7,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"ffjn3o1KQ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,mNnEtKoz7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ffjn3o1KQ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1j5npcq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(mNnEtKoz7){const res=await mNnEtKoz7(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1frrtr5\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ffjn3o1KQ\",onTap:onTap1j5npcq,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({UpqaV1zsI:{\"data-framer-name\":\"Close\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mxhqoq\",\"data-framer-name\":\"Line 1\",layoutDependency:layoutDependency,layoutId:\"AbGSUjoke\",style:{backgroundColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,rotate:0},variants:{UpqaV1zsI:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g2csb7\",\"data-framer-name\":\"Line 2\",layoutDependency:layoutDependency,layoutId:\"DaYGg1rTp\",style:{backgroundColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,opacity:1},variants:{UpqaV1zsI:{opacity:0}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dusxy7\",\"data-framer-name\":\"Line 3\",layoutDependency:layoutDependency,layoutId:\"mC25zP_9V\",style:{backgroundColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",borderBottomLeftRadius:7,borderBottomRightRadius:7,borderTopLeftRadius:7,borderTopRightRadius:7,rotate:0},variants:{UpqaV1zsI:{rotate:-45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w2xfl.framer-1mlsjx6, .framer-w2xfl .framer-1mlsjx6 { display: block; }\",\".framer-w2xfl.framer-1frrtr5 { cursor: pointer; height: 27px; overflow: hidden; position: relative; width: 22px; }\",\".framer-w2xfl .framer-mxhqoq { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2xfl .framer-g2csb7 { flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(48.38709677419357% - 2px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-w2xfl .framer-dusxy7 { bottom: 6px; flex: none; height: 2px; left: 0px; overflow: hidden; position: absolute; right: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-w2xfl.framer-v-1wkggry .framer-mxhqoq { left: calc(50.00000000000002% - 27px / 2); right: unset; top: calc(51.61290322580647% - 2px / 2); width: 27px; }\",\".framer-w2xfl.framer-v-1wkggry .framer-g2csb7 { right: unset; top: calc(51.61290322580647% - 2px / 2); width: 1px; }\",\".framer-w2xfl.framer-v-1wkggry .framer-dusxy7 { bottom: unset; left: calc(50.00000000000002% - 27px / 2); right: unset; top: calc(51.61290322580647% - 2px / 2); width: 27px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 27\n * @framerIntrinsicWidth 22\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UpqaV1zsI\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"mNnEtKoz7\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQBNajWZdU=withCSS(Component,css,\"framer-w2xfl\");export default FramerQBNajWZdU;FramerQBNajWZdU.displayName=\"Navigation/Hamburger\";FramerQBNajWZdU.defaultProps={height:27,width:22};addPropertyControls(FramerQBNajWZdU,{variant:{options:[\"ffjn3o1KQ\",\"UpqaV1zsI\"],optionTitles:[\"Default\",\"Close\"],title:\"Variant\",type:ControlType.Enum},mNnEtKoz7:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerQBNajWZdU,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQBNajWZdU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"22\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UpqaV1zsI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"mNnEtKoz7\\\":\\\"tap\\\"}\",\"framerIntrinsicHeight\":\"27\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QBNajWZdU.map", "// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS,withFX,withMappedReactProps}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{withRedirectCTA}from\"https://framerusercontent.com/modules/4PINjqo48OHC6rcgYhOj/3FGqXF5fYrSoQLN4QIUP/SearchParamsPersist.js\";import ButtonsButtonCopy2,*as ButtonsButtonCopy2Info from\"https://framerusercontent.com/modules/24O3snWznWXketVMQYsp/R8qVpZOmEJ8OuyaYDo7g/br7w1Rdle.js\";import ItemOverlay from\"https://framerusercontent.com/modules/kCf2rIwYAMCBaNW1CLcN/4ybeMeHyK9CuYzaIYcsM/dDK1VKcxZ.js\";import ClickMenuNav from\"https://framerusercontent.com/modules/a6kwumqexXNALfUOvx0e/HBiOzFEsJy6XThjHYFnV/ho5QA9G44.js\";import ButtonsButtonCopy,*as ButtonsButtonCopyInfo from\"https://framerusercontent.com/modules/xzoq0RPntex9JxSUwQWX/KU83E0YkCogUMxn9NnIK/K9jypQPW8.js\";import OverlayInText from\"https://framerusercontent.com/modules/l8KhMDdcZL1WJlslYne6/w1gYRQDtBJtNRbxA26Hz/oQggsgEZ9.js\";import NavigationHamburger from\"https://framerusercontent.com/modules/m4bXnpT0YKogv8KLiFos/r6WS76NQX7wj8c9DhVlO/QBNajWZdU.js\";const NavigationHamburgerFonts=getFonts(NavigationHamburger);const ClickMenuNavFonts=getFonts(ClickMenuNav);const OverlayInTextFonts=getFonts(OverlayInText);const ItemOverlayFonts=getFonts(ItemOverlay);const MotionDivWithFX=withFX(motion.div);const ButtonsButtonCopyFonts=getFonts(ButtonsButtonCopy);const ButtonsButtonCopyWithRedirectCTA25ldnuWithMappedReactPropsuegppr=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsButtonCopy,{nodeId:\"x3dH_Bk2i\",override:withRedirectCTA,scopeId:\"rZxsEorCR\"}),ButtonsButtonCopyInfo);const ButtonsButtonCopy2Fonts=getFonts(ButtonsButtonCopy2);const ButtonsButtonCopy2WithRedirectCTAap3fgwWithMappedReactProps1dn29cy=withMappedReactProps(withCodeBoundaryForOverrides(ButtonsButtonCopy2,{nodeId:\"AhoeIvVGW\",override:withRedirectCTA,scopeId:\"rZxsEorCR\"}),ButtonsButtonCopy2Info);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"OTVwseKPH\",\"UbJt0KlBv\",\"WCbxusjUS\",\"ehzqiir_r\",\"FhEzoBi5c\",\"PhUeMlYru\",\"mAh_CSFrC\",\"vQjyVoPjS\"];const serializationHash=\"framer-mLxqy\";const variantClassNames={ehzqiir_r:\"framer-v-1yk1wjk\",FhEzoBi5c:\"framer-v-d4fpf\",mAh_CSFrC:\"framer-v-a4y856\",OTVwseKPH:\"framer-v-ko1ow\",PhUeMlYru:\"framer-v-rivjx9\",UbJt0KlBv:\"framer-v-1my9fh9\",vQjyVoPjS:\"framer-v-pqf3tn\",WCbxusjUS:\"framer-v-rafq3r\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:320,type:\"spring\"};const transition2={damping:50,delay:0,mass:1,stiffness:600,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Logo Variant\":\"PhUeMlYru\",\"Mobile Closed\":\"UbJt0KlBv\",\"New Nav\":\"mAh_CSFrC\",\"Tab Closed\":\"ehzqiir_r\",Affiliates:\"vQjyVoPjS\",Desktop:\"OTVwseKPH\",Mobile:\"WCbxusjUS\",Tab:\"FhEzoBi5c\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"OTVwseKPH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OTVwseKPH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapnx3iny=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});await delay(()=>setVariant(\"UbJt0KlBv\"),400);});const onTap1i3xmg7=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});await delay(()=>setVariant(\"ehzqiir_r\"),400);});const mNnEtKoz7wtn6iy=activeVariantCallback(async(...args)=>{setVariant(\"WCbxusjUS\");});const mNnEtKoz7l7emib=activeVariantCallback(async(...args)=>{setVariant(\"UbJt0KlBv\");});const mNnEtKoz71mfaxwk=activeVariantCallback(async(...args)=>{setVariant(\"FhEzoBi5c\");});const mNnEtKoz717nukhx=activeVariantCallback(async(...args)=>{setVariant(\"ehzqiir_r\");});const FQhK0JwiRtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"UbJt0KlBv\",\"WCbxusjUS\",\"ehzqiir_r\",\"FhEzoBi5c\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"UbJt0KlBv\",\"WCbxusjUS\",\"ehzqiir_r\",\"FhEzoBi5c\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"PhUeMlYru\",\"mAh_CSFrC\",\"vQjyVoPjS\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"PhUeMlYru\")return true;return false;};const isDisplayed4=()=>{if([\"mAh_CSFrC\",\"vQjyVoPjS\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"mAh_CSFrC\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"vQjyVoPjS\")return false;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();const isDisplayed7=()=>{if(baseVariant===\"PhUeMlYru\")return false;return true;};const isDisplayed8=()=>{if(baseVariant===\"mAh_CSFrC\")return true;return false;};const isDisplayed9=()=>{if([\"WCbxusjUS\",\"FhEzoBi5c\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"WCbxusjUS\",\"FhEzoBi5c\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({ehzqiir_r:{value:transition2},FhEzoBi5c:{value:transition2},UbJt0KlBv:{value:transition2},WCbxusjUS:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ko1ow\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"OTVwseKPH\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,WebkitBackdropFilter:\"none\",...style},variants:{ehzqiir_r:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(233, 234, 242, 0.4)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,WebkitBackdropFilter:\"blur(10px)\"},FhEzoBi5c:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(32px)\",backgroundColor:\"rgba(233, 234, 242, 0.8)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,WebkitBackdropFilter:\"blur(32px)\"},mAh_CSFrC:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,WebkitBackdropFilter:\"none\"},PhUeMlYru:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,WebkitBackdropFilter:\"none\"},UbJt0KlBv:{backdropFilter:\"blur(10px)\",backgroundColor:\"rgba(233, 234, 242, 0.4)\",WebkitBackdropFilter:\"blur(10px)\"},vQjyVoPjS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,WebkitBackdropFilter:\"none\"},WCbxusjUS:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"blur(32px)\",backgroundColor:\"rgba(233, 234, 242, 0.8)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,WebkitBackdropFilter:\"blur(32px)\"}},...addPropertyOverrides({ehzqiir_r:{\"data-framer-name\":\"Tab Closed\"},FhEzoBi5c:{\"data-border\":true,\"data-framer-name\":\"Tab\",\"data-highlight\":true,onTap:onTap1i3xmg7},mAh_CSFrC:{\"data-framer-name\":\"New Nav\"},PhUeMlYru:{\"data-framer-name\":\"Logo Variant\"},UbJt0KlBv:{\"data-framer-name\":\"Mobile Closed\"},vQjyVoPjS:{\"data-framer-name\":\"Affiliates\"},WCbxusjUS:{\"data-border\":true,\"data-framer-name\":\"Mobile\",\"data-highlight\":true,onTap:onTapnx3iny}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qp7zga\",\"data-framer-name\":\"Mobile Closed\",layoutDependency:layoutDependency,layoutId:\"npRnKjKTs\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9evdvq\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"iaE7nC8H4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1x55i3k\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:87,layoutDependency:layoutDependency,layoutId:\"yyFKDwmI5\",svg:'<svg width=\"87\" height=\"20\" viewBox=\"0 0 87 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M27.9821 15.8609C26.9754 15.8609 26.2203 15.5827 25.7169 15.0263C25.2135 14.4699 24.9618 13.6288 24.9618 12.5028V7.07822H23.5511V5.429H24.3061C24.7433 5.4025 25.0546 5.29653 25.24 5.11107C25.4387 4.92562 25.5646 4.62757 25.6176 4.21691L25.7567 3.0247H27.0681V5.30978H29.83V7.11796H27.0681V12.4034C27.0681 12.9201 27.1873 13.2976 27.4258 13.536C27.6642 13.7612 28.002 13.8738 28.4391 13.8738C28.6776 13.8738 28.9226 13.8473 29.1743 13.7944C29.426 13.7281 29.6578 13.6155 29.8698 13.4566V15.5231C29.5121 15.6423 29.1743 15.7284 28.8564 15.7814C28.5385 15.8344 28.2471 15.8609 27.9821 15.8609Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M30.9086 15.6423V5.30978H32.8162L32.6572 9.32356H32.9354C33.0414 8.36979 33.2202 7.5816 33.4719 6.959C33.7236 6.3364 34.0547 5.86614 34.4654 5.54822C34.8893 5.2303 35.3927 5.07133 35.9755 5.07133C36.1477 5.07133 36.3266 5.0912 36.512 5.13094C36.6975 5.15744 36.8962 5.21043 37.1081 5.28991L36.9889 7.59485C36.777 7.50212 36.5584 7.43589 36.3332 7.39615C36.1212 7.34316 35.9225 7.31667 35.7371 7.31667C35.2205 7.31667 34.7767 7.48225 34.4058 7.81342C34.0349 8.13135 33.7368 8.58836 33.5116 9.18447C33.2997 9.76733 33.154 10.4694 33.0745 11.2907V15.6423H30.9086Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M41.2725 15.9006C40.0935 15.9006 39.2126 15.4899 38.6298 14.6686C38.0601 13.8473 37.7753 12.5889 37.7753 10.8933V5.30978H39.9412V10.7542C39.9412 11.8802 40.1001 12.7081 40.4181 13.238C40.736 13.7546 41.246 14.0129 41.9481 14.0129C42.3455 14.0129 42.7031 13.9136 43.0211 13.7149C43.339 13.5162 43.6105 13.2247 43.8357 12.8406C44.0742 12.4564 44.2596 11.9928 44.3921 11.4497C44.5246 10.8933 44.6041 10.2575 44.6306 9.54213V5.30978H46.7964V15.6423H44.9087L45.0677 11.9266H44.8094C44.6637 12.8538 44.4385 13.6089 44.1338 14.1918C43.8291 14.7746 43.4383 15.2051 42.9615 15.4833C42.4978 15.7615 41.9348 15.9006 41.2725 15.9006Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M48.4712 18.7222V5.30978H50.3788L50.2794 8.29031L50.5179 8.31018C50.6768 7.59485 50.9087 6.99874 51.2133 6.52186C51.518 6.03173 51.9022 5.66744 52.3658 5.429C52.8294 5.17731 53.3726 5.05146 53.9952 5.05146C54.8695 5.05146 55.6179 5.27004 56.2405 5.70718C56.8631 6.14433 57.34 6.76692 57.6711 7.57498C58.0023 8.38303 58.1679 9.35005 58.1679 10.476C58.1679 11.5888 58.0023 12.5558 57.6711 13.3771C57.34 14.1851 56.8697 14.8077 56.2604 15.2449C55.6643 15.682 54.9423 15.9006 54.0945 15.9006C53.4057 15.9006 52.8228 15.7549 52.3459 15.4635C51.869 15.172 51.4849 14.768 51.1935 14.2514C50.902 13.7215 50.6835 13.1188 50.5377 12.4432H50.2397C50.3192 12.8803 50.3854 13.3108 50.4384 13.7347C50.5046 14.1454 50.551 14.5428 50.5775 14.927C50.6172 15.3111 50.6371 15.6754 50.6371 16.0198V18.7222H48.4712ZM53.4388 14.0725C53.9687 14.0725 54.4191 13.9202 54.79 13.6155C55.1609 13.3108 55.4457 12.8936 55.6444 12.3637C55.8431 11.8206 55.9424 11.1914 55.9424 10.476C55.9424 9.7607 55.8431 9.1381 55.6444 8.60823C55.4457 8.07836 55.1609 7.66771 54.79 7.37628C54.4191 7.08485 53.9687 6.93913 53.4388 6.93913C52.9752 6.93913 52.5711 7.03848 52.2267 7.23719C51.8823 7.43589 51.5909 7.70082 51.3524 8.03199C51.114 8.36316 50.9351 8.72745 50.8159 9.12486C50.6967 9.52226 50.6371 9.91966 50.6371 10.3171V10.5555C50.6371 10.8337 50.6702 11.1317 50.7364 11.4497C50.8159 11.7676 50.9285 12.0789 51.0742 12.3836C51.22 12.6882 51.3988 12.9731 51.6107 13.238C51.8359 13.4897 52.1009 13.695 52.4055 13.854C52.7102 13.9997 53.0546 14.0725 53.4388 14.0725Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M64.0459 15.9006C63.1981 15.9006 62.4563 15.7748 61.8205 15.5231C61.1979 15.2714 60.6746 14.9137 60.2507 14.4501C59.8268 13.9864 59.5023 13.4367 59.2771 12.8008C59.0651 12.1518 58.9591 11.4298 58.9591 10.635C58.9591 9.85343 59.0651 9.12486 59.2771 8.44927C59.489 7.76043 59.8003 7.16433 60.211 6.66095C60.6216 6.15757 61.1316 5.76679 61.741 5.48861C62.3636 5.19718 63.0723 5.05146 63.8671 5.05146C64.6089 5.05146 65.2646 5.17731 65.8342 5.429C66.4171 5.68069 66.9006 6.0516 67.2848 6.54173C67.6822 7.01861 67.967 7.6081 68.1392 8.31018C68.3246 9.01226 68.3842 9.81369 68.318 10.7145L60.3302 10.8138V9.46265L66.9072 9.38317L66.2912 10.178C66.3575 9.4494 66.2912 8.84005 66.0925 8.34992C65.9071 7.84654 65.6223 7.469 65.2381 7.21732C64.8672 6.96563 64.4102 6.83978 63.8671 6.83978C63.2842 6.83978 62.7808 6.99212 62.3569 7.2968C61.933 7.60147 61.6085 8.03199 61.3833 8.58836C61.1714 9.14473 61.0654 9.81369 61.0654 10.5953C61.0654 11.7742 61.3237 12.675 61.8403 13.2976C62.3569 13.907 63.0988 14.2116 64.0658 14.2116C64.5029 14.2116 64.8672 14.152 65.1586 14.0328C65.4633 13.9136 65.7084 13.7546 65.8938 13.5559C66.0925 13.3572 66.2449 13.1386 66.3509 12.9002C66.4568 12.6485 66.5231 12.3902 66.5496 12.1253L68.4968 12.4432C68.4306 12.9466 68.2915 13.4102 68.0796 13.8341C67.8676 14.2447 67.5762 14.609 67.2053 14.927C66.8344 15.2316 66.384 15.4701 65.8541 15.6423C65.3375 15.8145 64.7347 15.9006 64.0459 15.9006Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M74.2341 15.9006C73.3863 15.9006 72.6444 15.7748 72.0086 15.5231C71.386 15.2714 70.8627 14.9137 70.4388 14.4501C70.0149 13.9864 69.6904 13.4367 69.4652 12.8008C69.2532 12.1518 69.1473 11.4298 69.1473 10.635C69.1473 9.85343 69.2532 9.12486 69.4652 8.44927C69.6771 7.76043 69.9884 7.16433 70.3991 6.66095C70.8098 6.15757 71.3198 5.76679 71.9291 5.48861C72.5517 5.19718 73.2604 5.05146 74.0552 5.05146C74.797 5.05146 75.4528 5.17731 76.0224 5.429C76.6052 5.68069 77.0887 6.0516 77.4729 6.54173C77.8703 7.01861 78.1551 7.6081 78.3273 8.31018C78.5128 9.01226 78.5724 9.81369 78.5061 10.7145L70.5183 10.8138V9.46265L77.0954 9.38317L76.4794 10.178C76.5456 9.4494 76.4794 8.84005 76.2807 8.34992C76.0952 7.84654 75.8104 7.469 75.4263 7.21732C75.0554 6.96563 74.5983 6.83978 74.0552 6.83978C73.4724 6.83978 72.969 6.99212 72.5451 7.2968C72.1212 7.60147 71.7966 8.03199 71.5714 8.58836C71.3595 9.14473 71.2535 9.81369 71.2535 10.5953C71.2535 11.7742 71.5118 12.675 72.0285 13.2976C72.5451 13.907 73.2869 14.2116 74.2539 14.2116C74.6911 14.2116 75.0553 14.152 75.3468 14.0328C75.6515 13.9136 75.8965 13.7546 76.082 13.5559C76.2807 13.3572 76.433 13.1386 76.539 12.9002C76.645 12.6485 76.7112 12.3902 76.7377 12.1253L78.685 12.4432C78.6187 12.9466 78.4796 13.4102 78.2677 13.8341C78.0557 14.2447 77.7643 14.609 77.3934 14.927C77.0225 15.2316 76.5721 15.4701 76.0422 15.6423C75.5256 15.8145 74.9229 15.9006 74.2341 15.9006Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M79.7536 15.6423V5.30978H81.6612L81.5022 9.32356H81.7804C81.8864 8.36979 82.0652 7.5816 82.3169 6.959C82.5686 6.3364 82.8997 5.86614 83.3104 5.54822C83.7343 5.2303 84.2377 5.07133 84.8205 5.07133C84.9927 5.07133 85.1716 5.0912 85.357 5.13094C85.5425 5.15744 85.7412 5.21043 85.9531 5.28991L85.8339 7.59485C85.622 7.50212 85.4034 7.43589 85.1782 7.39615C84.9662 7.34316 84.7675 7.31667 84.5821 7.31667C84.0655 7.31667 83.6217 7.48225 83.2508 7.81342C82.8799 8.13135 82.5818 8.58836 82.3566 9.18447C82.1447 9.76733 81.999 10.4694 81.9195 11.2907V15.6423H79.7536Z\" fill=\"#2F2F2F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.77203 1.98047C5.39971 1.98047 3.47656 3.90362 3.47656 6.27594V13.1977C3.47656 15.57 5.39971 17.4932 7.77203 17.4932H14.8436C17.2159 17.4932 19.139 15.57 19.139 13.1977V6.27594C19.139 3.90362 17.2159 1.98047 14.8436 1.98047H7.77203ZM8.3818 3.58919C6.60255 3.58919 5.16019 5.03155 5.16019 6.81079V12.6021C5.16019 14.3813 6.60255 15.8237 8.38179 15.8237H14.173C15.9522 15.8237 17.3946 14.3813 17.3946 12.6021V6.8108C17.3946 5.03155 15.9522 3.58919 14.173 3.58919H8.3818Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M12.9096 9.21712C12.976 8.87411 13.4669 8.87411 13.5332 9.21711L13.7821 10.5032C13.8066 10.6301 13.9057 10.7295 14.0325 10.7544L15.3206 11.0082C15.6622 11.0755 15.6622 11.5641 15.3206 11.6314L14.0325 11.8851C13.9057 11.9101 13.8066 12.0095 13.7821 12.1364L13.5332 13.4225C13.4669 13.7655 12.976 13.7655 12.9096 13.4225L12.6608 12.1364C12.6363 12.0095 12.5372 11.9101 12.4104 11.8851L11.1222 11.6314C10.7806 11.5641 10.7806 11.0755 11.1222 11.0082L12.4104 10.7544C12.5372 10.7295 12.6363 10.6301 12.6608 10.5032L12.9096 9.21712Z\" fill=\"#2F2F2F\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ehzqiir_r:{height:22,width:\"22px\",y:(componentViewport?.y||0)+16+(((componentViewport?.height||56)-32-30)/2+0+0)+4},FhEzoBi5c:{height:22,width:\"22px\",y:(componentViewport?.y||0)+17+0+3.8425},UbJt0KlBv:{height:22,width:\"22px\",y:(componentViewport?.y||0)+16+(((componentViewport?.height||56)-32-30)/2+0+0)+4},WCbxusjUS:{height:22,width:\"22px\",y:(componentViewport?.y||0)+17+0+3.8425}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n57iv3-container\",\"data-framer-name\":\"Hamburger icon\",layoutDependency:layoutDependency,layoutId:\"YxAnnRFBT-container\",name:\"Hamburger icon\",nodeId:\"YxAnnRFBT\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(NavigationHamburger,{height:\"100%\",id:\"YxAnnRFBT\",layoutId:\"YxAnnRFBT\",name:\"Hamburger icon\",style:{height:\"100%\",width:\"100%\"},variant:\"ffjn3o1KQ\",width:\"100%\",...addPropertyOverrides({ehzqiir_r:{mNnEtKoz7:mNnEtKoz71mfaxwk},FhEzoBi5c:{mNnEtKoz7:mNnEtKoz717nukhx,variant:\"UpqaV1zsI\"},UbJt0KlBv:{mNnEtKoz7:mNnEtKoz7wtn6iy},WCbxusjUS:{mNnEtKoz7:mNnEtKoz7l7emib,variant:\"UpqaV1zsI\"}},baseVariant,gestureVariant)})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dry7l9\",\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NzLgcGVET\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-cddd8839-50cd-4074-8da8-8850d0d377b4, rgba(255, 255, 255, 0.1))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(30px)\",backgroundColor:\"rgba(212, 212, 212, 0.4)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,WebkitBackdropFilter:\"blur(30px)\"},variants:{mAh_CSFrC:{backgroundColor:\"var(--token-6d2e92b5-2819-4edd-8de7-0dc617dba68d, rgb(248, 249, 252))\"},PhUeMlYru:{backgroundColor:\"rgba(237, 239, 245, 0.32)\"},vQjyVoPjS:{backgroundColor:\"rgba(240, 240, 250, 0.4)\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h0i97z\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"CAdlKk0ZO\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":NcRLDjO38\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"wUoLBfGhi\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13nmpw6 framer-1mcbspu\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"wUoLBfGhi\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-73pf4v\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:83,layoutDependency:layoutDependency,layoutId:\"EDo7BBR0p\",svg:'<svg width=\"83\" height=\"18\" viewBox=\"0 0 83 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M24.9821 14.8609C23.9754 14.8609 23.2203 14.5827 22.7169 14.0263C22.2135 13.4699 21.9618 12.6288 21.9618 11.5028V6.07822H20.5511V4.429H21.3061C21.7433 4.4025 22.0546 4.29653 22.24 4.11107C22.4387 3.92562 22.5646 3.62757 22.6176 3.21691L22.7567 2.0247H24.0681V4.30978H26.83V6.11796H24.0681V11.4034C24.0681 11.9201 24.1873 12.2976 24.4258 12.536C24.6642 12.7612 25.002 12.8738 25.4391 12.8738C25.6776 12.8738 25.9226 12.8473 26.1743 12.7944C26.426 12.7281 26.6578 12.6155 26.8698 12.4566V14.5231C26.5121 14.6423 26.1743 14.7284 25.8564 14.7814C25.5385 14.8344 25.2471 14.8609 24.9821 14.8609Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M27.9086 14.6423V4.30978H29.8162L29.6572 8.32356H29.9354C30.0414 7.36979 30.2202 6.5816 30.4719 5.959C30.7236 5.3364 31.0547 4.86614 31.4654 4.54822C31.8893 4.2303 32.3927 4.07133 32.9755 4.07133C33.1477 4.07133 33.3266 4.0912 33.512 4.13094C33.6975 4.15744 33.8962 4.21043 34.1081 4.28991L33.9889 6.59485C33.777 6.50212 33.5584 6.43589 33.3332 6.39615C33.1212 6.34316 32.9225 6.31667 32.7371 6.31667C32.2205 6.31667 31.7767 6.48225 31.4058 6.81342C31.0349 7.13135 30.7368 7.58836 30.5116 8.18447C30.2997 8.76733 30.154 9.46941 30.0745 10.2907V14.6423H27.9086Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M38.2725 14.9006C37.0935 14.9006 36.2126 14.4899 35.6298 13.6686C35.0601 12.8473 34.7753 11.5889 34.7753 9.8933V4.30978H36.9412V9.75421C36.9412 10.8802 37.1001 11.7081 37.4181 12.238C37.736 12.7546 38.246 13.0129 38.9481 13.0129C39.3455 13.0129 39.7031 12.9136 40.0211 12.7149C40.339 12.5162 40.6105 12.2247 40.8357 11.8406C41.0742 11.4564 41.2596 10.9928 41.3921 10.4497C41.5246 9.8933 41.6041 9.25746 41.6306 8.54213V4.30978H43.7964V14.6423H41.9087L42.0677 10.9266H41.8094C41.6637 11.8538 41.4385 12.6089 41.1338 13.1918C40.8291 13.7746 40.4383 14.2051 39.9615 14.4833C39.4978 14.7615 38.9348 14.9006 38.2725 14.9006Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M45.4712 17.7222V4.30978H47.3788L47.2794 7.29031L47.5179 7.31018C47.6768 6.59485 47.9087 5.99874 48.2133 5.52186C48.518 5.03173 48.9022 4.66744 49.3658 4.429C49.8294 4.17731 50.3726 4.05146 50.9952 4.05146C51.8695 4.05146 52.6179 4.27004 53.2405 4.70718C53.8631 5.14433 54.34 5.76692 54.6711 6.57498C55.0023 7.38303 55.1679 8.35005 55.1679 9.47603C55.1679 10.5888 55.0023 11.5558 54.6711 12.3771C54.34 13.1851 53.8697 13.8077 53.2604 14.2449C52.6643 14.682 51.9423 14.9006 51.0945 14.9006C50.4057 14.9006 49.8228 14.7549 49.3459 14.4635C48.869 14.172 48.4849 13.768 48.1935 13.2514C47.902 12.7215 47.6835 12.1188 47.5377 11.4432H47.2397C47.3192 11.8803 47.3854 12.3108 47.4384 12.7347C47.5046 13.1454 47.551 13.5428 47.5775 13.927C47.6172 14.3111 47.6371 14.6754 47.6371 15.0198V17.7222H45.4712ZM50.4388 13.0725C50.9687 13.0725 51.4191 12.9202 51.79 12.6155C52.1609 12.3108 52.4457 11.8936 52.6444 11.3637C52.8431 10.8206 52.9424 10.1914 52.9424 9.47603C52.9424 8.7607 52.8431 8.1381 52.6444 7.60823C52.4457 7.07836 52.1609 6.66771 51.79 6.37628C51.4191 6.08485 50.9687 5.93913 50.4388 5.93913C49.9752 5.93913 49.5711 6.03848 49.2267 6.23719C48.8823 6.43589 48.5909 6.70082 48.3524 7.03199C48.114 7.36316 47.9351 7.72745 47.8159 8.12486C47.6967 8.52226 47.6371 8.91966 47.6371 9.31707V9.55551C47.6371 9.83369 47.6702 10.1317 47.7364 10.4497C47.8159 10.7676 47.9285 11.0789 48.0742 11.3836C48.22 11.6882 48.3988 11.9731 48.6107 12.238C48.8359 12.4897 49.1009 12.695 49.4055 12.854C49.7102 12.9997 50.0546 13.0725 50.4388 13.0725Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M61.0459 14.9006C60.1981 14.9006 59.4563 14.7748 58.8205 14.5231C58.1979 14.2714 57.6746 13.9137 57.2507 13.4501C56.8268 12.9864 56.5023 12.4367 56.2771 11.8008C56.0651 11.1518 55.9591 10.4298 55.9591 9.63499C55.9591 8.85343 56.0651 8.12486 56.2771 7.44927C56.489 6.76043 56.8003 6.16433 57.211 5.66095C57.6216 5.15757 58.1316 4.76679 58.741 4.48861C59.3636 4.19718 60.0723 4.05146 60.8671 4.05146C61.6089 4.05146 62.2646 4.17731 62.8342 4.429C63.4171 4.68069 63.9006 5.0516 64.2848 5.54173C64.6822 6.01861 64.967 6.6081 65.1392 7.31018C65.3246 8.01226 65.3842 8.81369 65.318 9.71447L57.3302 9.81382V8.46265L63.9072 8.38317L63.2912 9.17798C63.3575 8.4494 63.2912 7.84005 63.0925 7.34992C62.9071 6.84654 62.6223 6.469 62.2381 6.21732C61.8672 5.96563 61.4102 5.83978 60.8671 5.83978C60.2842 5.83978 59.7808 5.99212 59.3569 6.2968C58.933 6.60147 58.6085 7.03199 58.3833 7.58836C58.1714 8.14473 58.0654 8.81369 58.0654 9.59525C58.0654 10.7742 58.3237 11.675 58.8403 12.2976C59.3569 12.907 60.0988 13.2116 61.0658 13.2116C61.5029 13.2116 61.8672 13.152 62.1586 13.0328C62.4633 12.9136 62.7084 12.7546 62.8938 12.5559C63.0925 12.3572 63.2449 12.1386 63.3509 11.9002C63.4568 11.6485 63.5231 11.3902 63.5496 11.1253L65.4968 11.4432C65.4306 11.9466 65.2915 12.4102 65.0796 12.8341C64.8676 13.2447 64.5762 13.609 64.2053 13.927C63.8344 14.2316 63.384 14.4701 62.8541 14.6423C62.3375 14.8145 61.7347 14.9006 61.0459 14.9006Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M71.2341 14.9006C70.3863 14.9006 69.6444 14.7748 69.0086 14.5231C68.386 14.2714 67.8627 13.9137 67.4388 13.4501C67.0149 12.9864 66.6904 12.4367 66.4652 11.8008C66.2532 11.1518 66.1473 10.4298 66.1473 9.63499C66.1473 8.85343 66.2532 8.12486 66.4652 7.44927C66.6771 6.76043 66.9884 6.16433 67.3991 5.66095C67.8098 5.15757 68.3198 4.76679 68.9291 4.48861C69.5517 4.19718 70.2604 4.05146 71.0552 4.05146C71.797 4.05146 72.4528 4.17731 73.0224 4.429C73.6052 4.68069 74.0887 5.0516 74.4729 5.54173C74.8703 6.01861 75.1551 6.6081 75.3273 7.31018C75.5128 8.01226 75.5724 8.81369 75.5061 9.71447L67.5183 9.81382V8.46265L74.0954 8.38317L73.4794 9.17798C73.5456 8.4494 73.4794 7.84005 73.2807 7.34992C73.0952 6.84654 72.8104 6.469 72.4263 6.21732C72.0554 5.96563 71.5983 5.83978 71.0552 5.83978C70.4724 5.83978 69.969 5.99212 69.5451 6.2968C69.1212 6.60147 68.7966 7.03199 68.5714 7.58836C68.3595 8.14473 68.2535 8.81369 68.2535 9.59525C68.2535 10.7742 68.5118 11.675 69.0285 12.2976C69.5451 12.907 70.2869 13.2116 71.2539 13.2116C71.6911 13.2116 72.0553 13.152 72.3468 13.0328C72.6515 12.9136 72.8965 12.7546 73.082 12.5559C73.2807 12.3572 73.433 12.1386 73.539 11.9002C73.645 11.6485 73.7112 11.3902 73.7377 11.1253L75.685 11.4432C75.6187 11.9466 75.4796 12.4102 75.2677 12.8341C75.0557 13.2447 74.7643 13.609 74.3934 13.927C74.0225 14.2316 73.5721 14.4701 73.0422 14.6423C72.5256 14.8145 71.9229 14.9006 71.2341 14.9006Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M76.7536 14.6423V4.30978H78.6612L78.5022 8.32356H78.7804C78.8864 7.36979 79.0652 6.5816 79.3169 5.959C79.5686 5.3364 79.8997 4.86614 80.3104 4.54822C80.7343 4.2303 81.2377 4.07133 81.8205 4.07133C81.9927 4.07133 82.1716 4.0912 82.357 4.13094C82.5425 4.15744 82.7412 4.21043 82.9531 4.28991L82.8339 6.59485C82.622 6.50212 82.4034 6.43589 82.1782 6.39615C81.9662 6.34316 81.7675 6.31667 81.5821 6.31667C81.0655 6.31667 80.6217 6.48225 80.2508 6.81342C79.8799 7.13135 79.5818 7.58836 79.3566 8.18447C79.1447 8.76733 78.999 9.46941 78.9195 10.2907V14.6423H76.7536Z\" fill=\"#2F2F2F\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.77203 0.980469C2.39971 0.980469 0.476562 2.90362 0.476562 5.27594V12.1977C0.476562 14.57 2.39971 16.4932 4.77203 16.4932H11.8436C14.2159 16.4932 16.139 14.57 16.139 12.1977V5.27594C16.139 2.90362 14.2159 0.980469 11.8436 0.980469H4.77203ZM5.3818 2.58919C3.60255 2.58919 2.16019 4.03155 2.16019 5.81079V11.6021C2.16019 13.3813 3.60255 14.8237 5.38179 14.8237H11.173C12.9522 14.8237 14.3946 13.3813 14.3946 11.6021V5.8108C14.3946 4.03155 12.9522 2.58919 11.173 2.58919H5.3818Z\" fill=\"#2F2F2F\"/>\\n<path d=\"M9.90964 8.21712C9.97601 7.87411 10.4669 7.87411 10.5332 8.21711L10.7821 9.50318C10.8066 9.6301 10.9057 9.72946 11.0325 9.75445L12.3206 10.0082C12.6622 10.0755 12.6622 10.5641 12.3206 10.6314L11.0325 10.8851C10.9057 10.9101 10.8066 11.0095 10.7821 11.1364L10.5332 12.4225C10.4669 12.7655 9.97601 12.7655 9.90964 12.4225L9.66081 11.1364C9.63625 11.0095 9.53722 10.9101 9.41039 10.8851L8.12224 10.6314C7.78064 10.5641 7.78064 10.0755 8.12224 10.0082L9.41039 9.75445C9.53722 9.72946 9.63625 9.6301 9.66081 9.50318L9.90964 8.21712Z\" fill=\"#2F2F2F\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4oxlpt\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:180,layoutDependency:layoutDependency,layoutId:\"V8KUkv4Tp\",svg:'<svg width=\"180\" height=\"32\" viewBox=\"-1 -1 180 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.40909 0H22.5909C26.959 0 30.5 3.54102 30.5 7.90909V22.0909C30.5 26.459 26.959 30 22.5909 30H8.40909C4.04102 30 0.5 26.459 0.5 22.0909V7.90909C0.5 3.54102 4.04102 0 8.40909 0ZM8.40909 3.54545C5.99912 3.54545 4.04545 5.49912 4.04545 7.90909V22.0909C4.04545 24.5009 5.99912 26.4545 8.40909 26.4545H22.5909C25.0009 26.4545 26.9545 24.5009 26.9545 22.0909V7.90909C26.9545 5.49912 25.0009 3.54545 22.5909 3.54545H8.40909Z\" fill=\"#131315\"/>\\n<path d=\"M18.4935 14.0752C18.6168 13.4321 19.5373 13.4321 19.6606 14.0752L20.0632 16.1764C20.1468 16.6125 20.4864 16.9544 20.9218 17.041L23.0311 17.4605C23.6687 17.5874 23.6687 18.4992 23.0311 18.626L20.9218 19.0455C20.4864 19.1321 20.1468 19.4741 20.0632 19.9101L19.6606 22.0113C19.5373 22.6544 18.6168 22.6544 18.4935 22.0113L18.0909 19.9101C18.0073 19.4741 17.6678 19.1321 17.2323 19.0455L15.123 18.626C14.4854 18.4992 14.4854 17.5874 15.123 17.4605L17.2323 17.041C17.6678 16.9544 18.0073 16.6125 18.0909 16.1764L18.4935 14.0752Z\" fill=\"#131315\"/>\\n<path d=\"M90.2242 26.9782C84.6606 26.9782 81.1915 23.6073 81.1915 18.24V3.1855H84.726V18.24C84.726 21.7746 86.7224 23.7382 90.2242 23.7382C93.726 23.7382 95.7224 21.7746 95.7224 18.24V3.1855H99.2569V18.24C99.2569 23.6073 95.7551 26.9782 90.2242 26.9782Z\" fill=\"#131315\"/>\\n<path d=\"M49.1211 6.45823V26.4546H52.6556V6.45823H59.7901V3.21823H41.9865V6.45823H49.1211Z\" fill=\"#131315\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M61.8095 3.21823V26.4546H65.3441V17.7491H67.3989C67.6233 19.0639 68.1182 20.4038 68.8919 21.744C71.4387 26.1551 75.4374 27.9507 80.0202 26.9985V23.2306C76.4597 24.291 73.4809 23.2124 71.6979 20.124C71.2412 19.3332 70.9405 18.5367 70.7926 17.746C75.9065 17.6403 78.9259 14.9106 78.9259 10.451C78.9259 5.93459 75.7841 3.21823 70.4822 3.21823H61.8095ZM75.2604 10.451C75.2604 13.1346 73.5913 14.5419 70.3841 14.5419H65.3441V6.45823H70.3841C73.5913 6.45823 75.2604 7.80005 75.2604 10.451Z\" fill=\"#131315\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M102.77 3.21823V26.4546H106.304V17.7491H111.442C116.744 17.7491 119.886 15 119.886 10.451C119.886 5.93459 116.744 3.21823 111.442 3.21823H102.77ZM116.221 10.451C116.221 13.1346 114.552 14.5419 111.344 14.5419H106.304V6.45823H111.344C114.552 6.45823 116.221 7.80005 116.221 10.451Z\" fill=\"#131315\"/>\\n<path d=\"M122.643 26.4546V3.21823H137.763V6.45823H126.177V13.2328H137.37V16.3746H126.177V23.2146H138.024V26.4546H122.643Z\" fill=\"#131315\"/>\\n<path d=\"M140.949 3.21823V26.4546H156.331V23.2146H144.484V16.3746H155.677V13.2328H144.484V6.45823H156.069V3.21823H140.949Z\" fill=\"#131315\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M159.256 26.4546V3.21823H167.929C173.231 3.21823 176.373 5.93459 176.373 10.451C176.373 14.901 173.366 17.6286 168.272 17.7452C168.42 18.5362 168.721 19.3329 169.178 20.124C170.961 23.2124 173.94 24.291 177.5 23.2306V26.9985C172.917 27.9507 168.918 26.1551 166.372 21.744C165.598 20.4038 165.103 19.0639 164.879 17.7491H162.791V26.4546H159.256ZM167.831 14.5419C171.038 14.5419 172.707 13.1346 172.707 10.451C172.707 7.80005 171.038 6.45823 167.831 6.45823H162.791V14.5419H167.831Z\" fill=\"#131315\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1u84uoa\",\"data-framer-name\":\"logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:37,intrinsicWidth:141,layoutDependency:layoutDependency,layoutId:\"xxX0ZEKUm\",svg:'<svg width=\"141\" height=\"37\" viewBox=\"0 0 141 37\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_604_1973\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"141\" height=\"37\">\\n<rect x=\"0.939453\" width=\"139.119\" height=\"36.0508\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_604_1973)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.108 4.85303H23.1249C26.8262 4.85303 29.8267 7.85351 29.8267 11.5548V23.5717C29.8267 27.273 26.8262 30.2735 23.1249 30.2735H11.108C7.40671 30.2735 4.40625 27.273 4.40625 23.5717V11.5548C4.40625 7.85349 7.40673 4.85303 11.108 4.85303ZM11.108 7.85726C9.06592 7.85726 7.41048 9.51269 7.41048 11.5548V23.5717C7.41048 25.6138 9.06591 27.2692 11.108 27.2692H23.1249C25.167 27.2692 26.8224 25.6138 26.8224 23.5717V11.5548C26.8224 9.51269 25.167 7.85726 23.1249 7.85726H11.108Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M19.6525 16.7796C19.757 16.2347 20.537 16.2347 20.6414 16.7796L20.9826 18.56C21.0534 18.9296 21.3411 19.2193 21.7102 19.2927L23.4974 19.6481C24.0377 19.7556 24.0377 20.5282 23.4974 20.6357L21.7102 20.9912C21.3411 21.0646 21.0534 21.3543 20.9826 21.7238L20.6414 23.5042C20.537 24.0492 19.757 24.0492 19.6525 23.5042L19.3113 21.7238C19.2405 21.3543 18.9528 21.0646 18.5838 20.9912L16.7966 20.6357C16.2562 20.5282 16.2562 19.7556 16.7966 19.6481L18.5838 19.2927C18.9528 19.2193 19.2405 18.9295 19.3113 18.56L19.6525 16.7796Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M44.9873 28.845C43.3013 28.845 42.0367 28.3791 41.1937 27.4474C40.3506 26.5156 39.9291 25.1068 39.9291 23.2211V14.1363H37.5664V11.3743H38.831C39.5631 11.3299 40.0844 11.1524 40.395 10.8418C40.7278 10.5312 40.9385 10.0321 41.0273 9.34432L41.2602 7.34766H43.4565V11.1746H48.0821V14.2029H43.4565V23.0547C43.4565 23.9199 43.6562 24.5522 44.0555 24.9515C44.4549 25.3287 45.0206 25.5173 45.7527 25.5173C46.152 25.5173 46.5625 25.4729 46.984 25.3841C47.4055 25.2732 47.7937 25.0846 48.1487 24.8184V28.2793C47.5497 28.479 46.984 28.6232 46.4515 28.7119C45.9191 28.8006 45.431 28.845 44.9873 28.845Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M49.2229 28.479V11.1746H52.4176L52.1514 17.8967H52.6173C52.7947 16.2993 53.0942 14.9793 53.5158 13.9366C53.9373 12.8939 54.4919 12.1064 55.1796 11.5739C55.8896 11.0415 56.7326 10.7753 57.7087 10.7753C57.9971 10.7753 58.2966 10.8085 58.6072 10.8751C58.9178 10.9195 59.2506 11.0082 59.6056 11.1413L59.4059 15.0015C59.0509 14.8462 58.6849 14.7353 58.3077 14.6687C57.9528 14.58 57.62 14.5356 57.3094 14.5356C56.4442 14.5356 55.701 14.8129 55.0798 15.3676C54.4586 15.9 53.9595 16.6654 53.5823 17.6637C53.2274 18.6399 52.9833 19.8157 52.8502 21.1912V28.479H49.2229Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M65.9143 28.9116C63.9398 28.9116 62.4645 28.2238 61.4884 26.8484C60.5344 25.4729 60.0574 23.3653 60.0574 20.5256V11.1746H63.6847V20.2927C63.6847 22.1784 63.9509 23.565 64.4833 24.4524C65.0158 25.3176 65.8699 25.7502 67.0457 25.7502C67.7113 25.7502 68.3103 25.5838 68.8427 25.251C69.3752 24.9183 69.8299 24.4302 70.2071 23.7868C70.6064 23.1434 70.917 22.367 71.1389 21.4574C71.3607 20.5256 71.4938 19.4607 71.5382 18.2627V11.1746H75.1655V28.479H72.0041L72.2703 22.256H71.8377C71.5937 23.809 71.2165 25.0735 70.7063 26.0497C70.196 27.0258 69.5415 27.7469 68.7429 28.2127C67.9664 28.6786 67.0235 28.9116 65.9143 28.9116Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M77.3049 33.637V11.1746H80.4995L80.3331 16.1662L80.7324 16.1995C80.9987 15.0015 81.3869 14.0032 81.8972 13.2045C82.4074 12.3837 83.0508 11.7736 83.8273 11.3743C84.6037 10.9527 85.5133 10.742 86.556 10.742C88.0203 10.742 89.2737 11.108 90.3164 11.8401C91.3591 12.5722 92.1578 13.6149 92.7124 14.9682C93.267 16.3215 93.5443 17.941 93.5443 19.8268C93.5443 21.6903 93.267 23.3098 92.7124 24.6853C92.1578 26.0386 91.3702 27.0813 90.3497 27.8134C89.3514 28.5455 88.1423 28.9116 86.7224 28.9116C85.5688 28.9116 84.5927 28.6675 83.794 28.1795C82.9953 27.6914 82.352 27.0147 81.8639 26.1495C81.3758 25.2621 81.0098 24.2527 80.7657 23.1213H80.2666C80.3997 23.8534 80.5106 24.5744 80.5993 25.2843C80.7103 25.972 80.7879 26.6376 80.8323 27.281C80.8988 27.9243 80.9321 28.5344 80.9321 29.1112V33.637H77.3049ZM85.6243 25.85C86.5117 25.85 87.266 25.5949 87.8871 25.0846C88.5083 24.5744 88.9853 23.8756 89.3181 22.9882C89.6509 22.0786 89.8172 21.0248 89.8172 19.8268C89.8172 18.6288 89.6509 17.5861 89.3181 16.6987C88.9853 15.8113 88.5083 15.1235 87.8871 14.6355C87.266 14.1474 86.5117 13.9034 85.6243 13.9034C84.8478 13.9034 84.1711 14.0697 83.5943 14.4025C83.0175 14.7353 82.5294 15.179 82.1301 15.7336C81.7308 16.2883 81.4313 16.8983 81.2316 17.5639C81.0319 18.2294 80.9321 18.895 80.9321 19.5606V19.9599C80.9321 20.4258 80.9876 20.9249 81.0985 21.4574C81.2316 21.9898 81.4202 22.5112 81.6642 23.0214C81.9083 23.5317 82.2078 24.0087 82.5627 24.4524C82.9399 24.8739 83.3836 25.2178 83.8938 25.484C84.4041 25.728 84.9809 25.85 85.6243 25.85Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M102.723 28.9116C101.303 28.9116 100.061 28.7008 98.9959 28.2793C97.9532 27.8578 97.0769 27.2588 96.367 26.4823C95.657 25.7058 95.1135 24.7851 94.7364 23.7203C94.3814 22.6332 94.2039 21.4241 94.2039 20.093C94.2039 18.7841 94.3814 17.5639 94.7364 16.4325C95.0913 15.2788 95.6127 14.2805 96.3004 13.4375C96.9881 12.5944 97.8423 11.94 98.8628 11.4741C99.9055 10.986 101.092 10.742 102.424 10.742C103.666 10.742 104.764 10.9527 105.718 11.3743C106.694 11.7958 107.504 12.417 108.147 13.2378C108.813 14.0365 109.29 15.0237 109.578 16.1995C109.889 17.3753 109.989 18.7175 109.878 20.2261L96.5001 20.3925V18.1296L107.515 17.9965L106.483 19.3276C106.594 18.1074 106.483 17.0869 106.151 16.2661C105.84 15.423 105.363 14.7908 104.72 14.3692C104.098 13.9477 103.333 13.737 102.424 13.737C101.447 13.737 100.604 13.9921 99.8944 14.5024C99.1845 15.0126 98.6409 15.7336 98.2638 16.6654C97.9088 17.5972 97.7313 18.7175 97.7313 20.0264C97.7313 22.0009 98.164 23.5095 99.0292 24.5522C99.8944 25.5727 101.137 26.083 102.756 26.083C103.488 26.083 104.098 25.9831 104.587 25.7835C105.097 25.5838 105.507 25.3176 105.818 24.9848C106.151 24.652 106.406 24.286 106.583 23.8866C106.761 23.4651 106.872 23.0325 106.916 22.5888L110.177 23.1213C110.066 23.9643 109.833 24.7408 109.478 25.4507C109.123 26.1384 108.635 26.7485 108.014 27.281C107.393 27.7912 106.639 28.1906 105.751 28.479C104.886 28.7674 103.877 28.9116 102.723 28.9116Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M119.12 28.9116C117.7 28.9116 116.458 28.7008 115.393 28.2793C114.35 27.8578 113.474 27.2588 112.764 26.4823C112.054 25.7058 111.511 24.7851 111.133 23.7203C110.778 22.6332 110.601 21.4241 110.601 20.093C110.601 18.7841 110.778 17.5639 111.133 16.4325C111.488 15.2788 112.01 14.2805 112.697 13.4375C113.385 12.5944 114.239 11.94 115.26 11.4741C116.303 10.986 117.489 10.742 118.821 10.742C120.063 10.742 121.161 10.9527 122.115 11.3743C123.091 11.7958 123.901 12.417 124.544 13.2378C125.21 14.0365 125.687 15.0237 125.975 16.1995C126.286 17.3753 126.386 18.7175 126.275 20.2261L112.897 20.3925V18.1296L123.912 17.9965L122.88 19.3276C122.991 18.1074 122.88 17.0869 122.548 16.2661C122.237 15.423 121.76 14.7908 121.117 14.3692C120.496 13.9477 119.73 13.737 118.821 13.737C117.844 13.737 117.001 13.9921 116.291 14.5024C115.582 15.0126 115.038 15.7336 114.661 16.6654C114.306 17.5972 114.128 18.7175 114.128 20.0264C114.128 22.0009 114.561 23.5095 115.426 24.5522C116.291 25.5727 117.534 26.083 119.153 26.083C119.885 26.083 120.496 25.9831 120.984 25.7835C121.494 25.5838 121.904 25.3176 122.215 24.9848C122.548 24.652 122.803 24.286 122.98 23.8866C123.158 23.4651 123.269 23.0325 123.313 22.5888L126.574 23.1213C126.463 23.9643 126.23 24.7408 125.875 25.4507C125.52 26.1384 125.032 26.7485 124.411 27.281C123.79 27.7912 123.036 28.1906 122.148 28.479C121.283 28.7674 120.274 28.9116 119.12 28.9116Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M127.698 28.479V11.1746H130.893L130.627 17.8967H131.093C131.27 16.2993 131.57 14.9793 131.991 13.9366C132.413 12.8939 132.967 12.1064 133.655 11.5739C134.365 11.0415 135.208 10.7753 136.184 10.7753C136.473 10.7753 136.772 10.8085 137.083 10.8751C137.393 10.9195 137.726 11.0082 138.081 11.1413L137.881 15.0015C137.526 14.8462 137.16 14.7353 136.783 14.6687C136.428 14.58 136.095 14.5356 135.785 14.5356C134.92 14.5356 134.176 14.8129 133.555 15.3676C132.934 15.9 132.435 16.6654 132.058 17.6637C131.703 18.6399 131.459 19.8157 131.326 21.1912V28.479H127.698Z\" fill=\"#1B1B1B\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e8xvcu\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"d4qkkUiZv\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":gXW8HSAO6\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"L4iNm2lpA\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ig986k framer-1mcbspu\",\"data-framer-name\":\"How it works\",layoutDependency:layoutDependency,layoutId:\"L4iNm2lpA\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"How it works\"})}),className:\"framer-8lk49y\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"QsD6xbeY_\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.trupeer.ai/videos\",motionChild:true,nodeId:\"S7V6l8AQV\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,...addPropertyOverrides({mAh_CSFrC:{href:\"http://docs.trupeer.ai/\",openInNewTab:true},vQjyVoPjS:{href:\"http://docs.trupeer.ai/\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-foocjy framer-1mcbspu\",\"data-framer-name\":\"Docs\",layoutDependency:layoutDependency,layoutId:\"S7V6l8AQV\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Videos\"})}),className:\"framer-ipmoss\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"m_zvZVr48\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mAh_CSFrC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Docs\"})})},vQjyVoPjS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Docs\"})})}},baseVariant,gestureVariant)})})}),isDisplayed4()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kRNONq2mw\"},motionChild:true,nodeId:\"E65bIXfG5\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-q6m8tl framer-1mcbspu\",\"data-framer-name\":\"Stories\",layoutDependency:layoutDependency,layoutId:\"E65bIXfG5\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Stories\"})}),className:\"framer-trv908\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"zLTdnn81e\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed6()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(12+((componentViewport?.height||84)-24-68)/2)+12+4+0,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-sza19g-container\",id:`${layoutId}-sza19g`,layoutDependency:layoutDependency,layoutId:\"w1c3BEyw4-container\",nodeId:\"w1c3BEyw4\",ref:ref1,rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:[/*#__PURE__*/_jsx(ClickMenuNav,{FQhK0JwiR:FQhK0JwiRtxyyif({overlay}),height:\"100%\",id:\"w1c3BEyw4\",layoutId:\"w1c3BEyw4\",variant:overlay.visible?\"scp_Jt8uC\":\"pSId5ktnG\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-sza19g`,offsetX:53.18750289960008,offsetY:8.500001067237463,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,...addPropertyOverrides({mAh_CSFrC:{offsetX:73.18750289960008}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-2txmzl\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"WAVOonuT4\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"var(--token-7ef56079-1bd1-435d-a775-994666e07088, rgb(250, 250, 250))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:[isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-azkyx5\",layoutDependency:layoutDependency,layoutId:\"aqK6SBPwg\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"E5YvfFaC_\"},motionChild:true,nodeId:\"caX2Ip6Bq\",scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1pk7tft framer-1mcbspu\",layoutDependency:layoutDependency,layoutId:\"caX2Ip6Bq\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4pxm0z-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"JG02mq5Em-container\",nodeId:\"JG02mq5Em\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(OverlayInText,{HcRSKMxI5:\"Blog\",height:\"100%\",HZ8GFcPoj:\"JFHSMko14\",id:\"JG02mq5Em\",layoutId:\"JG02mq5Em\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kRNONq2mw\"},motionChild:true,nodeId:\"D8U35c5xf\",scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gq5yuz framer-1mcbspu\",layoutDependency:layoutDependency,layoutId:\"D8U35c5xf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10ri3qx-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"XmC_ufgDw-container\",nodeId:\"XmC_ufgDw\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(OverlayInText,{HcRSKMxI5:\"Customer stories\",height:\"100%\",HZ8GFcPoj:\"zTIeY9xjz\",id:\"XmC_ufgDw\",layoutId:\"XmC_ufgDw\",style:{width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"F7sgo3Tee\"},motionChild:true,nodeId:\"OfjBqyJpT\",openInNewTab:false,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-49y9yz framer-1mcbspu\",layoutDependency:layoutDependency,layoutId:\"OfjBqyJpT\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"200px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14r4m7d-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"pOwFkYtsQ-container\",nodeId:\"pOwFkYtsQ\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(OverlayInText,{HcRSKMxI5:\"Tutorials\",height:\"100%\",HZ8GFcPoj:\"Osw7bguNl\",id:\"pOwFkYtsQ\",layoutId:\"pOwFkYtsQ\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7wakcw\",\"data-border\":true,\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"D0tup_PLz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(225, 229, 231)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 3.200000047683716px 6.400000095367432px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 12.800000190734863px 12.800000190734863px 0px rgba(0, 0, 0, 0.09000000357627869), 0px 27.200000762939453px 16px 0px rgba(0, 0, 0, 0.05000000074505806), 0px 49.60000228881836px 19.200000762939453px 0px rgba(0, 0, 0, 0.009999999776482582), 0px 76.80000305175781px 20.80000114440918px 0px rgba(0, 0, 0, 0)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n1aq2l\",\"data-framer-name\":\"Translation\",layoutDependency:layoutDependency,layoutId:\"ibQHKIzRG\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yr3tt0\",\"data-framer-name\":\"Frame 1707477885\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"L_MJODUKD\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#FFF7C0\"/>\\n<path opacity=\"0.2\" d=\"M22.9198 28.0038C20.1198 28.0038 17.8398 25.7338 17.8398 22.9238C17.8398 20.1238 20.1098 17.8438 22.9198 17.8438C25.7198 17.8438 27.9998 20.1138 27.9998 22.9238C27.9998 25.7338 25.7298 28.0038 22.9198 28.0038Z\" fill=\"#FFBF31\"/>\\n<path opacity=\"0.2\" d=\"M11.02 8H14.94C17.01 8 18.01 8.99999 17.96 11.02V14.94C18.01 17.01 17.01 18.01 14.94 17.96H11.02C9 18 8 17 8 14.93V11.01C8 9.00001 9 8 11.02 8Z\" fill=\"#FFBF31\"/>\\n<path d=\"M15.0102 14.2619C14.7002 14.2619 14.4102 14.1419 14.1402 13.9419C14.3902 13.5419 14.5702 13.0919 14.6602 12.6019H15.0002C15.4102 12.6019 15.7502 12.2619 15.7502 11.8519C15.7502 11.4419 15.4102 11.1019 15.0002 11.1019H14.0102C14.0002 11.1019 13.9902 11.1019 13.9902 11.1019H13.9702H13.7102C13.6702 10.7219 13.3602 10.4219 12.9702 10.4219C12.5802 10.4219 12.2702 10.7219 12.2302 11.1019H10.9402C10.5302 11.1019 10.1902 11.4419 10.1902 11.8519C10.1902 12.2619 10.5302 12.6019 10.9402 12.6019H13.1102C12.8102 13.5619 11.9502 14.2619 10.9302 14.2619C10.5202 14.2619 10.1802 14.6019 10.1802 15.0119C10.1802 15.4219 10.5202 15.7619 10.9302 15.7619C11.7402 15.7619 12.4902 15.4919 13.1102 15.0419C13.6602 15.5019 14.3202 15.7619 15.0002 15.7619C15.4102 15.7619 15.7502 15.4219 15.7502 15.0119C15.7502 14.6019 15.4202 14.2619 15.0102 14.2619Z\" fill=\"#FFBF31\"/>\\n<path d=\"M15 28.75C10.73 28.75 7.25 25.27 7.25 21C7.25 20.59 7.59 20.25 8 20.25C8.41 20.25 8.75 20.59 8.75 21C8.75 23.96 10.81 26.44 13.58 27.09L13.31 26.64C13.1 26.28 13.21 25.82 13.57 25.61C13.92 25.4 14.39 25.51 14.6 25.87L15.65 27.62C15.79 27.85 15.79 28.14 15.66 28.37C15.52 28.6 15.27 28.75 15 28.75Z\" fill=\"#FFBF31\"/>\\n<path d=\"M27.9999 15.75C27.5899 15.75 27.2499 15.41 27.2499 15C27.2499 12.04 25.1899 9.56 22.4199 8.91L22.6899 9.35999C22.8999 9.71999 22.7899 10.18 22.4299 10.39C22.0799 10.6 21.6099 10.49 21.3999 10.13L20.3499 8.38C20.2099 8.15 20.2099 7.86 20.3399 7.63C20.4699 7.39 20.7199 7.25 20.9899 7.25C25.2599 7.25 28.7399 10.73 28.7399 15C28.7499 15.41 28.4099 15.75 27.9999 15.75Z\" fill=\"#FFBF31\"/>\\n<path d=\"M25.73 24.3306L23.59 20.0606C23.46 19.8106 23.2 19.6406 22.92 19.6406C22.64 19.6406 22.38 19.8006 22.25 20.0506L20.11 24.3206C19.92 24.6906 20.07 25.1406 20.45 25.3306C20.56 25.3806 20.67 25.4106 20.78 25.4106C21.05 25.4106 21.32 25.2606 21.45 25.0006L21.62 24.6606H24.2101L24.38 25.0006C24.57 25.3706 25.02 25.5206 25.39 25.3406C25.77 25.1506 25.92 24.7006 25.73 24.3306ZM22.38 23.1606L22.93 22.0706L23.48 23.1606H22.38Z\" fill=\"#FFBF31\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mw9ray\",\"data-framer-name\":\"Frame 1707477882\",layoutDependency:layoutDependency,layoutId:\"lj9kEAYre\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"Translation\"})}),className:\"framer-1lbvcv0\",\"data-framer-name\":\"Translation\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"F3p9Wvq9P\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"156%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(151, 151, 151))\"},children:\"Program that makes fun \"})}),className:\"framer-1os9soo\",\"data-framer-name\":\"Program that makes fun\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"f9MxzwVPN\",style:{\"--extracted-r6o4lv\":\"rgb(151, 151, 151)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1elyknn\",\"data-framer-name\":\"Guides\",layoutDependency:layoutDependency,layoutId:\"utvdQ_Tsa\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wzmije\",\"data-framer-name\":\"Frame 1707477886\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"aMIPZ7buh\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#C5E4FF\"/>\\n<path opacity=\"0.2\" d=\"M26.5 13V21H12.35C10.78 21 9.5 22.28 9.5 23.85V13C9.5 9 10.5 8 14.5 8H21.5C25.5 8 26.5 9 26.5 13Z\" fill=\"#55B0FF\"/>\\n<path d=\"M26.5 21V24.5C26.5 26.43 24.93 28 23 28H13C11.07 28 9.5 26.43 9.5 24.5V23.85C9.5 22.28 10.78 21 12.35 21H26.5Z\" fill=\"#55B0FF\"/>\\n<path d=\"M22 13.75H14C13.59 13.75 13.25 13.41 13.25 13C13.25 12.59 13.59 12.25 14 12.25H22C22.41 12.25 22.75 12.59 22.75 13C22.75 13.41 22.41 13.75 22 13.75Z\" fill=\"#55B0FF\"/>\\n<path d=\"M19 17.25H14C13.59 17.25 13.25 16.91 13.25 16.5C13.25 16.09 13.59 15.75 14 15.75H19C19.41 15.75 19.75 16.09 19.75 16.5C19.75 16.91 19.41 17.25 19 17.25Z\" fill=\"#55B0FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uwpxh5\",\"data-framer-name\":\"Frame 1707477883\",layoutDependency:layoutDependency,layoutId:\"OWavs287q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"Guides\"})}),className:\"framer-1fosxu2\",\"data-framer-name\":\"Guides\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"dQClyr7F0\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"156%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(151, 151, 151))\"},children:\"Program that makes fun \"})}),className:\"framer-1x3noa6\",\"data-framer-name\":\"Program that makes fun\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Oso2UxMZt\",style:{\"--extracted-r6o4lv\":\"rgb(151, 151, 151)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1elck7u\",\"data-framer-name\":\"Brand kits\",layoutDependency:layoutDependency,layoutId:\"NfZSeycjc\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ap3u92\",\"data-framer-name\":\"Frame 1707477887\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:36,layoutDependency:layoutDependency,layoutId:\"YMyTNHCpm\",svg:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#CEC4FF\"/>\\n<path opacity=\"0.2\" d=\"M22.5395 7.17188H13.472C9.51783 7.17188 7.16699 9.52271 7.16699 13.466V22.5335C7.16699 26.4769 9.51782 28.8277 13.4612 28.8277H22.5286C26.472 28.8277 28.8228 26.4769 28.8228 22.5335V13.466C28.8336 9.52271 26.4828 7.17188 22.5395 7.17188Z\" fill=\"#8269FF\"/>\\n<path opacity=\"0.6\" d=\"M19.3 20.6029C19.3 21.7512 18.8017 22.7912 18 23.5062C17.3067 24.1346 16.3966 24.5029 15.4 24.5029C13.2441 24.5029 11.5 22.7587 11.5 20.6029C11.5 18.8046 12.7242 17.2879 14.3709 16.8438C14.815 17.9704 15.7792 18.8479 16.9708 19.1729C17.2958 19.2596 17.6425 19.3137 18 19.3137C18.3575 19.3137 18.7042 19.2704 19.0292 19.1729C19.2025 19.6062 19.3 20.0937 19.3 20.6029Z\" fill=\"#8269FF\"/>\\n<path opacity=\"0.9\" d=\"M21.8996 15.4C21.8996 15.9092 21.8021 16.3967 21.6287 16.8408C21.1846 17.9675 20.2204 18.845 19.0288 19.17C18.7038 19.2567 18.3571 19.3108 17.9996 19.3108C17.6421 19.3108 17.2954 19.2675 16.9704 19.17C15.7787 18.845 14.8146 17.9783 14.3704 16.8408C14.1971 16.3967 14.0996 15.9092 14.0996 15.4C14.0996 13.2442 15.8437 11.5 17.9996 11.5C20.1554 11.5 21.8996 13.2442 21.8996 15.4Z\" fill=\"#8269FF\"/>\\n<path opacity=\"0.3\" d=\"M24.5 20.5981C24.5 22.754 22.7559 24.4981 20.6 24.4981C19.6034 24.4981 18.6933 24.119 18 23.5015C18.8017 22.7973 19.3 21.7573 19.3 20.5981C19.3 20.089 19.2025 19.6015 19.0292 19.1573C20.2208 18.8323 21.185 17.9656 21.6291 16.8281C23.2758 17.2831 24.5 18.7998 24.5 20.5981Z\" fill=\"#8269FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15dbhjp\",\"data-framer-name\":\"Frame 1707477884\",layoutDependency:layoutDependency,layoutId:\"U3q6hJjyr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"100%\"},children:\"Brand Kits\"})}),className:\"framer-1uwdqjq\",\"data-framer-name\":\"Brand Kits\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"Pk68jFYSI\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"156%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(151, 151, 151))\"},children:\"Program that makes fun and frolic\"})}),className:\"framer-1f9aen\",\"data-framer-name\":\"Program that makes fun and frolic\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"oCKhdRMmg\",style:{\"--extracted-r6o4lv\":\"rgb(151, 151, 151)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pkr08t\",\"data-border\":true,\"data-framer-name\":\"Overlay\",layoutDependency:layoutDependency,layoutId:\"XqSPUmHX1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(225, 229, 231)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 3.200000047683716px 6.400000095367432px 0px rgba(0, 0, 0, 0.10000000149011612), 0px 12.800000190734863px 12.800000190734863px 0px rgba(0, 0, 0, 0.09000000357627869), 0px 27.200000762939453px 16px 0px rgba(0, 0, 0, 0.05000000074505806), 0px 49.60000228881836px 19.200000762939453px 0px rgba(0, 0, 0, 0.009999999776482582), 0px 76.80000305175781px 20.80000114440918px 0px rgba(0, 0, 0, 0)\"},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XDk1jZcBQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"212px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bm4moy-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"fWTcDTiJq-container\",nodeId:\"fWTcDTiJq\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(ItemOverlay,{CM166jIQh:\"rgb(255, 191, 49)\",f2FbBz7aT:\"Program that makes fun \",Fym_HPJve:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#FFF7C0\"/>\\n<path opacity=\"0.2\" d=\"M22.9198 28.0038C20.1198 28.0038 17.8398 25.7338 17.8398 22.9238C17.8398 20.1238 20.1098 17.8438 22.9198 17.8438C25.7198 17.8438 27.9998 20.1138 27.9998 22.9238C27.9998 25.7338 25.7298 28.0038 22.9198 28.0038Z\" fill=\"#FFBF31\"/>\\n<path opacity=\"0.2\" d=\"M11.02 8H14.94C17.01 8 18.01 8.99999 17.96 11.02V14.94C18.01 17.01 17.01 18.01 14.94 17.96H11.02C9 18 8 17 8 14.93V11.01C8 9.00001 9 8 11.02 8Z\" fill=\"#FFBF31\"/>\\n<path d=\"M15.0102 14.2619C14.7002 14.2619 14.4102 14.1419 14.1402 13.9419C14.3902 13.5419 14.5702 13.0919 14.6602 12.6019H15.0002C15.4102 12.6019 15.7502 12.2619 15.7502 11.8519C15.7502 11.4419 15.4102 11.1019 15.0002 11.1019H14.0102C14.0002 11.1019 13.9902 11.1019 13.9902 11.1019H13.9702H13.7102C13.6702 10.7219 13.3602 10.4219 12.9702 10.4219C12.5802 10.4219 12.2702 10.7219 12.2302 11.1019H10.9402C10.5302 11.1019 10.1902 11.4419 10.1902 11.8519C10.1902 12.2619 10.5302 12.6019 10.9402 12.6019H13.1102C12.8102 13.5619 11.9502 14.2619 10.9302 14.2619C10.5202 14.2619 10.1802 14.6019 10.1802 15.0119C10.1802 15.4219 10.5202 15.7619 10.9302 15.7619C11.7402 15.7619 12.4902 15.4919 13.1102 15.0419C13.6602 15.5019 14.3202 15.7619 15.0002 15.7619C15.4102 15.7619 15.7502 15.4219 15.7502 15.0119C15.7502 14.6019 15.4202 14.2619 15.0102 14.2619Z\" fill=\"#FFBF31\"/>\\n<path d=\"M15 28.75C10.73 28.75 7.25 25.27 7.25 21C7.25 20.59 7.59 20.25 8 20.25C8.41 20.25 8.75 20.59 8.75 21C8.75 23.96 10.81 26.44 13.58 27.09L13.31 26.64C13.1 26.28 13.21 25.82 13.57 25.61C13.92 25.4 14.39 25.51 14.6 25.87L15.65 27.62C15.79 27.85 15.79 28.14 15.66 28.37C15.52 28.6 15.27 28.75 15 28.75Z\" fill=\"#FFBF31\"/>\\n<path d=\"M27.9999 15.75C27.5899 15.75 27.2499 15.41 27.2499 15C27.2499 12.04 25.1899 9.56 22.4199 8.91L22.6899 9.35999C22.8999 9.71999 22.7899 10.18 22.4299 10.39C22.0799 10.6 21.6099 10.49 21.3999 10.13L20.3499 8.38C20.2099 8.15 20.2099 7.86 20.3399 7.63C20.4699 7.39 20.7199 7.25 20.9899 7.25C25.2599 7.25 28.7399 10.73 28.7399 15C28.7499 15.41 28.4099 15.75 27.9999 15.75Z\" fill=\"#FFBF31\"/>\\n<path d=\"M25.73 24.3306L23.59 20.0606C23.46 19.8106 23.2 19.6406 22.92 19.6406C22.64 19.6406 22.38 19.8006 22.25 20.0506L20.11 24.3206C19.92 24.6906 20.07 25.1406 20.45 25.3306C20.56 25.3806 20.67 25.4106 20.78 25.4106C21.05 25.4106 21.32 25.2606 21.45 25.0006L21.62 24.6606H24.2101L24.38 25.0006C24.57 25.3706 25.02 25.5206 25.39 25.3406C25.77 25.1506 25.92 24.7006 25.73 24.3306ZM22.38 23.1606L22.93 22.0706L23.48 23.1606H22.38Z\" fill=\"#FFBF31\"/>\\n</svg>\\n',height:\"100%\",id:\"fWTcDTiJq\",layoutId:\"fWTcDTiJq\",lFxISvyEu:\"Translation\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({mAh_CSFrC:{CM166jIQh:\"rgb(255, 173, 49)\",f2FbBz7aT:\"30+ languages in one click\",kqvuRLT7J:resolvedLinks[0]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YDy_mrpDW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"212px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-633e0y-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"i7pSP2yq_-container\",nodeId:\"i7pSP2yq_\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(ItemOverlay,{CM166jIQh:\"rgb(85, 176, 255)\",f2FbBz7aT:\"Program that makes fun and frolic\",Fym_HPJve:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#C5E4FF\"/>\\n<path opacity=\"0.2\" d=\"M26.5 13V21H12.35C10.78 21 9.5 22.28 9.5 23.85V13C9.5 9 10.5 8 14.5 8H21.5C25.5 8 26.5 9 26.5 13Z\" fill=\"#55B0FF\"/>\\n<path d=\"M26.5 21V24.5C26.5 26.43 24.93 28 23 28H13C11.07 28 9.5 26.43 9.5 24.5V23.85C9.5 22.28 10.78 21 12.35 21H26.5Z\" fill=\"#55B0FF\"/>\\n<path d=\"M22 13.75H14C13.59 13.75 13.25 13.41 13.25 13C13.25 12.59 13.59 12.25 14 12.25H22C22.41 12.25 22.75 12.59 22.75 13C22.75 13.41 22.41 13.75 22 13.75Z\" fill=\"#55B0FF\"/>\\n<path d=\"M19 17.25H14C13.59 17.25 13.25 16.91 13.25 16.5C13.25 16.09 13.59 15.75 14 15.75H19C19.41 15.75 19.75 16.09 19.75 16.5C19.75 16.91 19.41 17.25 19 17.25Z\" fill=\"#55B0FF\"/>\\n</svg>\\n',height:\"100%\",id:\"i7pSP2yq_\",layoutId:\"i7pSP2yq_\",lFxISvyEu:\"Guides\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({mAh_CSFrC:{CM166jIQh:\"rgb(247, 96, 152)\",f2FbBz7aT:\"Create Avatar ready videos\",Fym_HPJve:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#FFC5DA\"/>\\n<path opacity=\"0.2\" d=\"M17.9998 28.8385C23.9829 28.8385 28.8332 23.9883 28.8332 18.0052C28.8332 12.0221 23.9829 7.17188 17.9998 7.17188C12.0168 7.17188 7.1665 12.0221 7.1665 18.0052C7.1665 23.9883 12.0168 28.8385 17.9998 28.8385Z\" fill=\"#FA518F\"/>\\n<path d=\"M18 12.5156C15.7575 12.5156 13.9375 14.3356 13.9375 16.5781C13.9375 18.7773 15.66 20.5648 17.9458 20.6298C17.9783 20.6298 18.0217 20.6298 18.0433 20.6298C18.065 20.6298 18.0975 20.6298 18.1192 20.6298C18.13 20.6298 18.1408 20.6298 18.1408 20.6298C20.3292 20.554 22.0517 18.7773 22.0625 16.5781C22.0625 14.3356 20.2425 12.5156 18 12.5156Z\" fill=\"#FA518F\"/>\\n<path d=\"M25.3453 25.979C23.4169 27.7556 20.8386 28.8498 18.0003 28.8498C15.1619 28.8498 12.5836 27.7556 10.6553 25.979C10.9153 24.9931 11.6194 24.094 12.6486 23.4006C15.6061 21.429 20.4161 21.429 23.3519 23.4006C24.3919 24.094 25.0853 24.9931 25.3453 25.979Z\" fill=\"#FA518F\"/>\\n</svg>\\n',kqvuRLT7J:resolvedLinks1[0],lFxISvyEu:\"AI Avatars\",style:{height:\"100%\",width:\"100%\"}}},baseVariant,gestureVariant)})})})}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"212px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2o8hgo-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HBYaNjfOc-container\",nodeId:\"HBYaNjfOc\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(ItemOverlay,{CM166jIQh:\"rgb(130, 105, 255)\",f2FbBz7aT:\"Program that makes fun \",Fym_HPJve:'<svg width=\"36\" height=\"36\" viewBox=\"0 0 36 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"36\" height=\"36\" rx=\"4\" fill=\"#CEC4FF\"/>\\n<path opacity=\"0.2\" d=\"M22.5395 7.17188H13.472C9.51783 7.17188 7.16699 9.52271 7.16699 13.466V22.5335C7.16699 26.4769 9.51782 28.8277 13.4612 28.8277H22.5286C26.472 28.8277 28.8228 26.4769 28.8228 22.5335V13.466C28.8336 9.52271 26.4828 7.17188 22.5395 7.17188Z\" fill=\"#8269FF\"/>\\n<path opacity=\"0.6\" d=\"M19.3 20.6029C19.3 21.7512 18.8017 22.7912 18 23.5062C17.3067 24.1346 16.3966 24.5029 15.4 24.5029C13.2441 24.5029 11.5 22.7587 11.5 20.6029C11.5 18.8046 12.7242 17.2879 14.3709 16.8438C14.815 17.9704 15.7792 18.8479 16.9708 19.1729C17.2958 19.2596 17.6425 19.3137 18 19.3137C18.3575 19.3137 18.7042 19.2704 19.0292 19.1729C19.2025 19.6062 19.3 20.0937 19.3 20.6029Z\" fill=\"#8269FF\"/>\\n<path opacity=\"0.9\" d=\"M21.8996 15.4C21.8996 15.9092 21.8021 16.3967 21.6287 16.8408C21.1846 17.9675 20.2204 18.845 19.0288 19.17C18.7038 19.2567 18.3571 19.3108 17.9996 19.3108C17.6421 19.3108 17.2954 19.2675 16.9704 19.17C15.7787 18.845 14.8146 17.9783 14.3704 16.8408C14.1971 16.3967 14.0996 15.9092 14.0996 15.4C14.0996 13.2442 15.8437 11.5 17.9996 11.5C20.1554 11.5 21.8996 13.2442 21.8996 15.4Z\" fill=\"#8269FF\"/>\\n<path opacity=\"0.3\" d=\"M24.5 20.5981C24.5 22.754 22.7559 24.4981 20.6 24.4981C19.6034 24.4981 18.6933 24.119 18 23.5015C18.8017 22.7973 19.3 21.7573 19.3 20.5981C19.3 20.089 19.2025 19.6015 19.0292 19.1573C20.2208 18.8323 21.185 17.9656 21.6291 16.8281C23.2758 17.2831 24.5 18.7998 24.5 20.5981Z\" fill=\"#8269FF\"/>\\n</svg>\\n',height:\"100%\",id:\"HBYaNjfOc\",layoutId:\"HBYaNjfOc\",lFxISvyEu:\"Translation\",style:{width:\"100%\"},width:\"100%\"})})})]})]})})})]})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"mOaysidjR\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,...addPropertyOverrides({mAh_CSFrC:{href:{webPageId:\"Ml4Pw8aiv\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lsux43 framer-1mcbspu\",\"data-framer-name\":\"Pricing\",layoutDependency:layoutDependency,layoutId:\"mOaysidjR\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Pricing\"})}),className:\"framer-t8v1uv\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"P3qIk5HR3\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed7()&&/*#__PURE__*/_jsx(Link,{href:{hash:\":iY10ZjP6z\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"f7Ze_AgG6\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gvlb5v framer-1mcbspu\",\"data-framer-name\":\"FAQs\",layoutDependency:layoutDependency,layoutId:\"f7Ze_AgG6\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0px 0px 1px rgba(255, 255, 255, 0)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"FAQs\"})}),className:\"framer-1ykllse\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"CtLnobcqR\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mAh_CSFrC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"FAQs  \"})})}},baseVariant,gestureVariant)})})})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+(12+((componentViewport?.height||84)-24-68)/2)+12+0,...addPropertyOverrides({vQjyVoPjS:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||85)-24-68)/2)+12+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-25ldnu-container\",layoutDependency:layoutDependency,layoutId:\"x3dH_Bk2i-container\",nodeId:\"x3dH_Bk2i\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(ButtonsButtonCopyWithRedirectCTA25ldnuWithMappedReactPropsuegppr,{AXOzE6TBc:14,fxmzeOXhD:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",GLWImmBy_:true,HBR9r6Wzz:false,height:\"100%\",id:\"x3dH_Bk2i\",kTynE2FQc:\"regular\",layoutId:\"x3dH_Bk2i\",LdEuC589O:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",odb0bWURU:\"https://app.trupeer.ai/\",Q7omvm8K3:true,QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",tipS0P7cJ:\"Start free trial\",variant:\"RJ1mB7Tm0\",width:\"100%\",...addPropertyOverrides({vQjyVoPjS:{odb0bWURU:undefined}},baseVariant,gestureVariant)})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({mAh_CSFrC:{height:44,width:\"100px\",y:(componentViewport?.y||0)+(12+((componentViewport?.height||84)-24-68)/2)+12+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ap3fgw-container\",layoutDependency:layoutDependency,layoutId:\"AhoeIvVGW-container\",nodeId:\"AhoeIvVGW\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(ButtonsButtonCopy2WithRedirectCTAap3fgwWithMappedReactProps1dn29cy,{C4J20wreR:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",cbdeetN3I:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",GLWImmBy_:true,HBR9r6Wzz:false,height:\"100%\",id:\"AhoeIvVGW\",kTynE2FQc:\"regular\",layoutId:\"AhoeIvVGW\",LdEuC589O:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",nL8OQ61g_:\"House\",nZIvc5R21:\"ArrowRight\",QQq_dHjj6:\"regular\",rt9DsEiKG:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(36, 36, 36))\",style:{width:\"100%\"},tipS0P7cJ:\"Get started \",variant:\"guCNEcjFl\",width:\"100%\",zt3vyrVcx:{borderColor:'var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163)) /* {\"name\":\"Neutral-400\"} */',borderStyle:\"solid\",borderWidth:1}})})})]})}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpcyla\",\"data-framer-name\":\"Mobile Expanded\",layoutDependency:layoutDependency,layoutId:\"J2GsgZKoI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iyvlhv\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"V0bjcUg5N\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-yby9zy\",layoutDependency:layoutDependency,layoutId:\"YoLIz_v7Y\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-c5vxkq\",layoutDependency:layoutDependency,layoutId:\"MTQnML4IM\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163)))\"},children:\"Main Menu\"})}),className:\"framer-13isarp\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"w1MKhGpZG\",style:{\"--extracted-r6o4lv\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":gXW8HSAO6\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"D73mD4oLd\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,...addPropertyOverrides({WCbxusjUS:{href:{hash:\":KHKPoc6K_\",webPageId:\"augiA20Il\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1galv5h framer-1mcbspu\",\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"D73mD4oLd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lbidk7\",layoutDependency:layoutDependency,layoutId:\"fIviRuy2q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"How it works\"})}),className:\"framer-34nbgy\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"NgQqYFLrQ\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":ZjNPzI59e\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"s0hnOTFT5\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,...addPropertyOverrides({FhEzoBi5c:{href:{webPageId:\"YDy_mrpDW\"}},WCbxusjUS:{href:{webPageId:\"YDy_mrpDW\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1cnpwzf framer-1mcbspu\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"s0hnOTFT5\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gd3mn3\",layoutDependency:layoutDependency,layoutId:\"rbw0VI3rj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Videos\"})}),className:\"framer-rxrxdj\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"KZqxeKMNa\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"YDy_mrpDW\"},motionChild:true,nodeId:\"zPr7aYiEy\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,...addPropertyOverrides({FhEzoBi5c:{href:\"https://docs.trupeer.ai/\",openInNewTab:true},WCbxusjUS:{href:\"https://docs.trupeer.ai/\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p0we4s framer-1mcbspu\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"zPr7aYiEy\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kd8y09\",layoutDependency:layoutDependency,layoutId:\"xzAcmcYJp\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Videos\"})}),className:\"framer-w3j4da\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"nwK2VlD__\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FhEzoBi5c:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Docs\"})})},WCbxusjUS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Docs\"})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"cRfkd9o_U\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7hjyh1 framer-1mcbspu\",\"data-framer-name\":\"D\",layoutDependency:layoutDependency,layoutId:\"cRfkd9o_U\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ufwvkq\",layoutDependency:layoutDependency,layoutId:\"oKBGiGpo1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Pricing\"})}),className:\"framer-57wt46\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"Szb2jrfS2\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":iY10ZjP6z\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zq1keRNn6\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-5lztnw framer-1mcbspu\",\"data-framer-name\":\"E\",layoutDependency:layoutDependency,layoutId:\"zq1keRNn6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fs3rpb\",layoutDependency:layoutDependency,layoutId:\"jLLP7qp_s\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"FAQs\"})}),className:\"framer-4l0yjs\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"GUBWf7JoZ\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10my2kx\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"je4v7RnVR\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},variants:{FhEzoBi5c:{\"--border-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"},WCbxusjUS:{\"--border-color\":\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wg0m9b\",layoutDependency:layoutDependency,layoutId:\"U3Famy2dl\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ay09fs\",layoutDependency:layoutDependency,layoutId:\"V6fYnmeH8\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163)))\"},children:\"Resources\"})}),className:\"framer-oj7bgr\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"ok63pfPyU\",style:{\"--extracted-r6o4lv\":\"var(--token-6145797c-db14-4e39-8951-2131725399fb, rgb(163, 163, 163))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"E5YvfFaC_\"},motionChild:true,nodeId:\"CewjgydBQ\",scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-p5mfyr framer-1mcbspu\",\"data-framer-name\":\"A\",layoutDependency:layoutDependency,layoutId:\"CewjgydBQ\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dz4wh1\",layoutDependency:layoutDependency,layoutId:\"dJ5KO1onz\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Blogs\"})}),className:\"framer-1mjebnj\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"dvMKFDnKG\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"F7sgo3Tee\"},motionChild:true,nodeId:\"JmIHN_PkX\",scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-14mhjkf framer-1mcbspu\",\"data-framer-name\":\"B\",layoutDependency:layoutDependency,layoutId:\"JmIHN_PkX\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nyj74d\",layoutDependency:layoutDependency,layoutId:\"ddjWMyxir\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Tutorials\"})}),className:\"framer-jd4lps\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"KSj54Di6O\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kRNONq2mw\"},motionChild:true,nodeId:\"A8xtRF34G\",scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-11bgmov framer-1mcbspu\",\"data-framer-name\":\"C\",layoutDependency:layoutDependency,layoutId:\"A8xtRF34G\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e2s1ba\",layoutDependency:layoutDependency,layoutId:\"ajMcA8iNd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Customer stories\"})}),className:\"framer-1jo4xi6\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"fEKkjXbOB\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),isDisplayed10()&&/*#__PURE__*/_jsx(Link,{href:{webPageId:\"d10lxjRT1\"},motionChild:true,nodeId:\"jQZYuFW0l\",scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-r8oftt framer-1mcbspu\",\"data-framer-name\":\"D\",layoutDependency:layoutDependency,layoutId:\"jQZYuFW0l\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18tw2y5\",layoutDependency:layoutDependency,layoutId:\"wcqn05Eva\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38)))\"},children:\"Tools\"})}),className:\"framer-zuooqg\",fonts:[\"FS;Satoshi-bold\"],layoutDependency:layoutDependency,layoutId:\"lu1X4JCeW\",style:{\"--extracted-r6o4lv\":\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xoxc93\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"H1UZ5Ehb2\",children:/*#__PURE__*/_jsx(Link,{href:\"https://app.trupeer.ai/\",motionChild:true,nodeId:\"P9TN8zMFV\",openInNewTab:false,scopeId:\"rZxsEorCR\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-11tej8f framer-1mcbspu\",\"data-framer-name\":\"Buttons/Button Copy 3\",layoutDependency:layoutDependency,layoutId:\"P9TN8zMFV\",style:{backgroundColor:\"var(--token-561fa634-2c16-46c5-b02f-8f9869cf4f2c, rgb(38, 38, 38))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 4px 10px -2px rgba(0, 0, 0, 0.1), 0px 2px 2px -1px rgba(0, 0, 0, 0.1), 0px 0px 0px 1px rgba(255, 255, 255, 0.08)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250)))\"},children:\"Get started for free\"})}),className:\"framer-tp28ui\",\"data-framer-name\":\"Categories\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"PYhTQ_KiS\",style:{\"--extracted-1w1cjl5\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(252, 252, 250))\"},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h6szg2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uyJUqFclL-container\",nodeId:\"uyJUqFclL\",rendersWithMotion:true,scopeId:\"rZxsEorCR\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-958d6a9e-bb7c-4a88-a47a-70db899d1dd5, rgb(252, 252, 250))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"uyJUqFclL\",layoutId:\"uyJUqFclL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mLxqy.framer-1mcbspu, .framer-mLxqy .framer-1mcbspu { display: block; }\",\".framer-mLxqy.framer-ko1ow { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 64px 12px 64px; position: relative; width: 1200px; }\",\".framer-mLxqy .framer-1qp7zga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 86px; }\",\".framer-mLxqy .framer-9evdvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mLxqy .framer-1x55i3k { flex: none; height: 20px; position: relative; width: 87px; }\",\".framer-mLxqy .framer-n57iv3-container { flex: none; height: 31px; position: relative; width: 31px; }\",\".framer-mLxqy .framer-1dry7l9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 12px 24px 12px 24px; position: relative; width: min-content; }\",\".framer-mLxqy .framer-h0i97z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mLxqy .framer-13nmpw6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-mLxqy .framer-73pf4v { aspect-ratio: 4.67741935483871 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 140px; }\",\".framer-mLxqy .framer-4oxlpt { flex: none; height: 26px; position: relative; width: 148px; }\",\".framer-mLxqy .framer-1u84uoa { flex: none; height: 37px; position: relative; width: 141px; }\",\".framer-mLxqy .framer-e8xvcu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mLxqy .framer-ig986k, .framer-mLxqy .framer-foocjy, .framer-mLxqy .framer-q6m8tl, .framer-mLxqy .framer-1lsux43, .framer-mLxqy .framer-gvlb5v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 14px 8px 14px; position: relative; text-decoration: none; width: min-content; }\",\".framer-mLxqy .framer-8lk49y, .framer-mLxqy .framer-ipmoss, .framer-mLxqy .framer-trv908, .framer-mLxqy .framer-t8v1uv, .framer-mLxqy .framer-1ykllse, .framer-mLxqy .framer-13isarp, .framer-mLxqy .framer-34nbgy, .framer-mLxqy .framer-rxrxdj, .framer-mLxqy .framer-w3j4da, .framer-mLxqy .framer-57wt46, .framer-mLxqy .framer-4l0yjs, .framer-mLxqy .framer-oj7bgr, .framer-mLxqy .framer-1mjebnj, .framer-mLxqy .framer-jd4lps, .framer-mLxqy .framer-1jo4xi6, .framer-mLxqy .framer-zuooqg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mLxqy .framer-sza19g-container, .framer-mLxqy .framer-25ldnu-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mLxqy .framer-2txmzl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-mLxqy .framer-azkyx5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-mLxqy .framer-1pk7tft { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 200px; }\",\".framer-mLxqy .framer-4pxm0z-container, .framer-mLxqy .framer-10ri3qx-container, .framer-mLxqy .framer-14r4m7d-container { flex: none; height: auto; position: relative; width: 200px; }\",\".framer-mLxqy .framer-1gq5yuz, .framer-mLxqy .framer-49y9yz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: auto; }\",\".framer-mLxqy .framer-7wakcw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 14px; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mLxqy .framer-1n1aq2l, .framer-mLxqy .framer-1elyknn, .framer-mLxqy .framer-1elck7u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mLxqy .framer-yr3tt0, .framer-mLxqy .framer-1wzmije, .framer-mLxqy .framer-1ap3u92 { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-mLxqy .framer-1mw9ray, .framer-mLxqy .framer-1uwpxh5, .framer-mLxqy .framer-15dbhjp { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-mLxqy .framer-1lbvcv0, .framer-mLxqy .framer-1os9soo, .framer-mLxqy .framer-1fosxu2, .framer-mLxqy .framer-1x3noa6, .framer-mLxqy .framer-1uwdqjq, .framer-mLxqy .framer-1f9aen { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 156px; word-break: break-word; word-wrap: break-word; }\",\".framer-mLxqy .framer-pkr08t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 10px; position: relative; width: 232px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mLxqy .framer-1bm4moy-container, .framer-mLxqy .framer-633e0y-container, .framer-mLxqy .framer-2o8hgo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-mLxqy .framer-ap3fgw-container { flex: none; height: auto; position: relative; width: 100px; }\",\".framer-mLxqy .framer-1qpcyla { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-mLxqy .framer-iyvlhv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mLxqy .framer-yby9zy, .framer-mLxqy .framer-1wg0m9b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-mLxqy .framer-c5vxkq, .framer-mLxqy .framer-lbidk7, .framer-mLxqy .framer-1gd3mn3, .framer-mLxqy .framer-1kd8y09, .framer-mLxqy .framer-1ufwvkq, .framer-mLxqy .framer-fs3rpb, .framer-mLxqy .framer-1ay09fs, .framer-mLxqy .framer-1dz4wh1, .framer-mLxqy .framer-nyj74d, .framer-mLxqy .framer-e2s1ba, .framer-mLxqy .framer-18tw2y5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mLxqy .framer-1galv5h, .framer-mLxqy .framer-1cnpwzf, .framer-mLxqy .framer-p0we4s, .framer-mLxqy .framer-7hjyh1, .framer-mLxqy .framer-5lztnw, .framer-mLxqy .framer-p5mfyr, .framer-mLxqy .framer-14mhjkf, .framer-mLxqy .framer-11bgmov, .framer-mLxqy .framer-r8oftt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; text-decoration: none; width: 100%; }\",\".framer-mLxqy .framer-10my2kx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: flex-start; overflow: visible; padding: 0px 8px 8px 8px; position: relative; width: 100%; }\",\".framer-mLxqy .framer-xoxc93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mLxqy .framer-11tej8f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 18px 12px 18px; position: relative; text-decoration: none; width: 100%; }\",\".framer-mLxqy .framer-tp28ui { -webkit-user-select: none; flex: none; height: 20px; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-mLxqy .framer-h6szg2-container { flex: none; height: 18px; position: relative; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-ko1ow, .framer-mLxqy .framer-1qp7zga, .framer-mLxqy .framer-9evdvq, .framer-mLxqy .framer-1dry7l9, .framer-mLxqy .framer-h0i97z, .framer-mLxqy .framer-13nmpw6, .framer-mLxqy .framer-e8xvcu, .framer-mLxqy .framer-ig986k, .framer-mLxqy .framer-foocjy, .framer-mLxqy .framer-q6m8tl, .framer-mLxqy .framer-2txmzl, .framer-mLxqy .framer-azkyx5, .framer-mLxqy .framer-1pk7tft, .framer-mLxqy .framer-1gq5yuz, .framer-mLxqy .framer-49y9yz, .framer-mLxqy .framer-7wakcw, .framer-mLxqy .framer-1n1aq2l, .framer-mLxqy .framer-1mw9ray, .framer-mLxqy .framer-1elyknn, .framer-mLxqy .framer-1uwpxh5, .framer-mLxqy .framer-1elck7u, .framer-mLxqy .framer-15dbhjp, .framer-mLxqy .framer-pkr08t, .framer-mLxqy .framer-1lsux43, .framer-mLxqy .framer-gvlb5v, .framer-mLxqy .framer-1qpcyla, .framer-mLxqy .framer-iyvlhv, .framer-mLxqy .framer-yby9zy, .framer-mLxqy .framer-c5vxkq, .framer-mLxqy .framer-1galv5h, .framer-mLxqy .framer-lbidk7, .framer-mLxqy .framer-1cnpwzf, .framer-mLxqy .framer-1gd3mn3, .framer-mLxqy .framer-p0we4s, .framer-mLxqy .framer-1kd8y09, .framer-mLxqy .framer-7hjyh1, .framer-mLxqy .framer-1ufwvkq, .framer-mLxqy .framer-5lztnw, .framer-mLxqy .framer-fs3rpb, .framer-mLxqy .framer-10my2kx, .framer-mLxqy .framer-1wg0m9b, .framer-mLxqy .framer-1ay09fs, .framer-mLxqy .framer-p5mfyr, .framer-mLxqy .framer-1dz4wh1, .framer-mLxqy .framer-14mhjkf, .framer-mLxqy .framer-nyj74d, .framer-mLxqy .framer-11bgmov, .framer-mLxqy .framer-e2s1ba, .framer-mLxqy .framer-r8oftt, .framer-mLxqy .framer-18tw2y5, .framer-mLxqy .framer-xoxc93, .framer-mLxqy .framer-11tej8f { gap: 0px; } .framer-mLxqy.framer-ko1ow > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-mLxqy.framer-ko1ow > :first-child, .framer-mLxqy .framer-1qp7zga > :first-child, .framer-mLxqy .framer-9evdvq > :first-child, .framer-mLxqy .framer-1dry7l9 > :first-child, .framer-mLxqy .framer-h0i97z > :first-child, .framer-mLxqy .framer-13nmpw6 > :first-child, .framer-mLxqy .framer-e8xvcu > :first-child, .framer-mLxqy .framer-ig986k > :first-child, .framer-mLxqy .framer-foocjy > :first-child, .framer-mLxqy .framer-q6m8tl > :first-child, .framer-mLxqy .framer-1pk7tft > :first-child, .framer-mLxqy .framer-1gq5yuz > :first-child, .framer-mLxqy .framer-49y9yz > :first-child, .framer-mLxqy .framer-1n1aq2l > :first-child, .framer-mLxqy .framer-1elyknn > :first-child, .framer-mLxqy .framer-1elck7u > :first-child, .framer-mLxqy .framer-1lsux43 > :first-child, .framer-mLxqy .framer-gvlb5v > :first-child, .framer-mLxqy .framer-yby9zy > :first-child, .framer-mLxqy .framer-c5vxkq > :first-child, .framer-mLxqy .framer-1galv5h > :first-child, .framer-mLxqy .framer-lbidk7 > :first-child, .framer-mLxqy .framer-1cnpwzf > :first-child, .framer-mLxqy .framer-1gd3mn3 > :first-child, .framer-mLxqy .framer-p0we4s > :first-child, .framer-mLxqy .framer-1kd8y09 > :first-child, .framer-mLxqy .framer-7hjyh1 > :first-child, .framer-mLxqy .framer-1ufwvkq > :first-child, .framer-mLxqy .framer-5lztnw > :first-child, .framer-mLxqy .framer-fs3rpb > :first-child, .framer-mLxqy .framer-10my2kx > :first-child, .framer-mLxqy .framer-1wg0m9b > :first-child, .framer-mLxqy .framer-1ay09fs > :first-child, .framer-mLxqy .framer-p5mfyr > :first-child, .framer-mLxqy .framer-1dz4wh1 > :first-child, .framer-mLxqy .framer-14mhjkf > :first-child, .framer-mLxqy .framer-nyj74d > :first-child, .framer-mLxqy .framer-11bgmov > :first-child, .framer-mLxqy .framer-e2s1ba > :first-child, .framer-mLxqy .framer-r8oftt > :first-child, .framer-mLxqy .framer-18tw2y5 > :first-child, .framer-mLxqy .framer-11tej8f > :first-child { margin-left: 0px; } .framer-mLxqy.framer-ko1ow > :last-child, .framer-mLxqy .framer-1qp7zga > :last-child, .framer-mLxqy .framer-9evdvq > :last-child, .framer-mLxqy .framer-1dry7l9 > :last-child, .framer-mLxqy .framer-h0i97z > :last-child, .framer-mLxqy .framer-13nmpw6 > :last-child, .framer-mLxqy .framer-e8xvcu > :last-child, .framer-mLxqy .framer-ig986k > :last-child, .framer-mLxqy .framer-foocjy > :last-child, .framer-mLxqy .framer-q6m8tl > :last-child, .framer-mLxqy .framer-1pk7tft > :last-child, .framer-mLxqy .framer-1gq5yuz > :last-child, .framer-mLxqy .framer-49y9yz > :last-child, .framer-mLxqy .framer-1n1aq2l > :last-child, .framer-mLxqy .framer-1elyknn > :last-child, .framer-mLxqy .framer-1elck7u > :last-child, .framer-mLxqy .framer-1lsux43 > :last-child, .framer-mLxqy .framer-gvlb5v > :last-child, .framer-mLxqy .framer-yby9zy > :last-child, .framer-mLxqy .framer-c5vxkq > :last-child, .framer-mLxqy .framer-1galv5h > :last-child, .framer-mLxqy .framer-lbidk7 > :last-child, .framer-mLxqy .framer-1cnpwzf > :last-child, .framer-mLxqy .framer-1gd3mn3 > :last-child, .framer-mLxqy .framer-p0we4s > :last-child, .framer-mLxqy .framer-1kd8y09 > :last-child, .framer-mLxqy .framer-7hjyh1 > :last-child, .framer-mLxqy .framer-1ufwvkq > :last-child, .framer-mLxqy .framer-5lztnw > :last-child, .framer-mLxqy .framer-fs3rpb > :last-child, .framer-mLxqy .framer-10my2kx > :last-child, .framer-mLxqy .framer-1wg0m9b > :last-child, .framer-mLxqy .framer-1ay09fs > :last-child, .framer-mLxqy .framer-p5mfyr > :last-child, .framer-mLxqy .framer-1dz4wh1 > :last-child, .framer-mLxqy .framer-14mhjkf > :last-child, .framer-mLxqy .framer-nyj74d > :last-child, .framer-mLxqy .framer-11bgmov > :last-child, .framer-mLxqy .framer-e2s1ba > :last-child, .framer-mLxqy .framer-r8oftt > :last-child, .framer-mLxqy .framer-18tw2y5 > :last-child, .framer-mLxqy .framer-11tej8f > :last-child { margin-right: 0px; } .framer-mLxqy .framer-1qp7zga > *, .framer-mLxqy .framer-1pk7tft > *, .framer-mLxqy .framer-1gq5yuz > *, .framer-mLxqy .framer-49y9yz > *, .framer-mLxqy .framer-yby9zy > *, .framer-mLxqy .framer-c5vxkq > *, .framer-mLxqy .framer-1galv5h > *, .framer-mLxqy .framer-lbidk7 > *, .framer-mLxqy .framer-1cnpwzf > *, .framer-mLxqy .framer-1gd3mn3 > *, .framer-mLxqy .framer-p0we4s > *, .framer-mLxqy .framer-1kd8y09 > *, .framer-mLxqy .framer-7hjyh1 > *, .framer-mLxqy .framer-1ufwvkq > *, .framer-mLxqy .framer-5lztnw > *, .framer-mLxqy .framer-fs3rpb > *, .framer-mLxqy .framer-10my2kx > *, .framer-mLxqy .framer-1wg0m9b > *, .framer-mLxqy .framer-1ay09fs > *, .framer-mLxqy .framer-p5mfyr > *, .framer-mLxqy .framer-1dz4wh1 > *, .framer-mLxqy .framer-14mhjkf > *, .framer-mLxqy .framer-nyj74d > *, .framer-mLxqy .framer-11bgmov > *, .framer-mLxqy .framer-e2s1ba > *, .framer-mLxqy .framer-r8oftt > *, .framer-mLxqy .framer-18tw2y5 > *, .framer-mLxqy .framer-11tej8f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mLxqy .framer-9evdvq > *, .framer-mLxqy .framer-13nmpw6 > *, .framer-mLxqy .framer-ig986k > *, .framer-mLxqy .framer-foocjy > *, .framer-mLxqy .framer-q6m8tl > *, .framer-mLxqy .framer-1lsux43 > *, .framer-mLxqy .framer-gvlb5v > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-mLxqy .framer-1dry7l9 > *, .framer-mLxqy .framer-h0i97z > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-mLxqy .framer-e8xvcu > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-mLxqy .framer-2txmzl > *, .framer-mLxqy .framer-1qpcyla > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mLxqy .framer-2txmzl > :first-child, .framer-mLxqy .framer-azkyx5 > :first-child, .framer-mLxqy .framer-7wakcw > :first-child, .framer-mLxqy .framer-1mw9ray > :first-child, .framer-mLxqy .framer-1uwpxh5 > :first-child, .framer-mLxqy .framer-15dbhjp > :first-child, .framer-mLxqy .framer-pkr08t > :first-child, .framer-mLxqy .framer-1qpcyla > :first-child, .framer-mLxqy .framer-iyvlhv > :first-child, .framer-mLxqy .framer-xoxc93 > :first-child { margin-top: 0px; } .framer-mLxqy .framer-2txmzl > :last-child, .framer-mLxqy .framer-azkyx5 > :last-child, .framer-mLxqy .framer-7wakcw > :last-child, .framer-mLxqy .framer-1mw9ray > :last-child, .framer-mLxqy .framer-1uwpxh5 > :last-child, .framer-mLxqy .framer-15dbhjp > :last-child, .framer-mLxqy .framer-pkr08t > :last-child, .framer-mLxqy .framer-1qpcyla > :last-child, .framer-mLxqy .framer-iyvlhv > :last-child, .framer-mLxqy .framer-xoxc93 > :last-child { margin-bottom: 0px; } .framer-mLxqy .framer-azkyx5 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-mLxqy .framer-7wakcw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mLxqy .framer-1n1aq2l > *, .framer-mLxqy .framer-1elyknn > *, .framer-mLxqy .framer-1elck7u > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-mLxqy .framer-1mw9ray > *, .framer-mLxqy .framer-1uwpxh5 > *, .framer-mLxqy .framer-15dbhjp > *, .framer-mLxqy .framer-pkr08t > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-mLxqy .framer-iyvlhv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-mLxqy .framer-xoxc93 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-mLxqy.framer-v-1my9fh9.framer-ko1ow, .framer-mLxqy.framer-v-1yk1wjk.framer-ko1ow { flex-direction: column; height: 56px; padding: 16px 24px 16px 16px; width: 390px; }\",\".framer-mLxqy.framer-v-1my9fh9 .framer-1qp7zga, .framer-mLxqy.framer-v-1yk1wjk .framer-1qp7zga { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-mLxqy.framer-v-1my9fh9 .framer-9evdvq, .framer-mLxqy.framer-v-rafq3r .framer-9evdvq, .framer-mLxqy.framer-v-rafq3r .framer-yby9zy, .framer-mLxqy.framer-v-1yk1wjk .framer-9evdvq, .framer-mLxqy.framer-v-d4fpf .framer-9evdvq, .framer-mLxqy.framer-v-d4fpf .framer-yby9zy, .framer-mLxqy.framer-v-a4y856 .framer-sza19g-container { order: 0; }\",\".framer-mLxqy.framer-v-1my9fh9 .framer-1x55i3k, .framer-mLxqy.framer-v-1yk1wjk .framer-1x55i3k { height: 30px; width: 130px; }\",\".framer-mLxqy.framer-v-1my9fh9 .framer-n57iv3-container, .framer-mLxqy.framer-v-rafq3r .framer-n57iv3-container, .framer-mLxqy.framer-v-1yk1wjk .framer-n57iv3-container, .framer-mLxqy.framer-v-d4fpf .framer-n57iv3-container { height: 22px; order: 1; width: 22px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-v-1my9fh9.framer-ko1ow, .framer-mLxqy.framer-v-1my9fh9 .framer-1qp7zga { gap: 0px; } .framer-mLxqy.framer-v-1my9fh9.framer-ko1ow > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mLxqy.framer-v-1my9fh9.framer-ko1ow > :first-child { margin-top: 0px; } .framer-mLxqy.framer-v-1my9fh9.framer-ko1ow > :last-child { margin-bottom: 0px; } .framer-mLxqy.framer-v-1my9fh9 .framer-1qp7zga > *, .framer-mLxqy.framer-v-1my9fh9 .framer-1qp7zga > :first-child, .framer-mLxqy.framer-v-1my9fh9 .framer-1qp7zga > :last-child { margin: 0px; } }\",\".framer-mLxqy.framer-v-rafq3r.framer-ko1ow, .framer-mLxqy.framer-v-d4fpf.framer-ko1ow { cursor: pointer; flex-direction: column; justify-content: flex-start; padding: 17px 24px 32px 16px; width: 440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-mLxqy.framer-v-rafq3r .framer-1qp7zga, .framer-mLxqy.framer-v-d4fpf .framer-1qp7zga { gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-mLxqy.framer-v-rafq3r .framer-1x55i3k, .framer-mLxqy.framer-v-d4fpf .framer-1x55i3k { aspect-ratio: 4.379310344827586 / 1; height: var(--framer-aspect-ratio-supported, 30px); width: 130px; }\",\".framer-mLxqy.framer-v-rafq3r .framer-1qpcyla, .framer-mLxqy.framer-v-d4fpf .framer-1qpcyla { flex: none; order: 1; width: 100%; }\",\".framer-mLxqy.framer-v-rafq3r .framer-1galv5h, .framer-mLxqy.framer-v-d4fpf .framer-1galv5h { order: 1; }\",\".framer-mLxqy.framer-v-rafq3r .framer-1cnpwzf, .framer-mLxqy.framer-v-d4fpf .framer-1cnpwzf, .framer-mLxqy.framer-v-a4y856 .framer-q6m8tl { order: 2; }\",\".framer-mLxqy.framer-v-rafq3r .framer-p0we4s, .framer-mLxqy.framer-v-d4fpf .framer-p0we4s, .framer-mLxqy.framer-v-a4y856 .framer-foocjy { order: 3; }\",\".framer-mLxqy.framer-v-rafq3r .framer-7hjyh1, .framer-mLxqy.framer-v-d4fpf .framer-7hjyh1, .framer-mLxqy.framer-v-a4y856 .framer-gvlb5v { order: 5; }\",\".framer-mLxqy.framer-v-rafq3r .framer-5lztnw, .framer-mLxqy.framer-v-d4fpf .framer-5lztnw { order: 6; }\",\".framer-mLxqy.framer-v-rafq3r .framer-10my2kx, .framer-mLxqy.framer-v-d4fpf .framer-10my2kx { order: 7; }\",\".framer-mLxqy.framer-v-rafq3r .framer-1wg0m9b, .framer-mLxqy.framer-v-d4fpf .framer-1wg0m9b { order: 8; }\",\".framer-mLxqy.framer-v-rafq3r .framer-p5mfyr, .framer-mLxqy.framer-v-d4fpf .framer-p5mfyr { order: 9; }\",\".framer-mLxqy.framer-v-rafq3r .framer-14mhjkf, .framer-mLxqy.framer-v-d4fpf .framer-14mhjkf { order: 10; }\",\".framer-mLxqy.framer-v-rafq3r .framer-11bgmov, .framer-mLxqy.framer-v-d4fpf .framer-11bgmov, .framer-mLxqy.framer-v-a4y856 .framer-1lsux43 { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-v-rafq3r.framer-ko1ow, .framer-mLxqy.framer-v-rafq3r .framer-1qp7zga { gap: 0px; } .framer-mLxqy.framer-v-rafq3r.framer-ko1ow > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mLxqy.framer-v-rafq3r.framer-ko1ow > :first-child { margin-top: 0px; } .framer-mLxqy.framer-v-rafq3r.framer-ko1ow > :last-child { margin-bottom: 0px; } .framer-mLxqy.framer-v-rafq3r .framer-1qp7zga > *, .framer-mLxqy.framer-v-rafq3r .framer-1qp7zga > :first-child, .framer-mLxqy.framer-v-rafq3r .framer-1qp7zga > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-v-1yk1wjk.framer-ko1ow, .framer-mLxqy.framer-v-1yk1wjk .framer-1qp7zga { gap: 0px; } .framer-mLxqy.framer-v-1yk1wjk.framer-ko1ow > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mLxqy.framer-v-1yk1wjk.framer-ko1ow > :first-child { margin-top: 0px; } .framer-mLxqy.framer-v-1yk1wjk.framer-ko1ow > :last-child { margin-bottom: 0px; } .framer-mLxqy.framer-v-1yk1wjk .framer-1qp7zga > *, .framer-mLxqy.framer-v-1yk1wjk .framer-1qp7zga > :first-child, .framer-mLxqy.framer-v-1yk1wjk .framer-1qp7zga > :last-child { margin: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-v-d4fpf.framer-ko1ow, .framer-mLxqy.framer-v-d4fpf .framer-1qp7zga { gap: 0px; } .framer-mLxqy.framer-v-d4fpf.framer-ko1ow > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-mLxqy.framer-v-d4fpf.framer-ko1ow > :first-child { margin-top: 0px; } .framer-mLxqy.framer-v-d4fpf.framer-ko1ow > :last-child { margin-bottom: 0px; } .framer-mLxqy.framer-v-d4fpf .framer-1qp7zga > *, .framer-mLxqy.framer-v-d4fpf .framer-1qp7zga > :first-child, .framer-mLxqy.framer-v-d4fpf .framer-1qp7zga > :last-child { margin: 0px; } }\",\".framer-mLxqy.framer-v-rivjx9 .framer-h0i97z { gap: 20px; }\",\".framer-mLxqy.framer-v-rivjx9 .framer-e8xvcu { padding: 0px 6px 0px 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-v-rivjx9 .framer-h0i97z { gap: 0px; } .framer-mLxqy.framer-v-rivjx9 .framer-h0i97z > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-mLxqy.framer-v-rivjx9 .framer-h0i97z > :first-child { margin-left: 0px; } .framer-mLxqy.framer-v-rivjx9 .framer-h0i97z > :last-child { margin-right: 0px; } }\",\".framer-mLxqy.framer-v-a4y856 .framer-h0i97z { gap: 32px; }\",\".framer-mLxqy.framer-v-a4y856 .framer-1u84uoa { height: 35px; width: 134px; }\",\".framer-mLxqy.framer-v-a4y856 .framer-e8xvcu, .framer-mLxqy.framer-v-a4y856 .framer-pkr08t { gap: 6px; }\",\".framer-mLxqy.framer-v-a4y856 .framer-633e0y-container { height: 44px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mLxqy.framer-v-a4y856 .framer-h0i97z, .framer-mLxqy.framer-v-a4y856 .framer-e8xvcu, .framer-mLxqy.framer-v-a4y856 .framer-pkr08t { gap: 0px; } .framer-mLxqy.framer-v-a4y856 .framer-h0i97z > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-mLxqy.framer-v-a4y856 .framer-h0i97z > :first-child, .framer-mLxqy.framer-v-a4y856 .framer-e8xvcu > :first-child { margin-left: 0px; } .framer-mLxqy.framer-v-a4y856 .framer-h0i97z > :last-child, .framer-mLxqy.framer-v-a4y856 .framer-e8xvcu > :last-child { margin-right: 0px; } .framer-mLxqy.framer-v-a4y856 .framer-e8xvcu > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-mLxqy.framer-v-a4y856 .framer-pkr08t > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-mLxqy.framer-v-a4y856 .framer-pkr08t > :first-child { margin-top: 0px; } .framer-mLxqy.framer-v-a4y856 .framer-pkr08t > :last-child { margin-bottom: 0px; } }\",'.framer-mLxqy[data-border=\"true\"]::after, .framer-mLxqy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 84\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UbJt0KlBv\":{\"layout\":[\"fixed\",\"fixed\"]},\"WCbxusjUS\":{\"layout\":[\"fixed\",\"auto\"]},\"ehzqiir_r\":{\"layout\":[\"fixed\",\"fixed\"]},\"FhEzoBi5c\":{\"layout\":[\"fixed\",\"auto\"]},\"PhUeMlYru\":{\"layout\":[\"fixed\",\"auto\"]},\"mAh_CSFrC\":{\"layout\":[\"fixed\",\"auto\"]},\"vQjyVoPjS\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrZxsEorCR=withCSS(Component,css,\"framer-mLxqy\");export default FramerrZxsEorCR;FramerrZxsEorCR.displayName=\"Navigation/Navigation\";FramerrZxsEorCR.defaultProps={height:84,width:1200};addPropertyControls(FramerrZxsEorCR,{variant:{options:[\"OTVwseKPH\",\"UbJt0KlBv\",\"WCbxusjUS\",\"ehzqiir_r\",\"FhEzoBi5c\",\"PhUeMlYru\",\"mAh_CSFrC\",\"vQjyVoPjS\"],optionTitles:[\"Desktop\",\"Mobile Closed\",\"Mobile\",\"Tab Closed\",\"Tab\",\"Logo Variant\",\"New Nav\",\"Affiliates\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrZxsEorCR,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"}]},...NavigationHamburgerFonts,...ClickMenuNavFonts,...OverlayInTextFonts,...ItemOverlayFonts,...ButtonsButtonCopyFonts,...ButtonsButtonCopy2Fonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrZxsEorCR\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"84\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UbJt0KlBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WCbxusjUS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ehzqiir_r\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FhEzoBi5c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PhUeMlYru\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mAh_CSFrC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vQjyVoPjS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rZxsEorCR.map"],
  "mappings": "6fAQG,SAASA,GAAIC,EAAM,CAAC,GAAK,CAACC,EAAiBC,CAAmB,EAAEC,GAAS,IAAI,EAAEC,GAAU,IAAI,CAAC,IAAMC,EAAWL,EAAM,cAAcM,EAAwBD,CAAU,CAAE,CAAC,EAAE,IAAMC,EAAwBD,GAAY,CAAC,IAAME,EAAa,CAAC,CAAC,gBAAgB,cAAc,EAAE,CAAC,iBAAiB,eAAe,CAAC,EAAQC,EAAgBH,EAAW,SAAS,UAAU,EAAQI,EAAqBJ,EAAW,SAAS,gBAAgB,EAAQK,EAAWL,EAAW,SAAS,kBAAkB,EAAQM,EAAYN,EAAW,SAAS,mBAAmB,EAAE,GAAGA,EAAW,SAAS,SAAS,EAAE,CAAC,IAAMO,EAAgB,6BAAmCC,EAAMR,EAAW,MAAMO,CAAe,EAAE,GAAGC,EAAM,CAAC,IAAMC,EAAcD,EAAM,CAAC,EAAE,QAAQA,EAAM,CAAC,EAAEb,EAAM,WAAW,EAAEK,EAAWA,EAAW,QAAQO,EAAgBE,CAAa,OAAQP,EAAa,KAAK,CAAC,WAAW,iBAAiBP,EAAM,cAAc,CAAC,EAAOQ,GAAqBE,EAAsFH,EAAa,KAAK,CAAC,SAAS,iBAAiBP,EAAM,gCAAgCA,EAAM,UAAU,CAAC,EAA9KO,EAAa,KAAK,CAAC,SAAS,iBAAiBP,EAAM,cAAc,CAAC,EAAkHS,GAAsBF,EAAa,KAAK,CAAC,qCAAqC,iBAAiBP,EAAM,oBAAoB,CAAC,GAASO,EAAa,KAAK,CAAC,SAAS,eAAeP,EAAM,cAAc,CAAC,EAAMK,EAAW,SAAS,YAAY,EAAGE,EAAa,KAAK,CAAC,mBAAmB,oBAAoB,CAAC,EAAQA,EAAa,KAAK,CAAC,OAAO,yBAAyB,CAAC,EAAOI,EAA6FJ,EAAa,KAAK,CAAC,0BAA0B,oBAAoBP,EAAM,WAAW,CAAC,EAAnKO,EAAa,KAAK,CAAC,SAAS,0BAA0BP,EAAM,WAAW,CAAC,EAA8FO,EAAa,QAAQ,CAAC,CAACQ,EAAMC,CAAW,IAAI,CAACX,EAAWA,EAAW,QAAQU,EAAMC,CAAW,CAAE,CAAC,EAAEd,EAAoBG,CAAU,CAAE,EAAQY,EAAqB,CAAC,QAAQ,GAAGjB,EAAM,kBAAkB,QAAQ,OAAO,cAAc,SAAS,WAAW,SAAS,eAAe,SAAS,SAAS,SAAS,EAAQkB,EAAmB,CAAC,KAAK,MAAM,GAAGlB,EAAM,OAAO,CAAC,aAAaA,EAAM,KAAK,EAAE,GAAGA,EAAM,aAAa,CAAC,mBAAmBA,EAAM,WAAW,CAAC,EAAE,OAAoBmB,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAOlB,CAAgB,EAAE,MAAMgB,EAAqB,GAAGC,CAAkB,CAAC,CAAE,CAACnB,GAAI,YAAY,MAAMA,GAAI,aAAa,CAAC,cAAc,grBAAgrB,YAAY,UAAU,cAAc,EAAE,kBAAkB,EAAE,QAAQ,OAAO,SAAS,QAAQ,MAAM,GAAG,YAAY,EAAE,EAAEqB,EAAoBrB,GAAI,CAAC,cAAc,CAAC,KAAKsB,EAAY,OAAO,MAAM,WAAW,gBAAgB,EAAK,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,aAAa,SAAS,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,KAAK,EAAE,eAAe,EAAI,EAAE,kBAAkB,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,IAAI,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOrB,GAAO,CAACA,EAAM,cAAc,SAAS,UAAU,CAAC,EAAE,QAAQ,CAAC,KAAKqB,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,QAAQ,QAAQ,EAAE,aAAa,CAAC,OAAO,QAAQ,QAAQ,EAAE,aAAa,OAAO,OAAOrB,GAAO,CAACA,EAAM,cAAc,SAAS,UAAU,CAAC,EAAE,SAAS,CAAC,KAAKqB,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,QAAQ,QAAQ,OAAO,EAAE,aAAa,CAAC,QAAQ,QAAQ,OAAO,EAAE,aAAa,QAAQ,OAAOrB,GAAO,CAACA,EAAM,cAAc,SAAS,UAAU,CAAC,EAAE,MAAM,CAAC,KAAKqB,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,YAAY,cAAc,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,aAAa,GAAG,YAAY,kBAAkB,YAAY,oEAAoE,CAAC,CAAC,EAAE,IAAOC,GAAQvB,GCPxoH,IAAMwB,GAASC,EAASC,EAAG,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,WAAAC,EAAW,QAAAC,EAAQ,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUR,GAAOQ,EAAM,WAAW,qBAAqB,UAAUJ,GAAYI,EAAM,WAAW,0BAA0B,UAAUH,GAASG,EAAM,WAAW,grBAAgrB,UAAUL,GAAMK,EAAM,UAAU,UAAUF,GAAOE,EAAM,WAAW,aAAa,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,UAAA0C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAzD,CAAQ,EAAE0D,EAAgB,CAAC,eAAe,YAAY,gBAAA/D,GAAgB,IAAIsC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiBhC,GAAuBD,EAAM1B,CAAQ,EAAuC4D,GAAkBC,EAAGjE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKiD,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAsBrB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKkD,EAAK,CAAC,KAAKf,GAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsBgB,EAAMjD,EAAO,EAAE,CAAC,GAAGkC,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,GAAkB,gBAAgBlB,EAAUS,CAAU,mBAAmB,mBAAmB,YAAY,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI1B,EAAW,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,GAAGQ,CAAK,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAS,CAAczC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9C,EAAKnB,GAAI,CAAC,YAAYqD,EAAU,cAAc,EAAE,kBAAkB,EAAE,cAAcD,EAAU,YAAY,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,OAAO,SAAS,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekB,EAAMjD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,iBAAiB4C,EAAiB,SAAS,YAAY,SAAS,CAAc9C,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,cAAc,EAAE,iBAAiB4C,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe/B,EAAKsD,EAAS,CAAC,sBAAsB,GAAK,SAAsBtD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,yBAAyB,MAAM,CAAC,cAAc,EAAE,iBAAiB4C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,kFAAkF,6SAA6S,wGAAwG,6RAA6R,oMAAoM,unBAAunB,EASrsPC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,0BAA0B,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,grBAAgrB,gBAAgB,GAAK,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,qBAAqB,MAAM,QAAQ,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,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,CAAC,CAAC,EAAE,GAAG7E,EAAQ,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTjxF,IAAMmF,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAOI,EAAM,UAAU,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,EAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,IAAImC,EAAW,QAAA5B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiB5B,GAAuBD,EAAMvB,CAAQ,EAAO,CAAC,sBAAAqD,EAAsB,MAAAC,EAAK,EAAEC,EAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,GAAOP,EAAW,WAAW,CAAE,CAAC,EAAuCS,GAAkBC,EAAGhE,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAKgD,EAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB2D,EAAM/C,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUc,EAAGD,GAAkB,iBAAiBpB,EAAUK,CAAU,EAAE,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAI1B,EAAW,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,yCAAyC,GAAGQ,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,MAAM4D,CAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAclC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAAW,iBAAiBZ,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,0YAA0Y,aAAa,YAAY,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,UAAU,CAAC,IAAI,kbAAkb,aAAa,WAAW,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQkB,GAAI,CAAC,kFAAkF,kFAAkF,qSAAqS,gHAAgH,8FAA8F,4WAA4W,EASl8MC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTva,IAAMM,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,KAAK,YAAY,MAAM,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,MAAAC,EAAM,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUJ,GAAmCI,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA7C,CAAQ,EAAE8C,EAAgB,CAAC,WAAAnD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkD,EAAiBrB,GAAuBH,EAAMvB,CAAQ,EAAO,CAAC,sBAAAgD,EAAsB,MAAAC,CAAK,EAAEC,EAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAAoC,GAAnCR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASjB,CAAW,EAAmCkB,GAAa,IAAQlB,IAAc,YAA6CmB,EAAa,IAAQnB,IAAc,YAA6CoB,EAAa,IAAQpB,IAAc,YAA6CqB,GAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,EAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG7B,GAA4CwB,GAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAGsB,EAAU,GAAGI,EAAgB,UAAUyB,EAAGtE,GAAkB,GAAGiE,GAAsB,iBAAiB3B,EAAUK,CAAU,EAAE,mBAAmB,gBAAgB,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAItB,GAA6BwB,EAAK,MAAM,CAAC,GAAGpB,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAS,CAACa,EAAY,GAAgB1C,EAAKsD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,OAAO,WAAW,iBAAiBpB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,4mDAA4mD,aAAa,YAAY,mBAAmB,EAAI,CAAC,EAAES,GAAa,GAAgB3C,EAAKsD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,OAAO,WAAW,iBAAiBpB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,80CAA80C,aAAa,YAAY,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,EAAEe,EAAa,GAAgB5C,EAAKsD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,yBAAyB,OAAO,WAAW,iBAAiBpB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,s0DAAs0D,aAAa,YAAY,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,aAAa,UAAU,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,EAAEgB,EAAa,GAAgB7C,EAAKsD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,OAAO,WAAW,iBAAiBpB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,wxDAAwxD,aAAa,YAAY,mBAAmB,GAAK,GAAGjD,GAAqB,CAAC,UAAU,CAAC,aAAa,WAAW,CAAC,EAAEwC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,gFAAgF,sHAAsH,oLAAoL,iLAAiL,EAS1qYC,GAAgBC,EAAQ3C,GAAUyC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,QAAQA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,OAAO,YAAY,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTpD,IAAMM,GAAWC,EAASC,EAAK,EAAQC,GAAcC,GAAoBF,EAAK,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,YAAY,YAAY,gBAAgB,YAAY,KAAK,YAAY,MAAM,YAAY,UAAU,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,MAAAC,EAAM,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAA4BC,EAAMC,EAAM,MAAM,CAAC,GAAGJ,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,mBAAmB,WAAWG,GAAOD,GAAOD,EAA4BT,GAAqBG,CAAK,KAAK,MAAMM,IAA8B,OAAOA,EAA4BN,KAAS,MAAMO,IAAQ,OAAOA,EAAMH,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACL,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,EAAW,SAASP,EAAMQ,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,UAAAqC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,EAAgB,CAAC,eAAe,YAAY,gBAAAvD,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBtB,GAAuBL,EAAMxB,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,CAAK,EAAEC,EAAyBZ,CAAW,EAAQa,EAAgBH,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAWC,EAAO,IAAI,EAAQC,GAAsBC,EAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBlD,EAAKmD,EAAY,CAAC,GAAG1B,GAA4CqB,GAAgB,SAAsB9C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB8D,EAAMlD,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUqB,EAAGtE,GAAkB,GAAGiE,EAAsB,iBAAiBxB,EAAUM,CAAU,EAAE,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInB,GAA6ByB,EAAK,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,yCAAyC,GAAGrB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,GAAGtC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAS,CAAcmB,EAAMlD,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAActC,EAAKsD,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAgEL,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,GAAG,MAAM,GAAG,mBAAmB,SAAsBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKrB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU+D,EAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQf,EAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3B,EAAKuD,EAAS,CAAC,sBAAsB,GAAK,SAAsBvD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBoC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,sEAAsE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAKwD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,OAAO,WAAW,iBAAiBlB,EAAiB,SAAS,YAAY,QAAQ,EAAE,IAAI,qbAAqb,aAAa,YAAY,mBAAmB,GAAK,GAAGrD,GAAqB,CAAC,kBAAkB,CAAC,IAAI,kbAAkb,aAAa,UAAU,CAAC,EAAE4C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQwB,GAAI,CAAC,kFAAkF,gFAAgF,+QAA+Q,yRAAyR,wGAAwG,gHAAgH,8FAA8F,kXAAkX,EAS7nRC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,mBAAmB,gBAAgB,GAAM,MAAM,QAAQ,KAAKI,EAAY,MAAM,EAAE,UAA+DlF,IAAc,SAAa,CAAC,GAAGA,GAAc,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,OAAO,CAAC,CAAC,EAAEmF,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjF,EAAU,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTjkB,IAAMuF,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,MAAM,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,UAAUF,GAA6BE,EAAM,UAAU,SAASE,GAAMD,EAAuCP,GAAwBM,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAU2B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAjC,EAAQ,UAAAkC,EAAU,GAAGC,CAAS,EAAEnB,GAASK,CAAK,EAAO,CAAC,YAAAe,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAA7C,CAAQ,EAAE8C,EAAgB,CAAC,WAAAnD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkD,EAAiBrB,GAAuBH,EAAMvB,CAAQ,EAAO,CAAC,sBAAAgD,EAAsB,MAAAC,CAAK,EAAEC,EAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,IAAO,CAAoC,GAAnCR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,EAAqB,EAAE,OAAoB9C,EAAK+C,EAAY,CAAC,GAAGzB,GAA4CoB,EAAgB,SAAsB1C,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsB0D,EAAM9C,EAAO,IAAI,CAAC,GAAGsB,EAAU,GAAGI,EAAgB,UAAUqB,EAAGlE,GAAkB,GAAG6D,GAAsB,iBAAiBvB,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAItB,GAA6BwB,EAAK,MAAM,CAAC,GAAGpB,CAAK,EAAE,GAAGnC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAS,CAAc7B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBgC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAelC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBgC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBgC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,kEAAkE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,kFAAkF,qHAAqH,+LAA+L,8NAA8N,kMAAkM,mKAAmK,uHAAuH,iLAAiL,EASxpLC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,uBAAuBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTukC,IAAMM,GAAyBC,EAASC,EAAmB,EAAQC,GAAkBF,EAASG,EAAY,EAAQC,GAAmBJ,EAASK,EAAa,EAAQC,GAAiBN,EAASO,EAAW,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAuBX,EAASY,EAAiB,EAAQC,GAAiEC,GAAqBC,GAA6BH,GAAkB,CAAC,OAAO,YAAY,SAASI,GAAgB,QAAQ,WAAW,CAAC,EAAEC,EAAqB,EAAQC,GAAwBlB,EAASmB,EAAkB,EAAQC,GAAmEN,GAAqBC,GAA6BI,GAAmB,CAAC,OAAO,YAAY,SAASH,GAAgB,QAAQ,WAAW,CAAC,EAAEK,EAAsB,EAAQC,GAActB,EAASuB,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,iBAAiB,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQG,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,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,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAP,CAAQ,IAAI,CAAC,IAAMQ,EAAaC,EAAWC,CAAmB,EAAQC,EAAWJ,GAAOC,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASZ,CAAQ,CAAC,CAAE,EAAQe,GAAS5C,EAAO,OAAa6C,CAAQ,EAAQC,GAAwB,CAAC,eAAe,YAAY,gBAAgB,YAAY,UAAU,YAAY,aAAa,YAAY,WAAW,YAAY,QAAQ,YAAY,OAAO,YAAY,IAAI,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMhC,IAAegC,EAAM,iBAAwBhC,EAAS,KAAK,GAAG,EAAEgC,EAAM,iBAAwBhC,EAAS,KAAK,GAAG,EAAUkC,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA/C,EAAQ,GAAGgD,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA1D,CAAQ,EAAE2D,EAAgB,CAAC,WAAAhE,GAAW,eAAe,YAAY,IAAI4C,EAAW,QAAArC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+D,EAAiB3B,GAAuBD,EAAMhC,CAAQ,EAAO,CAAC,sBAAA6D,EAAsB,MAAAC,CAAK,EAAEC,EAAyBZ,CAAW,EAAQa,GAAYH,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,MAAMK,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQQ,EAAaL,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,MAAMK,EAAM,IAAIJ,EAAW,WAAW,EAAE,GAAG,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAgBP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAiBR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAiBT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAgB,CAAC,CAAC,QAAAC,EAAQ,SAAAC,EAAQ,IAAIZ,EAAsB,SAASI,KAAO,CAACO,EAAQ,KAAK,CAAE,CAAC,EAAuCE,GAAkBC,EAAG/E,GAAkB,GAAhD,CAAC,CAAuE,EAAQgF,GAAY,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASzB,CAAW,EAAmC0B,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS1B,CAAW,EAAmC2B,GAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAAS3B,CAAW,EAAmC4B,GAAa,IAAQ5B,IAAc,YAA6C6B,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAS7B,CAAW,EAAmC8B,GAAa,IAAQ9B,IAAc,YAA6C+B,GAAa,IAAQ/B,IAAc,YAA6CgC,GAAW7C,EAAO,IAAI,EAAQ8C,GAAW9C,EAAO,IAAI,EAAQ+C,GAAOC,GAAU,EAAQC,GAAa,IAAQpC,IAAc,YAA6CqC,GAAa,IAAQrC,IAAc,YAA6CsC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAStC,CAAW,EAAmCuC,GAAc,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASvC,CAAW,EAA6B,OAAoB3B,EAAKmE,EAAY,CAAC,GAAG1C,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQzB,EAAS,QAAQ,GAAM,SAAsBwB,EAAKR,GAAW,CAAC,MAAMb,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAsBqC,EAAM/G,EAAO,IAAI,CAAC,GAAGqE,EAAU,GAAGI,GAAgB,UAAUqB,EAAGD,GAAkB,eAAe1B,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,OAAO,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,qBAAqB,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,EAAE,wBAAwB,EAAE,qBAAqB,YAAY,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,GAAG,wBAAwB,GAAG,qBAAqB,YAAY,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,eAAe,OAAO,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,qBAAqB,MAAM,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,eAAe,OAAO,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,qBAAqB,MAAM,EAAE,UAAU,CAAC,eAAe,aAAa,gBAAgB,2BAA2B,qBAAqB,YAAY,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,eAAe,OAAO,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,qBAAqB,MAAM,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,GAAG,wBAAwB,GAAG,qBAAqB,YAAY,CAAC,EAAE,GAAGjD,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,MAAM,iBAAiB,GAAK,MAAMoE,CAAY,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,SAAS,iBAAiB,GAAK,MAAMF,EAAW,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAS,CAACqB,GAAY,GAAgBgB,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAo5P,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEgB,GAAY,GAAgBpD,EAAKsE,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAG+C,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,IAAI,GAAG,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,GAAG,MAAMA,GAAmB,QAAQ,IAAI,GAAG,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,MAAM,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,iBAAiB,iBAAiBnC,EAAiB,SAAS,sBAAsB,KAAK,iBAAiB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKpD,GAAoB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG0B,EAAqB,CAAC,UAAU,CAAC,UAAUuE,EAAgB,EAAE,UAAU,CAAC,UAAUC,GAAiB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUH,CAAe,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,CAAC,EAAEjB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAa,GAAgBrD,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,8EAA8E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,eAAe,aAAa,gBAAgB,2BAA2B,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,qBAAqB,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgB,2BAA2B,EAAE,UAAU,CAAC,gBAAgB,0BAA0B,CAAC,EAAE,SAAsBgC,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKwE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBJ,EAAM/G,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,OAAO,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAACkB,GAAa,GAAgBtD,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+5P,mBAAmB,EAAI,CAAC,EAAEmB,GAAa,GAAgBvD,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmsG,mBAAmB,EAAI,CAAC,EAAEoB,GAAa,GAAgBxD,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqmQ,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAACqB,GAAa,GAAgBzD,EAAKwE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,eAAe,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,gCAAgC,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,GAAGlG,EAAqB,CAAC,UAAU,CAAC,KAAK,0BAA0B,aAAa,EAAI,EAAE,UAAU,CAAC,KAAK,0BAA0B,aAAa,EAAI,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB/B,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,OAAO,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9D,EAAqB,CAAC,UAAU,CAAC,SAAsB0B,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB2C,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,GAAa,GAAgBxD,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,UAAU,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAa,GAAgB1D,EAAKf,GAAQ,CAAC,uBAAuB,GAAM,SAAS+D,GAAsBhD,EAAK0E,GAAU,CAAC,SAAsB1E,EAAKsE,EAA0B,CAAC,OAAO,GAAG,GAAGjD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,GAAG,EAAE,EAAE,SAAsB+C,EAAMG,EAA8B,CAAC,UAAU,0BAA0B,GAAG,GAAG9C,WAAkB,iBAAiBW,EAAiB,SAAS,sBAAsB,OAAO,YAAY,IAAIuB,GAAK,kBAAkB,GAAK,QAAQ,YAAY,SAAS,CAAc3D,EAAKlD,GAAa,CAAC,UAAUiG,GAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQA,EAAQ,QAAQ,YAAY,YAAY,MAAM,MAAM,CAAC,EAAehD,EAAK2E,GAAgB,CAAC,SAAS3B,EAAQ,SAAsBhD,EAAK4E,GAAS,CAAC,UAAU,SAAS,UAAUjB,GAAK,UAAUR,EAAGD,GAAkBtB,CAAU,EAAE,mBAAmB,GAAK,0BAA0B,GAAG,wBAAwB,GAAGH,WAAkB,QAAQ,kBAAkB,QAAQ,kBAAkB,UAAUuB,EAAQ,KAAK,UAAU,SAAS,SAAS,GAAM,OAAO,GAAG,GAAG1E,EAAqB,CAAC,UAAU,CAAC,QAAQ,iBAAiB,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsBqC,EAAMjH,GAAgB,CAAC,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,QAAQ4B,GAAW,UAAU,gBAAgB,KAAKD,GAAU,QAAQE,GAAW,iBAAiBoD,EAAiB,SAAS,YAAY,IAAIwB,GAAK,KAAK,SAAS,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,oCAAoC,EAAE,SAAS,CAACH,GAAa,GAAgBW,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcpC,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKsE,EAA0B,CAAC,MAAM,QAAQ,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKhD,GAAc,CAAC,UAAU,OAAO,OAAO,OAAO,UAAU,YAAY,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKsE,EAA0B,CAAC,MAAM,QAAQ,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKhD,GAAc,CAAC,UAAU,mBAAmB,OAAO,OAAO,UAAU,YAAY,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKsE,EAA0B,CAAC,MAAM,QAAQ,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKhD,GAAc,CAAC,UAAU,YAAY,OAAO,OAAO,UAAU,YAAY,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyG,GAAa,GAAgBW,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wYAAwY,EAAE,SAAS,CAAcgC,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKqE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAykF,mBAAmB,EAAI,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,cAAc,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,MAAM,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,MAAM,CAAC,cAAc,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+xB,mBAAmB,EAAI,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,MAAM,CAAC,cAAc,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,MAAM,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,MAAM,CAAC,cAAc,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKqE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBjC,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkjD,mBAAmB,EAAI,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,MAAM,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,cAAc,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,MAAM,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,oCAAoC,MAAM,CAAC,cAAc,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,wYAAwY,EAAE,SAAS,CAAcpC,EAAK6E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,IAA4B9E,EAAKsE,EAA0B,CAAC,MAAM,QAAQ,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,2BAA2B,gBAAgB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK9C,GAAY,CAAC,UAAU,oBAAoB,UAAU,0BAA0B,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAykF,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGoB,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAoB,UAAU,6BAA6B,UAAUwG,GAAc,CAAC,CAAC,CAAC,EAAEnD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAK6E,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,IAA6B/E,EAAKsE,EAA0B,CAAC,MAAM,QAAQ,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK9C,GAAY,CAAC,UAAU,oBAAoB,UAAU,oCAAoC,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+xB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGoB,EAAqB,CAAC,UAAU,CAAC,UAAU,oBAAoB,UAAU,6BAA6B,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAgiC,UAAUyG,GAAe,CAAC,EAAE,UAAU,aAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,EAAEpD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,GAAa,GAAgBzD,EAAKsE,EAA0B,CAAC,MAAM,QAAQ,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK9C,GAAY,CAAC,UAAU,qBAAqB,UAAU,0BAA0B,UAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkjD,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,GAAGlG,EAAqB,CAAC,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB/B,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,UAAU,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2B,GAAa,GAAgB/D,EAAKwE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,OAAO,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,UAAU,wCAAwC,EAAE,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9D,EAAqB,CAAC,UAAU,CAAC,SAAsB0B,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,UAAU,0BAA0B,OAAO,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,GAAa,GAAgBzD,EAAKsE,EAA0B,CAAC,OAAO,GAAG,GAAGjD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,GAAG,EAAE,GAAG/C,EAAqB,CAAC,UAAU,CAAC,GAAG+C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKxC,GAAiE,CAAC,UAAU,GAAG,UAAU,qEAAqE,UAAU,GAAK,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,qEAAqE,UAAU,QAAQ,UAAU,aAAa,UAAU,0BAA0B,UAAU,GAAK,UAAU,UAAU,UAAU,qEAAqE,UAAU,mBAAmB,QAAQ,YAAY,MAAM,OAAO,GAAGc,EAAqB,CAAC,UAAU,CAAC,UAAU,MAAS,CAAC,EAAEqD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,GAAa,GAAgBhE,EAAKsE,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAG+C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,GAAG,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsB/B,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAKjC,GAAmE,CAAC,UAAU,wEAAwE,UAAU,qEAAqE,UAAU,GAAK,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,UAAU,UAAU,SAAS,YAAY,UAAU,wEAAwE,UAAU,QAAQ,UAAU,aAAa,UAAU,UAAU,UAAU,qEAAqE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,eAAe,QAAQ,YAAY,MAAM,OAAO,UAAU,CAAC,YAAY,qGAAqG,YAAY,QAAQ,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkG,GAAa,GAAgBG,EAAM/G,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcgC,EAAM/G,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiB+E,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,GAAGlG,EAAqB,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,CAAC,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB/B,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,GAAGlG,EAAqB,CAAC,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,EAAE,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB/B,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,GAAGlG,EAAqB,CAAC,UAAU,CAAC,KAAK,2BAA2B,aAAa,EAAI,EAAE,UAAU,CAAC,KAAK,2BAA2B,aAAa,EAAI,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB/B,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAG9D,EAAqB,CAAC,UAAU,CAAC,SAAsB0B,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsB2C,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAC,UAAU,CAAC,iBAAiB,uEAAuE,EAAE,UAAU,CAAC,iBAAiB,uEAAuE,CAAC,CAAC,CAAC,EAAepC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,gGAAgG,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,GAAc,GAAgBlE,EAAKwE,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBxE,EAAK3C,EAAO,EAAE,CAAC,UAAU,+BAA+B,mBAAmB,IAAI,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAK3C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,sBAAsB,6FAA6F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,iBAAiB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB+E,EAAiB,SAAS,YAAY,SAAsBpC,EAAKwE,EAAK,CAAC,KAAK,0BAA0B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBJ,EAAM/G,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,wBAAwB,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,sHAAsH,EAAE,SAAS,CAAcpC,EAAKyE,EAAS,CAAC,sBAAsB,GAAK,SAAsBzE,EAAWE,EAAS,CAAC,SAAsBF,EAAK3C,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,OAAO,sBAAsB,iGAAiG,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,MAAM,CAAC,mBAAmB,EAAE,iBAAiB+E,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAepC,EAAKsE,EAA0B,CAAC,SAAsBtE,EAAKuE,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBnC,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpC,EAAK9B,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ8G,GAAI,CAAC,kFAAkF,kFAAkF,gRAAgR,kRAAkR,mRAAmR,+FAA+F,wGAAwG,wTAAwT,oRAAoR,2SAA2S,yKAAyK,+FAA+F,gGAAgG,mRAAmR,ibAAib,sjBAAsjB,gJAAgJ,sUAAsU,0VAA0V,sSAAsS,2LAA2L,wVAAwV,yVAAyV,gVAAgV,4JAA4J,4VAA4V,gUAAgU,wVAAwV,yLAAyL,yGAAyG,+RAA+R,sRAAsR,4TAA4T,skBAAskB,4hBAA4hB,uRAAuR,gRAAgR,qTAAqT,8JAA8J,wGAAwG,s6RAAs6R,iLAAiL,8JAA8J,2VAA2V,iIAAiI,2QAA2Q,4pBAA4pB,0QAA0Q,qKAAqK,yMAAyM,qIAAqI,4GAA4G,0JAA0J,wJAAwJ,wJAAwJ,0GAA0G,4GAA4G,4GAA4G,0GAA0G,6GAA6G,2JAA2J,opBAAopB,4pBAA4pB,4oBAA4oB,8DAA8D,6EAA6E,+aAA+a,8DAA8D,gFAAgF,2GAA2G,2EAA2E,8hCAA8hC,+bAA+b,EAQ9+yHC,GAAgBC,EAAQxE,GAAUsE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,wBAAwBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,gBAAgB,SAAS,aAAa,MAAM,eAAe,UAAU,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,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,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvI,GAAyB,GAAGG,GAAkB,GAAGE,GAAmB,GAAGE,GAAiB,GAAGK,GAAuB,GAAGO,GAAwB,GAAGI,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["SVG", "props", "customSvgElement", "setCustomSvgElement", "ye", "ue", "svgContent", "processCustomSVGContent", "replacements", "hasCustomStroke", "hasCustomStrokeWidth", "hasLineCap", "hasLineJoin", "circleFillRegex", "match", "updatedCircle", "regex", "replacement", "customContainerStyle", "accessibilityProps", "p", "addPropertyControls", "ControlType", "SVG_Prod_default", "SVGFonts", "getFonts", "SVG_Prod_default", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "color", "height", "id", "link", "subHeading", "sVGCode", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "lFxISvyEu", "f2FbBz7aT", "Fym_HPJve", "CM166jIQh", "kqvuRLT7J", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerdDK1VKcxZ", "withCSS", "dDK1VKcxZ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FQhK0JwiR", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sf8qx4", "args", "onTapc3zdpq", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "SVG", "css", "Framerho5QA9G44", "withCSS", "ho5QA9G44_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "NG6vqsKR7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1w4lb0r", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "Framerbmd15BjYa", "withCSS", "bmd15BjYa_default", "addPropertyControls", "ControlType", "addFonts", "IconsFonts", "getFonts", "bmd15BjYa_default", "IconsControls", "getPropertyControls", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "height", "icons", "id", "title", "width", "props", "_ref", "_humanReadableEnumMap_icons", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "HcRSKMxI5", "HZ8GFcPoj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "NG6vqsKR7aejkcd", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "FrameroQggsgEZ9", "withCSS", "oQggsgEZ9_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "mNnEtKoz7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1j5npcq", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerQBNajWZdU", "withCSS", "QBNajWZdU_default", "addPropertyControls", "ControlType", "addFonts", "NavigationHamburgerFonts", "getFonts", "QBNajWZdU_default", "ClickMenuNavFonts", "ho5QA9G44_default", "OverlayInTextFonts", "oQggsgEZ9_default", "ItemOverlayFonts", "dDK1VKcxZ_default", "MotionDivWithFX", "withFX", "motion", "ButtonsButtonCopyFonts", "K9jypQPW8_default", "ButtonsButtonCopyWithRedirectCTA25ldnuWithMappedReactPropsuegppr", "withMappedReactProps", "withCodeBoundaryForOverrides", "withRedirectCTA", "K9jypQPW8_exports", "ButtonsButtonCopy2Fonts", "br7w1Rdle_default", "ButtonsButtonCopy2WithRedirectCTAap3fgwWithMappedReactProps1dn29cy", "br7w1Rdle_exports", "PhosphorFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapnx3iny", "args", "onTap1i3xmg7", "mNnEtKoz7wtn6iy", "mNnEtKoz7l7emib", "mNnEtKoz71mfaxwk", "mNnEtKoz717nukhx", "FQhK0JwiRtxyyif", "overlay", "loadMore", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "ref1", "ref2", "router", "useRouter", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "RichText2", "l", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerrZxsEorCR", "withCSS", "rZxsEorCR_default", "addPropertyControls", "ControlType", "addFonts"]
}
