{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framer.com/m/Button-Tab-Open-Button-7I3B.js", "ssg:https://framerusercontent.com/modules/qiWTbMiimC5CPDbkpYrz/RvcAExKAJAiRbiU6XBAM/AcVUJx4g9.js", "ssg:https://framer.com/m/Button-Tab-Open-M-Button-Hktm.js@Kvh25kh2HKQqMOc9nvm8", "ssg:https://framerusercontent.com/modules/N3pknSp6QuVZ2jwVTKrh/iHi6L4JfLz631AIDs4Sz/LoggedinButton.js", "ssg:https://framerusercontent.com/modules/ah4JjPGGFy2kBCajnULP/4IApulc10e4KPW7cKfuv/C302MFFNX.js", "ssg:https://framerusercontent.com/modules/PVkbeao1gZPrlUnx06JP/ulHh79bTTmm28EYR4Pvb/cMeq1uN3e.js", "ssg:https://framerusercontent.com/modules/PCHOQpPJ74ny1b6vtNdj/4slotnXbUNkNXxr9n3fY/cvAhiMGn5.js", "ssg:https://framerusercontent.com/modules/rIfwRqmhHI1CQHY5yVWK/Yc4hNMfwsahYTUDYJUMv/Dfvdg34Vu.js", "ssg:https://framerusercontent.com/modules/TNcbMsAqFEppHXMrJTC9/PNMW1M1CRSm5OPiqIOvU/dQfkG_AI1.js", "ssg:https://framerusercontent.com/modules/MCoTx6PdMLQO6uO4m9uf/uuLey1IdjWBYdJKB8VO2/vnXnMXeen.js", "ssg:https://framerusercontent.com/modules/21vbSvIr0uFSA7CuQ7Xl/CI9ZDB1OXJ6a6Vo7SdTw/lh0Ns4A9p.js", "ssg:https://framerusercontent.com/modules/ueXkSqCvwmXFzzygqnuj/KzK37PdacaqfK4kuxitI/Nk6xmlvMG.js", "ssg:https://framerusercontent.com/modules/lV5VL9agbI2J7F34Luqc/EB8BgcztaEs9xRL1m8ao/rPmx4HnLB.js", "ssg:https://framerusercontent.com/modules/zG9yh7QgPOwGYhwNRUGk/u23mVhee7Y4wbpODPRsH/SgZ3ra308.js", "ssg:https://framerusercontent.com/modules/Mdu07KmhgC30yiVMCxGX/dKfNgEpsXTEnJEufsKL4/RmTaeeaHX.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "// Generated by Framer (5753dbc)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qiWTbMiimC5CPDbkpYrz/XzuzJtbS96OkQbVA12PX/AcVUJx4g9.js\";const enabledGestures={s5TX4fLFN:{hover:true}};const serializationHash=\"framer-tohc1\";const variantClassNames={s5TX4fLFN:\"framer-v-qziuav\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"s5TX4fLFN\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qziuav\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"s5TX4fLFN\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"s5TX4fLFN-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:\"https://dash.teamcamp.app\",nodeId:\"RF_NkNv7z\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-f2eq3i framer-53l0zs\",layoutDependency:layoutDependency,layoutId:\"RF_NkNv7z\",style:{backgroundColor:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(20, 21, 26))\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36},variants:{\"s5TX4fLFN-hover\":{backgroundColor:\"var(--token-7aa8af97-7282-44fc-ab85-5b3c91e8daa0, rgb(108, 110, 120))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c3xb4b\",\"data-styles-preset\":\"AcVUJx4g9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255)))\"},children:\"Open Teamcamp\"})}),className:\"framer-1hwcxu2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lwoy_h0uO\",style:{\"--extracted-r6o4lv\":\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tohc1.framer-53l0zs, .framer-tohc1 .framer-53l0zs { display: block; }\",\".framer-tohc1.framer-qziuav { align-content: flex-end; align-items: flex-end; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 34px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 169px; }\",\".framer-tohc1 .framer-f2eq3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 6px 18px 6px 18px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tohc1 .framer-1hwcxu2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tohc1.framer-qziuav, .framer-tohc1 .framer-f2eq3i { gap: 0px; } .framer-tohc1.framer-qziuav > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tohc1.framer-qziuav > :first-child { margin-top: 0px; } .framer-tohc1.framer-qziuav > :last-child { margin-bottom: 0px; } .framer-tohc1 .framer-f2eq3i > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-tohc1 .framer-f2eq3i > :first-child { margin-left: 0px; } .framer-tohc1 .framer-f2eq3i > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 34\n * @framerIntrinsicWidth 169\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"XRtRuLxGU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxFTizX_tI=withCSS(Component,css,\"framer-tohc1\");export default FramerxFTizX_tI;FramerxFTizX_tI.displayName=\"Open--Button\";FramerxFTizX_tI.defaultProps={height:34,width:169};addFonts(FramerxFTizX_tI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxFTizX_tI\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"169\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"34\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XRtRuLxGU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xFTizX_tI.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Geist Medium\",\"CUSTOM;Geist Medium\",\"CUSTOM;Geist Medium\",\"CUSTOM;Geist Medium\"]);export const fonts=[{family:\"Geist Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/dNqH0c4qjo3RGmYZnJknwKtT0.woff2\"}];export const css=['.framer-6xwFt .framer-styles-preset-1c3xb4b:not(.rich-text-wrapper), .framer-6xwFt .framer-styles-preset-1c3xb4b.rich-text-wrapper p { --framer-font-family: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, #1a1a1a); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-6xwFt .framer-styles-preset-1c3xb4b:not(.rich-text-wrapper), .framer-6xwFt .framer-styles-preset-1c3xb4b.rich-text-wrapper p { --framer-font-family: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, #1a1a1a); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 768px) { .framer-6xwFt .framer-styles-preset-1c3xb4b:not(.rich-text-wrapper), .framer-6xwFt .framer-styles-preset-1c3xb4b.rich-text-wrapper p { --framer-font-family: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, #1a1a1a); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-6xwFt .framer-styles-preset-1c3xb4b:not(.rich-text-wrapper), .framer-6xwFt .framer-styles-preset-1c3xb4b.rich-text-wrapper p { --framer-font-family: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-family-italic: \"Geist Medium\", \"Geist Medium Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: normal; --framer-font-style-italic: normal; --framer-font-weight: 400; --framer-font-weight-bold: 400; --framer-font-weight-bold-italic: 400; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, #1a1a1a); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-6xwFt\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qiWTbMiimC5CPDbkpYrz/RvcAExKAJAiRbiU6XBAM/AcVUJx4g9.js\";const enabledGestures={YBM3V2vUi:{hover:true}};const cycleOrder=[\"YBM3V2vUi\"];const serializationHash=\"framer-pzCXu\";const variantClassNames={YBM3V2vUi:\"framer-v-1xppr3c\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YBM3V2vUi\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://dash.teamcamp.app/membership/signup\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1xppr3c\",className,classNames)} framer-dl3lx3`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"YBM3V2vUi\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"YBM3V2vUi-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ptbkmt\",layoutDependency:layoutDependency,layoutId:\"pHCKrcCs6\",style:{backgroundColor:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(20, 21, 26))\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36},variants:{\"YBM3V2vUi-hover\":{backgroundColor:\"var(--token-7aa8af97-7282-44fc-ab85-5b3c91e8daa0, rgb(108, 110, 120))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c3xb4b\",\"data-styles-preset\":\"AcVUJx4g9\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255)))\"},children:\"Open Teamcamp\"})}),className:\"framer-gq5azp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"L_If6pOwE\",style:{\"--extracted-r6o4lv\":\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pzCXu.framer-dl3lx3, .framer-pzCXu .framer-dl3lx3 { display: block; }\",\".framer-pzCXu.framer-1xppr3c { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 768px; overflow: hidden; padding: 20px 16px 20px 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pzCXu .framer-ptbkmt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 18px 6px 18px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-pzCXu .framer-gq5azp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pzCXu.framer-1xppr3c, .framer-pzCXu .framer-ptbkmt { gap: 0px; } .framer-pzCXu.framer-1xppr3c > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-pzCXu.framer-1xppr3c > :first-child { margin-top: 0px; } .framer-pzCXu.framer-1xppr3c > :last-child { margin-bottom: 0px; } .framer-pzCXu .framer-ptbkmt > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-pzCXu .framer-ptbkmt > :first-child { margin-left: 0px; } .framer-pzCXu .framer-ptbkmt > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 179\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"768px\",null,null]},\"HXPoVKZPy\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[null,\"768px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerU7JhJu8lf=withCSS(Component,css,\"framer-pzCXu\");export default FramerU7JhJu8lf;FramerU7JhJu8lf.displayName=\"Button & Tab / Open(M)--Button\";FramerU7JhJu8lf.defaultProps={height:74,width:179};addFonts(FramerU7JhJu8lf,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerU7JhJu8lf\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"179\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"74\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"768px\\\",null,null]},\\\"HXPoVKZPy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"768px\\\",null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./U7JhJu8lf.map", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import ButtonTabOpenButton from\"https://framer.com/m/Button-Tab-Open-Button-7I3B.js\";import ButtonTabOpenMButton from\"https://framer.com/m/Button-Tab-Open-M-Button-Hktm.js@Kvh25kh2HKQqMOc9nvm8\";import{useState,useEffect}from\"react\";// Learn more: https://www.framer.com/docs/guides/overrides/\n// const domainNameCookie = cookies().get(\"cross-domain-name\")\n// const domainEmailCookie = cookies().get(\"cross-domain-email\")\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}export function withCustomNavbar(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props});};}export function withOpenButton(Component){return props=>{const[showButton,setShowButton]=useState(false);useEffect(()=>{function getCookie(name){let a=`; ${document.cookie}`.match(`;\\\\s*${name}=([^;]+)`);return a?a[1]:\"\";}if(typeof document!==\"undefined\"){const email_cookie=getCookie(\"cross-domain-email\");const name_cookie=getCookie(\"cross-domain-name\");if(email_cookie&&name_cookie){setShowButton(true);}else{setShowButton(false);}}},[]);return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{children:showButton?/*#__PURE__*/_jsx(ButtonTabOpenButton,{}):/*#__PURE__*/_jsx(Component,{...props})})});};}export function withOpenButtonMobile(Component){return props=>{const[showButton,setShowButton]=useState(false);useEffect(()=>{function getCookie(name){let a=`; ${document.cookie}`.match(`;\\\\s*${name}=([^;]+)`);return a?a[1]:\"\";}if(typeof document!==\"undefined\"){const email_cookie=getCookie(\"cross-domain-email\");const name_cookie=getCookie(\"cross-domain-name\");if(email_cookie&&name_cookie){setShowButton(true);}else{setShowButton(false);}}},[]);return /*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(\"div\",{children:showButton?/*#__PURE__*/_jsx(ButtonTabOpenMButton,{}):/*#__PURE__*/_jsx(Component,{...props})})});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withOpenButtonMobile\":{\"type\":\"reactHoc\",\"name\":\"withOpenButtonMobile\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withCustomNavbar\":{\"type\":\"reactHoc\",\"name\":\"withCustomNavbar\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withOpenButton\":{\"type\":\"reactHoc\",\"name\":\"withOpenButton\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LoggedinButton.map", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/XKrCcKyK2PDBeaXUsMjH/TqreinkLve4XhvVNJjmY/UIDGim5Fo.js\";const enabledGestures={DLH1Ocx5T:{hover:true},uePjac6XL:{hover:true}};const cycleOrder=[\"DLH1Ocx5T\",\"uePjac6XL\"];const serializationHash=\"framer-ICwna\";const variantClassNames={DLH1Ocx5T:\"framer-v-1euprh2\",uePjac6XL:\"framer-v-gmkzn4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Feedback:\"DLH1Ocx5T\",Resource:\"uePjac6XL\"};const getProps=({height,id,link,width,...props})=>{return{...props,t_Ndt5NpQ:link??props.t_Ndt5NpQ,variant:humanReadableVariantMap[props.variant]??props.variant??\"DLH1Ocx5T\"};};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,t_Ndt5NpQ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DLH1Ocx5T\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"DLH1Ocx5T-hover\",\"uePjac6XL-hover\"].includes(gestureVariant))return false;if(baseVariant===\"uePjac6XL\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"DLH1Ocx5T-hover\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"uePjac6XL-hover\")return false;if(baseVariant===\"uePjac6XL\")return true;return false;};const isDisplayed3=()=>{if(gestureVariant===\"uePjac6XL-hover\")return true;return false;};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:t_Ndt5NpQ,motionChild:true,nodeId:\"DLH1Ocx5T\",openInNewTab:false,scopeId:\"C302MFFNX\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1euprh2\",className,classNames)} framer-3cbih0`,\"data-border\":true,\"data-framer-name\":\"Feedback\",layoutDependency:layoutDependency,layoutId:\"DLH1Ocx5T\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",...style},variants:{\"DLH1Ocx5T-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"},\"uePjac6XL-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"}},...addPropertyOverrides({\"DLH1Ocx5T-hover\":{\"data-framer-name\":undefined},\"uePjac6XL-hover\":{\"data-framer-name\":undefined},uePjac6XL:{\"data-framer-name\":\"Resource\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rlq5ao\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"OSyBSmZ5j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Feedback & Roadmap\\xa0\"})}),className:\"framer-lff8em\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i19_HFxBM\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{uePjac6XL:{\"--extracted-r6o4lv\":\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(20, 21, 26))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uePjac6XL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(20, 21, 26)))\"},children:\"Resources\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Teamcamp's public roadmap\"})}),className:\"framer-m0bxh6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fSLiuTBLU\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{uePjac6XL:{\"--extracted-r6o4lv\":\"var(--token-7aa8af97-7282-44fc-ab85-5b3c91e8daa0, rgb(108, 110, 120))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({uePjac6XL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7aa8af97-7282-44fc-ab85-5b3c91e8daa0, rgb(108, 110, 120)))\"},children:\"Easily plan and create customer journey maps\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-56),pixelHeight:1162,pixelWidth:1883,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 68px)`,src:\"https://framerusercontent.com/images/Pf7cZb0ZZjv7GVZcFYuVq6DM.png\",srcSet:\"https://framerusercontent.com/images/Pf7cZb0ZZjv7GVZcFYuVq6DM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pf7cZb0ZZjv7GVZcFYuVq6DM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Pf7cZb0ZZjv7GVZcFYuVq6DM.png 1883w\"},className:\"framer-n5e02b\",\"data-framer-name\":\"Cards\",layoutDependency:layoutDependency,layoutId:\"jdieyx0QO\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1162,pixelWidth:1883,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png\",srcSet:\"https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png 1883w\"},className:\"framer-5z0shv\",\"data-framer-name\":\"Cards\",layoutDependency:layoutDependency,layoutId:\"Xbix97Cvn\",...addPropertyOverrides({\"DLH1Ocx5T-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-56),pixelHeight:1162,pixelWidth:1883,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 68px)`,src:\"https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png\",srcSet:\"https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YH0bkxaDZg2VjLgTmqAkfgAHMA.png 1883w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1699,pixelWidth:2619,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png\",srcSet:\"https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png 2619w\"},className:\"framer-wkfwdz\",\"data-framer-name\":\"Endlessly customisable Image\",layoutDependency:layoutDependency,layoutId:\"m3lTKFbsm\",...addPropertyOverrides({uePjac6XL:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||194)-329),pixelHeight:1699,pixelWidth:2619,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 232.1984px)`,src:\"https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png\",srcSet:\"https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZrTHOAiGK3qUqH6Hx7rs4845VoA.png 2619w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:1699,pixelWidth:2619,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png\",srcSet:\"https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png 2619w\"},className:\"framer-1r9wrfz\",\"data-framer-name\":\"Endlessly customisable Image\",layoutDependency:layoutDependency,layoutId:\"ASWGXzrBE\",...addPropertyOverrides({\"uePjac6XL-hover\":{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||194)-329),pixelHeight:1699,pixelWidth:2619,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} + 232.1984px)`,src:\"https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png\",srcSet:\"https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png?scale-down-to=512 512w,https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JobeJs1G9XUiyCeU6Kd0mic5k.png 2619w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9mmmng\",\"data-framer-name\":\"Mask\",layoutDependency:layoutDependency,layoutId:\"KIy3Pfvmf\",style:{background:\"linear-gradient(180deg, rgb(250, 250, 250) 0%, rgba(250, 250, 250, 0.73) 13.62260698198198%, rgba(250, 250, 250, 0) 50.38534628378378%, rgb(250, 250, 250) 100%)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:.5},variants:{\"DLH1Ocx5T-hover\":{background:\"linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.73) 13.62260698198198%, rgba(255, 255, 255, 0) 50.38534628378378%, rgb(255, 255, 255) 100%)\"},\"uePjac6XL-hover\":{background:\"linear-gradient(180deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.73) 35%, rgba(255, 255, 255, 0) 45%, rgba(255, 255, 255, 0) 100%)\"},uePjac6XL:{background:\"linear-gradient(180deg, rgb(250, 250, 250) 0%, rgb(250, 250, 250) 35%, rgba(250, 250, 250, 0) 45%, rgb(250, 250, 250) 100%)\"}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ICwna.framer-3cbih0, .framer-ICwna .framer-3cbih0 { display: block; }\",\".framer-ICwna.framer-1euprh2 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 194px; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-ICwna .framer-1rlq5ao { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-ICwna .framer-lff8em, .framer-ICwna .framer-m0bxh6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ICwna .framer-n5e02b { aspect-ratio: 1.096 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 398px); left: -11px; position: absolute; right: -57px; top: -56px; z-index: 0; }\",\".framer-ICwna .framer-5z0shv { flex: none; height: 336px; position: relative; width: 411px; }\",\".framer-ICwna .framer-wkfwdz, .framer-ICwna .framer-1r9wrfz { aspect-ratio: 1.0912698412698412 / 1; bottom: -221px; flex: none; height: var(--framer-aspect-ratio-supported, 550px); left: -104px; position: absolute; right: -128px; z-index: 0; }\",\".framer-ICwna .framer-9mmmng { flex: none; height: 100%; overflow: visible; position: absolute; right: 0px; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ICwna.framer-1euprh2, .framer-ICwna .framer-1rlq5ao { gap: 0px; } .framer-ICwna.framer-1euprh2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ICwna.framer-1euprh2 > :first-child { margin-left: 0px; } .framer-ICwna.framer-1euprh2 > :last-child { margin-right: 0px; } .framer-ICwna .framer-1rlq5ao > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ICwna .framer-1rlq5ao > :first-child { margin-top: 0px; } .framer-ICwna .framer-1rlq5ao > :last-child { margin-bottom: 0px; } }\",\".framer-ICwna.framer-v-1euprh2.hover .framer-1rlq5ao { order: 2; }\",\".framer-ICwna.framer-v-1euprh2.hover .framer-5z0shv { aspect-ratio: 1.0954773869346734 / 1; height: var(--framer-aspect-ratio-supported, 398px); left: -11px; order: 0; position: absolute; right: -57px; top: -56px; width: unset; }\",\".framer-ICwna.framer-v-1euprh2.hover .framer-9mmmng { order: 3; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ICwna[data-border=\"true\"]::after, .framer-ICwna [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 194\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"uePjac6XL\":{\"layout\":[\"fixed\",\"fixed\"]},\"bDJ1oN9ho\":{\"layout\":[\"fixed\",\"fixed\"]},\"fiReuzzl5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"t_Ndt5NpQ\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerC302MFFNX=withCSS(Component,css,\"framer-ICwna\");export default FramerC302MFFNX;FramerC302MFFNX.displayName=\"Resource Tab\";FramerC302MFFNX.defaultProps={height:194,width:368};addPropertyControls(FramerC302MFFNX,{variant:{options:[\"DLH1Ocx5T\",\"uePjac6XL\"],optionTitles:[\"Feedback\",\"Resource\"],title:\"Variant\",type:ControlType.Enum},t_Ndt5NpQ:{title:\"Link\",type:ControlType.Link}});addFonts(FramerC302MFFNX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerC302MFFNX\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"t_Ndt5NpQ\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"194\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uePjac6XL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bDJ1oN9ho\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fiReuzzl5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"368\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./C302MFFNX.map", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/XKrCcKyK2PDBeaXUsMjH/TqreinkLve4XhvVNJjmY/UIDGim5Fo.js\";const enabledGestures={Oi64HzUWa:{hover:true},RbaVBba9k:{hover:true}};const cycleOrder=[\"Oi64HzUWa\",\"RbaVBba9k\"];const serializationHash=\"framer-vjQiE\";const variantClassNames={Oi64HzUWa:\"framer-v-1j229xn\",RbaVBba9k:\"framer-v-1m0d4w7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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={Tab1:\"Oi64HzUWa\",Tab2:\"RbaVBba9k\"};const getProps=({height,id,link,width,...props})=>{return{...props,QSLzwUiJo:link??props.QSLzwUiJo,variant:humanReadableVariantMap[props.variant]??props.variant??\"Oi64HzUWa\"};};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,QSLzwUiJo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Oi64HzUWa\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"RbaVBba9k-hover\")return false;if(baseVariant===\"RbaVBba9k\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"RbaVBba9k-hover\")return true;if(baseVariant===\"RbaVBba9k\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"RbaVBba9k-hover\")return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"RbaVBba9k-hover\")return true;if(baseVariant===\"RbaVBba9k\")return false;return true;};const isDisplayed4=()=>{if(gestureVariant===\"RbaVBba9k-hover\")return true;return false;};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:QSLzwUiJo,motionChild:true,nodeId:\"Oi64HzUWa\",openInNewTab:false,scopeId:\"cMeq1uN3e\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1j229xn\",className,classNames)} framer-15e5oa2`,\"data-border\":true,\"data-framer-name\":\"Tab1\",layoutDependency:layoutDependency,layoutId:\"Oi64HzUWa\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},variants:{\"Oi64HzUWa-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"},\"RbaVBba9k-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"}},...addPropertyOverrides({\"Oi64HzUWa-hover\":{\"data-framer-name\":undefined},\"RbaVBba9k-hover\":{\"data-framer-name\":undefined},RbaVBba9k:{\"data-framer-name\":\"Tab2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vu1ok0\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"RtCpL6RKE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Task tracking and sprint planning\"})}),className:\"framer-r8iwjf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ir9uDEJl4\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({RbaVBba9k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Discover How Teamcamp Compares\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Issue tracking you\u2019ll enjoy using\"})}),className:\"framer-wnyrau\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Q0MQiQqFT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({RbaVBba9k:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Teamcamp enhances team collaboration uniquely\"})})}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4o1ek0\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ZBFuSJXEn\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xr6xk9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"E2eAvTnhZ\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"rgb(250, 250, 250)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-128g5nt\",\"data-framer-name\":\"Todo\",layoutDependency:layoutDependency,layoutId:\"qIm8zduT7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13bkwi6\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"X_J8TyB6V\",children:[/*#__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\":\"7.84px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Todo\"})}),className:\"framer-rn3jgk\",\"data-framer-name\":\"Requirements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"zFVaqSueM\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18055mt\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"hmJfOKCYL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-104vpjc\",layoutDependency:layoutDependency,layoutId:\"twzVAZ6pr\",style:{backgroundColor:\"rgb(144, 152, 154)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1et45l4\",layoutDependency:layoutDependency,layoutId:\"fby1OyCe5\",style:{backgroundColor:\"rgb(144, 152, 154)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fn8s6y\",layoutDependency:layoutDependency,layoutId:\"VCIn_mi2c\",style:{backgroundColor:\"rgb(144, 152, 154)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ncp6h5\",\"data-framer-name\":\"Box\",layoutDependency:layoutDependency,layoutId:\"AWzwcY3Sg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y04cj9\",\"data-border\":true,\"data-framer-name\":\"5\",layoutDependency:layoutDependency,layoutId:\"ulb1U3uXo\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72,boxShadow:\"none\"},variants:{\"Oi64HzUWa-hover\":{boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x0s7z5\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"VyrY78qwt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-abehs8\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"TYlyPTZ3b\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4kibbm\",\"data-framer-name\":\"Milestone\",layoutDependency:layoutDependency,layoutId:\"pWyALpybF\",style:{backgroundColor:\"rgb(241, 244, 244)\",borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"7.28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Landing page\"})}),className:\"framer-tljqgk\",\"data-framer-name\":\"Renegotiate budget a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lkj3nhq80\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8oveid\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"fy8iFCes3\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xwtscv\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"l9xQHIxw2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12jl2pd\",\"data-border\":true,\"data-framer-name\":\"Check Box\",layoutDependency:layoutDependency,layoutId:\"IIuzVIn6O\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(144, 152, 154)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Call Joan to discuss existing \"})}),className:\"framer-881p92\",\"data-framer-name\":\"Call Joan to discuss existing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kZwJribgk\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sbubf5\",\"data-border\":true,\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"o3yvkMOv0\",style:{\"--border-bottom-width\":\"0.2801002562046051px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.2801002562046051px\",\"--border-right-width\":\"0.2801002562046051px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.2801002562046051px\",borderBottomLeftRadius:10.08,borderBottomRightRadius:10.08,borderTopLeftRadius:10.08,borderTopRightRadius:10.08},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1l13af\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"zc4OhVJh5\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<ellipse cx=\"3.76263\" cy=\"3.89935\" rx=\"1.6806\" ry=\"1.6806\" fill=\"#735CD2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Ui\"})}),className:\"framer-2g5vln\",\"data-framer-name\":\"Ui\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nSPBm7wE7\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9q8zqg\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"sTt9dPqVj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yal7tj\",\"data-framer-name\":\"Frame 427321963\",layoutDependency:layoutDependency,layoutId:\"jZIxVwLIv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-53q95w\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"imFSw04x2\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k5i66l\",\"data-framer-name\":\"Priority\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"koF4P_MhO\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.64384 5.22461H2.08364C1.77425 5.22461 1.52344 5.47542 1.52344 5.78481L1.52344 8.02561C1.52344 8.335 1.77425 8.58581 2.08364 8.58581H2.64384C2.95323 8.58581 3.20404 8.335 3.20404 8.02561V5.78481C3.20404 5.47542 2.95323 5.22461 2.64384 5.22461Z\" fill=\"#505556\"/>\\n<path d=\"M5.44462 3.54395H4.88442C4.57503 3.54395 4.32422 3.79476 4.32422 4.10415V8.02555C4.32422 8.33494 4.57503 8.58575 4.88442 8.58575H5.44462C5.75401 8.58575 6.00482 8.33494 6.00482 8.02555V4.10415C6.00482 3.79476 5.75401 3.54395 5.44462 3.54395Z\" fill=\"#505556\"/>\\n<path d=\"M8.24931 1.86328H7.68911C7.37972 1.86328 7.12891 2.11409 7.12891 2.42348L7.12891 8.02549C7.12891 8.33488 7.37972 8.58569 7.68911 8.58569H8.24931C8.5587 8.58569 8.80951 8.33488 8.80951 8.02549V2.42348C8.80951 2.11409 8.5587 1.86328 8.24931 1.86328Z\" fill=\"#ACAEB0\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lbmwhi\",\"data-framer-name\":\"Assignee Group\",layoutDependency:layoutDependency,layoutId:\"npVm_5rEY\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+0+6.722406387329102+76.3928+.5184+0+-.2776),pixelHeight:55,pixelWidth:55,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9ZWz5kUItNCikTbqwJ61mXhICVo.png\"},className:\"framer-13x88rz\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"DLAySvhl1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+0+6.722406387329102+76.3928+.5184+0+-.2776),pixelHeight:55,pixelWidth:55,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mWLIeGWsZaBFo7tfLQWXHwWZcw.png\"},className:\"framer-1j6psc6\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"rn3T3iTBa\"})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aoibif\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"oyhkr2Rkg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-185xprr\",\"data-framer-name\":\"Dadline\",layoutDependency:layoutDependency,layoutId:\"RrYCD_1_p\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 152, 154))\"},children:\"4d\"})}),className:\"framer-18kte54\",\"data-framer-name\":\"1 days left\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YjQhiqnQ3\",style:{\"--extracted-r6o4lv\":\"rgb(144, 152, 154)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-196t8q8\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"pTvOgBJtK\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jixaco\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"SmWEXjN4J\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14483_54816)\">\\n<path d=\"M7.10201 1.30371C8.33954 1.30371 9.34281 2.30695 9.34281 3.54451V6.90572C9.34281 8.14326 8.33954 9.14652 7.10201 9.14652H3.7408C2.50324 9.14652 1.5 8.14326 1.5 6.90572L1.5 3.54451C1.5 2.30695 2.50324 1.30371 3.7408 1.30371H7.10201ZM8.50251 4.10471H2.3403L2.3403 6.90572C2.3403 7.67918 2.96733 8.30622 3.7408 8.30622H7.10201C7.87547 8.30622 8.50251 7.67918 8.50251 6.90572V4.10471Z\" fill=\"#90989A\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_14483_54816\">\\n<rect width=\"8.96321\" height=\"8.96321\" fill=\"white\" transform=\"translate(0.941406 0.743164)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bb6zvp\",\"data-border\":true,\"data-framer-name\":\"4\",layoutDependency:layoutDependency,layoutId:\"AtSS_EWOj\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72,boxShadow:\"none\",opacity:.8},variants:{\"Oi64HzUWa-hover\":{boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ksqh7r\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"l1Xk2GYoQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17051mt\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"UiziqI8Qv\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-we4hmo\",\"data-framer-name\":\"Milestone\",layoutDependency:layoutDependency,layoutId:\"oBBbU2Av4\",style:{backgroundColor:\"rgb(241, 244, 244)\",borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"7.28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Landing page\"})}),className:\"framer-1y28qkb\",\"data-framer-name\":\"Renegotiate budget a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Bnxs_jlPI\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b0q8mc\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"vJ1l67zbr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17t4lww\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"YeIK9zV0r\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nwdyik\",\"data-border\":true,\"data-framer-name\":\"Check Box\",layoutDependency:layoutDependency,layoutId:\"SfuHpbxOu\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(144, 152, 154)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Task Details -> Click to edit task title and description. if there is no description then\u2026\"})}),className:\"framer-prsvi9\",\"data-framer-name\":'Task Details -> Click to edit task title and description. if there is no description then add link button \"Add description\"',fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jo5FJEOr_\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rz9i62\",\"data-border\":true,\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"oJw0OjLNu\",style:{\"--border-bottom-width\":\"0.2801002562046051px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.2801002562046051px\",\"--border-right-width\":\"0.2801002562046051px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.2801002562046051px\",borderBottomLeftRadius:10.08,borderBottomRightRadius:10.08,borderTopLeftRadius:10.08,borderTopRightRadius:10.08},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eawrv5\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"CnOfiTI8f\",svg:'<svg width=\"8\" height=\"8\" viewBox=\"0 0 8 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<ellipse cx=\"3.76263\" cy=\"3.96576\" rx=\"1.6806\" ry=\"1.6806\" fill=\"#735CD2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Ui\"})}),className:\"framer-zwr0b1\",\"data-framer-name\":\"Ui\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Wp2LLQ_J6\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u6mvro\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"mqcG3cwHd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1utoj11\",\"data-framer-name\":\"Frame 427321963\",layoutDependency:layoutDependency,layoutId:\"TVAmLeMxG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cgz9nl\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"xQBEjN_xJ\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1b2yp2u\",\"data-framer-name\":\"Priority\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"xxvd5Gf46\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.64384 5.29102H2.08364C1.77425 5.29102 1.52344 5.54183 1.52344 5.85122L1.52344 8.09202C1.52344 8.40141 1.77425 8.65222 2.08364 8.65222H2.64384C2.95323 8.65222 3.20404 8.40141 3.20404 8.09202V5.85122C3.20404 5.54183 2.95323 5.29102 2.64384 5.29102Z\" fill=\"#505556\"/>\\n<path d=\"M5.44462 3.61035H4.88442C4.57503 3.61035 4.32422 3.86116 4.32422 4.17055V8.09196C4.32422 8.40135 4.57503 8.65216 4.88442 8.65216H5.44462C5.75401 8.65216 6.00482 8.40135 6.00482 8.09196V4.17055C6.00482 3.86116 5.75401 3.61035 5.44462 3.61035Z\" fill=\"#505556\"/>\\n<path d=\"M8.24931 1.92969H7.68911C7.37972 1.92969 7.12891 2.1805 7.12891 2.48989L7.12891 8.09189C7.12891 8.40128 7.37972 8.65209 7.68911 8.65209H8.24931C8.5587 8.65209 8.80951 8.40128 8.80951 8.09189V2.48989C8.80951 2.1805 8.5587 1.92969 8.24931 1.92969Z\" fill=\"#ACAEB0\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3zse2n\",\"data-framer-name\":\"Assignee Group\",layoutDependency:layoutDependency,layoutId:\"UEm74j1s0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+109.9212+6.722406387329102+76.3928+.5184+0+-.2776),pixelHeight:55,pixelWidth:55,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4t8q0jW3zxOM4I7qkrOhfdw0ryE.png\"},className:\"framer-zfdlfp\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"KDTsNxc_K\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-134cngo\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"d14aTHoNF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ur5fo2\",\"data-border\":true,\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"I14483:54835;15949:102115\",style:{\"--border-bottom-width\":\"1.12040114402771px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1.12040114402771px\",\"--border-right-width\":\"1.12040114402771px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.12040114402771px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:12.6,borderBottomRightRadius:12.6,borderTopLeftRadius:12.6,borderTopRightRadius:12.6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zjo0cz\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"I14483:54835;16368:199673\",style:{borderBottomLeftRadius:12.6,borderBottomRightRadius:12.6,borderTopLeftRadius:12.6,borderTopRightRadius:12.6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+109.9212+6.722406387329102+76.3928+.5184+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"13.4448px\",src:\"https://framerusercontent.com/images/W1uGf5z8dXqX7y0H0jsV4iESMYE.png\",srcSet:\"https://framerusercontent.com/images/W1uGf5z8dXqX7y0H0jsV4iESMYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/W1uGf5z8dXqX7y0H0jsV4iESMYE.png 1024w\"},className:\"framer-1ywp0bq\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"I14483:54835;15949:102116\",style:{borderBottomLeftRadius:12.6,borderBottomRightRadius:12.6,borderTopLeftRadius:12.6,borderTopRightRadius:12.6}})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1so40kz\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"IydamIc0K\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16vw5l0\",\"data-framer-name\":\"Dadline\",layoutDependency:layoutDependency,layoutId:\"CMm4dYDOL\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(219, 11, 11))\"},children:\"2d\"})}),className:\"framer-1qej0b2\",\"data-framer-name\":\"1 days left\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JDJMKItG3\",style:{\"--extracted-r6o4lv\":\"rgb(219, 11, 11)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1llfaww\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"tdGHc1nnY\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e8hc0p\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"ITrFy9Lgt\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14483_54852)\">\\n<path d=\"M7.03951 1.30762C8.27704 1.30762 9.28031 2.31086 9.28031 3.54842V4.24867C9.28031 4.48071 9.09219 4.66882 8.86016 4.66882C8.62812 4.66882 8.44001 4.48071 8.44001 4.24867V4.10862H2.2778L2.2778 6.90962C2.2778 7.68309 2.90483 8.31012 3.6783 8.31012H4.37855C4.61059 8.31012 4.7987 8.49824 4.7987 8.73027C4.7987 8.96231 4.61059 9.15042 4.37855 9.15042H3.6783C2.44074 9.15042 1.4375 8.14716 1.4375 6.90962L1.4375 3.54842C1.4375 2.31086 2.44074 1.30762 3.6783 1.30762H7.03951ZM6.2162 5.49213L7.31961 6.59552L8.42303 5.49213C8.58711 5.32805 8.8531 5.32805 9.01718 5.49213C9.18126 5.65621 9.18126 5.92224 9.01718 6.08631L7.91381 7.18972L9.01718 8.29315C9.18126 8.45723 9.18126 8.72322 9.01718 8.8873C8.8531 9.05138 8.58711 9.05138 8.42303 8.8873L7.31961 7.78393L6.2162 8.8873C6.05212 9.05138 5.78609 9.05138 5.62201 8.8873C5.45794 8.72322 5.45794 8.45723 5.62201 8.29315L6.7254 7.18972L5.62201 6.08631C5.45794 5.92224 5.45794 5.65621 5.62201 5.49213C5.78609 5.32805 6.05212 5.32805 6.2162 5.49213Z\" fill=\"#DB0B0B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_14483_54852\">\\n<rect width=\"8.96321\" height=\"8.96321\" fill=\"white\" transform=\"translate(0.941406 0.80957)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3k6znb\",\"data-framer-name\":\"In Progress\",layoutDependency:layoutDependency,layoutId:\"ru22TqDtl\",style:{opacity:.5},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-senbpv\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"DNCELD975\",children:[/*#__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\":\"7.84px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"In Progress\"})}),className:\"framer-ijh8jj\",\"data-framer-name\":\"Requirements\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"eFYnQ5jo7\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oztz1e\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"mh2pXb6sZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18capm5\",layoutDependency:layoutDependency,layoutId:\"fZAqU84dc\",style:{backgroundColor:\"rgb(144, 152, 154)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mgfdn2\",layoutDependency:layoutDependency,layoutId:\"bWqsqNMnN\",style:{backgroundColor:\"rgb(144, 152, 154)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d26oh3\",layoutDependency:layoutDependency,layoutId:\"nJo1eLsxI\",style:{backgroundColor:\"rgb(144, 152, 154)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jlzw3k\",\"data-framer-name\":\"Box\",layoutDependency:layoutDependency,layoutId:\"c9ZuFf8mg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uvddbd\",\"data-border\":true,\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"CJXwkJdef\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72,boxShadow:\"0px 1.1204010248184204px 2.240802049636841px 0px rgba(0, 0, 0, 0.03)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pwwyo9\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185913\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o33vbn\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;25284:418157\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s3df00\",\"data-framer-name\":\"Milestone\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185915\",style:{backgroundColor:\"rgb(241, 244, 244)\",borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"7.28px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Landing page\"})}),className:\"framer-rro2hp\",\"data-framer-name\":\"Renegotiate budget a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185916\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4e3wbl\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185918\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-85hamm\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185919\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v8embp\",\"data-border\":true,\"data-framer-name\":\"Check Box\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185920\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(144, 152, 154)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Call Joan to discuss existing requirements\"})}),className:\"framer-1bmhaed\",\"data-framer-name\":\"Call Joan to discuss existing requirements\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I14483:54858;22106:185921\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-chrc9l\",\"data-border\":true,\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;25915:220259\",style:{\"--border-bottom-width\":\"0.2801002562046051px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.2801002562046051px\",\"--border-right-width\":\"0.2801002562046051px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.2801002562046051px\",borderBottomLeftRadius:10.08,borderBottomRightRadius:10.08,borderTopLeftRadius:10.08,borderTopRightRadius:10.08},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8wrju1\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;25915:220260\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-162huc0\",\"data-framer-name\":\"Ellipse 81\",layoutDependency:layoutDependency,layoutId:\"I14483:54858;25915:220260;19066:161602\",style:{backgroundColor:\"rgb(115, 92, 210)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Ui\"})}),className:\"framer-1svezo9\",\"data-framer-name\":\"Ui\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I14483:54858;25915:220261\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-160qe23\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"IvnGTDVgQ\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f6f1zo\",\"data-framer-name\":\"Frame 427321963\",layoutDependency:layoutDependency,layoutId:\"A0coP_Zl2\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14o5yu3\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"qhLq0vvY1\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16sxz5n\",\"data-framer-name\":\"Priority\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"kOMlLpbYa\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.64384 5.22461H2.08364C1.77425 5.22461 1.52344 5.47542 1.52344 5.78481L1.52344 8.02561C1.52344 8.335 1.77425 8.58581 2.08364 8.58581H2.64384C2.95323 8.58581 3.20404 8.335 3.20404 8.02561V5.78481C3.20404 5.47542 2.95323 5.22461 2.64384 5.22461Z\" fill=\"#505556\"/>\\n<path d=\"M5.44462 3.54395H4.88442C4.57503 3.54395 4.32422 3.79476 4.32422 4.10415V8.02555C4.32422 8.33494 4.57503 8.58575 4.88442 8.58575H5.44462C5.75401 8.58575 6.00482 8.33494 6.00482 8.02555V4.10415C6.00482 3.79476 5.75401 3.54395 5.44462 3.54395Z\" fill=\"#505556\"/>\\n<path d=\"M8.24931 1.86328H7.68911C7.37972 1.86328 7.12891 2.11409 7.12891 2.42348L7.12891 8.02549C7.12891 8.33488 7.37972 8.58569 7.68911 8.58569H8.24931C8.5587 8.58569 8.80951 8.33488 8.80951 8.02549V2.42348C8.80951 2.11409 8.5587 1.86328 8.24931 1.86328Z\" fill=\"#ACAEB0\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aqy80j\",\"data-framer-name\":\"Assignee Group\",layoutDependency:layoutDependency,layoutId:\"E9XKZLve2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+0+6.722406387329102+76.3928+.5184+0+-.2776),pixelHeight:55,pixelWidth:55,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9ZWz5kUItNCikTbqwJ61mXhICVo.png\"},className:\"framer-1glx1d6\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"rAyLLUymU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+0+6.722406387329102+76.3928+.5184+0+-.2776),pixelHeight:55,pixelWidth:55,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mWLIeGWsZaBFo7tfLQWXHwWZcw.png\"},className:\"framer-1t0m96q\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"fau1n2sj7\"})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-clez28\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"XCZUfYgPH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j5azuz\",\"data-framer-name\":\"Dadline\",layoutDependency:layoutDependency,layoutId:\"ONKwUsB9h\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(144, 152, 154))\"},children:\"Yesterday\"})}),className:\"framer-lq1n1c\",\"data-framer-name\":\"1 days left\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SmZi4bcop\",style:{\"--extracted-r6o4lv\":\"rgb(144, 152, 154)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1byp8nb\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"f3KZAV25h\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1u51kba\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"PiJcVgOMZ\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14483_54816)\">\\n<path d=\"M7.10201 1.30371C8.33954 1.30371 9.34281 2.30695 9.34281 3.54451V6.90572C9.34281 8.14326 8.33954 9.14652 7.10201 9.14652H3.7408C2.50324 9.14652 1.5 8.14326 1.5 6.90572L1.5 3.54451C1.5 2.30695 2.50324 1.30371 3.7408 1.30371H7.10201ZM8.50251 4.10471H2.3403L2.3403 6.90572C2.3403 7.67918 2.96733 8.30622 3.7408 8.30622H7.10201C7.87547 8.30622 8.50251 7.67918 8.50251 6.90572V4.10471Z\" fill=\"#90989A\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_14483_54816\">\\n<rect width=\"8.96321\" height=\"8.96321\" fill=\"white\" transform=\"translate(0.941406 0.743164)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1d8h9dt\",\"data-border\":true,\"data-framer-name\":\"2\",layoutDependency:layoutDependency,layoutId:\"ojK01YivM\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72,boxShadow:\"0px 1.1204010248184204px 2.240802049636841px 0px rgba(0, 0, 0, 0.03)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14tuyn5\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;22106:185913\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1otptwr\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;25284:418157\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wd1ncb\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;22106:185918\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mbalr5\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;22106:185919\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ap4v0u\",\"data-border\":true,\"data-framer-name\":\"Check Box\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;22106:185920\",style:{\"--border-bottom-width\":\"0.5602005124092102px\",\"--border-color\":\"rgb(144, 152, 154)\",\"--border-left-width\":\"0.5602005124092102px\",\"--border-right-width\":\"0.5602005124092102px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5602005124092102px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:6.72,borderBottomRightRadius:6.72,borderTopLeftRadius:6.72,borderTopRightRadius:6.72}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Task Details -> Click to edit task title and description. if there is no description then\u2026\"})}),className:\"framer-1xmpiy\",\"data-framer-name\":\"Call Joan to discuss existing requirements\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I14483:54859;22106:185921\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o8h9cr\",\"data-border\":true,\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;25915:220259\",style:{\"--border-bottom-width\":\"0.2801002562046051px\",\"--border-color\":\"rgb(227, 232, 234)\",\"--border-left-width\":\"0.2801002562046051px\",\"--border-right-width\":\"0.2801002562046051px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.2801002562046051px\",borderBottomLeftRadius:10.08,borderBottomRightRadius:10.08,borderTopLeftRadius:10.08,borderTopRightRadius:10.08},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9sa54y\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;25915:220260\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oqqzuz\",\"data-framer-name\":\"Ellipse 81\",layoutDependency:layoutDependency,layoutId:\"I14483:54859;25915:220260;19066:161602\",style:{backgroundColor:\"rgb(115, 92, 210)\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"6.72px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(42, 45, 46))\"},children:\"Ui\"})}),className:\"framer-9f0et3\",\"data-framer-name\":\"Ui\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I14483:54859;25915:220261\",style:{\"--extracted-r6o4lv\":\"rgb(42, 45, 46)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pep247\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"GgRNC080l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18tvsu3\",\"data-framer-name\":\"Frame 427321963\",layoutDependency:layoutDependency,layoutId:\"YvFY85KZU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x36zrj\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"Zbk8d98rs\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3qbdwb\",\"data-framer-name\":\"Priority\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"E8XQVZVeF\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.64384 5.29102H2.08364C1.77425 5.29102 1.52344 5.54183 1.52344 5.85122L1.52344 8.09202C1.52344 8.40141 1.77425 8.65222 2.08364 8.65222H2.64384C2.95323 8.65222 3.20404 8.40141 3.20404 8.09202V5.85122C3.20404 5.54183 2.95323 5.29102 2.64384 5.29102Z\" fill=\"#505556\"/>\\n<path d=\"M5.44462 3.61035H4.88442C4.57503 3.61035 4.32422 3.86116 4.32422 4.17055V8.09196C4.32422 8.40135 4.57503 8.65216 4.88442 8.65216H5.44462C5.75401 8.65216 6.00482 8.40135 6.00482 8.09196V4.17055C6.00482 3.86116 5.75401 3.61035 5.44462 3.61035Z\" fill=\"#505556\"/>\\n<path d=\"M8.24931 1.92969H7.68911C7.37972 1.92969 7.12891 2.1805 7.12891 2.48989L7.12891 8.09189C7.12891 8.40128 7.37972 8.65209 7.68911 8.65209H8.24931C8.5587 8.65209 8.80951 8.40128 8.80951 8.09189V2.48989C8.80951 2.1805 8.5587 1.92969 8.24931 1.92969Z\" fill=\"#ACAEB0\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h79vxo\",\"data-framer-name\":\"Assignee Group\",layoutDependency:layoutDependency,layoutId:\"xGla9JiF8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+109.9212+6.722406387329102+61.8276+.5184+0+-.2776),pixelHeight:55,pixelWidth:55,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4t8q0jW3zxOM4I7qkrOhfdw0ryE.png\"},className:\"framer-1nktvxl\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"RGctgfQ49\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iyy4px\",\"data-framer-name\":\"User Image\",layoutDependency:layoutDependency,layoutId:\"QXm4P7YKG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8wbj8q\",\"data-border\":true,\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"btR5cIo8A\",style:{\"--border-bottom-width\":\"1.12040114402771px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1.12040114402771px\",\"--border-right-width\":\"1.12040114402771px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.12040114402771px\",backgroundColor:\"rgb(0, 0, 0)\",borderBottomLeftRadius:12.6,borderBottomRightRadius:12.6,borderTopLeftRadius:12.6,borderTopRightRadius:12.6}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jthugw\",\"data-framer-name\":\"Bg\",layoutDependency:layoutDependency,layoutId:\"hQpYdbJb7\",style:{borderBottomLeftRadius:12.6,borderBottomRightRadius:12.6,borderTopLeftRadius:12.6,borderTopRightRadius:12.6},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+80+6+0+14+0+56.0032+0+109.9212+6.722406387329102+61.8276+.5184+0+0+0+0),pixelHeight:1024,pixelWidth:1024,sizes:\"13.4448px\",src:\"https://framerusercontent.com/images/W1uGf5z8dXqX7y0H0jsV4iESMYE.png\",srcSet:\"https://framerusercontent.com/images/W1uGf5z8dXqX7y0H0jsV4iESMYE.png?scale-down-to=512 512w,https://framerusercontent.com/images/W1uGf5z8dXqX7y0H0jsV4iESMYE.png 1024w\"},className:\"framer-mgi2sy\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"XllEfjrYT\",style:{borderBottomLeftRadius:12.6,borderBottomRightRadius:12.6,borderTopLeftRadius:12.6,borderTopRightRadius:12.6}})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10tl3bs\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"K7NVQA0Xg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ye9w2u\",\"data-framer-name\":\"Dadline\",layoutDependency:layoutDependency,layoutId:\"IAKprev2c\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"7.28px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(219, 11, 11))\"},children:\"2d\"})}),className:\"framer-4q203n\",\"data-framer-name\":\"1 days left\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eAbTURDcz\",style:{\"--extracted-r6o4lv\":\"rgb(219, 11, 11)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ad5fc\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"cBbezaw72\",style:{borderBottomLeftRadius:2.24,borderBottomRightRadius:2.24,borderTopLeftRadius:2.24,borderTopRightRadius:2.24},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11prtj4\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"BgxaMuH4E\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14483_54852)\">\\n<path d=\"M7.03951 1.30762C8.27704 1.30762 9.28031 2.31086 9.28031 3.54842V4.24867C9.28031 4.48071 9.09219 4.66882 8.86016 4.66882C8.62812 4.66882 8.44001 4.48071 8.44001 4.24867V4.10862H2.2778L2.2778 6.90962C2.2778 7.68309 2.90483 8.31012 3.6783 8.31012H4.37855C4.61059 8.31012 4.7987 8.49824 4.7987 8.73027C4.7987 8.96231 4.61059 9.15042 4.37855 9.15042H3.6783C2.44074 9.15042 1.4375 8.14716 1.4375 6.90962L1.4375 3.54842C1.4375 2.31086 2.44074 1.30762 3.6783 1.30762H7.03951ZM6.2162 5.49213L7.31961 6.59552L8.42303 5.49213C8.58711 5.32805 8.8531 5.32805 9.01718 5.49213C9.18126 5.65621 9.18126 5.92224 9.01718 6.08631L7.91381 7.18972L9.01718 8.29315C9.18126 8.45723 9.18126 8.72322 9.01718 8.8873C8.8531 9.05138 8.58711 9.05138 8.42303 8.8873L7.31961 7.78393L6.2162 8.8873C6.05212 9.05138 5.78609 9.05138 5.62201 8.8873C5.45794 8.72322 5.45794 8.45723 5.62201 8.29315L6.7254 7.18972L5.62201 6.08631C5.45794 5.92224 5.45794 5.65621 5.62201 5.49213C5.78609 5.32805 6.05212 5.32805 6.2162 5.49213Z\" fill=\"#DB0B0B\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_14483_54852\">\\n<rect width=\"8.96321\" height=\"8.96321\" fill=\"white\" transform=\"translate(0.941406 0.80957)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})]})]})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8t40zn\",\"data-framer-name\":\"Endlessly customisable Image\",layoutDependency:layoutDependency,layoutId:\"I14483:56552;13459:127400\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-131eni1\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"Ihp82hsGe\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w3zld2\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"CW0zkUdtW\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ingkj0\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"M63wCanSx\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-955bk5\",\"data-framer-name\":\"Integration Icons - 60px\",layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75676;13402:89197\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-131z110\",\"data-framer-name\":\"customer-io-logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75676;13402:89197;7702:290284\",svg:'<svg width=\"21\" height=\"19\" viewBox=\"0 0 21 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14480_39690)\">\\n<g filter=\"url(#filter0_ii_14480_39690)\">\\n<path d=\"M16.029 9.78385C13.7314 9.78385 11.8693 11.7028 11.8693 14.0699C11.8693 16.4373 13.7314 18.3567 16.029 18.3567C18.3262 18.3567 20.1883 16.4373 20.1883 14.0699C20.1883 11.7028 18.3262 9.78385 16.029 9.78385ZM5.22204 9.78404C2.92488 9.78427 1.0625 11.7028 1.0625 14.0702C1.0625 16.4373 2.92488 18.3565 5.22204 18.3565C7.51937 18.3565 9.38177 16.4373 9.38177 14.0702C9.38177 11.7028 7.51959 9.78404 5.22204 9.78404ZM14.785 4.42596C14.785 6.79313 12.9228 8.71267 10.6256 8.71267C8.3281 8.71267 6.46588 6.79313 6.46588 4.42596C6.46588 2.05878 8.3281 0.139648 10.6256 0.139648C12.9228 0.139648 14.785 2.05878 14.785 4.42596Z\" fill=\"#B5B5B5\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39690\" x=\"1.0625\" y=\"-0.928728\" width=\"19.125\" height=\"19.8194\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.06838\"/>\\n<feGaussianBlur stdDeviation=\"0.534188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39690\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.534188\"/>\\n<feGaussianBlur stdDeviation=\"0.534188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39690\" result=\"effect2_innerShadow_14480_39690\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_39690\">\\n<rect width=\"19.6429\" height=\"18.4524\" fill=\"white\" transform=\"translate(0.878906 0.139648)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gafjd\",\"data-framer-name\":\"Integration Icons - 60px\",layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75758;12843:66941\",style:{boxShadow:\"inset 0px -1.666666865348816px 3.333333730697632px 0px rgba(0, 0, 0, 0.25), inset 0px 1.666666865348816px 3.333333730697632px 0px rgba(101, 101, 101, 0.12)\"},variants:{\"RbaVBba9k-hover\":{boxShadow:\"none\"}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1hi196g\",\"data-framer-name\":\"customer-io-logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:21,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75758;12843:66941;7702:290284\",svg:'<svg width=\"21\" height=\"19\" viewBox=\"0 0 21 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14480_40533)\">\\n<path d=\"M16.029 9.78385C13.7314 9.78385 11.8693 11.7028 11.8693 14.0699C11.8693 16.4373 13.7314 18.3567 16.029 18.3567C18.3262 18.3567 20.1883 16.4373 20.1883 14.0699C20.1883 11.7028 18.3262 9.78385 16.029 9.78385ZM5.22204 9.78404C2.92488 9.78427 1.0625 11.7028 1.0625 14.0702C1.0625 16.4373 2.92488 18.3565 5.22204 18.3565C7.51937 18.3565 9.38177 16.4373 9.38177 14.0702C9.38177 11.7028 7.51959 9.78404 5.22204 9.78404ZM14.785 4.42596C14.785 6.79313 12.9228 8.71267 10.6256 8.71267C8.3281 8.71267 6.46588 6.79313 6.46588 4.42596C6.46588 2.05878 8.3281 0.139648 10.6256 0.139648C12.9228 0.139648 14.785 2.05878 14.785 4.42596Z\" fill=\"url(#paint0_radial_14480_40533)\"/>\\n</g>\\n<defs>\\n<radialGradient id=\"paint0_radial_14480_40533\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(10.628 10.107) scale(12.6804 12.0779)\">\\n<stop stop-color=\"#FFB900\"/>\\n<stop offset=\"0.6\" stop-color=\"#F95D8F\"/>\\n<stop offset=\"0.999\" stop-color=\"#F95353\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_14480_40533\">\\n<rect width=\"19.6429\" height=\"18.4524\" fill=\"white\" transform=\"translate(0.878906 0.139648)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5diz33\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"eq_Zn1dWQ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lyign0\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"Vp4WmRykS\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hopjb5\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"GBzhgkUEb\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-falxzx\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75681\",svg:'<svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14480_39697)\" filter=\"url(#filter0_ii_14480_39697)\">\\n<path d=\"M10.7917 7.03966C7.0655 8.69866 5.42191 12.5527 5.88743 18.4651C5.89684 18.9777 5.50573 19.409 4.99476 19.4497C4.48377 19.4903 4.02938 19.1263 3.95759 18.6187C3.41557 11.7912 5.45031 7.30088 10.0051 5.27296C10.4167 5.0897 11.2033 6.8564 10.7917 7.03966Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M17.4053 21.8916C14.3161 23.3161 10.7607 23.3291 7.66113 21.9274C7.33136 21.7806 7.11042 21.4627 7.08775 21.1024C6.97713 19.3532 6.94948 15.1817 8.8522 14.3221C9.82154 13.8905 10.8893 14.3393 11.7468 14.6943C12.0359 14.8227 12.333 14.9325 12.6361 15.0228C12.9938 13.622 13.1708 12.1813 13.1627 10.7356C13.1966 10.2199 13.629 9.82138 14.1458 9.82953C14.6625 9.83769 15.0821 10.2496 15.0996 10.7662C15.0036 16.1606 13.8883 16.6571 13.5235 16.8195C12.7105 17.1815 11.8432 16.8183 11.0083 16.4719C10.6323 16.3146 9.85015 15.9884 9.64689 16.0789C9.2283 16.359 8.93711 18.3557 8.98942 20.3806C11.4606 21.335 14.2147 21.237 16.6117 20.1092C20.1086 18.5523 22.295 16.4361 22.6851 14.2829C20.3342 10.0405 15.1909 5.08047 10.7924 7.03879C10.3809 7.22203 9.59428 5.45533 10.0058 5.27209C15.9521 2.62464 22.092 8.99555 24.5446 13.6486C24.6386 13.8239 24.6794 14.0227 24.6619 14.2208C24.3361 17.2197 21.7621 19.9518 17.4053 21.8916Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39697\" x=\"0.5\" y=\"-0.431641\" width=\"25\" height=\"27\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39697\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39697\" result=\"effect2_innerShadow_14480_39697\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_39697\">\\n<rect width=\"25\" height=\"25\" fill=\"white\" transform=\"translate(0.5 0.568359)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1qwl69b\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75763\",svg:'<svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14480_40540)\" filter=\"url(#filter0_ii_14480_40540)\">\\n<path d=\"M10.7917 7.03966C7.0655 8.69866 5.42191 12.5527 5.88743 18.4651C5.89684 18.9777 5.50573 19.409 4.99476 19.4497C4.48377 19.4903 4.02938 19.1263 3.95759 18.6187C3.41557 11.7912 5.45031 7.30088 10.0051 5.27296C10.4167 5.0897 11.2033 6.8564 10.7917 7.03966Z\" fill=\"#1D2E38\"/>\\n<path d=\"M17.4053 21.8916C14.3161 23.3161 10.7607 23.3291 7.66113 21.9274C7.33136 21.7806 7.11042 21.4627 7.08775 21.1024C6.97713 19.3532 6.94948 15.1817 8.8522 14.3221C9.82154 13.8905 10.8893 14.3393 11.7468 14.6943C12.0359 14.8227 12.333 14.9325 12.6361 15.0228C12.9938 13.622 13.1708 12.1813 13.1627 10.7356C13.1966 10.2199 13.629 9.82138 14.1458 9.82953C14.6625 9.83769 15.0821 10.2496 15.0996 10.7662C15.0036 16.1606 13.8883 16.6571 13.5235 16.8195C12.7105 17.1815 11.8432 16.8183 11.0083 16.4719C10.6323 16.3146 9.85015 15.9884 9.64689 16.0789C9.2283 16.359 8.93711 18.3557 8.98942 20.3806C11.4606 21.335 14.2147 21.237 16.6117 20.1092C20.1086 18.5523 22.295 16.4361 22.6851 14.2829C20.3342 10.0405 15.1909 5.08047 10.7924 7.03879C10.3809 7.22203 9.59428 5.45533 10.0058 5.27209C15.9521 2.62464 22.092 8.99555 24.5446 13.6486C24.6386 13.8239 24.6794 14.0227 24.6619 14.2208C24.3361 17.2197 21.7621 19.9518 17.4053 21.8916Z\" fill=\"#1D2E38\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40540\" x=\"0.5\" y=\"-0.431641\" width=\"25\" height=\"27\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40540\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40540\" result=\"effect2_innerShadow_14480_40540\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_40540\">\\n<rect width=\"25\" height=\"25\" fill=\"white\" transform=\"translate(0.5 0.568359)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-a71jy8\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"aNuHcxOTy\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1coqyri\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"dP3SMUnOc\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u20sw\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"bjHNWaXgH\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1crxab2\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75663\",svg:'<svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39672)\">\\n<rect x=\"8\" y=\"2.06836\" width=\"17.12\" height=\"17.12\" transform=\"rotate(20 8 2.06836)\" fill=\"#B5B5B5\"/>\\n<g clip-path=\"url(#clip0_14480_39672)\">\\n<path d=\"M14.355 17.7596L9.21946 15.8904C8.83279 15.7496 8.64339 15.2946 8.79612 14.8749L10.9185 9.04379C11.0712 8.62343 11.5086 8.39723 11.8953 8.53797L17.0311 10.4072C17.4181 10.5481 17.6075 11.0027 17.4546 11.4228C17.3018 11.8428 16.8645 12.0693 16.4776 11.9285L12.0422 10.3141L10.4735 14.6241L14.2086 15.9836L14.6699 14.7159L13.2694 14.2062C12.8825 14.0654 12.6927 13.6109 12.8456 13.1906C12.9985 12.7705 13.436 12.5441 13.8228 12.6849L15.9238 13.4496C16.3106 13.5904 16.5 14.045 16.3471 14.465L15.3321 17.2538C15.1793 17.6735 14.7419 17.9004 14.355 17.7596Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39672\" x=\"0.5\" y=\"-0.431641\" width=\"25\" height=\"27\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39672\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39672\" result=\"effect2_innerShadow_14480_39672\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_39672\">\\n<rect width=\"8.08358\" height=\"8.62248\" fill=\"white\" transform=\"translate(10.8984 7.6416) rotate(20)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2xdtrv\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:26,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75745\",svg:'<svg width=\"26\" height=\"26\" viewBox=\"0 0 26 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40515)\">\\n<rect x=\"8\" y=\"2.06836\" width=\"17.12\" height=\"17.12\" transform=\"rotate(20 8 2.06836)\" fill=\"#155C54\"/>\\n<g clip-path=\"url(#clip0_14480_40515)\">\\n<path d=\"M14.355 17.7596L9.21946 15.8904C8.83279 15.7496 8.64339 15.2946 8.79612 14.8749L10.9185 9.04379C11.0712 8.62343 11.5086 8.39723 11.8953 8.53797L17.0311 10.4072C17.4181 10.5481 17.6075 11.0027 17.4546 11.4228C17.3018 11.8428 16.8645 12.0693 16.4776 11.9285L12.0422 10.3141L10.4735 14.6241L14.2086 15.9836L14.6699 14.7159L13.2694 14.2062C12.8825 14.0654 12.6927 13.6109 12.8456 13.1906C12.9985 12.7705 13.436 12.5441 13.8228 12.6849L15.9238 13.4496C16.3106 13.5904 16.5 14.045 16.3471 14.465L15.3321 17.2538C15.1793 17.6735 14.7419 17.9004 14.355 17.7596Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40515\" x=\"0.5\" y=\"-0.431641\" width=\"25\" height=\"27\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40515\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1\"/>\\n<feGaussianBlur stdDeviation=\"1\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40515\" result=\"effect2_innerShadow_14480_40515\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_40515\">\\n<rect width=\"8.08358\" height=\"8.62248\" fill=\"white\" transform=\"translate(10.8984 7.6416) rotate(20)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pp1fgs\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"VwgALUpDb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pek6k3\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"jU9WImaMQ\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oa1ama\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"EugCjJlsC\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-19wln4c\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75672\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39681)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.1503 10.4063C12.584 10.4063 13.4057 9.62624 13.4057 8.26381C13.4057 6.98074 12.5221 6.11997 11.2067 6.11997H7.95606V3.71252C7.95606 1.9762 6.70931 1.06836 5.47736 1.06836C4.24675 1.06702 3 1.9762 3 3.71252L3 20.3172C3 24.3076 4.59105 26.087 8.15645 26.087C10.0891 26.087 11.1946 25.5907 12.015 25.1079C12.6431 24.7582 12.8664 24.0185 12.8664 23.4429C12.8664 22.375 12.1536 21.1847 11.1274 21.1847C10.9113 21.1868 10.6988 21.2404 10.5074 21.3407C10.2384 21.4644 9.86855 21.6339 9.32788 21.6339C8.68904 21.6339 7.95606 21.4079 7.95606 19.6474V10.4077H11.1516L11.1503 10.4063Z\" fill=\"#B5B5B5\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.1632 17.4023C20.0106 17.4038 18.9064 17.8622 18.0914 18.6771C17.2764 19.492 16.8178 20.5967 16.8164 21.7492C16.8178 22.9017 17.2764 24.0064 18.0914 24.8213C18.9064 25.6362 20.0106 26.0946 21.1632 26.0961C22.3158 26.095 23.4213 25.6368 24.2364 24.8219C25.0514 24.0068 25.51 22.9018 25.5114 21.7492C25.51 20.5966 25.0514 19.4916 24.2364 18.6765C23.4213 17.8616 22.3158 17.4034 21.1632 17.4023Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39681\" x=\"0\" y=\"-1.05164\" width=\"28\" height=\"30.24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39681\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39681\" result=\"effect2_innerShadow_14480_39681\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-zwznkp\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75754\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40524)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.1503 10.4063C12.584 10.4063 13.4057 9.62624 13.4057 8.26381C13.4057 6.98074 12.5221 6.11997 11.2067 6.11997H7.95606V3.71252C7.95606 1.9762 6.70931 1.06836 5.47736 1.06836C4.24675 1.06702 3 1.9762 3 3.71252L3 20.3172C3 24.3076 4.59105 26.087 8.15645 26.087C10.0891 26.087 11.1946 25.5907 12.015 25.1079C12.6431 24.7582 12.8664 24.0185 12.8664 23.4429C12.8664 22.375 12.1536 21.1847 11.1274 21.1847C10.9113 21.1868 10.6988 21.2404 10.5074 21.3407C10.2384 21.4644 9.86855 21.6339 9.32788 21.6339C8.68904 21.6339 7.95606 21.4079 7.95606 19.6474V10.4077H11.1516L11.1503 10.4063Z\" fill=\"#272749\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M21.1632 17.4023C20.0106 17.4038 18.9064 17.8622 18.0914 18.6771C17.2764 19.492 16.8178 20.5967 16.8164 21.7492C16.8178 22.9017 17.2764 24.0064 18.0914 24.8213C18.9064 25.6362 20.0106 26.0946 21.1632 26.0961C22.3158 26.095 23.4213 25.6368 24.2364 24.8219C25.0514 24.0068 25.51 22.9018 25.5114 21.7492C25.51 20.5966 25.0514 19.4916 24.2364 18.6765C23.4213 17.8616 22.3158 17.4034 21.1632 17.4023Z\" fill=\"#FB45BD\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40524\" x=\"0\" y=\"-1.05164\" width=\"28\" height=\"30.24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40524\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40524\" result=\"effect2_innerShadow_14480_40524\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e9u6sk\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"FljuzfV3i\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r5qxia\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"jojMTM7uK\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w5az91\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"ivI0tKUDX\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1calcpe\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75735\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39758)\">\\n<path d=\"M9.53934 9.98367C9.53934 9.98367 10.9398 9.36095 11.967 9.91062C13.5796 10.7983 13.2144 14.3608 13.1654 14.8963C17.1756 12.007 21.9863 10.3606 25.6054 9.5008L11.1952 1.18104C10.4064 2.54725 2.51859 16.2093 1.86127 17.3478C1.3542 18.2261 0.848475 18.8016 0.633174 19.0242C1.34009 19.3023 3.99137 20.2691 6.97062 20.8182C12.2635 21.7922 14.9315 21.0773 14.9641 21.096L15.118 21.0548L15.1079 21.2225C15.1079 21.2225 14.9661 22.7453 15.1434 23.7151C15.3483 24.7876 15.636 25.0405 15.85 25.1206C16.1478 25.2058 16.5546 24.8768 16.9952 24.2638C17.4359 23.6508 18.3461 22.2246 19.379 20.4355C21.2383 17.2151 23.6985 12.9539 24.938 10.807C17.6719 13.5513 10.0418 19.5553 10.0418 19.5553C10.0418 19.5553 12.0303 11.3785 9.53934 9.98367Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39758\" x=\"0\" y=\"-1.05164\" width=\"28\" height=\"30.24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39758\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39758\" result=\"effect2_innerShadow_14480_39758\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-t46eq3\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75817\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40601)\">\\n<path d=\"M9.53934 9.98367C9.53934 9.98367 10.9398 9.36095 11.967 9.91062C13.5796 10.7983 13.2144 14.3608 13.1654 14.8963C17.1756 12.007 21.9863 10.3606 25.6054 9.5008L11.1952 1.18104C10.4064 2.54725 2.51859 16.2093 1.86127 17.3478C1.3542 18.2261 0.848475 18.8016 0.633174 19.0242C1.34009 19.3023 3.99137 20.2691 6.97062 20.8182C12.2635 21.7922 14.9315 21.0773 14.9641 21.096L15.118 21.0548L15.1079 21.2225C15.1079 21.2225 14.9661 22.7453 15.1434 23.7151C15.3483 24.7876 15.636 25.0405 15.85 25.1206C16.1478 25.2058 16.5546 24.8768 16.9952 24.2638C17.4359 23.6508 18.3461 22.2246 19.379 20.4355C21.2383 17.2151 23.6985 12.9539 24.938 10.807C17.6719 13.5513 10.0418 19.5553 10.0418 19.5553C10.0418 19.5553 12.0303 11.3785 9.53934 9.98367Z\" fill=\"#0E2947\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40601\" x=\"0\" y=\"-1.05164\" width=\"28\" height=\"30.24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40601\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40601\" result=\"effect2_innerShadow_14480_40601\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8doppa\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"kY5O5oW7Z\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-cmk4xj\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"dncLifovE\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ntmd1r\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"smeUUhPv3\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1v8m2zu\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75714\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39737)\">\\n<path d=\"M3.63936 20.9482C3.11753 20.9474 2.60541 20.8078 2.15611 20.5439C1.70682 20.28 1.33671 19.9015 1.08415 19.4475C0.8316 18.9935 0.705802 18.4806 0.719803 17.962C0.733805 17.4433 0.887097 16.9379 1.16378 16.498L6.42635 8.14265C6.83802 7.48911 7.49396 7.02492 8.24988 6.85219C8.62418 6.76667 9.01175 6.75528 9.39047 6.81867C9.76919 6.88206 10.1316 7.01899 10.4571 7.22164C10.7826 7.42429 11.0648 7.6887 11.2875 7.99976C11.5102 8.31083 11.6691 8.66245 11.7551 9.03457C11.8412 9.40669 11.8526 9.792 11.7889 10.1685C11.7251 10.545 11.5874 10.9054 11.3835 11.229L6.11976 19.5843C5.85672 20.0023 5.49101 20.3468 5.05707 20.5854C4.62313 20.824 4.13525 20.9488 3.63936 20.9482Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M12.7106 20.9491C12.1883 20.9491 11.6756 20.8102 11.2256 20.5466C10.7757 20.2831 10.4048 19.9046 10.1517 19.4504C9.8986 18.9963 9.77238 18.4831 9.78618 17.964C9.79997 17.445 9.95328 16.9391 10.2302 16.4989L15.4964 8.14352C15.6916 7.80287 15.9542 7.50501 16.2682 7.26786C16.5823 7.0307 16.9413 6.85916 17.3238 6.76354C17.7063 6.66793 18.1042 6.65023 18.4938 6.71149C18.8833 6.77276 19.2563 6.91173 19.5904 7.12005C19.9246 7.32836 20.2128 7.60172 20.4379 7.92367C20.663 8.24562 20.8202 8.60951 20.9002 8.99345C20.9801 9.37739 20.9812 9.77344 20.9032 10.1578C20.8252 10.5421 20.6698 10.9068 20.4463 11.2299L15.1898 19.5852C14.9267 20.0032 14.561 20.3476 14.1271 20.5862C13.6931 20.8248 13.2065 20.9497 12.7106 20.9491Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M21.7726 20.9483C23.3902 20.9483 24.7015 19.6773 24.7015 18.1094C24.7015 16.5415 23.3902 15.2705 21.7726 15.2705C20.155 15.2705 18.8437 16.5415 18.8437 18.1094C18.8437 19.6773 20.155 20.9483 21.7726 20.9483Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39737\" x=\"0\" y=\"-1.05164\" width=\"28\" height=\"30.24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39737\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39737\" result=\"effect2_innerShadow_14480_39737\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-zkt360\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75796\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40580)\">\\n<path d=\"M3.63936 20.9482C3.11753 20.9474 2.60541 20.8078 2.15611 20.5439C1.70682 20.28 1.33671 19.9015 1.08415 19.4475C0.8316 18.9935 0.705802 18.4806 0.719803 17.962C0.733805 17.4433 0.887097 16.9379 1.16378 16.498L6.42635 8.14265C6.83802 7.48911 7.49396 7.02492 8.24988 6.85219C8.62418 6.76667 9.01175 6.75528 9.39047 6.81867C9.76919 6.88206 10.1316 7.01899 10.4571 7.22164C10.7826 7.42429 11.0648 7.6887 11.2875 7.99976C11.5102 8.31083 11.6691 8.66245 11.7551 9.03457C11.8412 9.40669 11.8526 9.792 11.7889 10.1685C11.7251 10.545 11.5874 10.9054 11.3835 11.229L6.11976 19.5843C5.85672 20.0023 5.49101 20.3468 5.05707 20.5854C4.62313 20.824 4.13525 20.9488 3.63936 20.9482Z\" fill=\"#F62B54\"/>\\n<path d=\"M12.7106 20.9491C12.1883 20.9491 11.6756 20.8102 11.2256 20.5466C10.7757 20.2831 10.4048 19.9046 10.1517 19.4504C9.8986 18.9963 9.77238 18.4831 9.78618 17.964C9.79997 17.445 9.95328 16.9391 10.2302 16.4989L15.4964 8.14352C15.6916 7.80287 15.9542 7.50501 16.2682 7.26786C16.5823 7.0307 16.9413 6.85916 17.3238 6.76354C17.7063 6.66793 18.1042 6.65023 18.4938 6.71149C18.8833 6.77276 19.2563 6.91173 19.5904 7.12005C19.9246 7.32836 20.2128 7.60172 20.4379 7.92367C20.663 8.24562 20.8202 8.60951 20.9002 8.99345C20.9801 9.37739 20.9812 9.77344 20.9032 10.1578C20.8252 10.5421 20.6698 10.9068 20.4463 11.2299L15.1898 19.5852C14.9267 20.0032 14.561 20.3476 14.1271 20.5862C13.6931 20.8248 13.2065 20.9497 12.7106 20.9491Z\" fill=\"#FFCC00\"/>\\n<path d=\"M21.7726 20.9483C23.3902 20.9483 24.7015 19.6773 24.7015 18.1094C24.7015 16.5415 23.3902 15.2705 21.7726 15.2705C20.155 15.2705 18.8437 16.5415 18.8437 18.1094C18.8437 19.6773 20.155 20.9483 21.7726 20.9483Z\" fill=\"#00CA72\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40580\" x=\"0\" y=\"-1.05164\" width=\"28\" height=\"30.24\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40580\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.12\"/>\\n<feGaussianBlur stdDeviation=\"1.12\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40580\" result=\"effect2_innerShadow_14480_40580\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ji5xnd\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"PwDrZNC4o\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ktc5\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"HChq2VM1R\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j3p4ae\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"p5OWk8WHR\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vql8u8\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75729\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39752)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5237 2.91237L3.25025 8.84375C2.36645 9.35401 2.06321 10.4841 2.57259 11.3692L8.49907 21.6342C8.74344 22.0614 9.14777 22.3737 9.62271 22.5022C10.0976 22.6306 10.6041 22.5646 11.03 22.3187L21.3035 16.3873C21.7287 16.141 22.0384 15.7355 22.1642 15.2603C22.29 14.7851 22.2215 14.2793 21.974 13.8544L16.0475 3.58947C15.5362 2.70664 14.4073 2.40378 13.5237 2.91237ZM13.0633 16.1189C13.1449 16.2616 13.1664 16.4311 13.123 16.5896C13.0795 16.7482 12.9746 16.8829 12.8316 16.964L10.5865 18.2602C10.2922 18.4285 9.91708 18.3271 9.74743 18.0332L5.88749 11.3476C5.71785 11.0538 5.81754 10.6782 6.1105 10.5075L8.35559 9.21127C8.65026 9.04271 9.02581 9.14347 9.19684 9.43697L13.0633 16.1189ZM16.472 10.0581C16.5544 10.2007 16.5763 10.3703 16.5327 10.5291C16.4892 10.6879 16.3839 10.8226 16.2404 10.9032L13.9953 12.1994C13.7006 12.368 13.3251 12.2672 13.1541 11.9737L11.0663 8.35763C10.8977 8.06277 10.9982 7.68715 11.2915 7.51623L13.5366 6.22003C13.8309 6.05168 14.206 6.15314 14.3757 6.44698L16.472 10.0581Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39752\" x=\"0.5\" y=\"-0.351641\" width=\"23\" height=\"24.84\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.92\"/>\\n<feGaussianBlur stdDeviation=\"0.92\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39752\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.92\"/>\\n<feGaussianBlur stdDeviation=\"0.92\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39752\" result=\"effect2_innerShadow_14480_39752\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-10j0dq2\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75811\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40595)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5237 2.91237L3.25025 8.84375C2.36645 9.35401 2.06321 10.4841 2.57259 11.3692L8.49907 21.6342C8.74344 22.0614 9.14777 22.3737 9.62271 22.5022C10.0976 22.6306 10.6041 22.5646 11.03 22.3187L21.3035 16.3873C21.7287 16.141 22.0384 15.7355 22.1642 15.2603C22.29 14.7851 22.2215 14.2793 21.974 13.8544L16.0475 3.58947C15.5362 2.70664 14.4073 2.40378 13.5237 2.91237ZM13.0633 16.1189C13.1449 16.2616 13.1664 16.4311 13.123 16.5896C13.0795 16.7482 12.9746 16.8829 12.8316 16.964L10.5865 18.2602C10.2922 18.4285 9.91708 18.3271 9.74743 18.0332L5.88749 11.3476C5.71785 11.0538 5.81754 10.6782 6.1105 10.5075L8.35559 9.21127C8.65026 9.04271 9.02581 9.14347 9.19684 9.43697L13.0633 16.1189ZM16.472 10.0581C16.5544 10.2007 16.5763 10.3703 16.5327 10.5291C16.4892 10.6879 16.3839 10.8226 16.2404 10.9032L13.9953 12.1994C13.7006 12.368 13.3251 12.2672 13.1541 11.9737L11.0663 8.35763C10.8977 8.06277 10.9982 7.68715 11.2915 7.51623L13.5366 6.22003C13.8309 6.05168 14.206 6.15314 14.3757 6.44698L16.472 10.0581Z\" fill=\"url(#paint0_linear_14480_40595)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40595\" x=\"0.5\" y=\"-0.351641\" width=\"23\" height=\"24.84\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.92\"/>\\n<feGaussianBlur stdDeviation=\"0.92\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40595\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.92\"/>\\n<feGaussianBlur stdDeviation=\"0.92\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40595\" result=\"effect2_innerShadow_14480_40595\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14480_40595\" x1=\"16.1721\" y1=\"19.3499\" x2=\"8.39237\" y2=\"5.87494\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0052CC\"/>\\n<stop offset=\"1\" stop-color=\"#2684FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ps4hl4\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"E2vRwHzAN\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-56qlks\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"jrwhwsyTd\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s62gov\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"c546sHZxL\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16qjk4m\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75723\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14480_39746)\" filter=\"url(#filter0_ii_14480_39746)\">\\n<path d=\"M4.43394 8.51267C4.80823 8.48762 5.18325 8.54934 5.52978 8.69303C5.8763 8.83671 6.18497 9.05847 6.43172 9.34102L9.98875 12.8493L10.1837 13.0442V13.1904C10.1837 13.2879 10.1349 13.2879 9.98875 13.434L7.55243 15.8216L7.35752 15.9678H7.21134C7.16262 15.9678 7.11389 15.9678 7.01644 15.8216L0.048556 8.99994C-0.14635 8.80503 -0.0488969 8.51267 0.292188 8.51267H4.43394ZM14.5203 4.22475C14.1381 4.19193 13.7535 4.24986 13.3978 4.3938C13.0422 4.53775 12.7256 4.76364 12.4738 5.0531L8.91677 8.5614L8.77059 8.75631V8.90249C8.77059 8.95121 8.77059 8.99994 8.91677 9.09739L11.3531 11.5337L11.548 11.6799H11.6942C11.7916 11.6799 11.8404 11.6312 11.9378 11.5337L18.857 4.71201C19.0519 4.51711 19.0031 4.22475 18.6621 4.22475H14.5203Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39746\" x=\"0\" y=\"-0.731641\" width=\"20\" height=\"21.6\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39746\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39746\" result=\"effect2_innerShadow_14480_39746\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_39746\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0 0.0683594)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1jq1pyw\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75805\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14480_40589)\" filter=\"url(#filter0_ii_14480_40589)\">\\n<path d=\"M4.43394 8.51267C4.80823 8.48762 5.18325 8.54934 5.52978 8.69303C5.8763 8.83671 6.18497 9.05847 6.43172 9.34102L9.98875 12.8493L10.1837 13.0442V13.1904C10.1837 13.2879 10.1349 13.2879 9.98875 13.434L7.55243 15.8216L7.35752 15.9678H7.21134C7.16262 15.9678 7.11389 15.9678 7.01644 15.8216L0.048556 8.99994C-0.14635 8.80503 -0.0488969 8.51267 0.292188 8.51267H4.43394ZM14.5203 4.22475C14.1381 4.19193 13.7535 4.24986 13.3978 4.3938C13.0422 4.53775 12.7256 4.76364 12.4738 5.0531L8.91677 8.5614L8.77059 8.75631V8.90249C8.77059 8.95121 8.77059 8.99994 8.91677 9.09739L11.3531 11.5337L11.548 11.6799H11.6942C11.7916 11.6799 11.8404 11.6312 11.9378 11.5337L18.857 4.71201C19.0519 4.51711 19.0031 4.22475 18.6621 4.22475H14.5203Z\" fill=\"#08CF65\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40589\" x=\"0\" y=\"-0.731641\" width=\"20\" height=\"21.6\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40589\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40589\" result=\"effect2_innerShadow_14480_40589\"/>\\n</filter>\\n<clipPath id=\"clip0_14480_40589\">\\n<rect width=\"20\" height=\"20\" fill=\"white\" transform=\"translate(0 0.0683594)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xuf0zw\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"XsQClA5Wm\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-330kvj\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"t2XMxF7g4\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-826bz3\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VJr5TkyZN\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-zeamv0\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75689\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39705)\">\\n<path d=\"M7.76429 17.5097C7.6264 17.5097 7.48852 17.4577 7.38466 17.3521L3.9501 13.9174C3.74059 13.7079 3.74059 13.3676 3.9501 13.1581C4.15961 12.9486 4.49985 12.9486 4.70936 13.1581L8.14391 16.5928C8.35343 16.8023 8.35343 17.1426 8.14391 17.3521C8.04005 17.4577 7.90217 17.5097 7.76429 17.5097Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M7.76877 11.2728C7.63088 11.2728 7.49479 11.2208 7.38914 11.1152L3.951 7.68588C3.74149 7.47636 3.7397 7.13611 3.94921 6.92659C4.15872 6.71707 4.49895 6.71528 4.70847 6.9248L8.1466 10.3541C8.35612 10.5636 8.35791 10.9039 8.14839 11.1134C8.04453 11.2208 7.90665 11.2728 7.76877 11.2728Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M7.76494 14.3941C7.62705 14.3941 7.48917 14.3422 7.38531 14.2365L3.95791 10.809C3.7484 10.5995 3.7484 10.2592 3.95791 10.0497C4.16743 9.8402 4.50766 9.8402 4.71717 10.0497L8.14457 13.4772C8.35408 13.6868 8.35408 14.027 8.14457 14.2365C8.0407 14.3404 7.90282 14.3941 7.76494 14.3941Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M11.7711 13.5071C11.6333 13.5071 11.4954 13.4552 11.3915 13.3496C11.182 13.14 11.182 12.7998 11.3915 12.5903L18.0959 5.88566C18.3054 5.67614 18.6456 5.67614 18.8551 5.88566C19.0646 6.09517 19.0646 6.43542 18.8551 6.64494L12.1508 13.3496C12.0469 13.4552 11.909 13.5071 11.7711 13.5071Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M11.7711 10.3904C11.6333 10.3904 11.4954 10.3385 11.3915 10.2328C11.182 10.0233 11.182 9.68305 11.3915 9.47353L16.1583 4.70652L15.3597 3.90784L12.1526 7.1151C11.943 7.32462 11.6028 7.32462 11.3933 7.1151C11.1838 6.90558 11.1838 6.56533 11.3933 6.35581L14.9801 2.76892C15.0803 2.66863 15.2182 2.61133 15.3597 2.61133C15.5029 2.61133 15.639 2.66863 15.7393 2.76892L17.2972 4.32688C17.5067 4.5364 17.5067 4.87664 17.2972 5.08616L12.1508 10.2328C12.0469 10.3367 11.909 10.3904 11.7711 10.3904Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M7.76723 11.2728C7.62935 11.2728 7.49146 11.2209 7.3876 11.1152C7.17809 10.9057 7.17809 10.5655 7.3876 10.3559L11.388 6.35538C11.5975 6.14586 11.9378 6.14586 12.1473 6.35538C12.3568 6.5649 12.3568 6.90515 12.1473 7.11467L8.14865 11.1152C8.043 11.2209 7.90511 11.2728 7.76723 11.2728Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M7.76723 14.3946C7.62935 14.3946 7.49146 14.3426 7.3876 14.237C7.17809 14.0275 7.17809 13.6872 7.3876 13.4777L11.3916 9.47355C11.6011 9.26403 11.9413 9.26403 12.1509 9.47355C12.3604 9.68307 12.3604 10.0233 12.1509 10.2328L8.14686 14.237C8.043 14.3408 7.90511 14.3946 7.76723 14.3946Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M7.76723 17.5098C7.62935 17.5098 7.49146 17.4579 7.3876 17.3522C7.17809 17.1427 7.17809 16.8024 7.3876 16.5929L11.3916 12.5888C11.6011 12.3793 11.9413 12.3793 12.1509 12.5888C12.3604 12.7983 12.3604 13.1385 12.1509 13.3481L8.14686 17.3522C8.043 17.4579 7.90511 17.5098 7.76723 17.5098Z\" fill=\"#B5B5B5\"/>\\n<path d=\"M4.3288 14.0754C4.19092 14.0754 4.05304 14.0235 3.94918 13.9178L0.833363 10.8019C0.733084 10.7016 0.675781 10.5637 0.675781 10.4222C0.675781 10.2808 0.733084 10.1429 0.833363 10.0426L3.94918 6.92667C4.15869 6.71715 4.49892 6.71715 4.70843 6.92667C4.91794 7.13619 4.91794 7.47643 4.70843 7.68595L1.97225 10.4222L4.70843 13.1585C4.91794 13.368 4.91794 13.7083 4.70843 13.9178C4.60457 14.0235 4.46669 14.0754 4.3288 14.0754Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39705\" x=\"0\" y=\"-0.731641\" width=\"20\" height=\"21.6\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39705\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39705\" result=\"effect2_innerShadow_14480_39705\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-193qvje\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75771\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40548)\">\\n<path d=\"M7.37528 17.5211C7.23734 17.5211 7.09941 17.4692 6.9955 17.3635L3.55954 13.9275C3.34994 13.7179 3.34994 13.3775 3.55954 13.1679C3.76914 12.9583 4.10951 12.9583 4.31911 13.1679L7.75507 16.6039C7.96466 16.8135 7.96466 17.1539 7.75507 17.3635C7.65117 17.4692 7.51322 17.5211 7.37528 17.5211Z\" fill=\"#F7B21B\"/>\\n<path d=\"M7.37977 11.2813C7.24183 11.2813 7.10568 11.2293 6.99998 11.1236L3.56044 7.69305C3.35084 7.48346 3.34905 7.14308 3.55865 6.93349C3.76825 6.72389 4.10862 6.7221 4.31821 6.9317L7.75776 10.3623C7.96736 10.5719 7.96915 10.9123 7.75955 11.1218C7.65565 11.2293 7.51771 11.2813 7.37977 11.2813Z\" fill=\"#F7B21B\"/>\\n<path d=\"M7.37593 14.4036C7.23799 14.4036 7.10005 14.3516 6.99615 14.2459L3.56735 10.8172C3.35776 10.6076 3.35776 10.2672 3.56735 10.0576C3.77695 9.84799 4.11732 9.84799 4.32692 10.0576L7.75571 13.4864C7.96531 13.696 7.96531 14.0364 7.75571 14.2459C7.65181 14.3499 7.51387 14.4036 7.37593 14.4036Z\" fill=\"#F7B21B\"/>\\n<path d=\"M11.3807 13.5159C11.2428 13.5159 11.1049 13.4639 11.0009 13.3582C10.7914 13.1487 10.7914 12.8083 11.0009 12.5987L17.7081 5.89157C17.9177 5.68198 18.258 5.68198 18.4676 5.89157C18.6772 6.10117 18.6772 6.44154 18.4676 6.65114L11.7605 13.3582C11.6566 13.4639 11.5187 13.5159 11.3807 13.5159Z\" fill=\"#236EB4\"/>\\n<path d=\"M11.3807 10.3982C11.2428 10.3982 11.1049 10.3462 11.0009 10.2405C10.7914 10.0309 10.7914 9.69056 11.0009 9.48097L15.7697 4.71218L14.9708 3.91321L11.7623 7.12165C11.5527 7.33125 11.2123 7.33125 11.0027 7.12165C10.7931 6.91206 10.7931 6.57169 11.0027 6.36209L14.591 2.77386C14.6913 2.67354 14.8292 2.61621 14.9708 2.61621C15.1141 2.61621 15.2502 2.67354 15.3505 2.77386L16.9091 4.3324C17.1187 4.542 17.1187 4.88237 16.9091 5.09197L11.7605 10.2405C11.6566 10.3444 11.5187 10.3982 11.3807 10.3982Z\" fill=\"#236EB4\"/>\\n<path d=\"M7.38073 11.2815C7.24279 11.2815 7.10485 11.2296 7.00095 11.1239C6.79135 10.9143 6.79135 10.5739 7.00095 10.3643L11.003 6.36228C11.2126 6.15268 11.553 6.15268 11.7626 6.36228C11.9722 6.57187 11.9722 6.91224 11.7626 7.12184L7.76231 11.1239C7.65661 11.2296 7.51867 11.2815 7.38073 11.2815Z\" fill=\"#049949\"/>\\n<path d=\"M7.37682 14.4043C7.23888 14.4043 7.10094 14.3523 6.99704 14.2466C6.78744 14.037 6.78744 13.6966 6.99704 13.4871L11.0027 9.48142C11.2123 9.27182 11.5526 9.27182 11.7622 9.48142C11.9718 9.69101 11.9718 10.0314 11.7622 10.241L7.75661 14.2466C7.6527 14.3505 7.51476 14.4043 7.37682 14.4043Z\" fill=\"#049949\"/>\\n<path d=\"M7.37682 17.5205C7.23888 17.5205 7.10094 17.4685 6.99704 17.3628C6.78744 17.1532 6.78744 16.8129 6.99704 16.6033L11.0027 12.5976C11.2123 12.388 11.5526 12.388 11.7622 12.5976C11.9718 12.8072 11.9718 13.1476 11.7622 13.3572L7.75661 17.3628C7.6527 17.4685 7.51476 17.5205 7.37682 17.5205Z\" fill=\"#049949\"/>\\n<path d=\"M3.93967 14.0849C3.80173 14.0849 3.66379 14.033 3.55989 13.9273L0.442802 10.8102C0.342482 10.7099 0.285156 10.572 0.285156 10.4304C0.285156 10.2889 0.342482 10.151 0.442802 10.0507L3.55989 6.93357C3.76948 6.72397 4.10986 6.72397 4.31945 6.93357C4.52905 7.14316 4.52905 7.48353 4.31945 7.69313L1.58215 10.4304L4.31945 13.1677C4.52905 13.3773 4.52905 13.7177 4.31945 13.9273C4.21555 14.033 4.07761 14.0849 3.93967 14.0849Z\" fill=\"#E32628\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40548\" x=\"0\" y=\"-0.731641\" width=\"20\" height=\"21.6\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40548\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.8\"/>\\n<feGaussianBlur stdDeviation=\"0.8\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40548\" result=\"effect2_innerShadow_14480_40548\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t0ucgq\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"LCQITMXVi\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xoah8y\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"srXJu9mbr\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-295hoz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"AtSt7RYjt\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-v59kr6\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"bRYBnKdZH\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_dd_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8357 8.34899L27.6866 12.4607C26.9418 13.8856 27.9578 15.6039 29.5452 15.6039H34.3408C34.6865 16.8692 34.8711 18.2011 34.8711 19.576C34.8711 20.3026 34.8195 21.0173 34.7199 21.7163H29.5452C23.4224 21.7163 19.5034 15.0888 22.3762 9.59268L24.6114 5.31641C26.5617 5.96904 28.3339 7.0106 29.8357 8.34899Z\" fill=\"url(#paint0_linear_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter1_dd_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.90645 8.34899L12.0556 12.4607C12.8004 13.8856 11.7844 15.6039 10.197 15.6039H5.40144C5.05568 16.8692 4.87109 18.2011 4.87109 19.576C4.87109 20.3026 4.92264 21.0173 5.02229 21.7163H10.197C16.3198 21.7163 20.2388 15.0888 17.366 9.59268L15.1308 5.31641C13.1804 5.96904 11.4083 7.0106 9.90645 8.34899Z\" fill=\"url(#paint1_linear_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter2_dd_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8074 24.3811C17.1982 20.8651 22.3101 20.8651 24.701 24.3811L29.4323 31.2049C27.8488 32.5042 25.995 33.4862 23.9682 34.0541L19.7543 27.8566L15.5892 33.9819C14.1851 33.562 12.8672 32.9423 11.6684 32.1559L10.8823 31.6037C10.6643 31.4399 10.4508 31.2702 10.2422 31.0951L14.8074 24.3811Z\" fill=\"url(#paint2_linear_14470_50640)\"/>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter3_f_14470_50640)\">\\n<path d=\"M7.69531 20.2383L11.3697 19.4087C13.0704 19.0247 14.5767 18.0427 15.6142 16.6415L17.6828 13.8479\" stroke=\"url(#paint3_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter4_f_14470_50640)\">\\n<path d=\"M32.0352 20.2383L28.3608 19.4087C26.6601 19.0247 25.1538 18.0427 24.1162 16.6415L22.0477 13.8479\" stroke=\"url(#paint4_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter5_f_14470_50640)\">\\n<path d=\"M14.2227 5.86914L15.3414 9.46605C15.8592 11.1309 15.7619 12.9264 15.0672 14.5256L13.6822 17.7137\" stroke=\"url(#paint5_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter6_f_14470_50640)\">\\n<path d=\"M25.5195 5.86914L24.4008 9.46605C23.883 11.1309 23.9803 12.9264 24.675 14.5256L26.06 17.7137\" stroke=\"url(#paint6_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter7_f_14470_50640)\">\\n<path d=\"M18.875 23.7109L20.3366 23.9107C22.3362 24.184 24.1324 25.2757 25.2959 26.9248L27.6715 30.2918\" stroke=\"url(#paint7_linear_14470_50640)\" stroke-opacity=\"0.6\" stroke-width=\"1.05823\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_14470_50640\" x=\"20.242\" y=\"4.67712\" width=\"15.8011\" height=\"18.7444\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_dd_14470_50640\" x=\"3.69907\" y=\"4.67712\" width=\"15.8011\" height=\"18.7444\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_dd_14470_50640\" x=\"9.07017\" y=\"21.1049\" width=\"21.5355\" height=\"14.6536\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_f_14470_50640\" x=\"4.62514\" y=\"10.7765\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter4_f_14470_50640\" x=\"18.9767\" y=\"10.7765\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter5_f_14470_50640\" x=\"10.6095\" y=\"2.798\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter6_f_14470_50640\" x=\"21.0001\" y=\"2.798\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter7_f_14470_50640\" x=\"15.9376\" y=\"20.7716\" width=\"14.6716\" height=\"12.4597\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14470_50640\" x1=\"28.1435\" y1=\"5.31641\" x2=\"28.1435\" y2=\"21.7163\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14470_50640\" x1=\"11.5986\" y1=\"5.31641\" x2=\"11.5986\" y2=\"21.7163\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14470_50640\" x1=\"19.8373\" y1=\"21.7441\" x2=\"19.8373\" y2=\"34.0541\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14470_50640\" x1=\"10.9385\" y1=\"20.0752\" x2=\"16.6292\" y2=\"21.6103\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14470_50640\" x1=\"28.792\" y1=\"20.0752\" x2=\"23.1012\" y2=\"21.6103\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_14470_50640\" x1=\"15.703\" y1=\"8.75934\" x2=\"19.8778\" y2=\"12.9202\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_14470_50640\" x1=\"24.0392\" y1=\"8.75934\" x2=\"19.8644\" y2=\"12.9202\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_14470_50640\" x1=\"21.8744\" y1=\"23.9321\" x2=\"27.7623\" y2=\"23.6603\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-atdx9r\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"QmTzFJDmk\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14470_50640)\">\\n<rect width=\"40\" height=\"40\" rx=\"20\" fill=\"white\"/>\\n<g style=\"mix-blend-mode:luminosity\">\\n<g filter=\"url(#filter0_f_14470_50640)\">\\n<g filter=\"url(#filter1_f_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8357 8.34801L27.6866 12.4597C26.9418 13.8846 27.9578 15.6029 29.5452 15.6029H34.3408C34.6865 16.8683 34.8711 18.2001 34.8711 19.5751C34.8711 20.3016 34.8195 21.0163 34.7199 21.7154H29.5452C23.4224 21.7154 19.5034 15.0878 22.3762 9.5917L24.6114 5.31543C26.5617 5.96806 28.3339 7.00962 29.8357 8.34801Z\" fill=\"url(#paint0_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter2_f_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.90645 8.34801L12.0556 12.4597C12.8004 13.8846 11.7844 15.6029 10.197 15.6029H5.40144C5.05568 16.8683 4.87109 18.2001 4.87109 19.5751C4.87109 20.3016 4.92264 21.0163 5.02229 21.7154H10.197C16.3198 21.7154 20.2388 15.0878 17.366 9.5917L15.1308 5.31543C13.1804 5.96806 11.4083 7.00962 9.90645 8.34801Z\" fill=\"url(#paint1_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter3_f_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8074 24.3792C17.1982 20.8632 22.3101 20.8632 24.701 24.3792L29.4323 31.203C27.8488 32.5022 25.995 33.4842 23.9682 34.0521L19.7543 27.8546L15.5892 33.9799C14.1851 33.56 12.8672 32.9404 11.6684 32.154L10.8823 31.6017C10.6643 31.4379 10.4508 31.2683 10.2422 31.0932L14.8074 24.3792Z\" fill=\"url(#paint2_radial_14470_50640)\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter4_ddii_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8357 8.34801L27.6866 12.4597C26.9418 13.8846 27.9578 15.6029 29.5452 15.6029H34.3408C34.6865 16.8683 34.8711 18.2001 34.8711 19.5751C34.8711 20.3016 34.8195 21.0163 34.7199 21.7154H29.5452C23.4224 21.7154 19.5034 15.0878 22.3762 9.5917L24.6114 5.31543C26.5617 5.96806 28.3339 7.00962 29.8357 8.34801Z\" fill=\"url(#paint3_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter5_ddii_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.90645 8.34801L12.0556 12.4597C12.8004 13.8846 11.7844 15.6029 10.197 15.6029H5.40144C5.05568 16.8683 4.87109 18.2001 4.87109 19.5751C4.87109 20.3016 4.92264 21.0163 5.02229 21.7154H10.197C16.3198 21.7154 20.2388 15.0878 17.366 9.5917L15.1308 5.31543C13.1804 5.96806 11.4083 7.00962 9.90645 8.34801Z\" fill=\"url(#paint4_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter6_ddii_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8074 24.3792C17.1982 20.8632 22.3101 20.8632 24.701 24.3792L29.4323 31.203C27.8488 32.5022 25.995 33.4842 23.9682 34.0521L19.7543 27.8546L15.5892 33.9799C14.1851 33.56 12.8672 32.9404 11.6684 32.154L10.8823 31.6017C10.6643 31.4379 10.4508 31.2683 10.2422 31.0932L14.8074 24.3792Z\" fill=\"url(#paint5_radial_14470_50640)\"/>\\n</g>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter7_f_14470_50640)\">\\n<path d=\"M7.69531 20.2373L11.3697 19.4077C13.0704 19.0237 14.5767 18.0417 15.6142 16.6405L17.6828 13.847\" stroke=\"url(#paint6_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter8_f_14470_50640)\">\\n<path d=\"M32.0352 20.2373L28.3608 19.4077C26.6601 19.0237 25.1538 18.0417 24.1162 16.6405L22.0477 13.847\" stroke=\"url(#paint7_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter9_f_14470_50640)\">\\n<path d=\"M14.2227 5.86816L15.3414 9.46507C15.8592 11.1299 15.7619 12.9254 15.0672 14.5246L13.6822 17.7128\" stroke=\"url(#paint8_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter10_f_14470_50640)\">\\n<path d=\"M25.5195 5.86816L24.4008 9.46507C23.883 11.1299 23.9803 12.9254 24.675 14.5246L26.06 17.7128\" stroke=\"url(#paint9_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter11_f_14470_50640)\">\\n<path d=\"M18.875 23.7109L20.3366 23.9107C22.3362 24.184 24.1324 25.2757 25.2959 26.9248L27.6715 30.2918\" stroke=\"url(#paint10_linear_14470_50640)\" stroke-opacity=\"0.6\" stroke-width=\"1.05823\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_14470_50640\" x=\"-1.52176\" y=\"-1.07742\" width=\"42.7857\" height=\"41.522\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter1_f_14470_50640\" x=\"15.0212\" y=\"-1.07742\" width=\"26.2427\" height=\"29.1861\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter2_f_14470_50640\" x=\"-1.52176\" y=\"-1.07742\" width=\"26.2427\" height=\"29.1861\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter3_f_14470_50640\" x=\"3.84934\" y=\"15.3493\" width=\"31.9771\" height=\"25.0953\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter4_ddii_14470_50640\" x=\"20.242\" y=\"4.3565\" width=\"15.8011\" height=\"19.0641\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.213095\"/>\\n<feGaussianBlur stdDeviation=\"0.372916\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.958928\"/>\\n<feGaussianBlur stdDeviation=\"0.85238\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_14470_50640\" result=\"effect4_innerShadow_14470_50640\"/>\\n</filter>\\n<filter id=\"filter5_ddii_14470_50640\" x=\"3.69907\" y=\"4.3565\" width=\"15.8011\" height=\"19.0641\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.213095\"/>\\n<feGaussianBlur stdDeviation=\"0.372916\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.958928\"/>\\n<feGaussianBlur stdDeviation=\"0.85238\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_14470_50640\" result=\"effect4_innerShadow_14470_50640\"/>\\n</filter>\\n<filter id=\"filter6_ddii_14470_50640\" x=\"9.07017\" y=\"20.7833\" width=\"21.5355\" height=\"14.9733\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.213095\"/>\\n<feGaussianBlur stdDeviation=\"0.372916\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.958928\"/>\\n<feGaussianBlur stdDeviation=\"0.85238\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_14470_50640\" result=\"effect4_innerShadow_14470_50640\"/>\\n</filter>\\n<filter id=\"filter7_f_14470_50640\" x=\"4.62514\" y=\"10.7755\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter8_f_14470_50640\" x=\"18.9767\" y=\"10.7755\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter9_f_14470_50640\" x=\"10.6095\" y=\"2.79702\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter10_f_14470_50640\" x=\"21.0001\" y=\"2.79702\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter11_f_14470_50640\" x=\"15.9376\" y=\"20.7716\" width=\"14.6716\" height=\"12.4597\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<radialGradient id=\"paint0_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(27.5324 21.5488) rotate(-90) scale(12.1909 10.0018)\">\\n<stop offset=\"0.133333\" stop-color=\"#58C3FF\"/>\\n<stop offset=\"1\" stop-color=\"#58C3FF\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(12.2098 21.5488) rotate(-90) scale(12.1909 10.0018)\">\\n<stop offset=\"0.133333\" stop-color=\"#58C3FF\"/>\\n<stop offset=\"1\" stop-color=\"#58C3FF\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint2_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(20.7089 33.9271) rotate(-90) scale(9.15057 14.265)\">\\n<stop offset=\"0.133333\" stop-color=\"#58C3FF\"/>\\n<stop offset=\"1\" stop-color=\"#58C3FF\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint3_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(26.6627 7.84328) rotate(90) scale(24.9173 20.443)\">\\n<stop stop-color=\"#2538E0\"/>\\n<stop offset=\"0.574012\" stop-color=\"#500FDA\"/>\\n<stop offset=\"1\" stop-color=\"#0D0C48\"/>\\n</radialGradient>\\n<radialGradient id=\"paint4_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(13.0795 7.84328) rotate(90) scale(25.9451 21.2863)\">\\n<stop stop-color=\"#2538E0\"/>\\n<stop offset=\"0.574012\" stop-color=\"#500FDA\"/>\\n<stop offset=\"1\" stop-color=\"#0D0C48\"/>\\n</radialGradient>\\n<radialGradient id=\"paint5_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(21.9494 23.6396) rotate(90) scale(10.4125 16.2322)\">\\n<stop stop-color=\"#2538E0\"/>\\n<stop offset=\"0.574012\" stop-color=\"#500FDA\"/>\\n<stop offset=\"1\" stop-color=\"#0D0C48\"/>\\n</radialGradient>\\n<linearGradient id=\"paint6_linear_14470_50640\" x1=\"10.9385\" y1=\"20.0742\" x2=\"16.6292\" y2=\"21.6093\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_14470_50640\" x1=\"28.792\" y1=\"20.0742\" x2=\"23.1012\" y2=\"21.6093\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_14470_50640\" x1=\"15.703\" y1=\"8.75836\" x2=\"19.8778\" y2=\"12.9192\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_14470_50640\" x1=\"24.0392\" y1=\"8.75836\" x2=\"19.8644\" y2=\"12.9192\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_14470_50640\" x1=\"21.8744\" y1=\"23.9321\" x2=\"27.7623\" y2=\"23.6603\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_14470_50640\">\\n<rect width=\"40\" height=\"40\" rx=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12lzhht\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"Vb5l9Rq7w\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-22p6w5\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"Rpn8M8HIk\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pxqmls\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"laUSywjfv\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},transformTemplate:transformTemplate1,children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-6xmeik\",\"data-framer-name\":\"Integration Icons - 60px\",layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75709;13402:89212\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12a9mvt\",\"data-framer-name\":\"Group 427321923\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I13459:127400;13459:75709;13402:89212;7702:290314\",svg:'<svg width=\"22\" height=\"26\" viewBox=\"0 0 22 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_39730)\">\\n<path d=\"M0.285156 19.6488L4.12954 16.6396C6.17203 19.3634 8.34205 20.6189 10.7575 20.6189C13.16 20.6189 15.2687 19.3783 17.2192 16.6759L21.1185 19.6125C18.3042 23.5093 14.807 25.5682 10.7575 25.5682C6.721 25.5682 3.18984 23.5225 0.285156 19.6488Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<g filter=\"url(#filter1_ii_14480_39730)\">\\n<path d=\"M10.4296 7.07755L3.49202 13.0684L0.285156 9.34134L10.4443 0.568359L20.5233 9.3479L17.3017 13.0618L10.4296 7.07755Z\" fill=\"#B5B5B5\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_39730\" x=\"0.285156\" y=\"15.5713\" width=\"20.832\" height=\"10.5313\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.534188\"/>\\n<feGaussianBlur stdDeviation=\"0.534188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39730\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.06838\"/>\\n<feGaussianBlur stdDeviation=\"0.534188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39730\" result=\"effect2_innerShadow_14480_39730\"/>\\n</filter>\\n<filter id=\"filter1_ii_14480_39730\" x=\"0.285156\" y=\"-0.500017\" width=\"20.2383\" height=\"14.1026\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.534188\"/>\\n<feGaussianBlur stdDeviation=\"0.534188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_39730\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.06838\"/>\\n<feGaussianBlur stdDeviation=\"0.534188\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_39730\" result=\"effect2_innerShadow_14480_39730\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmhpjy\",\"data-framer-name\":\"Integration Icons - 60px\",layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75791;12843:66998\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1orkmxn\",\"data-framer-name\":\"Group 427321923\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I13459:127522;13459:75791;12843:66998;7702:290314\",svg:'<svg width=\"22\" height=\"26\" viewBox=\"0 0 22 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14480_40573)\">\\n<path d=\"M0.285156 19.6488L4.12954 16.6396C6.17203 19.3634 8.34205 20.6189 10.7575 20.6189C13.16 20.6189 15.2687 19.3783 17.2192 16.6759L21.1185 19.6125C18.3042 23.5093 14.807 25.5682 10.7575 25.5682C6.721 25.5682 3.18984 23.5225 0.285156 19.6488Z\" fill=\"url(#paint0_linear_14480_40573)\"/>\\n</g>\\n<g filter=\"url(#filter1_ii_14480_40573)\">\\n<path d=\"M10.4296 7.07755L3.49202 13.0684L0.285156 9.34134L10.4443 0.568359L20.5233 9.3479L17.3017 13.0618L10.4296 7.07755Z\" fill=\"url(#paint1_linear_14480_40573)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14480_40573\" x=\"0.285156\" y=\"15.3896\" width=\"20.832\" height=\"11.8487\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.25\"/>\\n<feGaussianBlur stdDeviation=\"1.665\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40573\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.67\"/>\\n<feGaussianBlur stdDeviation=\"1.665\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.396078 0 0 0 0 0.396078 0 0 0 0 0.396078 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40573\" result=\"effect2_innerShadow_14480_40573\"/>\\n</filter>\\n<filter id=\"filter1_ii_14480_40573\" x=\"0.285156\" y=\"-0.681641\" width=\"20.2383\" height=\"15.42\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-1.25\"/>\\n<feGaussianBlur stdDeviation=\"1.665\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14480_40573\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"1.67\"/>\\n<feGaussianBlur stdDeviation=\"1.665\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.396078 0 0 0 0 0.396078 0 0 0 0 0.396078 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14480_40573\" result=\"effect2_innerShadow_14480_40573\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14480_40573\" x1=\"0.285156\" y1=\"22.712\" x2=\"21.1185\" y2=\"22.712\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#8930FD\"/>\\n<stop offset=\"1\" stop-color=\"#49CCF9\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14480_40573\" x1=\"0.285156\" y1=\"9.0696\" x2=\"20.5233\" y2=\"9.0696\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF02F0\"/>\\n<stop offset=\"1\" stop-color=\"#FFC800\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdt6n6\",\"data-framer-name\":\"Mask\",layoutDependency:layoutDependency,layoutId:\"Sbn86LwsG\",style:{background:\"linear-gradient(180deg, rgb(250, 250, 250) 0%, rgba(250, 250, 250, 0) 20.000000298023224%, rgba(250, 250, 250, 0) 80.0000011920929%, rgba(250, 250, 250, 0.6) 100%)\"}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vjQiE.framer-15e5oa2, .framer-vjQiE .framer-15e5oa2 { display: block; }\",\".framer-vjQiE.framer-1j229xn { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 260px; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 368px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-1vu1ok0 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-vjQiE .framer-r8iwjf, .framer-vjQiE .framer-wnyrau { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vjQiE .framer-4o1ek0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 16px; overflow: hidden; padding: 6px; position: absolute; top: 80px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-vjQiE .framer-1xr6xk9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-128g5nt, .framer-vjQiE .framer-3k6znb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 185px; }\",\".framer-vjQiE .framer-13bkwi6, .framer-vjQiE .framer-senbpv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vjQiE .framer-rn3jgk, .framer-vjQiE .framer-881p92, .framer-vjQiE .framer-prsvi9, .framer-vjQiE .framer-ijh8jj, .framer-vjQiE .framer-1bmhaed, .framer-vjQiE .framer-1xmpiy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 158px; word-break: break-word; word-wrap: break-word; }\",\".framer-vjQiE .framer-18055mt, .framer-vjQiE .framer-1oztz1e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: 10px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 10px; }\",\".framer-vjQiE .framer-104vpjc, .framer-vjQiE .framer-1et45l4, .framer-vjQiE .framer-fn8s6y, .framer-vjQiE .framer-18capm5, .framer-vjQiE .framer-mgfdn2, .framer-vjQiE .framer-1d26oh3 { flex: none; height: 2px; overflow: visible; position: relative; width: 2px; }\",\".framer-vjQiE .framer-1ncp6h5, .framer-vjQiE .framer-jlzw3k { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-1y04cj9, .framer-vjQiE .framer-bb6zvp, .framer-vjQiE .framer-uvddbd, .framer-vjQiE .framer-1d8h9dt { 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: visible; padding: 6.722406387329102px; position: relative; width: 185px; }\",\".framer-vjQiE .framer-x0s7z5, .framer-vjQiE .framer-ksqh7r, .framer-vjQiE .framer-pwwyo9, .framer-vjQiE .framer-14tuyn5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vjQiE .framer-abehs8, .framer-vjQiE .framer-17051mt, .framer-vjQiE .framer-o33vbn, .framer-vjQiE .framer-1otptwr { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vjQiE .framer-4kibbm, .framer-vjQiE .framer-we4hmo, .framer-vjQiE .framer-s3df00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 10px; justify-content: flex-start; overflow: visible; padding: 1.1204010248184204px 2.240802049636841px 1.1204010248184204px 2.240802049636841px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-tljqgk, .framer-vjQiE .framer-2g5vln, .framer-vjQiE .framer-18kte54, .framer-vjQiE .framer-1y28qkb, .framer-vjQiE .framer-zwr0b1, .framer-vjQiE .framer-1qej0b2, .framer-vjQiE .framer-rro2hp, .framer-vjQiE .framer-1svezo9, .framer-vjQiE .framer-lq1n1c, .framer-vjQiE .framer-9f0et3, .framer-vjQiE .framer-4q203n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vjQiE .framer-8oveid, .framer-vjQiE .framer-b0q8mc, .framer-vjQiE .framer-4e3wbl, .framer-vjQiE .framer-1wd1ncb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vjQiE .framer-1xwtscv, .framer-vjQiE .framer-17t4lww, .framer-vjQiE .framer-85hamm, .framer-vjQiE .framer-mbalr5 { flex: none; height: 10px; overflow: hidden; position: relative; width: 10px; }\",\".framer-vjQiE .framer-12jl2pd, .framer-vjQiE .framer-1nwdyik, .framer-vjQiE .framer-1v8embp, .framer-vjQiE .framer-1ap4v0u { flex: none; height: 9px; left: 1px; overflow: hidden; position: absolute; top: 1px; width: 9px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-sbubf5, .framer-vjQiE .framer-1rz9i62, .framer-vjQiE .framer-chrc9l, .framer-vjQiE .framer-o8h9cr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1.1204010248184204px 3.361203193664551px 1.1204010248184204px 1.6806015968322754px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-1l13af, .framer-vjQiE .framer-eawrv5 { flex: none; height: 8px; position: relative; width: 8px; }\",\".framer-vjQiE .framer-9q8zqg, .framer-vjQiE .framer-u6mvro, .framer-vjQiE .framer-160qe23, .framer-vjQiE .framer-pep247 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vjQiE .framer-yal7tj, .framer-vjQiE .framer-1utoj11, .framer-vjQiE .framer-1f6f1zo, .framer-vjQiE .framer-18tvsu3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-53q95w, .framer-vjQiE .framer-cgz9nl, .framer-vjQiE .framer-14o5yu3, .framer-vjQiE .framer-1x36zrj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 13px; justify-content: flex-start; overflow: visible; padding: 0px 2.240802049636841px 0px 2.240802049636841px; position: relative; width: 13px; }\",\".framer-vjQiE .framer-k5i66l, .framer-vjQiE .framer-jixaco, .framer-vjQiE .framer-1b2yp2u, .framer-vjQiE .framer-e8hc0p, .framer-vjQiE .framer-16sxz5n, .framer-vjQiE .framer-1u51kba, .framer-vjQiE .framer-3qbdwb, .framer-vjQiE .framer-11prtj4 { flex: none; height: 10px; position: relative; width: 10px; }\",\".framer-vjQiE .framer-lbmwhi, .framer-vjQiE .framer-3zse2n, .framer-vjQiE .framer-aqy80j, .framer-vjQiE .framer-h79vxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 13px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-13x88rz, .framer-vjQiE .framer-1j6psc6, .framer-vjQiE .framer-zfdlfp, .framer-vjQiE .framer-1glx1d6, .framer-vjQiE .framer-1t0m96q, .framer-vjQiE .framer-1nktvxl { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-vjQiE .framer-aoibif, .framer-vjQiE .framer-1so40kz, .framer-vjQiE .framer-clez28, .framer-vjQiE .framer-10tl3bs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-185xprr, .framer-vjQiE .framer-16vw5l0, .framer-vjQiE .framer-j5azuz, .framer-vjQiE .framer-ye9w2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 2.240802049636841px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-196t8q8, .framer-vjQiE .framer-1llfaww, .framer-vjQiE .framer-1byp8nb, .framer-vjQiE .framer-11ad5fc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 2.240802049636841px; position: relative; width: min-content; }\",\".framer-vjQiE .framer-134cngo, .framer-vjQiE .framer-1iyy4px { flex: none; height: 13px; overflow: visible; position: relative; width: 13px; }\",\".framer-vjQiE .framer-ur5fo2, .framer-vjQiE .framer-1ywp0bq, .framer-vjQiE .framer-8wbj8q, .framer-vjQiE .framer-mgi2sy { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-vjQiE .framer-zjo0cz, .framer-vjQiE .framer-1jthugw { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-8wrju1, .framer-vjQiE .framer-9sa54y { flex: none; height: 7px; overflow: visible; position: relative; width: 7px; }\",\".framer-vjQiE .framer-162huc0, .framer-vjQiE .framer-oqqzuz { bottom: 2px; flex: none; left: 2px; position: absolute; right: 2px; top: 2px; }\",\".framer-vjQiE .framer-8t40zn { flex: none; height: 173px; left: calc(50.00000000000002% - 97% / 2); overflow: visible; position: absolute; top: 80px; width: 97%; z-index: 1; }\",\".framer-vjQiE .framer-131eni1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 22%; overflow: visible; padding: 0px; position: absolute; top: 40%; width: 14%; z-index: 1; }\",\".framer-vjQiE .framer-1w3zld2, .framer-vjQiE .framer-1lyign0, .framer-vjQiE .framer-1coqyri, .framer-vjQiE .framer-22p6w5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-ingkj0, .framer-vjQiE .framer-hopjb5, .framer-vjQiE .framer-u20sw, .framer-vjQiE .framer-1pxqmls { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 44px; }\",\".framer-vjQiE .framer-955bk5, .framer-vjQiE .framer-1gafjd { flex: none; height: 25px; left: calc(50.00000000000002% - 25px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 25px; }\",\".framer-vjQiE .framer-131z110, .framer-vjQiE .framer-1hi196g { flex: none; height: 19px; left: 2px; position: absolute; top: 3px; width: 21px; }\",\".framer-vjQiE .framer-5diz33 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 56%; overflow: visible; padding: 0px; position: absolute; top: 58%; width: 14%; z-index: 1; }\",\".framer-vjQiE .framer-falxzx, .framer-vjQiE .framer-1qwl69b, .framer-vjQiE .framer-1crxab2, .framer-vjQiE .framer-2xdtrv { flex: none; height: 26px; left: calc(50.00000000000002% - 26px / 2); position: absolute; top: calc(50.00000000000002% - 26px / 2); width: 26px; }\",\".framer-vjQiE .framer-a71jy8 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 7%; overflow: visible; padding: 0px; position: absolute; top: 60%; width: 14%; z-index: 1; }\",\".framer-vjQiE .framer-1pp1fgs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: center; left: calc(21.00840336134456% - 56px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(83.81502890173412% - 56px / 2); width: 56px; z-index: 1; }\",\".framer-vjQiE .framer-1pek6k3, .framer-vjQiE .framer-1r5qxia, .framer-vjQiE .framer-cmk4xj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 56px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-1oa1ama, .framer-vjQiE .framer-w5az91, .framer-vjQiE .framer-ntmd1r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 50px; }\",\".framer-vjQiE .framer-19wln4c, .framer-vjQiE .framer-zwznkp, .framer-vjQiE .framer-1calcpe, .framer-vjQiE .framer-t46eq3, .framer-vjQiE .framer-1v8m2zu, .framer-vjQiE .framer-zkt360 { flex: none; height: 29px; left: calc(50.00000000000002% - 28px / 2); position: absolute; top: calc(50.00000000000002% - 29px / 2); width: 28px; }\",\".framer-vjQiE .framer-1e9u6sk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: center; left: calc(40.896358543417385% - 56px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(80.92485549132951% - 56px / 2); width: 56px; z-index: 1; }\",\".framer-vjQiE .framer-8doppa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 56px; justify-content: center; left: calc(91.31652661064427% - 56px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(79.19075144508673% - 56px / 2); width: 56px; z-index: 1; }\",\".framer-vjQiE .framer-ji5xnd { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 76%; overflow: visible; padding: 0px; position: absolute; top: 60%; width: 13%; z-index: 1; }\",\".framer-vjQiE .framer-2ktc5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); overflow: hidden; position: relative; width: 46px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-1j3p4ae { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 40px; }\",\".framer-vjQiE .framer-1vql8u8, .framer-vjQiE .framer-10j0dq2 { flex: none; height: 24px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: calc(50.00000000000002% - 24px / 2); width: 24px; }\",\".framer-vjQiE .framer-ps4hl4 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 92%; overflow: visible; padding: 0px; position: absolute; top: 40%; width: 11%; z-index: 1; }\",\".framer-vjQiE .framer-56qlks, .framer-vjQiE .framer-330kvj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 46px); overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-1s62gov, .framer-vjQiE .framer-826bz3 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 50%; overflow: visible; position: absolute; top: 50%; width: 36px; }\",\".framer-vjQiE .framer-16qjk4m, .framer-vjQiE .framer-1jq1pyw, .framer-vjQiE .framer-zeamv0, .framer-vjQiE .framer-193qvje { flex: none; height: 21px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 21px / 2); width: 20px; }\",\".framer-vjQiE .framer-xuf0zw { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 65%; overflow: visible; padding: 0px; position: absolute; top: 88%; width: 11%; z-index: 1; }\",\".framer-vjQiE .framer-1t0ucgq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 80px; justify-content: center; left: calc(43.97759103641459% - 80px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(23.121387283237016% - 80px / 2); width: 80px; z-index: 1; }\",\".framer-vjQiE .framer-xoah8y { flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vjQiE .framer-295hoz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 10px; position: absolute; top: 50%; width: min-content; }\",\".framer-vjQiE .framer-v59kr6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\",\".framer-vjQiE .framer-atdx9r { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-vjQiE .framer-12lzhht { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; left: 68%; overflow: visible; padding: 0px; position: absolute; top: 28%; width: 14%; z-index: 1; }\",\".framer-vjQiE .framer-6xmeik { flex: none; height: 25px; left: calc(52.272727272727295% - 25px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 25px; }\",\".framer-vjQiE .framer-12a9mvt, .framer-vjQiE .framer-1orkmxn { flex: none; height: 26px; left: 1px; position: absolute; top: 0px; width: 22px; }\",\".framer-vjQiE .framer-hmhpjy { flex: none; height: 25px; left: calc(52.272727272727295% - 25px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 25px / 2); width: 25px; }\",\".framer-vjQiE .framer-1wdt6n6 { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vjQiE.framer-1j229xn, .framer-vjQiE .framer-1vu1ok0, .framer-vjQiE .framer-4o1ek0, .framer-vjQiE .framer-1xr6xk9, .framer-vjQiE .framer-128g5nt, .framer-vjQiE .framer-13bkwi6, .framer-vjQiE .framer-18055mt, .framer-vjQiE .framer-1ncp6h5, .framer-vjQiE .framer-1y04cj9, .framer-vjQiE .framer-x0s7z5, .framer-vjQiE .framer-abehs8, .framer-vjQiE .framer-4kibbm, .framer-vjQiE .framer-8oveid, .framer-vjQiE .framer-sbubf5, .framer-vjQiE .framer-yal7tj, .framer-vjQiE .framer-53q95w, .framer-vjQiE .framer-lbmwhi, .framer-vjQiE .framer-aoibif, .framer-vjQiE .framer-185xprr, .framer-vjQiE .framer-196t8q8, .framer-vjQiE .framer-bb6zvp, .framer-vjQiE .framer-ksqh7r, .framer-vjQiE .framer-17051mt, .framer-vjQiE .framer-we4hmo, .framer-vjQiE .framer-b0q8mc, .framer-vjQiE .framer-1rz9i62, .framer-vjQiE .framer-1utoj11, .framer-vjQiE .framer-cgz9nl, .framer-vjQiE .framer-3zse2n, .framer-vjQiE .framer-1so40kz, .framer-vjQiE .framer-16vw5l0, .framer-vjQiE .framer-1llfaww, .framer-vjQiE .framer-3k6znb, .framer-vjQiE .framer-senbpv, .framer-vjQiE .framer-1oztz1e, .framer-vjQiE .framer-jlzw3k, .framer-vjQiE .framer-uvddbd, .framer-vjQiE .framer-pwwyo9, .framer-vjQiE .framer-o33vbn, .framer-vjQiE .framer-s3df00, .framer-vjQiE .framer-4e3wbl, .framer-vjQiE .framer-chrc9l, .framer-vjQiE .framer-1f6f1zo, .framer-vjQiE .framer-14o5yu3, .framer-vjQiE .framer-aqy80j, .framer-vjQiE .framer-clez28, .framer-vjQiE .framer-j5azuz, .framer-vjQiE .framer-1byp8nb, .framer-vjQiE .framer-1d8h9dt, .framer-vjQiE .framer-14tuyn5, .framer-vjQiE .framer-1otptwr, .framer-vjQiE .framer-1wd1ncb, .framer-vjQiE .framer-o8h9cr, .framer-vjQiE .framer-18tvsu3, .framer-vjQiE .framer-1x36zrj, .framer-vjQiE .framer-h79vxo, .framer-vjQiE .framer-10tl3bs, .framer-vjQiE .framer-ye9w2u, .framer-vjQiE .framer-11ad5fc, .framer-vjQiE .framer-131eni1, .framer-vjQiE .framer-5diz33, .framer-vjQiE .framer-a71jy8, .framer-vjQiE .framer-1pp1fgs, .framer-vjQiE .framer-1e9u6sk, .framer-vjQiE .framer-8doppa, .framer-vjQiE .framer-ji5xnd, .framer-vjQiE .framer-ps4hl4, .framer-vjQiE .framer-xuf0zw, .framer-vjQiE .framer-1t0ucgq, .framer-vjQiE .framer-295hoz, .framer-vjQiE .framer-12lzhht { gap: 0px; } .framer-vjQiE.framer-1j229xn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vjQiE.framer-1j229xn > :first-child, .framer-vjQiE .framer-1xr6xk9 > :first-child, .framer-vjQiE .framer-13bkwi6 > :first-child, .framer-vjQiE .framer-18055mt > :first-child, .framer-vjQiE .framer-4kibbm > :first-child, .framer-vjQiE .framer-8oveid > :first-child, .framer-vjQiE .framer-sbubf5 > :first-child, .framer-vjQiE .framer-yal7tj > :first-child, .framer-vjQiE .framer-53q95w > :first-child, .framer-vjQiE .framer-lbmwhi > :first-child, .framer-vjQiE .framer-aoibif > :first-child, .framer-vjQiE .framer-185xprr > :first-child, .framer-vjQiE .framer-196t8q8 > :first-child, .framer-vjQiE .framer-we4hmo > :first-child, .framer-vjQiE .framer-b0q8mc > :first-child, .framer-vjQiE .framer-1rz9i62 > :first-child, .framer-vjQiE .framer-1utoj11 > :first-child, .framer-vjQiE .framer-cgz9nl > :first-child, .framer-vjQiE .framer-3zse2n > :first-child, .framer-vjQiE .framer-1so40kz > :first-child, .framer-vjQiE .framer-16vw5l0 > :first-child, .framer-vjQiE .framer-1llfaww > :first-child, .framer-vjQiE .framer-senbpv > :first-child, .framer-vjQiE .framer-1oztz1e > :first-child, .framer-vjQiE .framer-s3df00 > :first-child, .framer-vjQiE .framer-4e3wbl > :first-child, .framer-vjQiE .framer-chrc9l > :first-child, .framer-vjQiE .framer-1f6f1zo > :first-child, .framer-vjQiE .framer-14o5yu3 > :first-child, .framer-vjQiE .framer-aqy80j > :first-child, .framer-vjQiE .framer-clez28 > :first-child, .framer-vjQiE .framer-j5azuz > :first-child, .framer-vjQiE .framer-1byp8nb > :first-child, .framer-vjQiE .framer-1wd1ncb > :first-child, .framer-vjQiE .framer-o8h9cr > :first-child, .framer-vjQiE .framer-18tvsu3 > :first-child, .framer-vjQiE .framer-1x36zrj > :first-child, .framer-vjQiE .framer-h79vxo > :first-child, .framer-vjQiE .framer-10tl3bs > :first-child, .framer-vjQiE .framer-ye9w2u > :first-child, .framer-vjQiE .framer-11ad5fc > :first-child, .framer-vjQiE .framer-131eni1 > :first-child, .framer-vjQiE .framer-5diz33 > :first-child, .framer-vjQiE .framer-a71jy8 > :first-child, .framer-vjQiE .framer-1pp1fgs > :first-child, .framer-vjQiE .framer-1e9u6sk > :first-child, .framer-vjQiE .framer-8doppa > :first-child, .framer-vjQiE .framer-ji5xnd > :first-child, .framer-vjQiE .framer-ps4hl4 > :first-child, .framer-vjQiE .framer-xuf0zw > :first-child, .framer-vjQiE .framer-1t0ucgq > :first-child, .framer-vjQiE .framer-12lzhht > :first-child { margin-left: 0px; } .framer-vjQiE.framer-1j229xn > :last-child, .framer-vjQiE .framer-1xr6xk9 > :last-child, .framer-vjQiE .framer-13bkwi6 > :last-child, .framer-vjQiE .framer-18055mt > :last-child, .framer-vjQiE .framer-4kibbm > :last-child, .framer-vjQiE .framer-8oveid > :last-child, .framer-vjQiE .framer-sbubf5 > :last-child, .framer-vjQiE .framer-yal7tj > :last-child, .framer-vjQiE .framer-53q95w > :last-child, .framer-vjQiE .framer-lbmwhi > :last-child, .framer-vjQiE .framer-aoibif > :last-child, .framer-vjQiE .framer-185xprr > :last-child, .framer-vjQiE .framer-196t8q8 > :last-child, .framer-vjQiE .framer-we4hmo > :last-child, .framer-vjQiE .framer-b0q8mc > :last-child, .framer-vjQiE .framer-1rz9i62 > :last-child, .framer-vjQiE .framer-1utoj11 > :last-child, .framer-vjQiE .framer-cgz9nl > :last-child, .framer-vjQiE .framer-3zse2n > :last-child, .framer-vjQiE .framer-1so40kz > :last-child, .framer-vjQiE .framer-16vw5l0 > :last-child, .framer-vjQiE .framer-1llfaww > :last-child, .framer-vjQiE .framer-senbpv > :last-child, .framer-vjQiE .framer-1oztz1e > :last-child, .framer-vjQiE .framer-s3df00 > :last-child, .framer-vjQiE .framer-4e3wbl > :last-child, .framer-vjQiE .framer-chrc9l > :last-child, .framer-vjQiE .framer-1f6f1zo > :last-child, .framer-vjQiE .framer-14o5yu3 > :last-child, .framer-vjQiE .framer-aqy80j > :last-child, .framer-vjQiE .framer-clez28 > :last-child, .framer-vjQiE .framer-j5azuz > :last-child, .framer-vjQiE .framer-1byp8nb > :last-child, .framer-vjQiE .framer-1wd1ncb > :last-child, .framer-vjQiE .framer-o8h9cr > :last-child, .framer-vjQiE .framer-18tvsu3 > :last-child, .framer-vjQiE .framer-1x36zrj > :last-child, .framer-vjQiE .framer-h79vxo > :last-child, .framer-vjQiE .framer-10tl3bs > :last-child, .framer-vjQiE .framer-ye9w2u > :last-child, .framer-vjQiE .framer-11ad5fc > :last-child, .framer-vjQiE .framer-131eni1 > :last-child, .framer-vjQiE .framer-5diz33 > :last-child, .framer-vjQiE .framer-a71jy8 > :last-child, .framer-vjQiE .framer-1pp1fgs > :last-child, .framer-vjQiE .framer-1e9u6sk > :last-child, .framer-vjQiE .framer-8doppa > :last-child, .framer-vjQiE .framer-ji5xnd > :last-child, .framer-vjQiE .framer-ps4hl4 > :last-child, .framer-vjQiE .framer-xuf0zw > :last-child, .framer-vjQiE .framer-1t0ucgq > :last-child, .framer-vjQiE .framer-12lzhht > :last-child { margin-right: 0px; } .framer-vjQiE .framer-1vu1ok0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vjQiE .framer-1vu1ok0 > :first-child, .framer-vjQiE .framer-4o1ek0 > :first-child, .framer-vjQiE .framer-128g5nt > :first-child, .framer-vjQiE .framer-1ncp6h5 > :first-child, .framer-vjQiE .framer-1y04cj9 > :first-child, .framer-vjQiE .framer-x0s7z5 > :first-child, .framer-vjQiE .framer-abehs8 > :first-child, .framer-vjQiE .framer-bb6zvp > :first-child, .framer-vjQiE .framer-ksqh7r > :first-child, .framer-vjQiE .framer-17051mt > :first-child, .framer-vjQiE .framer-3k6znb > :first-child, .framer-vjQiE .framer-jlzw3k > :first-child, .framer-vjQiE .framer-uvddbd > :first-child, .framer-vjQiE .framer-pwwyo9 > :first-child, .framer-vjQiE .framer-o33vbn > :first-child, .framer-vjQiE .framer-1d8h9dt > :first-child, .framer-vjQiE .framer-14tuyn5 > :first-child, .framer-vjQiE .framer-1otptwr > :first-child, .framer-vjQiE .framer-295hoz > :first-child { margin-top: 0px; } .framer-vjQiE .framer-1vu1ok0 > :last-child, .framer-vjQiE .framer-4o1ek0 > :last-child, .framer-vjQiE .framer-128g5nt > :last-child, .framer-vjQiE .framer-1ncp6h5 > :last-child, .framer-vjQiE .framer-1y04cj9 > :last-child, .framer-vjQiE .framer-x0s7z5 > :last-child, .framer-vjQiE .framer-abehs8 > :last-child, .framer-vjQiE .framer-bb6zvp > :last-child, .framer-vjQiE .framer-ksqh7r > :last-child, .framer-vjQiE .framer-17051mt > :last-child, .framer-vjQiE .framer-3k6znb > :last-child, .framer-vjQiE .framer-jlzw3k > :last-child, .framer-vjQiE .framer-uvddbd > :last-child, .framer-vjQiE .framer-pwwyo9 > :last-child, .framer-vjQiE .framer-o33vbn > :last-child, .framer-vjQiE .framer-1d8h9dt > :last-child, .framer-vjQiE .framer-14tuyn5 > :last-child, .framer-vjQiE .framer-1otptwr > :last-child, .framer-vjQiE .framer-295hoz > :last-child { margin-bottom: 0px; } .framer-vjQiE .framer-4o1ek0 > *, .framer-vjQiE .framer-295hoz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-vjQiE .framer-1xr6xk9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-vjQiE .framer-128g5nt > *, .framer-vjQiE .framer-3k6znb > * { margin: 0px; margin-bottom: calc(8.963208198547363px / 2); margin-top: calc(8.963208198547363px / 2); } .framer-vjQiE .framer-13bkwi6 > *, .framer-vjQiE .framer-senbpv > * { margin: 0px; margin-left: calc(16.806015014648438px / 2); margin-right: calc(16.806015014648438px / 2); } .framer-vjQiE .framer-18055mt > *, .framer-vjQiE .framer-1oztz1e > * { margin: 0px; margin-left: calc(1.2px / 2); margin-right: calc(1.2px / 2); } .framer-vjQiE .framer-1ncp6h5 > *, .framer-vjQiE .framer-jlzw3k > * { margin: 0px; margin-bottom: calc(5.6020050048828125px / 2); margin-top: calc(5.6020050048828125px / 2); } .framer-vjQiE .framer-1y04cj9 > *, .framer-vjQiE .framer-abehs8 > *, .framer-vjQiE .framer-bb6zvp > *, .framer-vjQiE .framer-17051mt > *, .framer-vjQiE .framer-uvddbd > *, .framer-vjQiE .framer-o33vbn > *, .framer-vjQiE .framer-1d8h9dt > *, .framer-vjQiE .framer-1otptwr > * { margin: 0px; margin-bottom: calc(4.481604099273682px / 2); margin-top: calc(4.481604099273682px / 2); } .framer-vjQiE .framer-x0s7z5 > *, .framer-vjQiE .framer-ksqh7r > *, .framer-vjQiE .framer-pwwyo9 > *, .framer-vjQiE .framer-14tuyn5 > * { margin: 0px; margin-bottom: calc(3.361203193664551px / 2); margin-top: calc(3.361203193664551px / 2); } .framer-vjQiE .framer-4kibbm > *, .framer-vjQiE .framer-53q95w > *, .framer-vjQiE .framer-196t8q8 > *, .framer-vjQiE .framer-we4hmo > *, .framer-vjQiE .framer-cgz9nl > *, .framer-vjQiE .framer-1llfaww > *, .framer-vjQiE .framer-s3df00 > *, .framer-vjQiE .framer-14o5yu3 > *, .framer-vjQiE .framer-1byp8nb > *, .framer-vjQiE .framer-1x36zrj > *, .framer-vjQiE .framer-11ad5fc > * { margin: 0px; margin-left: calc(5.6020050048828125px / 2); margin-right: calc(5.6020050048828125px / 2); } .framer-vjQiE .framer-8oveid > *, .framer-vjQiE .framer-yal7tj > *, .framer-vjQiE .framer-aoibif > *, .framer-vjQiE .framer-b0q8mc > *, .framer-vjQiE .framer-1utoj11 > *, .framer-vjQiE .framer-1so40kz > *, .framer-vjQiE .framer-4e3wbl > *, .framer-vjQiE .framer-1f6f1zo > *, .framer-vjQiE .framer-clez28 > *, .framer-vjQiE .framer-1wd1ncb > *, .framer-vjQiE .framer-18tvsu3 > *, .framer-vjQiE .framer-10tl3bs > * { margin: 0px; margin-left: calc(3.361203193664551px / 2); margin-right: calc(3.361203193664551px / 2); } .framer-vjQiE .framer-sbubf5 > *, .framer-vjQiE .framer-1rz9i62 > *, .framer-vjQiE .framer-chrc9l > *, .framer-vjQiE .framer-o8h9cr > * { margin: 0px; margin-left: calc(1.6806015968322754px / 2); margin-right: calc(1.6806015968322754px / 2); } .framer-vjQiE .framer-lbmwhi > *, .framer-vjQiE .framer-3zse2n > *, .framer-vjQiE .framer-aqy80j > *, .framer-vjQiE .framer-h79vxo > * { margin: 0px; margin-left: calc(-3.361203193664551px / 2); margin-right: calc(-3.361203193664551px / 2); } .framer-vjQiE .framer-185xprr > *, .framer-vjQiE .framer-16vw5l0 > *, .framer-vjQiE .framer-j5azuz > *, .framer-vjQiE .framer-ye9w2u > * { margin: 0px; margin-left: calc(2.240802049636841px / 2); margin-right: calc(2.240802049636841px / 2); } .framer-vjQiE .framer-131eni1 > *, .framer-vjQiE .framer-5diz33 > *, .framer-vjQiE .framer-a71jy8 > *, .framer-vjQiE .framer-1pp1fgs > *, .framer-vjQiE .framer-1e9u6sk > *, .framer-vjQiE .framer-8doppa > *, .framer-vjQiE .framer-ji5xnd > *, .framer-vjQiE .framer-ps4hl4 > *, .framer-vjQiE .framer-xuf0zw > *, .framer-vjQiE .framer-1t0ucgq > *, .framer-vjQiE .framer-12lzhht > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",\".framer-vjQiE.framer-v-1m0d4w7 .framer-131eni1, .framer-vjQiE.framer-v-1m0d4w7 .framer-1w3zld2, .framer-vjQiE.framer-v-1m0d4w7 .framer-5diz33, .framer-vjQiE.framer-v-1m0d4w7 .framer-1lyign0, .framer-vjQiE.framer-v-1m0d4w7 .framer-a71jy8, .framer-vjQiE.framer-v-1m0d4w7 .framer-1coqyri, .framer-vjQiE.framer-v-1m0d4w7 .framer-1oa1ama, .framer-vjQiE.framer-v-1m0d4w7 .framer-w5az91, .framer-vjQiE.framer-v-1m0d4w7 .framer-ntmd1r, .framer-vjQiE.framer-v-1m0d4w7 .framer-12lzhht, .framer-vjQiE.framer-v-1m0d4w7 .framer-22p6w5 { height: var(--framer-aspect-ratio-supported, 50px); }\",\".framer-vjQiE.framer-v-1m0d4w7 .framer-ingkj0, .framer-vjQiE.framer-v-1m0d4w7 .framer-hopjb5, .framer-vjQiE.framer-v-1m0d4w7 .framer-u20sw, .framer-vjQiE.framer-v-1m0d4w7 .framer-1pxqmls { height: var(--framer-aspect-ratio-supported, 44px); }\",\".framer-vjQiE.framer-v-1m0d4w7 .framer-1pek6k3, .framer-vjQiE.framer-v-1m0d4w7 .framer-1r5qxia, .framer-vjQiE.framer-v-1m0d4w7 .framer-cmk4xj { height: var(--framer-aspect-ratio-supported, 56px); }\",\".framer-vjQiE.framer-v-1m0d4w7 .framer-ji5xnd, .framer-vjQiE.framer-v-1m0d4w7 .framer-2ktc5 { height: var(--framer-aspect-ratio-supported, 46px); }\",\".framer-vjQiE.framer-v-1m0d4w7 .framer-1j3p4ae, .framer-vjQiE.framer-v-1m0d4w7 .framer-ps4hl4, .framer-vjQiE.framer-v-1m0d4w7 .framer-56qlks, .framer-vjQiE.framer-v-1m0d4w7 .framer-xuf0zw, .framer-vjQiE.framer-v-1m0d4w7 .framer-330kvj { height: var(--framer-aspect-ratio-supported, 40px); }\",\".framer-vjQiE.framer-v-1m0d4w7 .framer-1s62gov, .framer-vjQiE.framer-v-1m0d4w7 .framer-826bz3 { height: var(--framer-aspect-ratio-supported, 36px); }\",\".framer-vjQiE.framer-v-1m0d4w7.hover .framer-atdx9r { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 52px); width: 52px; }\",\".framer-vjQiE.framer-v-1m0d4w7.hover .framer-hmhpjy { overflow: visible; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-vjQiE[data-border=\"true\"]::after, .framer-vjQiE [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 260\n * @framerIntrinsicWidth 368\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"RbaVBba9k\":{\"layout\":[\"fixed\",\"fixed\"]},\"xYWB2xSdY\":{\"layout\":[\"fixed\",\"fixed\"]},\"mKm7nQBYi\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"QSLzwUiJo\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercMeq1uN3e=withCSS(Component,css,\"framer-vjQiE\");export default FramercMeq1uN3e;FramercMeq1uN3e.displayName=\"Services Tab\";FramercMeq1uN3e.defaultProps={height:260,width:368};addPropertyControls(FramercMeq1uN3e,{variant:{options:[\"Oi64HzUWa\",\"RbaVBba9k\"],optionTitles:[\"Tab1\",\"Tab2\"],title:\"Variant\",type:ControlType.Enum},QSLzwUiJo:{title:\"Link\",type:ControlType.Link}});addFonts(FramercMeq1uN3e,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercMeq1uN3e\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RbaVBba9k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xYWB2xSdY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mKm7nQBYi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"260\",\"framerVariables\":\"{\\\"QSLzwUiJo\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"368\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cMeq1uN3e.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/XKrCcKyK2PDBeaXUsMjH/TqreinkLve4XhvVNJjmY/UIDGim5Fo.js\";const enabledGestures={FF7QRtoUG:{hover:true},X3NAoRTPu:{hover:true}};const cycleOrder=[\"X3NAoRTPu\",\"FF7QRtoUG\"];const serializationHash=\"framer-bXj2E\";const variantClassNames={FF7QRtoUG:\"framer-v-1fqme26\",X3NAoRTPu:\"framer-v-f034s9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Changelog:\"FF7QRtoUG\",Report:\"X3NAoRTPu\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"X3NAoRTPu\"};};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:\"X3NAoRTPu\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hoTtT4EtH\"},motionChild:true,nodeId:\"X3NAoRTPu\",openInNewTab:false,scopeId:\"cvAhiMGn5\",...addPropertyOverrides({FF7QRtoUG:{href:{webPageId:\"XGb4z0qjE\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,as:\"a\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:125,pixelWidth:388,src:\"https://framerusercontent.com/images/XBfLTOARXWA9aSNIFPk7e2IKo.svg\"},className:`${cx(scopingClassNames,\"framer-f034s9\",className,classNames)} framer-84auqj`,\"data-border\":true,\"data-framer-name\":\"Report\",layoutDependency:layoutDependency,layoutId:\"X3NAoRTPu\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",...style},variants:{\"FF7QRtoUG-hover\":{boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"},\"X3NAoRTPu-hover\":{boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"}},...addPropertyOverrides({\"FF7QRtoUG-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:124,pixelWidth:388,src:\"https://framerusercontent.com/images/uz0P49sh5FOqMaZMkB7RRl7ljw.svg\"}},\"X3NAoRTPu-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:125,pixelWidth:388,src:\"https://framerusercontent.com/images/S34lN9zsOR1R32n1p1BkAyPNk.svg\"}},FF7QRtoUG:{\"data-framer-name\":\"Changelog\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:125,pixelWidth:388,src:\"https://framerusercontent.com/images/flFsi8AVuWAsWLvPwCKQqF9BQmg.svg\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dl4alk\",\"data-framer-name\":\"Mask\",layoutDependency:layoutDependency,layoutId:\"V2DyuXOJ_\",style:{background:\"linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.6) 31.88520551801802%, rgba(250, 250, 250, 0) 97.2972972972973%)\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k76k0n\",\"data-framer-name\":\"Contnet\",layoutDependency:layoutDependency,layoutId:\"EAzT1Ikb5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ozndab\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"q1OWcLUG2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Reports\"})}),className:\"framer-ar2qx0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EyeTiJaUE\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FF7QRtoUG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product Update\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Informative Report Articles\"})}),className:\"framer-8gv5cd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N3ND53Mnp\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FF7QRtoUG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Custom interfaces with React primitives\"})})}},baseVariant,gestureVariant)})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bXj2E.framer-84auqj, .framer-bXj2E .framer-84auqj { display: block; }\",\".framer-bXj2E.framer-f034s9 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 124px; justify-content: flex-start; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 364px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bXj2E .framer-dl4alk { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-bXj2E .framer-1k76k0n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-bXj2E .framer-ozndab { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-bXj2E .framer-ar2qx0, .framer-bXj2E .framer-8gv5cd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-bXj2E.framer-f034s9, .framer-bXj2E .framer-1k76k0n, .framer-bXj2E .framer-ozndab { gap: 0px; } .framer-bXj2E.framer-f034s9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-bXj2E.framer-f034s9 > :first-child, .framer-bXj2E .framer-1k76k0n > :first-child { margin-left: 0px; } .framer-bXj2E.framer-f034s9 > :last-child, .framer-bXj2E .framer-1k76k0n > :last-child { margin-right: 0px; } .framer-bXj2E .framer-1k76k0n > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-bXj2E .framer-ozndab > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bXj2E .framer-ozndab > :first-child { margin-top: 0px; } .framer-bXj2E .framer-ozndab > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-bXj2E[data-border=\"true\"]::after, .framer-bXj2E [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 124\n * @framerIntrinsicWidth 364\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FF7QRtoUG\":{\"layout\":[\"fixed\",\"fixed\"]},\"uV5MN5mqj\":{\"layout\":[\"fixed\",\"fixed\"]},\"qHjtuca1V\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercvAhiMGn5=withCSS(Component,css,\"framer-bXj2E\");export default FramercvAhiMGn5;FramercvAhiMGn5.displayName=\"Product Tab2\";FramercvAhiMGn5.defaultProps={height:124,width:364};addPropertyControls(FramercvAhiMGn5,{variant:{options:[\"X3NAoRTPu\",\"FF7QRtoUG\"],optionTitles:[\"Report\",\"Changelog\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercvAhiMGn5,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercvAhiMGn5\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"124\",\"framerIntrinsicWidth\":\"364\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FF7QRtoUG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uV5MN5mqj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qHjtuca1V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cvAhiMGn5.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"qjF6bpPqr\",\"fruflzyCA\",\"BSws5LT2W\",\"Kq8wxQo6M\",\"kvfYD9GjX\",\"EKrBNaMyB\",\"Gix9dCZ4X\",\"gNwPKfPrn\",\"SDB9o0fXd\",\"yt3LPAPhD\",\"TfVCxL9qz\",\"OSPsA6zJJ\",\"oSlNghQwJ\",\"ePXDI3azn\",\"dFfSVTfnd\",\"NAsNWWwVV\",\"EAW2vxSRX\",\"tzKGCXRsG\",\"oXZULtr14\",\"i1i58YnrM\",\"SM143sF0X\",\"Rd569CKHL\",\"MH6q7OA20\",\"EBckmBvik\",\"b2zOISsFJ\",\"Y73b8W2JM\",\"MUJhO5hK4\",\"uZcayXtyp\",\"zuhYOstb1\",\"IPY7D7HDd\",\"DFuOcTv5P\",\"YYjyfZOge\",\"u5vzp95W4\",\"XycUOIYgt\",\"Y4FgbA1pp\",\"N_sqHPFJd\",\"rYw0s7qn7\",\"atyD1JpQS\"];const serializationHash=\"framer-WXpjY\";const variantClassNames={atyD1JpQS:\"framer-v-l715m9\",b2zOISsFJ:\"framer-v-1t516mm\",BSws5LT2W:\"framer-v-5zj3y6\",dFfSVTfnd:\"framer-v-b684ad\",DFuOcTv5P:\"framer-v-w7v468\",EAW2vxSRX:\"framer-v-7u8jup\",EBckmBvik:\"framer-v-krhh3t\",EKrBNaMyB:\"framer-v-s9o6cc\",ePXDI3azn:\"framer-v-1caskry\",fruflzyCA:\"framer-v-1bi3xup\",Gix9dCZ4X:\"framer-v-1rvwwe\",gNwPKfPrn:\"framer-v-7p3n0d\",i1i58YnrM:\"framer-v-wp1qrg\",IPY7D7HDd:\"framer-v-l9ov7c\",Kq8wxQo6M:\"framer-v-dtgk15\",kvfYD9GjX:\"framer-v-1cpjtic\",MH6q7OA20:\"framer-v-1hy4xah\",MUJhO5hK4:\"framer-v-gah926\",N_sqHPFJd:\"framer-v-1lnjr0p\",NAsNWWwVV:\"framer-v-wwezkz\",oSlNghQwJ:\"framer-v-1tugrzp\",OSPsA6zJJ:\"framer-v-1ccro13\",oXZULtr14:\"framer-v-sczeux\",qjF6bpPqr:\"framer-v-1kuz3ro\",Rd569CKHL:\"framer-v-1fqre0r\",rYw0s7qn7:\"framer-v-3jxl4g\",SDB9o0fXd:\"framer-v-uqywve\",SM143sF0X:\"framer-v-wijt46\",TfVCxL9qz:\"framer-v-1hbtfe\",tzKGCXRsG:\"framer-v-ie971k\",u5vzp95W4:\"framer-v-126xg91\",uZcayXtyp:\"framer-v-1703gd6\",XycUOIYgt:\"framer-v-13i4yqa\",Y4FgbA1pp:\"framer-v-1ex474p\",Y73b8W2JM:\"framer-v-1xdreb6\",yt3LPAPhD:\"framer-v-1ihagu5\",YYjyfZOge:\"framer-v-wdjh8l\",zuhYOstb1:\"framer-v-197ium8\"};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 humanReadableVariantMap={\"Agency-Active\":\"IPY7D7HDd\",\"Agency-Ideal\":\"zuhYOstb1\",\"API-Active\":\"Rd569CKHL\",\"API-Ideal\":\"SM143sF0X\",\"Blog-Active\":\"i1i58YnrM\",\"Blog-Ideal\":\"oXZULtr14\",\"Client-Active\":\"ePXDI3azn\",\"Client-Ideal\":\"oSlNghQwJ\",\"Documents-Active\":\"yt3LPAPhD\",\"Documents-Ideal\":\"SDB9o0fXd\",\"Feature-Active\":\"gNwPKfPrn\",\"Feature-Ideal\":\"Gix9dCZ4X\",\"Help-Center-Active\":\"EBckmBvik\",\"Help-Center-Ideal\":\"MH6q7OA20\",\"Integration-Active\":\"tzKGCXRsG\",\"Integration-Ideal\":\"EAW2vxSRX\",\"Invoice-Active\":\"Kq8wxQo6M\",\"Invoice-Ideal\":\"BSws5LT2W\",\"IT-Active\":\"YYjyfZOge\",\"IT-Ideal\":\"DFuOcTv5P\",\"Marketing-Active\":\"uZcayXtyp\",\"Marketing-Ideal\":\"MUJhO5hK4\",\"Massage-Active\":\"N_sqHPFJd\",\"Massage-Ideal\":\"Y4FgbA1pp\",\"Remote-Active\":\"Y73b8W2JM\",\"Remote-Ideal\":\"b2zOISsFJ\",\"Report-Active\":\"NAsNWWwVV\",\"Report-Ideal\":\"dFfSVTfnd\",\"Roadmap-Active\":\"atyD1JpQS\",\"Roadmap-Ideal\":\"rYw0s7qn7\",\"Task-Active\":\"fruflzyCA\",\"Task-Ideal\":\"qjF6bpPqr\",\"Team-Active\":\"OSPsA6zJJ\",\"Team-Ideal\":\"TfVCxL9qz\",\"Time- Ideal\":\"kvfYD9GjX\",\"Time-Active\":\"EKrBNaMyB\",\"Update-Active\":\"XycUOIYgt\",\"Update-Ideal\":\"u5vzp95W4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qjF6bpPqr\"};};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:\"qjF6bpPqr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"fruflzyCA\",\"BSws5LT2W\",\"Kq8wxQo6M\",\"kvfYD9GjX\",\"EKrBNaMyB\",\"Gix9dCZ4X\",\"gNwPKfPrn\",\"SDB9o0fXd\",\"yt3LPAPhD\",\"TfVCxL9qz\",\"OSPsA6zJJ\",\"oSlNghQwJ\",\"ePXDI3azn\",\"dFfSVTfnd\",\"NAsNWWwVV\",\"EAW2vxSRX\",\"tzKGCXRsG\",\"oXZULtr14\",\"i1i58YnrM\",\"SM143sF0X\",\"Rd569CKHL\",\"MH6q7OA20\",\"EBckmBvik\",\"b2zOISsFJ\",\"Y73b8W2JM\",\"MUJhO5hK4\",\"uZcayXtyp\",\"zuhYOstb1\",\"IPY7D7HDd\",\"DFuOcTv5P\",\"YYjyfZOge\",\"u5vzp95W4\",\"XycUOIYgt\",\"Y4FgbA1pp\",\"N_sqHPFJd\",\"rYw0s7qn7\",\"atyD1JpQS\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"BSws5LT2W\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"kvfYD9GjX\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Gix9dCZ4X\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"SDB9o0fXd\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"TfVCxL9qz\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"oSlNghQwJ\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"dFfSVTfnd\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"EAW2vxSRX\")return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"oXZULtr14\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"SM143sF0X\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"MH6q7OA20\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"b2zOISsFJ\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"MUJhO5hK4\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"zuhYOstb1\")return true;return false;};const isDisplayed15=()=>{if(baseVariant===\"DFuOcTv5P\")return true;return false;};const isDisplayed16=()=>{if(baseVariant===\"u5vzp95W4\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"Y4FgbA1pp\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"rYw0s7qn7\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"fruflzyCA\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"Kq8wxQo6M\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"EKrBNaMyB\")return true;return false;};const isDisplayed22=()=>{if(baseVariant===\"gNwPKfPrn\")return true;return false;};const isDisplayed23=()=>{if(baseVariant===\"yt3LPAPhD\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"OSPsA6zJJ\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"ePXDI3azn\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"NAsNWWwVV\")return true;return false;};const isDisplayed27=()=>{if(baseVariant===\"tzKGCXRsG\")return true;return false;};const isDisplayed28=()=>{if(baseVariant===\"i1i58YnrM\")return true;return false;};const isDisplayed29=()=>{if(baseVariant===\"Rd569CKHL\")return true;return false;};const isDisplayed30=()=>{if(baseVariant===\"EBckmBvik\")return true;return false;};const isDisplayed31=()=>{if(baseVariant===\"Y73b8W2JM\")return true;return false;};const isDisplayed32=()=>{if(baseVariant===\"uZcayXtyp\")return true;return false;};const isDisplayed33=()=>{if(baseVariant===\"IPY7D7HDd\")return true;return false;};const isDisplayed34=()=>{if(baseVariant===\"YYjyfZOge\")return true;return false;};const isDisplayed35=()=>{if(baseVariant===\"XycUOIYgt\")return true;return false;};const isDisplayed36=()=>{if(baseVariant===\"N_sqHPFJd\")return true;return false;};const isDisplayed37=()=>{if(baseVariant===\"atyD1JpQS\")return true;return false;};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-1kuz3ro\",className,classNames),\"data-framer-name\":\"Task-Ideal\",layoutDependency:layoutDependency,layoutId:\"qjF6bpPqr\",ref:refBinding,style:{...style},...addPropertyOverrides({atyD1JpQS:{\"data-framer-name\":\"Roadmap-Active\"},b2zOISsFJ:{\"data-framer-name\":\"Remote-Ideal\"},BSws5LT2W:{\"data-framer-name\":\"Invoice-Ideal\"},dFfSVTfnd:{\"data-framer-name\":\"Report-Ideal\"},DFuOcTv5P:{\"data-framer-name\":\"IT-Ideal\"},EAW2vxSRX:{\"data-framer-name\":\"Integration-Ideal\"},EBckmBvik:{\"data-framer-name\":\"Help-Center-Active\"},EKrBNaMyB:{\"data-framer-name\":\"Time-Active\"},ePXDI3azn:{\"data-framer-name\":\"Client-Active\"},fruflzyCA:{\"data-framer-name\":\"Task-Active\"},Gix9dCZ4X:{\"data-framer-name\":\"Feature-Ideal\"},gNwPKfPrn:{\"data-framer-name\":\"Feature-Active\"},i1i58YnrM:{\"data-framer-name\":\"Blog-Active\"},IPY7D7HDd:{\"data-framer-name\":\"Agency-Active\"},Kq8wxQo6M:{\"data-framer-name\":\"Invoice-Active\"},kvfYD9GjX:{\"data-framer-name\":\"Time- Ideal\"},MH6q7OA20:{\"data-framer-name\":\"Help-Center-Ideal\"},MUJhO5hK4:{\"data-framer-name\":\"Marketing-Ideal\"},N_sqHPFJd:{\"data-framer-name\":\"Massage-Active\"},NAsNWWwVV:{\"data-framer-name\":\"Report-Active\"},oSlNghQwJ:{\"data-framer-name\":\"Client-Ideal\"},OSPsA6zJJ:{\"data-framer-name\":\"Team-Active\"},oXZULtr14:{\"data-framer-name\":\"Blog-Ideal\"},Rd569CKHL:{\"data-framer-name\":\"API-Active\"},rYw0s7qn7:{\"data-framer-name\":\"Roadmap-Ideal\"},SDB9o0fXd:{\"data-framer-name\":\"Documents-Ideal\"},SM143sF0X:{\"data-framer-name\":\"API-Ideal\"},TfVCxL9qz:{\"data-framer-name\":\"Team-Ideal\"},tzKGCXRsG:{\"data-framer-name\":\"Integration-Active\"},u5vzp95W4:{\"data-framer-name\":\"Update-Ideal\"},uZcayXtyp:{\"data-framer-name\":\"Marketing-Active\"},XycUOIYgt:{\"data-framer-name\":\"Update-Active\"},Y4FgbA1pp:{\"data-framer-name\":\"Massage-Ideal\"},Y73b8W2JM:{\"data-framer-name\":\"Remote-Active\"},yt3LPAPhD:{\"data-framer-name\":\"Documents-Active\"},YYjyfZOge:{\"data-framer-name\":\"IT-Active\"},zuhYOstb1:{\"data-framer-name\":\"Agency-Ideal\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e4zrq7\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"UrIb_dlHP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m2w4xk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53556;14348:53419\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 10.023C0 4.50032 4.47734 0.0229797 10 0.0229797C15.5227 0.0229797 20 4.49993 20 10.023C20 15.546 15.5227 20.023 10 20.023C4.47734 20.023 0 15.5456 0 10.023ZM8.16048 14.278C8.27443 14.3249 8.3965 14.3489 8.51973 14.3486H8.53145C8.65644 14.347 8.77986 14.3205 8.89444 14.2705C9.00902 14.2205 9.11245 14.1481 9.19864 14.0576L15.3221 7.6244C15.4079 7.53541 15.4753 7.43032 15.5203 7.31518C15.5653 7.20004 15.5871 7.07714 15.5845 6.95353C15.5818 6.82993 15.5548 6.70807 15.5048 6.59498C15.4549 6.48188 15.3831 6.37978 15.2935 6.29455C15.204 6.20932 15.0984 6.14264 14.983 6.09836C14.8676 6.05408 14.7445 6.03307 14.6209 6.03653C14.4974 6.04 14.3757 6.06787 14.2629 6.11855C14.1501 6.16923 14.0485 6.24171 13.9639 6.33183L8.50215 12.0697L5.95372 9.52167C5.77742 9.34822 5.53972 9.25146 5.29241 9.25247C5.04509 9.25347 4.80819 9.35217 4.63331 9.52705C4.45843 9.70193 4.35974 9.93883 4.35873 10.1861C4.35772 10.4335 4.45448 10.6712 4.62793 10.8475L7.85567 14.0752C7.94295 14.1622 8.04653 14.2311 8.16048 14.278Z\" fill=\"url(#paint0_linear_14348_53669)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53669\" x1=\"10\" y1=\"0.0229797\" x2=\"10\" y2=\"20.023\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-y81k9d\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"v8hzqN4eF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1vmq1vk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I14348:53557;14348:53422\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.87685 14.8148C6.87685 14.5584 6.65172 14.3503 6.37375 14.3503C6.09578 14.3503 5.8707 14.5584 5.8707 14.8148C5.8707 15.0715 6.09582 15.2794 6.37375 15.2794C6.65172 15.2794 6.87685 15.0715 6.87685 14.8148ZM6.37375 11.0519C6.09639 11.0519 5.8707 11.2602 5.8707 11.5164C5.8707 11.7725 6.09639 11.9809 6.37375 11.9809C6.65115 11.9809 6.87704 11.7725 6.87704 11.5164C6.87704 11.2602 6.65115 11.0519 6.37375 11.0519ZM6.87685 8.21799C6.87685 7.96137 6.65172 7.75346 6.37375 7.75346C6.09578 7.75346 5.8707 7.96137 5.8707 8.21799C5.8707 8.47443 6.09582 8.68253 6.37375 8.68253C6.65172 8.68253 6.87685 8.47443 6.87685 8.21799ZM17.3237 0.989319C14.7411 0.989319 12.6475 3.08293 12.6476 5.66559C12.6476 8.24821 14.7413 10.3419 17.3239 10.3419C19.9065 10.3419 22 8.24821 22 5.66559C21.9972 3.08425 19.9053 0.99226 17.3237 0.989319ZM17.302 5.33108C18.1055 5.33132 18.7774 5.94167 18.8541 6.74138C18.9308 7.54133 18.3873 8.26842 17.5985 8.42106V8.85842C17.5985 9.0418 17.4499 9.19047 17.2665 9.19047C17.083 9.19047 16.9344 9.0418 16.9344 8.85842V8.40551C16.2357 8.23521 15.7437 7.60968 15.7428 6.89056C15.7443 6.80347 15.7799 6.72044 15.842 6.65937C15.9041 6.5983 15.9877 6.56408 16.0748 6.56408C16.162 6.56408 16.2456 6.5983 16.3077 6.65937C16.3698 6.72044 16.4054 6.80347 16.4069 6.89056C16.4069 7.38493 16.8077 7.78567 17.302 7.78567C17.7964 7.78567 18.1972 7.38493 18.1972 6.89056C18.1972 6.396 17.7964 5.99522 17.302 5.99522C16.5125 5.99522 15.8477 5.40503 15.7539 4.62125C15.6602 3.83729 16.1671 3.10702 16.9344 2.92079V2.50203C16.9359 2.41494 16.9715 2.33191 17.0336 2.27084C17.0957 2.20977 17.1794 2.17555 17.2665 2.17555C17.3536 2.17555 17.4372 2.20977 17.4993 2.27084C17.5614 2.33191 17.597 2.41494 17.5985 2.50203V2.90523C18.3312 3.04811 18.8604 3.68958 18.8613 4.43597C18.8598 4.52306 18.8242 4.60609 18.7621 4.66716C18.7 4.72823 18.6164 4.76245 18.5293 4.76245C18.4421 4.76245 18.3585 4.72823 18.2964 4.66716C18.2343 4.60609 18.1987 4.52306 18.1972 4.43597C18.1966 3.94772 17.8049 3.54969 17.3165 3.54153C17.2898 3.54579 17.2627 3.54667 17.2357 3.54414C16.7558 3.57991 16.39 3.98866 16.408 4.4697C16.4258 4.9505 16.8208 5.33113 17.3022 5.33113L17.302 5.33108ZM11.9646 21.6565C11.6909 21.3845 11.4736 21.0611 11.3252 20.7049C11.1768 20.3487 11.1002 19.9667 11.0999 19.5808V18.2506H0V19.5864C0.00554994 20.8401 1.02285 21.854 2.27652 21.8557H12.1895C12.1081 21.7969 12.0328 21.7302 11.9647 21.6564L11.9646 21.6565Z\" fill=\"url(#paint0_linear_14348_53689)\"/>\\n<path d=\"M12.8277 8.5262H8.8061C8.71901 8.52472 8.63598 8.48909 8.57491 8.42698C8.51384 8.36487 8.47962 8.28125 8.47962 8.19415C8.47962 8.10704 8.51384 8.02343 8.57491 7.96132C8.63598 7.8992 8.71901 7.86357 8.8061 7.8621H12.4638C12.1429 7.16647 11.9778 6.40913 11.98 5.64303C11.9811 5.27303 12.0195 4.90408 12.0945 4.54163H3.15816L3.07031 17.5864H11.4454C11.4872 17.5847 11.5288 17.5916 11.5677 17.6068C11.6067 17.622 11.642 17.6451 11.6716 17.6746C11.7012 17.7041 11.7243 17.7394 11.7396 17.7783C11.7549 17.8172 11.762 17.8589 11.7604 17.9006V19.5811C11.7665 20.8375 12.7856 21.8533 14.0422 21.8556H14.0496C15.3012 21.8529 16.3142 20.8377 16.3142 19.5863V10.9107C15.5999 10.7755 14.9214 10.4938 14.3214 10.0834C13.7213 9.67298 13.2128 9.14277 12.8277 8.52615V8.5262ZM6.3702 15.9435C5.72669 15.9435 5.20305 15.4372 5.20305 14.8147C5.20305 14.1925 5.72669 13.6861 6.3702 13.6861C7.01376 13.6861 7.53759 14.1925 7.53759 14.8147C7.53759 15.4372 7.0139 15.9435 6.3702 15.9435ZM6.3702 12.6449C5.72669 12.6449 5.20305 12.1387 5.20305 11.5163C5.20305 10.8939 5.72669 10.3877 6.3702 10.3877C7.01376 10.3877 7.53759 10.8939 7.53759 11.5163C7.53759 12.1385 7.0139 12.6449 6.3702 12.6449ZM6.3702 9.3465C5.72669 9.3465 5.20305 8.84008 5.20305 8.21787C5.20305 7.59552 5.72669 7.08905 6.3702 7.08905C7.01376 7.08905 7.53759 7.59528 7.53759 8.21768C7.53759 8.84008 7.0139 9.3465 6.3702 9.3465ZM13.8654 15.1671H8.8061C8.71901 15.1657 8.63598 15.13 8.57491 15.0679C8.51384 15.0058 8.47962 14.9222 8.47962 14.8351C8.47962 14.748 8.51384 14.6644 8.57491 14.6023C8.63598 14.5402 8.71901 14.5045 8.8061 14.5031H13.8654C13.9525 14.5045 14.0355 14.5402 14.0966 14.6023C14.1576 14.6644 14.1919 14.748 14.1919 14.8351C14.1919 14.9222 14.1576 15.0058 14.0966 15.0679C14.0355 15.13 13.9525 15.1657 13.8654 15.1671ZM14.1974 11.5146C14.1974 11.6981 14.0488 11.8467 13.8654 11.8467H8.8061C8.71901 11.8452 8.63598 11.8096 8.57491 11.7475C8.51384 11.6853 8.47962 11.6017 8.47962 11.5146C8.47962 11.4275 8.51384 11.3439 8.57491 11.2818C8.63598 11.2197 8.71901 11.184 8.8061 11.1826H13.8654C14.0488 11.1826 14.1974 11.3314 14.1974 11.5146Z\" fill=\"url(#paint1_linear_14348_53689)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53689\" x1=\"11\" y1=\"0.989319\" x2=\"11\" y2=\"21.8557\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53689\" x1=\"9.69227\" y1=\"4.54163\" x2=\"9.69227\" y2=\"21.8556\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15wx1hl\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"HI08OYe5R\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-k9c5gy\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53558;14348:53426\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.6574 16.1355C18.6599 13.0024 18.554 8.02848 15.4208 5.026C12.2877 2.02351 7.31376 2.12944 4.31128 5.26255C1.39882 8.30179 1.39882 13.0963 4.31128 16.1355L2.26976 18.8571C2.03308 19.1727 2.09703 19.6204 2.41261 19.8571C2.72819 20.0938 3.17594 20.0298 3.41263 19.7142L5.39128 17.0756C8.12854 19.07 11.8401 19.07 14.5773 17.0756L16.5559 19.7142C16.7926 20.0298 17.2404 20.0938 17.556 19.8571C17.8716 19.6204 17.9355 19.1726 17.6988 18.8571L15.6574 16.1355ZM10.6987 10.7139C10.6987 10.8685 10.6485 11.0189 10.5558 11.1425L8.41289 13.9998C8.17621 14.3154 7.72845 14.3793 7.41287 14.1426C7.09729 13.9059 7.0333 13.4582 7.27003 13.1426L9.27011 10.4761V6.42807C9.27011 6.03355 9.58991 5.71374 9.98443 5.71374C10.3789 5.71374 10.6988 6.03355 10.6988 6.42807V10.7139H10.6987ZM6.08062 1.04571C4.66838 -0.331369 2.40721 -0.302867 1.03008 1.10937C-0.322389 2.49638 -0.322556 4.7087 1.02975 6.09591C1.30871 6.37478 1.76086 6.37478 2.03977 6.09591L6.08062 2.05578C6.35949 1.77682 6.35949 1.32467 6.08062 1.04571ZM18.9382 1.04571C17.5435 -0.348571 15.2827 -0.348571 13.888 1.04571C13.6092 1.32467 13.6092 1.77682 13.888 2.05574L17.9282 6.09587C18.2071 6.37474 18.6593 6.37474 18.9382 6.09587C20.3325 4.70121 20.3325 2.44042 18.9382 1.04571Z\" fill=\"url(#paint0_linear_14348_53692)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53692\" x1=\"9.99976\" y1=\"0\" x2=\"9.99976\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ki5qk1\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"R83s_BDlq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lby077\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53559;14348:53429\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.6191 9.52379H16.1905V5.71429C16.1905 4.66192 15.3381 3.80951 14.2857 3.80951H10.4762V2.38094C10.4762 1.06665 9.40951 0 8.09522 0C6.78094 0 5.71429 1.06665 5.71429 2.38094V3.80951H1.90478C0.852411 3.80951 0.00955357 4.66188 0.00955357 5.71429L0.00477679 9.33335H1.42857C2.84763 9.33335 4 10.4857 4 11.9048C4 13.3238 2.84763 14.4762 1.42857 14.4762H0.00477679L0 18.0952C0 19.1476 0.852366 20 1.90478 20H5.52384V18.5714C5.52384 17.1524 6.67621 16 8.09527 16C9.51433 16 10.6667 17.1524 10.6667 18.5714V20H14.2857C15.3381 20 16.1905 19.1476 16.1905 18.0952V14.2857H17.6191C18.9333 14.2857 20 13.2191 20 11.9048C20 10.5905 18.9333 9.52379 17.6191 9.52379Z\" fill=\"url(#paint0_linear_14348_53599)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53599\" x1=\"10\" y1=\"0\" x2=\"10\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-rkp3x5\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"Xwq0SgitH\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-au5k43\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53560;14348:53432\",svg:'<svg width=\"20\" height=\"16\" viewBox=\"0 0 20 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_i_14348_53628)\">\\n<path d=\"M18.2353 2.34614H10.1137L8.49608 0.422613C8.47225 0.393973 8.44221 0.371141 8.40823 0.355851C8.37425 0.340562 8.33724 0.333218 8.3 0.334378H1.76471C0.786472 0.344084 -0.00112624 1.14041 1.20895e-06 2.11869V13.8834C-4.78107e-05 14.8609 0.787256 15.6561 1.76471 15.6658H18.2353C19.2127 15.6561 20 14.8609 20 13.8834V4.1285C20 3.151 19.2127 2.35585 18.2353 2.34614Z\" fill=\"url(#paint0_linear_14348_53628)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_i_14348_53628\" x=\"0\" y=\"-0.520442\" width=\"20\" height=\"16.1862\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.854701\"/>\\n<feGaussianBlur stdDeviation=\"0.42735\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14348_53628\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14348_53628\" x1=\"10\" y1=\"0.334259\" x2=\"10\" y2=\"15.6658\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9kvza\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"PhAInnRG7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m0d4jk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53561;14348:53435\",svg:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.1129 9.67653H15.5662C15.7239 10.1082 15.81 10.574 15.81 11.0595V16.9052C15.81 17.1076 15.7748 17.3019 15.7107 17.4826H18.2677C19.2229 17.4826 20 16.7055 20 15.7504V12.5636C20 10.9717 18.7049 9.67653 17.1129 9.67653ZM4.19005 11.0595C4.19005 10.574 4.27618 10.1082 4.43384 9.67657H2.88712C1.29516 9.67657 0 10.9717 0 12.5637V15.7504C0 16.7056 0.777072 17.4827 1.73227 17.4827H4.28938C4.22357 17.2973 4.18997 17.102 4.19005 16.9053V11.0595ZM11.768 8.17242H8.23201C6.64005 8.17242 5.34489 9.46758 5.34489 11.0595V16.9053C5.34489 17.2241 5.60341 17.4827 5.92232 17.4827H14.0777C14.3966 17.4827 14.6551 17.2242 14.6551 16.9053V11.0595C14.6551 9.46758 13.36 8.17242 11.768 8.17242ZM10 0.517136C8.08548 0.517136 6.5279 2.07472 6.5279 3.98929C6.5279 5.28793 7.24466 6.42211 8.30318 7.01758C8.80525 7.3 9.38408 7.46141 10 7.46141C10.616 7.46141 11.1948 7.3 11.6969 7.01758C12.7554 6.42211 13.4721 5.28789 13.4721 3.98929C13.4721 2.07476 11.9146 0.517136 10 0.517136ZM3.90305 3.75343C2.47122 3.75343 1.30637 4.91828 1.30637 6.35012C1.30637 7.78196 2.47122 8.9468 3.90305 8.9468C4.25491 8.9471 4.60312 8.87548 4.9263 8.73633C5.4695 8.50246 5.91739 8.08848 6.19454 7.56992C6.39531 7.19471 6.50016 6.77567 6.49974 6.35012C6.49974 4.91832 5.33489 3.75343 3.90305 3.75343ZM16.097 3.75343C14.6651 3.75343 13.5003 4.91828 13.5003 6.35012C13.4999 6.77567 13.6047 7.19472 13.8055 7.56992C14.0826 8.08852 14.5305 8.5025 15.0737 8.73633C15.3969 8.87548 15.7451 8.9471 16.097 8.9468C17.5288 8.9468 18.6937 7.78196 18.6937 6.35012C18.6937 4.91828 17.5288 3.75343 16.097 3.75343Z\" fill=\"url(#paint0_linear_14348_53633)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53633\" x1=\"10\" y1=\"0.517136\" x2=\"10\" y2=\"17.4827\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19ny30g\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"QxUTofFNN\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12wgt7j\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I14348:53562;14348:53438\",svg:'<svg width=\"22\" height=\"20\" viewBox=\"0 0 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.1666 3.58337H15.5833V2.66667C15.5833 1.65558 14.7611 0.833328 13.75 0.833328H8.24998C7.23889 0.833328 6.41664 1.65553 6.41664 2.66667V3.58332H1.83334C0.822205 3.58337 1.9058e-08 4.40557 1.9058e-08 5.41667V8.16666C1.9058e-08 9.1778 0.822205 10 1.83334 10H9.16668V9.54166C9.16664 9.48146 9.17847 9.42184 9.20149 9.36621C9.22451 9.31058 9.25827 9.26004 9.30084 9.21747C9.34341 9.1749 9.39395 9.14114 9.44958 9.11812C9.5052 9.0951 9.56482 9.08327 9.62502 9.08331H12.375C12.4352 9.08327 12.4948 9.0951 12.5505 9.11812C12.6061 9.14114 12.6566 9.1749 12.6992 9.21747C12.7418 9.26004 12.7755 9.31058 12.7986 9.36621C12.8216 9.42184 12.8334 9.48146 12.8334 9.54166V10H20.1667C21.1778 10 22 9.1778 22 8.16666V5.41667C22 4.40557 21.1778 3.58337 20.1666 3.58337ZM13.75 3.58337H8.24998V2.66667H13.75V3.58337ZM21.7457 10.4946C21.6693 10.4567 21.5838 10.4409 21.4989 10.4488C21.414 10.4568 21.333 10.4883 21.265 10.5398C20.9391 10.7864 20.5596 10.9167 20.1666 10.9167H12.8333V12.2917C12.8334 12.3519 12.8215 12.4115 12.7985 12.4671C12.7755 12.5227 12.7417 12.5733 12.6992 12.6158C12.6566 12.6584 12.6061 12.6922 12.5504 12.7152C12.4948 12.7382 12.4352 12.75 12.375 12.75H9.62498C9.56478 12.75 9.50516 12.7382 9.44953 12.7152C9.39391 12.6922 9.34336 12.6584 9.30079 12.6158C9.25822 12.5733 9.22446 12.5227 9.20144 12.4671C9.17842 12.4115 9.16659 12.3519 9.16663 12.2917V10.9167H1.83334C1.44035 10.9167 1.06081 10.7864 0.734936 10.5398C0.667111 10.4879 0.586065 10.4562 0.501057 10.4482C0.416049 10.4402 0.330507 10.4563 0.254203 10.4946C0.17783 10.5326 0.113574 10.5911 0.0686649 10.6636C0.0237557 10.7361 -2.45753e-05 10.8198 1.9058e-08 10.9051L1.9058e-08 17.3333C1.9058e-08 18.3444 0.822205 19.1667 1.83334 19.1667H20.1667C21.1778 19.1667 22 18.3445 22 17.3333V10.9051C22 10.8197 21.9762 10.7361 21.9313 10.6636C21.8864 10.5911 21.8221 10.5326 21.7457 10.4946Z\" fill=\"url(#paint0_linear_14348_53626)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53626\" x1=\"11\" y1=\"0.833328\" x2=\"11\" y2=\"19.1667\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hjujlv\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"bDur9dxmK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14gxhjh\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I14348:53563;14348:53441\",svg:'<svg width=\"18\" height=\"20\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.134 2.58717C8.4461 6.55002 3.46397 7.83502 3.46397 7.83502C3.2804 7.882 3.08569 7.85413 2.92267 7.75755C2.84195 7.70973 2.77144 7.64648 2.71516 7.57141C2.65888 7.49633 2.61795 7.41091 2.59468 7.32002C2.57142 7.22913 2.56629 7.13454 2.57958 7.04166C2.59287 6.94879 2.62433 6.85944 2.67215 6.77872C2.76873 6.61569 2.92612 6.49772 3.10968 6.45073C3.10968 6.45073 7.85396 5.24859 10.1732 1.44074L8.76825 1.4286C8.57881 1.42689 8.3978 1.35 8.26505 1.21484C8.13231 1.07968 8.05869 0.897325 8.06039 0.707885C8.0621 0.518445 8.13899 0.337441 8.27415 0.204692C8.40931 0.0719437 8.59166 -0.00167599 8.7811 2.89671e-05L11.8382 0.0271719C12.0256 0.0284813 12.2049 0.103479 12.3373 0.235945C12.4698 0.368411 12.5448 0.547697 12.5461 0.735028L12.5725 3.72145C12.5742 3.91089 12.5006 4.09325 12.3679 4.22841C12.2351 4.36357 12.0541 4.44046 11.8647 4.44217C11.6752 4.44387 11.4929 4.37025 11.3577 4.2375C11.2226 4.10475 11.1457 3.92375 11.144 3.73431L11.134 2.58717ZM5.06182 20H1.85826C1.47938 20 1.11601 19.8495 0.848106 19.5816C0.580197 19.3137 0.429688 18.9503 0.429688 18.5714V12.1429C0.429688 11.764 0.580197 11.4006 0.848106 11.1327C1.11601 10.8648 1.47938 10.7143 1.85826 10.7143H5.06182V20ZM6.49039 10.025C6.49039 9.22216 7.14111 8.57145 7.94396 8.57145H9.99896C10.8018 8.57145 11.4525 9.22216 11.4525 10.025V20H6.49039V10.025ZM12.8811 7.16788C12.8811 6.36502 13.5318 5.71431 14.334 5.71431H16.1439C16.5228 5.71431 16.8862 5.86482 17.1541 6.13273C17.422 6.40063 17.5725 6.764 17.5725 7.14288V18.5714C17.5725 18.9503 17.422 19.3137 17.1541 19.5816C16.8862 19.8495 16.5228 20 16.1439 20H12.8811V7.16788Z\" fill=\"url(#paint0_linear_14348_53687)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53687\" x1=\"9.0011\" y1=\"0\" x2=\"9.0011\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3hdbl3\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"pe7ful8om\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a5ych8\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53564;14348:53444\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3083 5H15.0006V7.69231C15.0006 7.89632 15.0816 8.09198 15.2259 8.23624C15.3702 8.38049 15.5658 8.46154 15.7698 8.46154C15.9738 8.46154 16.1695 8.38049 16.3138 8.23624C16.458 8.09198 16.5391 7.89632 16.5391 7.69231V5H19.2314C19.4354 5 19.631 4.91896 19.7753 4.7747C19.9196 4.63044 20.0006 4.43478 20.0006 4.23077C20.0006 4.02676 19.9196 3.8311 19.7753 3.68684C19.631 3.54258 19.4354 3.46154 19.2314 3.46154H16.5391V0.769231C16.5391 0.565218 16.458 0.369561 16.3138 0.225302C16.1695 0.0810437 15.9738 0 15.7698 0C15.5658 0 15.3702 0.0810437 15.2259 0.225302C15.0816 0.369561 15.0006 0.565218 15.0006 0.769231V3.46154H12.3083C12.1043 3.46154 11.9086 3.54258 11.7644 3.68684C11.6201 3.8311 11.5391 4.02676 11.5391 4.23077C11.5391 4.43478 11.6201 4.63044 11.7644 4.7747C11.9086 4.91896 12.1043 5 12.3083 5Z\" fill=\"url(#paint0_linear_14348_53681)\"/>\\n<path d=\"M6.15385 0H2.30769C1.03319 0 0 1.03319 0 2.30769V6.15385C0 7.42835 1.03319 8.46154 2.30769 8.46154H6.15385C7.42835 8.46154 8.46154 7.42835 8.46154 6.15385V2.30769C8.46154 1.03319 7.42835 0 6.15385 0Z\" fill=\"url(#paint1_linear_14348_53681)\"/>\\n<path d=\"M6.15385 11.5385H2.30769C1.03319 11.5385 0 12.5716 0 13.8461V17.6923C0 18.9668 1.03319 20 2.30769 20H6.15385C7.42835 20 8.46154 18.9668 8.46154 17.6923V13.8461C8.46154 12.5716 7.42835 11.5385 6.15385 11.5385Z\" fill=\"url(#paint2_linear_14348_53681)\"/>\\n<path d=\"M17.6929 11.5385H13.8468C12.5723 11.5385 11.5391 12.5716 11.5391 13.8461V17.6923C11.5391 18.9668 12.5723 20 13.8468 20H17.6929C18.9674 20 20.0006 18.9668 20.0006 17.6923V13.8461C20.0006 12.5716 18.9674 11.5385 17.6929 11.5385Z\" fill=\"url(#paint3_linear_14348_53681)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53681\" x1=\"15.7698\" y1=\"0\" x2=\"15.7698\" y2=\"8.46154\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53681\" x1=\"4.23077\" y1=\"0\" x2=\"4.23077\" y2=\"8.46154\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14348_53681\" x1=\"4.23077\" y1=\"11.5385\" x2=\"4.23077\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14348_53681\" x1=\"15.7698\" y1=\"11.5385\" x2=\"15.7698\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ziryik\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"Sw0zZplb7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-14x1ka1\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"I14348:53565;14348:53451\",svg:'<svg width=\"23\" height=\"20\" viewBox=\"0 0 23 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.5861 15.0818L12.9112 16.0307C12.8222 16.0624 12.726 16.0683 12.6337 16.0475C12.5415 16.0267 12.4571 15.9802 12.3902 15.9133C12.3234 15.8465 12.2769 15.7621 12.2561 15.6698C12.2353 15.5776 12.2411 15.4814 12.2729 15.3923L13.2218 12.7174C13.2269 12.7025 13.2356 12.689 13.247 12.678L20.3235 5.60068C20.4913 5.43296 20.7188 5.33873 20.956 5.33873C21.1932 5.33873 21.4207 5.43296 21.5885 5.60068L22.7029 6.71509C22.8706 6.88284 22.9648 7.11034 22.9648 7.34756C22.9648 7.58477 22.8706 7.81228 22.7029 7.98003L15.6255 15.0566C15.6146 15.068 15.6011 15.0767 15.5861 15.0818ZM18.3036 14.6082V17.0931C18.3036 17.7205 18.0545 18.3218 17.6108 18.7647C17.3914 18.9844 17.1308 19.1587 16.844 19.2776C16.5572 19.3965 16.2497 19.4576 15.9392 19.4575H3.32922C3.01872 19.4576 2.71126 19.3965 2.42442 19.2776C2.13758 19.1587 1.877 18.9844 1.65761 18.7647C1.4379 18.5453 1.26362 18.2847 1.14475 17.9979C1.02587 17.7111 0.964738 17.4036 0.964844 17.0931V6.05937H17.636L12.1318 11.5636C11.9548 11.7406 11.8196 11.955 11.7361 12.191L10.7872 14.8651C10.6561 15.2349 10.6325 15.6343 10.719 16.017C10.8055 16.3997 10.9987 16.75 11.2761 17.0274C11.5536 17.3049 11.9039 17.498 12.2866 17.5846C12.6693 17.6711 13.0687 17.6474 13.4385 17.5163L16.1126 16.5674C16.349 16.4839 18.3036 14.6082 18.3036 14.6082ZM4.90547 15.5169H7.40303C7.61206 15.5169 7.81252 15.4338 7.96032 15.286C8.10812 15.1382 8.19116 14.9378 8.19116 14.7287C8.19116 14.5197 8.10812 14.3193 7.96032 14.1715C7.81252 14.0236 7.61206 13.9406 7.40303 13.9406H4.90547C4.69644 13.9406 4.49598 14.0236 4.34818 14.1715C4.20038 14.3193 4.11734 14.5197 4.11734 14.7287C4.11734 14.9378 4.20038 15.1382 4.34818 15.286C4.49598 15.4338 4.69644 15.5169 4.90547 15.5169ZM4.90547 12.3644H8.97928C9.18831 12.3644 9.38877 12.2813 9.53657 12.1335C9.68437 11.9857 9.76741 11.7853 9.76741 11.5762C9.76741 11.3672 9.68437 11.1668 9.53657 11.019C9.38877 10.8711 9.18831 10.7881 8.97928 10.7881H4.90547C4.69644 10.7881 4.49598 10.8711 4.34818 11.019C4.20038 11.1668 4.11734 11.3672 4.11734 11.5762C4.11734 11.7853 4.20038 11.9857 4.34818 12.1335C4.49598 12.2813 4.69644 12.3644 4.90547 12.3644ZM4.90547 9.21187H12.1318C12.3408 9.21187 12.5413 9.12883 12.6891 8.98103C12.8369 8.83323 12.9199 8.63277 12.9199 8.42374C12.9199 8.21472 12.8369 8.01426 12.6891 7.86645C12.5413 7.71865 12.3408 7.63562 12.1318 7.63562H4.90547C4.69644 7.63562 4.49598 7.71865 4.34818 7.86645C4.20038 8.01426 4.11734 8.21472 4.11734 8.42374C4.11734 8.63277 4.20038 8.83323 4.34818 8.98103C4.49598 9.12883 4.69644 9.21187 4.90547 9.21187ZM0.964844 4.48312V2.90687C0.964844 2.27952 1.21389 1.67818 1.65761 1.23526C1.877 1.01555 2.13758 0.841271 2.42442 0.722398C2.71126 0.603524 3.01872 0.54239 3.32922 0.542496H15.9392C16.5666 0.542496 17.1679 0.791543 17.6108 1.23526C18.0545 1.67818 18.3036 2.27952 18.3036 2.90687V4.48312H0.964844Z\" fill=\"url(#paint0_linear_14348_53658)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53658\" x1=\"11.9648\" y1=\"0.542496\" x2=\"11.9648\" y2=\"19.4575\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mn1r5m\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"f8rob3XjC\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-2n8z0q\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I14348:53566;14348:53454\",svg:'<svg width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3555 4.06246H15.7055C15.6793 4.01368 15.6456 3.96938 15.6055 3.93121L11.8555 0.181213C11.8193 0.143181 11.7771 0.11149 11.7305 0.0874634V3.43746C11.7305 3.78121 12.0117 4.06246 12.3555 4.06246Z\" fill=\"url(#paint0_linear_14348_53677)\"/>\\n<path d=\"M12.3523 5.31248C11.3148 5.31248 10.4773 4.46873 10.4773 3.43748V-1.52588e-05H2.08984C1.05234 -1.52588e-05 0.214844 0.843735 0.214844 1.87498V18.125C0.214844 19.1562 1.05234 20 2.08984 20H13.9148C14.9461 20 15.7898 19.1562 15.7898 18.125V5.31248H12.3523ZM8.00234 16.85C6.76577 16.85 5.57985 16.3588 4.70546 15.4844C3.83107 14.61 3.33984 13.4241 3.33984 12.1875C3.33984 10.9509 3.83107 9.76499 4.70546 8.8906C5.57985 8.01621 6.76577 7.52498 8.00234 7.52498C10.5773 7.52498 12.6586 9.61248 12.6586 12.1875C12.6586 14.7625 10.5773 16.85 8.00234 16.85Z\" fill=\"url(#paint1_linear_14348_53677)\"/>\\n<path d=\"M9.11434 10.7218L7.50872 12.3281L6.88372 11.7025C6.82569 11.6444 6.7568 11.5983 6.68096 11.5669C6.60513 11.5354 6.52385 11.5192 6.44175 11.5192C6.35966 11.5192 6.27837 11.5353 6.20251 11.5667C6.12666 11.5981 6.05773 11.6441 5.99966 11.7021C5.94159 11.7602 5.89552 11.8291 5.86408 11.9049C5.83263 11.9807 5.81644 12.062 5.81641 12.1441C5.81638 12.2262 5.83252 12.3075 5.86391 12.3833C5.8953 12.4592 5.94132 12.5281 5.99935 12.5862L7.06684 13.6537C7.18405 13.7709 7.34299 13.8367 7.50872 13.8367C7.67445 13.8367 7.83339 13.7709 7.9506 13.6537L9.99872 11.6056C10.0567 11.5475 10.1028 11.4786 10.1342 11.4027C10.1655 11.3269 10.1817 11.2456 10.1817 11.1635C10.1816 11.0814 10.1654 11.0001 10.134 10.9243C10.1025 10.8484 10.0565 10.7795 9.99841 10.7215C9.94034 10.6635 9.87141 10.6175 9.79555 10.5861C9.7197 10.5547 9.63841 10.5385 9.55631 10.5386C9.47422 10.5386 9.39294 10.5548 9.3171 10.5862C9.24127 10.6177 9.17237 10.6638 9.11434 10.7218Z\" fill=\"url(#paint2_linear_14348_53677)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53677\" x1=\"13.718\" y1=\"0.0874634\" x2=\"13.718\" y2=\"4.06246\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53677\" x1=\"8.00234\" y1=\"-1.52588e-05\" x2=\"8.00234\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14348_53677\" x1=\"7.99903\" y1=\"10.5386\" x2=\"7.99903\" y2=\"13.8367\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed11()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-pmfwmu\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"XtUaedCou\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3fvabk\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53567;14348:53459\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.8332 10C5.8332 9.1524 6.0908 8.3648 6.5272 7.706L2.37 3.5484C0.8944 5.2912 0 7.5412 0 10C0 12.4588 0.8944 14.7088 2.37 16.4516L6.5272 12.2944C6.07485 11.6147 5.83341 10.8165 5.8332 10ZM13.4724 7.706C13.925 8.38544 14.1666 9.1836 14.1666 10C14.1666 10.8164 13.925 11.6146 13.4724 12.294L17.6296 16.4512C19.1056 14.7088 20 12.4588 20 10C20 7.5412 19.1056 5.2912 17.63 3.5484L13.4724 7.706ZM10 0C7.5412 0 5.2912 0.8944 3.5484 2.37L7.7056 6.5272C8.38504 6.07456 9.1832 5.83304 9.9996 5.83304C10.816 5.83304 11.6142 6.07456 12.2936 6.5272L16.4508 2.37C14.7088 0.8944 12.4588 0 10 0Z\" fill=\"url(#paint0_linear_14348_53607)\"/>\\n<path d=\"M10 12.5C11.3807 12.5 12.5 11.3807 12.5 10C12.5 8.61929 11.3807 7.5 10 7.5C8.61929 7.5 7.5 8.61929 7.5 10C7.5 11.3807 8.61929 12.5 10 12.5Z\" fill=\"url(#paint1_linear_14348_53607)\"/>\\n<path d=\"M9.99848 14.1668C9.15088 14.1668 8.36328 13.9092 7.70448 13.4728L3.54688 17.63C5.28968 19.1056 7.53968 20 9.99848 20C12.4573 20 14.7073 19.1056 16.4501 17.63L12.2925 13.4724C11.6131 13.9251 10.8149 14.1667 9.99848 14.1668Z\" fill=\"url(#paint2_linear_14348_53607)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53607\" x1=\"10\" y1=\"0\" x2=\"10\" y2=\"16.4516\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53607\" x1=\"10\" y1=\"7.5\" x2=\"10\" y2=\"12.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14348_53607\" x1=\"9.99848\" y1=\"13.4724\" x2=\"9.99848\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gt1vdy\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"bzhlGerZQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lg5g8d\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53568;14348:53464\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.625 0C13.2125 0 11.25 1.9625 11.25 4.375C11.25 6.62 14.76 10.5962 15.16 11.0425C15.2788 11.1737 15.4475 11.25 15.625 11.25C15.8025 11.25 15.9712 11.1737 16.09 11.0425C16.49 10.5962 20 6.62 20 4.375C20 1.9625 18.0375 0 15.625 0ZM15.625 6.25C14.59 6.25 13.75 5.41 13.75 4.375C13.75 3.34 14.59 2.5 15.625 2.5C16.66 2.5 17.5 3.34 17.5 4.375C17.5 5.41 16.66 6.25 15.625 6.25ZM0.3925 7.3425C0.276591 7.38922 0.177293 7.46953 0.107355 7.5731C0.0374175 7.67667 3.24196e-05 7.79878 0 7.92375L0 19.375C0 19.5825 0.10375 19.7762 0.275 19.8925C0.38 19.9625 0.50125 20 0.625 20C0.70375 20 0.7825 19.985 0.8575 19.955L6.25 17.7975V5L0.3925 7.3425Z\" fill=\"url(#paint0_linear_14348_53674)\"/>\\n<path d=\"M17.02 11.8775C16.665 12.2725 16.1563 12.5 15.625 12.5C15.0937 12.5 14.585 12.2725 14.23 11.8775C14.1025 11.7362 13.9387 11.55 13.75 11.3287V20L19.6075 17.6575C19.845 17.5638 20 17.3325 20 17.0775V7.88875C18.9762 9.6225 17.6075 11.2225 17.02 11.8775ZM10.3937 6.1575L7.5 5V17.7975L12.5 19.7975V9.76C11.7013 8.68375 10.8675 7.3875 10.3937 6.1575Z\" fill=\"url(#paint1_linear_14348_53674)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53674\" x1=\"10\" y1=\"0\" x2=\"10\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53674\" x1=\"13.75\" y1=\"5\" x2=\"13.75\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l04cye\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"vZHwqGPSn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kf5dic\",\"data-framer-name\":\"Subtract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53569;14348:53468\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.199088 0.19979C0.0741154 0.324763 0.00390625 0.494263 0.00390625 0.671002C0.00390625 0.84774 0.0741154 1.01724 0.199088 1.14221C0.324061 1.26719 0.493561 1.3374 0.6703 1.3374H1.0035V10.6669C1.0035 13.2432 3.09197 15.3317 5.66825 15.3317H8.39114L4.86392 18.8589C4.80027 18.9204 4.7495 18.9939 4.71458 19.0752C4.67965 19.1565 4.66127 19.2439 4.6605 19.3324C4.65973 19.4209 4.67659 19.5087 4.7101 19.5906C4.7436 19.6725 4.79309 19.7469 4.85566 19.8094C4.91823 19.872 4.99263 19.9215 5.07453 19.955C5.15642 19.9885 5.24417 20.0054 5.33266 20.0046C5.42114 20.0038 5.50858 19.9854 5.58989 19.9505C5.67119 19.9156 5.74472 19.8648 5.8062 19.8012L9.99981 15.6075L14.1934 19.8012C14.2549 19.8648 14.3284 19.9156 14.4097 19.9505C14.491 19.9854 14.5785 20.0038 14.667 20.0046C14.7554 20.0054 14.8432 19.9885 14.9251 19.955C15.007 19.9215 15.0814 19.872 15.144 19.8094C15.2065 19.7469 15.256 19.6725 15.2895 19.5906C15.323 19.5087 15.3399 19.4209 15.3391 19.3324C15.3384 19.2439 15.32 19.1565 15.285 19.0752C15.2501 18.9939 15.1994 18.9204 15.1357 18.8589L11.6085 15.3317H14.3314C16.9076 15.3317 18.9961 13.2432 18.9961 10.6669V1.3374H19.3293C19.5061 1.3374 19.6756 1.26719 19.8005 1.14221C19.9255 1.01724 19.9957 0.84774 19.9957 0.671002C19.9957 0.494263 19.9255 0.324763 19.8005 0.19979C19.6756 0.0748173 19.5061 0.00460815 19.3293 0.00460815H0.6703C0.493561 0.00460815 0.324061 0.0748173 0.199088 0.19979ZM7.33424 4.60965C7.33424 3.87111 7.85379 3.56997 8.49464 3.93757L13.2583 6.66943C13.8993 7.03707 13.8993 7.63284 13.2583 8.00057L8.49464 10.7325C7.85379 11.0997 7.33424 10.799 7.33424 10.0597V4.60965Z\" fill=\"url(#paint0_linear_14348_53632)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53632\" x1=\"9.99981\" y1=\"0.00460815\" x2=\"9.99981\" y2=\"20.0046\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed14()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g4o9jb\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"CJ1mMYtHQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-oysjmu\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53570;14348:53470\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.1519 19.6L19.6128 14.1464C20.1292 13.6323 20.1288 12.7308 19.6132 12.2177L17.793 10.4C17.5357 10.1421 17.1926 10.0001 16.8272 10.0001C16.4618 10.0001 16.1187 10.1421 15.8618 10.3996L10.4005 15.8536C10.1423 16.1106 10 16.4533 10 16.8182C10 17.1831 10.1423 17.5257 10.4 17.7823L12.2202 19.6C12.4775 19.8579 12.8207 20 13.186 20C13.5514 20 13.8946 19.8579 14.1519 19.6ZM14.9485 10.0195C15.0981 9.87038 15.1247 9.63865 15.0147 9.46065C14.201 8.13341 13.2311 6.05422 13.2311 3.68564C13.2311 3.4828 13.0966 3.30434 12.9013 3.24843L1.59235 0.0173503C1.49446 -0.0105111 1.39006 -0.00474997 1.29583 0.0337127C1.2016 0.0721755 1.12299 0.141119 1.07255 0.229522C0.970026 0.411056 1.00241 0.640997 1.15556 0.784818L6.88042 6.19182C7.07307 6.37335 7.34427 6.45905 7.62483 6.42662C8.17348 6.36402 8.67376 6.61527 8.96272 7.09821C9.21576 7.52255 9.20332 8.08586 8.93298 8.50355C8.69728 8.86534 8.33729 9.08906 7.91959 9.13253C7.50812 9.17557 7.10461 9.03264 6.81254 8.74057C6.52 8.44803 6.38108 8.0432 6.42769 7.62329C6.46144 7.33697 6.37532 7.07422 6.192 6.88067L0.784914 1.15551C0.714991 1.08154 0.622275 1.03315 0.521602 1.0181C0.420929 1.00305 0.318118 1.02221 0.229618 1.0725C0.159904 1.11224 0.10195 1.16972 0.0616459 1.23911C0.0213415 1.3085 0.00012217 1.38732 0.000144605 1.46757C0.000144603 1.50886 0.00589766 1.55101 0.0174459 1.5923L3.24852 12.9013C3.27569 12.9963 3.33306 13.0798 3.41194 13.1393C3.49082 13.1988 3.58693 13.231 3.68574 13.2311C6.05432 13.2311 8.13351 14.201 9.46075 15.0146C9.5478 15.0679 9.65027 15.0904 9.75165 15.0784C9.85303 15.0664 9.94742 15.0207 10.0196 14.9485L14.9485 10.0195Z\" fill=\"url(#paint0_linear_14348_53624)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53624\" x1=\"2.08333\" y1=\"-4.90559e-06\" x2=\"2.08333\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed15()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r0efor\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"rE5eNScz7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kqb66t\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I14348:53571;14348:53473\",svg:'<svg width=\"22\" height=\"16\" viewBox=\"0 0 22 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.35 1.70299C20.35 0.927491 19.734 0.300491 18.975 0.300491H3.025C2.266 0.300491 1.65 0.927491 1.65 1.70299V12.4005H20.35V1.70299ZM8.492 8.39649C8.7285 8.58899 8.767 8.93549 8.5745 9.17199C8.4645 9.30399 8.305 9.37549 8.1455 9.37549C8.0245 9.37549 7.9035 9.33149 7.799 9.24899L6.347 8.06649C6.16 7.91249 6.05 7.68699 6.05 7.45049C6.05 7.21399 6.16 6.98849 6.347 6.83449L7.799 5.64649C8.0355 5.45399 8.382 5.49249 8.5745 5.72899C8.767 5.95999 8.7285 6.30649 8.4975 6.49899L7.3315 7.45049L8.492 8.39649ZM11.979 6.25149L11.0605 9.00149C10.9835 9.22699 10.769 9.37549 10.5435 9.37549C10.4558 9.37634 10.3692 9.35611 10.291 9.31651C10.2128 9.27691 10.1453 9.2191 10.094 9.14794C10.0428 9.07678 10.0095 8.99436 9.99676 8.90762C9.98405 8.82088 9.99236 8.73235 10.021 8.64949L10.9395 5.89949C10.9859 5.76199 11.0848 5.64841 11.2146 5.5835C11.3444 5.5186 11.4946 5.50763 11.6325 5.55299C11.924 5.65199 12.078 5.95999 11.979 6.25149ZM15.653 8.06649L14.201 9.24899C14.0965 9.33149 13.9755 9.37549 13.8545 9.37549C13.695 9.37549 13.5355 9.30399 13.4255 9.17199C13.334 9.05849 13.2908 8.91356 13.3052 8.76847C13.3196 8.62339 13.3905 8.48979 13.5025 8.39649L14.6685 7.45049L13.5025 6.49899C13.3906 6.40683 13.3197 6.27413 13.3052 6.12987C13.2908 5.9856 13.334 5.84149 13.4255 5.72899C13.618 5.49249 13.9645 5.45399 14.201 5.64649L15.653 6.83449C15.84 6.98849 15.95 7.21399 15.95 7.45049C15.95 7.68699 15.84 7.91249 15.653 8.06649ZM22 13.5775C22 14.1605 21.791 14.694 21.45 15.079C21.109 15.464 20.636 15.7005 20.1135 15.7005H1.8865C0.847 15.7005 0 14.749 0 13.5775C0 13.55 1.26008e-07 13.528 0.00550013 13.5005H8.3325C8.283 13.583 8.25 13.671 8.25 13.7755C8.25 14.078 8.4975 14.3255 8.8 14.3255H13.2C13.5025 14.3255 13.75 14.078 13.75 13.7755C13.75 13.671 13.717 13.583 13.6675 13.5005H21.9945C22 13.528 22 13.55 22 13.5775Z\" fill=\"url(#paint0_linear_14348_53630)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53630\" x1=\"11\" y1=\"0.300491\" x2=\"11\" y2=\"15.7005\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed16()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-u5wr0\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"krTGWA9_Y\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gvr5hu\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53572;14348:53476\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.4701 5.53169L14.4691 5.52817C13.53 4.58818 12.551 3.75814 11.5666 3.04139C11.9873 2.81439 12.4023 2.60589 12.8026 2.4349C13.6766 3.10492 14.5373 3.82738 15.3546 4.64389C16.1502 5.4398 16.8929 6.28686 17.5781 7.17964C17.9761 7.69615 18.3468 8.22013 18.6863 8.74615C20.2798 5.54941 20.4931 2.60687 18.9426 1.05765L18.9401 1.06014C16.4703 -1.40911 10.4655 0.592898 5.52826 5.53091V5.52842C4.58827 6.46841 3.7575 7.44644 3.04051 8.43219C2.81453 8.01217 2.60598 7.59717 2.43499 7.19742C3.10574 6.3229 3.82747 5.46216 4.64374 4.64467C5.43972 3.84952 6.28677 3.10718 7.17949 2.4224C7.69697 2.0244 8.22124 1.65389 8.74697 1.31438C5.54921 -0.27986 2.60745 -0.492898 1.05647 1.05789C-1.41102 3.52816 0.590985 9.53292 5.52899 14.47C6.46825 15.411 7.44799 16.241 8.4335 16.9587C8.0125 17.1857 7.59751 17.3937 7.19751 17.5647C6.32348 16.8953 5.46249 16.1717 4.64525 15.3562C3.84991 14.5603 3.10725 13.7134 2.422 12.821C2.02473 12.3035 1.65373 11.7795 1.3135 11.254C-0.27977 14.4502 -0.493248 17.3933 1.05798 18.9435L1.05725 18.9415C3.52728 21.4108 9.53204 19.4087 14.4691 14.4707C15.4091 13.5312 16.2408 12.5517 16.9578 11.5665C17.1856 11.987 17.3938 12.403 17.5648 12.8033C16.8951 13.6772 16.1718 14.538 15.3553 15.355C14.5593 16.15 13.7125 16.8925 12.8203 17.5778C12.3028 17.9758 11.7788 18.3468 11.2528 18.6863C14.4493 20.2795 17.3931 20.493 18.9433 18.9425L18.9408 18.9435C21.4101 16.4737 19.4081 10.4687 14.4701 5.53169ZM9.99908 13.3334C8.1583 13.3334 6.66508 11.8417 6.66508 9.99943C6.66508 8.15865 8.15835 6.66592 9.99908 6.66592C11.8398 6.66592 13.3316 8.1587 13.3316 9.99943C13.3316 11.8417 11.8399 13.3334 9.99908 13.3334Z\" fill=\"url(#paint0_linear_14348_53671)\"/>\\n<path d=\"M9.99879 8.33243C9.07827 8.33243 8.33203 9.07892 8.33203 9.99943C8.33203 10.9215 9.07827 11.6669 9.99879 11.6669C10.9193 11.6669 11.6646 10.9214 11.6646 9.99943C11.6646 9.07892 10.9193 8.33243 9.99879 8.33243Z\" fill=\"url(#paint1_linear_14348_53671)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53671\" x1=\"10\" y1=\"0.000198364\" x2=\"10\" y2=\"19.9999\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53671\" x1=\"9.9983\" y1=\"8.33243\" x2=\"9.9983\" y2=\"11.6669\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed17()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yd3onh\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"rI7IXFfnw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-thgbf4\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53573;14348:53480\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0627 2.92971C13.1567 -0.976298 6.83461 -0.976885 2.92805 2.92971C-0.212954 6.07068 -0.806497 10.7411 1.05048 14.4605L0.0209755 18.9889C-0.112838 19.5775 0.414677 20.1052 1.00349 19.9714L5.53193 18.9419C12.1163 22.2293 19.9902 17.47 19.9902 9.99706C19.9902 7.32743 18.9505 4.81753 17.0627 2.92971ZM12.0803 12.4859H5.82548C5.37208 12.4859 5.00453 12.1184 5.00453 11.665C5.00453 11.2116 5.37208 10.844 5.82548 10.844H12.0803C12.5337 10.844 12.9012 11.2116 12.9012 11.665C12.9012 12.1184 12.5337 12.4859 12.0803 12.4859ZM14.1653 9.15004H5.82548C5.37208 9.15004 5.00453 8.7825 5.00453 8.3291C5.00453 7.8757 5.37208 7.50816 5.82548 7.50816H14.1653C14.6186 7.50816 14.9862 7.8757 14.9862 8.3291C14.9862 8.7825 14.6186 9.15004 14.1653 9.15004Z\" fill=\"url(#paint0_linear_14348_53667)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53667\" x1=\"9.99508\" y1=\"-1.52588e-05\" x2=\"9.99508\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed18()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g199hz\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"hhmLKYmqz\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gu3abx\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53574;14348:53483\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.5625 3.05176e-05C14.75 3.05176e-05 13.2812 1.46878 13.2812 3.28128C13.2812 5.00003 16.0312 7.84378 16.3437 8.15628C16.4375 8.28128 16.6563 8.28128 16.7813 8.15628C17.0938 7.84378 19.8438 5.00003 19.8438 3.28128C19.875 1.46878 18.375 3.05176e-05 16.5625 3.05176e-05ZM16.5625 4.28128C15.8438 4.28128 15.2813 3.71878 15.2813 3.00003C15.2813 2.28128 15.8438 1.71878 16.5625 1.71878C17.2812 1.71878 17.8437 2.28128 17.8437 3.00003C17.8437 3.71878 17.2812 4.28128 16.5625 4.28128ZM3.4375 10.5313C1.625 10.5313 0.15625 12 0.15625 13.8125C0.15625 15.5313 2.90625 18.375 3.21875 18.6875C3.34375 18.8125 3.53125 18.8125 3.65625 18.6875C3.96875 18.375 6.71875 15.5313 6.71875 13.8125C6.71875 12 5.25 10.5313 3.4375 10.5313ZM3.4375 14.8125C2.71875 14.8125 2.15625 14.25 2.15625 13.5313C2.15625 12.8125 2.71875 12.25 3.4375 12.25C4.15625 12.25 4.71875 12.8125 4.71875 13.5313C4.71875 14.25 4.125 14.8125 3.4375 14.8125Z\" fill=\"url(#paint0_linear_14348_53664)\"/>\\n<path d=\"M17.8437 16.25C17.8437 17.0938 17.1563 17.7813 16.3125 17.7813C16.1875 17.7813 16.0937 17.7813 15.9687 17.75C15.3437 18.4063 14.4688 18.7813 13.5625 18.7813H11.4688C11.3437 19.4688 10.7187 20 10 20C9.28125 20 8.65625 19.4688 8.5 18.7813H4.4375C4.59375 18.5938 4.78125 18.4063 5 18.1563H8.53125C8.6875 17.4688 9.28125 16.9375 10.0312 16.9375C10.7812 16.9375 11.375 17.4688 11.5313 18.1563H13.625C14.3125 18.1563 14.9375 17.9063 15.4375 17.4375C15.0625 17.1563 14.8437 16.7188 14.8437 16.25C14.8437 15.4375 15.4687 14.7813 16.25 14.7188C16.0312 13.4688 14.9375 12.5313 13.625 12.5313C12.4062 12.4063 11.0313 12.9063 9.8125 11.6875C9.65625 11.75 9.46875 11.7813 9.28125 11.7813C8.4375 11.7813 7.75 11.0938 7.75 10.25C7.75 9.43753 8.375 8.78128 9.1875 8.71878C9.53125 8.03128 10.2188 7.59378 11 7.59378H15.0625C15.2812 7.84378 15.4687 8.06253 15.625 8.21878H10.9687C10.5 8.21878 10.0938 8.43753 9.8125 8.81253C10.375 9.03128 10.7812 9.59378 10.7812 10.2188C10.7812 10.6563 10.625 11.0313 10.3437 11.3125C11.3125 12.1875 12.3125 11.8125 13.625 11.875C15.3125 11.875 16.6875 13.125 16.9062 14.7813C17.4375 15.0313 17.8437 15.5938 17.8437 16.25Z\" fill=\"url(#paint1_linear_14348_53664)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53664\" x1=\"10.0002\" y1=\"3.05176e-05\" x2=\"10.0002\" y2=\"18.7813\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53664\" x1=\"11.1406\" y1=\"7.59378\" x2=\"11.1406\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed19()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-qk0gdt\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"DMqn0GmqL\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dqdizd\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53575;14348:53487\",svg:'<svg width=\"20\" height=\"21\" viewBox=\"0 0 20 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 10.023C0 4.50032 4.47734 0.0229797 10 0.0229797C15.5227 0.0229797 20 4.49993 20 10.023C20 15.546 15.5227 20.023 10 20.023C4.47734 20.023 0 15.5456 0 10.023ZM8.16048 14.278C8.27443 14.3249 8.3965 14.3489 8.51973 14.3486H8.53145C8.65645 14.347 8.77986 14.3205 8.89444 14.2705C9.00902 14.2205 9.11245 14.1481 9.19864 14.0576L15.3221 7.6244C15.4079 7.53541 15.4753 7.43032 15.5203 7.31518C15.5653 7.20004 15.5871 7.07714 15.5845 6.95353C15.5818 6.82993 15.5548 6.70807 15.5048 6.59498C15.4549 6.48188 15.3831 6.37978 15.2935 6.29455C15.204 6.20932 15.0984 6.14264 14.983 6.09836C14.8676 6.05408 14.7445 6.03307 14.6209 6.03653C14.4974 6.04 14.3757 6.06787 14.2629 6.11855C14.1501 6.16923 14.0485 6.24171 13.9639 6.33183L8.50215 12.0697L5.95372 9.52167C5.77742 9.34822 5.53972 9.25146 5.29241 9.25247C5.04509 9.25347 4.80819 9.35217 4.63331 9.52705C4.45843 9.70193 4.35974 9.93883 4.35873 10.1861C4.35772 10.4335 4.45448 10.6712 4.62793 10.8475L7.85567 14.0752C7.94296 14.1622 8.04653 14.2311 8.16048 14.278Z\" fill=\"url(#paint0_linear_14348_53660)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53660\" x1=\"10\" y1=\"0.0229797\" x2=\"10\" y2=\"20.023\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed20()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wijpqb\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"QLCFJo9AP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1dbh1if\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I14348:53576;14348:53492\",svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.87685 14.8148C6.87685 14.5584 6.65172 14.3503 6.37375 14.3503C6.09578 14.3503 5.8707 14.5584 5.8707 14.8148C5.8707 15.0715 6.09582 15.2794 6.37375 15.2794C6.65172 15.2794 6.87685 15.0715 6.87685 14.8148ZM6.37375 11.0519C6.09639 11.0519 5.8707 11.2602 5.8707 11.5164C5.8707 11.7725 6.09639 11.9809 6.37375 11.9809C6.65115 11.9809 6.87704 11.7725 6.87704 11.5164C6.87704 11.2602 6.65115 11.0519 6.37375 11.0519ZM6.87685 8.21799C6.87685 7.96137 6.65172 7.75346 6.37375 7.75346C6.09578 7.75346 5.8707 7.96137 5.8707 8.21799C5.8707 8.47443 6.09582 8.68253 6.37375 8.68253C6.65172 8.68253 6.87685 8.47443 6.87685 8.21799ZM17.3237 0.989319C14.7411 0.989319 12.6475 3.08293 12.6476 5.66559C12.6476 8.24821 14.7413 10.3419 17.3239 10.3419C19.9065 10.3419 22 8.24821 22 5.66559C21.9972 3.08425 19.9053 0.99226 17.3237 0.989319ZM17.302 5.33108C18.1055 5.33132 18.7774 5.94167 18.8541 6.74138C18.9308 7.54133 18.3873 8.26842 17.5985 8.42106V8.85842C17.5985 9.0418 17.4499 9.19047 17.2665 9.19047C17.083 9.19047 16.9344 9.0418 16.9344 8.85842V8.40551C16.2357 8.23521 15.7437 7.60968 15.7428 6.89056C15.7443 6.80347 15.7799 6.72044 15.842 6.65937C15.9041 6.5983 15.9877 6.56408 16.0748 6.56408C16.162 6.56408 16.2456 6.5983 16.3077 6.65937C16.3698 6.72044 16.4054 6.80347 16.4069 6.89056C16.4069 7.38493 16.8077 7.78567 17.302 7.78567C17.7964 7.78567 18.1972 7.38493 18.1972 6.89056C18.1972 6.396 17.7964 5.99522 17.302 5.99522C16.5125 5.99522 15.8477 5.40503 15.7539 4.62125C15.6602 3.83729 16.1671 3.10702 16.9344 2.92079V2.50203C16.9359 2.41494 16.9715 2.33191 17.0336 2.27084C17.0957 2.20977 17.1794 2.17555 17.2665 2.17555C17.3536 2.17555 17.4372 2.20977 17.4993 2.27084C17.5614 2.33191 17.597 2.41494 17.5985 2.50203V2.90523C18.3312 3.04811 18.8604 3.68958 18.8613 4.43597C18.8598 4.52306 18.8242 4.60609 18.7621 4.66716C18.7 4.72823 18.6164 4.76245 18.5293 4.76245C18.4421 4.76245 18.3585 4.72823 18.2964 4.66716C18.2343 4.60609 18.1987 4.52306 18.1972 4.43597C18.1966 3.94772 17.8049 3.54969 17.3165 3.54153C17.2898 3.54579 17.2627 3.54667 17.2357 3.54414C16.7558 3.57991 16.39 3.98866 16.408 4.4697C16.4258 4.9505 16.8208 5.33113 17.3022 5.33113L17.302 5.33108ZM11.9646 21.6565C11.6909 21.3845 11.4736 21.0611 11.3252 20.7049C11.1768 20.3487 11.1002 19.9667 11.0999 19.5808V18.2506H0V19.5864C0.00554994 20.8401 1.02285 21.854 2.27652 21.8557H12.1895C12.1081 21.7969 12.0328 21.7302 11.9647 21.6564L11.9646 21.6565Z\" fill=\"url(#paint0_linear_14348_53621)\"/>\\n<path d=\"M12.8277 8.5262H8.8061C8.71901 8.52472 8.63598 8.48909 8.57491 8.42698C8.51384 8.36487 8.47962 8.28125 8.47962 8.19415C8.47962 8.10704 8.51384 8.02343 8.57491 7.96132C8.63598 7.8992 8.71901 7.86357 8.8061 7.8621H12.4638C12.1429 7.16647 11.9778 6.40913 11.98 5.64303C11.9811 5.27303 12.0195 4.90408 12.0945 4.54163H3.15816L3.07031 17.5864H11.4454C11.4872 17.5847 11.5288 17.5916 11.5677 17.6068C11.6067 17.622 11.642 17.6451 11.6716 17.6746C11.7012 17.7041 11.7243 17.7394 11.7396 17.7783C11.7549 17.8172 11.762 17.8589 11.7604 17.9006V19.5811C11.7665 20.8375 12.7856 21.8533 14.0422 21.8556H14.0496C15.3012 21.8529 16.3142 20.8377 16.3142 19.5863V10.9107C15.5999 10.7755 14.9214 10.4938 14.3214 10.0834C13.7213 9.67298 13.2128 9.14277 12.8277 8.52615V8.5262ZM6.3702 15.9435C5.72669 15.9435 5.20305 15.4372 5.20305 14.8147C5.20305 14.1925 5.72669 13.6861 6.3702 13.6861C7.01376 13.6861 7.53759 14.1925 7.53759 14.8147C7.53759 15.4372 7.0139 15.9435 6.3702 15.9435ZM6.3702 12.6449C5.72669 12.6449 5.20305 12.1387 5.20305 11.5163C5.20305 10.8939 5.72669 10.3877 6.3702 10.3877C7.01376 10.3877 7.53759 10.8939 7.53759 11.5163C7.53759 12.1385 7.0139 12.6449 6.3702 12.6449ZM6.3702 9.3465C5.72669 9.3465 5.20305 8.84008 5.20305 8.21787C5.20305 7.59552 5.72669 7.08905 6.3702 7.08905C7.01376 7.08905 7.53759 7.59528 7.53759 8.21768C7.53759 8.84008 7.0139 9.3465 6.3702 9.3465ZM13.8654 15.1671H8.8061C8.71901 15.1657 8.63598 15.13 8.57491 15.0679C8.51384 15.0058 8.47962 14.9222 8.47962 14.8351C8.47962 14.748 8.51384 14.6644 8.57491 14.6023C8.63598 14.5402 8.71901 14.5045 8.8061 14.5031H13.8654C13.9525 14.5045 14.0355 14.5402 14.0966 14.6023C14.1576 14.6644 14.1919 14.748 14.1919 14.8351C14.1919 14.9222 14.1576 15.0058 14.0966 15.0679C14.0355 15.13 13.9525 15.1657 13.8654 15.1671ZM14.1974 11.5146C14.1974 11.6981 14.0488 11.8467 13.8654 11.8467H8.8061C8.71901 11.8452 8.63598 11.8096 8.57491 11.7475C8.51384 11.6853 8.47962 11.6017 8.47962 11.5146C8.47962 11.4275 8.51384 11.3439 8.57491 11.2818C8.63598 11.2197 8.71901 11.184 8.8061 11.1826H13.8654C14.0488 11.1826 14.1974 11.3314 14.1974 11.5146Z\" fill=\"url(#paint1_linear_14348_53621)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53621\" x1=\"11\" y1=\"0.989319\" x2=\"11\" y2=\"21.8557\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53621\" x1=\"9.69227\" y1=\"4.54163\" x2=\"9.69227\" y2=\"21.8556\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed21()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bp9mws\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"PxjHvwy9H\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16w9lt7\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53577;14348:53496\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.6574 16.1355C18.6599 13.0024 18.554 8.02848 15.4208 5.026C12.2877 2.02351 7.31376 2.12944 4.31128 5.26255C1.39882 8.30179 1.39882 13.0963 4.31128 16.1355L2.26976 18.8571C2.03308 19.1727 2.09703 19.6204 2.41261 19.8571C2.72819 20.0938 3.17594 20.0298 3.41263 19.7142L5.39128 17.0756C8.12854 19.07 11.8401 19.07 14.5773 17.0756L16.5559 19.7142C16.7926 20.0298 17.2404 20.0938 17.556 19.8571C17.8716 19.6204 17.9355 19.1726 17.6988 18.8571L15.6574 16.1355ZM10.6987 10.7139C10.6987 10.8685 10.6485 11.0189 10.5558 11.1425L8.41289 13.9998C8.17621 14.3154 7.72845 14.3793 7.41287 14.1426C7.09729 13.9059 7.0333 13.4582 7.27003 13.1426L9.27011 10.4761V6.42807C9.27011 6.03355 9.58991 5.71374 9.98443 5.71374C10.3789 5.71374 10.6988 6.03355 10.6988 6.42807V10.7139H10.6987ZM6.08062 1.04571C4.66838 -0.331369 2.40721 -0.302867 1.03008 1.10937C-0.322389 2.49638 -0.322556 4.7087 1.02975 6.09591C1.30871 6.37478 1.76086 6.37478 2.03977 6.09591L6.08062 2.05578C6.35949 1.77682 6.35949 1.32467 6.08062 1.04571ZM18.9382 1.04571C17.5435 -0.348571 15.2827 -0.348571 13.888 1.04571C13.6092 1.32467 13.6092 1.77682 13.888 2.05574L17.9282 6.09587C18.2071 6.37474 18.6593 6.37474 18.9382 6.09587C20.3325 4.70121 20.3325 2.44042 18.9382 1.04571Z\" fill=\"url(#paint0_linear_14348_53643)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53643\" x1=\"9.99976\" y1=\"0\" x2=\"9.99976\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FEA94C\"/>\\n<stop offset=\"1\" stop-color=\"#FF7B34\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13z0n80\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"RJIJi51xf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pep84v\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53578;14348:53499\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.6191 9.52379H16.1905V5.71429C16.1905 4.66192 15.3381 3.80951 14.2857 3.80951H10.4762V2.38094C10.4762 1.06665 9.40951 0 8.09522 0C6.78094 0 5.71429 1.06665 5.71429 2.38094V3.80951H1.90478C0.852411 3.80951 0.00955357 4.66188 0.00955357 5.71429L0.00477679 9.33335H1.42857C2.84763 9.33335 4 10.4857 4 11.9048C4 13.3238 2.84763 14.4762 1.42857 14.4762H0.00477679L0 18.0952C0 19.1476 0.852366 20 1.90478 20H5.52384V18.5714C5.52384 17.1524 6.67621 16 8.09527 16C9.51433 16 10.6667 17.1524 10.6667 18.5714V20H14.2857C15.3381 20 16.1905 19.1476 16.1905 18.0952V14.2857H17.6191C18.9333 14.2857 20 13.2191 20 11.9048C20 10.5905 18.9333 9.52379 17.6191 9.52379Z\" fill=\"url(#paint0_linear_14348_53650)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53650\" x1=\"10\" y1=\"4.81367\" x2=\"10\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed23()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12m15g3\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"kLfibYU0d\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-183bp2w\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53579;14348:53502\",svg:'<svg width=\"20\" height=\"16\" viewBox=\"0 0 20 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.2353 2.34614H10.1137L8.49608 0.422613C8.47225 0.393973 8.44221 0.371141 8.40823 0.355851C8.37425 0.340562 8.33724 0.333218 8.3 0.334378H1.76471C0.786472 0.344084 -0.00112624 1.14041 1.20895e-06 2.11869V13.8834C-4.78107e-05 14.8609 0.787256 15.6561 1.76471 15.6658H18.2353C19.2127 15.6561 20 14.8609 20 13.8834V4.1285C20 3.151 19.2127 2.35585 18.2353 2.34614Z\" fill=\"url(#paint0_linear_14348_53656)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53656\" x1=\"10\" y1=\"0.334259\" x2=\"10\" y2=\"15.6658\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed24()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-smwg0l\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"VjDcpuIjd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ecp2qy\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53580;14348:53505\",svg:'<svg width=\"20\" height=\"18\" viewBox=\"0 0 20 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.1129 9.67654H15.5662C15.7239 10.1082 15.81 10.574 15.81 11.0595V16.9052C15.81 17.1077 15.7748 17.302 15.7107 17.4827H18.2677C19.2229 17.4827 20 16.7055 20 15.7504V12.5636C20 10.9717 18.7049 9.67654 17.1129 9.67654ZM4.19005 11.0596C4.19005 10.574 4.27618 10.1082 4.43384 9.67658H2.88712C1.29516 9.67658 0 10.9717 0 12.5637V15.7505C0 16.7056 0.777072 17.4827 1.73227 17.4827H4.28938C4.22357 17.2973 4.18997 17.102 4.19005 16.9053V11.0596ZM11.768 8.17244H8.23201C6.64005 8.17244 5.34489 9.4676 5.34489 11.0596V16.9053C5.34489 17.2241 5.60341 17.4827 5.92232 17.4827H14.0777C14.3966 17.4827 14.6551 17.2242 14.6551 16.9053V11.0596C14.6551 9.4676 13.36 8.17244 11.768 8.17244ZM10 0.517151C8.08548 0.517151 6.5279 2.07473 6.5279 3.98931C6.5279 5.28794 7.24466 6.42212 8.30318 7.01759C8.80525 7.30002 9.38408 7.46142 10 7.46142C10.616 7.46142 11.1948 7.30002 11.6969 7.01759C12.7554 6.42212 13.4721 5.2879 13.4721 3.98931C13.4721 2.07477 11.9146 0.517151 10 0.517151ZM3.90305 3.75345C2.47122 3.75345 1.30637 4.91829 1.30637 6.35013C1.30637 7.78197 2.47122 8.94682 3.90305 8.94682C4.25491 8.94712 4.60312 8.8755 4.9263 8.73635C5.4695 8.50248 5.91739 8.08849 6.19454 7.56994C6.39531 7.19473 6.50016 6.77568 6.49974 6.35013C6.49974 4.91833 5.33489 3.75345 3.90305 3.75345ZM16.097 3.75345C14.6651 3.75345 13.5003 4.91829 13.5003 6.35013C13.4999 6.77568 13.6047 7.19473 13.8055 7.56994C14.0826 8.08853 14.5305 8.50252 15.0737 8.73635C15.3969 8.8755 15.7451 8.94712 16.097 8.94682C17.5288 8.94682 18.6937 7.78197 18.6937 6.35013C18.6937 4.91829 17.5288 3.75345 16.097 3.75345Z\" fill=\"url(#paint0_linear_14348_53654)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53654\" x1=\"10\" y1=\"0.517151\" x2=\"10\" y2=\"17.4827\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed25()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhwnub\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"yvtrois0H\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10olfsl\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I14348:53581;14348:53508\",svg:'<svg width=\"22\" height=\"20\" viewBox=\"0 0 22 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.1666 3.58335H15.5833V2.66666C15.5833 1.65556 14.7611 0.833313 13.75 0.833313H8.24998C7.23889 0.833313 6.41664 1.65552 6.41664 2.66666V3.58331H1.83334C0.822205 3.58335 1.9058e-08 4.40556 1.9058e-08 5.41665V8.16665C1.9058e-08 9.17779 0.822205 9.99999 1.83334 9.99999H9.16668V9.54164C9.16664 9.48144 9.17847 9.42182 9.20149 9.3662C9.22451 9.31057 9.25827 9.26002 9.30084 9.21746C9.34341 9.17489 9.39395 9.14113 9.44958 9.11811C9.5052 9.09509 9.56482 9.08326 9.62502 9.0833H12.375C12.4352 9.08326 12.4948 9.09509 12.5505 9.11811C12.6061 9.14113 12.6566 9.17489 12.6992 9.21746C12.7418 9.26002 12.7755 9.31057 12.7986 9.3662C12.8216 9.42182 12.8334 9.48144 12.8334 9.54164V9.99999H20.1667C21.1778 9.99999 22 9.17779 22 8.16665V5.41665C22 4.40556 21.1778 3.58335 20.1666 3.58335ZM13.75 3.58335H8.24998V2.66666H13.75V3.58335ZM21.7457 10.4946C21.6693 10.4567 21.5838 10.4408 21.4989 10.4488C21.414 10.4568 21.333 10.4883 21.265 10.5398C20.9391 10.7864 20.5596 10.9166 20.1666 10.9166H12.8333V12.2916C12.8334 12.3518 12.8215 12.4115 12.7985 12.4671C12.7755 12.5227 12.7417 12.5733 12.6992 12.6158C12.6566 12.6584 12.6061 12.6922 12.5504 12.7152C12.4948 12.7382 12.4352 12.75 12.375 12.75H9.62498C9.56478 12.75 9.50516 12.7382 9.44953 12.7152C9.39391 12.6922 9.34336 12.6584 9.30079 12.6158C9.25822 12.5733 9.22446 12.5227 9.20144 12.4671C9.17842 12.4115 9.16659 12.3518 9.16663 12.2916V10.9166H1.83334C1.44035 10.9166 1.06081 10.7864 0.734936 10.5398C0.667111 10.4879 0.586065 10.4562 0.501057 10.4482C0.416049 10.4402 0.330507 10.4562 0.254203 10.4946C0.17783 10.5325 0.113574 10.5911 0.0686649 10.6636C0.0237557 10.7361 -2.45753e-05 10.8197 1.9058e-08 10.905L1.9058e-08 17.3333C1.9058e-08 18.3444 0.822205 19.1667 1.83334 19.1667H20.1667C21.1778 19.1667 22 18.3445 22 17.3333V10.905C22 10.8197 21.9762 10.7361 21.9313 10.6636C21.8864 10.5911 21.8221 10.5325 21.7457 10.4946Z\" fill=\"url(#paint0_linear_14348_53597)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53597\" x1=\"11\" y1=\"0.833313\" x2=\"11\" y2=\"19.1667\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FEA94C\"/>\\n<stop offset=\"1\" stop-color=\"#FF7B34\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed26()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bdtjet\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"L04O5PhY9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-p8mxh4\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I14348:53582;14348:53511\",svg:'<svg width=\"18\" height=\"20\" viewBox=\"0 0 18 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M11.134 2.58717C8.4461 6.55002 3.46397 7.83502 3.46397 7.83502C3.2804 7.882 3.08569 7.85413 2.92267 7.75755C2.84195 7.70973 2.77144 7.64648 2.71516 7.57141C2.65888 7.49633 2.61795 7.41091 2.59468 7.32002C2.57142 7.22913 2.56629 7.13454 2.57958 7.04166C2.59287 6.94879 2.62433 6.85944 2.67215 6.77872C2.76873 6.61569 2.92612 6.49772 3.10968 6.45073C3.10968 6.45073 7.85396 5.24859 10.1732 1.44074L8.76825 1.4286C8.57881 1.42689 8.3978 1.35 8.26505 1.21484C8.13231 1.07968 8.05869 0.897325 8.06039 0.707885C8.0621 0.518445 8.13899 0.337441 8.27415 0.204692C8.40931 0.0719437 8.59166 -0.00167599 8.7811 2.89671e-05L11.8382 0.0271719C12.0256 0.0284813 12.2049 0.103479 12.3373 0.235945C12.4698 0.368411 12.5448 0.547697 12.5461 0.735028L12.5725 3.72145C12.5742 3.91089 12.5006 4.09325 12.3679 4.22841C12.2351 4.36357 12.0541 4.44046 11.8647 4.44217C11.6752 4.44387 11.4929 4.37025 11.3577 4.2375C11.2226 4.10475 11.1457 3.92375 11.144 3.73431L11.134 2.58717ZM5.06182 20H1.85826C1.47938 20 1.11601 19.8495 0.848106 19.5816C0.580197 19.3137 0.429688 18.9503 0.429688 18.5714V12.1429C0.429688 11.764 0.580197 11.4006 0.848106 11.1327C1.11601 10.8648 1.47938 10.7143 1.85826 10.7143H5.06182V20ZM6.49039 10.025C6.49039 9.22216 7.14111 8.57145 7.94396 8.57145H9.99896C10.8018 8.57145 11.4525 9.22216 11.4525 10.025V20H6.49039V10.025ZM12.8811 7.16788C12.8811 6.36502 13.5318 5.71431 14.334 5.71431H16.1439C16.5228 5.71431 16.8862 5.86482 17.1541 6.13273C17.422 6.40063 17.5725 6.764 17.5725 7.14288V18.5714C17.5725 18.9503 17.422 19.3137 17.1541 19.5816C16.8862 19.8495 16.5228 20 16.1439 20H12.8811V7.16788Z\" fill=\"url(#paint0_linear_14348_53641)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53641\" x1=\"9.0011\" y1=\"4.81367\" x2=\"9.0011\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed27()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10jk2mj\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"ItnsOb_wm\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tq12ps\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53583;14348:53514\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3083 5H15.0006V7.69231C15.0006 7.89632 15.0816 8.09198 15.2259 8.23624C15.3702 8.38049 15.5658 8.46154 15.7698 8.46154C15.9738 8.46154 16.1695 8.38049 16.3138 8.23624C16.458 8.09198 16.5391 7.89632 16.5391 7.69231V5H19.2314C19.4354 5 19.631 4.91896 19.7753 4.7747C19.9196 4.63044 20.0006 4.43478 20.0006 4.23077C20.0006 4.02676 19.9196 3.8311 19.7753 3.68684C19.631 3.54258 19.4354 3.46154 19.2314 3.46154H16.5391V0.769231C16.5391 0.565218 16.458 0.369561 16.3138 0.225302C16.1695 0.0810437 15.9738 0 15.7698 0C15.5658 0 15.3702 0.0810437 15.2259 0.225302C15.0816 0.369561 15.0006 0.565218 15.0006 0.769231V3.46154H12.3083C12.1043 3.46154 11.9086 3.54258 11.7644 3.68684C11.6201 3.8311 11.5391 4.02676 11.5391 4.23077C11.5391 4.43478 11.6201 4.63044 11.7644 4.7747C11.9086 4.91896 12.1043 5 12.3083 5Z\" fill=\"url(#paint0_linear_14348_53611)\"/>\\n<path d=\"M6.15385 0H2.30769C1.03319 0 0 1.03319 0 2.30769V6.15385C0 7.42835 1.03319 8.46154 2.30769 8.46154H6.15385C7.42835 8.46154 8.46154 7.42835 8.46154 6.15385V2.30769C8.46154 1.03319 7.42835 0 6.15385 0Z\" fill=\"url(#paint1_linear_14348_53611)\"/>\\n<path d=\"M6.15385 11.5385H2.30769C1.03319 11.5385 0 12.5716 0 13.8461V17.6923C0 18.9668 1.03319 20 2.30769 20H6.15385C7.42835 20 8.46154 18.9668 8.46154 17.6923V13.8461C8.46154 12.5716 7.42835 11.5385 6.15385 11.5385Z\" fill=\"url(#paint2_linear_14348_53611)\"/>\\n<path d=\"M17.6929 11.5385H13.8468C12.5723 11.5385 11.5391 12.5716 11.5391 13.8461V17.6923C11.5391 18.9668 12.5723 20 13.8468 20H17.6929C18.9674 20 20.0006 18.9668 20.0006 17.6923V13.8461C20.0006 12.5716 18.9674 11.5385 17.6929 11.5385Z\" fill=\"url(#paint3_linear_14348_53611)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53611\" x1=\"15.7698\" y1=\"0\" x2=\"15.7698\" y2=\"8.46154\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53611\" x1=\"4.23077\" y1=\"0\" x2=\"4.23077\" y2=\"8.46154\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14348_53611\" x1=\"4.23077\" y1=\"11.5385\" x2=\"4.23077\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14348_53611\" x1=\"15.7698\" y1=\"11.5385\" x2=\"15.7698\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed28()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yfywdu\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"X6IbS0_DG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gsqow9\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:23,layoutDependency:layoutDependency,layoutId:\"I14348:53584;14348:53521\",svg:'<svg width=\"23\" height=\"20\" viewBox=\"0 0 23 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.5861 15.0818L12.9112 16.0307C12.8222 16.0625 12.726 16.0683 12.6337 16.0475C12.5415 16.0267 12.4571 15.9802 12.3902 15.9134C12.3234 15.8465 12.2769 15.7621 12.2561 15.6699C12.2353 15.5776 12.2411 15.4814 12.2729 15.3924L13.2218 12.7175C13.2269 12.7025 13.2356 12.689 13.247 12.6781L20.3235 5.60069C20.4913 5.43297 20.7188 5.33875 20.956 5.33875C21.1932 5.33875 21.4207 5.43297 21.5885 5.60069L22.7029 6.7151C22.8706 6.88285 22.9648 7.11036 22.9648 7.34757C22.9648 7.58479 22.8706 7.81229 22.7029 7.98004L15.6255 15.0566C15.6146 15.068 15.6011 15.0767 15.5861 15.0818ZM18.3036 14.6082V17.0931C18.3036 17.7205 18.0545 18.3218 17.6108 18.7647C17.3914 18.9844 17.1308 19.1587 16.844 19.2776C16.5572 19.3965 16.2497 19.4576 15.9392 19.4575H3.32922C3.01872 19.4576 2.71126 19.3965 2.42442 19.2776C2.13758 19.1587 1.877 18.9844 1.65761 18.7647C1.4379 18.5453 1.26362 18.2848 1.14475 17.9979C1.02587 17.7111 0.964738 17.4036 0.964844 17.0931V6.05938H17.636L12.1318 11.5636C11.9548 11.7406 11.8196 11.955 11.7361 12.191L10.7872 14.8651C10.6561 15.2349 10.6325 15.6343 10.719 16.017C10.8055 16.3997 10.9987 16.75 11.2761 17.0275C11.5536 17.3049 11.9039 17.4981 12.2866 17.5846C12.6693 17.6711 13.0687 17.6475 13.4385 17.5164L16.1126 16.5674C16.349 16.4839 18.3036 14.6082 18.3036 14.6082ZM4.90547 15.5169H7.40303C7.61206 15.5169 7.81252 15.4338 7.96032 15.286C8.10812 15.1382 8.19116 14.9378 8.19116 14.7288C8.19116 14.5197 8.10812 14.3193 7.96032 14.1715C7.81252 14.0237 7.61206 13.9406 7.40303 13.9406H4.90547C4.69644 13.9406 4.49598 14.0237 4.34818 14.1715C4.20038 14.3193 4.11734 14.5197 4.11734 14.7288C4.11734 14.9378 4.20038 15.1382 4.34818 15.286C4.49598 15.4338 4.69644 15.5169 4.90547 15.5169ZM4.90547 12.3644H8.97928C9.18831 12.3644 9.38877 12.2813 9.53657 12.1335C9.68437 11.9857 9.76741 11.7853 9.76741 11.5763C9.76741 11.3672 9.68437 11.1668 9.53657 11.019C9.38877 10.8712 9.18831 10.7881 8.97928 10.7881H4.90547C4.69644 10.7881 4.49598 10.8712 4.34818 11.019C4.20038 11.1668 4.11734 11.3672 4.11734 11.5763C4.11734 11.7853 4.20038 11.9857 4.34818 12.1335C4.49598 12.2813 4.69644 12.3644 4.90547 12.3644ZM4.90547 9.21188H12.1318C12.3408 9.21188 12.5413 9.12885 12.6891 8.98105C12.8369 8.83324 12.9199 8.63278 12.9199 8.42376C12.9199 8.21473 12.8369 8.01427 12.6891 7.86647C12.5413 7.71867 12.3408 7.63563 12.1318 7.63563H4.90547C4.69644 7.63563 4.49598 7.71867 4.34818 7.86647C4.20038 8.01427 4.11734 8.21473 4.11734 8.42376C4.11734 8.63278 4.20038 8.83324 4.34818 8.98105C4.49598 9.12885 4.69644 9.21188 4.90547 9.21188ZM0.964844 4.48313V2.90689C0.964844 2.27954 1.21389 1.6782 1.65761 1.23527C1.877 1.01557 2.13758 0.841286 2.42442 0.722413C2.71126 0.60354 3.01872 0.542406 3.32922 0.542511H15.9392C16.5666 0.542511 17.1679 0.791559 17.6108 1.23527C18.0545 1.6782 18.3036 2.27954 18.3036 2.90689V4.48313H0.964844Z\" fill=\"url(#paint0_linear_14348_53645)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53645\" x1=\"11.9648\" y1=\"0.542511\" x2=\"11.9648\" y2=\"19.4575\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed29()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15aw3c\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"mJfL3mNjc\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lxvn69\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I14348:53585;14348:53524\",svg:'<svg width=\"16\" height=\"20\" viewBox=\"0 0 16 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.3555 4.06249H15.7055C15.6793 4.01371 15.6456 3.96941 15.6055 3.93124L11.8555 0.181244C11.8193 0.143212 11.7771 0.11152 11.7305 0.0874939V3.43749C11.7305 3.78124 12.0117 4.06249 12.3555 4.06249Z\" fill=\"url(#paint0_linear_14348_53635)\"/>\\n<path d=\"M12.3523 5.3125C11.3148 5.3125 10.4773 4.46875 10.4773 3.4375V0H2.08984C1.05234 0 0.214844 0.84375 0.214844 1.875V18.125C0.214844 19.1562 1.05234 20 2.08984 20H13.9148C14.9461 20 15.7898 19.1562 15.7898 18.125V5.3125H12.3523ZM8.00234 16.85C6.76577 16.85 5.57985 16.3588 4.70546 15.4844C3.83107 14.61 3.33984 13.4241 3.33984 12.1875C3.33984 10.9509 3.83107 9.765 4.70546 8.89061C5.57985 8.01623 6.76577 7.525 8.00234 7.525C10.5773 7.525 12.6586 9.6125 12.6586 12.1875C12.6586 14.7625 10.5773 16.85 8.00234 16.85Z\" fill=\"url(#paint1_linear_14348_53635)\"/>\\n<path d=\"M9.11434 10.7219L7.50872 12.3281L6.88372 11.7025C6.82569 11.6444 6.7568 11.5983 6.68096 11.5669C6.60513 11.5355 6.52385 11.5193 6.44175 11.5192C6.35966 11.5192 6.27837 11.5353 6.20251 11.5667C6.12666 11.5981 6.05773 11.6441 5.99966 11.7022C5.94159 11.7602 5.89552 11.8291 5.86408 11.9049C5.83263 11.9808 5.81644 12.062 5.81641 12.1441C5.81638 12.2262 5.83252 12.3075 5.86391 12.3834C5.8953 12.4592 5.94132 12.5282 5.99935 12.5862L7.06684 13.6537C7.18405 13.7709 7.34299 13.8367 7.50872 13.8367C7.67445 13.8367 7.83339 13.7709 7.9506 13.6537L9.99872 11.6056C10.0567 11.5475 10.1028 11.4786 10.1342 11.4028C10.1655 11.3269 10.1817 11.2456 10.1817 11.1635C10.1816 11.0814 10.1654 11.0001 10.134 10.9243C10.1025 10.8485 10.0565 10.7796 9.99841 10.7215C9.94034 10.6635 9.87141 10.6175 9.79555 10.5861C9.7197 10.5547 9.63841 10.5386 9.55631 10.5386C9.47422 10.5386 9.39294 10.5548 9.3171 10.5863C9.24127 10.6177 9.17237 10.6638 9.11434 10.7219Z\" fill=\"url(#paint2_linear_14348_53635)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53635\" x1=\"13.718\" y1=\"0.0874939\" x2=\"13.718\" y2=\"4.06249\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FEA94C\"/>\\n<stop offset=\"1\" stop-color=\"#FF7B34\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53635\" x1=\"8.00234\" y1=\"0\" x2=\"8.00234\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FEA94C\"/>\\n<stop offset=\"1\" stop-color=\"#FF7B34\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14348_53635\" x1=\"7.99903\" y1=\"10.5386\" x2=\"7.99903\" y2=\"13.8367\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FEA94C\"/>\\n<stop offset=\"1\" stop-color=\"#FF7B34\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed30()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16z23q4\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"m9itVt6BO\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lwzpq8\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53586;14348:53529\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5.8332 10C5.8332 9.1524 6.0908 8.3648 6.5272 7.706L2.37 3.5484C0.8944 5.2912 0 7.5412 0 10C0 12.4588 0.8944 14.7088 2.37 16.4516L6.5272 12.2944C6.07485 11.6147 5.83341 10.8165 5.8332 10ZM13.4724 7.706C13.925 8.38544 14.1666 9.1836 14.1666 10C14.1666 10.8164 13.925 11.6146 13.4724 12.294L17.6296 16.4512C19.1056 14.7088 20 12.4588 20 10C20 7.5412 19.1056 5.2912 17.63 3.5484L13.4724 7.706ZM10 0C7.5412 0 5.2912 0.8944 3.5484 2.37L7.7056 6.5272C8.38504 6.07456 9.1832 5.83304 9.9996 5.83304C10.816 5.83304 11.6142 6.07456 12.2936 6.5272L16.4508 2.37C14.7088 0.8944 12.4588 0 10 0Z\" fill=\"url(#paint0_linear_14348_53617)\"/>\\n<path d=\"M10 12.5C11.3807 12.5 12.5 11.3807 12.5 10C12.5 8.61929 11.3807 7.5 10 7.5C8.61929 7.5 7.5 8.61929 7.5 10C7.5 11.3807 8.61929 12.5 10 12.5Z\" fill=\"url(#paint1_linear_14348_53617)\"/>\\n<path d=\"M9.99848 14.1668C9.15088 14.1668 8.36328 13.9092 7.70448 13.4728L3.54688 17.63C5.28968 19.1056 7.53968 20 9.99848 20C12.4573 20 14.7073 19.1056 16.4501 17.63L12.2925 13.4724C11.6131 13.9251 10.8149 14.1667 9.99848 14.1668Z\" fill=\"url(#paint2_linear_14348_53617)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53617\" x1=\"10\" y1=\"3.95963\" x2=\"10\" y2=\"16.4516\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53617\" x1=\"10\" y1=\"8.70342\" x2=\"10\" y2=\"12.5\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14348_53617\" x1=\"9.99848\" y1=\"15.0435\" x2=\"9.99848\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed31()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j9cxk4\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"AwfxMBeJy\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cqgmjs\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53587;14348:53534\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.625 0C13.2125 0 11.25 1.9625 11.25 4.375C11.25 6.62 14.76 10.5962 15.16 11.0425C15.2788 11.1737 15.4475 11.25 15.625 11.25C15.8025 11.25 15.9712 11.1737 16.09 11.0425C16.49 10.5962 20 6.62 20 4.375C20 1.9625 18.0375 0 15.625 0ZM15.625 6.25C14.59 6.25 13.75 5.41 13.75 4.375C13.75 3.34 14.59 2.5 15.625 2.5C16.66 2.5 17.5 3.34 17.5 4.375C17.5 5.41 16.66 6.25 15.625 6.25ZM0.3925 7.3425C0.276591 7.38922 0.177293 7.46953 0.107355 7.5731C0.0374175 7.67667 3.24196e-05 7.79878 0 7.92375L0 19.375C0 19.5825 0.10375 19.7762 0.275 19.8925C0.38 19.9625 0.50125 20 0.625 20C0.70375 20 0.7825 19.985 0.8575 19.955L6.25 17.7975V5L0.3925 7.3425Z\" fill=\"url(#paint0_linear_14348_53604)\"/>\\n<path d=\"M17.02 11.8775C16.665 12.2725 16.1563 12.5 15.625 12.5C15.0937 12.5 14.585 12.2725 14.23 11.8775C14.1025 11.7362 13.9387 11.55 13.75 11.3287V20L19.6075 17.6575C19.845 17.5638 20 17.3325 20 17.0775V7.88875C18.9762 9.6225 17.6075 11.2225 17.02 11.8775ZM10.3937 6.1575L7.5 5V17.7975L12.5 19.7975V9.76C11.7013 8.68375 10.8675 7.3875 10.3937 6.1575Z\" fill=\"url(#paint1_linear_14348_53604)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53604\" x1=\"10\" y1=\"0\" x2=\"10\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53604\" x1=\"13.75\" y1=\"5\" x2=\"13.75\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed32()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sxqqj3\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"qpoXsQU9A\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jvvi2a\",\"data-framer-name\":\"Subtract\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53588;14348:53538\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.199088 0.19979C0.0741154 0.324763 0.00390625 0.494263 0.00390625 0.671002C0.00390625 0.84774 0.0741154 1.01724 0.199088 1.14221C0.324061 1.26719 0.493561 1.3374 0.6703 1.3374H1.0035V10.6669C1.0035 13.2432 3.09197 15.3317 5.66825 15.3317H8.39114L4.86392 18.8589C4.80027 18.9204 4.7495 18.9939 4.71458 19.0752C4.67965 19.1565 4.66127 19.2439 4.6605 19.3324C4.65973 19.4209 4.67659 19.5087 4.7101 19.5906C4.7436 19.6725 4.79309 19.7469 4.85566 19.8094C4.91823 19.872 4.99263 19.9215 5.07453 19.955C5.15642 19.9885 5.24417 20.0054 5.33266 20.0046C5.42114 20.0038 5.50858 19.9854 5.58989 19.9505C5.67119 19.9156 5.74472 19.8648 5.8062 19.8012L9.99981 15.6075L14.1934 19.8012C14.2549 19.8648 14.3284 19.9156 14.4097 19.9505C14.491 19.9854 14.5785 20.0038 14.667 20.0046C14.7554 20.0054 14.8432 19.9885 14.9251 19.955C15.007 19.9215 15.0814 19.872 15.144 19.8094C15.2065 19.7469 15.256 19.6725 15.2895 19.5906C15.323 19.5087 15.3399 19.4209 15.3391 19.3324C15.3384 19.2439 15.32 19.1565 15.285 19.0752C15.2501 18.9939 15.1994 18.9204 15.1357 18.8589L11.6085 15.3317H14.3314C16.9076 15.3317 18.9961 13.2432 18.9961 10.6669V1.3374H19.3293C19.5061 1.3374 19.6756 1.26719 19.8005 1.14221C19.9255 1.01724 19.9957 0.84774 19.9957 0.671002C19.9957 0.494263 19.9255 0.324763 19.8005 0.19979C19.6756 0.0748173 19.5061 0.00460815 19.3293 0.00460815H0.6703C0.493561 0.00460815 0.324061 0.0748173 0.199088 0.19979ZM7.33424 4.60965C7.33424 3.87111 7.85379 3.56997 8.49464 3.93757L13.2583 6.66943C13.8993 7.03707 13.8993 7.63284 13.2583 8.00057L8.49464 10.7325C7.85379 11.0997 7.33424 10.799 7.33424 10.0597V4.60965Z\" fill=\"url(#paint0_linear_14348_53647)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53647\" x1=\"9.99981\" y1=\"0.00460815\" x2=\"9.99981\" y2=\"20.0046\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed33()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-56mwln\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"FNZApoMux\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-11bqcgi\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53589;14348:53540\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.1519 19.6L19.6128 14.1464C20.1292 13.6323 20.1288 12.7308 19.6132 12.2177L17.793 10.4C17.5357 10.1421 17.1926 10.0001 16.8272 10.0001C16.4618 10.0001 16.1187 10.1421 15.8618 10.3996L10.4005 15.8536C10.1423 16.1106 10 16.4533 10 16.8182C10 17.1831 10.1423 17.5257 10.4 17.7823L12.2202 19.6C12.4775 19.8579 12.8207 20 13.186 20C13.5514 20 13.8946 19.8579 14.1519 19.6ZM14.9485 10.0195C15.0981 9.87038 15.1247 9.63865 15.0147 9.46065C14.201 8.13341 13.2311 6.05422 13.2311 3.68564C13.2311 3.4828 13.0966 3.30434 12.9013 3.24843L1.59235 0.0173503C1.49446 -0.0105111 1.39006 -0.00474997 1.29583 0.0337127C1.2016 0.0721755 1.12299 0.141119 1.07255 0.229522C0.970026 0.411056 1.00241 0.640997 1.15556 0.784818L6.88042 6.19182C7.07307 6.37335 7.34427 6.45905 7.62483 6.42662C8.17348 6.36402 8.67376 6.61527 8.96272 7.09821C9.21576 7.52255 9.20332 8.08586 8.93298 8.50355C8.69728 8.86534 8.33729 9.08906 7.91959 9.13253C7.50812 9.17557 7.10461 9.03264 6.81254 8.74057C6.52 8.44803 6.38108 8.0432 6.42769 7.62329C6.46144 7.33697 6.37532 7.07422 6.192 6.88067L0.784914 1.15551C0.714991 1.08154 0.622275 1.03315 0.521602 1.0181C0.420929 1.00305 0.318118 1.02221 0.229618 1.0725C0.159904 1.11224 0.10195 1.16972 0.0616459 1.23911C0.0213415 1.3085 0.00012217 1.38732 0.000144605 1.46757C0.000144603 1.50886 0.00589766 1.55101 0.0174459 1.5923L3.24852 12.9013C3.27569 12.9963 3.33306 13.0798 3.41194 13.1393C3.49082 13.1988 3.58693 13.231 3.68574 13.2311C6.05432 13.2311 8.13351 14.201 9.46075 15.0146C9.5478 15.0679 9.65027 15.0904 9.75165 15.0784C9.85303 15.0664 9.94742 15.0207 10.0196 14.9485L14.9485 10.0195Z\" fill=\"url(#paint0_linear_14348_53652)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53652\" x1=\"20\" y1=\"9.99997\" x2=\"0.000144521\" y2=\"9.99997\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FEA94C\"/>\\n<stop offset=\"1\" stop-color=\"#FF7B34\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed34()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fxfoxg\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"gDZJV5Agf\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lztqnr\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:22,layoutDependency:layoutDependency,layoutId:\"I14348:53590;14348:53543\",svg:'<svg width=\"22\" height=\"16\" viewBox=\"0 0 22 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.35 1.70301C20.35 0.927506 19.734 0.300507 18.975 0.300507H3.025C2.266 0.300507 1.65 0.927506 1.65 1.70301V12.4005H20.35V1.70301ZM8.492 8.39651C8.7285 8.58901 8.767 8.93551 8.5745 9.17201C8.4645 9.30401 8.305 9.37551 8.1455 9.37551C8.0245 9.37551 7.9035 9.33151 7.799 9.24901L6.347 8.06651C6.16 7.91251 6.05 7.68701 6.05 7.45051C6.05 7.21401 6.16 6.98851 6.347 6.83451L7.799 5.64651C8.0355 5.45401 8.382 5.49251 8.5745 5.72901C8.767 5.96001 8.7285 6.30651 8.4975 6.49901L7.3315 7.45051L8.492 8.39651ZM11.979 6.25151L11.0605 9.00151C10.9835 9.22701 10.769 9.37551 10.5435 9.37551C10.4558 9.37635 10.3692 9.35612 10.291 9.31652C10.2128 9.27692 10.1453 9.21911 10.094 9.14796C10.0428 9.0768 10.0095 8.99438 9.99676 8.90764C9.98405 8.82089 9.99236 8.73237 10.021 8.64951L10.9395 5.89951C10.9859 5.762 11.0848 5.64842 11.2146 5.58352C11.3444 5.51861 11.4946 5.50765 11.6325 5.55301C11.924 5.65201 12.078 5.96001 11.979 6.25151ZM15.653 8.06651L14.201 9.24901C14.0965 9.33151 13.9755 9.37551 13.8545 9.37551C13.695 9.37551 13.5355 9.30401 13.4255 9.17201C13.334 9.0585 13.2908 8.91357 13.3052 8.76849C13.3196 8.62341 13.3905 8.48981 13.5025 8.39651L14.6685 7.45051L13.5025 6.49901C13.3906 6.40685 13.3197 6.27415 13.3052 6.12988C13.2908 5.98562 13.334 5.8415 13.4255 5.72901C13.618 5.49251 13.9645 5.45401 14.201 5.64651L15.653 6.83451C15.84 6.98851 15.95 7.21401 15.95 7.45051C15.95 7.68701 15.84 7.91251 15.653 8.06651ZM22 13.5775C22 14.1605 21.791 14.694 21.45 15.079C21.109 15.464 20.636 15.7005 20.1135 15.7005H1.8865C0.847 15.7005 0 14.749 0 13.5775C0 13.55 1.26008e-07 13.528 0.00550013 13.5005H8.3325C8.283 13.583 8.25 13.671 8.25 13.7755C8.25 14.078 8.4975 14.3255 8.8 14.3255H13.2C13.5025 14.3255 13.75 14.078 13.75 13.7755C13.75 13.671 13.717 13.583 13.6675 13.5005H21.9945C22 13.528 22 13.55 22 13.5775Z\" fill=\"url(#paint0_linear_14348_53648)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53648\" x1=\"11\" y1=\"4.00703\" x2=\"11\" y2=\"15.7005\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed35()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-iehyei\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"u1Qdttke6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nkbhi0\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53591;14348:53546\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.4701 5.53167L14.4691 5.52816C13.53 4.58816 12.551 3.75813 11.5666 3.04138C11.9873 2.81438 12.4023 2.60588 12.8026 2.43488C13.6766 3.1049 14.5373 3.82737 15.3546 4.64388C16.1502 5.43979 16.8929 6.28684 17.5781 7.17963C17.9761 7.69613 18.3468 8.22011 18.6863 8.74614C20.2798 5.5494 20.4931 2.60686 18.9426 1.05763L18.9401 1.06012C16.4703 -1.40913 10.4655 0.592883 5.52826 5.53089V5.5284C4.58827 6.46839 3.7575 7.44643 3.04051 8.43217C2.81453 8.01215 2.60598 7.59716 2.43499 7.1974C3.10574 6.32289 3.82747 5.46214 4.64374 4.64466C5.43972 3.8495 6.28677 3.10716 7.17949 2.42238C7.69697 2.02438 8.22124 1.65387 8.74697 1.31437C5.54921 -0.279875 2.60745 -0.492913 1.05647 1.05787C-1.41102 3.52815 0.590985 9.53291 5.52899 14.4699C6.46825 15.411 7.44799 16.2409 8.4335 16.9587C8.0125 17.1857 7.59751 17.3937 7.19751 17.5647C6.32348 16.8952 5.46249 16.1717 4.64525 15.3562C3.84991 14.5603 3.10725 13.7134 2.422 12.821C2.02473 12.3035 1.65373 11.7795 1.3135 11.254C-0.27977 14.4502 -0.493248 17.3932 1.05798 18.9435L1.05725 18.9415C3.52728 21.4107 9.53204 19.4087 14.4691 14.4707C15.4091 13.5312 16.2408 12.5517 16.9578 11.5665C17.1856 11.987 17.3938 12.403 17.5648 12.8032C16.8951 13.6772 16.1718 14.538 15.3553 15.355C14.5593 16.15 13.7125 16.8925 12.8203 17.5778C12.3028 17.9758 11.7788 18.3468 11.2528 18.6863C14.4493 20.2795 17.3931 20.493 18.9433 18.9425L18.9408 18.9435C21.4101 16.4737 19.4081 10.4687 14.4701 5.53167ZM9.99908 13.3334C8.1583 13.3334 6.66508 11.8417 6.66508 9.99941C6.66508 8.15864 8.15835 6.6659 9.99908 6.6659C11.8398 6.6659 13.3316 8.15868 13.3316 9.99941C13.3316 11.8417 11.8399 13.3334 9.99908 13.3334Z\" fill=\"url(#paint0_linear_14348_53601)\"/>\\n<path d=\"M9.99879 8.33243C9.07827 8.33243 8.33203 9.07892 8.33203 9.99943C8.33203 10.9215 9.07827 11.6669 9.99879 11.6669C10.9193 11.6669 11.6646 10.9214 11.6646 9.99943C11.6646 9.07892 10.9193 8.33243 9.99879 8.33243Z\" fill=\"url(#paint1_linear_14348_53601)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53601\" x1=\"10\" y1=\"0.000183105\" x2=\"10\" y2=\"19.9999\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53601\" x1=\"9.9983\" y1=\"8.33243\" x2=\"9.9983\" y2=\"11.6669\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4396FF\"/>\\n<stop offset=\"1\" stop-color=\"#276DFF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed36()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o44m3v\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"x_EmPNkh0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zmyixu\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53592;14348:53550\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.0627 2.9297C13.1567 -0.976314 6.83461 -0.9769 2.92805 2.9297C-0.212954 6.07067 -0.806497 10.7411 1.05048 14.4604L0.0209755 18.9889C-0.112838 19.5775 0.414677 20.1052 1.00349 19.9714L5.53193 18.9419C12.1163 22.2293 19.9902 17.4699 19.9902 9.99705C19.9902 7.32742 18.9505 4.81752 17.0627 2.9297ZM12.0803 12.4859H5.82548C5.37208 12.4859 5.00453 12.1184 5.00453 11.665C5.00453 11.2116 5.37208 10.844 5.82548 10.844H12.0803C12.5337 10.844 12.9012 11.2116 12.9012 11.665C12.9012 12.1184 12.5337 12.4859 12.0803 12.4859ZM14.1653 9.15003H5.82548C5.37208 9.15003 5.00453 8.78248 5.00453 8.32909C5.00453 7.87569 5.37208 7.50814 5.82548 7.50814H14.1653C14.6186 7.50814 14.9862 7.87569 14.9862 8.32909C14.9862 8.78248 14.6186 9.15003 14.1653 9.15003Z\" fill=\"url(#paint0_linear_14348_53639)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53639\" x1=\"9.99508\" y1=\"4.81364\" x2=\"9.99508\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF6DB3\"/>\\n<stop offset=\"1\" stop-color=\"#FF3087\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed37()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3z4ukf\",\"data-framer-name\":\"Nav bar icons\",layoutDependency:layoutDependency,layoutId:\"pvZgMN0ia\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e04qfn\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"I14348:53593;14348:53553\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.5625 3.05176e-05C14.75 3.05176e-05 13.2812 1.46878 13.2812 3.28128C13.2812 5.00003 16.0312 7.84378 16.3437 8.15628C16.4375 8.28128 16.6563 8.28128 16.7813 8.15628C17.0938 7.84378 19.8438 5.00003 19.8438 3.28128C19.875 1.46878 18.375 3.05176e-05 16.5625 3.05176e-05ZM16.5625 4.28128C15.8438 4.28128 15.2813 3.71878 15.2813 3.00003C15.2813 2.28128 15.8438 1.71878 16.5625 1.71878C17.2812 1.71878 17.8437 2.28128 17.8437 3.00003C17.8437 3.71878 17.2812 4.28128 16.5625 4.28128ZM3.4375 10.5313C1.625 10.5313 0.15625 12 0.15625 13.8125C0.15625 15.5313 2.90625 18.375 3.21875 18.6875C3.34375 18.8125 3.53125 18.8125 3.65625 18.6875C3.96875 18.375 6.71875 15.5313 6.71875 13.8125C6.71875 12 5.25 10.5313 3.4375 10.5313ZM3.4375 14.8125C2.71875 14.8125 2.15625 14.25 2.15625 13.5313C2.15625 12.8125 2.71875 12.25 3.4375 12.25C4.15625 12.25 4.71875 12.8125 4.71875 13.5313C4.71875 14.25 4.125 14.8125 3.4375 14.8125Z\" fill=\"url(#paint0_linear_14348_53594)\"/>\\n<path d=\"M17.8437 16.25C17.8437 17.0938 17.1563 17.7813 16.3125 17.7813C16.1875 17.7813 16.0937 17.7813 15.9687 17.75C15.3437 18.4063 14.4688 18.7813 13.5625 18.7813H11.4688C11.3437 19.4688 10.7187 20 10 20C9.28125 20 8.65625 19.4688 8.5 18.7813H4.4375C4.59375 18.5938 4.78125 18.4063 5 18.1563H8.53125C8.6875 17.4688 9.28125 16.9375 10.0312 16.9375C10.7812 16.9375 11.375 17.4688 11.5313 18.1563H13.625C14.3125 18.1563 14.9375 17.9063 15.4375 17.4375C15.0625 17.1563 14.8437 16.7188 14.8437 16.25C14.8437 15.4375 15.4687 14.7813 16.25 14.7188C16.0312 13.4688 14.9375 12.5313 13.625 12.5313C12.4062 12.4063 11.0313 12.9063 9.8125 11.6875C9.65625 11.75 9.46875 11.7813 9.28125 11.7813C8.4375 11.7813 7.75 11.0938 7.75 10.25C7.75 9.43753 8.375 8.78128 9.1875 8.71878C9.53125 8.03128 10.2188 7.59378 11 7.59378H15.0625C15.2812 7.84378 15.4687 8.06253 15.625 8.21878H10.9687C10.5 8.21878 10.0938 8.43753 9.8125 8.81253C10.375 9.03128 10.7812 9.59378 10.7812 10.2188C10.7812 10.6563 10.625 11.0313 10.3437 11.3125C11.3125 12.1875 12.3125 11.8125 13.625 11.875C15.3125 11.875 16.6875 13.125 16.9062 14.7813C17.4375 15.0313 17.8437 15.5938 17.8437 16.25Z\" fill=\"url(#paint1_linear_14348_53594)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14348_53594\" x1=\"10.0002\" y1=\"3.05176e-05\" x2=\"10.0002\" y2=\"18.7813\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14348_53594\" x1=\"11.1406\" y1=\"7.59378\" x2=\"11.1406\" y2=\"20\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#38D29A\"/>\\n<stop offset=\"1\" stop-color=\"#10AA76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WXpjY.framer-bx0gi5, .framer-WXpjY .framer-bx0gi5 { display: block; }\",\".framer-WXpjY.framer-1kuz3ro { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 24px; }\",\".framer-WXpjY .framer-1e4zrq7, .framer-WXpjY .framer-y81k9d, .framer-WXpjY .framer-15wx1hl, .framer-WXpjY .framer-1ki5qk1, .framer-WXpjY .framer-rkp3x5, .framer-WXpjY .framer-1o9kvza, .framer-WXpjY .framer-19ny30g, .framer-WXpjY .framer-1hjujlv, .framer-WXpjY .framer-3hdbl3, .framer-WXpjY .framer-ziryik, .framer-WXpjY .framer-1mn1r5m, .framer-WXpjY .framer-pmfwmu, .framer-WXpjY .framer-gt1vdy, .framer-WXpjY .framer-1l04cye, .framer-WXpjY .framer-1g4o9jb, .framer-WXpjY .framer-1r0efor, .framer-WXpjY .framer-u5wr0, .framer-WXpjY .framer-1yd3onh, .framer-WXpjY .framer-1g199hz, .framer-WXpjY .framer-qk0gdt, .framer-WXpjY .framer-1wijpqb, .framer-WXpjY .framer-1bp9mws, .framer-WXpjY .framer-13z0n80, .framer-WXpjY .framer-12m15g3, .framer-WXpjY .framer-smwg0l, .framer-WXpjY .framer-mhwnub, .framer-WXpjY .framer-1bdtjet, .framer-WXpjY .framer-10jk2mj, .framer-WXpjY .framer-yfywdu, .framer-WXpjY .framer-15aw3c, .framer-WXpjY .framer-16z23q4, .framer-WXpjY .framer-j9cxk4, .framer-WXpjY .framer-sxqqj3, .framer-WXpjY .framer-56mwln, .framer-WXpjY .framer-1fxfoxg, .framer-WXpjY .framer-iehyei, .framer-WXpjY .framer-1o44m3v, .framer-WXpjY .framer-3z4ukf { flex: none; height: 100%; overflow: hidden; position: relative; width: 100%; }\",\".framer-WXpjY .framer-1m2w4xk, .framer-WXpjY .framer-1dqdizd { flex: none; height: 88%; left: calc(50.00000000000002% - 83.33333333333334% / 2); position: absolute; top: calc(50.00000000000002% - 87.5% / 2); width: 83%; }\",\".framer-WXpjY .framer-1vmq1vk, .framer-WXpjY .framer-1dbh1if { flex: none; height: 92%; left: calc(50.00000000000002% - 91.66666666666666% / 2); position: absolute; top: calc(50.00000000000002% - 91.66666666666666% / 2); width: 92%; }\",\".framer-WXpjY .framer-k9c5gy, .framer-WXpjY .framer-1lby077, .framer-WXpjY .framer-1a5ych8, .framer-WXpjY .framer-3fvabk, .framer-WXpjY .framer-1lg5g8d, .framer-WXpjY .framer-1kf5dic, .framer-WXpjY .framer-oysjmu, .framer-WXpjY .framer-gvr5hu, .framer-WXpjY .framer-thgbf4, .framer-WXpjY .framer-1gu3abx, .framer-WXpjY .framer-16w9lt7, .framer-WXpjY .framer-pep84v, .framer-WXpjY .framer-tq12ps, .framer-WXpjY .framer-1lwzpq8, .framer-WXpjY .framer-cqgmjs, .framer-WXpjY .framer-jvvi2a, .framer-WXpjY .framer-11bqcgi, .framer-WXpjY .framer-1nkbhi0, .framer-WXpjY .framer-zmyixu, .framer-WXpjY .framer-1e04qfn { flex: none; height: 83%; left: calc(50.00000000000002% - 83.33333333333334% / 2); position: absolute; top: calc(50.00000000000002% - 83.33333333333334% / 2); width: 83%; }\",\".framer-WXpjY .framer-au5k43, .framer-WXpjY .framer-183bp2w { flex: none; height: 67%; left: calc(50.00000000000002% - 83.33333333333334% / 2); position: absolute; top: calc(50.00000000000002% - 66.66666666666666% / 2); width: 83%; }\",\".framer-WXpjY .framer-1m0d4jk, .framer-WXpjY .framer-ecp2qy { flex: none; height: 75%; left: calc(50.00000000000002% - 83.33333333333334% / 2); position: absolute; top: calc(50.00000000000002% - 75% / 2); width: 83%; }\",\".framer-WXpjY .framer-12wgt7j, .framer-WXpjY .framer-10olfsl { flex: none; height: 83%; left: calc(50.00000000000002% - 91.66666666666666% / 2); position: absolute; top: calc(50.00000000000002% - 83.33333333333334% / 2); width: 92%; }\",\".framer-WXpjY .framer-14gxhjh, .framer-WXpjY .framer-p8mxh4 { flex: none; height: 83%; left: calc(50.00000000000002% - 75% / 2); position: absolute; top: calc(50.00000000000002% - 83.33333333333334% / 2); width: 75%; }\",\".framer-WXpjY .framer-14x1ka1, .framer-WXpjY .framer-1gsqow9 { flex: none; height: 83%; left: calc(50.00000000000002% - 95.83333333333334% / 2); position: absolute; top: calc(50.00000000000002% - 83.33333333333334% / 2); width: 96%; }\",\".framer-WXpjY .framer-2n8z0q, .framer-WXpjY .framer-1lxvn69 { flex: none; height: 83%; left: calc(50.00000000000002% - 66.66666666666666% / 2); position: absolute; top: calc(50.00000000000002% - 83.33333333333334% / 2); width: 67%; }\",\".framer-WXpjY .framer-kqb66t, .framer-WXpjY .framer-1lztqnr { flex: none; height: 67%; left: calc(50.00000000000002% - 91.66666666666666% / 2); position: absolute; top: calc(50.00000000000002% - 66.66666666666666% / 2); width: 92%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-WXpjY.framer-1kuz3ro { gap: 0px; } .framer-WXpjY.framer-1kuz3ro > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-WXpjY.framer-1kuz3ro > :first-child { margin-left: 0px; } .framer-WXpjY.framer-1kuz3ro > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fruflzyCA\":{\"layout\":[\"fixed\",\"fixed\"]},\"BSws5LT2W\":{\"layout\":[\"fixed\",\"fixed\"]},\"Kq8wxQo6M\":{\"layout\":[\"fixed\",\"fixed\"]},\"kvfYD9GjX\":{\"layout\":[\"fixed\",\"fixed\"]},\"EKrBNaMyB\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gix9dCZ4X\":{\"layout\":[\"fixed\",\"fixed\"]},\"gNwPKfPrn\":{\"layout\":[\"fixed\",\"fixed\"]},\"SDB9o0fXd\":{\"layout\":[\"fixed\",\"fixed\"]},\"yt3LPAPhD\":{\"layout\":[\"fixed\",\"fixed\"]},\"TfVCxL9qz\":{\"layout\":[\"fixed\",\"fixed\"]},\"OSPsA6zJJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"oSlNghQwJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"ePXDI3azn\":{\"layout\":[\"fixed\",\"fixed\"]},\"dFfSVTfnd\":{\"layout\":[\"fixed\",\"fixed\"]},\"NAsNWWwVV\":{\"layout\":[\"fixed\",\"fixed\"]},\"EAW2vxSRX\":{\"layout\":[\"fixed\",\"fixed\"]},\"tzKGCXRsG\":{\"layout\":[\"fixed\",\"fixed\"]},\"oXZULtr14\":{\"layout\":[\"fixed\",\"fixed\"]},\"i1i58YnrM\":{\"layout\":[\"fixed\",\"fixed\"]},\"SM143sF0X\":{\"layout\":[\"fixed\",\"fixed\"]},\"Rd569CKHL\":{\"layout\":[\"fixed\",\"fixed\"]},\"MH6q7OA20\":{\"layout\":[\"fixed\",\"fixed\"]},\"EBckmBvik\":{\"layout\":[\"fixed\",\"fixed\"]},\"b2zOISsFJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y73b8W2JM\":{\"layout\":[\"fixed\",\"fixed\"]},\"MUJhO5hK4\":{\"layout\":[\"fixed\",\"fixed\"]},\"uZcayXtyp\":{\"layout\":[\"fixed\",\"fixed\"]},\"zuhYOstb1\":{\"layout\":[\"fixed\",\"fixed\"]},\"IPY7D7HDd\":{\"layout\":[\"fixed\",\"fixed\"]},\"DFuOcTv5P\":{\"layout\":[\"fixed\",\"fixed\"]},\"YYjyfZOge\":{\"layout\":[\"fixed\",\"fixed\"]},\"u5vzp95W4\":{\"layout\":[\"fixed\",\"fixed\"]},\"XycUOIYgt\":{\"layout\":[\"fixed\",\"fixed\"]},\"Y4FgbA1pp\":{\"layout\":[\"fixed\",\"fixed\"]},\"N_sqHPFJd\":{\"layout\":[\"fixed\",\"fixed\"]},\"rYw0s7qn7\":{\"layout\":[\"fixed\",\"fixed\"]},\"atyD1JpQS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDfvdg34Vu=withCSS(Component,css,\"framer-WXpjY\");export default FramerDfvdg34Vu;FramerDfvdg34Vu.displayName=\"Navtab- Icon\";FramerDfvdg34Vu.defaultProps={height:24,width:24};addPropertyControls(FramerDfvdg34Vu,{variant:{options:[\"qjF6bpPqr\",\"fruflzyCA\",\"BSws5LT2W\",\"Kq8wxQo6M\",\"kvfYD9GjX\",\"EKrBNaMyB\",\"Gix9dCZ4X\",\"gNwPKfPrn\",\"SDB9o0fXd\",\"yt3LPAPhD\",\"TfVCxL9qz\",\"OSPsA6zJJ\",\"oSlNghQwJ\",\"ePXDI3azn\",\"dFfSVTfnd\",\"NAsNWWwVV\",\"EAW2vxSRX\",\"tzKGCXRsG\",\"oXZULtr14\",\"i1i58YnrM\",\"SM143sF0X\",\"Rd569CKHL\",\"MH6q7OA20\",\"EBckmBvik\",\"b2zOISsFJ\",\"Y73b8W2JM\",\"MUJhO5hK4\",\"uZcayXtyp\",\"zuhYOstb1\",\"IPY7D7HDd\",\"DFuOcTv5P\",\"YYjyfZOge\",\"u5vzp95W4\",\"XycUOIYgt\",\"Y4FgbA1pp\",\"N_sqHPFJd\",\"rYw0s7qn7\",\"atyD1JpQS\"],optionTitles:[\"Task-Ideal\",\"Task-Active\",\"Invoice-Ideal\",\"Invoice-Active\",\"Time- Ideal\",\"Time-Active\",\"Feature-Ideal\",\"Feature-Active\",\"Documents-Ideal\",\"Documents-Active\",\"Team-Ideal\",\"Team-Active\",\"Client-Ideal\",\"Client-Active\",\"Report-Ideal\",\"Report-Active\",\"Integration-Ideal\",\"Integration-Active\",\"Blog-Ideal\",\"Blog-Active\",\"API-Ideal\",\"API-Active\",\"Help-Center-Ideal\",\"Help-Center-Active\",\"Remote-Ideal\",\"Remote-Active\",\"Marketing-Ideal\",\"Marketing-Active\",\"Agency-Ideal\",\"Agency-Active\",\"IT-Ideal\",\"IT-Active\",\"Update-Ideal\",\"Update-Active\",\"Massage-Ideal\",\"Massage-Active\",\"Roadmap-Ideal\",\"Roadmap-Active\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDfvdg34Vu,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDfvdg34Vu\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fruflzyCA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BSws5LT2W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Kq8wxQo6M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kvfYD9GjX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EKrBNaMyB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gix9dCZ4X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gNwPKfPrn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SDB9o0fXd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yt3LPAPhD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TfVCxL9qz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OSPsA6zJJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oSlNghQwJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ePXDI3azn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dFfSVTfnd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NAsNWWwVV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EAW2vxSRX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tzKGCXRsG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"oXZULtr14\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"i1i58YnrM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SM143sF0X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Rd569CKHL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MH6q7OA20\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EBckmBvik\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"b2zOISsFJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y73b8W2JM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MUJhO5hK4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"uZcayXtyp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zuhYOstb1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IPY7D7HDd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"DFuOcTv5P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YYjyfZOge\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u5vzp95W4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XycUOIYgt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Y4FgbA1pp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N_sqHPFJd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rYw0s7qn7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"atyD1JpQS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Dfvdg34Vu.map", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/XKrCcKyK2PDBeaXUsMjH/TqreinkLve4XhvVNJjmY/UIDGim5Fo.js\";import NavtabIcon from\"https://framerusercontent.com/modules/rIfwRqmhHI1CQHY5yVWK/Yc4hNMfwsahYTUDYJUMv/Dfvdg34Vu.js\";const NavtabIconFonts=getFonts(NavtabIcon);const NavtabIconControls=getPropertyControls(NavtabIcon);const enabledGestures={yYsQOY7cF:{hover:true}};const cycleOrder=[\"yYsQOY7cF\",\"in7_lKEzl\",\"U8YK0cytT\"];const serializationHash=\"framer-tHCSs\";const variantClassNames={in7_lKEzl:\"framer-v-k5i79n\",U8YK0cytT:\"framer-v-sooq6x\",yYsQOY7cF:\"framer-v-oorq5v\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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 humanReadableEnumMap={\"Agency-Active\":\"IPY7D7HDd\",\"Agency-Ideal\":\"zuhYOstb1\",\"API-Active\":\"Rd569CKHL\",\"API-Ideal\":\"SM143sF0X\",\"Blog-Active\":\"i1i58YnrM\",\"Blog-Ideal\":\"oXZULtr14\",\"Client-Active\":\"ePXDI3azn\",\"Client-Ideal\":\"oSlNghQwJ\",\"Documents-Active\":\"yt3LPAPhD\",\"Documents-Ideal\":\"SDB9o0fXd\",\"Feature-Active\":\"gNwPKfPrn\",\"Feature-Ideal\":\"Gix9dCZ4X\",\"Help-Center-Active\":\"EBckmBvik\",\"Help-Center-Ideal\":\"MH6q7OA20\",\"Integration-Active\":\"tzKGCXRsG\",\"Integration-Ideal\":\"EAW2vxSRX\",\"Invoice-Active\":\"Kq8wxQo6M\",\"Invoice-Ideal\":\"BSws5LT2W\",\"IT-Active\":\"YYjyfZOge\",\"IT-Ideal\":\"DFuOcTv5P\",\"Marketing-Active\":\"uZcayXtyp\",\"Marketing-Ideal\":\"MUJhO5hK4\",\"Massage-Active\":\"N_sqHPFJd\",\"Massage-Ideal\":\"Y4FgbA1pp\",\"Remote-Active\":\"Y73b8W2JM\",\"Remote-Ideal\":\"b2zOISsFJ\",\"Report-Active\":\"NAsNWWwVV\",\"Report-Ideal\":\"dFfSVTfnd\",\"Roadmap-Active\":\"atyD1JpQS\",\"Roadmap-Ideal\":\"rYw0s7qn7\",\"Task-Active\":\"fruflzyCA\",\"Task-Ideal\":\"qjF6bpPqr\",\"Team-Active\":\"OSPsA6zJJ\",\"Team-Ideal\":\"TfVCxL9qz\",\"Time- Ideal\":\"kvfYD9GjX\",\"Time-Active\":\"EKrBNaMyB\",\"Update-Active\":\"XycUOIYgt\",\"Update-Ideal\":\"u5vzp95W4\"};const humanReadableVariantMap={\"Tab--Desktop\":\"yYsQOY7cF\",\"Tab-Mobile Tap\":\"U8YK0cytT\",\"Tab-Mobile\":\"in7_lKEzl\"};const getProps=({activeIcon,height,id,idealIcon,link,text,title,width,...props})=>{return{...props,Em1tyUPLv:text??props.Em1tyUPLv??\"Simplify Task Management\",fFjvsVge6:humanReadableEnumMap[idealIcon]??idealIcon??props.fFjvsVge6??\"qjF6bpPqr\",FieqYQ3fc:title??props.FieqYQ3fc??\"Task & Board\",variant:humanReadableVariantMap[props.variant]??props.variant??\"yYsQOY7cF\",warZyLqmk:link??props.warZyLqmk,xV1hDWbBj:humanReadableEnumMap[activeIcon]??activeIcon??props.xV1hDWbBj??\"fruflzyCA\"};};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,FieqYQ3fc,Em1tyUPLv,warZyLqmk,fFjvsVge6,xV1hDWbBj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yYsQOY7cF\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap7h2pkc=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"U8YK0cytT\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:warZyLqmk,motionChild:true,nodeId:\"yYsQOY7cF\",openInNewTab:false,scopeId:\"dQfkG_AI1\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-oorq5v\",className,classNames)} framer-1mon6pf`,\"data-framer-name\":\"Tab--Desktop\",layoutDependency:layoutDependency,layoutId:\"yYsQOY7cF\",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\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",...style},variants:{\"yYsQOY7cF-hover\":{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"},in7_lKEzl:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},U8YK0cytT:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(205, 205, 205)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"yYsQOY7cF-hover\":{\"data-border\":true,\"data-framer-name\":undefined},in7_lKEzl:{\"data-border\":true,\"data-framer-name\":\"Tab-Mobile\",\"data-highlight\":true,onTap:onTap7h2pkc},U8YK0cytT:{\"data-border\":true,\"data-framer-name\":\"Tab-Mobile Tap\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"24px\",y:(componentViewport?.y||0)+(8+((componentViewport?.height||62)-16-24)/2),...addPropertyOverrides({in7_lKEzl:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||70)-24-24)/2)},U8YK0cytT:{y:(componentViewport?.y||0)+(12+((componentViewport?.height||70)-24-24)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ftz3nh-container\",layoutDependency:layoutDependency,layoutId:\"g4NM5Yc3F-container\",nodeId:\"g4NM5Yc3F\",rendersWithMotion:true,scopeId:\"dQfkG_AI1\",children:/*#__PURE__*/_jsx(NavtabIcon,{height:\"100%\",id:\"g4NM5Yc3F\",layoutId:\"g4NM5Yc3F\",style:{height:\"100%\",width:\"100%\"},variant:fFjvsVge6,width:\"100%\",...addPropertyOverrides({\"yYsQOY7cF-hover\":{variant:xV1hDWbBj},in7_lKEzl:{variant:xV1hDWbBj}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l8le4i\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"irQ_PTubz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Task & Board\"})}),className:\"framer-zoxtew\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"M6mx3sizV\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FieqYQ3fc,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Simplify Task Management\"})}),className:\"framer-17fnsid\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tjsNmqZVI\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Em1tyUPLv,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tHCSs.framer-1mon6pf, .framer-tHCSs .framer-1mon6pf { display: block; }\",\".framer-tHCSs.framer-oorq5v { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 272px; will-change: var(--framer-will-change-override, transform); }\",\".framer-tHCSs .framer-ftz3nh-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-tHCSs .framer-l8le4i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tHCSs .framer-zoxtew, .framer-tHCSs .framer-17fnsid { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tHCSs.framer-oorq5v, .framer-tHCSs .framer-l8le4i { gap: 0px; } .framer-tHCSs.framer-oorq5v > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-tHCSs.framer-oorq5v > :first-child { margin-left: 0px; } .framer-tHCSs.framer-oorq5v > :last-child { margin-right: 0px; } .framer-tHCSs .framer-l8le4i > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tHCSs .framer-l8le4i > :first-child { margin-top: 0px; } .framer-tHCSs .framer-l8le4i > :last-child { margin-bottom: 0px; } }\",\".framer-tHCSs.framer-v-k5i79n.framer-oorq5v { padding: 12px 16px 12px 16px; width: 393px; will-change: unset; }\",\".framer-tHCSs.framer-v-sooq6x.framer-oorq5v { cursor: unset; padding: 12px 16px 12px 16px; width: 393px; will-change: unset; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-tHCSs[data-border=\"true\"]::after, .framer-tHCSs [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 62\n * @framerIntrinsicWidth 272\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"in7_lKEzl\":{\"layout\":[\"fixed\",\"auto\"]},\"U8YK0cytT\":{\"layout\":[\"fixed\",\"auto\"]},\"EJpffDQKM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FieqYQ3fc\":\"title\",\"Em1tyUPLv\":\"text\",\"warZyLqmk\":\"link\",\"fFjvsVge6\":\"idealIcon\",\"xV1hDWbBj\":\"activeIcon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdQfkG_AI1=withCSS(Component,css,\"framer-tHCSs\");export default FramerdQfkG_AI1;FramerdQfkG_AI1.displayName=\"Nav Details Tab\";FramerdQfkG_AI1.defaultProps={height:62,width:272};addPropertyControls(FramerdQfkG_AI1,{variant:{options:[\"yYsQOY7cF\",\"in7_lKEzl\",\"U8YK0cytT\"],optionTitles:[\"Tab--Desktop\",\"Tab-Mobile\",\"Tab-Mobile Tap\"],title:\"Variant\",type:ControlType.Enum},FieqYQ3fc:{defaultValue:\"Task & Board\",displayTextArea:false,title:\"Title\",type:ControlType.String},Em1tyUPLv:{defaultValue:\"Simplify Task Management\",displayTextArea:false,title:\"Text\",type:ControlType.String},warZyLqmk:{title:\"Link\",type:ControlType.Link},fFjvsVge6:NavtabIconControls?.[\"variant\"]&&{...NavtabIconControls[\"variant\"],defaultValue:\"qjF6bpPqr\",description:undefined,hidden:undefined,title:\"Ideal-Icon\"},xV1hDWbBj:NavtabIconControls?.[\"variant\"]&&{...NavtabIconControls[\"variant\"],defaultValue:\"fruflzyCA\",description:undefined,hidden:undefined,title:\"Active-Icon\"}});addFonts(FramerdQfkG_AI1,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavtabIconFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdQfkG_AI1\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"62\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"272\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"FieqYQ3fc\\\":\\\"title\\\",\\\"Em1tyUPLv\\\":\\\"text\\\",\\\"warZyLqmk\\\":\\\"link\\\",\\\"fFjvsVge6\\\":\\\"idealIcon\\\",\\\"xV1hDWbBj\\\":\\\"activeIcon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"in7_lKEzl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U8YK0cytT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EJpffDQKM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dQfkG_AI1.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import NavDetailsTab from\"https://framerusercontent.com/modules/TNcbMsAqFEppHXMrJTC9/PNMW1M1CRSm5OPiqIOvU/dQfkG_AI1.js\";const NavDetailsTabFonts=getFonts(NavDetailsTab);const cycleOrder=[\"fHT2XCbtR\",\"qZyvGgR0p\",\"n6YoppsCU\"];const serializationHash=\"framer-GOHEz\";const variantClassNames={fHT2XCbtR:\"framer-v-1fwxf3m\",n6YoppsCU:\"framer-v-11328wi\",qZyvGgR0p:\"framer-v-1mq75sm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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={\"Product-Tab\":\"fHT2XCbtR\",\"Resources-Tab\":\"n6YoppsCU\",\"Solution-Tab\":\"qZyvGgR0p\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"fHT2XCbtR\"};};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:\"fHT2XCbtR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(baseVariant===\"qZyvGgR0p\")return false;return true;};const isDisplayed1=()=>{if([\"qZyvGgR0p\",\"n6YoppsCU\"].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,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fwxf3m\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Product-Tab\",layoutDependency:layoutDependency,layoutId:\"fHT2XCbtR\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(205, 205, 205)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},...addPropertyOverrides({n6YoppsCU:{\"data-framer-name\":\"Resources-Tab\"},qZyvGgR0p:{\"data-framer-name\":\"Solution-Tab\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QBHZT39fT\"},implicitPathVariables:undefined},{href:{webPageId:\"OVsiOm91o\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+0+0),...addPropertyOverrides({n6YoppsCU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||350)-0-310)/2+0+0)},qZyvGgR0p:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||280)-0-248)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-138ad0t-container\",layoutDependency:layoutDependency,layoutId:\"V7v3Lbxe7-container\",nodeId:\"V7v3Lbxe7\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Simplify Task Management\",fFjvsVge6:\"qjF6bpPqr\",FieqYQ3fc:\"Board & Task\",height:\"100%\",id:\"V7v3Lbxe7\",layoutId:\"V7v3Lbxe7\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks[0],width:\"100%\",xV1hDWbBj:\"fruflzyCA\",...addPropertyOverrides({n6YoppsCU:{Em1tyUPLv:\"Articles, News, Analysis\",fFjvsVge6:\"oXZULtr14\",FieqYQ3fc:\"Blogs\",warZyLqmk:\"/blogs\",xV1hDWbBj:\"i1i58YnrM\"},qZyvGgR0p:{Em1tyUPLv:\"Manage work from anywhere\",fFjvsVge6:\"b2zOISsFJ\",FieqYQ3fc:\"Remote Teams\",warZyLqmk:resolvedLinks[1],xV1hDWbBj:\"Y73b8W2JM\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QyPOhV7JS\"},implicitPathVariables:undefined},{href:{webPageId:\"vefW6GyxD\"},implicitPathVariables:undefined},{href:{webPageId:\"XGb4z0qjE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+62+0),...addPropertyOverrides({n6YoppsCU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||350)-0-310)/2+62+0)},qZyvGgR0p:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||280)-0-248)/2+62+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b2gvnh-container\",layoutDependency:layoutDependency,layoutId:\"voLWoFk1Q-container\",nodeId:\"voLWoFk1Q\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Easily transactions with us\",fFjvsVge6:\"BSws5LT2W\",FieqYQ3fc:\"Invoicing \",height:\"100%\",id:\"voLWoFk1Q\",layoutId:\"voLWoFk1Q\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks1[0],width:\"100%\",xV1hDWbBj:\"Kq8wxQo6M\",...addPropertyOverrides({n6YoppsCU:{Em1tyUPLv:\"Product News Digest\",fFjvsVge6:\"u5vzp95W4\",FieqYQ3fc:\"Product Update \",warZyLqmk:resolvedLinks1[2],xV1hDWbBj:\"XycUOIYgt\"},qZyvGgR0p:{Em1tyUPLv:\"Scale any campaign workflow\",fFjvsVge6:\"MUJhO5hK4\",FieqYQ3fc:\"Marketing Teams\",warZyLqmk:resolvedLinks1[1],xV1hDWbBj:\"uZcayXtyp\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"oV16nWDny\"},implicitPathVariables:undefined},{href:{webPageId:\"f8GhQW7PS\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+124+0),...addPropertyOverrides({n6YoppsCU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||350)-0-310)/2+124+0)},qZyvGgR0p:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||280)-0-248)/2+124+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-efefmo-container\",layoutDependency:layoutDependency,layoutId:\"C76Dk1Dhr-container\",nodeId:\"C76Dk1Dhr\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Build a Plan\",fFjvsVge6:\"Y4FgbA1pp\",FieqYQ3fc:\"Message\",height:\"100%\",id:\"C76Dk1Dhr\",layoutId:\"C76Dk1Dhr\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks2[0],width:\"100%\",xV1hDWbBj:\"N_sqHPFJd\",...addPropertyOverrides({n6YoppsCU:{Em1tyUPLv:\"Teamcamp's public roadmap\",fFjvsVge6:\"rYw0s7qn7\",FieqYQ3fc:\"Feedback & Roadmap \",warZyLqmk:\"feedback.teamcamp.app\",xV1hDWbBj:\"atyD1JpQS\"},qZyvGgR0p:{Em1tyUPLv:\"Project & client collaboration\",fFjvsVge6:\"zuhYOstb1\",FieqYQ3fc:\"Agencies & Studios\",warZyLqmk:resolvedLinks2[1],xV1hDWbBj:\"IPY7D7HDd\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dH2uPauD0\"},implicitPathVariables:undefined},{href:{webPageId:\"ZcBAlyeAx\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+186+0),...addPropertyOverrides({n6YoppsCU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||350)-0-310)/2+186+0)},qZyvGgR0p:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||280)-0-248)/2+186+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ozb77z-container\",layoutDependency:layoutDependency,layoutId:\"P5p_v0Vq6-container\",nodeId:\"P5p_v0Vq6\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Track time with your work\",fFjvsVge6:\"kvfYD9GjX\",FieqYQ3fc:\"Time Tracking\",height:\"100%\",id:\"P5p_v0Vq6\",layoutId:\"P5p_v0Vq6\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks3[0],width:\"100%\",xV1hDWbBj:\"EKrBNaMyB\",...addPropertyOverrides({n6YoppsCU:{Em1tyUPLv:\"Mastering API Documentation\",fFjvsVge6:\"SM143sF0X\",FieqYQ3fc:\"API Doc\",warZyLqmk:\"https://api.teamcamp.app\",xV1hDWbBj:\"Rd569CKHL\"},qZyvGgR0p:{Em1tyUPLv:\"Simplify IT project managment\",fFjvsVge6:\"DFuOcTv5P\",FieqYQ3fc:\"IT & Software\",warZyLqmk:resolvedLinks3[1],xV1hDWbBj:\"YYjyfZOge\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"rrUbvt9Af\"},implicitPathVariables:undefined},{href:{webPageId:\"hps83ix15\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+248+0),...addPropertyOverrides({n6YoppsCU:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||350)-0-310)/2+248+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bt34rf-container\",layoutDependency:layoutDependency,layoutId:\"EmMkfMVhW-container\",nodeId:\"EmMkfMVhW\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Manage your file\",fFjvsVge6:\"SDB9o0fXd\",FieqYQ3fc:\"Document & File\",height:\"100%\",id:\"EmMkfMVhW\",layoutId:\"EmMkfMVhW\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks4[0],width:\"100%\",xV1hDWbBj:\"yt3LPAPhD\",...addPropertyOverrides({n6YoppsCU:{Em1tyUPLv:\"Answer All Your Questions\",fFjvsVge6:\"MH6q7OA20\",FieqYQ3fc:\"Help Center\",warZyLqmk:resolvedLinks4[1],xV1hDWbBj:\"EBckmBvik\"}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"c2lKU2OVO\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+310+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-p9tfh7-container\",layoutDependency:layoutDependency,layoutId:\"V3tXLWpDx-container\",nodeId:\"V3tXLWpDx\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Manage your Team\",fFjvsVge6:\"TfVCxL9qz\",FieqYQ3fc:\"Team Collabration\",height:\"100%\",id:\"V3tXLWpDx\",layoutId:\"V3tXLWpDx\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks5[0],width:\"100%\",xV1hDWbBj:\"OSPsA6zJJ\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SrM6TZ3Fw\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+372+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dlmtsm-container\",layoutDependency:layoutDependency,layoutId:\"apjhFemzp-container\",nodeId:\"apjhFemzp\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Clients remain Informed\",fFjvsVge6:\"oSlNghQwJ\",FieqYQ3fc:\"Client Portal\",height:\"100%\",id:\"apjhFemzp\",layoutId:\"apjhFemzp\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks6[0],width:\"100%\",xV1hDWbBj:\"ePXDI3azn\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hoTtT4EtH\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||560)-0-496)/2+434+0),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1i6n3l4-container\",layoutDependency:layoutDependency,layoutId:\"fSgqQzluG-container\",nodeId:\"fSgqQzluG\",rendersWithMotion:true,scopeId:\"vnXnMXeen\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Informative Report Articles\",fFjvsVge6:\"dFfSVTfnd\",FieqYQ3fc:\"Reports\",height:\"100%\",id:\"fSgqQzluG\",layoutId:\"fSgqQzluG\",style:{width:\"100%\"},variant:\"in7_lKEzl\",warZyLqmk:resolvedLinks7[0],width:\"100%\",xV1hDWbBj:\"NAsNWWwVV\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GOHEz.framer-1te59r8, .framer-GOHEz .framer-1te59r8 { display: block; }\",\".framer-GOHEz.framer-1fwxf3m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 393px; }\",\".framer-GOHEz .framer-138ad0t-container, .framer-GOHEz .framer-1b2gvnh-container, .framer-GOHEz .framer-efefmo-container, .framer-GOHEz .framer-ozb77z-container, .framer-GOHEz .framer-bt34rf-container, .framer-GOHEz .framer-p9tfh7-container, .framer-GOHEz .framer-dlmtsm-container, .framer-GOHEz .framer-1i6n3l4-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GOHEz.framer-1fwxf3m { gap: 0px; } .framer-GOHEz.framer-1fwxf3m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GOHEz.framer-1fwxf3m > :first-child { margin-top: 0px; } .framer-GOHEz.framer-1fwxf3m > :last-child { margin-bottom: 0px; } }\",'.framer-GOHEz[data-border=\"true\"]::after, .framer-GOHEz [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 560\n * @framerIntrinsicWidth 393\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"qZyvGgR0p\":{\"layout\":[\"fixed\",\"auto\"]},\"n6YoppsCU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramervnXnMXeen=withCSS(Component,css,\"framer-GOHEz\");export default FramervnXnMXeen;FramervnXnMXeen.displayName=\"Nav-Tabs Mobile\";FramervnXnMXeen.defaultProps={height:560,width:393};addPropertyControls(FramervnXnMXeen,{variant:{options:[\"fHT2XCbtR\",\"qZyvGgR0p\",\"n6YoppsCU\"],optionTitles:[\"Product-Tab\",\"Solution-Tab\",\"Resources-Tab\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramervnXnMXeen,[{explicitInter:true,fonts:[]},...NavDetailsTabFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervnXnMXeen\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qZyvGgR0p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n6YoppsCU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"560\",\"framerIntrinsicWidth\":\"393\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vnXnMXeen.map", "// Generated by Framer (b0cf16c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qiWTbMiimC5CPDbkpYrz/XzuzJtbS96OkQbVA12PX/AcVUJx4g9.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import NavTabsMobile from\"https://framerusercontent.com/modules/MCoTx6PdMLQO6uO4m9uf/uuLey1IdjWBYdJKB8VO2/vnXnMXeen.js\";const NavTabsMobileFonts=getFonts(NavTabsMobile);const NavTabsMobileControls=getPropertyControls(NavTabsMobile);const enabledGestures={SLapPSEtn:{hover:true}};const cycleOrder=[\"tEHmQahEZ\",\"SLapPSEtn\",\"Q3X9wDkXt\",\"UiDGHBLfO\",\"FITv0p7BA\",\"HWXcrsocv\",\"mtrVkh_hr\",\"yGAaRd3GY\"];const serializationHash=\"framer-DeGvy\";const variantClassNames={FITv0p7BA:\"framer-v-f3yq69\",HWXcrsocv:\"framer-v-qt8t4c\",mtrVkh_hr:\"framer-v-6qt9nu\",Q3X9wDkXt:\"framer-v-1iht6nd\",SLapPSEtn:\"framer-v-1r1i9bl\",tEHmQahEZ:\"framer-v-12m2d32\",UiDGHBLfO:\"framer-v-16xw3zl\",yGAaRd3GY:\"framer-v-1tlkem7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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 humanReadableEnumMap={\"Product-Tab\":\"fHT2XCbtR\",\"Resources-Tab\":\"n6YoppsCU\",\"Solution-Tab\":\"qZyvGgR0p\"};const humanReadableVariantMap={\"Off--With Icon--Desktop\":\"tEHmQahEZ\",\"Off--With Icon--Mobile -Product\":\"UiDGHBLfO\",\"On--With Icon--Desktop\":\"Q3X9wDkXt\",\"On--With Icon--Mobile-Product\":\"FITv0p7BA\",\"Without Icon--Desktop\":\"SLapPSEtn\",\"Without Icon--Mobile\":\"HWXcrsocv\",Close:\"yGAaRd3GY\",Open:\"mtrVkh_hr\"};const getProps=({background,background2,height,hover,id,link,tab,tap,title,width,...props})=>{return{...props,Aesh1pgio:hover??props.Aesh1pgio,bQGcMBwCJ:background??props.bQGcMBwCJ??\"rgba(255, 255, 255, 0)\",kmwCzN12b:link??props.kmwCzN12b,rrTsFeJM4:background2??props.rrTsFeJM4??\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",rz6sD63q_:tap??props.rz6sD63q_,TQuN00Vkw:title??props.TQuN00Vkw??\"Product\",variant:humanReadableVariantMap[props.variant]??props.variant??\"tEHmQahEZ\",zYO3pkm_J:humanReadableEnumMap[tab]??tab??props.zYO3pkm_J??\"rmUOV3y7O\"};};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,TQuN00Vkw,Aesh1pgio,rz6sD63q_,kmwCzN12b,zYO3pkm_J,bQGcMBwCJ,rrTsFeJM4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"tEHmQahEZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1dwcygq=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(rz6sD63q_){const res=await rz6sD63q_(...args);if(res===false)return false;}});const onMouseEnter15qavo=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(Aesh1pgio){const res=await Aesh1pgio(...args);if(res===false)return false;}});const onTap1d3n1m1=activeVariantCallback(async(...args)=>{setVariant(\"FITv0p7BA\");});const onTap611009=activeVariantCallback(async(...args)=>{setVariant(\"UiDGHBLfO\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"FITv0p7BA\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"SLapPSEtn-hover\")return false;if([\"SLapPSEtn\",\"HWXcrsocv\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"Q3X9wDkXt\",\"FITv0p7BA\",\"mtrVkh_hr\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"Q3X9wDkXt\",\"FITv0p7BA\",\"mtrVkh_hr\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({FITv0p7BA:{value:transition2},mtrVkh_hr:{value:transition2},UiDGHBLfO:{value:transition2},yGAaRd3GY:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"tEHmQahEZ\",scopeId:\"lh0Ns4A9p\",...addPropertyOverrides({HWXcrsocv:{href:kmwCzN12b},SLapPSEtn:{href:kmwCzN12b}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-12m2d32\",className,classNames)} framer-1ulsf09`,\"data-framer-name\":\"Off--With Icon--Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"tEHmQahEZ\",onMouseEnter:onMouseEnter15qavo,onTap:onTap1dwcygq,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\",backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},variants:{\"SLapPSEtn-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:rrTsFeJM4},FITv0p7BA:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},HWXcrsocv:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},mtrVkh_hr:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(205, 205, 205)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Q3X9wDkXt:{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"},SLapPSEtn:{backgroundColor:bQGcMBwCJ},UiDGHBLfO:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},yGAaRd3GY:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgb(205, 205, 205)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"SLapPSEtn-hover\":{\"data-framer-name\":undefined,onTap:undefined},FITv0p7BA:{\"data-framer-name\":\"On--With Icon--Mobile-Product\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined},HWXcrsocv:{\"data-border\":true,\"data-framer-name\":\"Without Icon--Mobile\"},mtrVkh_hr:{\"data-border\":true,\"data-framer-name\":\"Open\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined},Q3X9wDkXt:{\"data-framer-name\":\"On--With Icon--Desktop\"},SLapPSEtn:{\"data-framer-name\":\"Without Icon--Desktop\",onTap:undefined},UiDGHBLfO:{\"data-border\":true,\"data-framer-name\":\"Off--With Icon--Mobile -Product\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined},yGAaRd3GY:{\"data-border\":true,\"data-framer-name\":\"Close\",\"data-highlight\":undefined,onMouseEnter:undefined,onTap:undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({FITv0p7BA:{height:560,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||624)-0-720)/2+160+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-153evo7-container\",layoutDependency:layoutDependency,layoutId:\"Rtqik95qe-container\",nodeId:\"Rtqik95qe\",rendersWithMotion:true,scopeId:\"lh0Ns4A9p\",children:/*#__PURE__*/_jsx(NavTabsMobile,{height:\"100%\",id:\"Rtqik95qe\",layoutId:\"Rtqik95qe\",variant:\"fHT2XCbtR\",width:\"100%\",...addPropertyOverrides({FITv0p7BA:{style:{width:\"100%\"},variant:zYO3pkm_J}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gdl8g9\",layoutDependency:layoutDependency,layoutId:\"puG4dzdfW\",...addPropertyOverrides({FITv0p7BA:{\"data-highlight\":true,onTap:onTap611009},UiDGHBLfO:{\"data-highlight\":true,onTap:onTap1d3n1m1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1c3xb4b\",\"data-styles-preset\":\"AcVUJx4g9\",children:\"Product\"})}),className:\"framer-1e3qb6t\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QUuEBHWCK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TQuN00Vkw,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FITv0p7BA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product\"})})},HWXcrsocv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product\"})})},mtrVkh_hr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product\"})})},UiDGHBLfO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product\"})})},yGAaRd3GY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1koq1kg\",\"data-framer-name\":\"IconSet/Basic Icon Copy\",layoutDependency:layoutDependency,layoutId:\"QNTweBsUq\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12zlpku\",\"data-framer-name\":\"Type=Angle-down, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"Xsnj5oo9x\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mvk2uf\",\"data-framer-name\":\"angle-down-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"toxTRC2cK\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 4.79995C3.79521 4.79995 3.5904 4.72158 3.43441 4.56559L0.234587 1.36577C-0.0781956 1.05299 -0.0781956 0.547369 0.234587 0.234587C0.547369 -0.0781956 1.05299 -0.0781956 1.36577 0.234587L4 2.86881L6.63423 0.234587C6.94701 -0.0781956 7.45263 -0.0781956 7.76541 0.234587C8.0782 0.547369 8.0782 1.05299 7.76541 1.36577L4.56559 4.56559C4.4096 4.72158 4.20479 4.79995 4 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1swdqaw\",\"data-framer-name\":\"Type=Angle-up, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"POB3dCQah\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kzclhr\",\"data-framer-name\":\"angle-up-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"ZSecp4J34\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.19982 4.79995C6.99503 4.79995 6.79022 4.72158 6.63423 4.56559L4 1.93137L1.36577 4.56559C1.05299 4.87838 0.547369 4.87838 0.234587 4.56559C-0.0781956 4.25281 -0.0781956 3.74719 0.234587 3.43441L3.43441 0.234587C3.74719 -0.0781956 4.25281 -0.0781956 4.56559 0.234587L7.76541 3.43441C8.0782 3.74719 8.0782 4.25281 7.76541 4.56559C7.60942 4.72158 7.40461 4.79995 7.19982 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DeGvy.framer-1ulsf09, .framer-DeGvy .framer-1ulsf09 { display: block; }\",\".framer-DeGvy.framer-12m2d32 { 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: hidden; padding: 6px 18px 6px 18px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-DeGvy .framer-153evo7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DeGvy .framer-gdl8g9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DeGvy .framer-1e3qb6t { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DeGvy .framer-1koq1kg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-DeGvy .framer-12zlpku, .framer-DeGvy .framer-1swdqaw { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-DeGvy .framer-1mvk2uf, .framer-DeGvy .framer-kzclhr { flex: none; height: 21%; left: calc(50.00000000000002% - 33.33333333333333% / 2); position: absolute; top: calc(50.00000000000002% - 20.833333333333336% / 2); width: 33%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DeGvy.framer-12m2d32, .framer-DeGvy .framer-gdl8g9, .framer-DeGvy .framer-1koq1kg { gap: 0px; } .framer-DeGvy.framer-12m2d32 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DeGvy.framer-12m2d32 > :first-child, .framer-DeGvy .framer-gdl8g9 > :first-child, .framer-DeGvy .framer-1koq1kg > :first-child { margin-left: 0px; } .framer-DeGvy.framer-12m2d32 > :last-child, .framer-DeGvy .framer-gdl8g9 > :last-child, .framer-DeGvy .framer-1koq1kg > :last-child { margin-right: 0px; } .framer-DeGvy .framer-gdl8g9 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-DeGvy .framer-1koq1kg > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",\".framer-DeGvy.framer-v-1r1i9bl.framer-12m2d32 { text-decoration: none; }\",\".framer-DeGvy.framer-v-16xw3zl.framer-12m2d32 { cursor: unset; padding: 0px; width: 393px; will-change: unset; }\",\".framer-DeGvy.framer-v-16xw3zl .framer-gdl8g9 { cursor: pointer; flex: 1 0 0px; gap: unset; justify-content: space-between; padding: 20px 12px 20px 12px; width: 1px; }\",\".framer-DeGvy.framer-v-16xw3zl .framer-1e3qb6t, .framer-DeGvy.framer-v-f3yq69 .framer-1e3qb6t, .framer-DeGvy.framer-v-qt8t4c .framer-1e3qb6t, .framer-DeGvy.framer-v-6qt9nu .framer-1e3qb6t, .framer-DeGvy.framer-v-1tlkem7 .framer-1e3qb6t { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DeGvy.framer-v-16xw3zl .framer-gdl8g9 { gap: 0px; } .framer-DeGvy.framer-v-16xw3zl .framer-gdl8g9 > *, .framer-DeGvy.framer-v-16xw3zl .framer-gdl8g9 > :first-child, .framer-DeGvy.framer-v-16xw3zl .framer-gdl8g9 > :last-child { margin: 0px; } }\",\".framer-DeGvy.framer-v-f3yq69.framer-12m2d32 { cursor: unset; flex-direction: column; padding: 0px; width: 393px; will-change: unset; }\",\".framer-DeGvy.framer-v-f3yq69 .framer-153evo7-container { order: 1; width: 100%; }\",\".framer-DeGvy.framer-v-f3yq69 .framer-gdl8g9 { cursor: pointer; gap: unset; justify-content: space-between; order: 0; padding: 20px 12px 20px 12px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DeGvy.framer-v-f3yq69.framer-12m2d32, .framer-DeGvy.framer-v-f3yq69 .framer-gdl8g9 { gap: 0px; } .framer-DeGvy.framer-v-f3yq69.framer-12m2d32 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DeGvy.framer-v-f3yq69.framer-12m2d32 > :first-child { margin-top: 0px; } .framer-DeGvy.framer-v-f3yq69.framer-12m2d32 > :last-child { margin-bottom: 0px; } .framer-DeGvy.framer-v-f3yq69 .framer-gdl8g9 > *, .framer-DeGvy.framer-v-f3yq69 .framer-gdl8g9 > :first-child, .framer-DeGvy.framer-v-f3yq69 .framer-gdl8g9 > :last-child { margin: 0px; } }\",\".framer-DeGvy.framer-v-qt8t4c.framer-12m2d32 { padding: 20px 12px 20px 12px; text-decoration: none; width: 393px; will-change: unset; }\",\".framer-DeGvy.framer-v-qt8t4c .framer-gdl8g9, .framer-DeGvy.framer-v-6qt9nu .framer-gdl8g9 { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DeGvy.framer-v-qt8t4c .framer-gdl8g9 { gap: 0px; } .framer-DeGvy.framer-v-qt8t4c .framer-gdl8g9 > *, .framer-DeGvy.framer-v-qt8t4c .framer-gdl8g9 > :first-child, .framer-DeGvy.framer-v-qt8t4c .framer-gdl8g9 > :last-child { margin: 0px; } }\",\".framer-DeGvy.framer-v-6qt9nu.framer-12m2d32, .framer-DeGvy.framer-v-1tlkem7.framer-12m2d32 { cursor: unset; padding: 20px 20px 20px 16px; width: 393px; will-change: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DeGvy.framer-v-6qt9nu .framer-gdl8g9 { gap: 0px; } .framer-DeGvy.framer-v-6qt9nu .framer-gdl8g9 > *, .framer-DeGvy.framer-v-6qt9nu .framer-gdl8g9 > :first-child, .framer-DeGvy.framer-v-6qt9nu .framer-gdl8g9 > :last-child { margin: 0px; } }\",\".framer-DeGvy.framer-v-1tlkem7 .framer-gdl8g9 { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-DeGvy[data-border=\"true\"]::after, .framer-DeGvy [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 36\n * @framerIntrinsicWidth 117.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"SLapPSEtn\":{\"layout\":[\"auto\",\"auto\"]},\"Q3X9wDkXt\":{\"layout\":[\"auto\",\"auto\"]},\"UiDGHBLfO\":{\"layout\":[\"fixed\",\"auto\"]},\"FITv0p7BA\":{\"layout\":[\"fixed\",\"auto\"]},\"HWXcrsocv\":{\"layout\":[\"fixed\",\"auto\"]},\"mtrVkh_hr\":{\"layout\":[\"fixed\",\"auto\"]},\"yGAaRd3GY\":{\"layout\":[\"fixed\",\"auto\"]},\"nn_aF_elv\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"TQuN00Vkw\":\"title\",\"Aesh1pgio\":\"hover\",\"rz6sD63q_\":\"tap\",\"kmwCzN12b\":\"link\",\"zYO3pkm_J\":\"tab\",\"bQGcMBwCJ\":\"background\",\"rrTsFeJM4\":\"background2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerlh0Ns4A9p=withCSS(Component,css,\"framer-DeGvy\");export default Framerlh0Ns4A9p;Framerlh0Ns4A9p.displayName=\"NavBar/Nav Tab\";Framerlh0Ns4A9p.defaultProps={height:36,width:117.5};addPropertyControls(Framerlh0Ns4A9p,{variant:{options:[\"tEHmQahEZ\",\"SLapPSEtn\",\"Q3X9wDkXt\",\"UiDGHBLfO\",\"FITv0p7BA\",\"HWXcrsocv\",\"mtrVkh_hr\",\"yGAaRd3GY\"],optionTitles:[\"Off--With Icon--Desktop\",\"Without Icon--Desktop\",\"On--With Icon--Desktop\",\"Off--With Icon--Mobile -Product\",\"On--With Icon--Mobile-Product\",\"Without Icon--Mobile\",\"Open\",\"Close\"],title:\"Variant\",type:ControlType.Enum},TQuN00Vkw:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String},Aesh1pgio:{title:\"Hover\",type:ControlType.EventHandler},rz6sD63q_:{title:\"Tap\",type:ControlType.EventHandler},kmwCzN12b:{title:\"Link\",type:ControlType.Link},zYO3pkm_J:NavTabsMobileControls?.[\"variant\"]&&{...NavTabsMobileControls[\"variant\"],defaultValue:\"rmUOV3y7O\",description:undefined,hidden:undefined,title:\"Tab\"},bQGcMBwCJ:{defaultValue:\"rgba(255, 255, 255, 0)\",title:\"Background\",type:ControlType.Color},rrTsFeJM4:{defaultValue:'var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240)) /* {\"name\":\"BgImage\"} */',title:\"Background 2\",type:ControlType.Color}});addFonts(Framerlh0Ns4A9p,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...NavTabsMobileFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerlh0Ns4A9p\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"TQuN00Vkw\\\":\\\"title\\\",\\\"Aesh1pgio\\\":\\\"hover\\\",\\\"rz6sD63q_\\\":\\\"tap\\\",\\\"kmwCzN12b\\\":\\\"link\\\",\\\"zYO3pkm_J\\\":\\\"tab\\\",\\\"bQGcMBwCJ\\\":\\\"background\\\",\\\"rrTsFeJM4\\\":\\\"background2\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"117.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SLapPSEtn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Q3X9wDkXt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"UiDGHBLfO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FITv0p7BA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HWXcrsocv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mtrVkh_hr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yGAaRd3GY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nn_aF_elv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"36\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2abc263)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/XKrCcKyK2PDBeaXUsMjH/TqreinkLve4XhvVNJjmY/UIDGim5Fo.js\";const enabledGestures={rYzRCVavP:{hover:true}};const serializationHash=\"framer-LSbCa\";const variantClassNames={rYzRCVavP:\"framer-v-5ulzft\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;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=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"rYzRCVavP\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"rYzRCVavP-hover\")return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"rYzRCVavP-hover\")return true;return false;};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:{webPageId:\"PQ_E_qZP6\"},motionChild:true,nodeId:\"rYzRCVavP\",scopeId:\"Nk6xmlvMG\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-5ulzft\",className,classNames)} framer-vtf29s`,\"data-border\":true,\"data-framer-name\":\"Desktop Product\",layoutDependency:layoutDependency,layoutId:\"rYzRCVavP\",ref:refBinding,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\",...style},variants:{\"rYzRCVavP-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"}},...addPropertyOverrides({\"rYzRCVavP-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1dts2\",\"data-framer-name\":\"NavBar/NavTab Details-Button\",layoutDependency:layoutDependency,layoutId:\"kOu9UExyp\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3k2sgw\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"ZF3038f3V\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Integrations\"})}),className:\"framer-1u1bbhh\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ATBtCJStl\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jysvsp\",\"data-styles-preset\":\"UIDGim5Fo\",children:\"Enhance your workspace\"})}),className:\"framer-ptk8ai\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Yc9mRFo_v\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1blt50y\",\"data-framer-name\":\"Endlessly customisable Image\",layoutDependency:layoutDependency,layoutId:\"I13459:128334;13458:87137\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lhwyi\",\"data-border\":true,\"data-framer-name\":\"Ellipse 86\",layoutDependency:layoutDependency,layoutId:\"I13459:128334;13458:87137;13458:86091\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"},variants:{\"rYzRCVavP-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r2fb8e\",\"data-border\":true,\"data-framer-name\":\"Ellipse 84\",layoutDependency:layoutDependency,layoutId:\"I13459:128334;13458:87137;13458:86092\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"},variants:{\"rYzRCVavP-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bykm3b\",\"data-border\":true,\"data-framer-name\":\"Ellipse 85\",layoutDependency:layoutDependency,layoutId:\"I13459:128334;13458:87137;13458:86093\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\",boxShadow:\"0px 2px 8px 0px rgba(0, 0, 0, 0.08)\"},variants:{\"rYzRCVavP-hover\":{backgroundColor:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11jeis7\",\"data-framer-name\":\"Teamcamp Logo\",layoutDependency:layoutDependency,layoutId:\"YR4zs_uZS\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpw75s\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"i4kCCn0zX\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgba(242, 241, 239, 0.11) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17tfyqf\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"MKxpX5fOt\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1vcaabq\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"Wuubjx8KT\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_dd_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8357 8.34899L27.6866 12.4607C26.9418 13.8856 27.9578 15.6039 29.5452 15.6039H34.3408C34.6865 16.8692 34.8711 18.2011 34.8711 19.576C34.8711 20.3026 34.8195 21.0173 34.7199 21.7163H29.5452C23.4224 21.7163 19.5034 15.0888 22.3762 9.59268L24.6114 5.31641C26.5617 5.96904 28.3339 7.0106 29.8357 8.34899Z\" fill=\"url(#paint0_linear_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter1_dd_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.90645 8.34899L12.0556 12.4607C12.8004 13.8856 11.7844 15.6039 10.197 15.6039H5.40144C5.05568 16.8692 4.87109 18.2011 4.87109 19.576C4.87109 20.3026 4.92264 21.0173 5.02229 21.7163H10.197C16.3198 21.7163 20.2388 15.0888 17.366 9.59268L15.1308 5.31641C13.1804 5.96904 11.4083 7.0106 9.90645 8.34899Z\" fill=\"url(#paint1_linear_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter2_dd_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8074 24.3811C17.1982 20.8651 22.3101 20.8651 24.701 24.3811L29.4323 31.2049C27.8488 32.5042 25.995 33.4862 23.9682 34.0541L19.7543 27.8566L15.5892 33.9819C14.1851 33.562 12.8672 32.9423 11.6684 32.1559L10.8823 31.6037C10.6643 31.4399 10.4508 31.2702 10.2422 31.0951L14.8074 24.3811Z\" fill=\"url(#paint2_linear_14470_50640)\"/>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter3_f_14470_50640)\">\\n<path d=\"M7.69531 20.2383L11.3697 19.4087C13.0704 19.0247 14.5767 18.0427 15.6142 16.6415L17.6828 13.8479\" stroke=\"url(#paint3_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter4_f_14470_50640)\">\\n<path d=\"M32.0352 20.2383L28.3608 19.4087C26.6601 19.0247 25.1538 18.0427 24.1162 16.6415L22.0477 13.8479\" stroke=\"url(#paint4_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter5_f_14470_50640)\">\\n<path d=\"M14.2227 5.86914L15.3414 9.46605C15.8592 11.1309 15.7619 12.9264 15.0672 14.5256L13.6822 17.7137\" stroke=\"url(#paint5_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter6_f_14470_50640)\">\\n<path d=\"M25.5195 5.86914L24.4008 9.46605C23.883 11.1309 23.9803 12.9264 24.675 14.5256L26.06 17.7137\" stroke=\"url(#paint6_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter7_f_14470_50640)\">\\n<path d=\"M18.875 23.7109L20.3366 23.9107C22.3362 24.184 24.1324 25.2757 25.2959 26.9248L27.6715 30.2918\" stroke=\"url(#paint7_linear_14470_50640)\" stroke-opacity=\"0.6\" stroke-width=\"1.05823\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_dd_14470_50640\" x=\"20.242\" y=\"4.67712\" width=\"15.8011\" height=\"18.7444\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter1_dd_14470_50640\" x=\"3.69907\" y=\"4.67712\" width=\"15.8011\" height=\"18.7444\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter2_dd_14470_50640\" x=\"9.07017\" y=\"21.1049\" width=\"21.5355\" height=\"14.6536\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n</filter>\\n<filter id=\"filter3_f_14470_50640\" x=\"4.62514\" y=\"10.7765\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter4_f_14470_50640\" x=\"18.9767\" y=\"10.7765\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter5_f_14470_50640\" x=\"10.6095\" y=\"2.798\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter6_f_14470_50640\" x=\"21.0001\" y=\"2.798\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter7_f_14470_50640\" x=\"15.9376\" y=\"20.7716\" width=\"14.6716\" height=\"12.4597\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14470_50640\" x1=\"28.1435\" y1=\"5.31641\" x2=\"28.1435\" y2=\"21.7163\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14470_50640\" x1=\"11.5986\" y1=\"5.31641\" x2=\"11.5986\" y2=\"21.7163\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14470_50640\" x1=\"19.8373\" y1=\"21.7441\" x2=\"19.8373\" y2=\"34.0541\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14470_50640\" x1=\"10.9385\" y1=\"20.0752\" x2=\"16.6292\" y2=\"21.6103\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14470_50640\" x1=\"28.792\" y1=\"20.0752\" x2=\"23.1012\" y2=\"21.6103\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_14470_50640\" x1=\"15.703\" y1=\"8.75934\" x2=\"19.8778\" y2=\"12.9202\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_14470_50640\" x1=\"24.0392\" y1=\"8.75934\" x2=\"19.8644\" y2=\"12.9202\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_14470_50640\" x1=\"21.8744\" y1=\"23.9321\" x2=\"27.7623\" y2=\"23.6603\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1d99im7\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:40,layoutDependency:layoutDependency,layoutId:\"MNQWwbIg4\",svg:'<svg width=\"40\" height=\"40\" viewBox=\"0 0 40 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14470_50640)\">\\n<rect width=\"40\" height=\"40\" rx=\"20\" fill=\"white\"/>\\n<g style=\"mix-blend-mode:luminosity\">\\n<g filter=\"url(#filter0_f_14470_50640)\">\\n<g filter=\"url(#filter1_f_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8357 8.34801L27.6866 12.4597C26.9418 13.8846 27.9578 15.6029 29.5452 15.6029H34.3408C34.6865 16.8683 34.8711 18.2001 34.8711 19.5751C34.8711 20.3016 34.8195 21.0163 34.7199 21.7154H29.5452C23.4224 21.7154 19.5034 15.0878 22.3762 9.5917L24.6114 5.31543C26.5617 5.96806 28.3339 7.00962 29.8357 8.34801Z\" fill=\"url(#paint0_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter2_f_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.90645 8.34801L12.0556 12.4597C12.8004 13.8846 11.7844 15.6029 10.197 15.6029H5.40144C5.05568 16.8683 4.87109 18.2001 4.87109 19.5751C4.87109 20.3016 4.92264 21.0163 5.02229 21.7154H10.197C16.3198 21.7154 20.2388 15.0878 17.366 9.5917L15.1308 5.31543C13.1804 5.96806 11.4083 7.00962 9.90645 8.34801Z\" fill=\"url(#paint1_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter3_f_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8074 24.3792C17.1982 20.8632 22.3101 20.8632 24.701 24.3792L29.4323 31.203C27.8488 32.5022 25.995 33.4842 23.9682 34.0521L19.7543 27.8546L15.5892 33.9799C14.1851 33.56 12.8672 32.9404 11.6684 32.154L10.8823 31.6017C10.6643 31.4379 10.4508 31.2683 10.2422 31.0932L14.8074 24.3792Z\" fill=\"url(#paint2_radial_14470_50640)\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter4_ddii_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8357 8.34801L27.6866 12.4597C26.9418 13.8846 27.9578 15.6029 29.5452 15.6029H34.3408C34.6865 16.8683 34.8711 18.2001 34.8711 19.5751C34.8711 20.3016 34.8195 21.0163 34.7199 21.7154H29.5452C23.4224 21.7154 19.5034 15.0878 22.3762 9.5917L24.6114 5.31543C26.5617 5.96806 28.3339 7.00962 29.8357 8.34801Z\" fill=\"url(#paint3_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter5_ddii_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.90645 8.34801L12.0556 12.4597C12.8004 13.8846 11.7844 15.6029 10.197 15.6029H5.40144C5.05568 16.8683 4.87109 18.2001 4.87109 19.5751C4.87109 20.3016 4.92264 21.0163 5.02229 21.7154H10.197C16.3198 21.7154 20.2388 15.0878 17.366 9.5917L15.1308 5.31543C13.1804 5.96806 11.4083 7.00962 9.90645 8.34801Z\" fill=\"url(#paint4_radial_14470_50640)\"/>\\n</g>\\n<g filter=\"url(#filter6_ddii_14470_50640)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M14.8074 24.3792C17.1982 20.8632 22.3101 20.8632 24.701 24.3792L29.4323 31.203C27.8488 32.5022 25.995 33.4842 23.9682 34.0521L19.7543 27.8546L15.5892 33.9799C14.1851 33.56 12.8672 32.9404 11.6684 32.154L10.8823 31.6017C10.6643 31.4379 10.4508 31.2683 10.2422 31.0932L14.8074 24.3792Z\" fill=\"url(#paint5_radial_14470_50640)\"/>\\n</g>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter7_f_14470_50640)\">\\n<path d=\"M7.69531 20.2373L11.3697 19.4077C13.0704 19.0237 14.5767 18.0417 15.6142 16.6405L17.6828 13.847\" stroke=\"url(#paint6_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:color-dodge\" filter=\"url(#filter8_f_14470_50640)\">\\n<path d=\"M32.0352 20.2373L28.3608 19.4077C26.6601 19.0237 25.1538 18.0417 24.1162 16.6405L22.0477 13.847\" stroke=\"url(#paint7_linear_14470_50640)\" stroke-opacity=\"0.1\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter9_f_14470_50640)\">\\n<path d=\"M14.2227 5.86816L15.3414 9.46507C15.8592 11.1299 15.7619 12.9254 15.0672 14.5246L13.6822 17.7128\" stroke=\"url(#paint8_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter10_f_14470_50640)\">\\n<path d=\"M25.5195 5.86816L24.4008 9.46507C23.883 11.1299 23.9803 12.9254 24.675 14.5246L26.06 17.7128\" stroke=\"url(#paint9_linear_14470_50640)\" stroke-opacity=\"0.14\" stroke-width=\"1.32279\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g style=\"mix-blend-mode:lighten\" filter=\"url(#filter11_f_14470_50640)\">\\n<path d=\"M18.875 23.7109L20.3366 23.9107C22.3362 24.184 24.1324 25.2757 25.2959 26.9248L27.6715 30.2918\" stroke=\"url(#paint10_linear_14470_50640)\" stroke-opacity=\"0.6\" stroke-width=\"1.05823\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_14470_50640\" x=\"-1.52176\" y=\"-1.07742\" width=\"42.7857\" height=\"41.522\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter1_f_14470_50640\" x=\"15.0212\" y=\"-1.07742\" width=\"26.2427\" height=\"29.1861\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter2_f_14470_50640\" x=\"-1.52176\" y=\"-1.07742\" width=\"26.2427\" height=\"29.1861\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter3_f_14470_50640\" x=\"3.84934\" y=\"15.3493\" width=\"31.9771\" height=\"25.0953\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"3.19642\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter4_ddii_14470_50640\" x=\"20.242\" y=\"4.3565\" width=\"15.8011\" height=\"19.0641\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.213095\"/>\\n<feGaussianBlur stdDeviation=\"0.372916\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.958928\"/>\\n<feGaussianBlur stdDeviation=\"0.85238\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_14470_50640\" result=\"effect4_innerShadow_14470_50640\"/>\\n</filter>\\n<filter id=\"filter5_ddii_14470_50640\" x=\"3.69907\" y=\"4.3565\" width=\"15.8011\" height=\"19.0641\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.213095\"/>\\n<feGaussianBlur stdDeviation=\"0.372916\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.958928\"/>\\n<feGaussianBlur stdDeviation=\"0.85238\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_14470_50640\" result=\"effect4_innerShadow_14470_50640\"/>\\n</filter>\\n<filter id=\"filter6_ddii_14470_50640\" x=\"9.07017\" y=\"20.7833\" width=\"21.5355\" height=\"14.9733\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.532738\"/>\\n<feGaussianBlur stdDeviation=\"0.586011\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.42619\"/>\\n<feGaussianBlur stdDeviation=\"0.319643\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.223529 0 0 0 0 0.054902 0 0 0 0 0.654902 0 0 0 0.22 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_dropShadow_14470_50640\" result=\"effect2_dropShadow_14470_50640\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect2_dropShadow_14470_50640\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.213095\"/>\\n<feGaussianBlur stdDeviation=\"0.372916\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect3_innerShadow_14470_50640\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.958928\"/>\\n<feGaussianBlur stdDeviation=\"0.85238\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.6 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect3_innerShadow_14470_50640\" result=\"effect4_innerShadow_14470_50640\"/>\\n</filter>\\n<filter id=\"filter7_f_14470_50640\" x=\"4.62514\" y=\"10.7755\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter8_f_14470_50640\" x=\"18.9767\" y=\"10.7755\" width=\"16.1286\" height=\"12.5329\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter9_f_14470_50640\" x=\"10.6095\" y=\"2.79702\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter10_f_14470_50640\" x=\"21.0001\" y=\"2.79702\" width=\"8.13252\" height=\"17.987\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<filter id=\"filter11_f_14470_50640\" x=\"15.9376\" y=\"20.7716\" width=\"14.6716\" height=\"12.4597\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.20501\" result=\"effect1_foregroundBlur_14470_50640\"/>\\n</filter>\\n<radialGradient id=\"paint0_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(27.5324 21.5488) rotate(-90) scale(12.1909 10.0018)\">\\n<stop offset=\"0.133333\" stop-color=\"#58C3FF\"/>\\n<stop offset=\"1\" stop-color=\"#58C3FF\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint1_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(12.2098 21.5488) rotate(-90) scale(12.1909 10.0018)\">\\n<stop offset=\"0.133333\" stop-color=\"#58C3FF\"/>\\n<stop offset=\"1\" stop-color=\"#58C3FF\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint2_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(20.7089 33.9271) rotate(-90) scale(9.15057 14.265)\">\\n<stop offset=\"0.133333\" stop-color=\"#58C3FF\"/>\\n<stop offset=\"1\" stop-color=\"#58C3FF\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<radialGradient id=\"paint3_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(26.6627 7.84328) rotate(90) scale(24.9173 20.443)\">\\n<stop stop-color=\"#2538E0\"/>\\n<stop offset=\"0.574012\" stop-color=\"#500FDA\"/>\\n<stop offset=\"1\" stop-color=\"#0D0C48\"/>\\n</radialGradient>\\n<radialGradient id=\"paint4_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(13.0795 7.84328) rotate(90) scale(25.9451 21.2863)\">\\n<stop stop-color=\"#2538E0\"/>\\n<stop offset=\"0.574012\" stop-color=\"#500FDA\"/>\\n<stop offset=\"1\" stop-color=\"#0D0C48\"/>\\n</radialGradient>\\n<radialGradient id=\"paint5_radial_14470_50640\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(21.9494 23.6396) rotate(90) scale(10.4125 16.2322)\">\\n<stop stop-color=\"#2538E0\"/>\\n<stop offset=\"0.574012\" stop-color=\"#500FDA\"/>\\n<stop offset=\"1\" stop-color=\"#0D0C48\"/>\\n</radialGradient>\\n<linearGradient id=\"paint6_linear_14470_50640\" x1=\"10.9385\" y1=\"20.0742\" x2=\"16.6292\" y2=\"21.6093\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_14470_50640\" x1=\"28.792\" y1=\"20.0742\" x2=\"23.1012\" y2=\"21.6093\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_14470_50640\" x1=\"15.703\" y1=\"8.75836\" x2=\"19.8778\" y2=\"12.9192\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_14470_50640\" x1=\"24.0392\" y1=\"8.75836\" x2=\"19.8644\" y2=\"12.9192\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_14470_50640\" x1=\"21.8744\" y1=\"23.9321\" x2=\"27.7623\" y2=\"23.6603\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"white\"/>\\n<stop offset=\"1\" stop-color=\"white\" stop-opacity=\"0\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_14470_50640\">\\n<rect width=\"40\" height=\"40\" rx=\"20\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-niuedt\",\"data-framer-name\":\"Zapier\",layoutDependency:layoutDependency,layoutId:\"XaHFRmQY0\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bzt1qb\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"KCx68kN4v\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ln0tah\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"yq7e7cF4E\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cka5xj\",\"data-framer-name\":\"Integration Icons - 60px\",layoutDependency:layoutDependency,layoutId:\"qYK9HThzh\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-h6tmbz\",\"data-framer-name\":\"623d5669909409ce5fca6a74_google_form 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"JSM9g5Y41\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14450_38668)\">\\n<g clip-path=\"url(#clip1_14450_38668)\">\\n<mask id=\"mask0_14450_38668\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"18\" height=\"18\">\\n<path d=\"M18 0H0V18H18V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_14450_38668)\">\\n<path d=\"M12.622 7.49977H17.8753C17.9579 7.99324 18 8.49294 18 8.9935V9.0065C18 9.51554 17.957 10.0138 17.8756 10.5002H12.6211L16.3354 14.2156C16.0442 14.6248 15.7187 15.0091 15.364 15.3646C15.0086 15.7198 14.6243 16.0448 14.215 16.3363L10.4996 12.6212V17.875C10.0061 17.9577 9.50668 17.9995 9.00637 18H8.99365C8.48461 17.9994 7.98631 17.9565 7.50046 17.875V12.6212L3.78529 16.3355C2.96505 15.7511 2.24793 15.0341 1.66343 14.2139L5.37971 10.5H0.125279C0.0432662 10.0133 0 9.51327 0 9.00311V8.99689C0 8.48673 0.124998 7.49977 0.124998 7.49977H5.37944L1.66372 3.78551C1.95494 3.37655 2.2797 2.9925 2.63457 2.63736L2.63626 2.63567C2.99117 2.28026 3.37523 1.95521 3.78445 1.66397L7.50017 5.3788V0.125279C7.98658 0.0435506 8.48572 0 8.99534 0H9.00495C9.50585 0.000285509 10.0059 0.0421893 10.4998 0.125279V5.3788L14.2147 1.66426C15.0351 2.24811 15.7522 2.96498 16.3363 3.78524L12.622 7.49977Z\" fill=\"url(#paint0_linear_14450_38668)\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_14450_38668\" x1=\"9\" y1=\"0\" x2=\"9\" y2=\"18\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_14450_38668\">\\n<rect width=\"18\" height=\"18\" fill=\"white\"/>\\n</clipPath>\\n<clipPath id=\"clip1_14450_38668\">\\n<rect width=\"18\" height=\"18\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-l5eb3p\",\"data-framer-name\":\"623d592e9163fb8416edb608_Zapier 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I13458:87395;13458:86076;12843:67041;7702:290411\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14450_43275)\">\\n<mask id=\"mask0_14450_43275\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"18\" height=\"18\">\\n<path d=\"M18 0H0V18H18V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_14450_43275)\">\\n<path d=\"M12.622 7.49977H17.8753C17.9579 7.99324 18 8.49294 18 8.9935V9.0065C18 9.51554 17.957 10.0138 17.8756 10.5002H12.6211L16.3354 14.2156C16.0442 14.6248 15.7187 15.0091 15.364 15.3646C15.0086 15.7198 14.6243 16.0448 14.215 16.3363L10.4996 12.6212V17.875C10.0061 17.9577 9.50668 17.9995 9.00637 18H8.99365C8.48461 17.9994 7.98631 17.9565 7.50046 17.875V12.6212L3.78529 16.3355C2.96505 15.7511 2.24793 15.0341 1.66343 14.2139L5.37971 10.5H0.125279C0.0432662 10.0133 0 9.51327 0 9.00311V8.99689C0 8.48673 0.124998 7.49977 0.124998 7.49977H5.37944L1.66372 3.78551C1.95494 3.37655 2.2797 2.9925 2.63457 2.63736L2.63626 2.63567C2.99117 2.28026 3.37523 1.95521 3.78445 1.66397L7.50017 5.3788V0.125279C7.98658 0.0435506 8.48572 0 8.99534 0H9.00495C9.50585 0.000285509 10.0059 0.0421893 10.4998 0.125279V5.3788L14.2147 1.66426C15.0351 2.24811 15.7522 2.96498 16.3363 3.78524L12.622 7.49977Z\" fill=\"#FF4A00\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_14450_43275\">\\n<rect width=\"18\" height=\"18\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15s81di\",\"data-framer-name\":\"Slack\",layoutDependency:layoutDependency,layoutId:\"fYhnJYWNM\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14dxwmf\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"o3Q3HluUw\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q5bebj\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"vAHtKfSkj\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-n8obxi\",\"data-framer-name\":\"Slack-logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I13458:87137;13458:86096;13402:89150\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.12825 11.2848C4.12825 12.2891 3.32612 13.1008 2.33366 13.1008C1.34119 13.1008 0.539062 12.2891 0.539062 11.2848C0.539062 10.2805 1.34119 9.46875 2.33366 9.46875H4.12825V11.2848Z\" fill=\"url(#paint0_linear_14450_38680)\"/>\\n<path d=\"M5.02344 11.2848C5.02344 10.2805 5.82557 9.46875 6.81803 9.46875C7.8105 9.46875 8.61263 10.2805 8.61263 11.2848V15.8249C8.61263 16.8292 7.8105 17.6409 6.81803 17.6409C5.82557 17.6409 5.02344 16.8292 5.02344 15.8249V11.2848Z\" fill=\"url(#paint1_linear_14450_38680)\"/>\\n<path d=\"M6.81803 3.99243C5.82557 3.99243 5.02344 3.18071 5.02344 2.17639C5.02344 1.17207 5.82557 0.360352 6.81803 0.360352C7.8105 0.360352 8.61263 1.17207 8.61263 2.17639V3.99243H6.81803Z\" fill=\"url(#paint2_linear_14450_38680)\"/>\\n<path d=\"M6.81811 4.91406C7.81058 4.91406 8.61271 5.72578 8.61271 6.7301C8.61271 7.73442 7.81058 8.54614 6.81811 8.54614H2.31803C1.32557 8.54614 0.523438 7.73442 0.523438 6.7301C0.523438 5.72578 1.32557 4.91406 2.31803 4.91406H6.81811Z\" fill=\"url(#paint3_linear_14450_38680)\"/>\\n<path d=\"M14.0078 6.7301C14.0078 5.72578 14.8099 4.91406 15.8024 4.91406C16.7949 4.91406 17.597 5.72578 17.597 6.7301C17.597 7.73442 16.7949 8.54614 15.8024 8.54614H14.0078V6.7301Z\" fill=\"url(#paint4_linear_14450_38680)\"/>\\n<path d=\"M13.1126 6.73025C13.1126 7.73457 12.3105 8.54629 11.318 8.54629C10.3256 8.54629 9.52344 7.73457 9.52344 6.73025V2.17639C9.52344 1.17207 10.3256 0.360352 11.318 0.360352C12.3105 0.360352 13.1126 1.17207 13.1126 2.17639V6.73025Z\" fill=\"url(#paint5_linear_14450_38680)\"/>\\n<path d=\"M11.318 14.0088C12.3105 14.0088 13.1126 14.8205 13.1126 15.8248C13.1126 16.8292 12.3105 17.6409 11.318 17.6409C10.3256 17.6409 9.52344 16.8292 9.52344 15.8248V14.0088H11.318Z\" fill=\"url(#paint6_linear_14450_38680)\"/>\\n<path d=\"M11.318 13.1008C10.3256 13.1008 9.52344 12.2891 9.52344 11.2848C9.52344 10.2805 10.3256 9.46875 11.318 9.46875H15.8181C16.8106 9.46875 17.6127 10.2805 17.6127 11.2848C17.6127 12.2891 16.8106 13.1008 15.8181 13.1008H11.318Z\" fill=\"url(#paint7_linear_14450_38680)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14450_38680\" x1=\"2.33366\" y1=\"9.46875\" x2=\"2.33366\" y2=\"13.1008\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14450_38680\" x1=\"6.81803\" y1=\"9.46875\" x2=\"6.81803\" y2=\"17.6409\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14450_38680\" x1=\"6.81803\" y1=\"0.360352\" x2=\"6.81803\" y2=\"3.99243\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14450_38680\" x1=\"4.56807\" y1=\"4.91406\" x2=\"4.56807\" y2=\"8.54614\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14450_38680\" x1=\"15.8024\" y1=\"4.91406\" x2=\"15.8024\" y2=\"8.54614\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_14450_38680\" x1=\"11.318\" y1=\"0.360352\" x2=\"11.318\" y2=\"8.54629\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_14450_38680\" x1=\"11.318\" y1=\"14.0088\" x2=\"11.318\" y2=\"17.6409\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_14450_38680\" x1=\"13.5681\" y1=\"9.46875\" x2=\"13.5681\" y2=\"13.1008\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-4kevf6\",\"data-framer-name\":\"Integration Icons - 60px\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I13458:87395;13458:86077;12843:65597\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_14450_43285)\">\\n<path d=\"M4.12825 11.2848C4.12825 12.2891 3.32612 13.1008 2.33366 13.1008C1.34119 13.1008 0.539062 12.2891 0.539062 11.2848C0.539062 10.2805 1.34119 9.46875 2.33366 9.46875H4.12825V11.2848Z\" fill=\"#E01E5A\"/>\\n<path d=\"M5.02344 11.2848C5.02344 10.2805 5.82557 9.46875 6.81803 9.46875C7.8105 9.46875 8.61263 10.2805 8.61263 11.2848V15.8249C8.61263 16.8292 7.8105 17.6409 6.81803 17.6409C5.82557 17.6409 5.02344 16.8292 5.02344 15.8249V11.2848Z\" fill=\"#E01E5A\"/>\\n<path d=\"M6.81803 3.99243C5.82557 3.99243 5.02344 3.18071 5.02344 2.17639C5.02344 1.17207 5.82557 0.360352 6.81803 0.360352C7.8105 0.360352 8.61263 1.17207 8.61263 2.17639V3.99243H6.81803Z\" fill=\"#36C5F0\"/>\\n<path d=\"M6.81811 4.91406C7.81058 4.91406 8.61271 5.72578 8.61271 6.7301C8.61271 7.73442 7.81058 8.54614 6.81811 8.54614H2.31803C1.32557 8.54614 0.523438 7.73442 0.523438 6.7301C0.523438 5.72578 1.32557 4.91406 2.31803 4.91406H6.81811Z\" fill=\"#36C5F0\"/>\\n<path d=\"M14.0078 6.7301C14.0078 5.72578 14.8099 4.91406 15.8024 4.91406C16.7949 4.91406 17.597 5.72578 17.597 6.7301C17.597 7.73442 16.7949 8.54614 15.8024 8.54614H14.0078V6.7301Z\" fill=\"#2EB67D\"/>\\n<path d=\"M13.1126 6.73025C13.1126 7.73457 12.3105 8.54629 11.318 8.54629C10.3256 8.54629 9.52344 7.73457 9.52344 6.73025V2.17639C9.52344 1.17207 10.3256 0.360352 11.318 0.360352C12.3105 0.360352 13.1126 1.17207 13.1126 2.17639V6.73025Z\" fill=\"#2EB67D\"/>\\n<path d=\"M11.318 14.0088C12.3105 14.0088 13.1126 14.8205 13.1126 15.8248C13.1126 16.8292 12.3105 17.6409 11.318 17.6409C10.3256 17.6409 9.52344 16.8292 9.52344 15.8248V14.0088H11.318Z\" fill=\"#ECB22E\"/>\\n<path d=\"M11.318 13.1008C10.3256 13.1008 9.52344 12.2891 9.52344 11.2848C9.52344 10.2805 10.3256 9.46875 11.318 9.46875H15.8181C16.8106 9.46875 17.6127 10.2805 17.6127 11.2848C17.6127 12.2891 16.8106 13.1008 15.8181 13.1008H11.318Z\" fill=\"#ECB22E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_14450_43285\">\\n<rect width=\"17.28\" height=\"17.28\" fill=\"white\" transform=\"translate(0.359375 0.360352)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-brep4c\",\"data-framer-name\":\"Teams\",layoutDependency:layoutDependency,layoutId:\"tvJ3_VqZE\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fl0t6\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"ZWzac9cXb\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-76c9dk\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"KtPGvEjpG\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-awp1es\",\"data-framer-name\":\"Frame 427322178\",layoutDependency:layoutDependency,layoutId:\"HJIvHZlFe\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8f5i38\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"yogaUjUP0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-op7ygu\",\"data-framer-name\":\"teams\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"I14470:83854;2305:74608\",svg:'<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14470_83856)\">\\n<path d=\"M10.8125 7.42439C10.8125 7.1625 11.0248 6.9502 11.2867 6.9502L17.6505 6.9502C17.9124 6.9502 18.1247 7.1625 18.1247 7.42439V10.644C18.1247 12.6633 16.4878 14.3001 14.4686 14.3001V14.3001C12.4494 14.3001 10.8125 12.6633 10.8125 10.644V7.42439Z\" fill=\"url(#paint0_linear_14470_83856)\"/>\\n<path d=\"M5.1875 6.54369C5.1875 6.18827 5.47562 5.90015 5.83104 5.90015L13.5436 5.90015C13.899 5.90015 14.1872 6.18827 14.1872 6.54369V11.3753C14.1872 13.8604 12.1725 15.8751 9.68733 15.8751V15.8751C7.20214 15.8751 5.1875 13.8604 5.1875 11.3753V6.54369Z\" fill=\"url(#paint1_linear_14470_83856)\"/>\\n<ellipse cx=\"15.3124\" cy=\"4.32511\" rx=\"1.68744\" ry=\"1.57499\" fill=\"#34439E\"/>\\n<ellipse cx=\"15.3124\" cy=\"4.32511\" rx=\"1.68744\" ry=\"1.57499\" fill=\"url(#paint2_linear_14470_83856)\"/>\\n<ellipse cx=\"10.2499\" cy=\"3.27516\" rx=\"2.24992\" ry=\"2.09999\" fill=\"url(#paint3_linear_14470_83856)\"/>\\n<mask id=\"mask0_14470_83856\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"5\" y=\"0\" width=\"10\" height=\"16\">\\n<path d=\"M9.68733 5.37509C11.2406 5.37509 12.4997 4.19987 12.4997 2.75011C12.4997 1.30034 11.2406 0.125122 9.68733 0.125122C8.13406 0.125122 6.87494 1.30034 6.87494 2.75011C6.87494 4.19987 8.13406 5.37509 9.68733 5.37509Z\" fill=\"url(#paint4_linear_14470_83856)\"/>\\n<path d=\"M5.877 5.90009C5.4962 5.90009 5.1875 6.18822 5.1875 6.54364V11.675C5.1875 13.9947 7.20211 15.875 9.68733 15.875C12.1725 15.875 14.1872 13.9947 14.1872 11.675V6.54364C14.1872 6.18822 13.8785 5.90009 13.4977 5.90009L5.877 5.90009Z\" fill=\"url(#paint5_linear_14470_83856)\"/>\\n</mask>\\n<g mask=\"url(#mask0_14470_83856)\">\\n<path d=\"M4.0625 6.32653C4.0625 5.51105 4.72358 4.84998 5.53905 4.84998L9.89817 4.84998C10.7136 4.84998 11.3747 5.51105 11.3747 6.32653V12.8234C11.3747 13.6388 10.7136 14.2999 9.89817 14.2999H4.0625V6.32653Z\" fill=\"black\" fill-opacity=\"0.3\"/>\\n</g>\\n<rect x=\"0.125\" y=\"3.80005\" width=\"10.1246\" height=\"9.44994\" rx=\"0.984369\" fill=\"url(#paint6_linear_14470_83856)\"/>\\n<path d=\"M7.43733 5.90002H2.9375V6.86325H4.62209V11.15H5.75274V6.86325H7.43733V5.90002Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14470_83856\" x=\"0.125\" y=\"0.365171\" width=\"18\" height=\"16.32\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.81\"/>\\n<feGaussianBlur stdDeviation=\"0.81\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83856\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.81\"/>\\n<feGaussianBlur stdDeviation=\"0.81\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83856\" result=\"effect2_innerShadow_14470_83856\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14470_83856\" x1=\"10.8125\" y1=\"7.33703\" x2=\"17.9005\" y2=\"12.2993\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#364088\"/>\\n<stop offset=\"1\" stop-color=\"#6E7EE1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14470_83856\" x1=\"5.1875\" y1=\"10.3121\" x2=\"14.1872\" y2=\"10.3121\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#515FC4\"/>\\n<stop offset=\"1\" stop-color=\"#7084EA\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14470_83856\" x1=\"13.625\" y1=\"2.91591\" x2=\"16.7331\" y2=\"5.25923\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#364088\"/>\\n<stop offset=\"1\" stop-color=\"#6E7EE1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14470_83856\" x1=\"8.64283\" y1=\"1.77517\" x2=\"11.3083\" y2=\"5.10695\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4858AE\"/>\\n<stop offset=\"1\" stop-color=\"#4E60CE\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14470_83856\" x1=\"7.67848\" y1=\"0.875117\" x2=\"11.0104\" y2=\"5.03984\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4858AE\"/>\\n<stop offset=\"1\" stop-color=\"#4E60CE\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_14470_83856\" x1=\"7.67848\" y1=\"0.875117\" x2=\"11.0104\" y2=\"5.03984\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#4858AE\"/>\\n<stop offset=\"1\" stop-color=\"#4E60CE\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_14470_83856\" x1=\"0.125\" y1=\"8.52502\" x2=\"10.2496\" y2=\"8.52502\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#2A3887\"/>\\n<stop offset=\"1\" stop-color=\"#4C56B9\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7gbvh\",\"data-framer-name\":\"Frame 427322179\",layoutDependency:layoutDependency,layoutId:\"B0uD_mMkb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16v82dm\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"knuHzqbgr\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-te9d1j\",\"data-framer-name\":\"teams\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:19,layoutDependency:layoutDependency,layoutId:\"I14470:83855;2305:74608\",svg:'<svg width=\"19\" height=\"16\" viewBox=\"0 0 19 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14470_83866)\">\\n<g filter=\"url(#filter1_ii_14470_83866)\">\\n<path d=\"M11.5625 7.42439C11.5625 7.1625 11.7748 6.9502 12.0367 6.9502L18.4005 6.9502C18.6624 6.9502 18.8747 7.1625 18.8747 7.42439V10.644C18.8747 12.6633 17.2378 14.3001 15.2186 14.3001V14.3001C13.1994 14.3001 11.5625 12.6633 11.5625 10.644V7.42439Z\" fill=\"url(#paint0_linear_14470_83866)\"/>\\n</g>\\n<g filter=\"url(#filter2_ii_14470_83866)\">\\n<path d=\"M5.9375 6.54369C5.9375 6.18827 6.22562 5.90015 6.58104 5.90015L14.2936 5.90015C14.649 5.90015 14.9372 6.18827 14.9372 6.54369V11.3753C14.9372 13.8604 12.9225 15.8751 10.4373 15.8751V15.8751C7.95214 15.8751 5.9375 13.8604 5.9375 11.3753V6.54369Z\" fill=\"url(#paint1_linear_14470_83866)\"/>\\n</g>\\n<g filter=\"url(#filter3_ii_14470_83866)\">\\n<ellipse cx=\"16.0624\" cy=\"4.32511\" rx=\"1.68744\" ry=\"1.57499\" fill=\"url(#paint2_linear_14470_83866)\"/>\\n</g>\\n<g filter=\"url(#filter4_ii_14470_83866)\">\\n<ellipse cx=\"10.9999\" cy=\"3.27516\" rx=\"2.24992\" ry=\"2.09999\" fill=\"url(#paint3_linear_14470_83866)\"/>\\n</g>\\n<g filter=\"url(#filter5_ii_14470_83866)\">\\n<mask id=\"mask0_14470_83866\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"5\" y=\"0\" width=\"10\" height=\"16\">\\n<path d=\"M10.4373 5.37509C11.9906 5.37509 13.2497 4.19987 13.2497 2.75011C13.2497 1.30034 11.9906 0.125122 10.4373 0.125122C8.88406 0.125122 7.62494 1.30034 7.62494 2.75011C7.62494 4.19987 8.88406 5.37509 10.4373 5.37509Z\" fill=\"url(#paint4_linear_14470_83866)\"/>\\n<path d=\"M6.627 5.90009C6.2462 5.90009 5.9375 6.18822 5.9375 6.54364V11.675C5.9375 13.9947 7.95211 15.875 10.4373 15.875C12.9225 15.875 14.9372 13.9947 14.9372 11.675V6.54364C14.9372 6.18822 14.6285 5.90009 14.2477 5.90009L6.627 5.90009Z\" fill=\"url(#paint5_linear_14470_83866)\"/>\\n</mask>\\n<g mask=\"url(#mask0_14470_83866)\">\\n<path d=\"M4.8125 4.84998L12.1247 4.84998V14.2999L4.8125 14.2999V4.84998Z\" fill=\"url(#paint6_linear_14470_83866)\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter6_ii_14470_83866)\">\\n<rect x=\"0.875\" y=\"3.80005\" width=\"10.1246\" height=\"9.44994\" fill=\"url(#paint7_linear_14470_83866)\"/>\\n</g>\\n<path d=\"M8.18733 5.90002H3.6875V6.86325H5.37209V11.15H6.50274V6.86325H8.18733V5.90002Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14470_83866\" x=\"0.875\" y=\"0.365171\" width=\"18\" height=\"16.32\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.81\"/>\\n<feGaussianBlur stdDeviation=\"0.81\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.81\"/>\\n<feGaussianBlur stdDeviation=\"0.81\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<filter id=\"filter1_ii_14470_83866\" x=\"11.5625\" y=\"6.08481\" width=\"7.3125\" height=\"8.64805\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.865385\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.432692\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<filter id=\"filter2_ii_14470_83866\" x=\"5.9375\" y=\"5.03476\" width=\"9\" height=\"11.2731\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.865385\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.432692\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<filter id=\"filter3_ii_14470_83866\" x=\"14.375\" y=\"1.88474\" width=\"3.375\" height=\"4.4481\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.865385\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.432692\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<filter id=\"filter4_ii_14470_83866\" x=\"8.75\" y=\"0.309786\" width=\"4.5\" height=\"5.49803\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.865385\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.432692\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<filter id=\"filter5_ii_14470_83866\" x=\"5.9375\" y=\"3.98459\" width=\"6.1875\" height=\"10.748\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.865385\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.432692\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<filter id=\"filter6_ii_14470_83866\" x=\"0.875\" y=\"2.93466\" width=\"10.125\" height=\"10.748\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.865385\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_83866\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.432692\"/>\\n<feGaussianBlur stdDeviation=\"0.432692\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_83866\" result=\"effect2_innerShadow_14470_83866\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14470_83866\" x1=\"15.2186\" y1=\"6.9502\" x2=\"15.2186\" y2=\"14.3001\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14470_83866\" x1=\"10.4373\" y1=\"5.90015\" x2=\"10.4373\" y2=\"15.8751\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14470_83866\" x1=\"16.0624\" y1=\"2.75012\" x2=\"16.0624\" y2=\"5.9001\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14470_83866\" x1=\"10.9999\" y1=\"1.17517\" x2=\"10.9999\" y2=\"5.37514\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14470_83866\" x1=\"10.4373\" y1=\"0.125122\" x2=\"10.4373\" y2=\"15.875\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_14470_83866\" x1=\"10.4373\" y1=\"0.125122\" x2=\"10.4373\" y2=\"15.875\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_14470_83866\" x1=\"8.46861\" y1=\"4.84998\" x2=\"8.46861\" y2=\"14.2999\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_14470_83866\" x1=\"5.93731\" y1=\"3.80005\" x2=\"5.93731\" y2=\"13.25\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19090x8\",\"data-framer-name\":\"paypal\",layoutDependency:layoutDependency,layoutId:\"bf5cPS480\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t6l3dw\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"VCqP2B10T\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h8eejz\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"tXb_0LAK5\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-f5rkev\",\"data-framer-name\":\"Interigation\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"Yc5_WeHr9\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.9773 5.40969C14.1526 4.26666 13.9773 3.50463 13.3637 2.80123C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L5.796 15.9315C5.76679 16.1366 5.91288 16.3125 6.14663 16.3125H8.51335C8.80554 16.3125 9.03929 16.1073 9.06851 15.8436L9.56523 12.7368C9.59445 12.4731 9.85742 12.2679 10.1204 12.2679L10.471 12.2679C12.7501 12.2679 14.5616 11.33 15.0876 8.63364C15.2921 7.51992 15.2045 6.55273 14.6201 5.90794C14.4448 5.70278 14.2402 5.55624 13.9773 5.40969Z\" fill=\"#009CDE\"/>\\n<path d=\"M13.9773 5.40969C14.1526 4.26666 13.9773 3.50463 13.3637 2.80123C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L6.67257 10.3629C6.73101 10.0405 6.99398 9.80599 7.31538 9.80599H8.65945C11.2891 9.80599 13.3345 8.75088 13.9188 5.64416C13.9481 5.58555 13.9481 5.49762 13.9773 5.40969Z\" fill=\"#012169\"/>\\n<path d=\"M7.46148 5.439C7.4907 5.23384 7.75366 4.97006 8.01663 4.97006L11.5813 4.97006C11.9904 4.97006 12.3995 4.99937 12.7501 5.05799C13.0715 5.11661 13.6559 5.26315 13.9481 5.439C14.1234 4.29597 13.9481 3.53394 13.3345 2.83054C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L7.46148 5.439Z\" fill=\"#003087\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1nfux7b\",\"data-framer-name\":\"Interigation\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"I13458:87137;13458:86098;13402:89177\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.9773 5.40969C14.1526 4.26666 13.9773 3.50463 13.3637 2.80123C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L5.796 15.9315C5.76679 16.1366 5.91288 16.3125 6.14663 16.3125H8.51335C8.80554 16.3125 9.03929 16.1073 9.06851 15.8436L9.56523 12.7368C9.59445 12.4731 9.85742 12.2679 10.1204 12.2679L10.471 12.2679C12.7501 12.2679 14.5616 11.33 15.0876 8.63364C15.2921 7.51992 15.2045 6.55273 14.6201 5.90794C14.4448 5.70278 14.2402 5.55624 13.9773 5.40969Z\" fill=\"url(#paint0_linear_14450_38712)\"/>\\n<path d=\"M13.9773 5.40969C14.1526 4.26666 13.9773 3.50463 13.3637 2.80123C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L5.796 15.9315C5.76679 16.1366 5.91288 16.3125 6.14663 16.3125H8.51335C8.80554 16.3125 9.03929 16.1073 9.06851 15.8436L9.56523 12.7368C9.59445 12.4731 9.85742 12.2679 10.1204 12.2679L10.471 12.2679C12.7501 12.2679 14.5616 11.33 15.0876 8.63364C15.2921 7.51992 15.2045 6.55273 14.6201 5.90794C14.4448 5.70278 14.2402 5.55624 13.9773 5.40969Z\" fill=\"url(#paint1_linear_14450_38712)\"/>\\n<path d=\"M13.9773 5.40969C14.1526 4.26666 13.9773 3.50463 13.3637 2.80123C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L6.67257 10.3629C6.73101 10.0405 6.99398 9.80599 7.31538 9.80599H8.65945C11.2891 9.80599 13.3345 8.75088 13.9188 5.64416C13.9481 5.58555 13.9481 5.49762 13.9773 5.40969Z\" fill=\"#727B82\"/>\\n<g filter=\"url(#filter0_i_14450_38712)\">\\n<path d=\"M7.46148 5.439C7.4907 5.23384 7.75366 4.97006 8.01663 4.97006L11.5813 4.97006C11.9904 4.97006 12.3995 4.99937 12.7501 5.05799C13.0715 5.11661 13.6559 5.26315 13.9481 5.439C14.1234 4.29597 13.9481 3.53394 13.3345 2.83054C12.6916 2.00989 11.4645 1.6875 9.88664 1.6875L5.35772 1.6875C5.03632 1.6875 4.77335 1.92197 4.71491 2.24436L2.81569 14.2609C2.78647 14.4954 2.96178 14.7005 3.19553 14.7005H6.00054L7.46148 5.439Z\" fill=\"url(#paint2_linear_14450_38712)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_i_14450_38712\" x=\"2.8125\" y=\"1.6875\" width=\"11.1992\" height=\"13.3973\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.384615\"/>\\n<feGaussianBlur stdDeviation=\"0.384615\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14450_38712\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14450_38712\" x1=\"9\" y1=\"1.6875\" x2=\"9\" y2=\"16.3125\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14450_38712\" x1=\"9\" y1=\"1.6875\" x2=\"9\" y2=\"16.3125\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#B9C7D2\"/>\\n<stop offset=\"1\" stop-color=\"#939DA5\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14450_38712\" x1=\"8.41249\" y1=\"1.6875\" x2=\"8.41249\" y2=\"14.7005\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6f1ch9\",\"data-framer-name\":\"Github\",layoutDependency:layoutDependency,layoutId:\"zjfTJ9V_Y\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3cmftk\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"FbP1Q9sns\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hv2eht\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VHH6asPuy\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ddeld1\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"I13458:87395;13458:86080;13402:88167\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mkv9md\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I13458:87395;13458:86080;13402:88167;2305:74696\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 0.125C3.64906 0.125 0.125 3.64906 0.125 8C0.125 11.4847 2.37922 14.428 5.50953 15.4714C5.90328 15.5403 6.05094 15.3041 6.05094 15.0973C6.05094 14.9103 6.04109 14.2902 6.04109 13.6306C4.0625 13.9948 3.55062 13.1483 3.39312 12.7053C3.30453 12.4789 2.92062 11.78 2.58594 11.593C2.31031 11.4453 1.91656 11.0811 2.57609 11.0712C3.19625 11.0614 3.63922 11.6422 3.78688 11.8784C4.49563 13.0695 5.62766 12.7348 6.08047 12.5281C6.14937 12.0163 6.35609 11.6717 6.5825 11.4748C4.83031 11.278 2.99938 10.5988 2.99938 7.58656C2.99938 6.73016 3.30453 6.02141 3.80656 5.47016C3.72781 5.27328 3.45219 4.46609 3.88531 3.38328C3.88531 3.38328 4.54484 3.17656 6.05094 4.19047C6.68094 4.01328 7.35031 3.92469 8.01969 3.92469C8.68906 3.92469 9.35844 4.01328 9.98844 4.19047C11.4945 3.16672 12.1541 3.38328 12.1541 3.38328C12.5872 4.46609 12.3116 5.27328 12.2328 5.47016C12.7348 6.02141 13.04 6.72031 13.04 7.58656C13.04 10.6086 11.1992 11.278 9.44703 11.4748C9.7325 11.7209 9.97859 12.1934 9.97859 12.9317C9.97859 13.985 9.96875 14.8316 9.96875 15.0973C9.96875 15.3041 10.1164 15.5502 10.5102 15.4714C12.0735 14.9436 13.432 13.9389 14.3943 12.5986C15.3567 11.2583 15.8746 9.65001 15.875 8C15.875 3.64906 12.3509 0.125 8 0.125Z\" fill=\"#14151A\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fsnnd9\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"Qm4_65Pk3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1he53w\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"I14470:58351;2305:74696\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_ii_14470_58352)\">\\n<path d=\"M8 0.125C3.64906 0.125 0.125 3.64906 0.125 8C0.125 11.4847 2.37922 14.428 5.50953 15.4714C5.90328 15.5403 6.05094 15.3041 6.05094 15.0973C6.05094 14.9103 6.04109 14.2902 6.04109 13.6306C4.0625 13.9948 3.55062 13.1483 3.39312 12.7053C3.30453 12.4789 2.92063 11.78 2.58594 11.593C2.31031 11.4453 1.91656 11.0811 2.57609 11.0712C3.19625 11.0614 3.63922 11.6422 3.78688 11.8784C4.49563 13.0695 5.62766 12.7348 6.08047 12.5281C6.14938 12.0163 6.35609 11.6717 6.5825 11.4748C4.83031 11.278 2.99938 10.5987 2.99938 7.58656C2.99938 6.73016 3.30453 6.02141 3.80656 5.47016C3.72781 5.27328 3.45219 4.46609 3.88531 3.38328C3.88531 3.38328 4.54484 3.17656 6.05094 4.19047C6.68094 4.01328 7.35031 3.92469 8.01969 3.92469C8.68906 3.92469 9.35844 4.01328 9.98844 4.19047C11.4945 3.16672 12.1541 3.38328 12.1541 3.38328C12.5872 4.46609 12.3116 5.27328 12.2328 5.47016C12.7348 6.02141 13.04 6.72031 13.04 7.58656C13.04 10.6086 11.1992 11.278 9.44703 11.4748C9.7325 11.7209 9.97859 12.1934 9.97859 12.9317C9.97859 13.985 9.96875 14.8316 9.96875 15.0973C9.96875 15.3041 10.1164 15.5502 10.5102 15.4714C12.0735 14.9436 13.432 13.9389 14.3943 12.5986C15.3567 11.2583 15.8746 9.65001 15.875 8C15.875 3.64906 12.3509 0.125 8 0.125Z\" fill=\"url(#paint0_linear_14470_58352)\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_ii_14470_58352\" x=\"0.125\" y=\"-0.644231\" width=\"15.75\" height=\"16.5153\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"-0.769231\"/>\\n<feGaussianBlur stdDeviation=\"0.384615\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"shape\" result=\"effect1_innerShadow_14470_58352\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"0.384615\"/>\\n<feGaussianBlur stdDeviation=\"0.384615\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"arithmetic\" k2=\"-1\" k3=\"1\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0 0.39738 0 0 0 0.12 0\"/>\\n<feBlend mode=\"normal\" in2=\"effect1_innerShadow_14470_58352\" result=\"effect2_innerShadow_14470_58352\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_14470_58352\" x1=\"8\" y1=\"0.125\" x2=\"8\" y2=\"15.4865\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t7erre\",\"data-framer-name\":\"Stripe\",layoutDependency:layoutDependency,layoutId:\"TLapeO5f9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m1thyo\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"xPAgDMVSJ\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3r8ixg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"kfkmVnWbJ\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d2g9bs\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"I13458:87137;13458:86100;13402:89187\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1mg5a7j\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"I13458:87137;13458:86100;13402:89187;13402:87658\",svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.435974 2.18404C0 3.03969 0 4.15979 0 6.4L0 7.6C0 9.84021 0 10.9603 0.435974 11.816C0.819467 12.5686 1.43139 13.1805 2.18404 13.564C3.03969 14 4.15979 14 6.4 14H7.6C9.84021 14 10.9603 14 11.816 13.564C12.5686 13.1805 13.1805 12.5686 13.564 11.816C14 10.9603 14 9.84021 14 7.6V6.4C14 4.15979 14 3.03969 13.564 2.18404C13.1805 1.43139 12.5686 0.819467 11.816 0.435974C10.9603 0 9.84021 0 7.6 0L6.4 0C4.15979 0 3.03969 0 2.18404 0.435974C1.43139 0.819467 0.819467 1.43139 0.435974 2.18404Z\" fill=\"url(#paint0_linear_14450_38732)\"/>\\n<path d=\"M0.132611 3.13952C0 3.89316 0 4.89314 0 6.39973L0 7.59973C0 9.83994 0 10.96 0.435974 11.8157C0.819467 12.5683 1.43139 13.1803 2.18404 13.5638C3.03969 13.9997 4.15979 13.9997 6.4 13.9997H7.6C9.84021 13.9997 10.9603 13.9997 11.816 13.5638C12.5686 13.1803 13.1805 12.5683 13.564 11.8157C14 10.96 14 9.83994 14 7.59973V6.39973C14 4.15952 14 3.03942 13.564 2.18377C13.1939 1.45731 12.6109 0.861953 11.894 0.476562L0.132611 3.13952Z\" fill=\"url(#paint1_linear_14450_38732)\"/>\\n<path d=\"M13.8571 10.9268C13.7928 11.2646 13.7 11.5527 13.566 11.8157C13.1825 12.5683 12.5706 13.1803 11.8179 13.5638C10.9879 13.9867 9.90897 13.9993 7.80009 13.9997H7.03125V12.4181L13.8571 10.9268Z\" fill=\"url(#paint2_linear_14450_38732)\"/>\\n<path d=\"M7.59755 0L6.39755 0C5.96172 0 5.56828 0 5.21094 0.00321034V1.98526L11.8902 0.476126C11.8648 0.462477 11.8393 0.449092 11.8135 0.435974C11.3385 0.193941 10.782 0.0862738 9.99755 0.0383785C9.36899 0 8.59409 0 7.59755 0Z\" fill=\"url(#paint3_linear_14450_38732)\"/>\\n<path d=\"M13.9993 7.6868C13.9992 9.18959 13.9966 10.1802 13.8545 10.9271L11.4805 11.4458V7.90804L13.9993 7.32227V7.6868Z\" fill=\"url(#paint4_linear_14450_38732)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.47168 5.68895C6.47168 5.36761 6.7344 5.24402 7.16953 5.24402C7.7935 5.24402 8.58166 5.43352 9.20563 5.77134V3.83507C8.52419 3.56317 7.85097 3.45605 7.16953 3.45605C5.50289 3.45605 4.39453 4.32944 4.39453 5.78782C4.39453 8.06191 7.51435 7.69938 7.51435 8.67987C7.51435 9.05889 7.18595 9.18248 6.72619 9.18248C6.04475 9.18248 5.17449 8.90234 4.48484 8.52332V10.4843C5.24838 10.8139 6.02012 10.954 6.72619 10.954C8.43388 10.954 9.60792 10.1053 9.60792 8.63043C9.59971 6.17508 6.47168 6.61177 6.47168 5.68895Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14450_38732\" x1=\"7\" y1=\"0\" x2=\"7\" y2=\"14\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14450_38732\" x1=\"7\" y1=\"0.476562\" x2=\"7\" y2=\"13.9997\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14450_38732\" x1=\"10.4442\" y1=\"10.9268\" x2=\"10.4442\" y2=\"13.9997\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14450_38732\" x1=\"8.55059\" y1=\"0\" x2=\"8.55059\" y2=\"1.98526\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14450_38732\" x1=\"12.7399\" y1=\"7.32227\" x2=\"12.7399\" y2=\"11.4458\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#939DA5\"/>\\n<stop offset=\"1\" stop-color=\"#676F76\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hkg3k2\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"I13458:87395;13458:86081;13402:87641\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-6vwah6\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"I13458:87395;13458:86081;13402:87641;13402:87658\",svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.435974 2.18404C0 3.03969 0 4.15979 0 6.4L0 7.6C0 9.84021 0 10.9603 0.435974 11.816C0.819467 12.5686 1.43139 13.1805 2.18404 13.564C3.03969 14 4.15979 14 6.4 14H7.6C9.84021 14 10.9603 14 11.816 13.564C12.5686 13.1805 13.1805 12.5686 13.564 11.816C14 10.9603 14 9.84021 14 7.6V6.4C14 4.15979 14 3.03969 13.564 2.18404C13.1805 1.43139 12.5686 0.819467 11.816 0.435974C10.9603 0 9.84021 0 7.6 0L6.4 0C4.15979 0 3.03969 0 2.18404 0.435974C1.43139 0.819467 0.819467 1.43139 0.435974 2.18404Z\" fill=\"url(#paint0_linear_14450_43334)\"/>\\n<path d=\"M0.132611 3.13952C0 3.89316 0 4.89314 0 6.39973L0 7.59973C0 9.83994 0 10.96 0.435974 11.8157C0.819467 12.5683 1.43139 13.1803 2.18404 13.5638C3.03969 13.9997 4.15979 13.9997 6.4 13.9997H7.6C9.84021 13.9997 10.9603 13.9997 11.816 13.5638C12.5686 13.1803 13.1805 12.5683 13.564 11.8157C14 10.96 14 9.83994 14 7.59973V6.39973C14 4.15952 14 3.03942 13.564 2.18377C13.1939 1.45731 12.6109 0.861953 11.894 0.476562L0.132611 3.13952Z\" fill=\"url(#paint1_linear_14450_43334)\"/>\\n<path d=\"M13.8571 10.9268C13.7928 11.2646 13.7 11.5527 13.566 11.8157C13.1825 12.5683 12.5706 13.1803 11.8179 13.5638C10.9879 13.9867 9.90897 13.9993 7.80009 13.9997H7.03125V12.4181L13.8571 10.9268Z\" fill=\"url(#paint2_linear_14450_43334)\"/>\\n<path d=\"M7.59755 0L6.39755 0C5.96172 0 5.56828 0 5.21094 0.00321034V1.98526L11.8902 0.476126C11.8648 0.462477 11.8393 0.449092 11.8135 0.435974C11.3385 0.193941 10.782 0.0862738 9.99755 0.0383785C9.36899 0 8.59409 0 7.59755 0Z\" fill=\"url(#paint3_linear_14450_43334)\"/>\\n<path d=\"M13.9993 7.6868C13.9992 9.18959 13.9966 10.1802 13.8545 10.9271L11.4805 11.4458V7.90804L13.9993 7.32227V7.6868Z\" fill=\"url(#paint4_linear_14450_43334)\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.47168 5.68895C6.47168 5.36761 6.7344 5.24402 7.16953 5.24402C7.7935 5.24402 8.58166 5.43352 9.20563 5.77134V3.83507C8.52419 3.56317 7.85097 3.45605 7.16953 3.45605C5.50289 3.45605 4.39453 4.32944 4.39453 5.78782C4.39453 8.06191 7.51435 7.69938 7.51435 8.67987C7.51435 9.05889 7.18595 9.18248 6.72619 9.18248C6.04475 9.18248 5.17449 8.90234 4.48484 8.52332V10.4843C5.24838 10.8139 6.02012 10.954 6.72619 10.954C8.43388 10.954 9.60792 10.1053 9.60792 8.63043C9.59971 6.17508 6.47168 6.61177 6.47168 5.68895Z\" fill=\"white\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_14450_43334\" x1=\"0\" y1=\"0\" x2=\"4.59833\" y2=\"3.25105\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#392993\"/>\\n<stop offset=\"1\" stop-color=\"#4B47B9\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_14450_43334\" x1=\"0.527197\" y1=\"3.28697\" x2=\"10.6783\" y2=\"11.6602\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#594BB9\"/>\\n<stop offset=\"1\" stop-color=\"#60A8F2\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_14450_43334\" x1=\"7.03125\" y1=\"12.4767\" x2=\"14.002\" y2=\"13.9997\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#61A2EF\"/>\\n<stop offset=\"1\" stop-color=\"#58E6FD\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_14450_43334\" x1=\"5.21094\" y1=\"0.995816\" x2=\"13.9975\" y2=\"1.74274e-07\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#534EBE\"/>\\n<stop offset=\"1\" stop-color=\"#6875E2\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_14450_43334\" x1=\"11.4805\" y1=\"7.93733\" x2=\"13.9993\" y2=\"10.9541\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#71A5F3\"/>\\n<stop offset=\"1\" stop-color=\"#6CC3FA\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mzd604\",\"data-framer-name\":\"Figma\",layoutDependency:layoutDependency,layoutId:\"I3Fxlr47t\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qgr0dg\",\"data-framer-name\":\"Circle\",layoutDependency:layoutDependency,layoutId:\"M1VP8cYAM\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(255, 255, 255) 27.553139076576578%, rgb(242, 242, 242) 100%)\",borderBottomLeftRadius:60,borderBottomRightRadius:60,borderTopLeftRadius:60,borderTopRightRadius:60,boxShadow:\"0px 0.68px 2px 0px rgba(0, 0, 0, 0.13), 0px 2px 6px 0px rgba(0, 0, 0, 0.07)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12frqu9\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"jFmhyjXvM\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"rgba(46, 79, 94, 0.12)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,boxShadow:\"0px 1.2px 4.8px 0px rgba(0, 0, 0, 0.08)\"},children:[isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/pLkIidtJ4Um4zuia4QOt9iCzc0.svg\"},className:\"framer-pqb350\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"sfL3EhuzA\",...addPropertyOverrides({\"rYzRCVavP-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||260)*.8115384615384618-157)+48+0+2+7),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/pLkIidtJ4Um4zuia4QOt9iCzc0.svg\"}}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||260)*.8115384615384618-157)+48+0+2+7),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/OlyTiV8JXLRLtvChJcruE0gPqA.svg\"},className:\"framer-1c3t2su\",\"data-framer-name\":\"Interigation\",layoutDependency:layoutDependency,layoutId:\"I13458:87137;13458:86101;13424:69674\"})]})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LSbCa.framer-vtf29s, .framer-LSbCa .framer-vtf29s { display: block; }\",\".framer-LSbCa.framer-5ulzft { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 260px; justify-content: flex-start; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 376px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LSbCa .framer-s1dts2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LSbCa .framer-3k2sgw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LSbCa .framer-1u1bbhh, .framer-LSbCa .framer-ptk8ai { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LSbCa .framer-1blt50y { flex: none; height: 314px; left: calc(48.93617021276598% - 312px / 2); overflow: visible; position: absolute; top: calc(81.15384615384617% - 314px / 2); width: 312px; z-index: 0; }\",\".framer-LSbCa .framer-15lhwyi { flex: none; height: 300px; left: calc(51.60256410256413% - 301px / 2); position: absolute; top: calc(52.22929936305734% - 300px / 2); width: 301px; }\",\".framer-LSbCa .framer-r2fb8e { flex: none; height: 220px; left: calc(51.60256410256413% - 221px / 2); position: absolute; top: calc(52.22929936305734% - 220px / 2); width: 221px; }\",\".framer-LSbCa .framer-bykm3b { flex: none; height: 140px; left: calc(51.60256410256413% - 141px / 2); position: absolute; top: calc(52.22929936305734% - 140px / 2); width: 141px; }\",\".framer-LSbCa .framer-11jeis7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 50%; width: min-content; }\",\".framer-LSbCa .framer-1cpw75s { flex: none; height: 60px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LSbCa .framer-17tfyqf { flex: none; height: 54px; left: calc(50.00000000000002% - 54px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 54px / 2); width: 54px; }\",\".framer-LSbCa .framer-1vcaabq, .framer-LSbCa .framer-1d99im7 { flex: none; height: 40px; left: calc(50.00000000000002% - 40px / 2); position: absolute; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-LSbCa .framer-niuedt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 41%; overflow: visible; padding: 0px; position: absolute; top: 7%; width: min-content; }\",\".framer-LSbCa .framer-1bzt1qb, .framer-LSbCa .framer-14dxwmf, .framer-LSbCa .framer-8fl0t6, .framer-LSbCa .framer-1t6l3dw, .framer-LSbCa .framer-3cmftk, .framer-LSbCa .framer-1m1thyo, .framer-LSbCa .framer-qgr0dg { flex: none; height: 36px; overflow: hidden; position: relative; width: 36px; will-change: var(--framer-will-change-override, transform); }\",\".framer-LSbCa .framer-ln0tah, .framer-LSbCa .framer-1q5bebj, .framer-LSbCa .framer-76c9dk, .framer-LSbCa .framer-1h8eejz, .framer-LSbCa .framer-hv2eht, .framer-LSbCa .framer-3r8ixg, .framer-LSbCa .framer-12frqu9 { flex: none; height: 32px; left: calc(50.00000000000002% - 32px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 32px / 2); width: 32px; }\",\".framer-LSbCa .framer-1cka5xj, .framer-LSbCa .framer-ddeld1, .framer-LSbCa .framer-1fsnnd9 { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-LSbCa .framer-h6tmbz, .framer-LSbCa .framer-l5eb3p { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-LSbCa .framer-15s81di { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 90%; overflow: visible; padding: 0px; position: absolute; top: 25%; width: min-content; }\",\".framer-LSbCa .framer-n8obxi, .framer-LSbCa .framer-4kevf6, .framer-LSbCa .framer-f5rkev, .framer-LSbCa .framer-1nfux7b { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-LSbCa .framer-brep4c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 7%; overflow: visible; padding: 0px; position: absolute; top: 37%; width: min-content; }\",\".framer-LSbCa .framer-awp1es, .framer-LSbCa .framer-u7gbvh { flex: none; height: 18px; left: calc(50.00000000000002% - 19px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 19px; }\",\".framer-LSbCa .framer-8f5i38, .framer-LSbCa .framer-16v82dm { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-LSbCa .framer-op7ygu { flex: none; height: 16px; left: 1px; position: absolute; top: 1px; width: 19px; }\",\".framer-LSbCa .framer-te9d1j { flex: none; height: 16px; left: 0px; position: absolute; top: 1px; width: 19px; }\",\".framer-LSbCa .framer-19090x8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 86%; overflow: visible; padding: 0px; position: absolute; top: 48%; width: min-content; }\",\".framer-LSbCa .framer-6f1ch9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 28%; overflow: visible; padding: 0px; position: absolute; top: 28%; width: min-content; }\",\".framer-LSbCa .framer-mkv9md, .framer-LSbCa .framer-1he53w { bottom: 2px; flex: none; left: 1px; position: absolute; right: 1px; top: 1px; }\",\".framer-LSbCa .framer-t7erre { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 17%; overflow: visible; padding: 0px; position: absolute; top: 54%; width: min-content; }\",\".framer-LSbCa .framer-1d2g9bs, .framer-LSbCa .framer-1hkg3k2 { flex: none; height: 16px; left: calc(50.00000000000002% - 16px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-LSbCa .framer-1mg5a7j, .framer-LSbCa .framer-6vwah6 { flex: none; height: 14px; left: 1px; position: absolute; top: 1px; width: 14px; }\",\".framer-LSbCa .framer-1mzd604 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 68%; overflow: visible; padding: 0px; position: absolute; top: 21%; width: min-content; }\",\".framer-LSbCa .framer-pqb350, .framer-LSbCa .framer-1c3t2su { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LSbCa.framer-5ulzft, .framer-LSbCa .framer-s1dts2, .framer-LSbCa .framer-3k2sgw, .framer-LSbCa .framer-11jeis7, .framer-LSbCa .framer-niuedt, .framer-LSbCa .framer-15s81di, .framer-LSbCa .framer-brep4c, .framer-LSbCa .framer-19090x8, .framer-LSbCa .framer-6f1ch9, .framer-LSbCa .framer-t7erre, .framer-LSbCa .framer-1mzd604 { gap: 0px; } .framer-LSbCa.framer-5ulzft > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-LSbCa.framer-5ulzft > :first-child, .framer-LSbCa .framer-3k2sgw > :first-child { margin-top: 0px; } .framer-LSbCa.framer-5ulzft > :last-child, .framer-LSbCa .framer-3k2sgw > :last-child { margin-bottom: 0px; } .framer-LSbCa .framer-s1dts2 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-LSbCa .framer-s1dts2 > :first-child, .framer-LSbCa .framer-11jeis7 > :first-child, .framer-LSbCa .framer-niuedt > :first-child, .framer-LSbCa .framer-15s81di > :first-child, .framer-LSbCa .framer-brep4c > :first-child, .framer-LSbCa .framer-19090x8 > :first-child, .framer-LSbCa .framer-6f1ch9 > :first-child, .framer-LSbCa .framer-t7erre > :first-child, .framer-LSbCa .framer-1mzd604 > :first-child { margin-left: 0px; } .framer-LSbCa .framer-s1dts2 > :last-child, .framer-LSbCa .framer-11jeis7 > :last-child, .framer-LSbCa .framer-niuedt > :last-child, .framer-LSbCa .framer-15s81di > :last-child, .framer-LSbCa .framer-brep4c > :last-child, .framer-LSbCa .framer-19090x8 > :last-child, .framer-LSbCa .framer-6f1ch9 > :last-child, .framer-LSbCa .framer-t7erre > :last-child, .framer-LSbCa .framer-1mzd604 > :last-child { margin-right: 0px; } .framer-LSbCa .framer-3k2sgw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LSbCa .framer-11jeis7 > *, .framer-LSbCa .framer-niuedt > *, .framer-LSbCa .framer-15s81di > *, .framer-LSbCa .framer-brep4c > *, .framer-LSbCa .framer-19090x8 > *, .framer-LSbCa .framer-6f1ch9 > *, .framer-LSbCa .framer-t7erre > *, .framer-LSbCa .framer-1mzd604 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-LSbCa[data-border=\"true\"]::after, .framer-LSbCa [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 260\n * @framerIntrinsicWidth 376\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"ppxVIN1hm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNk6xmlvMG=withCSS(Component,css,\"framer-LSbCa\");export default FramerNk6xmlvMG;FramerNk6xmlvMG.displayName=\"Product Tab\";FramerNk6xmlvMG.defaultProps={height:260,width:376};addFonts(FramerNk6xmlvMG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNk6xmlvMG\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"376\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"260\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ppxVIN1hm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Nk6xmlvMG.map", "// Generated by Framer (5753dbc)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"caZQp7x6t\",\"aow6slY8L\",\"PZ0dBDoEy\",\"s9Ojob1zi\"];const serializationHash=\"framer-nXxkH\";const variantClassNames={aow6slY8L:\"framer-v-1h0deka\",caZQp7x6t:\"framer-v-1ama13t\",PZ0dBDoEy:\"framer-v-1jo274t\",s9Ojob1zi:\"framer-v-v4pez1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Logo--Desktop\":\"caZQp7x6t\",\"Logo--Mobile\":\"aow6slY8L\",\"Without-Text--Desktop\":\"PZ0dBDoEy\",\"Without-Text--Mobile\":\"s9Ojob1zi\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"caZQp7x6t\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"caZQp7x6t\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"PZ0dBDoEy\",\"s9Ojob1zi\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"sAL8v7x9r\"},nodeId:\"caZQp7x6t\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ama13t\",className,classNames)} framer-1dsbgb4`,\"data-framer-name\":\"Logo--Desktop\",layoutDependency:layoutDependency,layoutId:\"caZQp7x6t\",ref:ref??ref1,style:{...style},...addPropertyOverrides({aow6slY8L:{\"data-framer-name\":\"Logo--Mobile\"},PZ0dBDoEy:{\"data-framer-name\":\"Without-Text--Desktop\"},s9Ojob1zi:{\"data-framer-name\":\"Without-Text--Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-j9z52t\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:33,layoutDependency:layoutDependency,layoutId:\"qV5K0KfQM\",svg:'<svg width=\"33\" height=\"32\" viewBox=\"0 0 33 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_2305_67664\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"3\" y=\"3\" width=\"27\" height=\"26\">\\n<mask id=\"mask1_2305_67664\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"3\" y=\"3\" width=\"27\" height=\"26\">\\n<path d=\"M29.125 3H3.125V29H29.125V3Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_2305_67664)\">\\n<path d=\"M20.6032 3L18.3206 7.36697L22.9126 9.84703L25.1953 5.48007L20.6032 3ZM24.5199 17.8508H29.1263V12.5651H24.5199V17.8508ZM18.3206 7.36697C15.8363 12.1197 19.2252 17.8508 24.5199 17.8508V12.5651C23.1472 12.5651 22.2686 11.0792 22.9126 9.84703L18.3206 7.36697Z\" fill=\"#1263BE\"/>\\n<path d=\"M11.6472 3L13.9298 7.36697L9.33771 9.84703L7.05509 5.48007L11.6472 3ZM7.73047 17.8508H3.12402V12.5651H7.73047V17.8508ZM13.9298 7.36697C16.414 12.1197 13.0251 17.8508 7.73047 17.8508V12.5651C9.10318 12.5651 9.98175 11.0792 9.33771 9.84703L13.9298 7.36697Z\" fill=\"#1263BE\"/>\\n<path d=\"M12.0247 29.0002L15.9959 23.16L11.7182 20.1546L7.74707 25.9948L12.0247 29.0002ZM15.9959 23.16L19.967 29.0002L24.2447 25.9948L20.2736 20.1546L15.9959 23.16ZM15.9959 23.16C15.9988 23.1557 16.0006 23.1535 16.0012 23.1529C16.0017 23.1523 16.0015 23.1526 16.0005 23.1536C15.9995 23.1544 15.998 23.1556 15.9964 23.1567C15.9948 23.1578 15.9932 23.1587 15.9919 23.1594C15.9892 23.1607 15.9881 23.1609 15.9891 23.1606C15.9896 23.1606 15.9905 23.1604 15.9917 23.1602C15.993 23.1601 15.9944 23.16 15.9959 23.16C15.9974 23.16 15.9988 23.1601 16.0001 23.1602C16.0013 23.1604 16.0022 23.1606 16.0027 23.1606C16.0037 23.1609 16.0026 23.1607 15.9999 23.1594C15.9985 23.1587 15.997 23.1578 15.9953 23.1567C15.9937 23.1556 15.9923 23.1544 15.9913 23.1536C15.9903 23.1526 15.99 23.1523 15.9905 23.1529C15.9911 23.1535 15.993 23.1557 15.9959 23.16L20.2736 20.1546C18.2061 17.1142 13.7857 17.1142 11.7182 20.1546L15.9959 23.16Z\" fill=\"#1263BE\"/>\\n</g>\\n</mask>\\n<g mask=\"url(#mask0_2305_67664)\">\\n<path d=\"M16.125 29C23.3047 29 29.125 23.1797 29.125 16C29.125 8.8203 23.3047 3 16.125 3C8.9453 3 3.125 8.8203 3.125 16C3.125 23.1797 8.9453 29 16.125 29Z\" fill=\"#14151A\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-hr64zh\",\"data-framer-name\":\"Teamcamp\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:129,layoutDependency:layoutDependency,layoutId:\"I8349:97344;6301:67865\",svg:'<svg width=\"129\" height=\"32\" viewBox=\"0 0 129 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M94.522 11.6562H97.762L97.834 13.6722C98.482 12.2082 99.754 11.3682 101.386 11.3682C103.162 11.3682 104.434 12.3282 105.01 13.9842C105.658 12.2562 106.978 11.3682 108.73 11.3682C111.298 11.3682 112.954 13.0242 112.954 16.1922V24.3762H109.354V17.3922C109.354 15.2802 108.754 14.2242 107.554 14.2242C106.066 14.2242 105.322 15.3282 105.322 17.3922V24.3762H102.13V17.3922C102.13 15.2802 101.554 14.2242 100.33 14.2242C98.866 14.2242 98.122 15.3282 98.122 17.3922V24.3762H94.522V11.6562Z\" fill=\"#14151A\"/>\\n<path d=\"M79.3244 15.5922C79.8044 12.8802 81.8924 11.3682 85.2284 11.3682C89.0924 11.3682 91.0844 13.2642 91.0844 16.8882V20.8962C91.0844 21.7362 91.4204 21.9282 91.8764 21.9282H92.3324V24.3762L91.7084 24.4002C90.8684 24.4242 88.3964 24.6642 88.0604 22.4322C87.4124 23.7522 85.9964 24.6642 83.6684 24.6642C81.0764 24.6642 79.1084 23.2722 79.1084 21.0162C79.1084 18.6642 80.8604 17.7762 83.9324 17.1762L87.4364 16.4562C87.4124 14.6082 86.7164 13.7202 85.2044 13.7202C83.9804 13.7202 83.2124 14.4162 82.9244 15.7602L79.3244 15.5922ZM82.8044 20.8962C82.8044 21.7122 83.4764 22.3362 84.7964 22.3362C86.3564 22.3122 87.4844 21.1602 87.4844 18.8562V18.6882L85.3964 19.0722C83.8844 19.3602 82.8044 19.6002 82.8044 20.8962Z\" fill=\"#14151A\"/>\\n<path d=\"M73.5543 16.5282C73.3383 14.9922 72.3303 14.1282 71.0583 14.1282C69.2583 14.1282 68.2263 15.5442 68.2263 18.0162C68.2263 20.4882 69.2583 21.9042 71.0583 21.9042C72.4023 21.9042 73.4103 21.0402 73.6263 19.3842L77.3463 19.5282C77.0103 22.6962 74.4423 24.6642 71.0583 24.6642C67.0983 24.6642 64.5303 22.0242 64.5303 18.0162C64.5303 14.0082 67.0983 11.3682 71.0583 11.3682C74.3463 11.3682 76.9143 13.2642 77.2503 16.3602L73.5543 16.5282Z\" fill=\"#14151A\"/>\\n<path d=\"M43.8735 11.6562H47.1135L47.1855 13.6722C47.8335 12.2082 49.1055 11.3682 50.7375 11.3682C52.5135 11.3682 53.7855 12.3282 54.3615 13.9842C55.0095 12.2562 56.3295 11.3682 58.0815 11.3682C60.6495 11.3682 62.3055 13.0242 62.3055 16.1922V24.3762H58.7055V17.3922C58.7055 15.2802 58.1055 14.2242 56.9055 14.2242C55.4175 14.2242 54.6735 15.3282 54.6735 17.3922V24.3762H51.4815V17.3922C51.4815 15.2802 50.9055 14.2242 49.6815 14.2242C48.2175 14.2242 47.4735 15.3282 47.4735 17.3922V24.3762H43.8735V11.6562Z\" fill=\"#14151A\"/>\\n<path d=\"M28.676 15.5922C29.156 12.8802 31.244 11.3682 34.58 11.3682C38.444 11.3682 40.436 13.2642 40.436 16.8882V20.8962C40.436 21.7362 40.772 21.9282 41.228 21.9282H41.684V24.3762L41.06 24.4002C40.22 24.4242 37.748 24.6642 37.412 22.4322C36.764 23.7522 35.348 24.6642 33.02 24.6642C30.428 24.6642 28.46 23.2722 28.46 21.0162C28.46 18.6642 30.212 17.7762 33.284 17.1762L36.788 16.4562C36.764 14.6082 36.068 13.7202 34.556 13.7202C33.332 13.7202 32.564 14.4162 32.276 15.7602L28.676 15.5922ZM32.156 20.8962C32.156 21.7122 32.828 22.3362 34.148 22.3362C35.708 22.3122 36.836 21.1602 36.836 18.8562V18.6882L34.748 19.0722C33.236 19.3602 32.156 19.6002 32.156 20.8962Z\" fill=\"#14151A\"/>\\n<path d=\"M13.6709 18.0162C13.6709 14.0082 16.2389 11.3682 20.1989 11.3682C23.7269 11.3682 26.4389 13.8162 26.4149 18.2802V18.9522H17.4389C17.5349 20.8482 18.5669 22.0002 20.1989 22.0002C21.2309 22.0002 22.1909 21.3762 22.5989 20.4162L26.2469 20.6562C25.4789 23.1282 23.1029 24.6642 20.1989 24.6642C16.2389 24.6642 13.6709 22.0242 13.6709 18.0162ZM17.4629 16.7682H22.7669C22.5749 14.8482 21.4709 14.0322 20.1989 14.0322C18.6629 14.0322 17.6549 15.0642 17.4629 16.7682Z\" fill=\"#14151A\"/>\\n<path d=\"M13.872 7.33594V10.4079H8.784V24.3759H5.112V10.4079H0V7.33594H13.872Z\" fill=\"#14151A\"/>\\n<path d=\"M115.756 27.94V11.62H119.188L119.26 13.516C119.956 12.1 121.3 11.332 123.052 11.332C126.652 11.332 128.5 14.236 128.5 17.98C128.5 21.724 126.652 24.628 123.052 24.628C121.396 24.628 120.1 23.884 119.356 22.516V27.94H115.756ZM119.116 17.98C119.116 20.092 120.028 21.892 121.948 21.892C123.892 21.892 124.78 20.092 124.78 17.98C124.78 15.892 123.844 14.068 121.948 14.068C120.028 14.068 119.116 15.916 119.116 17.98Z\" fill=\"#14151A\"/>\\n</svg>\\n',withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nXxkH.framer-1dsbgb4, .framer-nXxkH .framer-1dsbgb4 { display: block; }\",\".framer-nXxkH.framer-1ama13t { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-nXxkH .framer-j9z52t { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-nXxkH .framer-hr64zh { flex: none; height: 32px; position: relative; width: 129px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxkH.framer-1ama13t { gap: 0px; } .framer-nXxkH.framer-1ama13t > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-nXxkH.framer-1ama13t > :first-child { margin-left: 0px; } .framer-nXxkH.framer-1ama13t > :last-child { margin-right: 0px; } }\",\".framer-nXxkH.framer-v-1h0deka.framer-1ama13t, .framer-nXxkH.framer-v-v4pez1.framer-1ama13t { gap: 4px; }\",\".framer-nXxkH.framer-v-1h0deka .framer-j9z52t, .framer-nXxkH.framer-v-v4pez1 .framer-j9z52t { height: var(--framer-aspect-ratio-supported, 28px); width: 28px; }\",\".framer-nXxkH.framer-v-1h0deka .framer-hr64zh { aspect-ratio: 4.03125 / 1; height: var(--framer-aspect-ratio-supported, 28px); width: 113px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxkH.framer-v-1h0deka.framer-1ama13t { gap: 0px; } .framer-nXxkH.framer-v-1h0deka.framer-1ama13t > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-nXxkH.framer-v-1h0deka.framer-1ama13t > :first-child { margin-left: 0px; } .framer-nXxkH.framer-v-1h0deka.framer-1ama13t > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nXxkH.framer-v-v4pez1.framer-1ama13t { gap: 0px; } .framer-nXxkH.framer-v-v4pez1.framer-1ama13t > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-nXxkH.framer-v-v4pez1.framer-1ama13t > :first-child { margin-left: 0px; } .framer-nXxkH.framer-v-v4pez1.framer-1ama13t > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 167\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aow6slY8L\":{\"layout\":[\"auto\",\"auto\"]},\"PZ0dBDoEy\":{\"layout\":[\"auto\",\"auto\"]},\"s9Ojob1zi\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerrPmx4HnLB=withCSS(Component,css,\"framer-nXxkH\");export default FramerrPmx4HnLB;FramerrPmx4HnLB.displayName=\"Teamcamp Logo\";FramerrPmx4HnLB.defaultProps={height:32,width:167};addPropertyControls(FramerrPmx4HnLB,{variant:{options:[\"caZQp7x6t\",\"aow6slY8L\",\"PZ0dBDoEy\",\"s9Ojob1zi\"],optionTitles:[\"Logo--Desktop\",\"Logo--Mobile\",\"Without-Text--Desktop\",\"Without-Text--Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerrPmx4HnLB,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerrPmx4HnLB\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"167\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aow6slY8L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PZ0dBDoEy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"s9Ojob1zi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rPmx4HnLB.map", "// Generated by Framer (f7d95e4)\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\";import{useRef}from\"react\";const cycleOrder=[\"EKYPWD6Wp\",\"IwJLnKszc\"];const serializationHash=\"framer-NbGx3\";const variantClassNames={EKYPWD6Wp:\"framer-v-1tdrv5y\",IwJLnKszc:\"framer-v-15tpw4j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Close:\"IwJLnKszc\",Menu:\"EKYPWD6Wp\"};const getProps=({height,id,tap,width,...props})=>{return{...props,C9F6t9S9f:tap??props.C9F6t9S9f,variant:humanReadableVariantMap[props.variant]??props.variant??\"EKYPWD6Wp\"};};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,C9F6t9S9f,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"EKYPWD6Wp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwdfopv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(C9F6t9S9f){const res=await C9F6t9S9f(...args);if(res===false)return false;}setVariant(\"IwJLnKszc\");});const onTapt9vp58=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(C9F6t9S9f){const res=await C9F6t9S9f(...args);if(res===false)return false;}setVariant(\"EKYPWD6Wp\");});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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tdrv5y\",className,classNames),\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"EKYPWD6Wp\",onTap:onTapwdfopv,ref:refBinding,style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},...addPropertyOverrides({IwJLnKszc:{\"data-framer-name\":\"Close\",onTap:onTapt9vp58}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5npn7y\",\"data-framer-name\":\"Lines\",layoutDependency:layoutDependency,layoutId:\"DOw1yEYqP\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-vlgjf\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"E47KekV43\",style:{backgroundColor:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(20, 21, 26))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,rotate:0},variants:{IwJLnKszc:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyy89j\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"OlDYtRmn6\",style:{backgroundColor:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(20, 21, 26))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,rotate:0},variants:{IwJLnKszc:{rotate:45}}})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NbGx3.framer-idw7fy, .framer-NbGx3 .framer-idw7fy { display: block; }\",\".framer-NbGx3.framer-1tdrv5y { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 32px; justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 32px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NbGx3 .framer-5npn7y { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: var(--framer-aspect-ratio-supported, 30px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 30px; }\",\".framer-NbGx3 .framer-vlgjf { flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: hidden; position: absolute; top: 10px; width: 16px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-NbGx3 .framer-eyy89j { bottom: 10px; flex: none; height: 2px; left: calc(50.00000000000002% - 16px / 2); overflow: hidden; position: absolute; width: 16px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NbGx3.framer-1tdrv5y, .framer-NbGx3 .framer-5npn7y { gap: 0px; } .framer-NbGx3.framer-1tdrv5y > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NbGx3.framer-1tdrv5y > :first-child { margin-left: 0px; } .framer-NbGx3.framer-1tdrv5y > :last-child { margin-right: 0px; } .framer-NbGx3 .framer-5npn7y > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-NbGx3 .framer-5npn7y > :first-child { margin-top: 0px; } .framer-NbGx3 .framer-5npn7y > :last-child { margin-bottom: 0px; } }\",\".framer-NbGx3.framer-v-15tpw4j .framer-vlgjf { top: calc(50.00000000000002% - 1.5px / 2); }\",\".framer-NbGx3.framer-v-15tpw4j .framer-eyy89j { bottom: unset; top: calc(50.00000000000002% - 1.5px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"IwJLnKszc\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"C9F6t9S9f\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSgZ3ra308=withCSS(Component,css,\"framer-NbGx3\");export default FramerSgZ3ra308;FramerSgZ3ra308.displayName=\"Menu Button\";FramerSgZ3ra308.defaultProps={height:32,width:32};addPropertyControls(FramerSgZ3ra308,{variant:{options:[\"EKYPWD6Wp\",\"IwJLnKszc\"],optionTitles:[\"Menu\",\"Close\"],title:\"Variant\",type:ControlType.Enum},C9F6t9S9f:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerSgZ3ra308,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSgZ3ra308\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"32\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IwJLnKszc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"C9F6t9S9f\\\":\\\"tap\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SgZ3ra308.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{withOpenButton}from\"https://framerusercontent.com/modules/N3pknSp6QuVZ2jwVTKrh/iHi6L4JfLz631AIDs4Sz/LoggedinButton.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/MYO3VuA554Vbqw8ApnxF/jCKZ8eOXHUCMQDMqNWs9/salxIsK3I.js\";import BasicButton from\"https://framerusercontent.com/modules/iiwxfNDcfV48gkwoPkIm/3uO43lM7PkgqCluiVkPj/BE13NKkqU.js\";import ResourceTab from\"https://framerusercontent.com/modules/ah4JjPGGFy2kBCajnULP/4IApulc10e4KPW7cKfuv/C302MFFNX.js\";import ServicesTab from\"https://framerusercontent.com/modules/PVkbeao1gZPrlUnx06JP/ulHh79bTTmm28EYR4Pvb/cMeq1uN3e.js\";import ProductTab2 from\"https://framerusercontent.com/modules/PCHOQpPJ74ny1b6vtNdj/4slotnXbUNkNXxr9n3fY/cvAhiMGn5.js\";import NavDetailsTab from\"https://framerusercontent.com/modules/TNcbMsAqFEppHXMrJTC9/PNMW1M1CRSm5OPiqIOvU/dQfkG_AI1.js\";import NavBarNavTab from\"https://framerusercontent.com/modules/21vbSvIr0uFSA7CuQ7Xl/CI9ZDB1OXJ6a6Vo7SdTw/lh0Ns4A9p.js\";import ProductTab from\"https://framerusercontent.com/modules/ueXkSqCvwmXFzzygqnuj/KzK37PdacaqfK4kuxitI/Nk6xmlvMG.js\";import TeamcampLogo from\"https://framerusercontent.com/modules/lV5VL9agbI2J7F34Luqc/EB8BgcztaEs9xRL1m8ao/rPmx4HnLB.js\";import MenuButton from\"https://framerusercontent.com/modules/zG9yh7QgPOwGYhwNRUGk/u23mVhee7Y4wbpODPRsH/SgZ3ra308.js\";import NavTabsMobile from\"https://framerusercontent.com/modules/MCoTx6PdMLQO6uO4m9uf/uuLey1IdjWBYdJKB8VO2/vnXnMXeen.js\";const TeamcampLogoFonts=getFonts(TeamcampLogo);const NavBarNavTabFonts=getFonts(NavBarNavTab);const BasicButtonFonts=getFonts(BasicButton);const MotionDivWithOpenButton11rfidi=withCodeBoundaryForOverrides(motion.div,{nodeId:\"XYfFWtYKR\",override:withOpenButton,scopeId:\"RmTaeeaHX\"});const MenuButtonFonts=getFonts(MenuButton);const NavDetailsTabFonts=getFonts(NavDetailsTab);const ResourceTabFonts=getFonts(ResourceTab);const ServicesTabFonts=getFonts(ServicesTab);const ProductTabFonts=getFonts(ProductTab);const ProductTab2Fonts=getFonts(ProductTab2);const NavTabsMobileFonts=getFonts(NavTabsMobile);const MotionDivWithOpenButtonta3wqm=withCodeBoundaryForOverrides(motion.div,{nodeId:\"yLD8FCdgb\",override:withOpenButton,scopeId:\"RmTaeeaHX\"});const cycleOrder=[\"qVL2bVJkp\",\"eX7p4KqC_\",\"PSMj823Dc\",\"ov_I6SSKk\",\"wNCX3ZRKJ\",\"hUfbUQknU\",\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\",\"ilZFujXFW\"];const serializationHash=\"framer-4gRRv\";const variantClassNames={bGqQ3uPfx:\"framer-v-xfxso9\",eX7p4KqC_:\"framer-v-llw5um\",hUfbUQknU:\"framer-v-dtsiqw\",ilZFujXFW:\"framer-v-1j0z7gx\",NazKDcQHk:\"framer-v-5f00de\",ov_I6SSKk:\"framer-v-my7lou\",PSMj823Dc:\"framer-v-14qv5c8\",qVL2bVJkp:\"framer-v-ktr3uw\",ULZ07Mu4d:\"framer-v-u05rot\",wNCX3ZRKJ:\"framer-v-1rrydxl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition3={bounce:.25,delay:1,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop-Scroll\":\"qVL2bVJkp\",\"Mobile Scroll\":\"ULZ07Mu4d\",\"Product-M\":\"NazKDcQHk\",\"Resources-M\":\"ilZFujXFW\",\"Solution-M\":\"bGqQ3uPfx\",Desktop:\"eX7p4KqC_\",Mobile:\"hUfbUQknU\",Product:\"PSMj823Dc\",Resource:\"ov_I6SSKk\",Solution:\"wNCX3ZRKJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"qVL2bVJkp\"};};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,TQuN00Vkwlh0Ns4A9p,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qVL2bVJkp\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseLeave1h8urdp=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"eX7p4KqC_\");});const onMouseEnterldizpl=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"qVL2bVJkp\");});const Aesh1pgio2v0qmc=activeVariantCallback(async(...args)=>{setVariant(\"PSMj823Dc\");});const Aesh1pgio18zp575=activeVariantCallback(async(...args)=>{setVariant(\"qVL2bVJkp\");});const Aesh1pgio1lh2yh1=activeVariantCallback(async(...args)=>{setVariant(\"wNCX3ZRKJ\");});const Aesh1pgio1wjous7=activeVariantCallback(async(...args)=>{setVariant(\"ov_I6SSKk\");});const C9F6t9S9fhq1j6v=activeVariantCallback(async(...args)=>{setVariant(\"ULZ07Mu4d\");});const C9F6t9S9fr9r3n3=activeVariantCallback(async(...args)=>{setVariant(\"hUfbUQknU\");});const onTapwyaj79=activeVariantCallback(async(...args)=>{setVariant(\"ilZFujXFW\");});const onTaphq1j6v=activeVariantCallback(async(...args)=>{setVariant(\"ULZ07Mu4d\");});const onTap1xcmg0h=activeVariantCallback(async(...args)=>{setVariant(\"bGqQ3uPfx\");});const onTap611009=activeVariantCallback(async(...args)=>{setVariant(\"UiDGHBLfO\");});const onTaps93wbu=activeVariantCallback(async(...args)=>{setVariant(\"NazKDcQHk\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"hUfbUQknU\",\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\",\"ilZFujXFW\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"hUfbUQknU\",\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\",\"ilZFujXFW\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"PSMj823Dc\",\"ov_I6SSKk\",\"wNCX3ZRKJ\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"wNCX3ZRKJ\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"PSMj823Dc\")return true;return false;};const isDisplayed5=()=>{if([\"ov_I6SSKk\",\"wNCX3ZRKJ\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"wNCX3ZRKJ\")return false;return true;};const isDisplayed7=()=>{if([\"ov_I6SSKk\",\"wNCX3ZRKJ\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if([\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\",\"ilZFujXFW\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if([\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if(baseVariant===\"ilZFujXFW\")return true;return false;};const isDisplayed12=()=>{if([\"ULZ07Mu4d\",\"NazKDcQHk\",\"ilZFujXFW\"].includes(baseVariant))return true;return false;};const isDisplayed13=()=>{if([\"ULZ07Mu4d\",\"NazKDcQHk\",\"ilZFujXFW\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if(baseVariant===\"bGqQ3uPfx\")return true;return false;};const isDisplayed15=()=>{if([\"ULZ07Mu4d\",\"bGqQ3uPfx\",\"ilZFujXFW\"].includes(baseVariant))return true;return false;};const isDisplayed16=()=>{if([\"ULZ07Mu4d\",\"bGqQ3uPfx\",\"ilZFujXFW\"].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({bGqQ3uPfx:{value:transition2},ilZFujXFW:{value:transition2},NazKDcQHk:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-ktr3uw\",className,classNames),\"data-framer-name\":\"Desktop-Scroll\",\"data-hide-scrollbars\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"qVL2bVJkp\",onMouseLeave:onMouseLeave1h8urdp,ref:refBinding,style:{...style},...addPropertyOverrides({bGqQ3uPfx:{\"data-framer-name\":\"Solution-M\",\"data-highlight\":undefined,onMouseLeave:undefined},eX7p4KqC_:{\"data-framer-name\":\"Desktop\",onMouseEnter:onMouseEnterldizpl,onMouseLeave:undefined},hUfbUQknU:{\"data-framer-name\":\"Mobile\",\"data-highlight\":undefined,onMouseLeave:undefined},ilZFujXFW:{\"data-framer-name\":\"Resources-M\",\"data-highlight\":undefined,onMouseLeave:undefined},NazKDcQHk:{\"data-framer-name\":\"Product-M\",\"data-highlight\":undefined,onMouseLeave:undefined},ov_I6SSKk:{\"data-framer-name\":\"Resource\"},PSMj823Dc:{\"data-framer-name\":\"Product\"},ULZ07Mu4d:{\"data-framer-name\":\"Mobile Scroll\",\"data-highlight\":undefined,onMouseLeave:undefined},wNCX3ZRKJ:{\"data-framer-name\":\"Solution\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k716ml\",\"data-border\":true,\"data-framer-name\":\"content\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"Fv4Q7K9A5\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0.5px\",backdropFilter:\"blur(16px)\",backgroundColor:\"var(--token-a8dcf99a-0166-4153-9c8b-f9a384198307, rgb(255, 255, 255))\",borderBottomLeftRadius:25,borderBottomRightRadius:25,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px 1px 6px 0px rgba(0, 0, 0, 0.06)\",WebkitBackdropFilter:\"blur(16px)\"},variants:{bGqQ3uPfx:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},eX7p4KqC_:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",boxShadow:\"none\"},hUfbUQknU:{backdropFilter:\"none\",WebkitBackdropFilter:\"none\"},ilZFujXFW:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},NazKDcQHk:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},ULZ07Mu4d:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hcaq73\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"FKs51ekq0\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+4,...addPropertyOverrides({bGqQ3uPfx:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+0+8},hUfbUQknU:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||68)-20-48)/2)+8+0+0},ilZFujXFW:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+0+8},NazKDcQHk:{y:(componentViewport?.y||0)+10+0+0+8},ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+4},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+4},ULZ07Mu4d:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||462)-20-680)/2)+0+0+8},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15abyk5-container\",layoutDependency:layoutDependency,layoutId:\"BCgyzIQRp-container\",nodeId:\"BCgyzIQRp\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(TeamcampLogo,{height:\"100%\",id:\"BCgyzIQRp\",layoutId:\"BCgyzIQRp\",variant:\"caZQp7x6t\",width:\"100%\",...addPropertyOverrides({bGqQ3uPfx:{variant:\"aow6slY8L\"},hUfbUQknU:{variant:\"aow6slY8L\"},ilZFujXFW:{variant:\"aow6slY8L\"},NazKDcQHk:{variant:\"aow6slY8L\"},ULZ07Mu4d:{variant:\"aow6slY8L\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w5d3ao\",\"data-framer-name\":\"Tab\",layoutDependency:layoutDependency,layoutId:\"k5btCzLYd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+2+0,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+2+0},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ac4tag-container\",layoutDependency:layoutDependency,layoutId:\"gzECwt1Te-container\",nodeId:\"gzECwt1Te\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{Aesh1pgio:Aesh1pgio2v0qmc,bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"gzECwt1Te\",layoutId:\"gzECwt1Te\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",TQuN00Vkw:\"Product\",variant:\"SLapPSEtn\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({eX7p4KqC_:{Aesh1pgio:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+2+0,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+2+0},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dv0zw0-container\",layoutDependency:layoutDependency,layoutId:\"BqZ260SvZ-container\",nodeId:\"BqZ260SvZ\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"BqZ260SvZ\",kmwCzN12b:resolvedLinks[0],layoutId:\"BqZ260SvZ\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",TQuN00Vkw:\"Manifesto\",variant:\"SLapPSEtn\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({eX7p4KqC_:{kmwCzN12b:resolvedLinks[1]},ov_I6SSKk:{Aesh1pgio:Aesh1pgio18zp575,kmwCzN12b:resolvedLinks[3]},PSMj823Dc:{Aesh1pgio:Aesh1pgio18zp575,kmwCzN12b:resolvedLinks[2]},wNCX3ZRKJ:{Aesh1pgio:Aesh1pgio18zp575,kmwCzN12b:resolvedLinks[4]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+2+0,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+2+0},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3oewqz-container\",layoutDependency:layoutDependency,layoutId:\"ff6Vlo0Rb-container\",nodeId:\"ff6Vlo0Rb\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{Aesh1pgio:Aesh1pgio1lh2yh1,bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"ff6Vlo0Rb\",layoutId:\"ff6Vlo0Rb\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",TQuN00Vkw:\"Solution\",variant:\"SLapPSEtn\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({ov_I6SSKk:{rz6sD63q_:undefined},PSMj823Dc:{rz6sD63q_:undefined},wNCX3ZRKJ:{rz6sD63q_:undefined}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+2+0,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+2+0},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qo7jad-container\",layoutDependency:layoutDependency,layoutId:\"PXN7YY6pQ-container\",nodeId:\"PXN7YY6pQ\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{Aesh1pgio:Aesh1pgio1wjous7,bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"PXN7YY6pQ\",layoutId:\"PXN7YY6pQ\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",TQuN00Vkw:\"Resources\",variant:\"SLapPSEtn\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+2+0,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+2+0},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+2+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-imbtu3-container\",layoutDependency:layoutDependency,layoutId:\"PwTFqIqKr-container\",nodeId:\"PwTFqIqKr\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"PwTFqIqKr\",kmwCzN12b:resolvedLinks1[0],layoutId:\"PwTFqIqKr\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",TQuN00Vkw:\"Pricing\",variant:\"SLapPSEtn\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({eX7p4KqC_:{kmwCzN12b:resolvedLinks1[1]},ov_I6SSKk:{kmwCzN12b:resolvedLinks1[3]},PSMj823Dc:{kmwCzN12b:resolvedLinks1[2]},wNCX3ZRKJ:{kmwCzN12b:resolvedLinks1[4]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qr3ohq\",\"data-framer-name\":\"RHS Side\",layoutDependency:layoutDependency,layoutId:\"D3rLnxz_P\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(MotionDivWithOpenButton11rfidi,{className:\"framer-11rfidi\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"XYfFWtYKR\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+0+0+2,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+0+0+2},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+0+0+2},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+0+0+2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1may4p7-container\",layoutDependency:layoutDependency,layoutId:\"W6Lr97Tvd-container\",nodeId:\"W6Lr97Tvd\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"W6Lr97Tvd\",kmwCzN12b:\"https://dash.teamcamp.app/membership/login\",layoutId:\"W6Lr97Tvd\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",TQuN00Vkw:\"Log In\",variant:\"SLapPSEtn\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({PSMj823Dc:{rrTsFeJM4:\"var(--token-5cea7ed1-5f2f-4933-978a-59a05128add1, rgb(246, 246, 246))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(10+((componentViewport?.height||70)-20-56)/2)+8+0+0+0+0,...addPropertyOverrides({ov_I6SSKk:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+0+0+0+0},PSMj823Dc:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+0+0+0},wNCX3ZRKJ:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ws8zfz-container\",layoutDependency:layoutDependency,layoutId:\"uzOLZ2TNN-container\",nodeId:\"uzOLZ2TNN\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(BasicButton,{b88vNS6Nc:false,height:\"100%\",id:\"uzOLZ2TNN\",layoutId:\"uzOLZ2TNN\",MqkdqnaBL:\"Sign Up\",variant:\"uiWNtUoVL\",width:\"100%\",zi0GzDlCw:\"https://dash.teamcamp.app/membership/signup\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({bGqQ3uPfx:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+0+8+0},hUfbUQknU:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||68)-20-48)/2)+8+0+0+0},ilZFujXFW:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+0+8+0},NazKDcQHk:{height:32,width:\"32px\",y:(componentViewport?.y||0)+10+0+0+8+0},ULZ07Mu4d:{height:32,width:\"32px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||462)-20-680)/2)+0+0+8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ot9glm-container\",layoutDependency:layoutDependency,layoutId:\"qGt054vMc-container\",nodeId:\"qGt054vMc\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(MenuButton,{height:\"100%\",id:\"qGt054vMc\",layoutId:\"qGt054vMc\",style:{height:\"100%\",width:\"100%\"},variant:\"EKYPWD6Wp\",width:\"100%\",...addPropertyOverrides({bGqQ3uPfx:{C9F6t9S9f:C9F6t9S9fr9r3n3,variant:\"IwJLnKszc\"},hUfbUQknU:{C9F6t9S9f:C9F6t9S9fhq1j6v},ilZFujXFW:{C9F6t9S9f:C9F6t9S9fr9r3n3,variant:\"IwJLnKszc\"},NazKDcQHk:{C9F6t9S9f:C9F6t9S9fr9r3n3,variant:\"IwJLnKszc\"},ULZ07Mu4d:{C9F6t9S9f:C9F6t9S9fr9r3n3,variant:\"IwJLnKszc\"}},baseVariant,gestureVariant)})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-evks0h\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"UJaXcrquD\",whileHover:animation,children:[isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pnyklr\",\"data-framer-name\":\"LHS Tab\",layoutDependency:layoutDependency,layoutId:\"pyFeyVFco\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QBHZT39fT\"},implicitPathVariables:undefined},{href:{webPageId:\"QBHZT39fT\"},implicitPathVariables:undefined},{href:{webPageId:\"TSjZFKyxy\"},implicitPathVariables:undefined},{href:{webPageId:\"OVsiOm91o\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ov_I6SSKk:{height:62,width:\"312px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+56+0+0+0},PSMj823Dc:{height:62,width:`calc((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.291)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+0},wNCX3ZRKJ:{height:62,width:\"292px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-cqn7ab-container\",layoutDependency:layoutDependency,layoutId:\"EhAwB3Z9x-container\",nodeId:\"EhAwB3Z9x\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Simplify Task Management\",fFjvsVge6:\"qjF6bpPqr\",FieqYQ3fc:\"Board & Task\",height:\"100%\",id:\"EhAwB3Z9x\",layoutId:\"EhAwB3Z9x\",style:{width:\"100%\"},variant:\"yYsQOY7cF\",warZyLqmk:resolvedLinks2[0],width:\"100%\",xV1hDWbBj:\"fruflzyCA\",...addPropertyOverrides({ov_I6SSKk:{Em1tyUPLv:\"Articles, News, Analysis\",fFjvsVge6:\"oXZULtr14\",FieqYQ3fc:\"Blogs\",warZyLqmk:resolvedLinks2[2],xV1hDWbBj:\"i1i58YnrM\"},PSMj823Dc:{warZyLqmk:resolvedLinks2[1]},wNCX3ZRKJ:{Em1tyUPLv:\"Manage work from anywhere\",fFjvsVge6:\"b2zOISsFJ\",FieqYQ3fc:\"Remote Teams\",warZyLqmk:resolvedLinks2[3],xV1hDWbBj:\"Y73b8W2JM\"}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QyPOhV7JS\"},implicitPathVariables:undefined},{href:{webPageId:\"QyPOhV7JS\"},implicitPathVariables:undefined},{href:{webPageId:\"vefW6GyxD\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ov_I6SSKk:{height:62,width:\"312px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+56+0+0+66},PSMj823Dc:{height:62,width:`calc((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.291)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+66},wNCX3ZRKJ:{height:62,width:\"292px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+66}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e32i2i-container\",layoutDependency:layoutDependency,layoutId:\"VtThYuJ74-container\",nodeId:\"VtThYuJ74\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Easily transactions with us\",fFjvsVge6:\"qjF6bpPqr\",FieqYQ3fc:\"Invoicing \",height:\"100%\",id:\"VtThYuJ74\",layoutId:\"VtThYuJ74\",style:{width:\"100%\"},variant:\"yYsQOY7cF\",warZyLqmk:resolvedLinks3[0],width:\"100%\",xV1hDWbBj:\"fruflzyCA\",...addPropertyOverrides({ov_I6SSKk:{Em1tyUPLv:\"Mastering API Documentation\",fFjvsVge6:\"SM143sF0X\",FieqYQ3fc:\"API Doc\",warZyLqmk:\"https://api.teamcamp.app\",xV1hDWbBj:\"Rd569CKHL\"},PSMj823Dc:{fFjvsVge6:\"BSws5LT2W\",warZyLqmk:resolvedLinks3[1],xV1hDWbBj:\"Kq8wxQo6M\"},wNCX3ZRKJ:{Em1tyUPLv:\"Scale any campaign workflow\",fFjvsVge6:\"MUJhO5hK4\",FieqYQ3fc:\"Marketing Teams\",warZyLqmk:resolvedLinks3[2],xV1hDWbBj:\"uZcayXtyp\"}},baseVariant,gestureVariant)})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dH2uPauD0\"},implicitPathVariables:undefined},{href:{webPageId:\"dH2uPauD0\"},implicitPathVariables:undefined},{href:{webPageId:\"hps83ix15\"},implicitPathVariables:undefined},{href:{webPageId:\"f8GhQW7PS\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ov_I6SSKk:{height:62,width:\"312px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+56+0+0+132},PSMj823Dc:{height:62,width:`calc((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.291)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+132},wNCX3ZRKJ:{height:62,width:\"292px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-165ry0p-container\",layoutDependency:layoutDependency,layoutId:\"nmf69O8ts-container\",nodeId:\"nmf69O8ts\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Track time with your work\",fFjvsVge6:\"qjF6bpPqr\",FieqYQ3fc:\"Time Tracking\",height:\"100%\",id:\"nmf69O8ts\",layoutId:\"nmf69O8ts\",style:{width:\"100%\"},variant:\"yYsQOY7cF\",warZyLqmk:resolvedLinks4[0],width:\"100%\",xV1hDWbBj:\"fruflzyCA\",...addPropertyOverrides({ov_I6SSKk:{Em1tyUPLv:\"Answer All Your Questions\",fFjvsVge6:\"MH6q7OA20\",FieqYQ3fc:\"Help Center\",warZyLqmk:resolvedLinks4[2],xV1hDWbBj:\"EBckmBvik\"},PSMj823Dc:{fFjvsVge6:\"kvfYD9GjX\",warZyLqmk:resolvedLinks4[1],xV1hDWbBj:\"EKrBNaMyB\"},wNCX3ZRKJ:{Em1tyUPLv:\"Project & client collaboration\",fFjvsVge6:\"zuhYOstb1\",FieqYQ3fc:\"Agencies & Studios\",warZyLqmk:resolvedLinks4[3],xV1hDWbBj:\"IPY7D7HDd\"}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ZcBAlyeAx\"},implicitPathVariables:undefined},{href:{webPageId:\"ZcBAlyeAx\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wNCX3ZRKJ:{height:62,width:\"292px\",y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n9v8ug-container\",layoutDependency:layoutDependency,layoutId:\"wBoTDtmGs-container\",nodeId:\"wBoTDtmGs\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"Simplify IT project managment\",fFjvsVge6:\"DFuOcTv5P\",FieqYQ3fc:\"IT & Software\",height:\"100%\",id:\"wBoTDtmGs\",layoutId:\"wBoTDtmGs\",style:{width:\"100%\"},variant:\"yYsQOY7cF\",warZyLqmk:resolvedLinks5[0],width:\"100%\",xV1hDWbBj:\"YYjyfZOge\",...addPropertyOverrides({wNCX3ZRKJ:{warZyLqmk:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XWBn5juKs\"},implicitPathVariables:undefined},{href:{webPageId:\"XWBn5juKs\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({PSMj823Dc:{height:62,width:`calc((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.291)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+198}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11gzez7-container\",layoutDependency:layoutDependency,layoutId:\"drIL1YmCV-container\",nodeId:\"drIL1YmCV\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavDetailsTab,{Em1tyUPLv:\"See all Capabilities\",fFjvsVge6:\"Gix9dCZ4X\",FieqYQ3fc:\"All Features\",height:\"100%\",id:\"drIL1YmCV\",layoutId:\"drIL1YmCV\",style:{width:\"100%\"},variant:\"yYsQOY7cF\",warZyLqmk:resolvedLinks6[0],width:\"100%\",xV1hDWbBj:\"gNwPKfPrn\",...addPropertyOverrides({PSMj823Dc:{warZyLqmk:resolvedLinks6[1]}},baseVariant,gestureVariant)})})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oox7su\",\"data-framer-name\":\"RHS Tab\",layoutDependency:layoutDependency,layoutId:\"hlA3_3OX6\",children:[isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,...addPropertyOverrides({ov_I6SSKk:{width:`max((max(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 340px, 1px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+56+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4gkohp-container\",layoutDependency:layoutDependency,layoutId:\"Sd_aQ8qmd-container\",nodeId:\"Sd_aQ8qmd\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ResourceTab,{height:\"100%\",id:\"Sd_aQ8qmd\",layoutId:\"Sd_aQ8qmd\",style:{width:\"100%\"},variant:\"DLH1Ocx5T\",width:\"100%\",...addPropertyOverrides({ov_I6SSKk:{t_Ndt5NpQ:\"feedback.teamcamp.app\"}},baseVariant,gestureVariant)})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QBHZT39fT\"},implicitPathVariables:undefined},{href:{webPageId:\"QBHZT39fT\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wNCX3ZRKJ:{height:260,width:`max((max(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 320px, 1px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tpt1my-container\",layoutDependency:layoutDependency,layoutId:\"Ya_LGAKRz-container\",nodeId:\"Ya_LGAKRz\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",id:\"Ya_LGAKRz\",layoutId:\"Ya_LGAKRz\",QSLzwUiJo:resolvedLinks7[0],style:{height:\"100%\",width:\"100%\"},variant:\"Oi64HzUWa\",width:\"100%\",...addPropertyOverrides({wNCX3ZRKJ:{QSLzwUiJo:resolvedLinks7[1]}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Ot1YN88Qo\"},implicitPathVariables:undefined},{href:{webPageId:\"Ot1YN88Qo\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wNCX3ZRKJ:{height:260,width:`max((max(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 320px, 1px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-t424dd-container\",layoutDependency:layoutDependency,layoutId:\"nGUfdUBPy-container\",nodeId:\"nGUfdUBPy\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ServicesTab,{height:\"100%\",id:\"nGUfdUBPy\",layoutId:\"nGUfdUBPy\",QSLzwUiJo:resolvedLinks8[0],style:{height:\"100%\",width:\"100%\"},variant:\"RbaVBba9k\",width:\"100%\",...addPropertyOverrides({wNCX3ZRKJ:{QSLzwUiJo:resolvedLinks8[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"teiL288bM\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:194,...addPropertyOverrides({ov_I6SSKk:{width:`max((max(max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 340px, 1px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||280)-20-266)/2)+8+56+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e03i8a-container\",layoutDependency:layoutDependency,layoutId:\"JtIMgEqZe-container\",nodeId:\"JtIMgEqZe\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ResourceTab,{height:\"100%\",id:\"JtIMgEqZe\",layoutId:\"JtIMgEqZe\",style:{width:\"100%\"},variant:\"uePjac6XL\",width:\"100%\",...addPropertyOverrides({ov_I6SSKk:{t_Ndt5NpQ:resolvedLinks9[0]}},baseVariant,gestureVariant)})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({PSMj823Dc:{height:260,width:`max(((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.709 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-toomtj-container\",layoutDependency:layoutDependency,layoutId:\"jE3_XyxcK-container\",nodeId:\"jE3_XyxcK\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ProductTab,{height:\"100%\",id:\"jE3_XyxcK\",layoutId:\"jE3_XyxcK\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed7()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f3e0el\",\"data-framer-name\":\"RHS Tab\",layoutDependency:layoutDependency,layoutId:\"IXk51w6gT\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({PSMj823Dc:{height:124,width:`max(((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.709 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2gdtd9-container\",layoutDependency:layoutDependency,layoutId:\"IX7HZFICu-container\",nodeId:\"IX7HZFICu\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ProductTab2,{height:\"100%\",id:\"IX7HZFICu\",layoutId:\"IX7HZFICu\",style:{height:\"100%\",width:\"100%\"},variant:\"X3NAoRTPu\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({PSMj823Dc:{height:124,width:`max(((max(${componentViewport?.width||\"100vw\"} - 48px, 1px) - 16px) * 0.709 - 24px) / 2, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||346)-20-332)/2)+8+56+0+0+136}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7vo5he-container\",layoutDependency:layoutDependency,layoutId:\"KAYkjgjZ9-container\",nodeId:\"KAYkjgjZ9\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(ProductTab2,{height:\"100%\",id:\"KAYkjgjZ9\",layoutId:\"KAYkjgjZ9\",style:{height:\"100%\",width:\"100%\"},variant:\"FF7QRtoUG\",width:\"100%\"})})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1csg857\",\"data-framer-name\":\"Nav tab\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"cdkFwLMI2\",children:[isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jjutrc\",\"data-framer-name\":\"Resources\",layoutDependency:layoutDependency,layoutId:\"i7cxKtlNV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13o494u\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"e_Amc_tZq\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},...addPropertyOverrides({bGqQ3uPfx:{\"data-highlight\":true,onTap:onTapwyaj79},ilZFujXFW:{\"data-highlight\":true,onTap:onTaphq1j6v},NazKDcQHk:{\"data-highlight\":true,onTap:onTapwyaj79},ULZ07Mu4d:{\"data-highlight\":true,onTap:onTapwyaj79}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Resources\"})}),className:\"framer-uu8quu\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j_hAeh2Ug\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1en5xre\",\"data-framer-name\":\"IconSet/Basic Icon Copy\",layoutDependency:layoutDependency,layoutId:\"Zec0bPys1\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vv3ad5\",\"data-framer-name\":\"Type=Angle-down, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"m70JEa_iu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gz9y4u\",\"data-framer-name\":\"angle-down-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"PABMwlNMg\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 4.79995C3.79521 4.79995 3.5904 4.72158 3.43441 4.56559L0.234587 1.36577C-0.0781956 1.05299 -0.0781956 0.547369 0.234587 0.234587C0.547369 -0.0781956 1.05299 -0.0781956 1.36577 0.234587L4 2.86881L6.63423 0.234587C6.94701 -0.0781956 7.45263 -0.0781956 7.76541 0.234587C8.0782 0.547369 8.0782 1.05299 7.76541 1.36577L4.56559 4.56559C4.4096 4.72158 4.20479 4.79995 4 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-10ekfr8\",\"data-framer-name\":\"Type=Angle-up, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"gJEhBAYqN\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17cyqkm\",\"data-framer-name\":\"angle-up-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"Xz36387w4\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.19982 4.79995C6.99503 4.79995 6.79022 4.72158 6.63423 4.56559L4 1.93137L1.36577 4.56559C1.05299 4.87838 0.547369 4.87838 0.234587 4.56559C-0.0781956 4.25281 -0.0781956 3.74719 0.234587 3.43441L3.43441 0.234587C3.74719 -0.0781956 4.25281 -0.0781956 4.56559 0.234587L7.76541 3.43441C8.0782 3.74719 8.0782 4.25281 7.76541 4.56559C7.60942 4.72158 7.40461 4.79995 7.19982 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed11()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ilZFujXFW:{height:560,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+48+0+356+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1bk761f-container\",layoutDependency:layoutDependency,layoutId:\"qmHIqXtkF-container\",nodeId:\"qmHIqXtkF\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavTabsMobile,{height:\"100%\",id:\"qmHIqXtkF\",layoutId:\"qmHIqXtkF\",style:{width:\"100%\"},variant:\"n6YoppsCU\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined},{href:{webPageId:\"Q3uaTfUKa\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({bGqQ3uPfx:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+48+0+1076},ilZFujXFW:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+48+0+1076},NazKDcQHk:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+10+0+48+0+1076},ULZ07Mu4d:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||462)-20-680)/2)+0+48+0+516}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1w6pflk-container\",layoutDependency:layoutDependency,layoutId:\"RZwlfUIeS-container\",nodeId:\"RZwlfUIeS\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"RZwlfUIeS\",kmwCzN12b:resolvedLinks10[0],layoutId:\"RZwlfUIeS\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",style:{width:\"100%\"},TQuN00Vkw:\"Pricing\",variant:\"HWXcrsocv\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({bGqQ3uPfx:{kmwCzN12b:resolvedLinks10[3]},ilZFujXFW:{kmwCzN12b:resolvedLinks10[4]},NazKDcQHk:{kmwCzN12b:resolvedLinks10[2]},ULZ07Mu4d:{kmwCzN12b:resolvedLinks10[1]}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b51x0z\",\"data-framer-name\":\"Solution\",layoutDependency:layoutDependency,layoutId:\"TPmaeH4o0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vmmgsd\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"xjJ45LHVk\",style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},...addPropertyOverrides({bGqQ3uPfx:{\"data-highlight\":true,onTap:onTaphq1j6v},ilZFujXFW:{\"data-highlight\":true,onTap:onTap1xcmg0h},NazKDcQHk:{\"data-highlight\":true,onTap:onTap1xcmg0h},ULZ07Mu4d:{\"data-highlight\":true,onTap:onTap1xcmg0h}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Solution\"})}),className:\"framer-1ggrxuz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cMxdZgMl1\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-183n3ot\",\"data-framer-name\":\"IconSet/Basic Icon Copy\",layoutDependency:layoutDependency,layoutId:\"bnOYTvyA9\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[isDisplayed12()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5x2xct\",\"data-framer-name\":\"Type=Angle-down, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"dW27XhiQ6\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bgtt72\",\"data-framer-name\":\"angle-down-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"h3jRPAWtN\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 4.79995C3.79521 4.79995 3.5904 4.72158 3.43441 4.56559L0.234587 1.36577C-0.0781956 1.05299 -0.0781956 0.547369 0.234587 0.234587C0.547369 -0.0781956 1.05299 -0.0781956 1.36577 0.234587L4 2.86881L6.63423 0.234587C6.94701 -0.0781956 7.45263 -0.0781956 7.76541 0.234587C8.0782 0.547369 8.0782 1.05299 7.76541 1.36577L4.56559 4.56559C4.4096 4.72158 4.20479 4.79995 4 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed13()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-gwuuga\",\"data-framer-name\":\"Type=Angle-up, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"sY2jeKUcs\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-pnmklp\",\"data-framer-name\":\"angle-up-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"YktoMdRpB\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.19982 4.79995C6.99503 4.79995 6.79022 4.72158 6.63423 4.56559L4 1.93137L1.36577 4.56559C1.05299 4.87838 0.547369 4.87838 0.234587 4.56559C-0.0781956 4.25281 -0.0781956 3.74719 0.234587 3.43441L3.43441 0.234587C3.74719 -0.0781956 4.25281 -0.0781956 4.56559 0.234587L7.76541 3.43441C8.0782 3.74719 8.0782 4.25281 7.76541 4.56559C7.60942 4.72158 7.40461 4.79995 7.19982 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed14()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({bGqQ3uPfx:{height:560,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+48+0+196+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ss7669-container\",layoutDependency:layoutDependency,layoutId:\"CRZ6ehTDj-container\",nodeId:\"CRZ6ehTDj\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavTabsMobile,{height:\"100%\",id:\"CRZ6ehTDj\",layoutId:\"CRZ6ehTDj\",style:{width:\"100%\"},variant:\"qZyvGgR0p\",width:\"100%\"})})})]}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined},{href:{webPageId:\"wkl_kABUa\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({bGqQ3uPfx:{height:36,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+48+0+160},ilZFujXFW:{height:36,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+48+0+160},NazKDcQHk:{height:36,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+10+0+48+0+720},ULZ07Mu4d:{height:36,width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+(10+((componentViewport?.height||462)-20-680)/2)+0+48+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o1wumq-container\",layoutDependency:layoutDependency,layoutId:\"cHggTBHte-container\",nodeId:\"cHggTBHte\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavBarNavTab,{bQGcMBwCJ:\"rgba(255, 255, 255, 0)\",height:\"100%\",id:\"cHggTBHte\",kmwCzN12b:resolvedLinks11[0],layoutId:\"cHggTBHte\",rrTsFeJM4:\"var(--token-f542434d-12a0-4675-939a-ffdcf85ae83c, rgb(239, 239, 240))\",style:{width:\"100%\"},TQuN00Vkw:\"Manifesto\",variant:\"tEHmQahEZ\",width:\"100%\",zYO3pkm_J:\"fHT2XCbtR\",...addPropertyOverrides({bGqQ3uPfx:{kmwCzN12b:resolvedLinks11[3],variant:\"HWXcrsocv\"},ilZFujXFW:{kmwCzN12b:resolvedLinks11[4],variant:\"HWXcrsocv\"},NazKDcQHk:{kmwCzN12b:resolvedLinks11[2],variant:\"HWXcrsocv\"},ULZ07Mu4d:{kmwCzN12b:resolvedLinks11[1],variant:\"HWXcrsocv\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pr4qeu\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"GpaIA6POTXWb_yO0wG\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(205, 205, 205)\",\"--border-left-width\":\"0.5px\",\"--border-right-width\":\"0.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:24,borderBottomRightRadius:24},children:/*#__PURE__*/_jsxs(MotionDivWithOpenButtonta3wqm,{className:\"framer-ta3wqm\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"yLD8FCdgb\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"161.5px\",...addPropertyOverrides({bGqQ3uPfx:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+48+0+1112+20+0},ilZFujXFW:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+48+0+1112+20+0},NazKDcQHk:{y:(componentViewport?.y||0)+10+0+48+0+1112+20+0},ULZ07Mu4d:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||462)-20-680)/2)+0+48+0+552+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1o3iyib-container\",layoutDependency:layoutDependency,layoutId:\"E97uuvvaz-container\",nodeId:\"E97uuvvaz\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(BasicButton,{b88vNS6Nc:false,height:\"100%\",id:\"E97uuvvaz\",layoutId:\"E97uuvvaz\",MqkdqnaBL:\"Sign Up\",style:{width:\"100%\"},variant:\"uiWNtUoVL\",width:\"100%\",zi0GzDlCw:\"https://dash.teamcamp.app/membership/signup\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"161.5px\",...addPropertyOverrides({bGqQ3uPfx:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||742)-20-1240)/2)+0+48+0+1112+20+0},ilZFujXFW:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||812)-20-1240)/2)+0+48+0+1112+20+0},NazKDcQHk:{y:(componentViewport?.y||0)+10+0+48+0+1112+20+0},ULZ07Mu4d:{y:(componentViewport?.y||0)+(10+((componentViewport?.height||462)-20-680)/2)+0+48+0+552+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gbuazc-container\",layoutDependency:layoutDependency,layoutId:\"daoxaZjZ2-container\",nodeId:\"daoxaZjZ2\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(BasicButton,{b88vNS6Nc:false,height:\"100%\",id:\"daoxaZjZ2\",layoutId:\"daoxaZjZ2\",MqkdqnaBL:\"Log in\",style:{width:\"100%\"},variant:\"oyHW6bhxj\",width:\"100%\",zi0GzDlCw:\"https://dash.teamcamp.app/membership/login\"})})})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2du9g7\",\"data-framer-name\":\"Product\",layoutDependency:layoutDependency,layoutId:\"oaq2GUvbS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vy6ogv\",\"data-border\":true,\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YQYF7NZCN\",onTap:onTap611009,style:{\"--border-bottom-width\":\"0.5px\",\"--border-color\":\"var(--token-6c71416d-6bb1-4a15-a283-7a37ae2e6083, rgb(205, 205, 205))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},...addPropertyOverrides({bGqQ3uPfx:{onTap:onTaps93wbu},ilZFujXFW:{onTap:onTaps93wbu},NazKDcQHk:{onTap:onTaphq1j6v},ULZ07Mu4d:{onTap:onTaps93wbu}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1gzdgpd\",\"data-styles-preset\":\"salxIsK3I\",children:\"Product\"})}),className:\"framer-15ou35x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G2OCi0JuF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TQuN00Vkwlh0Ns4A9p,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-57v42u\",\"data-framer-name\":\"IconSet/Basic Icon Copy\",layoutDependency:layoutDependency,layoutId:\"l4Bu_o44t\",style:{borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:[isDisplayed15()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bwzfic\",\"data-framer-name\":\"Type=Angle-down, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"cYR9WeuhY\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ztcab2\",\"data-framer-name\":\"angle-down-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"xMPu8UYpk\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 4.79995C3.79521 4.79995 3.5904 4.72158 3.43441 4.56559L0.234587 1.36577C-0.0781956 1.05299 -0.0781956 0.547369 0.234587 0.234587C0.547369 -0.0781956 1.05299 -0.0781956 1.36577 0.234587L4 2.86881L6.63423 0.234587C6.94701 -0.0781956 7.45263 -0.0781956 7.76541 0.234587C8.0782 0.547369 8.0782 1.05299 7.76541 1.36577L4.56559 4.56559C4.4096 4.72158 4.20479 4.79995 4 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed16()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fu8vjr\",\"data-framer-name\":\"Type=Angle-up, Status=Fill\",layoutDependency:layoutDependency,layoutId:\"DBOUekbmT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sd6fsn\",\"data-framer-name\":\"angle-up-small\",fill:\"var(--token-650bfb16-d380-4c0a-b9dc-b1c3fd6cfcc7, rgb(26, 26, 26))\",intrinsicHeight:5,intrinsicWidth:8,layoutDependency:layoutDependency,layoutId:\"McY1drVdo\",svg:'<svg width=\"8\" height=\"5\" viewBox=\"0 0 8 5\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.19982 4.79995C6.99503 4.79995 6.79022 4.72158 6.63423 4.56559L4 1.93137L1.36577 4.56559C1.05299 4.87838 0.547369 4.87838 0.234587 4.56559C-0.0781956 4.25281 -0.0781956 3.74719 0.234587 3.43441L3.43441 0.234587C3.74719 -0.0781956 4.25281 -0.0781956 4.56559 0.234587L7.76541 3.43441C8.0782 3.74719 8.0782 4.25281 7.76541 4.56559C7.60942 4.72158 7.40461 4.79995 7.19982 4.79995Z\" fill=\"#1A1A1A\"/>\\n</svg>\\n',withExternalLayout:true})})]})]}),isDisplayed16()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:560,...addPropertyOverrides({NazKDcQHk:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:(componentViewport?.y||0)+10+0+48+0+0+0+160}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11narz3-container\",layoutDependency:layoutDependency,layoutId:\"gtqPCT8Uf-container\",nodeId:\"gtqPCT8Uf\",rendersWithMotion:true,scopeId:\"RmTaeeaHX\",children:/*#__PURE__*/_jsx(NavTabsMobile,{height:\"100%\",id:\"gtqPCT8Uf\",layoutId:\"gtqPCT8Uf\",style:{width:\"100%\"},variant:\"fHT2XCbtR\",width:\"100%\"})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4gRRv.framer-iycj0y, .framer-4gRRv .framer-iycj0y { display: block; }\",\".framer-4gRRv.framer-ktr3uw { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 24px 10px 24px; position: relative; width: 1136px; }\",\".framer-4gRRv .framer-k716ml { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 1px; }\",\".framer-4gRRv .framer-hcaq73 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 2px; position: relative; width: 100%; }\",\".framer-4gRRv .framer-15abyk5-container, .framer-4gRRv .framer-1ac4tag-container, .framer-4gRRv .framer-dv0zw0-container, .framer-4gRRv .framer-3oewqz-container, .framer-4gRRv .framer-qo7jad-container, .framer-4gRRv .framer-imbtu3-container, .framer-4gRRv .framer-1may4p7-container, .framer-4gRRv .framer-ws8zfz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4gRRv .framer-1w5d3ao { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4gRRv .framer-qr3ohq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4gRRv .framer-11rfidi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4gRRv .framer-ot9glm-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-4gRRv .framer-evks0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-4gRRv .framer-1pnyklr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; min-height: 194px; overflow: visible; padding: 0px; position: relative; width: 312px; }\",\".framer-4gRRv .framer-cqn7ab-container, .framer-4gRRv .framer-1e32i2i-container, .framer-4gRRv .framer-165ry0p-container, .framer-4gRRv .framer-n9v8ug-container, .framer-4gRRv .framer-11gzez7-container, .framer-4gRRv .framer-1bk761f-container, .framer-4gRRv .framer-1w6pflk-container, .framer-4gRRv .framer-ss7669-container, .framer-4gRRv .framer-o1wumq-container, .framer-4gRRv .framer-11narz3-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4gRRv .framer-oox7su { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4gRRv .framer-4gkohp-container, .framer-4gRRv .framer-e03i8a-container, .framer-4gRRv .framer-1o3iyib-container, .framer-4gRRv .framer-gbuazc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-4gRRv .framer-1tpt1my-container, .framer-4gRRv .framer-t424dd-container, .framer-4gRRv .framer-toomtj-container { flex: 1 0 0px; height: 260px; position: relative; width: 1px; }\",\".framer-4gRRv .framer-1f3e0el { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4gRRv .framer-2gdtd9-container, .framer-4gRRv .framer-7vo5he-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-4gRRv .framer-1csg857 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; overflow-y: auto; padding: 0px; position: relative; width: 100%; }\",\".framer-4gRRv .framer-jjutrc, .framer-4gRRv .framer-b51x0z, .framer-4gRRv .framer-2du9g7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4gRRv .framer-13o494u, .framer-4gRRv .framer-vmmgsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 12px 20px 12px; position: relative; width: 100%; }\",\".framer-4gRRv .framer-uu8quu, .framer-4gRRv .framer-1ggrxuz, .framer-4gRRv .framer-15ou35x { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4gRRv .framer-1en5xre, .framer-4gRRv .framer-183n3ot, .framer-4gRRv .framer-57v42u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4gRRv .framer-1vv3ad5, .framer-4gRRv .framer-10ekfr8, .framer-4gRRv .framer-5x2xct, .framer-4gRRv .framer-gwuuga, .framer-4gRRv .framer-1bwzfic, .framer-4gRRv .framer-1fu8vjr { flex: 1 0 0px; gap: 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-4gRRv .framer-gz9y4u, .framer-4gRRv .framer-17cyqkm, .framer-4gRRv .framer-bgtt72, .framer-4gRRv .framer-pnmklp, .framer-4gRRv .framer-ztcab2, .framer-4gRRv .framer-1sd6fsn { flex: none; height: 21%; left: calc(50.00000000000002% - 33.33333333333333% / 2); position: absolute; top: calc(50.00000000000002% - 20.833333333333336% / 2); width: 33%; }\",\".framer-4gRRv .framer-pr4qeu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 20px 16px 20px 16px; position: relative; width: 100%; }\",\".framer-4gRRv .framer-ta3wqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 329px; }\",\".framer-4gRRv .framer-1vy6ogv { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 12px 20px 12px; position: relative; width: 100%; }\",\".framer-4gRRv.framer-v-14qv5c8 .framer-hcaq73, .framer-4gRRv.framer-v-my7lou .framer-hcaq73, .framer-4gRRv.framer-v-1rrydxl .framer-hcaq73, .framer-4gRRv.framer-v-u05rot .framer-gbuazc-container, .framer-4gRRv.framer-v-u05rot .framer-2du9g7, .framer-4gRRv.framer-v-5f00de .framer-gbuazc-container, .framer-4gRRv.framer-v-5f00de .framer-2du9g7, .framer-4gRRv.framer-v-xfxso9 .framer-gbuazc-container, .framer-4gRRv.framer-v-xfxso9 .framer-2du9g7, .framer-4gRRv.framer-v-1j0z7gx .framer-gbuazc-container, .framer-4gRRv.framer-v-1j0z7gx .framer-2du9g7 { order: 0; }\",\".framer-4gRRv.framer-v-14qv5c8 .framer-evks0h, .framer-4gRRv.framer-v-my7lou .framer-evks0h, .framer-4gRRv.framer-v-1rrydxl .framer-evks0h, .framer-4gRRv.framer-v-u05rot .framer-o1wumq-container, .framer-4gRRv.framer-v-u05rot .framer-1o3iyib-container, .framer-4gRRv.framer-v-5f00de .framer-o1wumq-container, .framer-4gRRv.framer-v-5f00de .framer-1o3iyib-container, .framer-4gRRv.framer-v-xfxso9 .framer-o1wumq-container, .framer-4gRRv.framer-v-xfxso9 .framer-1o3iyib-container, .framer-4gRRv.framer-v-1j0z7gx .framer-o1wumq-container, .framer-4gRRv.framer-v-1j0z7gx .framer-1o3iyib-container { order: 1; }\",\".framer-4gRRv.framer-v-14qv5c8 .framer-1pnyklr { min-height: unset; width: 29%; }\",\".framer-4gRRv.framer-v-my7lou .framer-1pnyklr { min-height: unset; }\",\".framer-4gRRv.framer-v-1rrydxl .framer-1pnyklr { min-height: unset; width: 292px; }\",\".framer-4gRRv.framer-v-1rrydxl .framer-oox7su { align-self: stretch; height: auto; }\",\".framer-4gRRv.framer-v-dtsiqw.framer-ktr3uw, .framer-4gRRv.framer-v-u05rot.framer-ktr3uw, .framer-4gRRv.framer-v-xfxso9.framer-ktr3uw, .framer-4gRRv.framer-v-1j0z7gx.framer-ktr3uw { padding: 10px 16px 10px 16px; width: 393px; }\",\".framer-4gRRv.framer-v-dtsiqw .framer-k716ml { gap: unset; justify-content: space-between; padding: 8px 8px 8px 10px; }\",\".framer-4gRRv.framer-v-dtsiqw .framer-hcaq73 { gap: unset; justify-content: space-between; order: 0; padding: 0px; }\",\".framer-4gRRv.framer-v-u05rot .framer-k716ml, .framer-4gRRv.framer-v-xfxso9 .framer-k716ml, .framer-4gRRv.framer-v-1j0z7gx .framer-k716ml { gap: 0px; padding: 0px; position: sticky; top: 0px; }\",\".framer-4gRRv.framer-v-u05rot .framer-hcaq73, .framer-4gRRv.framer-v-5f00de .framer-hcaq73, .framer-4gRRv.framer-v-xfxso9 .framer-hcaq73, .framer-4gRRv.framer-v-1j0z7gx .framer-hcaq73 { gap: unset; justify-content: space-between; order: 0; padding: 8px 8px 8px 10px; }\",\".framer-4gRRv.framer-v-u05rot .framer-1csg857, .framer-4gRRv.framer-v-u05rot .framer-b51x0z, .framer-4gRRv.framer-v-5f00de .framer-b51x0z, .framer-4gRRv.framer-v-xfxso9 .framer-1csg857, .framer-4gRRv.framer-v-xfxso9 .framer-b51x0z, .framer-4gRRv.framer-v-1j0z7gx .framer-1csg857, .framer-4gRRv.framer-v-1j0z7gx .framer-b51x0z { order: 2; }\",\".framer-4gRRv.framer-v-u05rot .framer-jjutrc, .framer-4gRRv.framer-v-5f00de .framer-jjutrc, .framer-4gRRv.framer-v-xfxso9 .framer-jjutrc, .framer-4gRRv.framer-v-1j0z7gx .framer-jjutrc { order: 3; }\",\".framer-4gRRv.framer-v-u05rot .framer-13o494u, .framer-4gRRv.framer-v-u05rot .framer-vmmgsd, .framer-4gRRv.framer-v-5f00de .framer-13o494u, .framer-4gRRv.framer-v-5f00de .framer-vmmgsd, .framer-4gRRv.framer-v-xfxso9 .framer-13o494u, .framer-4gRRv.framer-v-xfxso9 .framer-vmmgsd, .framer-4gRRv.framer-v-1j0z7gx .framer-13o494u, .framer-4gRRv.framer-v-1j0z7gx .framer-vmmgsd { cursor: pointer; }\",\".framer-4gRRv.framer-v-u05rot .framer-1w6pflk-container, .framer-4gRRv.framer-v-5f00de .framer-1w6pflk-container, .framer-4gRRv.framer-v-xfxso9 .framer-1w6pflk-container, .framer-4gRRv.framer-v-1j0z7gx .framer-1w6pflk-container { order: 4; }\",\".framer-4gRRv.framer-v-u05rot .framer-pr4qeu, .framer-4gRRv.framer-v-5f00de .framer-pr4qeu, .framer-4gRRv.framer-v-xfxso9 .framer-pr4qeu, .framer-4gRRv.framer-v-1j0z7gx .framer-pr4qeu { order: 8; }\",\".framer-4gRRv.framer-v-5f00de.framer-ktr3uw { align-content: flex-start; align-items: flex-start; height: 1002px; max-height: calc(var(--framer-viewport-height, 100vh) * 1); padding: 10px 16px 10px 16px; width: 393px; }\",\".framer-4gRRv.framer-v-5f00de .framer-k716ml { gap: 0px; height: 100%; overflow: hidden; overflow-y: auto; padding: 0px; position: sticky; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-4gRRv.framer-v-5f00de .framer-1csg857 { flex: 1 0 0px; height: 1px; justify-content: flex-start; order: 2; }\",...sharedStyle.css,'.framer-4gRRv[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-4gRRv [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-4gRRv[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-4gRRv [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-4gRRv[data-hide-scrollbars=\"true\"], .framer-4gRRv [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-4gRRv[data-border=\"true\"]::after, .framer-4gRRv [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 70\n * @framerIntrinsicWidth 1136\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"eX7p4KqC_\":{\"layout\":[\"fixed\",\"auto\"]},\"PSMj823Dc\":{\"layout\":[\"fixed\",\"auto\"]},\"ov_I6SSKk\":{\"layout\":[\"fixed\",\"auto\"]},\"wNCX3ZRKJ\":{\"layout\":[\"fixed\",\"auto\"]},\"hUfbUQknU\":{\"layout\":[\"fixed\",\"auto\"]},\"ULZ07Mu4d\":{\"layout\":[\"fixed\",\"auto\"]},\"NazKDcQHk\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"100vh\"]},\"bGqQ3uPfx\":{\"layout\":[\"fixed\",\"auto\"]},\"ilZFujXFW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRmTaeeaHX=withCSS(Component,css,\"framer-4gRRv\");export default FramerRmTaeeaHX;FramerRmTaeeaHX.displayName=\"NavBar/Nav-Bar\";FramerRmTaeeaHX.defaultProps={height:70,width:1136};addPropertyControls(FramerRmTaeeaHX,{variant:{options:[\"qVL2bVJkp\",\"eX7p4KqC_\",\"PSMj823Dc\",\"ov_I6SSKk\",\"wNCX3ZRKJ\",\"hUfbUQknU\",\"ULZ07Mu4d\",\"NazKDcQHk\",\"bGqQ3uPfx\",\"ilZFujXFW\"],optionTitles:[\"Desktop-Scroll\",\"Desktop\",\"Product\",\"Resource\",\"Solution\",\"Mobile\",\"Mobile Scroll\",\"Product-M\",\"Solution-M\",\"Resources-M\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRmTaeeaHX,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...TeamcampLogoFonts,...NavBarNavTabFonts,...BasicButtonFonts,...MenuButtonFonts,...NavDetailsTabFonts,...ResourceTabFonts,...ServicesTabFonts,...ProductTabFonts,...ProductTab2Fonts,...NavTabsMobileFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRmTaeeaHX\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eX7p4KqC_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PSMj823Dc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ov_I6SSKk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wNCX3ZRKJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hUfbUQknU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ULZ07Mu4d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NazKDcQHk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]},\\\"bGqQ3uPfx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ilZFujXFW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"70\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1136\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RmTaeeaHX.map"],
  "mappings": "siBAAqF,SAASA,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAASP,CAAU,EAIzC,OAFAQ,GAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,GAAe,IAAI,IAAMA,GAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfvC,IAAMM,GAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,GAAyB,CAClC,GAAGC,GACH,SAAU,QACd,ECfmY,IAAMC,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,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,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,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMrB,IAAeqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAwBrB,EAAS,KAAK,GAAG,EAAUuB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7B,EAAQ,GAAG8B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,eAAe,YAAY,gBAAA9C,GAAgB,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBpB,GAAuBD,EAAMrB,CAAQ,EAA4D2C,EAAkBC,EAAGhD,GAAkB,GAArE,CAAakC,EAAS,CAAuE,EAAQe,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBrC,EAAKsC,EAAY,CAAC,GAAGpB,GAAUgB,EAAgB,SAAsBlC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGiB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,GAAG/B,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEmC,EAAYI,CAAc,EAAE,SAAsBxB,EAAKuC,GAAK,CAAC,KAAK,4BAA4B,OAAO,YAAY,aAAa,GAAK,SAAsBvC,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,SAAsB7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,kFAAkF,gFAAgF,kRAAkR,qXAAqX,iHAAiH,snBAAsnB,GAAeA,EAAG,EAQ/0KC,GAAgBC,EAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTv0DC,GAAU,UAAU,CAAC,sBAAsB,sBAAsB,sBAAsB,qBAAqB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,eAAe,OAAO,SAAS,IAAI,sEAAsE,CAAC,EAAeC,GAAI,CAAC,ihCAAihC,wkCAAwkC,ukCAAukC,mkCAAmkC,EAAeC,GAAU,eCChqI,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,WAAW,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,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,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMrB,IAAWA,EAAS,KAAK,GAAG,EAAEqB,EAAM,iBAAuBE,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA7B,EAAQ,GAAG8B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAArC,CAAQ,EAAEsC,EAAgB,CAAC,WAAA3C,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0C,EAAiBjB,GAAuBD,EAAMrB,CAAQ,EAAQwC,GAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,EAAS,EAAQe,GAAkBC,EAAqB,EAAE,OAAoBjC,EAAKkC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsB7B,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKmC,GAAK,CAAC,KAAK,8CAA8C,aAAa,GAAM,SAAsBnC,EAAKE,EAAO,EAAE,CAAC,GAAGiB,EAAU,UAAU,GAAGiB,EAAGrD,GAAkB,GAAGgD,EAAsB,iBAAiBd,EAAUI,CAAU,CAAC,iBAAiB,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,GAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAG/B,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAEmC,EAAYE,CAAc,EAAE,SAAsBtB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBwB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,SAAsB1B,EAAKqC,EAAS,CAAC,sBAAsB,GAAK,SAAsBrC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBwB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,kFAAkF,gFAAgF,mVAAmV,4VAA4V,gHAAgH,0nBAA0nB,GAAeA,EAAG,EAQ7mLC,GAAgBC,EAAQ9B,GAAU4B,GAAI,cAAc,EAAiCG,GAAgB,YAAY,iCAAiCA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEC,EAASD,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGE,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECNp2D,IAAMC,GAASC,GAAY,CAAC,WAAW,SAAS,CAAC,EAA8mB,SAASC,GAAeC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,EAAWC,CAAa,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAU,IAAI,CAAC,SAASC,EAAUC,EAAK,CAAC,IAAIC,EAAE,KAAK,SAAS,MAAM,GAAG,MAAM,QAAQD,CAAI,UAAU,EAAE,OAAOC,EAAEA,EAAE,CAAC,EAAE,EAAG,CAAC,GAAG,OAAO,SAAW,IAAY,CAAC,IAAMC,EAAaH,EAAU,oBAAoB,EAAQI,EAAYJ,EAAU,mBAAmB,EAAgCH,EAA3B,GAAAM,GAAcC,EAA+B,CAA8B,CAAC,EAAE,CAAC,CAAC,EAAsBC,EAAKC,GAAU,CAAC,SAAsBD,EAAK,MAAM,CAAC,SAAST,EAAwBS,EAAKE,GAAoB,CAAC,CAAC,EAAeF,EAAKX,EAAU,CAAC,GAAGC,CAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAE,CCF9pB,IAAMa,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,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,SAAS,YAAY,SAAS,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,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,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,EAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIoC,EAAW,QAAA5B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiB5B,GAAuBD,EAAMvB,CAAQ,EAAmFqD,GAAkBC,EAAG1D,GAAkB,GAA5F,CAAa2C,GAAuBA,EAAS,CAAuE,EAAQgB,EAAY,IAAQ,GAAC,kBAAkB,iBAAiB,EAAE,SAASR,CAAc,GAAkBJ,IAAc,aAA6Ca,EAAa,IAAQT,IAAiB,kBAAmDU,EAAa,IAAQV,IAAiB,kBAAyB,GAASJ,IAAc,YAA6Ce,EAAa,IAAQX,IAAiB,kBAA6C,OAAoBlC,EAAK8C,EAAY,CAAC,GAAGnB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK+C,GAAK,CAAC,KAAKnB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBoB,EAAM9C,EAAO,EAAE,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,GAAkB,iBAAiBd,EAAUK,CAAU,CAAC,iBAAiB,cAAc,GAAK,mBAAmB,WAAW,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,wEAAwE,UAAU,qCAAqC,EAAE,kBAAkB,CAAC,gBAAgB,wEAAwE,UAAU,qCAAqC,CAAC,EAAE,GAAGxC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAS,CAAcc,EAAM9C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gGAAgG,EAAE,SAAS,8CAA8C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEQ,EAAY,GAAgB1C,EAAKkD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B5B,GAAmB,GAAG,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,oEAAoE,OAAO,6PAA6P,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,EAAEI,EAAa,GAAgB3C,EAAKkD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBX,EAAiB,SAAS,YAAY,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQkE,GAA2B5B,GAAmB,GAAG,GAAG,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,EAAEU,EAAa,GAAgB5C,EAAKkD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,+BAA+B,iBAAiBX,EAAiB,SAAS,YAAY,GAAGtD,GAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQkE,GAA2B5B,GAAmB,GAAG,IAAIA,GAAmB,QAAQ,KAAK,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,iBAAiB,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,EAAEW,EAAa,GAAgB7C,EAAKkD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,mBAAmB,+BAA+B,iBAAiBX,EAAiB,SAAS,YAAY,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQkE,GAA2B5B,GAAmB,GAAG,IAAIA,GAAmB,QAAQ,KAAK,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQA,GAAmB,OAAO,OAAO,iBAAiB,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,mKAAmK,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,WAAW,kKAAkK,EAAE,kBAAkB,CAAC,WAAW,wIAAwI,EAAE,UAAU,CAAC,WAAW,6HAA6H,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQa,GAAI,CAAC,kFAAkF,gFAAgF,qXAAqX,sSAAsS,kMAAkM,oMAAoM,gGAAgG,sPAAsP,mLAAmL,goBAAgoB,qEAAqE,wOAAwO,oEAAoE,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAWxkfC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,WAAW,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,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,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXz/C,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,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,KAAK,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,EAAM,UAAU,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,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,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAArD,CAAQ,EAAEsD,EAAgB,CAAC,WAAA3D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIuC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0D,EAAiB5B,GAAuBD,EAAM1B,CAAQ,EAAmFwD,GAAkBC,EAAG7D,GAAkB,GAA5F,CAAa8C,GAAuBA,EAAS,CAAuE,EAAQgB,EAAY,IAAQ,EAAAR,IAAiB,mBAAkCJ,IAAc,aAA6Ca,EAAa,IAAQT,IAAiB,mBAAiCJ,IAAc,YAA6Cc,EAAa,IAAQV,IAAiB,kBAAmDW,EAAa,IAAQX,IAAiB,kBAAyB,GAAQJ,IAAc,YAA6CgB,GAAa,IAAQZ,IAAiB,kBAA6C,OAAoBlC,EAAK+C,EAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKgD,GAAK,CAAC,KAAKpB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBqB,EAAM/C,EAAO,EAAE,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,GAAkB,iBAAiBd,EAAUK,CAAU,CAAC,kBAAkB,cAAc,GAAK,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,EAAE,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEgD,EAAYI,CAAc,EAAE,SAAS,CAAce,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAYI,CAAc,CAAC,CAAC,EAAelC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzD,GAAqB,CAAC,UAAU,CAAC,SAAsBkB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEQ,EAAY,GAAgB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,cAAc,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,MAAM,EAAE,SAAS,CAAC,kBAAkB,CAAC,UAAU,qCAAqC,CAAC,EAAE,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gCAAgC,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAS,CAAcvC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAqL,mBAAmB,EAAI,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAAg6B,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,kBAAkB,QAAQ,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,kBAAkB,QAAQ,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqtB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,OAAO,QAAQ,EAAE,EAAE,SAAS,CAAC,kBAAkB,CAAC,UAAU,qCAAqC,CAAC,EAAE,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,iGAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,8HAA8H,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAS,CAAcvC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,EAAE,eAAe,EAAE,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAAqL,mBAAmB,EAAI,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAAk6B,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,SAAS,kBAAkB,QAAQ,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,KAAK,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,wBAAwB,qBAAqB,iBAAiB,qBAAqB,sBAAsB,qBAAqB,uBAAuB,qBAAqB,iBAAiB,QAAQ,qBAAqB,qBAAqB,gBAAgB,eAAe,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,KAAK,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,SAAS,kBAAkB,QAAQ,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBgB,EAAiB,SAAS,4BAA4B,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,2CAA2C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,mBAAmB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmzC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,SAAS,uBAAuB,MAAM,0BAA0B,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,cAAc,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,sEAAsE,EAAE,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,SAAS,0BAA0B,SAAS,sBAAsB,0CAA0C,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,4CAA4C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6CAA6C,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBqC,EAAiB,SAAS,yCAAyC,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAAg6B,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,kBAAkB,QAAQ,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,EAAE,kBAAkB,QAAQ,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,6CAA6C,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqtB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,IAAI,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,KAAK,UAAU,sEAAsE,EAAE,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,gBAAgB,qBAAqB,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,0CAA0C,EAAE,SAAS,iGAA4F,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,6CAA6C,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,wBAAwB,uBAAuB,iBAAiB,qBAAqB,sBAAsB,uBAAuB,uBAAuB,uBAAuB,iBAAiB,QAAQ,qBAAqB,uBAAuB,uBAAuB,MAAM,wBAAwB,MAAM,oBAAoB,MAAM,qBAAqB,KAAK,EAAE,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,iBAAiBqC,EAAiB,SAAS,yCAAyC,MAAM,CAAC,gBAAgB,oBAAoB,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,MAAM,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,sBAAsB,0CAA0C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,4BAA4B,MAAM,CAAC,qBAAqB,kBAAkB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAAk6B,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,SAAS,kBAAkB,QAAQ,MAAM,EAAE,MAAM,EAAE,YAAY,GAAG,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBgB,EAAiB,SAAS,WAAW,CAAC,EAAeU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,KAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,qBAAqB,iBAAiB,qBAAqB,sBAAsB,qBAAqB,uBAAuB,qBAAqB,iBAAiB,QAAQ,qBAAqB,qBAAqB,gBAAgB,eAAe,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,KAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B9B,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,GAAG,EAAE,QAAQ,EAAE,SAAS,kBAAkB,QAAQ,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBgB,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAS,CAAcvC,EAAKkD,EAAS,CAAC,sBAAsB,GAAK,SAAsBlD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,qBAAqB,SAAS,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,QAAQ,sBAAsB,2CAA2C,EAAE,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,mBAAmB,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,KAAK,wBAAwB,KAAK,oBAAoB,KAAK,qBAAqB,IAAI,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmzC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgBM,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,+BAA+B,iBAAiBqC,EAAiB,SAAS,4BAA4B,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBqC,EAAiB,SAAS,wCAAwC,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,oDAAoD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmqE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEM,EAAa,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBqC,EAAiB,SAAS,wCAAwC,MAAM,CAAC,UAAU,6JAA6J,EAAE,SAAS,CAAC,kBAAkB,CAAC,UAAU,MAAM,CAAC,EAAE,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,oDAAoD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA4wC,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyqF,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyqF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,eAAe,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyqE,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyqE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAw5E,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAw5E,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsjE,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsjE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA68F,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA68F,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAg3E,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsmF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAgtE,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAgtE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAo5I,mBAAmB,EAAI,CAAC,EAAEM,EAAa,GAAgB7C,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,4BAA4B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA86I,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqqU,mBAAmB,EAAI,CAAC,EAAEO,GAAa,GAAgB9C,EAAKmD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0hiB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBqC,EAAiB,SAAS,YAAY,kBAAkBnD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBU,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,kBAAkBnD,GAAmB,SAAS,CAACwD,EAAa,GAAgB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBqC,EAAiB,SAAS,wCAAwC,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,oDAAoD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09F,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEM,EAAa,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,iBAAiBqC,EAAiB,SAAS,wCAAwC,SAAsBvC,EAAKmD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBZ,EAAiB,SAAS,oDAAoD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA86G,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,qKAAqK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQe,GAAI,CAAC,kFAAkF,kFAAkF,qXAAqX,sSAAsS,kMAAkM,qXAAqX,wVAAwV,mTAAmT,gTAAgT,4TAA4T,oSAAoS,yQAAyQ,iUAAiU,wYAAwY,sXAAsX,uXAAuX,0ZAA0Z,gaAAga,mXAAmX,4MAA4M,6RAA6R,icAAic,0HAA0H,oWAAoW,oXAAoX,iZAAiZ,oTAAoT,0WAA0W,yPAAyP,iXAAiX,6YAA6Y,qYAAqY,iJAAiJ,4MAA4M,8NAA8N,6IAA6I,gJAAgJ,kLAAkL,mWAAmW,oUAAoU,2RAA2R,mOAAmO,mJAAmJ,kWAAkW,+QAA+Q,iWAAiW,wWAAwW,qSAAqS,8PAA8P,4UAA4U,yWAAyW,uWAAuW,kWAAkW,sOAAsO,kMAAkM,mNAAmN,kWAAkW,qQAAqQ,gOAAgO,gRAAgR,kWAAkW,yWAAyW,4KAA4K,6SAA6S,yJAAyJ,8FAA8F,mWAAmW,uMAAuM,mJAAmJ,sMAAsM,kLAAkL,y4YAAy4Y,okBAAokB,qPAAqP,wMAAwM,sJAAsJ,qSAAqS,wJAAwJ,gJAAgJ,6EAA6E,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAWh54LC,GAAgBC,EAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,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,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,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,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXphG,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,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,UAAU,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,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,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAImC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAmFmD,EAAkBC,EAAGxD,GAAkB,GAA5F,CAAa0C,GAAuBA,EAAS,CAAuE,EAAE,OAAoBzB,EAAKwC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKyC,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,GAAGxD,GAAqB,CAAC,UAAU,CAAC,KAAK,CAAC,UAAU,WAAW,CAAC,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBU,EAAMC,GAAM,CAAC,GAAGhB,EAAU,GAAGI,GAAgB,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQa,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,GAAGiB,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,CAAC,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,UAAU,qCAAqC,EAAE,kBAAkB,CAAC,UAAU,qCAAqC,CAAC,EAAE,GAAGvC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,OAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQ2D,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,kBAAkB,CAAC,mBAAmB,OAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsB,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,CAAC,EAAE,UAAU,CAAC,mBAAmB,YAAY,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsB,EAA0BtB,GAAmB,GAAG,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,2IAA2I,CAAC,CAAC,EAAerC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBK,EAAMxC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBmC,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,EAAehC,EAAK6C,EAAS,CAAC,sBAAsB,GAAK,SAAsB7C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpD,GAAqB,CAAC,UAAU,CAAC,SAAsBe,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yCAAyC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0B,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,wXAAwX,+IAA+I,oRAAoR,ySAAyS,8IAA8I,g2BAAg2B,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAU98SC,GAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,SAAS,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVlwD,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,gBAAgB,YAAY,eAAe,YAAY,aAAa,YAAY,YAAY,YAAY,cAAc,YAAY,aAAa,YAAY,gBAAgB,YAAY,eAAe,YAAY,mBAAmB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,qBAAqB,YAAY,oBAAoB,YAAY,qBAAqB,YAAY,oBAAoB,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,YAAY,YAAY,WAAW,YAAY,mBAAmB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,gBAAgB,YAAY,eAAe,YAAY,gBAAgB,YAAY,eAAe,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,cAAc,YAAY,aAAa,YAAY,cAAc,YAAY,aAAa,YAAY,cAAc,YAAY,cAAc,YAAY,gBAAgB,YAAY,eAAe,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,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,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAuCmD,EAAkBC,EAAGxD,GAAkB,GAAhD,CAAC,CAAuE,EAAQyD,GAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,EAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQd,IAAc,YAA6Ce,EAAa,IAAQf,IAAc,YAA6CgB,EAAa,IAAQhB,IAAc,YAA6CiB,GAAa,IAAQjB,IAAc,YAA6CkB,GAAa,IAAQlB,IAAc,YAA6CmB,GAAa,IAAQnB,IAAc,YAA6CoB,GAAa,IAAQpB,IAAc,YAA6CqB,GAAa,IAAQrB,IAAc,YAA6CsB,GAAc,IAAQtB,IAAc,YAA6CuB,GAAc,IAAQvB,IAAc,YAA6CwB,GAAc,IAAQxB,IAAc,YAA6CyB,GAAc,IAAQzB,IAAc,YAA6C0B,GAAc,IAAQ1B,IAAc,YAA6C2B,GAAc,IAAQ3B,IAAc,YAA6C4B,GAAc,IAAQ5B,IAAc,YAA6C6B,GAAc,IAAQ7B,IAAc,YAA6C8B,GAAc,IAAQ9B,IAAc,YAA6C+B,GAAc,IAAQ/B,IAAc,YAA6CgC,GAAc,IAAQhC,IAAc,YAA6CiC,GAAc,IAAQjC,IAAc,YAA6CkC,GAAc,IAAQlC,IAAc,YAA6CmC,GAAc,IAAQnC,IAAc,YAA6CoC,GAAc,IAAQpC,IAAc,YAA6CqC,GAAc,IAAQrC,IAAc,YAA6CsC,GAAc,IAAQtC,IAAc,YAA6CuC,GAAc,IAAQvC,IAAc,YAA6CwC,GAAc,IAAQxC,IAAc,YAA6CyC,GAAc,IAAQzC,IAAc,YAA6C0C,GAAc,IAAQ1C,IAAc,YAA6C2C,GAAc,IAAQ3C,IAAc,YAA6C4C,GAAc,IAAQ5C,IAAc,YAA6C6C,GAAc,IAAQ7C,IAAc,YAA6C8C,EAAc,IAAQ9C,IAAc,YAA6C+C,GAAc,IAAQ/C,IAAc,YAA6CgD,GAAc,IAAQhD,IAAc,YAA6CiD,GAAc,IAAQjD,IAAc,YAAuC,OAAoB5B,EAAK8E,EAAY,CAAC,GAAGpD,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByF,EAAM7E,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,aAAa,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,mBAAmB,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,oBAAoB,EAAE,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAACQ,GAAY,GAAgBxC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA65C,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsjK,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEK,EAAa,GAAgB1C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEM,EAAa,GAAgB3C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAwgC,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEO,EAAa,GAAgB5C,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAq/C,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEQ,GAAa,GAAgB7C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA65D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAES,GAAa,GAAgB9C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAisE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEU,GAAa,GAAgB/C,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAw+D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEW,GAAa,GAAgBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEY,GAAa,GAAgBjD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAisG,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEa,GAAc,GAAgBlD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAykF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEc,GAAc,GAAgBnD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA6zD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEe,GAAc,GAAgBpD,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAolD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEgB,GAAc,GAAgBrD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy/D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEiB,GAAc,GAAgBtD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAk9D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEkB,GAAc,GAAgBvD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA2pE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEmB,GAAc,GAAgBxD,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAm8E,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEoB,GAAc,GAAgBzD,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAmnC,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEqB,GAAc,GAAgB1D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkqF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEsB,GAAc,GAAgB3D,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA65C,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEuB,GAAc,GAAgB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAsjK,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEwB,GAAc,GAAgB7D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEyB,GAAc,GAAgB9D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA8gC,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE0B,GAAc,GAAgB/D,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAivB,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE2B,GAAc,GAAgBhE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAs6D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE4B,GAAc,GAAgBjE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAstE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE6B,GAAc,GAAgBlE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA8+D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE8B,GAAc,GAAgBnE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAilF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAE+B,GAAc,GAAgBpE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAgsG,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEgC,GAAc,GAAgBrE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyhF,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEiC,GAAc,GAAgBtE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAu0D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEkC,GAAc,GAAgBvE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAolD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEmC,GAAc,GAAgBxE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAy/D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEoC,GAAc,GAAgBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAi9D,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEqC,EAAc,GAAgB1E,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAypE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEsC,GAAc,GAAgB3E,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAq8E,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEuC,GAAc,GAAgB5E,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAinC,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEwC,GAAc,GAAgB7E,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,iBAAiBmC,EAAiB,SAAS,YAAY,SAAsBrC,EAAKgF,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiB3C,EAAiB,SAAS,2BAA2B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAkqF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4C,GAAI,CAAC,kFAAkF,gFAAgF,sQAAsQ,0tCAA0tC,gOAAgO,6OAA6O,ixBAAixB,4OAA4O,6NAA6N,6OAA6O,6NAA6N,6OAA6O,4OAA4O,4OAA4O,8WAA8W,EAUjq9GC,GAAgBC,EAAQxE,GAAUsE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,aAAa,cAAc,gBAAgB,iBAAiB,cAAc,cAAc,gBAAgB,iBAAiB,kBAAkB,mBAAmB,aAAa,cAAc,eAAe,gBAAgB,eAAe,gBAAgB,oBAAoB,qBAAqB,aAAa,cAAc,YAAY,aAAa,oBAAoB,qBAAqB,eAAe,gBAAgB,kBAAkB,mBAAmB,eAAe,gBAAgB,WAAW,YAAY,eAAe,gBAAgB,gBAAgB,iBAAiB,gBAAgB,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV/nB,IAAMM,GAAgBC,GAASC,EAAU,EAAQC,GAAmBC,GAAoBF,EAAU,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,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,GAAqB,CAAC,gBAAgB,YAAY,eAAe,YAAY,aAAa,YAAY,YAAY,YAAY,cAAc,YAAY,aAAa,YAAY,gBAAgB,YAAY,eAAe,YAAY,mBAAmB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,qBAAqB,YAAY,oBAAoB,YAAY,qBAAqB,YAAY,oBAAoB,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,YAAY,YAAY,WAAW,YAAY,mBAAmB,YAAY,kBAAkB,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,gBAAgB,YAAY,eAAe,YAAY,gBAAgB,YAAY,eAAe,YAAY,iBAAiB,YAAY,gBAAgB,YAAY,cAAc,YAAY,aAAa,YAAY,cAAc,YAAY,aAAa,YAAY,cAAc,YAAY,cAAc,YAAY,gBAAgB,YAAY,eAAe,WAAW,EAAQC,GAAwB,CAAC,eAAe,YAAY,iBAAiB,YAAY,aAAa,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,OAAAC,EAAO,GAAAC,EAAG,UAAAC,EAAU,KAAAC,EAAK,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUH,GAAMG,EAAM,WAAW,2BAA2B,UAAUX,GAAqBM,CAAS,GAAGA,GAAWK,EAAM,WAAW,YAAY,UAAUF,GAAOE,EAAM,WAAW,eAAe,QAAQV,GAAwBU,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUJ,GAAMI,EAAM,UAAU,UAAUX,GAAqBG,CAAU,GAAGA,GAAYQ,EAAM,WAAW,WAAW,GAAUC,GAAuB,CAACD,EAAM5B,IAAe4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAE4B,EAAM,iBAAwB5B,EAAS,KAAK,GAAG,EAAU8B,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,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,GAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAA3D,CAAQ,EAAE4D,EAAgB,CAAC,WAAAjE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIyC,EAAW,QAAAjC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQgE,EAAiBhC,GAAuBD,EAAM5B,CAAQ,EAAO,CAAC,sBAAA8D,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,GAAW,WAAW,CAAE,CAAC,EAAmFQ,GAAkBC,EAAGxE,GAAkB,GAA5F,CAAagD,GAAuBA,EAAS,CAAuE,EAAE,OAAoB/B,EAAKwD,EAAY,CAAC,GAAGxB,GAAUT,EAAgB,SAAsBvB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKyD,GAAK,CAAC,KAAKtB,EAAU,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsBuB,EAAMxD,EAAO,EAAE,CAAC,GAAGoC,EAAU,GAAGI,EAAgB,UAAU,GAAGa,EAAGD,GAAkB,gBAAgBvB,EAAUS,EAAU,CAAC,kBAAkB,mBAAmB,eAAe,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI1B,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,UAAU,qCAAqC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,wEAAwE,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,GAAG7C,GAAqB,CAAC,kBAAkB,CAAC,cAAc,GAAK,mBAAmB,MAAS,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,aAAa,iBAAiB,GAAK,MAAMmE,EAAW,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,gBAAgB,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAS,CAAc3C,EAAK2D,EAA0B,CAAC,OAAO,GAAG,MAAM,OAAO,GAAG/B,GAAmB,GAAG,IAAI,IAAIA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,GAAG3C,GAAqB,CAAC,UAAU,CAAC,GAAG2C,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,EAAE,CAAC,EAAEW,EAAYI,CAAc,EAAE,SAAsB3C,EAAK4D,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBhD,EAAKtB,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ0D,EAAU,MAAM,OAAO,GAAGnD,GAAqB,CAAC,kBAAkB,CAAC,QAAQoD,EAAS,EAAE,UAAU,CAAC,QAAQA,EAAS,CAAC,EAAEE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAMxD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAejC,EAAK6D,EAAS,CAAC,sBAAsB,GAAK,SAAsB7D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ4B,GAAI,CAAC,kFAAkF,kFAAkF,sXAAsX,wGAAwG,wRAAwR,mMAAmM,wnBAAwnB,kHAAkH,iIAAiI,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAW50WC,GAAgBC,EAAQ/C,GAAU6C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,eAAe,aAAa,gBAAgB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAUxF,IAAqB,SAAY,CAAC,GAAGA,GAAmB,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,YAAY,EAAE,UAAUA,IAAqB,SAAY,CAAC,GAAGA,GAAmB,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,aAAa,CAAC,CAAC,EAAEyF,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvF,GAAgB,GAAG6F,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXprE,IAAMC,GAAmBC,GAASC,EAAa,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,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,cAAc,YAAY,gBAAgB,YAAY,eAAe,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,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,QAAArC,EAAQ,GAAGsC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,IAAIkC,EAAW,QAAA3B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiB3B,GAAuBD,EAAMtB,CAAQ,EAAuCmD,EAAkBC,EAAGxD,GAAkB,GAAhD,CAAC,CAAuE,EAAQyD,GAAOC,GAAU,EAAQC,EAAY,IAAQd,IAAc,YAA6Ce,EAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASf,CAAW,EAA6B,OAAoB5B,EAAK4C,EAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBuD,EAAM3C,EAAO,IAAI,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,cAAc,GAAK,mBAAmB,cAAc,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,MAAM,GAAGQ,CAAK,EAAE,GAAGvC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,cAAc,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B/C,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,GAAG,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,EAAE,EAAE,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKiD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,2BAA2B,UAAU,YAAY,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUkE,EAAc,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAG9D,GAAqB,CAAC,UAAU,CAAC,UAAU,2BAA2B,UAAU,YAAY,UAAU,QAAQ,UAAU,SAAS,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,eAAe,UAAU8D,EAAc,CAAC,EAAE,UAAU,WAAW,CAAC,EAAEnB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BlD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,EAAE,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKiD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUqE,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGjE,GAAqB,CAAC,UAAU,CAAC,UAAU,sBAAsB,UAAU,YAAY,UAAU,kBAAkB,UAAUiE,EAAe,CAAC,EAAE,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,kBAAkB,UAAUA,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAEtB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BnD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKiD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,eAAe,UAAU,YAAY,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUsE,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGlE,GAAqB,CAAC,UAAU,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,sBAAsB,UAAU,wBAAwB,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,iCAAiC,UAAU,YAAY,UAAU,qBAAqB,UAAUkE,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAEvB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BpD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKiD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUuE,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGnE,GAAqB,CAAC,UAAU,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,UAAU,UAAU,2BAA2B,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,gCAAgC,UAAU,YAAY,UAAU,gBAAgB,UAAUmE,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAExB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEU,EAAY,GAAgB1C,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BrD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,GAAGrC,GAAqB,CAAC,UAAU,CAAC,GAAGqC,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,EAAEM,EAAYI,CAAc,EAAE,SAAsBhC,EAAKiD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,mBAAmB,UAAU,YAAY,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUwE,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGpE,GAAqB,CAAC,UAAU,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,cAAc,UAAUoE,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAEzB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEW,EAAa,GAAgB3C,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BtD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,SAAsBtB,EAAKiD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,mBAAmB,UAAU,YAAY,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUyE,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEX,EAAa,GAAgB3C,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6BvD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,SAAsBtB,EAAKiD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,0BAA0B,UAAU,YAAY,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU0E,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEZ,EAAa,GAAgB3C,EAAK8C,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASU,GAA6BxD,EAAKgD,EAA0B,CAAC,OAAO,GAAG,MAAM1B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,GAAG,SAAsBtB,EAAKiD,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBZ,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnB,GAAc,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU2E,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQC,GAAI,CAAC,kFAAkF,kFAAkF,iQAAiQ,mYAAmY,6WAA6W,+bAA+b,EAUn8cC,GAAgBC,EAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,cAAc,eAAe,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAG/E,EAAkB,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV4T,IAAMqF,GAAmBC,GAASC,EAAa,EAAQC,GAAsBC,GAAoBF,EAAa,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,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,GAAqB,CAAC,cAAc,YAAY,gBAAgB,YAAY,eAAe,WAAW,EAAQC,GAAwB,CAAC,0BAA0B,YAAY,kCAAkC,YAAY,yBAAyB,YAAY,gCAAgC,YAAY,wBAAwB,YAAY,uBAAuB,YAAY,MAAM,YAAY,KAAK,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,YAAAC,EAAY,OAAAC,EAAO,MAAAC,EAAM,GAAAC,EAAG,KAAAC,EAAK,IAAAC,EAAI,IAAAC,EAAI,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUP,GAAOO,EAAM,UAAU,UAAUV,GAAYU,EAAM,WAAW,yBAAyB,UAAUL,GAAMK,EAAM,UAAU,UAAUT,GAAaS,EAAM,WAAW,wEAAwE,UAAUH,GAAKG,EAAM,UAAU,UAAUF,GAAOE,EAAM,WAAW,UAAU,QAAQZ,GAAwBY,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUb,GAAqBS,CAAG,GAAGA,GAAKI,EAAM,WAAW,WAAW,GAAUC,GAAuB,CAACD,EAAM/B,IAAe+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAE+B,EAAM,iBAAwB/B,EAAS,KAAK,GAAG,EAAUiC,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,QAAA9C,EAAQ,UAAA+C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,EAAS,EAAEpC,GAASW,CAAK,EAAO,CAAC,YAAA0B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhE,CAAQ,EAAEiE,EAAgB,CAAC,WAAAtE,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAI4C,EAAW,QAAApC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqE,EAAiBlC,GAAuBD,EAAM/B,CAAQ,EAAO,CAAC,sBAAAmE,GAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAaH,GAAsB,SAASI,KAAO,CAAoC,GAAnCR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAKZ,GAAqB,MAAMA,EAAU,GAAGoB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAmBL,GAAsB,SAASI,KAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKb,GAAqB,MAAMA,EAAU,GAAGqB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQE,GAAaN,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAYP,GAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAmFW,GAAkBC,EAAGhF,GAAkB,GAA5F,CAAamD,GAAuBA,EAAS,CAAuE,EAAQ8B,GAAY,IAAQpB,IAAc,YAA6CqB,GAAa,IAAQ,EAAAjB,IAAiB,mBAAkC,CAAC,YAAY,WAAW,EAAE,SAASJ,CAAW,GAAmCsB,GAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASvB,CAAW,EAA6B,OAAoB3C,EAAKmE,EAAY,CAAC,GAAGjC,GAAUT,EAAgB,SAAsBzB,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKT,GAAW,CAAC,MAAMF,GAAY,GAAGL,GAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEqD,EAAYI,CAAc,EAAE,SAAsB/C,EAAKoE,GAAK,CAAC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,GAAGpF,GAAqB,CAAC,UAAU,CAAC,KAAKsD,CAAS,EAAE,UAAU,CAAC,KAAKA,CAAS,CAAC,EAAEK,EAAYI,CAAc,EAAE,SAAsBsB,EAAMnE,EAAO,EAAE,CAAC,GAAGwC,GAAU,GAAGI,EAAgB,UAAU,GAAGgB,EAAGD,GAAkB,iBAAiB5B,EAAUW,CAAU,CAAC,kBAAkB,mBAAmB,0BAA0B,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaM,GAAmB,MAAMF,GAAa,IAAIhC,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgBS,CAAS,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,gBAAgB,uEAAuE,EAAE,UAAU,CAAC,gBAAgBD,CAAS,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,UAAU,CAAC,wBAAwB,QAAQ,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,CAAC,EAAE,GAAGxD,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,mBAAmB,gCAAgC,iBAAiB,OAAU,aAAa,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,sBAAsB,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,OAAO,iBAAiB,OAAU,aAAa,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,mBAAmB,wBAAwB,EAAE,UAAU,CAAC,mBAAmB,wBAAwB,MAAM,MAAS,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,kCAAkC,iBAAiB,OAAU,aAAa,OAAU,MAAM,MAAS,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,QAAQ,iBAAiB,OAAU,aAAa,OAAU,MAAM,MAAS,CAAC,EAAE2D,EAAYI,CAAc,EAAE,SAAS,CAACgB,GAAY,GAAgB/D,EAAKsE,EAA0B,CAAC,GAAGtF,GAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM8C,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,IAAI,EAAE,CAAC,EAAEa,EAAYI,CAAc,EAAE,SAAsB/C,EAAKuE,EAA8B,CAAC,UAAU,2BAA2B,iBAAiBnB,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBpD,EAAKvB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGO,GAAqB,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQuD,EAAS,CAAC,EAAEI,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesB,EAAMnE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBkD,EAAiB,SAAS,YAAY,GAAGpE,GAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAM4E,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMD,EAAY,CAAC,EAAEhB,EAAYI,CAAc,EAAE,SAAS,CAAc/C,EAAKwE,EAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnD,GAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyC,EAAYI,CAAc,CAAC,CAAC,EAAEiB,GAAa,GAAgBK,EAAMnE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAACa,GAAa,GAAgBjE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,+BAA+B,iBAAiBkD,EAAiB,SAAS,YAAY,SAAsBpD,EAAKyE,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBrB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2f,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEc,GAAa,GAAgBlE,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,iBAAiBkD,EAAiB,SAAS,YAAY,SAAsBpD,EAAKyE,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBrB,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA+f,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsB,GAAI,CAAC,kFAAkF,kFAAkF,iWAAiW,yGAAyG,mRAAmR,iHAAiH,sUAAsU,mJAAmJ,6OAA6O,uzBAAuzB,2EAA2E,mHAAmH,0KAA0K,mVAAmV,6UAA6U,0IAA0I,qFAAqF,qKAAqK,spBAAspB,0IAA0I,wKAAwK,yUAAyU,iLAAiL,yUAAyU,+EAA+E,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAW1ynBC,GAAgBC,EAAQzD,GAAUuD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,KAAK,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,0BAA0B,wBAAwB,yBAAyB,kCAAkC,gCAAgC,uBAAuB,OAAO,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,UAAU,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAUrG,IAAwB,SAAY,CAAC,GAAGA,GAAsB,QAAW,aAAa,YAAY,YAAY,OAAU,OAAO,OAAU,MAAM,KAAK,EAAE,UAAU,CAAC,aAAa,yBAAyB,MAAM,aAAa,KAAKqG,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,iGAAiG,MAAM,eAAe,KAAKA,EAAY,KAAK,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpG,GAAmB,GAAG0G,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECXt4E,IAAMC,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,CAAC,GAASC,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,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,CAAK,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,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,QAAAvC,EAAQ,GAAGwC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,EAAgB,CAAC,eAAe,YAAY,gBAAAxD,GAAgB,IAAIoC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiB3B,GAAuBD,EAAMxB,CAAQ,EAAmFqD,EAAkBC,EAAG1D,GAAkB,GAA5F,CAAa4C,GAAuBA,EAAS,CAAuE,EAAQe,GAAY,IAAQR,IAAiB,kBAAmDS,EAAa,IAAQT,IAAiB,kBAA6C,OAAoB/B,EAAKyC,EAAY,CAAC,GAAGhB,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAK0C,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBC,EAAMzC,EAAO,EAAE,CAAC,GAAGwB,EAAU,GAAGI,GAAgB,UAAU,GAAGQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,CAAC,iBAAiB,cAAc,GAAK,mBAAmB,kBAAkB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,OAAO,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,wEAAwE,UAAU,qCAAqC,CAAC,EAAE,GAAGzC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAS,CAAc/B,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,+BAA+B,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAAcpC,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAepC,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,+BAA+B,iBAAiBkC,EAAiB,SAAS,4BAA4B,SAAS,CAAcpC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBkC,EAAiB,SAAS,wCAAwC,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,OAAO,UAAU,qCAAqC,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBkC,EAAiB,SAAS,wCAAwC,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,OAAO,UAAU,qCAAqC,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,iBAAiBkC,EAAiB,SAAS,wCAAwC,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,OAAO,wBAAwB,OAAO,oBAAoB,OAAO,qBAAqB,OAAO,UAAU,qCAAqC,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,uEAAuE,CAAC,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,8GAA8G,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACG,GAAY,GAAgBvC,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAqqU,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgBxC,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0hiB,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,iBAAiBkC,EAAiB,SAAS,YAAY,SAAS,CAACG,GAAY,GAAgBvC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,yCAAyC,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAstD,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgBxC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,oCAAoC,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,mDAAmD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA22C,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACG,GAAY,GAAgBvC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,uCAAuC,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAo1H,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgBxC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,2BAA2B,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,uCAAuC,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAimE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACI,EAAa,GAAgBxC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiBkC,EAAiB,SAAS,YAAY,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBkC,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,0BAA0B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA81J,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEG,GAAY,GAAgBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,iBAAiBkC,EAAiB,SAAS,YAAY,SAAsBpC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBkC,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,0BAA0B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA0oY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACI,EAAa,GAAgBxC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAAskD,mBAAmB,EAAI,CAAC,EAAEG,GAAY,GAAgBvC,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,uCAAuC,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAgqH,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACI,EAAa,GAAgBxC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBkC,EAAiB,SAAS,uCAAuC,SAAsBpC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,kDAAkD,IAAI;AAAA;AAAA;AAAA,EAAi0C,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEG,GAAY,GAAgBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBkC,EAAiB,SAAS,YAAY,SAAsBpC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,0BAA0B,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAAyxF,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACG,GAAY,GAAgBvC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBkC,EAAiB,SAAS,uCAAuC,SAAsBpC,EAAK6C,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,mDAAmD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA24G,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgBxC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBkC,EAAiB,SAAS,uCAAuC,SAAsBpC,EAAK6C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,mDAAmD,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA46G,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBkC,EAAiB,SAAS,YAAY,kBAAkBhD,GAAmB,SAAsBY,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,uGAAuG,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,6EAA6E,EAAE,SAAsBO,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiBkC,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,yBAAyB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,yCAAyC,EAAE,SAAS,CAACI,EAAa,GAAgBxC,EAAK8C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,iBAAiBV,EAAiB,SAAS,YAAY,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiE,GAA2B1B,GAAmB,GAAG,KAAKA,GAAmB,QAAQ,KAAK,kBAAkB,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,CAAC,CAAC,EAAEM,EAAYI,CAAc,CAAC,CAAC,EAAEQ,GAAY,GAAgBvC,EAAK8C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2B1B,GAAmB,GAAG,KAAKA,GAAmB,QAAQ,KAAK,kBAAkB,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,YAAY,GAAG,WAAW,GAAG,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,iBAAiBe,EAAiB,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQY,GAAI,CAAC,kFAAkF,gFAAgF,kXAAkX,4UAA4U,6RAA6R,+IAA+I,uNAAuN,wLAAwL,uLAAuL,uLAAuL,0SAA0S,6KAA6K,uMAAuM,mNAAmN,wSAAwS,oWAAoW,6XAA6X,mQAAmQ,+IAA+I,0SAA0S,8QAA8Q,wSAAwS,oOAAoO,mKAAmK,mHAAmH,mHAAmH,0SAA0S,ySAAyS,+IAA+I,ySAAyS,sOAAsO,kJAAkJ,0SAA0S,qOAAqO,6nEAA6nE,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EAUx/tGC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVznD,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,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,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,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,gBAAgB,YAAY,eAAe,YAAY,wBAAwB,YAAY,uBAAuB,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,EAAMtB,IAAesB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAwBtB,EAAS,KAAK,GAAG,EAAUwB,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA9B,EAAQ,GAAG+B,CAAS,EAAEf,GAASI,CAAK,EAAO,CAAC,YAAAY,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAAzC,CAAQ,EAAE0C,EAAgB,CAAC,WAAA/C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8C,EAAiBpB,GAAuBD,EAAMtB,CAAQ,EAAuC4C,EAAkBC,EAAGjD,GAAkB,GAAhD,CAAC,CAAuE,EAAQkD,EAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASd,CAAW,EAAmCe,EAAsBC,EAAM,EAAQC,EAAkBC,EAAqB,EAAE,OAAoBvC,EAAKwC,EAAY,CAAC,GAAGrB,GAAUiB,EAAgB,SAAsBpC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKyC,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBC,EAAMxC,EAAO,EAAE,CAAC,GAAGkB,EAAU,GAAGI,EAAgB,UAAU,GAAGQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,CAAC,kBAAkB,mBAAmB,gBAAgB,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAAKoB,EAAK,MAAM,CAAC,GAAGhB,CAAK,EAAE,GAAGhC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,cAAc,EAAE,UAAU,CAAC,mBAAmB,uBAAuB,EAAE,UAAU,CAAC,mBAAmB,sBAAsB,CAAC,EAAEoC,EAAYI,CAAc,EAAE,SAAS,CAAczB,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,iBAAiBb,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA+nE,mBAAmB,EAAI,CAAC,EAAEK,EAAY,GAAgBnC,EAAK2C,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,IAAI,iBAAiBb,EAAiB,SAAS,yBAAyB,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAA09H,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,8RAA8R,yJAAyJ,+FAA+F,6WAA6W,4GAA4G,mKAAmK,iJAAiJ,ibAAib,4aAA4a,EAQ37XC,GAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,gBAAgB,eAAe,wBAAwB,sBAAsB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRlM,IAAMM,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,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,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,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,OAAAC,EAAO,GAAAC,EAAG,IAAAC,EAAI,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAKE,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,GAAU,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,GAAyBZ,CAAW,EAAQa,EAAYH,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,EAAkBC,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,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUc,EAAGD,EAAkB,iBAAiBpB,EAAUK,CAAU,EAAE,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,EAAY,IAAI1B,EAAW,MAAM,CAAC,gBAAgB,yBAAyB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGQ,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,MAAM4D,CAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsBe,EAAM/C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qEAAqE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,gFAAgF,qUAAqU,kUAAkU,4OAA4O,gPAAgP,0nBAA0nB,8FAA8F,6GAA6G,EAS90MC,GAAgBC,EAAQxC,GAAUsC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,cAAcA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,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,ECTm5C,IAAMM,GAAkBC,GAASC,EAAY,EAAQC,GAAkBF,GAASG,EAAY,EAAQC,GAAiBJ,GAASK,EAAW,EAAQC,GAA+BC,GAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,GAAe,QAAQ,WAAW,CAAC,EAAQC,GAAgBV,GAASW,EAAU,EAAQC,GAAmBZ,GAASa,EAAa,EAAQC,GAAiBd,GAASe,EAAW,EAAQC,GAAiBhB,GAASiB,EAAW,EAAQC,GAAgBlB,GAASmB,EAAU,EAAQC,GAAiBpB,GAASqB,EAAW,EAAQC,GAAmBtB,GAASuB,EAAa,EAAQC,GAA8BjB,GAA6BC,EAAO,IAAI,CAAC,OAAO,YAAY,SAASC,GAAe,QAAQ,WAAW,CAAC,EAAQgB,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,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,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,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,GAASvC,EAAO,OAAawC,CAAQ,EAAQC,GAAwB,CAAC,iBAAiB,YAAY,gBAAgB,YAAY,YAAY,YAAY,cAAc,YAAY,aAAa,YAAY,QAAQ,YAAY,OAAO,YAAY,QAAQ,YAAY,SAAS,YAAY,SAAS,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,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,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,QAAAvC,EAAQ,mBAAAwC,EAAmB,GAAGC,CAAS,EAAEvB,GAASI,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,GAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnD,CAAQ,EAAEoD,EAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,IAAIoC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiB5B,GAAuBD,EAAMxB,CAAQ,EAAO,CAAC,sBAAAsD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAoBH,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAmBL,EAAsB,SAASI,IAAO,CAACR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAgBN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAiBP,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,GAAgBV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAgBX,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,GAAYZ,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,GAAYb,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAad,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQkB,GAAYf,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQmB,GAAYhB,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAA4DoB,GAAkBC,EAAG5E,GAAkB,GAArE,CAAa4C,EAAS,CAAuE,EAAQiC,GAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS7B,CAAW,EAAmC8B,GAAOC,GAAU,EAAQC,GAAa,IAAQ,GAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAShC,CAAW,EAAmCiC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASjC,CAAW,EAAmCkC,GAAa,IAAQlC,IAAc,YAA6CmC,GAAa,IAAQnC,IAAc,YAA6CoC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASpC,CAAW,EAAmCqC,GAAa,IAAQrC,IAAc,YAA6CsC,GAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAAStC,CAAW,EAAmCuC,GAAa,IAAQ,GAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASvC,CAAW,EAAmCwC,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASxC,CAAW,EAAmCyC,GAAc,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASzC,CAAW,EAAmC0C,GAAc,IAAQ1C,IAAc,YAA6C2C,GAAc,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAS3C,CAAW,EAAmC4C,GAAc,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAAS5C,CAAW,EAAmC6C,GAAc,IAAQ7C,IAAc,YAA6C8C,GAAc,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAS9C,CAAW,EAAmC+C,GAAc,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAAS/C,CAAW,EAA6B,OAAoB5B,EAAK4E,EAAY,CAAC,GAAGnD,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,GAAGL,EAAqB,CAAC,UAAU,CAAC,MAAMM,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,CAAC,EAAEwC,EAAYI,CAAc,EAAE,SAAsBhC,EAAKtC,EAAO,IAAI,CAAC,GAAGiE,EAAU,GAAGI,EAAgB,UAAUyB,EAAGD,GAAkB,gBAAgB/B,EAAUK,CAAU,EAAE,mBAAmB,iBAAiB,uBAAuB,GAAK,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,EAAoB,IAAI1B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAGzC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,aAAa,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,aAAa6D,EAAmB,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,cAAc,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,YAAY,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,gBAAgB,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAsB6C,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,uBAAuB,GAAK,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,QAAQ,eAAe,aAAa,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,UAAU,sCAAsC,qBAAqB,YAAY,EAAE,SAAS,CAAC,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,wBAAwB,MAAM,sBAAsB,MAAM,uBAAuB,MAAM,qBAAqB,MAAM,UAAU,MAAM,EAAE,UAAU,CAAC,eAAe,OAAO,qBAAqB,MAAM,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,UAAU,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,CAAC,EAAE,SAAS,CAAcwC,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK7C,GAAa,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAG2B,EAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,GAAY,GAAgBoB,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAUuF,EAAgB,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAG9D,EAAqB,CAAC,UAAU,CAAC,UAAU,MAAS,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4BjF,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,UAAU4H,EAAc,CAAC,EAAE,SAAS,YAAY,UAAU,wEAAwE,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAGnG,EAAqB,CAAC,UAAU,CAAC,UAAUmG,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUpC,EAAiB,UAAUoC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUpC,EAAiB,UAAUoC,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUpC,EAAiB,UAAUoC,EAAc,CAAC,CAAC,CAAC,EAAErD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAUyF,GAAiB,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,WAAW,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAGhE,EAAqB,CAAC,UAAU,CAAC,UAAU,MAAS,EAAE,UAAU,CAAC,UAAU,MAAS,EAAE,UAAU,CAAC,UAAU,MAAS,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAU0F,GAAiB,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/C,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6BlF,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,UAAU6H,EAAe,CAAC,EAAE,SAAS,YAAY,UAAU,wEAAwE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAGpG,EAAqB,CAAC,UAAU,CAAC,UAAUoG,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAEtD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAACoB,GAAY,GAAgBoB,EAAMrH,GAA+B,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB6E,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,UAAU,6CAA6C,SAAS,YAAY,UAAU,wEAAwE,UAAU,SAAS,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAGyB,EAAqB,CAAC,UAAU,CAAC,UAAU,uEAAuE,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGzD,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,GAAGvC,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKzC,GAAY,CAAC,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,UAAU,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqG,GAAa,GAAgB5D,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,IAAI,GAAG,IAAI,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAO,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKnC,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGiB,EAAqB,CAAC,UAAU,CAAC,UAAUmE,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUD,EAAe,EAAE,UAAU,CAAC,UAAUC,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,GAAgB,QAAQ,WAAW,CAAC,EAAErB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgBgB,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2E,EAAiB,SAAS,YAAY,WAAW/C,GAAU,SAAS,CAACuE,GAAa,GAAgBgB,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAACwB,GAAa,GAAgB7D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BnF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,aAAaA,GAAmB,OAAO,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKjC,GAAc,CAAC,UAAU,2BAA2B,UAAU,YAAY,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUoH,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGrG,EAAqB,CAAC,UAAU,CAAC,UAAU,2BAA2B,UAAU,YAAY,UAAU,QAAQ,UAAUqG,EAAe,CAAC,EAAE,UAAU,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,eAAe,UAAUA,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAEvD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgB7D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6BpF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,aAAaA,GAAmB,OAAO,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKjC,GAAc,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,aAAa,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUqH,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGtG,EAAqB,CAAC,UAAU,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,UAAU,UAAU,2BAA2B,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,YAAY,UAAUsG,EAAe,CAAC,EAAE,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,8BAA8B,UAAU,YAAY,UAAU,kBAAkB,UAAUA,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAExD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6B,GAAa,GAAgB7D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6BrF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,aAAaA,GAAmB,OAAO,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKjC,GAAc,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUsH,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGvG,EAAqB,CAAC,UAAU,CAAC,UAAU,4BAA4B,UAAU,YAAY,UAAU,cAAc,UAAUuG,EAAe,CAAC,EAAE,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,YAAY,UAAUA,EAAe,CAAC,EAAE,UAAU,WAAW,EAAE,UAAU,CAAC,UAAU,iCAAiC,UAAU,YAAY,UAAU,qBAAqB,UAAUA,EAAe,CAAC,EAAE,UAAU,WAAW,CAAC,EAAEzD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,GAAa,GAAgB9D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6BtF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,QAAQ,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKjC,GAAc,CAAC,UAAU,gCAAgC,UAAU,YAAY,UAAU,gBAAgB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUuH,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGxG,EAAqB,CAAC,UAAU,CAAC,UAAUwG,EAAe,CAAC,CAAC,CAAC,EAAE1D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,GAAa,GAAgB/D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BvF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,aAAauC,GAAmB,OAAO,OAAO,iCAAiC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKjC,GAAc,CAAC,UAAU,uBAAuB,UAAU,YAAY,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAUwH,EAAe,CAAC,EAAE,MAAM,OAAO,UAAU,YAAY,GAAGzG,EAAqB,CAAC,UAAU,CAAC,UAAUyG,EAAe,CAAC,CAAC,CAAC,EAAE3D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgC,GAAa,GAAgBa,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAC4B,GAAa,GAAgBjE,EAAK8E,EAA0B,CAAC,OAAO,IAAI,GAAGhG,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBuC,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK/B,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGa,EAAqB,CAAC,UAAU,CAAC,UAAU,uBAAuB,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,GAAa,GAAgB9D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BxF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,gBAAgBuC,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK7B,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUqH,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG1G,EAAqB,CAAC,UAAU,CAAC,UAAU0G,EAAe,CAAC,CAAC,CAAC,EAAE5D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8B,GAAa,GAAgB9D,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6BzF,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,gBAAgBuC,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK7B,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUsH,EAAe,CAAC,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAG3G,EAAqB,CAAC,UAAU,CAAC,UAAU2G,EAAe,CAAC,CAAC,CAAC,EAAE7D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,GAAa,GAAgBjE,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASU,GAA6B1F,EAAK8E,EAA0B,CAAC,OAAO,IAAI,GAAGhG,EAAqB,CAAC,UAAU,CAAC,MAAM,gBAAgBuC,GAAmB,OAAO,OAAO,gDAAgD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK/B,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGa,EAAqB,CAAC,UAAU,CAAC,UAAU4G,EAAe,CAAC,CAAC,CAAC,EAAE9D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+B,GAAa,GAAgB/D,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,aAAauC,GAAmB,OAAO,OAAO,kDAAkD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3B,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6F,GAAa,GAAgBW,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,aAAauC,GAAmB,OAAO,OAAO,kDAAkD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKzB,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,aAAauC,GAAmB,OAAO,OAAO,kDAAkD,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKzB,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4F,GAAa,GAAgBU,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,uBAAuB,GAAK,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAC8B,GAAa,GAAgBU,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAcwC,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,GAAGvD,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAMoE,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMC,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMD,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMA,EAAW,CAAC,EAAEtB,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAK2F,EAAS,CAAC,sBAAsB,GAAK,SAAsB3F,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewC,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAAC+B,GAAa,GAAgBpE,EAAKtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,+BAA+B,iBAAiB2E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4F,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBvD,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2f,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEgC,GAAc,GAAgBrE,EAAKtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,iBAAiB2E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4F,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBvD,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA+f,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiC,GAAc,GAAgBtE,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAOuC,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKvB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASa,GAA8B7F,EAAK8E,EAA0B,CAAC,OAAO,GAAG,GAAGhG,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAOuC,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,UAAUwI,EAAgB,CAAC,EAAE,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,UAAU,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAG/G,EAAqB,CAAC,UAAU,CAAC,UAAU+G,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,CAAC,CAAC,EAAEjE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmC,GAAa,GAAgBU,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAcwC,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,GAAGvD,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAMqE,EAAW,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMC,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMA,EAAY,EAAE,UAAU,CAAC,iBAAiB,GAAK,MAAMA,EAAY,CAAC,EAAExB,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAK2F,EAAS,CAAC,sBAAsB,GAAK,SAAsB3F,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAewC,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAACkC,GAAc,GAAgBvE,EAAKtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,+BAA+B,iBAAiB2E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4F,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBvD,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2f,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEmC,GAAc,GAAgBxE,EAAKtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,6BAA6B,iBAAiB2E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4F,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBvD,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA+f,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoC,GAAc,GAAgBzE,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,OAAOuC,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKvB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0F,GAAa,GAAgBnE,EAAKgF,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASc,GAA8B9F,EAAK8E,EAA0B,CAAC,GAAGhG,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAM,OAAOuC,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAOA,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAOA,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,UAAU,CAAC,OAAO,GAAG,MAAM,OAAOA,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAK3C,GAAa,CAAC,UAAU,yBAAyB,OAAO,OAAO,GAAG,YAAY,UAAUyI,EAAgB,CAAC,EAAE,SAAS,YAAY,UAAU,wEAAwE,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,YAAY,QAAQ,YAAY,MAAM,OAAO,UAAU,YAAY,GAAGhH,EAAqB,CAAC,UAAU,CAAC,UAAUgH,EAAgB,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAgB,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAElE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehC,EAAKtC,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,iBAAiB2E,EAAiB,SAAS,qBAAqB,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,QAAQ,uBAAuB,QAAQ,iBAAiB,QAAQ,qBAAqB,MAAM,uBAAuB,GAAG,wBAAwB,EAAE,EAAE,SAAsBwC,EAAMnG,GAA8B,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiB2D,EAAiB,SAAS,YAAY,SAAS,CAAcrC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,GAAGhG,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKzC,GAAY,CAAC,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,6CAA6C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyC,EAAK8E,EAA0B,CAAC,OAAO,GAAG,MAAM,UAAU,GAAGhG,EAAqB,CAAC,UAAU,CAAC,GAAGuC,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,MAAM,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,KAAK,GAAG,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,IAAI,KAAKA,GAAmB,QAAQ,KAAK,GAAG,KAAK,GAAG,EAAE,GAAG,EAAE,IAAI,GAAG,CAAC,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKzC,GAAY,CAAC,UAAU,GAAM,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesH,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB2E,EAAiB,SAAS,YAAY,SAAS,CAAcwC,EAAMnH,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,iBAAiB,GAAK,iBAAiB2E,EAAiB,SAAS,YAAY,MAAMgB,GAAY,MAAM,CAAC,wBAAwB,QAAQ,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,MAAMwE,EAAW,EAAE,UAAU,CAAC,MAAMA,EAAW,EAAE,UAAU,CAAC,MAAMH,EAAW,EAAE,UAAU,CAAC,MAAMG,EAAW,CAAC,EAAE1B,EAAYI,CAAc,EAAE,SAAS,CAAchC,EAAK2F,EAAS,CAAC,sBAAsB,GAAK,SAAsB3F,EAAWE,EAAS,CAAC,SAAsBF,EAAKtC,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAmB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAMnH,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,0BAA0B,iBAAiB2E,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,SAAS,CAACqC,GAAc,GAAgB1E,EAAKtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,+BAA+B,iBAAiB2E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4F,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBvD,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA2f,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAEsC,GAAc,GAAgB3E,EAAKtC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,6BAA6B,iBAAiB2E,EAAiB,SAAS,YAAY,SAAsBrC,EAAK4F,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,qEAAqE,gBAAgB,EAAE,eAAe,EAAE,iBAAiBvD,EAAiB,SAAS,YAAY,IAAI;AAAA;AAAA;AAAA,EAA+f,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsC,GAAc,GAAgB3E,EAAK8E,EAA0B,CAAC,OAAO,IAAI,GAAGhG,EAAqB,CAAC,UAAU,CAAC,MAAM,OAAOuC,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,GAAG,GAAG,EAAE,GAAG,EAAE,EAAE,EAAE,GAAG,CAAC,EAAEO,EAAYI,CAAc,EAAE,SAAsBhC,EAAK+E,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB1C,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKvB,GAAc,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQsH,GAAI,CAAC,kFAAkF,gFAAgF,iRAAiR,sRAAsR,wRAAwR,mYAAmY,8QAA8Q,oRAAoR,oRAAoR,wGAAwG,gVAAgV,oSAAoS,sdAAsd,uRAAuR,mOAAmO,4LAA4L,iSAAiS,kJAAkJ,iSAAiS,0UAA0U,wTAAwT,oOAAoO,mYAAmY,uRAAuR,sWAAsW,6RAA6R,6QAA6Q,2SAA2S,qjBAAqjB,imBAAimB,oFAAoF,uEAAuE,sFAAsF,uFAAuF,sOAAsO,0HAA0H,uHAAuH,oMAAoM,+QAA+Q,sVAAsV,wMAAwM,4YAA4Y,oPAAoP,wMAAwM,8NAA8N,qNAAqN,uHAAuH,GAAeA,GAAI,6JAA6J,yKAAyK,qHAAqH,+bAA+b,EAUj6nEC,GAAgBC,EAAQvF,GAAUqF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,iBAAiB,UAAU,UAAU,WAAW,WAAW,SAAS,gBAAgB,YAAY,aAAa,aAAa,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG/I,GAAkB,GAAGG,GAAkB,GAAGE,GAAiB,GAAGM,GAAgB,GAAGE,GAAmB,GAAGE,GAAiB,GAAGE,GAAiB,GAAGE,GAAgB,GAAGE,GAAiB,GAAGE,GAAmB,GAAG8H,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FramerxFTizX_tI", "withCSS", "Button_Tab_Open_Button_7I3B_default", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerU7JhJu8lf", "withCSS", "FramerU7JhJu8lf", "addFonts", "getFontsFromSharedStyle", "fonts", "useStore", "createStore", "withOpenButton", "Component", "props", "showButton", "setShowButton", "ye", "ue", "getCookie", "name", "a", "email_cookie", "name_cookie", "p", "l", "Button_Tab_Open_Button_7I3B_default", "enabledGestures", "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", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "t_Ndt5NpQ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "Link", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerC302MFFNX", "withCSS", "C302MFFNX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "QSLzwUiJo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "LayoutGroup", "Link", "u", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramercMeq1uN3e", "withCSS", "cMeq1uN3e_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramercvAhiMGn5", "withCSS", "cvAhiMGn5_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "isDisplayed24", "isDisplayed25", "isDisplayed26", "isDisplayed27", "isDisplayed28", "isDisplayed29", "isDisplayed30", "isDisplayed31", "isDisplayed32", "isDisplayed33", "isDisplayed34", "isDisplayed35", "isDisplayed36", "isDisplayed37", "LayoutGroup", "u", "SVG", "css", "FramerDfvdg34Vu", "withCSS", "Dfvdg34Vu_default", "addPropertyControls", "ControlType", "addFonts", "NavtabIconFonts", "getFonts", "Dfvdg34Vu_default", "NavtabIconControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "activeIcon", "height", "id", "idealIcon", "link", "text", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "FieqYQ3fc", "Em1tyUPLv", "warZyLqmk", "fFjvsVge6", "xV1hDWbBj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap7h2pkc", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerdQfkG_AI1", "withCSS", "dQfkG_AI1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "NavDetailsTabFonts", "getFonts", "dQfkG_AI1_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "FramervnXnMXeen", "withCSS", "vnXnMXeen_default", "addPropertyControls", "ControlType", "addFonts", "NavTabsMobileFonts", "getFonts", "vnXnMXeen_default", "NavTabsMobileControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "background", "background2", "height", "hover", "id", "link", "tab", "tap", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "TQuN00Vkw", "Aesh1pgio", "rz6sD63q_", "kmwCzN12b", "zYO3pkm_J", "bQGcMBwCJ", "rrTsFeJM4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1dwcygq", "args", "onMouseEnter15qavo", "onTap1d3n1m1", "onTap611009", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "Link", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "SVG", "css", "Framerlh0Ns4A9p", "withCSS", "lh0Ns4A9p_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText2", "SVG", "Image2", "getLoadingLazyAtYPosition", "css", "FramerNk6xmlvMG", "withCSS", "Nk6xmlvMG_default", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "SVG", "css", "FramerrPmx4HnLB", "withCSS", "rPmx4HnLB_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", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "C9F6t9S9f", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwdfopv", "args", "onTapt9vp58", "scopingClassNames", "cx", "LayoutGroup", "u", "css", "FramerSgZ3ra308", "withCSS", "SgZ3ra308_default", "addPropertyControls", "ControlType", "addFonts", "TeamcampLogoFonts", "getFonts", "rPmx4HnLB_default", "NavBarNavTabFonts", "lh0Ns4A9p_default", "BasicButtonFonts", "BE13NKkqU_default", "MotionDivWithOpenButton11rfidi", "withCodeBoundaryForOverrides", "motion", "withOpenButton", "MenuButtonFonts", "SgZ3ra308_default", "NavDetailsTabFonts", "dQfkG_AI1_default", "ResourceTabFonts", "C302MFFNX_default", "ServicesTabFonts", "cMeq1uN3e_default", "ProductTabFonts", "Nk6xmlvMG_default", "ProductTab2Fonts", "cvAhiMGn5_default", "NavTabsMobileFonts", "vnXnMXeen_default", "MotionDivWithOpenButtonta3wqm", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "Transition", "value", "children", "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", "TQuN00Vkwlh0Ns4A9p", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseLeave1h8urdp", "args", "onMouseEnterldizpl", "Aesh1pgio2v0qmc", "Aesh1pgio18zp575", "Aesh1pgio1lh2yh1", "Aesh1pgio1wjous7", "C9F6t9S9fhq1j6v", "C9F6t9S9fr9r3n3", "onTapwyaj79", "onTaphq1j6v", "onTap1xcmg0h", "onTap611009", "onTaps93wbu", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "RichText2", "SVG", "resolvedLinks10", "resolvedLinks11", "css", "FramerRmTaeeaHX", "withCSS", "RmTaeeaHX_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
