{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/a990kYWlwyi8XjAsBRY2/AUWpBIsST6NAhuszCjSp/TableOfContent.js", "ssg:https://framerusercontent.com/modules/YVfPYfE2qAT9XPboTMVm/RCUTepVpihuvvsmIqP7i/jm68MR2LW.js", "ssg:https://framerusercontent.com/modules/y9KNcbXkS6tErHzdrhTR/ZuWQJKRQSlSQbbMX27HW/GnA2ngjEL.js", "ssg:https://framerusercontent.com/modules/9eUa9UHDgCUQriqJEBpg/sdZYSHxPWPOpfQ26e9nZ/S7HiOsN6D.js", "ssg:https://framerusercontent.com/modules/Cyw56HvsjZ2Y6BYUVBHG/d9BxQjfGsRpxIkHVvApr/X8W8JPf2f-0.js", "ssg:https://framerusercontent.com/modules/Cyw56HvsjZ2Y6BYUVBHG/d9BxQjfGsRpxIkHVvApr/X8W8JPf2f-1.js", "ssg:https://framerusercontent.com/modules/Cyw56HvsjZ2Y6BYUVBHG/d9BxQjfGsRpxIkHVvApr/X8W8JPf2f.js", "ssg:https://framerusercontent.com/modules/nWB4bt9QOJpbwwJ1jDcU/hNXB2xfEcS1mVDG8ESNS/X8W8JPf2f.js", "ssg:https://framerusercontent.com/modules/IKUKNoW1vvQB2s5VdaoO/GLO4lFvmYC4UDMTqvmZ6/kWqqdLxIs.js", "ssg:https://framerusercontent.com/modules/gx2s7dQMpRdgtX97h9UD/LUy8SZft9rdVbvmHCq6U/kWqqdLxIs.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";// Made with love by Cl\u00E9ment. https://lionneclement.com/\n// Full tutorial: https://lionneclement.com/tutorial/how-to-create-table-of-contents-cms-collections-framer\n//UPDATE:\n//This is a modified version in collaboration with Tay Rush. https://twitter.com/taylorrushmore\n// https://www.youtube.com/@taylorrushmore/\nconst HEADING_TO_DISPLAY=[\"h2\"];const SCROLL_MARGIN_TOP=80;const useStore=createStore({headings:[]});export function withTableOfContent(Component){return props=>{const[store]=useStore();const[activeSection,setActiveSection]=useState(\"\");const scrollToId=id=>{const element=document.getElementById(id);if(element){element.scrollIntoView({behavior:\"smooth\"});}};useEffect(()=>{const handleScroll=()=>{const sections=store.headings.map(heading=>document.getElementById(heading.id));const scrollPosition=window.scrollY-80;for(let i=sections.length-1;i>=0;i--){if(sections[i].offsetTop<=scrollPosition){setActiveSection(store.headings[i].id);break;}}};window.addEventListener(\"scroll\",handleScroll);return()=>{window.removeEventListener(\"scroll\",handleScroll);};},[store.headings]);return /*#__PURE__*/_jsx(_Fragment,{children:store.headings.length>0&&window?store.headings.sort((a,b)=>a.originalIndex-b.originalIndex).filter(({type})=>HEADING_TO_DISPLAY.includes(type)).map(({id,heading,type},index)=>/*#__PURE__*/_jsx(Component,{...props,variant:activeSection===id?`${type}-active`:type,title:heading,onClick:()=>scrollToId(id)})):/*#__PURE__*/_jsx(Component,{...props})});};}export function withContent(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);useEffect(()=>{setStore({headings:formatTableOfContent(newProps.children.props.children)});},[newProps]);useEffect(()=>{const formatHeadings=()=>{const newChildren=[];props.children.props.children.length>0&&props.children.props.children.forEach((item,index)=>{const children=item.props.children;if([\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(item.type)){const{formattedId}=formatHeading(children,index);// Create a new object for the modified item\nconst newItem={...item,props:{...item.props,id:formattedId}};newChildren.push(newItem);}else{newChildren.push(item);}});// Return a new props object with the modified children\nreturn{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text {\n                    scroll-margin-top: ${SCROLL_MARGIN_TOP}px;\n                }`}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}const formatTableOfContent=children=>{const result=[];children.length>0&&children.filter(({type})=>[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(type)).map((item,index)=>{const children=item.props.children;const{formattedId,formattedHeading}=formatHeading(children,index);result.push({id:formattedId,heading:formattedHeading,type:item.type,originalIndex:index});});return result;};const formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children;}else if(Array.isArray(children)){formattedHeading=children.map(item=>{console.log(\"item\",item);if(typeof item===\"string\")return item.trim();if(item.type===\"br\")return\"\";return item.props.children.trim();}).join(\" \");}else if(typeof children===\"object\"){if(typeof children.props.children===\"string\"){formattedHeading=children.props.children;}}else{formattedHeading=index.toString();}formattedId=formattedHeading.trim().toLowerCase().replace(/[^a-z]+/g,\"-\").replace(/^-+|-+$/g,\"\");return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "// Generated by Framer (9f55354)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,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/y9KNcbXkS6tErHzdrhTR/ZuWQJKRQSlSQbbMX27HW/GnA2ngjEL.js\";const enabledGestures={NVm4L1Csb:{hover:true}};const cycleOrder=[\"NVm4L1Csb\",\"muAkj1Qlu\"];const serializationHash=\"framer-9HRNE\";const variantClassNames={muAkj1Qlu:\"framer-v-ys5op2\",NVm4L1Csb:\"framer-v-1enk00n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,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={\"h2-active\":\"muAkj1Qlu\",h2:\"NVm4L1Csb\"};const getProps=({height,id,title,width,...props})=>{return{...props,ddjbCr1Nk:title??props.ddjbCr1Nk??\"Label\",variant:humanReadableVariantMap[props.variant]??props.variant??\"NVm4L1Csb\"};};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,ddjbCr1Nk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NVm4L1Csb\",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-1enk00n\",className,classNames),\"data-framer-name\":\"h2\",layoutDependency:layoutDependency,layoutId:\"NVm4L1Csb\",ref:ref??ref1,style:{...style},...addPropertyOverrides({\"NVm4L1Csb-hover\":{\"data-framer-name\":undefined},muAkj1Qlu:{\"data-framer-name\":\"h2-active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19imypf\",\"data-styles-preset\":\"GnA2ngjEL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-168e3805-c7ee-4253-8641-c77c1cdd1dc4, rgba(29, 30, 32, 0.6)))\"},children:\"Label\"})}),className:\"framer-wn8f5t\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"W2hZjDs0B\",style:{\"--extracted-r6o4lv\":\"var(--token-168e3805-c7ee-4253-8641-c77c1cdd1dc4, rgba(29, 30, 32, 0.6))\"},text:ddjbCr1Nk,variants:{\"NVm4L1Csb-hover\":{\"--extracted-r6o4lv\":\"var(--token-2a680c9a-4e39-4faf-a979-408e1697909f, rgb(29, 30, 32))\"},muAkj1Qlu:{\"--extracted-r6o4lv\":\"var(--token-2a680c9a-4e39-4faf-a979-408e1697909f, rgb(29, 30, 32))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"NVm4L1Csb-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19imypf\",\"data-styles-preset\":\"GnA2ngjEL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a680c9a-4e39-4faf-a979-408e1697909f, rgb(29, 30, 32)))\"},children:\"Label\"})})},muAkj1Qlu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-19imypf\",\"data-styles-preset\":\"GnA2ngjEL\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-2a680c9a-4e39-4faf-a979-408e1697909f, rgb(29, 30, 32)))\"},children:\"Label\"})})}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9HRNE.framer-ehkta0, .framer-9HRNE .framer-ehkta0 { display: block; }\",\".framer-9HRNE.framer-1enk00n { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: 256px; }\",\".framer-9HRNE .framer-wn8f5t { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9HRNE.framer-1enk00n { gap: 0px; } .framer-9HRNE.framer-1enk00n > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-9HRNE.framer-1enk00n > :first-child { margin-left: 0px; } .framer-9HRNE.framer-1enk00n > :last-child { margin-right: 0px; } }\",\".framer-9HRNE.framer-v-ys5op2.framer-1enk00n { cursor: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"muAkj1Qlu\":{\"layout\":[\"fixed\",\"auto\"]},\"BeqXaOYPK\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ddjbCr1Nk\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerjm68MR2LW=withCSS(Component,css,\"framer-9HRNE\");export default Framerjm68MR2LW;Framerjm68MR2LW.displayName=\"table content item\";Framerjm68MR2LW.defaultProps={height:32,width:256};addPropertyControls(Framerjm68MR2LW,{variant:{options:[\"NVm4L1Csb\",\"muAkj1Qlu\"],optionTitles:[\"h2\",\"h2-active\"],title:\"Variant\",type:ControlType.Enum},ddjbCr1Nk:{defaultValue:\"Label\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Framerjm68MR2LW,[{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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerjm68MR2LW\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ddjbCr1Nk\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"muAkj1Qlu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BeqXaOYPK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"256\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jm68MR2LW.map", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"Inter-SemiBold\"]);export const fonts=[];export const css=['.framer-kIkur .framer-styles-preset-19imypf:not(.rich-text-wrapper), .framer-kIkur .framer-styles-preset-19imypf.rich-text-wrapper p { --framer-font-family: \"Inter-SemiBold\", \"Inter\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0em; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-2a680c9a-4e39-4faf-a979-408e1697909f, #1d1e20); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-kIkur\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f55354)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withTableOfContent}from\"https://framerusercontent.com/modules/a990kYWlwyi8XjAsBRY2/AUWpBIsST6NAhuszCjSp/TableOfContent.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7woMEtTpjeA1cPELE5QI/KxuY8hEPfGe3cjk1OZKu/n2eyS4R0t.js\";import TableContentItem,*as TableContentItemInfo from\"https://framerusercontent.com/modules/YVfPYfE2qAT9XPboTMVm/RCUTepVpihuvvsmIqP7i/jm68MR2LW.js\";const TableContentItemFonts=getFonts(TableContentItem);const TableContentItemWithTableOfContentWithMappedReactProps9ia95q=withMappedReactProps(withTableOfContent(TableContentItem),TableContentItemInfo);const serializationHash=\"framer-hrINN\";const variantClassNames={JPkqPgKPv:\"framer-v-1w3hiig\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({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:\"JPkqPgKPv\",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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1w3hiig\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"JPkqPgKPv\",ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cgjzf9\",\"data-styles-preset\":\"n2eyS4R0t\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-168e3805-c7ee-4253-8641-c77c1cdd1dc4, rgba(29, 30, 32, 0.6)))\"},children:\"On this page\"})}),className:\"framer-i0t2bc\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CyAtRdYxF\",style:{\"--extracted-r6o4lv\":\"var(--token-168e3805-c7ee-4253-8641-c77c1cdd1dc4, rgba(29, 30, 32, 0.6))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`calc(${componentViewport?.width||\"100vw\"} - 16px)`,y:(componentViewport?.y||0)+0+108,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sd1tf5-container\",layoutDependency:layoutDependency,layoutId:\"uJkfg9voy-container\",children:/*#__PURE__*/_jsx(TableContentItemWithTableOfContentWithMappedReactProps9ia95q,{ddjbCr1Nk:\"Label\",height:\"100%\",id:\"uJkfg9voy\",layoutId:\"uJkfg9voy\",style:{width:\"100%\"},variant:\"NVm4L1Csb\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hrINN.framer-3hcj8e, .framer-hrINN .framer-3hcj8e { display: block; }\",\".framer-hrINN.framer-1w3hiig { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 0px; position: relative; width: 280px; }\",\".framer-hrINN .framer-i0t2bc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hrINN .framer-1sd1tf5-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hrINN.framer-1w3hiig { gap: 0px; } .framer-hrINN.framer-1w3hiig > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-hrINN.framer-1w3hiig > :first-child { margin-top: 0px; } .framer-hrINN.framer-1w3hiig > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerS7HiOsN6D=withCSS(Component,css,\"framer-hrINN\");export default FramerS7HiOsN6D;FramerS7HiOsN6D.displayName=\"table content\";FramerS7HiOsN6D.defaultProps={height:60,width:280};addFonts(FramerS7HiOsN6D,[{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\"}]},...TableContentItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS7HiOsN6D\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"280\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"60\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kf8y1e\",\"data-styles-preset\":\"OLy0GQdz3\",children:\"\\xcdndice de Contenidos\"})});\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kf8y1e\",\"data-styles-preset\":\"OLy0GQdz3\",children:\"\\xcdndice\"})});export const v1=\"Casa\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (189896a)\nimport*as localizedValues from\"./X8W8JPf2f-0.js\";import*as localizedValues1 from\"./X8W8JPf2f-1.js\";const valuesByLocaleId={dLs_F6VoS:localizedValues,l9KXIXYt2:localizedValues1};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/krFritQjW2T8hy06ucja/HqG2EOYadX8Cys3fmWS0/OLy0GQdz3.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/Cyw56HvsjZ2Y6BYUVBHG/d9BxQjfGsRpxIkHVvApr/X8W8JPf2f.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={NgBy0eaPB:{hover:true}};const serializationHash=\"framer-CVFtd\";const variantClassNames={NgBy0eaPB:\"framer-v-sk526d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({click,height,id,width,...props})=>{return{...props,GQkQRm7eV:click??props.GQkQRm7eV};};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,GQkQRm7eV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NgBy0eaPB\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap11ae2xw=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GQkQRm7eV){const res=await GQkQRm7eV(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-sk526d\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NgBy0eaPB\",onTap:onTap11ae2xw,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-78ffa2f5-197a-41f8-bec9-bf4b42ddf843, rgba(15, 15, 16, 0.2))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({\"NgBy0eaPB-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1kf8y1e\",\"data-styles-preset\":\"OLy0GQdz3\",children:\"Table of Content\"})}),className:\"framer-1ugmvw5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rtkPkMAJL\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bgl23g-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"W2_NH4w3T-container\",nodeId:\"W2_NH4w3T\",rendersWithMotion:true,scopeId:\"X8W8JPf2f\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-65ab6ea0-6380-4348-bb55-38349ceeb7b5, rgba(15, 15, 16, 0.76))\",height:\"100%\",iconSearch:getLocalizedValue(\"v1\",activeLocale)??\"House\",iconSelection:\"CaretDown\",id:\"W2_NH4w3T\",layoutId:\"W2_NH4w3T\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-CVFtd.framer-xm8acm, .framer-CVFtd .framer-xm8acm { display: block; }\",\".framer-CVFtd.framer-sk526d { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 494px; will-change: var(--framer-will-change-override, transform); }\",\".framer-CVFtd .framer-1ugmvw5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-CVFtd .framer-bgl23g-container { flex: none; height: 16px; position: relative; width: 16px; }\",...sharedStyle.css,'.framer-CVFtd[data-border=\"true\"]::after, .framer-CVFtd [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 43\n * @framerIntrinsicWidth 494\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"O63VDnmBv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"GQkQRm7eV\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerX8W8JPf2f=withCSS(Component,css,\"framer-CVFtd\");export default FramerX8W8JPf2f;FramerX8W8JPf2f.displayName=\"table content dropdown\";FramerX8W8JPf2f.defaultProps={height:43,width:494};addPropertyControls(FramerX8W8JPf2f,{GQkQRm7eV:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerX8W8JPf2f,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX8W8JPf2f\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"43\",\"framerVariables\":\"{\\\"GQkQRm7eV\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O63VDnmBv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"494\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (189896a)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={l9KXIXYt2:new LazyValue(()=>import(\"./kWqqdLxIs-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (189896a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import TableContent from\"https://framerusercontent.com/modules/9eUa9UHDgCUQriqJEBpg/sdZYSHxPWPOpfQ26e9nZ/S7HiOsN6D.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Footer2 from\"#framer/local/canvasComponent/by3xhIpB9/by3xhIpB9.js\";import NexusSideNavigation from\"#framer/local/canvasComponent/f02s8R7Hr/f02s8R7Hr.js\";import MainNavigation2 from\"#framer/local/canvasComponent/jegsdTor0/jegsdTor0.js\";import Background from\"#framer/local/canvasComponent/lBWk0nfHo/lBWk0nfHo.js\";import DocsNavigationNext from\"#framer/local/canvasComponent/mdyhxfDyK/mdyhxfDyK.js\";import DocsNavigationPrev from\"#framer/local/canvasComponent/SWditHXQe/SWditHXQe.js\";import TableContentDropdown from\"#framer/local/canvasComponent/X8W8JPf2f/X8W8JPf2f.js\";import{withContent}from\"#framer/local/codeFile/qUKSiTf/TableOfContent.js\";import NexusCategories from\"#framer/local/collection/k9ab_RTpu/k9ab_RTpu.js\";import NexusDocs from\"#framer/local/collection/LDVrVxSwA/LDVrVxSwA.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/dZgMIcOW8/dZgMIcOW8.js\";import*as sharedStyle7 from\"#framer/local/css/iCMdsGNxD/iCMdsGNxD.js\";import*as sharedStyle6 from\"#framer/local/css/nYnNAusWf/nYnNAusWf.js\";import*as sharedStyle4 from\"#framer/local/css/OdluLEDsl/OdluLEDsl.js\";import*as sharedStyle from\"#framer/local/css/OLy0GQdz3/OLy0GQdz3.js\";import*as sharedStyle13 from\"#framer/local/css/pcnqevXGE/pcnqevXGE.js\";import*as sharedStyle1 from\"#framer/local/css/pTvdXDWD1/pTvdXDWD1.js\";import*as sharedStyle9 from\"#framer/local/css/r0io9z08b/r0io9z08b.js\";import*as sharedStyle8 from\"#framer/local/css/tknveAP_e/tknveAP_e.js\";import*as sharedStyle10 from\"#framer/local/css/UdMYnHLva/UdMYnHLva.js\";import*as sharedStyle11 from\"#framer/local/css/Ui6pAgjSW/Ui6pAgjSW.js\";import*as sharedStyle3 from\"#framer/local/css/vykJS_cOg/vykJS_cOg.js\";import*as sharedStyle5 from\"#framer/local/css/w0227R5rZ/w0227R5rZ.js\";import*as sharedStyle12 from\"#framer/local/css/xj6xaFvub/xj6xaFvub.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/kWqqdLxIs/kWqqdLxIs.js\";import metadataProvider from\"#framer/local/webPageMetadata/kWqqdLxIs/kWqqdLxIs.js\";const MainNavigation2Fonts=getFonts(MainNavigation2);const MainNavigation2WithVariantAppearEffect=withVariantAppearEffect(MainNavigation2);const NexusSideNavigationFonts=getFonts(NexusSideNavigation);const TableContentDropdownFonts=getFonts(TableContentDropdown);const PhosphorFonts=getFonts(Phosphor);const TableContentFonts=getFonts(TableContent);const RichTextWithContentsh4a1k=withCodeBoundaryForOverrides(RichText,{nodeId:\"o3Bdlgkph\",override:withContent,scopeId:\"kWqqdLxIs\"});const DocsNavigationPrevFonts=getFonts(DocsNavigationPrev);const DocsNavigationNextFonts=getFonts(DocsNavigationNext);const BackgroundFonts=getFonts(Background);const Footer2Fonts=getFonts(Footer2);const breakpoints={ep9PnMAlh:\"(min-width: 810px) and (max-width: 1079px)\",ihSelTdD5:\"(max-width: 809px)\",oYq8vWuRy:\"(min-width: 1080px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-3MtaL\";const variantClassNames={ep9PnMAlh:\"framer-v-q0x16c\",ihSelTdD5:\"framer-v-25y6jd\",oYq8vWuRy:\"framer-v-1b388th\"};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"oYq8vWuRy\",Phone:\"ihSelTdD5\",Tablet:\"ep9PnMAlh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oYq8vWuRy\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"kWqqdLxIs\",name:\"nextItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"nextItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"kWqqdLxIs\",name:\"previousItemId\",type:\"Identifier\"},operator:\"==\",right:{collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{constraint:{left:{collection:\"kWqqdLxIs\",name:\"BhfSXhnEa\",type:\"Identifier\"},operator:\"==\",right:{collection:\"BhfSXhnEa\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"kWqqdLxIs\",data:NexusDocs,type:\"Collection\"},right:{alias:\"BhfSXhnEa\",data:NexusCategories,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"previousItemId\",data:NexusDocs,type:\"Collection\"},type:\"LeftJoin\"},right:{alias:\"nextItemId\",data:NexusDocs,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"kWqqdLxIs\",name:\"BQHqQVojC\",type:\"Identifier\"},{collection:\"kWqqdLxIs\",name:\"NDUE7qyq3\",type:\"Identifier\"},{collection:\"kWqqdLxIs\",name:\"o4zCRRPa0\",type:\"Identifier\"},{collection:\"kWqqdLxIs\",name:\"rq8vtouYb\",type:\"Identifier\"},{alias:\"BhfSXhnEa.ydtQH16Vd\",collection:\"BhfSXhnEa\",name:\"ydtQH16Vd\",type:\"Identifier\"},{collection:\"kWqqdLxIs\",name:\"TssRkswRH\",type:\"Identifier\"},{alias:\"previousItemId.BQHqQVojC\",collection:\"previousItemId\",name:\"BQHqQVojC\",type:\"Identifier\"},{alias:\"previousItemId.NDUE7qyq3\",collection:\"previousItemId\",name:\"NDUE7qyq3\",type:\"Identifier\"},{alias:\"previousItemId\",collection:\"previousItemId\",name:\"id\",type:\"Identifier\"},{alias:\"nextItemId.BQHqQVojC\",collection:\"nextItemId\",name:\"BQHqQVojC\",type:\"Identifier\"},{alias:\"nextItemId.NDUE7qyq3\",collection:\"nextItemId\",name:\"NDUE7qyq3\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"kWqqdLxIs\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,NDUE7qyq3tjUnHkQWG,NDUE7qyq3=getFromCurrentRouteData(\"NDUE7qyq3\")??\"\",BhfSXhnEa_ydtQH16Vd=getFromCurrentRouteData(\"BhfSXhnEa.ydtQH16Vd\")??\"\",BQHqQVojC=getFromCurrentRouteData(\"BQHqQVojC\")??\"\",o4zCRRPa0=getFromCurrentRouteData(\"o4zCRRPa0\")??\"\",rq8vtouYb=getFromCurrentRouteData(\"rq8vtouYb\")??\"\",previousItemId=getFromCurrentRouteData(\"previousItemId\"),previousItemId_NDUE7qyq3=getFromCurrentRouteData(\"previousItemId.NDUE7qyq3\")??\"\",previousItemId_BQHqQVojC=getFromCurrentRouteData(\"previousItemId.BQHqQVojC\")??\"\",nextItemId_NDUE7qyq3=getFromCurrentRouteData(\"nextItemId.NDUE7qyq3\")??\"\",nextItemId_BQHqQVojC=getFromCurrentRouteData(\"nextItemId.BQHqQVojC\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const GQkQRm7eV3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className,sharedStyle12.className,sharedStyle13.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"g5No6A9HK\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"ep9PnMAlh\",\"ihSelTdD5\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ep9PnMAlh\")return true;return false;};usePreloadLocalizedValues(activeLocale);const visible=isSet(previousItemId);const router=useRouter();const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ihSelTdD5\")return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"oYq8vWuRy\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-3da49381-77e2-40a8-9d36-47a672c617bc, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1b388th\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2km7c-container\",layoutScroll:true,nodeId:\"DvK3aVxjH\",rendersWithMotion:true,scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{__framer__variantAppearEffectEnabled:undefined,u_dkdxmCj:NDUE7qyq3tjUnHkQWG,variant:\"eusW7WvJX\"},ihSelTdD5:{__framer__variantAppearEffectEnabled:undefined,u_dkdxmCj:NDUE7qyq3tjUnHkQWG,variant:\"PvcDZ3ExF\"}},children:/*#__PURE__*/_jsx(MainNavigation2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"DvK3aVxjH\",layoutId:\"DvK3aVxjH\",style:{width:\"100%\"},u_dkdxmCj:\"\",variant:\"GARQDPbUq\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-19t55z\",\"data-framer-name\":\"main\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsx(\"aside\",{className:\"framer-13wnvnh hidden-q0x16c hidden-25y6jd\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1352,width:\"218px\",y:(componentViewport?.y||0)+64+0+0+32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ns9d7d-container\",nodeId:\"T2MsJXGSj\",scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(NexusSideNavigation,{DBz4ahpZy:\"Po4W64evD\",height:\"100%\",id:\"T2MsJXGSj\",layoutId:\"T2MsJXGSj\",style:{width:\"100%\"},uZ6UjcWOk:\"UcmZk6UZI\",variant:\"H80yTieLa\",width:\"100%\",Y9mjG9gjI:NDUE7qyq3})})})}),/*#__PURE__*/_jsxs(\"article\",{className:\"framer-16vsjtf\",\"data-framer-name\":\"container\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1kqdxy1\",\"data-framer-name\":\"section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1kf8y1e\",\"data-styles-preset\":\"OLy0GQdz3\",children:\"Getting Started\"})}),className:\"framer-107zuj1\",\"data-framer-name\":\"Category\",fonts:[\"Inter\"],text:BhfSXhnEa_ydtQH16Vd,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-llpf7t\",\"data-framer-name\":\"section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a84604bd-4c3d-43c6-b8a2-c48902c65346, rgb(15, 15, 16))\"},children:\"Welcome to Metrica Nexus\"})})},ihSelTdD5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a84604bd-4c3d-43c6-b8a2-c48902c65346, rgb(15, 15, 16))\"},children:\"Welcome to Metrica Nexus\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlI7SW50ZXJEaXNwbGF5LU1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Display\", \"Inter Display Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"56px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-a84604bd-4c3d-43c6-b8a2-c48902c65346, rgb(15, 15, 16))\"},children:\"Welcome to Metrica Nexus\"})}),className:\"framer-1n0hh6a\",\"data-framer-name\":\"Title\",fonts:[\"FR;InterDisplay-Medium\"],text:BQHqQVojC,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1tr1qdy\",\"data-styles-preset\":\"pTvdXDWD1\",children:\"Metrica Nexus is the fastest and more professional way to get your video-analysis work done, and as always, in a very simple and easy way. \"})}),className:\"framer-1rq6rx5\",\"data-framer-name\":\"Desc\",fonts:[\"Inter\"],text:o4zCRRPa0,verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{height:43,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1440px), 1px) - 80px, 800px)`,y:(componentViewport?.y||0)+64+0+0+32+0+0+52+0+232}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1mzia-container hidden-1b388th hidden-25y6jd\",id:\"1mzia\",nodeId:\"IMrTz2wBz\",scopeId:\"kWqqdLxIs\",children:[/*#__PURE__*/_jsx(TableContentDropdown,{GQkQRm7eV:GQkQRm7eV3bnx0g({overlay}),height:\"100%\",id:\"IMrTz2wBz\",layoutId:\"IMrTz2wBz\",style:{width:\"100%\"},width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-19s4d36\"),\"data-framer-portal-id\":\"1mzia\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"pSZnvjlxI\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1txxa6g\"),\"data-framer-portal-id\":\"1mzia\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y77nch\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sugu0q-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bAwMpdtal\",rendersWithMotion:true,scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-2a680c9a-4e39-4faf-a979-408e1697909f, rgb(15, 15, 16))\",height:\"100%\",iconSearch:getLocalizedValue(\"v0\",activeLocale)??\"House\",iconSelection:\"X\",id:\"bAwMpdtal\",layoutId:\"bAwMpdtal\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n87vxi\",\"data-border\":true,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(100vw - 48px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-103mw1-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"Erf0UTyQ2\",rendersWithMotion:true,scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(TableContent,{height:\"100%\",id:\"Erf0UTyQ2\",layoutId:\"Erf0UTyQ2\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"hpyYmfutR\"],\"module:NEd4VmDdsxM3StIUbddO/VTIRgCtWbPApsTjNtLlL/YouTube.js:Youtube\":componentPresets.props[\"XOUMpHKaT\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"GNyszIA46\"]},children:/*#__PURE__*/_jsx(RichTextWithContentsh4a1k,{__fromCanvasComponent:true,children:rq8vtouYb,className:\"framer-sh4a1k\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1e6w95u\",anchor:\"framer-styles-preset-1i8b86w\",blockquote:\"framer-styles-preset-t4qs1u\",code:\"framer-styles-preset-1mdfo0f\",h1:\"framer-styles-preset-uvxy58\",h2:\"framer-styles-preset-1ntwbot\",h3:\"framer-styles-preset-ymuc5h\",h4:\"framer-styles-preset-1x9cip4\",h5:\"framer-styles-preset-qwekbt\",h6:\"framer-styles-preset-c64uxn\",img:\"framer-styles-preset-1mi9z3t\",p:\"framer-styles-preset-16zrxq9\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-qhf4zq\",\"data-border\":true,\"data-framer-name\":\"section\",children:[visible&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{NDUE7qyq3:previousItemId_NDUE7qyq3},webPageId:\"kWqqdLxIs\"},implicitPathVariables:undefined},{href:{pathVariables:{NDUE7qyq3:previousItemId_NDUE7qyq3},webPageId:\"kWqqdLxIs\"},implicitPathVariables:undefined},{href:{pathVariables:{NDUE7qyq3:previousItemId_NDUE7qyq3},webPageId:\"kWqqdLxIs\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px), 1px) - 112px, 1px)`,y:(componentViewport?.y||0)+64+0+0+32+535+16},ihSelTdD5:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px)`,y:(componentViewport?.y||0)+64+0+0+0+32+469.6+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 250px, 1px) - 136px, 1px)`,y:(componentViewport?.y||0)+64+0+0+44+484+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rzzlyf-container\",nodeId:\"oncxzSdbJ\",scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{c4EZ0QwGo:resolvedLinks[1]},ihSelTdD5:{c4EZ0QwGo:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(DocsNavigationPrev,{c4EZ0QwGo:resolvedLinks[0],height:\"100%\",id:\"oncxzSdbJ\",ihLl_U0N7:previousItemId_BQHqQVojC,layoutId:\"oncxzSdbJ\",style:{width:\"100%\"},variant:\"Uke4vyFYi\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{NDUE7qyq3:nextItemId_NDUE7qyq3},webPageId:\"kWqqdLxIs\"},implicitPathVariables:undefined},{href:{pathVariables:{NDUE7qyq3:nextItemId_NDUE7qyq3},webPageId:\"kWqqdLxIs\"},implicitPathVariables:undefined},{href:{pathVariables:{NDUE7qyq3:nextItemId_NDUE7qyq3},webPageId:\"kWqqdLxIs\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px), 1px) - 112px, 1px)`,y:(componentViewport?.y||0)+64+0+0+32+535+16},ihSelTdD5:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 80px, 1px)`,y:(componentViewport?.y||0)+64+0+0+0+32+469.6+16}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`max(max(min(${componentViewport?.width||\"100vw\"}, 1440px) - 250px, 1px) - 136px, 1px)`,y:(componentViewport?.y||0)+64+0+0+44+484+16,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ffx723-container\",nodeId:\"dKfBMXNL2\",scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{pgHuFfw7R:resolvedLinks1[1]},ihSelTdD5:{pgHuFfw7R:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(DocsNavigationNext,{height:\"100%\",id:\"dKfBMXNL2\",layoutId:\"dKfBMXNL2\",pgHuFfw7R:resolvedLinks1[0],style:{width:\"100%\"},variant:\"X1DRRbW28\",vq_DEKPBe:nextItemId_BQHqQVojC,width:\"100%\"})})})})})})]})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:588,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-whsfew-container hidden-25y6jd\",nodeId:\"lJtt38Ywf\",scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(Background,{height:\"100%\",id:\"lJtt38Ywf\",layoutId:\"lJtt38Ywf\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ep9PnMAlh:{y:(componentViewport?.y||0)+64+705},ihSelTdD5:{y:(componentViewport?.y||0)+64+607.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+64+1e3,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pnipjy-container\",nodeId:\"mrV_1aM7d\",scopeId:\"kWqqdLxIs\",children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"mrV_1aM7d\",layoutId:\"mrV_1aM7d\",style:{width:\"100%\"},variant:\"KWoxd4ajS\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3MtaL.framer-6xsfzs, .framer-3MtaL .framer-6xsfzs { display: block; }\",\".framer-3MtaL.framer-1b388th { align-content: center; align-items: center; background-color: var(--token-3da49381-77e2-40a8-9d36-47a672c617bc, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 1080px; }\",\".framer-3MtaL .framer-a2km7c-container { flex: none; height: auto; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 6; }\",\".framer-3MtaL .framer-19t55z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 24px; width: 100%; }\",\".framer-3MtaL .framer-13wnvnh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: auto; padding: 32px 16px 128px 16px; position: sticky; top: 64px; width: 250px; z-index: 1; }\",\".framer-3MtaL .framer-1ns9d7d-container, .framer-3MtaL .framer-1rzzlyf-container, .framer-3MtaL .framer-ffx723-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-3MtaL .framer-16vsjtf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 44px 40px 64px 64px; position: relative; width: 1px; z-index: 1; }\",\".framer-3MtaL .framer-1kqdxy1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-3MtaL .framer-107zuj1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-3MtaL .framer-llpf7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-3MtaL .framer-1n0hh6a, .framer-3MtaL .framer-1rq6rx5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3MtaL .framer-1mzia-container, .framer-3MtaL .framer-1pnipjy-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-3MtaL.framer-19s4d36 { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 3; }\",\".framer-3MtaL.framer-1txxa6g { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; left: 0px; overflow: hidden; padding: 0px; position: fixed; right: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-3MtaL .framer-1y77nch { 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: 16px; position: relative; width: 100%; }\",\".framer-3MtaL .framer-sugu0q-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-3MtaL .framer-1n87vxi { --border-bottom-width: 0px; --border-color: var(--token-2b49f3b6-1550-43fd-9c48-56d42b75de03, rgba(15, 15, 16, 0.24)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-2c43f793-cbe9-41a4-bd82-a7fb253cf6f0, #ffffff); border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3MtaL .framer-103mw1-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-3MtaL .framer-sh4a1k { --framer-paragraph-spacing: 16px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3MtaL .framer-qhf4zq { --border-bottom-width: 1px; --border-color: var(--token-6a5b1b0f-236a-4ded-9757-d5b6441a8e6d, rgba(15, 15, 16, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-3MtaL .framer-whsfew-container { flex: none; height: 588px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 0; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,...sharedStyle12.css,...sharedStyle13.css,'.framer-3MtaL[data-border=\"true\"]::after, .framer-3MtaL [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1079px) { .framer-3MtaL.framer-1b388th { width: 810px; } .framer-3MtaL .framer-16vsjtf { padding: 32px 40px 64px 40px; }}\",\"@media (max-width: 809px) { .framer-3MtaL.framer-1b388th { width: 390px; } .framer-3MtaL .framer-19t55z { flex-direction: column; } .framer-3MtaL .framer-16vsjtf { flex: none; padding: 32px 24px 32px 24px; width: 100%; } .framer-3MtaL .framer-1n0hh6a { order: 0; } .framer-3MtaL .framer-1rq6rx5 { order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1963\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ep9PnMAlh\":{\"layout\":[\"fixed\",\"auto\"]},\"ihSelTdD5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"g5No6A9HK\":{\"pattern\":\":g5No6A9HK\",\"name\":\"main\"}}\n * @framerResponsiveScreen\n */const FramerkWqqdLxIs=withCSS(Component,css,\"framer-3MtaL\");export default FramerkWqqdLxIs;FramerkWqqdLxIs.displayName=\"Generated Component\";FramerkWqqdLxIs.defaultProps={height:1963,width:1080};addFonts(FramerkWqqdLxIs,[{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 Display\",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/ePuN3mCjzajIHnyCdvKBFiZkyY0.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/V3j1L0o5vPFKe26Sw4HcpXCfHo.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/F3kdpd2N0cToWV5huaZjjgM.woff2\",weight:\"500\"},{family:\"Inter Display\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/0iDmxkizU9goZoclqIqsV5rvETU.woff2\",weight:\"500\"},{family:\"Inter Display\",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/r0mv3NegmA0akcQsNFotG32Las.woff2\",weight:\"500\"},{family:\"Inter Display\",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/8yoV9pUxquX7VD7ZXlNYKQmkmk.woff2\",weight:\"500\"},{family:\"Inter Display\",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/Ii21jnSJkulBKsHHXKlapi7fv9w.woff2\",weight:\"500\"}]},...MainNavigation2Fonts,...NexusSideNavigationFonts,...TableContentDropdownFonts,...PhosphorFonts,...TableContentFonts,...DocsNavigationPrevFonts,...DocsNavigationNextFonts,...BackgroundFonts,...Footer2Fonts,...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),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...getFontsFromSharedStyle(sharedStyle12.fonts),...getFontsFromSharedStyle(sharedStyle13.fonts),...componentPresets.fonts?.[\"GNyszIA46\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"GNyszIA46\"]):[],...componentPresets.fonts?.[\"XOUMpHKaT\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"XOUMpHKaT\"]):[],...componentPresets.fonts?.[\"hpyYmfutR\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"hpyYmfutR\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkWqqdLxIs\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"g5No6A9HK\\\":{\\\"pattern\\\":\\\":g5No6A9HK\\\",\\\"name\\\":\\\"main\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ep9PnMAlh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ihSelTdD5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1963\",\"framerIntrinsicWidth\":\"1080\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["HEADING_TO_DISPLAY", "useStore", "createStore", "withTableOfContent", "Component", "props", "store", "activeSection", "setActiveSection", "ye", "scrollToId", "id", "element", "ue", "handleScroll", "sections", "heading", "scrollPosition", "window", "i", "p", "l", "a", "b", "type", "HEADING_TO_DISPLAY", "index", "jm68MR2LW_exports", "__export", "__FramerMetadata__", "jm68MR2LW_default", "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", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "ddjbCr1Nk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "RichText", "css", "Framerjm68MR2LW", "withCSS", "jm68MR2LW_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "TableContentItemFonts", "getFonts", "jm68MR2LW_default", "TableContentItemWithTableOfContentWithMappedReactProps9ia95q", "withMappedReactProps", "withTableOfContent", "jm68MR2LW_exports", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText", "ComponentViewportProvider", "TableContentItemWithTableOfContentWithMappedReactProps9ia95q", "css", "FramerS7HiOsN6D", "withCSS", "S7HiOsN6D_default", "addFonts", "TableContentItemFonts", "getFontsFromSharedStyle", "fonts", "X8W8JPf2f_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "p", "x", "motion", "__FramerMetadata__", "X8W8JPf2f_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v0", "p", "x", "motion", "v1", "__FramerMetadata__", "valuesByLocaleId", "X8W8JPf2f_0_exports", "X8W8JPf2f_1_exports", "getLocalizedValue", "key", "locale", "values", "value", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "GQkQRm7eV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap11ae2xw", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText", "getLocalizedValue", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerX8W8JPf2f", "withCSS", "X8W8JPf2f_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "MainNavigation2Fonts", "getFonts", "jegsdTor0_default", "MainNavigation2WithVariantAppearEffect", "withVariantAppearEffect", "NexusSideNavigationFonts", "f02s8R7Hr_default", "TableContentDropdownFonts", "X8W8JPf2f_default", "PhosphorFonts", "Icon", "TableContentFonts", "S7HiOsN6D_default", "RichTextWithContentsh4a1k", "withCodeBoundaryForOverrides", "RichText", "withContent", "DocsNavigationPrevFonts", "SWditHXQe_default", "DocsNavigationNextFonts", "mdyhxfDyK_default", "BackgroundFonts", "lBWk0nfHo_default", "Footer2Fonts", "by3xhIpB9_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "isSet", "value", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "LDVrVxSwA_default", "k9ab_RTpu_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "NDUE7qyq3tjUnHkQWG", "NDUE7qyq3", "BhfSXhnEa_ydtQH16Vd", "BQHqQVojC", "o4zCRRPa0", "rq8vtouYb", "previousItemId", "previousItemId_NDUE7qyq3", "previousItemId_BQHqQVojC", "nextItemId_NDUE7qyq3", "nextItemId_BQHqQVojC", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "GQkQRm7eV3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "usePreloadLocalizedValues", "router", "useRouter", "isDisplayed2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "l", "AnimatePresence", "Ga", "getLocalizedValue", "ComponentPresetsProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "css", "FramerkWqqdLxIs", "withCSS", "kWqqdLxIs_default", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
