{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/21jxWxj90w1F6gCv9ArM/gkGIefAbvGUjt4RJQpLc/TableOfContent.js", "ssg:https://framerusercontent.com/modules/bmpK2D17wPEmAdmeFUOx/d8vtg0LyZ59qSAesHotB/iU0lRL0gB.js", "ssg:https://framerusercontent.com/modules/rMBv1E484Uo9WBJkMVtD/UN8AKx042peWL7RcrTc9/fFKbIqk3v.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,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{createElement as _createElement}from\"react\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";// Define constants\nconst HEADING_TO_DISPLAY=[\"h2\"];const SCROLL_MARGIN_TOP=30;// Create store to track headings\nconst useStore=createStore({headings:[],clearHeadings:()=>({headings:[]})});// Component to generate table of contents from headings\nexport function withTableOfContent(Component){return props=>{const[store,setStore]=useStore();// Clear the store when the component unmounts\nuseEffect(()=>{return()=>{setStore(store.clearHeadings());};},[]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`\n                    [data-framer-name=\"h2\"] {\n                        opacity: 1 !important;\n                        pointer-events: auto !important;\n                        transform: none !important;\n                    }\n                    [data-framer-name=\"h2\"] > div {\n                        opacity: 1 !important;\n                        pointer-events: auto !important;\n                        transform: none !important;\n                    }\n                `}),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__*/_createElement(Component,{...props,variant:type,title:heading,link:`${window.location.pathname}#${id}`,key:index})):/*#__PURE__*/_jsx(Component,{...props})]});};}// Component to add content and format headings\nexport function withContent(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);// Clear the store when the component mounts\nuseEffect(()=>{setStore(store.clearHeadings());},[]);useEffect(()=>{const newHeadings=formatTableOfContent(newProps.children.props.children);setStore(prevStore=>({...prevStore,headings:[...prevStore.headings,...newHeadings.filter(newHeading=>{return!prevStore.headings.some(existingHeading=>existingHeading.id===newHeading.id);})]}));},[newProps]);useEffect(()=>{const formatHeadings=()=>{const newChildren=[];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);const newItem={...item,props:{...item.props,id:formattedId}};newChildren.push(newItem);}else{newChildren.push(item);}});return{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text { scroll-margin-top: ${SCROLL_MARGIN_TOP}px; }`}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}export function withContentTwo(Component){return props=>{const[store,setStore]=useStore();const[newProps,setNewProps]=useState(props);// Clear the store when the component mounts\nuseEffect(()=>{setStore(store.clearHeadings());},[]);useEffect(()=>{var _props_children_props,_props_children;const content=(_props_children=props.children)===null||_props_children===void 0?void 0:(_props_children_props=_props_children.props)===null||_props_children_props===void 0?void 0:_props_children_props.children;if(Array.isArray(content)&&content.length>0){const newHeadings=formatTableOfContent(content);setStore(prevStore=>({...prevStore,headings:[...prevStore.headings,...newHeadings.filter(newHeading=>{return!prevStore.headings.some(existingHeading=>existingHeading.id===newHeading.id);})]}));}},[props]);useEffect(()=>{const formatHeadings=()=>{var _props_children_props,_props_children;const content=(_props_children=props.children)===null||_props_children===void 0?void 0:(_props_children_props=_props_children.props)===null||_props_children_props===void 0?void 0:_props_children_props.children;if(!Array.isArray(content))return props;const newChildren=content.map((item,index)=>{if([\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(item.type)){const{formattedId}=formatHeading(item.props.children,index);return{...item,props:{...item.props,id:formattedId}};}return item;});return{...props,children:{...props.children,props:{...props.children.props,children:newChildren}}};};setNewProps(formatHeadings());},[props]);return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"style\",{children:`.framer-text { scroll-margin-top: ${SCROLL_MARGIN_TOP}px; }`}),/*#__PURE__*/_jsx(Component,{...newProps})]});};}// Utility function to format the table of contents\nconst formatTableOfContent=children=>{const result=[];children.filter(({type})=>[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"].includes(type)).forEach((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;};// Utility function to format headings by generating unique ids\nconst formatHeading=(children,index)=>{let formattedHeading=\"\";let formattedId=\"\";if(typeof children===\"string\"){formattedHeading=children;}else if(Array.isArray(children)){formattedHeading=children.map(item=>{if(typeof item===\"string\")return item.trim();return item.props.children.trim();}).join(\" \");}else if(typeof children===\"object\"){if(typeof children.props.children===\"string\"){formattedHeading=children.props.children;}else{formattedHeading=children.type;}}else{formattedHeading=index.toString();}formattedId=formattedHeading.toLowerCase().replace(/[^a-z]+/g,\"-\").replace(/^-+|-+$/g,\"\").trim();return{formattedId,formattedHeading};};\nexport const __FramerMetadata__ = {\"exports\":{\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withContentTwo\":{\"type\":\"reactHoc\",\"name\":\"withContentTwo\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/qJBVg9phNi7RK6d12bcC/RwDMmZuOhDrHqXWtTnLT/yV4XfvZpl.js\";const enabledGestures={bl5X8QcKR:{hover:true},jWEuL0Md9:{hover:true}};const cycleOrder=[\"bl5X8QcKR\",\"jWEuL0Md9\"];const serializationHash=\"framer-YrIT2\";const variantClassNames={bl5X8QcKR:\"framer-v-7mapsf\",jWEuL0Md9:\"framer-v-ppp4j9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={h2:\"bl5X8QcKR\",h3:\"jWEuL0Md9\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,KxKZPbEbj:(_ref=title!==null&&title!==void 0?title:props.KxKZPbEbj)!==null&&_ref!==void 0?_ref:\"Title\",u9khEfmDF:link!==null&&link!==void 0?link:props.u9khEfmDF,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"bl5X8QcKR\"};};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,u9khEfmDF,KxKZPbEbj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bl5X8QcKR\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:u9khEfmDF,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-7mapsf\",className,classNames)} framer-do9bfl`,\"data-framer-name\":\"h2\",layoutDependency:layoutDependency,layoutId:\"bl5X8QcKR\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{\"bl5X8QcKR-hover\":{opacity:.4},\"jWEuL0Md9-hover\":{opacity:.4}},...addPropertyOverrides({\"bl5X8QcKR-hover\":{\"data-framer-name\":undefined},\"jWEuL0Md9-hover\":{\"data-framer-name\":undefined},jWEuL0Md9:{\"data-framer-name\":\"h3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1jfqmtq\",\"data-styles-preset\":\"yV4XfvZpl\",children:\"Title\"})}),className:\"framer-1fsu1x9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YAfRjkoij\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KxKZPbEbj,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YrIT2.framer-do9bfl, .framer-YrIT2 .framer-do9bfl { display: block; }\",\".framer-YrIT2.framer-7mapsf { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; text-decoration: none; width: 186px; }\",\".framer-YrIT2 .framer-1fsu1x9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YrIT2.framer-7mapsf { gap: 0px; } .framer-YrIT2.framer-7mapsf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YrIT2.framer-7mapsf > :first-child { margin-top: 0px; } .framer-YrIT2.framer-7mapsf > :last-child { margin-bottom: 0px; } }\",\".framer-YrIT2.framer-v-ppp4j9.framer-7mapsf { padding: 10px 0px 0px 12px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 186\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"jWEuL0Md9\":{\"layout\":[\"fixed\",\"auto\"]},\"Fvs3QbHnW\":{\"layout\":[\"fixed\",\"auto\"]},\"VC9Vv0BvV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"u9khEfmDF\":\"link\",\"KxKZPbEbj\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriU0lRL0gB=withCSS(Component,css,\"framer-YrIT2\");export default FrameriU0lRL0gB;FrameriU0lRL0gB.displayName=\"TableofContents\";FrameriU0lRL0gB.defaultProps={height:32,width:186};addPropertyControls(FrameriU0lRL0gB,{variant:{options:[\"bl5X8QcKR\",\"jWEuL0Md9\"],optionTitles:[\"h2\",\"h3\"],title:\"Variant\",type:ControlType.Enum},u9khEfmDF:{title:\"Link\",type:ControlType.Link},KxKZPbEbj:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FrameriU0lRL0gB,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriU0lRL0gB\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jWEuL0Md9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Fvs3QbHnW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VC9Vv0BvV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"u9khEfmDF\\\":\\\"link\\\",\\\"KxKZPbEbj\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"186\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"32\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iU0lRL0gB.map", "// Generated by Framer (2c4b293)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,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/21jxWxj90w1F6gCv9ArM/gkGIefAbvGUjt4RJQpLc/TableOfContent.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eOBL2tFFzahrqc0gzpCS/NTJrlb622jzicm0tukJY/zZLGVR2Md.js\";import TableofContents,*as TableofContentsInfo from\"https://framerusercontent.com/modules/bmpK2D17wPEmAdmeFUOx/d8vtg0LyZ59qSAesHotB/iU0lRL0gB.js\";const TableofContentsFonts=getFonts(TableofContents);const TableofContentsWithTableOfContentWithMappedReactPropsnpx5sr=withMappedReactProps(withTableOfContent(TableofContents),TableofContentsInfo);const cycleOrder=[\"O1kWH10FV\",\"gHQMDUAn_\",\"DxwwNuNJw\"];const serializationHash=\"framer-pE33Z\";const variantClassNames={DxwwNuNJw:\"framer-v-1tewurv\",gHQMDUAn_:\"framer-v-1r4y61m\",O1kWH10FV:\"framer-v-hubxlh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"DxwwNuNJw\",Desktop:\"O1kWH10FV\",Mobile:\"gHQMDUAn_\"};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:\"O1kWH10FV\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O1kWH10FV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1e7rrp2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"DxwwNuNJw\");});const onTappv2qei=activeVariantCallback(async(...args)=>{setVariant(\"gHQMDUAn_\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"gHQMDUAn_\",\"DxwwNuNJw\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"DxwwNuNJw\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hubxlh\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"O1kWH10FV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgba(0, 0, 0, 0)\",...style},variants:{DxwwNuNJw:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2569c8cc-39b2-4ab3-993b-c57258b77749, rgb(219, 219, 223))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},gHQMDUAn_:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-2569c8cc-39b2-4ab3-993b-c57258b77749, rgb(219, 219, 223))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({DxwwNuNJw:{\"data-border\":true,\"data-framer-name\":\"Variant 3\"},gHQMDUAn_:{\"data-border\":true,\"data-framer-name\":\"Mobile\",\"data-highlight\":true,onTap:onTap1e7rrp2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ikghf\",layoutDependency:layoutDependency,layoutId:\"S5XtlruIB\",...addPropertyOverrides({DxwwNuNJw:{\"data-highlight\":true,onTap:onTappv2qei}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vanbmr\",\"data-styles-preset\":\"zZLGVR2Md\",style:{\"--framer-text-alignment\":\"left\"},children:\"Table of Contents\"})}),className:\"framer-95psgr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wjYt4o8RJ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:7,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XWyEcIcZwFw6vhMqptNLZvTZ904.svg\"},className:\"framer-1iap8kb\",layoutDependency:layoutDependency,layoutId:\"Hv6TLXiYo\",style:{rotate:0},variants:{DxwwNuNJw:{rotate:-180}},...addPropertyOverrides({DxwwNuNJw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||87)-20-67)/2+0+0)+0),pixelHeight:7,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XWyEcIcZwFw6vhMqptNLZvTZ904.svg\"}},gHQMDUAn_:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||45)-20-25)/2)+3.5),pixelHeight:7,pixelWidth:12,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XWyEcIcZwFw6vhMqptNLZvTZ904.svg\"}}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({DxwwNuNJw:{height:32,width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||87)-20-67)/2+25+10)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fwi50r-container\",layoutDependency:layoutDependency,layoutId:\"r_Wbsr9Wg-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({DxwwNuNJw:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(TableofContentsWithTableOfContentWithMappedReactPropsnpx5sr,{height:\"100%\",id:\"r_Wbsr9Wg\",KxKZPbEbj:\" \",layoutId:\"r_Wbsr9Wg\",style:{width:\"100%\"},variant:\"bl5X8QcKR\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pE33Z.framer-g1820c, .framer-pE33Z .framer-g1820c { display: block; }\",\".framer-pE33Z.framer-hubxlh { height: 25px; overflow: hidden; position: relative; width: 118px; }\",\".framer-pE33Z .framer-12ikghf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: -1px; width: 100%; }\",\".framer-pE33Z .framer-95psgr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pE33Z .framer-1iap8kb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: hidden; position: relative; width: 25px; }\",\".framer-pE33Z .framer-1fwi50r-container { flex: none; height: auto; left: 0%; position: absolute; top: 0%; width: 1fr; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pE33Z .framer-12ikghf { gap: 0px; } .framer-pE33Z .framer-12ikghf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pE33Z .framer-12ikghf > :first-child { margin-left: 0px; } .framer-pE33Z .framer-12ikghf > :last-child { margin-right: 0px; } }\",\".framer-pE33Z.framer-v-1r4y61m.framer-hubxlh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; padding: 0px 0px 20px 0px; width: 446px; }\",\".framer-pE33Z.framer-v-1r4y61m .framer-12ikghf { flex: 1 0 0px; gap: unset; justify-content: space-between; left: unset; order: 1; position: relative; top: unset; width: 1px; }\",\".framer-pE33Z.framer-v-1r4y61m .framer-1iap8kb, .framer-pE33Z.framer-v-1tewurv .framer-1iap8kb { height: var(--framer-aspect-ratio-supported, 18px); width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pE33Z.framer-v-1r4y61m.framer-hubxlh, .framer-pE33Z.framer-v-1r4y61m .framer-12ikghf { gap: 0px; } .framer-pE33Z.framer-v-1r4y61m.framer-hubxlh > *, .framer-pE33Z.framer-v-1r4y61m.framer-hubxlh > :first-child, .framer-pE33Z.framer-v-1r4y61m.framer-hubxlh > :last-child, .framer-pE33Z.framer-v-1r4y61m .framer-12ikghf > *, .framer-pE33Z.framer-v-1r4y61m .framer-12ikghf > :first-child, .framer-pE33Z.framer-v-1r4y61m .framer-12ikghf > :last-child { margin: 0px; } }\",\".framer-pE33Z.framer-v-1tewurv.framer-hubxlh { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 20px 0px; width: 446px; }\",\".framer-pE33Z.framer-v-1tewurv .framer-12ikghf { align-content: flex-start; align-items: flex-start; cursor: pointer; gap: unset; justify-content: space-between; left: unset; order: 1; position: relative; top: unset; }\",\".framer-pE33Z.framer-v-1tewurv .framer-1fwi50r-container { left: unset; order: 2; position: relative; top: unset; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pE33Z.framer-v-1tewurv.framer-hubxlh, .framer-pE33Z.framer-v-1tewurv .framer-12ikghf { gap: 0px; } .framer-pE33Z.framer-v-1tewurv.framer-hubxlh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pE33Z.framer-v-1tewurv.framer-hubxlh > :first-child { margin-top: 0px; } .framer-pE33Z.framer-v-1tewurv.framer-hubxlh > :last-child { margin-bottom: 0px; } .framer-pE33Z.framer-v-1tewurv .framer-12ikghf > *, .framer-pE33Z.framer-v-1tewurv .framer-12ikghf > :first-child, .framer-pE33Z.framer-v-1tewurv .framer-12ikghf > :last-child { margin: 0px; } }\",...sharedStyle.css,'.framer-pE33Z[data-border=\"true\"]::after, .framer-pE33Z [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 25\n * @framerIntrinsicWidth 118\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"gHQMDUAn_\":{\"layout\":[\"fixed\",\"auto\"]},\"DxwwNuNJw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfFKbIqk3v=withCSS(Component,css,\"framer-pE33Z\");export default FramerfFKbIqk3v;FramerfFKbIqk3v.displayName=\"ToC\";FramerfFKbIqk3v.defaultProps={height:25,width:118};addPropertyControls(FramerfFKbIqk3v,{variant:{options:[\"O1kWH10FV\",\"gHQMDUAn_\",\"DxwwNuNJw\"],optionTitles:[\"Desktop\",\"Mobile\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfFKbIqk3v,[{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\"}]},...TableofContentsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfFKbIqk3v\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"118\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gHQMDUAn_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DxwwNuNJw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"25\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "ueAAqF,SAASA,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,EAASP,CAAU,EAIzC,OAFAQ,EAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,EAAe,IAAI,IAAMA,EAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCd9C,IAAMM,GAAmB,CAAC,IAAI,EAAQC,GAAkB,GAClDC,GAASC,GAAY,CAAC,SAAS,CAAC,EAAE,cAAc,KAAK,CAAC,SAAS,CAAC,CAAC,EAAE,CAAC,EACnE,SAASC,GAAmBC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAEN,GAAS,EAC5F,OAAAO,EAAU,IAAW,IAAI,CAACD,EAASD,EAAM,cAAc,CAAC,CAAE,EAAI,CAAC,CAAC,EAAsBG,EAAMC,EAAU,CAAC,SAAS,CAAcC,EAAK,QAAQ,CAAC,SAAS;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,iBAWpI,CAAC,EAAEL,EAAM,SAAS,OAAO,GAAGM,EAAON,EAAM,SAAS,KAAK,CAACO,EAAEC,IAAID,EAAE,cAAcC,EAAE,aAAa,EAAE,OAAO,CAAC,CAAC,KAAAC,CAAI,IAAIhB,GAAmB,SAASgB,CAAI,CAAC,EAAE,IAAI,CAAC,CAAC,GAAAC,EAAG,QAAAC,EAAQ,KAAAF,CAAI,EAAEG,IAAqBC,GAAef,EAAU,CAAC,GAAGC,EAAM,QAAQU,EAAK,MAAME,EAAQ,KAAK,GAAGL,EAAO,SAAS,YAAYI,IAAK,IAAIE,CAAK,CAAC,CAAC,EAAeP,EAAKP,EAAU,CAAC,GAAGC,CAAK,CAAC,CAAC,CAAC,CAAC,CAAE,CAAE,CAC1W,SAASe,GAAYhB,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAEN,GAAS,EAAO,CAACoB,EAASC,CAAW,EAAEC,EAASlB,CAAK,EACjI,OAAAG,EAAU,IAAI,CAACD,EAASD,EAAM,cAAc,CAAC,CAAE,EAAE,CAAC,CAAC,EAAEE,EAAU,IAAI,CAAC,IAAMgB,EAAYC,GAAqBJ,EAAS,SAAS,MAAM,QAAQ,EAAEd,EAASmB,IAAY,CAAC,GAAGA,EAAU,SAAS,CAAC,GAAGA,EAAU,SAAS,GAAGF,EAAY,OAAOG,GAAmB,CAACD,EAAU,SAAS,KAAKE,GAAiBA,EAAgB,KAAKD,EAAW,EAAE,CAAG,CAAC,CAAC,EAAE,CAAE,EAAE,CAACN,CAAQ,CAAC,EAAEb,EAAU,IAAI,CAA8cc,GAAxb,IAAI,CAAC,IAAMO,EAAY,CAAC,EAAE,OAAAxB,EAAM,SAAS,MAAM,SAAS,QAAQ,CAACyB,EAAKZ,IAAQ,CAAC,IAAMa,EAASD,EAAK,MAAM,SAAS,GAAG,CAAC,KAAK,KAAK,KAAK,KAAK,KAAK,IAAI,EAAE,SAASA,EAAK,IAAI,EAAE,CAAC,GAAK,CAAC,YAAAE,CAAW,EAAEC,GAAcF,EAASb,CAAK,EAAQgB,EAAQ,CAAC,GAAGJ,EAAK,MAAM,CAAC,GAAGA,EAAK,MAAM,GAAGE,CAAW,CAAC,EAAEH,EAAY,KAAKK,CAAO,OAAQL,EAAY,KAAKC,CAAI,CAAG,CAAC,EAAQ,CAAC,GAAGzB,EAAM,SAAS,CAAC,GAAGA,EAAM,SAAS,MAAM,CAAC,GAAGA,EAAM,SAAS,MAAM,SAASwB,CAAW,CAAC,CAAC,CAAE,GAA6B,CAAC,CAAE,EAAE,CAACxB,CAAK,CAAC,EAAsBI,EAAMC,EAAU,CAAC,SAAS,CAAcC,EAAK,QAAQ,CAAC,SAAS,qCAAqCX,SAAwB,CAAC,EAAeW,EAAKP,EAAU,CAAC,GAAGiB,CAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAE,CAAQ,SAASc,GAAe/B,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,EAAMC,CAAQ,EAAEN,GAAS,EAAO,CAACoB,EAASC,CAAW,EAAEC,EAASlB,CAAK,EACzqC,OAAAG,EAAU,IAAI,CAACD,EAASD,EAAM,cAAc,CAAC,CAAE,EAAE,CAAC,CAAC,EAAEE,EAAU,IAAI,CAAC,IAAI4B,EAAsBC,EAAgB,IAAMC,GAASD,EAAgBhC,EAAM,YAAY,MAAMgC,IAAkB,SAAeD,EAAsBC,EAAgB,SAAS,MAAMD,IAAwB,OAArF,OAAmGA,EAAsB,SAAS,GAAG,MAAM,QAAQE,CAAO,GAAGA,EAAQ,OAAO,EAAE,CAAC,IAAMd,EAAYC,GAAqBa,CAAO,EAAE/B,EAASmB,IAAY,CAAC,GAAGA,EAAU,SAAS,CAAC,GAAGA,EAAU,SAAS,GAAGF,EAAY,OAAOG,GAAmB,CAACD,EAAU,SAAS,KAAKE,GAAiBA,EAAgB,KAAKD,EAAW,EAAE,CAAG,CAAC,CAAC,EAAE,EAAG,EAAE,CAACtB,CAAK,CAAC,EAAEG,EAAU,IAAI,CAA0oBc,GAApnB,IAAI,CAAC,IAAIc,EAAsBC,EAAgB,IAAMC,GAASD,EAAgBhC,EAAM,YAAY,MAAMgC,IAAkB,SAAeD,EAAsBC,EAAgB,SAAS,MAAMD,IAAwB,OAArF,OAAmGA,EAAsB,SAAS,GAAG,CAAC,MAAM,QAAQE,CAAO,EAAE,OAAOjC,EAAM,IAAMwB,EAAYS,EAAQ,IAAI,CAACR,EAAKZ,IAAQ,CAAC,GAAG,CAAC,KAAK,KAAK,KAAK,KAAK,KAAK,IAAI,EAAE,SAASY,EAAK,IAAI,EAAE,CAAC,GAAK,CAAC,YAAAE,CAAW,EAAEC,GAAcH,EAAK,MAAM,SAASZ,CAAK,EAAE,MAAM,CAAC,GAAGY,EAAK,MAAM,CAAC,GAAGA,EAAK,MAAM,GAAGE,CAAW,CAAC,EAAG,OAAOF,CAAK,CAAC,EAAE,MAAM,CAAC,GAAGzB,EAAM,SAAS,CAAC,GAAGA,EAAM,SAAS,MAAM,CAAC,GAAGA,EAAM,SAAS,MAAM,SAASwB,CAAW,CAAC,CAAC,CAAE,GAA6B,CAAC,CAAE,EAAE,CAACxB,CAAK,CAAC,EAAsBI,EAAMC,EAAU,CAAC,SAAS,CAAcC,EAAK,QAAQ,CAAC,SAAS,qCAAqCX,SAAwB,CAAC,EAAeW,EAAKP,EAAU,CAAC,GAAGiB,CAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAE,CAC9+C,IAAMI,GAAqBM,GAAU,CAAC,IAAMQ,EAAO,CAAC,EAAE,OAAAR,EAAS,OAAO,CAAC,CAAC,KAAAhB,CAAI,IAAI,CAAC,KAAK,KAAK,KAAK,KAAK,KAAK,IAAI,EAAE,SAASA,CAAI,CAAC,EAAE,QAAQ,CAACe,EAAKZ,IAAQ,CAAC,IAAMa,EAASD,EAAK,MAAM,SAAc,CAAC,YAAAE,EAAY,iBAAAQ,CAAgB,EAAEP,GAAcF,EAASb,CAAK,EAAEqB,EAAO,KAAK,CAAC,GAAGP,EAAY,QAAQQ,EAAiB,KAAKV,EAAK,KAAK,cAAcZ,CAAK,CAAC,CAAE,CAAC,EAASqB,CAAO,EACjWN,GAAc,CAACF,EAASb,IAAQ,CAAC,IAAIsB,EAAiB,GAAOR,EAAY,GAAG,OAAG,OAAOD,GAAW,SAAUS,EAAiBT,EAAkB,MAAM,QAAQA,CAAQ,EAAGS,EAAiBT,EAAS,IAAID,GAAU,OAAOA,GAAO,SAAgBA,EAAK,KAAK,EAASA,EAAK,MAAM,SAAS,KAAK,CAAG,EAAE,KAAK,GAAG,EAAW,OAAOC,GAAW,SAAa,OAAOA,EAAS,MAAM,UAAW,SAAUS,EAAiBT,EAAS,MAAM,SAAeS,EAAiBT,EAAS,KAAYS,EAAiBtB,EAAM,SAAS,EAAGc,EAAYQ,EAAiB,YAAY,EAAE,QAAQ,WAAW,GAAG,EAAE,QAAQ,WAAW,EAAE,EAAE,KAAK,EAAQ,CAAC,YAAAR,EAAY,iBAAAQ,CAAgB,CAAE,ECpB/nB,IAAAC,GAAA,GAAAC,GAAAD,GAAA,wBAAAE,GAAA,YAAAC,IACma,IAAMC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,GAAG,YAAY,GAAG,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,QAAQ,UAAUJ,GAAgCG,EAAM,UAAU,SAASG,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtB,GAASM,CAAK,EAAO,CAAC,YAAAiB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAhD,CAAQ,EAAEiD,EAAgB,CAAC,WAAAtD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQqD,EAAiBtB,GAAuBJ,EAAMxB,CAAQ,EAAQmD,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAanB,EAAS,EAAQoB,GAAkBC,EAAqB,EAAE,OAAoB5C,EAAK6C,EAAY,CAAC,GAAGrB,GAA4CgB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAK8C,GAAK,CAAC,KAAKrB,EAAU,SAAsBzB,EAAKE,EAAO,EAAE,CAAC,GAAGyB,EAAU,GAAGI,GAAgB,UAAU,GAAGgB,EAAGhE,GAAkB,GAAG2D,EAAsB,gBAAgBnB,EAAUM,CAAU,kBAAkB,mBAAmB,KAAK,iBAAiBQ,EAAiB,SAAS,YAAY,IAAInB,GAA6BoB,EAAK,MAAM,CAAC,QAAQ,EAAE,GAAGhB,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,QAAQ,EAAE,EAAE,kBAAkB,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAGrC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,IAAI,CAAC,EAAE2C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKgD,EAAS,CAAC,sBAAsB,GAAK,SAAsBhD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBmC,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,gFAAgF,gUAAgU,qKAAqK,2WAA2W,8EAA8E,GAAeA,EAAG,EAStmKC,EAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,EAAQF,EAAgBA,EAAgB,YAAY,kBAAkBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,KAAK,IAAI,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,QAAQ,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC/nE,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,oCAAsC,oMAA0O,gBAAkB,2CAAmD,yBAA2B,QAAQ,qBAAuB,MAAM,yBAA2B,OAAO,sBAAwB,KAAK,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECVsC,IAAMC,GAAqBC,GAASC,CAAe,EAAQC,GAA4DC,GAAqBC,GAAmBH,CAAe,EAAEI,EAAmB,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,SAAS,EAAE,KAAK,OAAO,EAAQC,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,QAAQ,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,GAAGoC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA9C,CAAQ,EAAE+C,EAAgB,CAAC,WAAApD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQmD,EAAiBpB,GAAuBH,EAAMzB,CAAQ,EAAO,CAAC,sBAAAiD,EAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,EAAaH,EAAsB,SAASI,KAAO,CAACR,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAEC,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAYL,EAAsB,SAASI,KAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASlB,CAAW,EAAmCmB,GAAa,IAAQnB,IAAc,YAA6CoB,GAAsBC,EAAM,EAAQC,GAAsB,CAAazB,EAAS,EAAQ0B,EAAkBC,EAAqB,EAAE,OAAoB/C,EAAKgD,EAAY,CAAC,GAAG3B,GAA4CsB,GAAgB,SAAsB3C,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsB8D,EAAM/C,EAAO,IAAI,CAAC,GAAGoB,EAAU,GAAGI,EAAgB,UAAUwB,EAAGtE,GAAkB,GAAGiE,GAAsB,gBAAgBzB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BwB,EAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,mBAAmB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,mBAAmB,GAAGpB,CAAK,EAAE,SAAS,CAAC,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,wBAAwB,MAAM,iBAAiB,wEAAwE,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,CAAC,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,cAAc,GAAK,mBAAmB,WAAW,EAAE,UAAU,CAAC,cAAc,GAAK,mBAAmB,SAAS,iBAAiB,GAAK,MAAMsD,CAAY,CAAC,EAAEb,EAAYI,CAAc,EAAE,SAAS,CAAcsB,EAAM/C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB8B,EAAiB,SAAS,YAAY,GAAGlD,EAAqB,CAAC,UAAU,CAAC,iBAAiB,GAAK,MAAMwD,CAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAc3B,EAAKmD,EAAS,CAAC,sBAAsB,GAAK,SAAsBnD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,iBAAiB8B,EAAiB,SAAS,YAAY,MAAM,CAAC,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAES,GAAY,GAAgBzC,EAAKoD,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,EAAE,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,iBAAiBpB,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,IAAI,CAAC,EAAE,GAAGlD,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQuE,IAAwFP,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,EAAE,EAAE,GAAG,CAAC,EAAE,YAAY,EAAE,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQO,IAAwFP,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,GAAG,IAAI,GAAG,GAAG,EAAE,YAAY,EAAE,WAAW,GAAG,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,CAAC,CAAC,EAAEvB,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEe,GAAa,GAAgB1C,EAAKsD,GAA0B,CAAC,GAAGxE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,MAAmEgE,GAAkB,OAAQ,QAAQ,GAAgEA,GAAkB,GAAI,GAAG,KAAkEA,GAAkB,QAAS,IAAI,GAAG,IAAI,EAAE,GAAG,GAAG,CAAC,EAAEvB,EAAYI,CAAc,EAAE,SAAsB3B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8B,EAAiB,SAAS,sBAAsB,kBAAkB5C,GAAmB,GAAGN,EAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAEyC,EAAYI,CAAc,EAAE,SAAsB3B,EAAKzB,GAA4D,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,IAAI,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgF,GAAI,CAAC,kFAAkF,gFAAgF,oGAAoG,oSAAoS,gHAAgH,4KAA4K,2HAA2H,mXAAmX,qQAAqQ,mLAAmL,sKAAsK,0iBAA0iB,mQAAmQ,6NAA6N,mIAAmI,gqBAAgqB,GAAeA,GAAI,+bAA+b,EAQx/XC,EAAgBC,EAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,MAAMA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGpF,GAAqB,GAAG0F,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "HEADING_TO_DISPLAY", "SCROLL_MARGIN_TOP", "useStore", "createStore", "withTableOfContent", "Component", "props", "store", "setStore", "ue", "u", "l", "p", "window", "a", "b", "type", "id", "heading", "index", "B", "withContent", "newProps", "setNewProps", "ye", "newHeadings", "formatTableOfContent", "prevStore", "newHeading", "existingHeading", "newChildren", "item", "children", "formattedId", "formatHeading", "newItem", "withContentTwo", "_props_children_props", "_props_children", "content", "result", "formattedHeading", "iU0lRL0gB_exports", "__export", "__FramerMetadata__", "iU0lRL0gB_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "u9khEfmDF", "KxKZPbEbj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FrameriU0lRL0gB", "withCSS", "iU0lRL0gB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__", "TableofContentsFonts", "getFonts", "iU0lRL0gB_default", "TableofContentsWithTableOfContentWithMappedReactPropsnpx5sr", "withMappedReactProps", "withTableOfContent", "iU0lRL0gB_exports", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1e7rrp2", "args", "onTappv2qei", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "FramerfFKbIqk3v", "withCSS", "fFKbIqk3v_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
