{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/lDdHZNrjwzQznPmx8lPT/3qK1iO2yA2IZwndAm0SO/MarkdownCMS.js", "ssg:https://framerusercontent.com/modules/GYpAq9hRPiTNREwkTXML/5oPQBwPqAlAv1v4KxFcf/aznHdwDt0.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", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";const useStore=createStore({background:\"#f0f0f0\"});export function TableOverride(Component){return props=>{const[store]=useStore();const extractAndFormatTable=React.useCallback(()=>{const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{const codeBlocks=contentDiv.querySelectorAll(\".framer-text.framer-text-module\");codeBlocks.forEach(codeBlock=>{if(codeBlock instanceof HTMLElement){// Get the framer-cb div to access CSS variables\nconst framerCbDiv=codeBlock.querySelector(\".framer-cb\");if(!framerCbDiv)return;// Extract CSS variables from the style attribute\nconst styleAttr=framerCbDiv.getAttribute(\"style\")||\"\";const cssVars={};styleAttr.split(\";\").forEach(pair=>{const[key,value]=pair.split(\":\").map(s=>s.trim());if(key.startsWith(\"--\")){cssVars[key]=value;}});// Determine if we're in light or dark mode\nconst colorScheme=cssVars[\"--cb-color-scheme-dark\"]===\"light\"?\"light\":\"dark\";// Find the div with the border (sp-layout)\nconst borderDiv=codeBlock.querySelector(\".sp-layout\");if(!borderDiv)return;// Extract the border properties and padding from the style attribute\nconst borderStyle=window.getComputedStyle(borderDiv);const borderWidth=borderStyle.borderWidth;const borderColor=borderStyle.borderColor;const borderRadius=borderStyle.borderRadius;const padding=borderStyle.getPropertyValue(\"--cb-padding\")||\"27px\"// Default to 27px if not set\n;// Create an outer container for the border\nconst outerContainer=document.createElement(\"div\");outerContainer.style.cssText=`\n                            border: ${borderWidth} solid ${borderColor};\n                            border-radius: ${borderRadius};\n                            overflow: hidden;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create an inner container for the scrollable content\nconst innerContainer=document.createElement(\"div\");innerContainer.style.cssText=`\n                            overflow: auto;\n                            width: 100%;\n                            height: 100%;\n                        `;// Create the table\nconst table=document.createElement(\"table\");table.style.cssText=`\n                            border-collapse: separate;\n                            border-spacing: 0;\n                            width: 100%;\n                        `;// Convert extracted content to HTML table\nconst codeContent=codeBlock.textContent||\"\";const tableLines=codeContent.split(/\\r?\\n/).filter(line=>line.trim()!==\"\");const tableHtml=tableLines.map((row,index)=>{const cells=row.split(\"|\").map(cell=>cell.trim()).filter(cell=>cell!==\"\");if(index===0){return`<tr>${cells.map((cell,cellIndex)=>`<th${cellIndex===0?' class=\"first-column\"':\"\"}>${cell}</th>`).join(\"\")}</tr>`;}else if(index===1){return\"\"// Skip the separator row\n;}else{while(cells.length<3){cells.push(\"\");}return`<tr>${cells.map((cell,cellIndex)=>`<td${cellIndex===0?' class=\"first-column\"':\"\"}>${cell.replace(/\\<br\\>/g,\"<br>\")}</td>`).join(\"\")}</tr>`;}}).filter(row=>row!==\"\").join(\"\");table.innerHTML=`\n                            <table style=\"width: 100%; border-collapse: separate; border-spacing: 0;\">\n                                ${tableHtml}\n                            </table>\n                        `;// Add styles\nconst style=document.createElement(\"style\");style.textContent=`\n                            table th, table td {\n                                padding: ${padding};\n                                text-align: left;\n                                background-color: ${cssVars[`--cb-colors-surface1-${colorScheme}`]};\n                                border-right: 1px solid ${borderColor};\n                                border-bottom: 1px solid ${borderColor};\n                            }\n                            table th {\n                                font-weight: bold;\n                                color: ${cssVars[`--cb-syntax-color-plain-${colorScheme}`]};\n                                position: sticky;\n                                top: 0;\n                                z-index: 1;\n                            }\n                            .first-column {\n                                white-space: nowrap;\n                                overflow: hidden;\n                                text-overflow: ellipsis;\n                            }\n                            table tr:last-child td {\n                                border-bottom: none;\n                            }\n                            table th:last-child,\n                            table td:last-child {\n                                border-right: none;\n                            }\n                        `;outerContainer.appendChild(style);// Assemble the structure\ninnerContainer.appendChild(table);outerContainer.appendChild(innerContainer);// Replace the content of the code block with the new structure\ncodeBlock.innerHTML=\"\";codeBlock.appendChild(outerContainer);}});});},[store.background]);React.useEffect(()=>{extractAndFormatTable();// Add a MutationObserver to handle dynamic content changes\nconst observer=new MutationObserver(extractAndFormatTable);const contentDivs=document.querySelectorAll('[data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"]');contentDivs.forEach(contentDiv=>{observer.observe(contentDiv,{childList:true,subtree:true});});// Remove white-space: pre-wrap from the Content div\nconst style=document.createElement(\"style\");style.textContent=`\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] {\n                    white-space: normal !important;\n                }\n                [data-framer-name=\"Content\"][data-framer-component-type=\"RichTextContainer\"] > div {\n                    white-space: normal !important;\n                }\n            `;document.head.appendChild(style);return()=>{observer.disconnect();document.head.removeChild(style);};},[extractAndFormatTable]);return /*#__PURE__*/_jsx(Component,{...props});};}\nexport const __FramerMetadata__ = {\"exports\":{\"TableOverride\":{\"type\":\"reactHoc\",\"name\":\"TableOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MarkdownCMS.map", "// Generated by Framer (92d6359)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Footer from\"#framer/local/canvasComponent/haBKlV_Pi/haBKlV_Pi.js\";import TopNav from\"#framer/local/canvasComponent/iKNngsGGb/iKNngsGGb.js\";import OverlayFocus from\"#framer/local/canvasComponent/KDlYGGfZl/KDlYGGfZl.js\";import SectionCTA from\"#framer/local/canvasComponent/kM8xmhY60/kM8xmhY60.js\";import FadedTiles from\"#framer/local/canvasComponent/nH9T6qAE3/nH9T6qAE3.js\";import HaloBG from\"#framer/local/canvasComponent/QPjuUg4MG/QPjuUg4MG.js\";import{TableOverride}from\"#framer/local/codeFile/TNFdxU1/MarkdownCMS.js\";import{withTextBalancer}from\"#framer/local/codeFile/WkcmVKV/Text_Balancer.js\";import Resources from\"#framer/local/collection/eCE3v8oUs/eCE3v8oUs.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/a7CqbQ0yp/a7CqbQ0yp.js\";import*as sharedStyle3 from\"#framer/local/css/aAlcZKmEZ/aAlcZKmEZ.js\";import*as sharedStyle1 from\"#framer/local/css/GFqP6IRX3/GFqP6IRX3.js\";import*as sharedStyle6 from\"#framer/local/css/hFQCNGXlN/hFQCNGXlN.js\";import*as sharedStyle from\"#framer/local/css/Q7PRL0Zrx/Q7PRL0Zrx.js\";import*as sharedStyle4 from\"#framer/local/css/TYQOeqQ7t/TYQOeqQ7t.js\";import*as sharedStyle7 from\"#framer/local/css/U_LWC9Ypz/U_LWC9Ypz.js\";import*as sharedStyle8 from\"#framer/local/css/XkGF0bErg/XkGF0bErg.js\";import*as sharedStyle5 from\"#framer/local/css/YGdnMiSa9/YGdnMiSa9.js\";import metadataProvider from\"#framer/local/webPageMetadata/aznHdwDt0/aznHdwDt0.js\";const TopNavFonts=getFonts(TopNav);const TopNavWithVariantAppearEffect=withVariantAppearEffect(TopNav);const HaloBGFonts=getFonts(HaloBG);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const FadedTilesFonts=getFonts(FadedTiles);const RichTextWithTextBalancer=withTextBalancer(RichText);const OverlayFocusFonts=getFonts(OverlayFocus);const RichTextTableOverride=TableOverride(RichText);const SectionCTAFonts=getFonts(SectionCTA);const FooterFonts=getFonts(Footer);const breakpoints={bGlRsaE1J:\"(min-width: 1440px)\",EYcqygm1b:\"(min-width: 1200px) and (max-width: 1439px)\",mwC342DJ_:\"(min-width: 810px) and (max-width: 1199px)\",QPdlfNYDQ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XtKwC\";const variantClassNames={bGlRsaE1J:\"framer-v-12i5wa6\",EYcqygm1b:\"framer-v-1rc3col\",mwC342DJ_:\"framer-v-jueuqi\",QPdlfNYDQ:\"framer-v-pgxg8\"};const transition1={damping:54,delay:0,mass:1,stiffness:77,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const negate=value=>{return!value;};const metadata=metadataProvider();const humanReadableVariantMap={\"Large Desktop\":\"bGlRsaE1J\",Desktop:\"EYcqygm1b\",Phone:\"QPdlfNYDQ\",Tablet:\"mwC342DJ_\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"EYcqygm1b\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"aznHdwDt0\",data:Resources,type:\"Collection\"},select:[{collection:\"aznHdwDt0\",name:\"a8t126svZ\",type:\"Identifier\"},{collection:\"aznHdwDt0\",name:\"eALsKoUzW\",type:\"Identifier\"},{collection:\"aznHdwDt0\",name:\"viCJavmvf\",type:\"Identifier\"},{collection:\"aznHdwDt0\",name:\"kmjo9M8va\",type:\"Identifier\"},{collection:\"aznHdwDt0\",name:\"gZEM1UZyH\",type:\"Identifier\"},{collection:\"aznHdwDt0\",name:\"s7B_Yl0OO\",type:\"Identifier\"},{collection:\"aznHdwDt0\",name:\"tUtnL2vAv\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"aznHdwDt0\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};var _getFromCurrentRouteData,_getFromCurrentRouteData1,_getFromCurrentRouteData2;const{style,className,layoutId,variant,a8t126svZ=(_getFromCurrentRouteData=getFromCurrentRouteData(\"a8t126svZ\"))!==null&&_getFromCurrentRouteData!==void 0?_getFromCurrentRouteData:\"\",gZEM1UZyH=(_getFromCurrentRouteData1=getFromCurrentRouteData(\"gZEM1UZyH\"))!==null&&_getFromCurrentRouteData1!==void 0?_getFromCurrentRouteData1:true,viCJavmvf=getFromCurrentRouteData(\"viCJavmvf\"),kmjo9M8va=getFromCurrentRouteData(\"kmjo9M8va\"),tUtnL2vAv=(_getFromCurrentRouteData2=getFromCurrentRouteData(\"tUtnL2vAv\"))!==null&&_getFromCurrentRouteData2!==void 0?_getFromCurrentRouteData2:\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-XtKwC`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-XtKwC`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"JUd8MGgXZ\");const activeLocaleCode=useLocaleCode();const textContent=toDateString(viCJavmvf,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const visible=negate(gZEM1UZyH);const textContent1=toDateString(kmjo9M8va,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);const elementId1=useRouteElementId(\"FPYStajdI\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"EYcqygm1b\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rc3col\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bGlRsaE1J:{width:\"1024px\"},mwC342DJ_:{width:\"734px\"},QPdlfNYDQ:{width:\"344px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"960px\",y:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o206vb-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mwC342DJ_:{__framer__variantAppearEffectEnabled:undefined,variant:\"KAjKALeoq\"},QPdlfNYDQ:{__framer__variantAppearEffectEnabled:undefined,variant:\"KAjKALeoq\"}},children:/*#__PURE__*/_jsx(TopNavWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"JcmXHWLIO\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"IXzd7b8br\",layoutId:\"IXzd7b8br\",style:{height:\"100%\",width:\"100%\"},variant:\"AebFAT4GH\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u9au83\",\"data-framer-name\":\"Main Wrapper\",name:\"Main Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:833,width:\"calc(100vw + 713px)\",y:0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1bzz423-container\",\"data-framer-appear-id\":\"1bzz423\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(HaloBG,{height:\"100%\",id:\"b7f2DFqo0\",layoutId:\"b7f2DFqo0\",style:{height:\"100%\",width:\"100%\"},U196CXoBe:false,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:381,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fix7xe-container\",children:/*#__PURE__*/_jsx(FadedTiles,{height:\"100%\",id:\"O3fcQPYKB\",layoutId:\"O3fcQPYKB\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w0tof2\",\"data-framer-name\":\"Section Header\",id:elementId,name:\"Section Header\",ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-15uwf6e\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-np1ejs\",\"data-framer-name\":\"Page Header\",name:\"Page Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-nt7au5\",\"data-styles-preset\":\"Q7PRL0Zrx\",style:{\"--framer-text-alignment\":\"center\"},children:\"Pricing\"})}),className:\"framer-1bindph\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",text:a8t126svZ,verticalAlignment:\"center\",withExternalLayout:true}),gZEM1UZyH&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7e7i8p\",\"data-framer-name\":\"Effective Date\",name:\"Effective Date\",children:[/*#__PURE__*/_jsx(RichTextWithTextBalancer,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-151bnj6\",\"data-styles-preset\":\"GFqP6IRX3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Effective date:\"})}),className:\"framer-588zmk\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithTextBalancer,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-151bnj6\",\"data-styles-preset\":\"GFqP6IRX3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Simple and flexible pricing that scales with your business.\"})}),className:\"framer-x7jqpe\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",text:textContent,verticalAlignment:\"center\",withExternalLayout:true})]}),visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yfxr60\",\"data-framer-name\":\"Last Update Date\",name:\"Last Update Date\",children:[/*#__PURE__*/_jsx(RichTextWithTextBalancer,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-151bnj6\",\"data-styles-preset\":\"GFqP6IRX3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Last updated:\"})}),className:\"framer-rud6p0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithTextBalancer,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-151bnj6\",\"data-styles-preset\":\"GFqP6IRX3\",style:{\"--framer-text-alignment\":\"center\"},children:\"Simple and flexible pricing that scales with your business.\"})}),className:\"framer-1it4ge0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],name:\"Description\",text:textContent1,verticalAlignment:\"center\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ex9v5b\",\"data-framer-name\":\"Section\",id:elementId1,name:\"Section\",ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-r14410\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nd9d85\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QPdlfNYDQ:{height:144,width:\"min(100vw - 48px, 1024px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:176,width:\"min(100vw - 80px, 1024px)\",y:335.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uvv9tk-container\",children:/*#__PURE__*/_jsx(OverlayFocus,{height:\"100%\",HojKHKEw_:false,id:\"Kzp2AoJsI\",layoutId:\"Kzp2AoJsI\",NKXr9M3kD:false,oSGGCnTc4:1,style:{height:\"100%\",width:\"100%\"},tKriom_Fu:\"var(--token-ff41039a-fc8f-4fa0-b258-48803a6f456b, rgb(147, 242, 255))\",variant:\"Sdd0TLV5u\",width:\"100%\",XX7hlNFmX:\"kVrdu1E56\"})})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"X0h8XUMSq\"]},children:/*#__PURE__*/_jsx(RichTextTableOverride,{__fromCanvasComponent:true,children:tUtnL2vAv,className:\"framer-1nyvraw\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-1103usn\",h1:\"framer-styles-preset-ak4su2\",h2:\"framer-styles-preset-nt7au5\",h3:\"framer-styles-preset-11fi7a6\",h4:\"framer-styles-preset-j3631b\",h5:\"framer-styles-preset-hdfsi0\",h6:\"framer-styles-preset-1d5fh9v\",p:\"framer-styles-preset-dt4ooc\"},verticalAlignment:\"top\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ilci0\",\"data-framer-name\":\"Section CTA\",name:\"Section CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wk7d77\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QPdlfNYDQ:{y:529.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:466,width:\"max(min(max(100vw - 80px, 1px), 1024px), 1px)\",y:561.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ya48nm-container\",children:/*#__PURE__*/_jsx(SectionCTA,{height:\"100%\",id:\"CgBM5wEEU\",layoutId:\"CgBM5wEEU\",style:{width:\"100%\"},variant:\"z5KtEAiq6\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{QPdlfNYDQ:{y:1045.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"100vw\",y:1077.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ggcfcd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mwC342DJ_:{variant:\"j0eLjQ2rF\"},QPdlfNYDQ:{variant:\"kuBd4_pow\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"AR9GECO7z\",layoutId:\"AR9GECO7z\",style:{width:\"100%\"},variant:\"brUgyJGMa\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-XtKwC { background: var(--token-9e7a7799-fe4c-42ca-a542-9749d4b91179, rgb(8, 8, 38)) /* {\"name\":\"Background\"} */; }`,\".framer-XtKwC.framer-164g9rq, .framer-XtKwC .framer-164g9rq { display: block; }\",\".framer-XtKwC.framer-1rc3col { align-content: center; align-items: center; background-color: var(--token-9e7a7799-fe4c-42ca-a542-9749d4b91179, #080826); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-XtKwC .framer-1o206vb-container { flex: none; height: 56px; left: calc(50.00000000000002% - 960px / 2); position: fixed; top: 48px; width: 960px; z-index: 5; }\",\".framer-XtKwC .framer-1u9au83 { 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-XtKwC .framer-1bzz423-container { flex: none; height: 833px; left: -356px; position: absolute; right: -356px; top: 0px; z-index: 0; }\",\".framer-XtKwC .framer-1fix7xe-container { flex: none; height: auto; left: 50%; opacity: 0.6; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 0; }\",\".framer-XtKwC .framer-1w0tof2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 40px 32px 40px; position: relative; width: 100%; }\",\".framer-XtKwC .framer-15uwf6e, .framer-XtKwC .framer-r14410 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XtKwC .framer-np1ejs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 500px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-XtKwC .framer-1bindph { flex: none; height: auto; position: relative; text-shadow: 0px 0px 8px rgba(255, 255, 255, 0.15); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XtKwC .framer-7e7i8p, .framer-XtKwC .framer-1yfxr60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XtKwC .framer-588zmk, .framer-XtKwC .framer-x7jqpe, .framer-XtKwC .framer-rud6p0, .framer-XtKwC .framer-1it4ge0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XtKwC .framer-ex9v5b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 32px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-XtKwC .framer-nd9d85 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-XtKwC .framer-uvv9tk-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-XtKwC .framer-1nyvraw { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-XtKwC .framer-3ilci0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 50px 40px 50px 40px; position: relative; width: 100%; }\",\".framer-XtKwC .framer-wk7d77 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1024px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-XtKwC .framer-1ya48nm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-XtKwC .framer-1ggcfcd-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-XtKwC.framer-1rc3col, .framer-XtKwC .framer-1u9au83, .framer-XtKwC .framer-1w0tof2, .framer-XtKwC .framer-15uwf6e, .framer-XtKwC .framer-np1ejs, .framer-XtKwC .framer-7e7i8p, .framer-XtKwC .framer-1yfxr60, .framer-XtKwC .framer-ex9v5b, .framer-XtKwC .framer-r14410, .framer-XtKwC .framer-nd9d85, .framer-XtKwC .framer-3ilci0, .framer-XtKwC .framer-wk7d77 { gap: 0px; } .framer-XtKwC.framer-1rc3col > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-XtKwC.framer-1rc3col > :first-child, .framer-XtKwC .framer-1u9au83 > :first-child, .framer-XtKwC .framer-1w0tof2 > :first-child, .framer-XtKwC .framer-15uwf6e > :first-child, .framer-XtKwC .framer-np1ejs > :first-child, .framer-XtKwC .framer-ex9v5b > :first-child, .framer-XtKwC .framer-r14410 > :first-child { margin-top: 0px; } .framer-XtKwC.framer-1rc3col > :last-child, .framer-XtKwC .framer-1u9au83 > :last-child, .framer-XtKwC .framer-1w0tof2 > :last-child, .framer-XtKwC .framer-15uwf6e > :last-child, .framer-XtKwC .framer-np1ejs > :last-child, .framer-XtKwC .framer-ex9v5b > :last-child, .framer-XtKwC .framer-r14410 > :last-child { margin-bottom: 0px; } .framer-XtKwC .framer-1u9au83 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-XtKwC .framer-1w0tof2 > *, .framer-XtKwC .framer-ex9v5b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XtKwC .framer-15uwf6e > *, .framer-XtKwC .framer-r14410 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-XtKwC .framer-np1ejs > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-XtKwC .framer-7e7i8p > *, .framer-XtKwC .framer-1yfxr60 > *, .framer-XtKwC .framer-nd9d85 > *, .framer-XtKwC .framer-3ilci0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-XtKwC .framer-7e7i8p > :first-child, .framer-XtKwC .framer-1yfxr60 > :first-child, .framer-XtKwC .framer-nd9d85 > :first-child, .framer-XtKwC .framer-3ilci0 > :first-child, .framer-XtKwC .framer-wk7d77 > :first-child { margin-left: 0px; } .framer-XtKwC .framer-7e7i8p > :last-child, .framer-XtKwC .framer-1yfxr60 > :last-child, .framer-XtKwC .framer-nd9d85 > :last-child, .framer-XtKwC .framer-3ilci0 > :last-child, .framer-XtKwC .framer-wk7d77 > :last-child { margin-right: 0px; } .framer-XtKwC .framer-wk7d77 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",`@media (min-width: 1440px) { .${metadata.bodyClassName}-framer-XtKwC { background: var(--token-9e7a7799-fe4c-42ca-a542-9749d4b91179, rgb(8, 8, 38)) /* {\"name\":\"Background\"} */; } .framer-XtKwC.framer-1rc3col { width: 1440px; } .framer-XtKwC .framer-1o206vb-container { left: calc(50.00000000000002% - 1024px / 2); width: 1024px; }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-XtKwC { background: var(--token-9e7a7799-fe4c-42ca-a542-9749d4b91179, rgb(8, 8, 38)) /* {\"name\":\"Background\"} */; } .framer-XtKwC.framer-1rc3col { width: 810px; } .framer-XtKwC .framer-1o206vb-container { left: calc(49.7530864197531% - 734px / 2); width: 734px; }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-XtKwC { background: var(--token-9e7a7799-fe4c-42ca-a542-9749d4b91179, rgb(8, 8, 38)) /* {\"name\":\"Background\"} */; } .framer-XtKwC.framer-1rc3col { width: 390px; } .framer-XtKwC .framer-1o206vb-container { left: calc(49.743589743589766% - 344px / 2); width: 344px; } .framer-XtKwC .framer-ex9v5b { padding: 32px 24px 0px 24px; } .framer-XtKwC .framer-nd9d85 { padding: 24px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2357\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bGlRsaE1J\":{\"layout\":[\"fixed\",\"auto\"]},\"mwC342DJ_\":{\"layout\":[\"fixed\",\"auto\"]},\"QPdlfNYDQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraznHdwDt0=withCSS(Component,css,\"framer-XtKwC\");export default FrameraznHdwDt0;FrameraznHdwDt0.displayName=\"Resources\";FrameraznHdwDt0.defaultProps={height:2357,width:1200};addFonts(FrameraznHdwDt0,[{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\"}]},...TopNavFonts,...HaloBGFonts,...FadedTilesFonts,...OverlayFocusFonts,...SectionCTAFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"X0h8XUMSq\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"X0h8XUMSq\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraznHdwDt0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"2357\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bGlRsaE1J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mwC342DJ_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QPdlfNYDQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "TableOverride", "Component", "props", "store", "extractAndFormatTable", "te", "contentDiv", "codeBlock", "framerCbDiv", "styleAttr", "cssVars", "pair", "key", "value", "s", "colorScheme", "borderDiv", "borderStyle", "window", "borderWidth", "borderColor", "borderRadius", "padding", "outerContainer", "innerContainer", "table", "tableHtml", "line", "row", "index", "cells", "cell", "cellIndex", "style", "ue", "observer", "p", "_componentPresets_fonts", "_componentPresets_fonts1", "TopNavFonts", "getFonts", "iKNngsGGb_default", "TopNavWithVariantAppearEffect", "withVariantAppearEffect", "HaloBGFonts", "QPjuUg4MG_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "FadedTilesFonts", "nH9T6qAE3_default", "RichTextWithTextBalancer", "withTextBalancer", "RichText2", "OverlayFocusFonts", "KDlYGGfZl_default", "RichTextTableOverride", "TableOverride", "SectionCTAFonts", "kM8xmhY60_default", "FooterFonts", "haBKlV_Pi_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "toDateString", "value", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "negate", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "eCE3v8oUs_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "_getFromCurrentRouteData", "_getFromCurrentRouteData1", "_getFromCurrentRouteData2", "style", "className", "layoutId", "variant", "a8t126svZ", "gZEM1UZyH", "viCJavmvf", "kmjo9M8va", "tUtnL2vAv", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "ref2", "elementId", "useRouteElementId", "activeLocaleCode", "useLocaleCode", "textContent", "visible", "textContent1", "elementId1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "TopNavWithVariantAppearEffect", "ContainerWithOptimizedAppearEffect", "QPjuUg4MG_default", "nH9T6qAE3_default", "RichText2", "x", "RichTextWithTextBalancer", "KDlYGGfZl_default", "ComponentPresetsProvider", "RichTextTableOverride", "kM8xmhY60_default", "haBKlV_Pi_default", "css", "FrameraznHdwDt0", "withCSS", "aznHdwDt0_default", "addFonts", "TopNavFonts", "HaloBGFonts", "FadedTilesFonts", "OverlayFocusFonts", "SectionCTAFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "_componentPresets_fonts", "getFontsFromComponentPreset", "_componentPresets_fonts1", "__FramerMetadata__"]
}
