{"version":3,"file":"eVa48aP2MVbXX4v2B6aCz9tQl_hDdSsH3xkJVf-PtZQ.B8F-8XAT.mjs","names":["useStore","Component","_Fragment","props","fonts","fonts","css","className","fonts","css","className","fonts","css","className","Navigation","ShareButton1","ShareButton2","ShareButton3","Footer","Phosphor","props","Blog","metadata","className","PropertyOverrides","css"],"sources":["https:/framer.com/m/framer/store.js@^1.0.0","https:/framerusercontent.com/modules/6hDDBS4859jpUl58yAAV/z3AF1c9MKlIWKkDuhW2i/TableOfContent.js","https:/framerusercontent.com/modules/vaj7iHak6DCYHyppHNu5/ceoAlQe38l63zHEGgeD8/componentPresets.js","https:/framerusercontent.com/modules/koDcEVpI4BE91yNeEkSE/dstDyE23qkDDiGWMP8Vb/caEnrfspX.js","https:/framerusercontent.com/modules/T5UlS7rB4elJ2Ii6X8K1/Dakjep71e0VpsBMvCGeR/I5_TQpkug.js","https:/framerusercontent.com/modules/twwnGKjgHlC9tz6a5NOa/hppzow3AhO0fz99fYiUd/oGBiOaODF.js","https:/framerusercontent.com/modules/62ldlm1iWkQloVARTB85/MD61FwN2OhKHShSQPAXe/ovSlf3A_G.js","https:/framerusercontent.com/modules/k8IcvrtCa5tmGYniGjnG/g1wHJ9T3FnM2NcabwH88/ovSlf3A_G.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{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useEffect,useState}from\"react\";// Made with love by Clément. 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=[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\"];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-160;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\":{\"withContent\":{\"type\":\"reactHoc\",\"name\":\"withContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withTableOfContent\":{\"type\":\"reactHoc\",\"name\":\"withTableOfContent\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TableOfContent.map","// Generated by Framer (e22b717)\nexport const props={I6TNQnmbi:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},SJoc46wdh:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={SJoc46wdh:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (47ebf4a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper), .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-color: rgba(153, 153, 153, 0.25); border-style: solid; border-top-left-radius: 8px; border-top-right-radius: 8px; border-width: 1px; overflow: hidden; }\",\".framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) th, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table th, .framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) td, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table td { padding: 10px; }\",\".framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) th, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table th { background-color: rgba(153, 153, 153, 0.1); }\",\".framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) tr + tr td, .framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) tr + tr th, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table tr + tr td, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table tr + tr th { border-top-color: rgba(153, 153, 153, 0.25); border-top-style: solid; border-top-width: 1px; }\",\".framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) td + td, .framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) th + th, .framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) td + th, .framer-wzT7z .framer-styles-preset-1qv18bw:not(.rich-text-wrapper) th + td, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table td + td, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table th + th, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table td + th, .framer-wzT7z .framer-styles-preset-1qv18bw.rich-text-wrapper table th + td { border-left-color: rgba(153, 153, 153, 0.25); border-left-style: solid; border-left-width: 1px; }\"];export const className=\"framer-wzT7z\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (47ebf4a)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Italic\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{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/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{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/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{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/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{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/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"}]}];export const css=['.framer-xZbjZ .framer-styles-preset-fa9ngz:not(.rich-text-wrapper), .framer-xZbjZ .framer-styles-preset-fa9ngz.rich-text-wrapper blockquote { --framer-blockquote-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-blockquote-font-size: 16px; --framer-blockquote-font-style: italic; --framer-blockquote-font-style-bold: normal; --framer-blockquote-font-style-bold-italic: italic; --framer-blockquote-font-style-italic: italic; --framer-blockquote-font-variation-axes: normal; --framer-blockquote-font-weight: 400; --framer-blockquote-font-weight-bold: 700; --framer-blockquote-font-weight-bold-italic: 700; --framer-blockquote-font-weight-italic: 400; --framer-blockquote-letter-spacing: 0em; --framer-blockquote-line-height: 1.8em; --framer-blockquote-paragraph-spacing: 20px; --framer-blockquote-text-color: #999999; --framer-blockquote-text-stroke-color: initial; --framer-blockquote-text-stroke-width: initial; --framer-font-open-type-features: normal; padding: 0px 0px 0px 22px; position: relative; }','.framer-xZbjZ .framer-styles-preset-fa9ngz:not(.rich-text-wrapper)::before, .framer-xZbjZ .framer-styles-preset-fa9ngz.rich-text-wrapper blockquote::before { background-color: #ddd; border-radius: 1px; content: \" \"; display: block; height: 100%; left: 0px; position: absolute; top: 0px; width: 2px; }'];export const className=\"framer-xZbjZ\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (e22b717)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-hJ7sS .framer-styles-preset-hkmlsi { border-bottom-width: 1px; border-color: var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, #080707); border-left-width: 1px; border-right-width: 1px; border-style: solid; border-top-width: 1px; box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25), 0px 2px 4px 0px rgba(0,0,0,0.25); }\"];export const className=\"framer-hJ7sS\";\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 (570e25b)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={j3r88oJnY:new LazyValue(()=>import(\"./ovSlf3A_G-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\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (570e25b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Link,NotFoundError,PropertyOverrides,RichText,SVG,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion}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 Footer from\"#framer/local/canvasComponent/IKO8xW7tC/IKO8xW7tC.js\";import Navigation from\"#framer/local/canvasComponent/SSsSTTmhk/SSsSTTmhk.js\";import ShareButton from\"#framer/local/codeFile/EMcOYD8/ShareButton_1_1.js\";import ShareButton3 from\"#framer/local/codeFile/Z37TIMz/ShareButton_3.js\";import ShareButton2 from\"#framer/local/codeFile/UIw4d6W/ShareButton_4.js\";import ShareButton1 from\"#framer/local/codeFile/MIdaMMI/ShareButton_5.js\";import{withTableOfContent}from\"#framer/local/codeFile/tGXxKyX/TableOfContent.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/JdoXbgalJ/JdoXbgalJ.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle7 from\"#framer/local/css/Am3W_L894/Am3W_L894.js\";import*as sharedStyle10 from\"#framer/local/css/caEnrfspX/caEnrfspX.js\";import*as sharedStyle from\"#framer/local/css/dfREOQ40B/dfREOQ40B.js\";import*as sharedStyle9 from\"#framer/local/css/I5_TQpkug/I5_TQpkug.js\";import*as sharedStyle4 from\"#framer/local/css/i7_gZXbox/i7_gZXbox.js\";import*as sharedStyle8 from\"#framer/local/css/LSPAFfv50/LSPAFfv50.js\";import*as sharedStyle11 from\"#framer/local/css/oGBiOaODF/oGBiOaODF.js\";import*as sharedStyle6 from\"#framer/local/css/P1RgukF6g/P1RgukF6g.js\";import*as sharedStyle3 from\"#framer/local/css/QYvd0olOo/QYvd0olOo.js\";import*as sharedStyle12 from\"#framer/local/css/sJ2QEITYH/sJ2QEITYH.js\";import*as sharedStyle2 from\"#framer/local/css/Tv_EcTRIT/Tv_EcTRIT.js\";import*as sharedStyle1 from\"#framer/local/css/vCJ28olGQ/vCJ28olGQ.js\";import*as sharedStyle5 from\"#framer/local/css/wbqs6j2RY/wbqs6j2RY.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/ovSlf3A_G/ovSlf3A_G.js\";import metadataProvider from\"#framer/local/webPageMetadata/ovSlf3A_G/ovSlf3A_G.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithTableOfContent9r0dr0=withCodeBoundaryForOverrides(RichText,{nodeId:\"FBGOHjdUc\",override:withTableOfContent,scopeId:\"ovSlf3A_G\"});const ShareButtonFonts=getFonts(ShareButton);const ShareButton1Fonts=getFonts(ShareButton1);const ShareButton2Fonts=getFonts(ShareButton2);const ShareButton3Fonts=getFonts(ShareButton3);const FooterFonts=getFonts(Footer);const PhosphorFonts=getFonts(Phosphor);const breakpoints={DBTakZk9F:\"(max-width: 655px)\",JQvCWIez2:\"(min-width: 1024px) and (max-width: 1279px)\",nxnSO5x1g:\"(min-width: 656px) and (max-width: 1023px)\",UfUOpEx9c:\"(min-width: 1280px) and (max-width: 1439px)\",UVJsnCIcx:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-2qHwP\";const variantClassNames={DBTakZk9F:\"framer-v-1hmojfe\",JQvCWIez2:\"framer-v-1bwnva8\",nxnSO5x1g:\"framer-v-1jxbhuf\",UfUOpEx9c:\"framer-v-86kx7z\",UVJsnCIcx:\"framer-v-1vcqyjb\"};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"UfUOpEx9c\",\"Desktop 3\":\"JQvCWIez2\",Desktop:\"UVJsnCIcx\",Phone:\"DBTakZk9F\",Tablet:\"nxnSO5x1g\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"UVJsnCIcx\"};};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:{alias:\"ovSlf3A_G\",data:Blog,type:\"Collection\"},select:[{collection:\"ovSlf3A_G\",name:\"Tt1M6Orvw\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"v6kqsL7iF\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"liYHGb2I7\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"YaGkxHRKV\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"VA3VuUTRU\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"BAkGOmKTd\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"Csu67IzwK\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"oRzv5XKCr\",type:\"Identifier\"},{collection:\"ovSlf3A_G\",name:\"wBaF2V6q1\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"ovSlf3A_G\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Csu67IzwK=getFromCurrentRouteData(\"Csu67IzwK\"),Tt1M6Orvw=getFromCurrentRouteData(\"Tt1M6Orvw\")??\"\",VA3VuUTRU=getFromCurrentRouteData(\"VA3VuUTRU\")??\"\",YaGkxHRKV=getFromCurrentRouteData(\"YaGkxHRKV\"),oRzv5XKCr=getFromCurrentRouteData(\"oRzv5XKCr\")??\"\",wBaF2V6q1=getFromCurrentRouteData(\"wBaF2V6q1\")??\"\",v6kqsL7iF=getFromCurrentRouteData(\"v6kqsL7iF\")??\"\",...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(currentRouteData,activeLocale),[currentRouteData,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;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];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const textContent=enumToDisplayNameFunctions[\"Csu67IzwK\"]?.(Csu67IzwK,activeLocale);const activeLocaleCode=useLocaleCode();const textContent1=toDateString(YaGkxHRKV,activeLocaleCode);const visible=isSet(wBaF2V6q1);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"UVJsnCIcx\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, rgb(6, 6, 7)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1vcqyjb\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qdk101\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DBTakZk9F:{width:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,y:undefined},JQvCWIez2:{width:`max(${componentViewport?.width||\"100vw\"} - 176px, 1px)`},nxnSO5x1g:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`},UfUOpEx9c:{width:`max(${componentViewport?.width||\"100vw\"} - 176px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:76,width:\"1264px\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqmtu8-container\",nodeId:\"L4MXLnFez\",scopeId:\"ovSlf3A_G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DBTakZk9F:{variant:\"J13SWeoLi\"},JQvCWIez2:{variant:\"aFRJ3b1KZ\"},nxnSO5x1g:{variant:\"J13SWeoLi\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"L4MXLnFez\",layoutId:\"L4MXLnFez\",style:{width:\"100%\"},variant:\"SW_12nOKJ\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qmmh1\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6tm7jz\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mvx0lq\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"U6h_HZ1Kv\"},motionChild:true,nodeId:\"vWsMBCFwO\",openInNewTab:false,scopeId:\"ovSlf3A_G\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1faiz3p framer-f1ur2i\",\"data-framer-name\":\"Back\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18pusb9\",\"data-framer-name\":\"arrow_back_ios\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sb19ok\",\"data-framer-name\":\"Vector\",fill:'var(--token-f64530eb-c84e-4199-821f-1a2744a6696a, rgb(255, 255, 255)) /* {\"name\":\"Text\"} */',intrinsicHeight:21,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"21\" viewBox=\"0 0 12 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.835 2.37001L10.055 0.600006L0.165039 10.5L10.065 20.4L11.835 18.63L3.70504 10.5L11.835 2.37001Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ts0mg3\",\"data-styles-preset\":\"dfREOQ40B\",style:{\"--framer-text-color\":\"var(--token-f64530eb-c84e-4199-821f-1a2744a6696a, rgb(255, 255, 255))\"},children:\"Resources\"})}),className:\"framer-1kubbk6\",\"data-framer-name\":\"Back\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r892o2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-janwjy\",\"data-styles-preset\":\"vCJ28olGQ\",style:{\"--framer-text-alignment\":\"center\"},children:\"Beginner’s Guide\"})}),className:\"framer-1ktbygp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-olr0oz\",\"data-styles-preset\":\"Tv_EcTRIT\",style:{\"--framer-text-alignment\":\"center\"},children:\"මුදල් යනු මොනවද? සහා මුදලේ ඉතිහාසය\"})}),className:\"framer-14t7xmy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:Tt1M6Orvw,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3v31s1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11foy7o\",\"data-styles-preset\":\"QYvd0olOo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-r24npw\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:VA3VuUTRU,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11foy7o\",\"data-styles-preset\":\"QYvd0olOo\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Content\"})}),className:\"framer-zytufs\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8lw2pc\",children:[/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"I6TNQnmbi\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"SJoc46wdh\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"kuTdz5wDr\"]},children:/*#__PURE__*/_jsx(RichTextWithTableOfContent9r0dr0,{__fromCanvasComponent:true,children:oRzv5XKCr,className:\"framer-9r0dr0\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],stylesPresetsClassNames:{blockquote:\"framer-styles-preset-fa9ngz\",h1:\"framer-styles-preset-olr0oz\",h2:\"framer-styles-preset-1comelx\",h3:\"framer-styles-preset-1h0u6xh\",h4:\"framer-styles-preset-hc319c\",h5:\"framer-styles-preset-1aklkag\",h6:\"framer-styles-preset-16bhgjn\",img:\"framer-styles-preset-hkmlsi\",p:\"framer-styles-preset-11foy7o\",table:\"framer-styles-preset-1qv18bw\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-fnab7b\",\"data-framer-name\":\"Editor's note\",children:/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"I6TNQnmbi\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"SJoc46wdh\"],\"module:pVk4QsoHxASnVtUBp6jr/TbhpORLndv1iOkZzyo83/CodeBlock.js:default\":componentPresets.props[\"kuTdz5wDr\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:wBaF2V6q1,className:\"framer-ajtj5l\",\"data-framer-name\":\"Quis odio egestas ut et nunc in sed. Magna sit amet vitae feugiat. Lorem rutrum curabitur suscipit aenean libero dignissim. Integer blandit elit metus eget nulla sed sed tellus. Facilisi arcu tortor purus massa arcu ut consectetur morbi est. Sed ultrices sem mauris tincidunt convallis tincidunt. A viverra tellus quam urna suscipit et et amet in. Sodales lacinia vitae praesent sagittis sem id fermentum fermentum. Urna faucibus vulputate vitae turpis sit nibh lacus sed nunc. Elit parturient aliquam amet a. Eget facilisi imperdiet ultricies quam odio risus vulputate neque. Metus eget dolor.\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-1x5q87\",blockquote:\"framer-styles-preset-fa9ngz\",h1:\"framer-styles-preset-olr0oz\",h2:\"framer-styles-preset-1comelx\",h3:\"framer-styles-preset-1h0u6xh\",h4:\"framer-styles-preset-hc319c\",h5:\"framer-styles-preset-1aklkag\",h6:\"framer-styles-preset-16bhgjn\",img:\"framer-styles-preset-hkmlsi\",p:\"framer-styles-preset-11foy7o\",table:\"framer-styles-preset-1qv18bw\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rbktne\",\"data-framer-name\":\"Bottom of the article\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xwdt72\",\"data-framer-name\":\"Share this post\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sqhh3t\",\"data-border\":true,\"data-framer-name\":\"Share\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-11foy7o\",\"data-styles-preset\":\"QYvd0olOo\",children:\"Share this post\"})}),className:\"framer-z8072w\",\"data-framer-name\":\"Share this post\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kstsn1\",\"data-framer-name\":\"CTAs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ju49ch\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1szrjjv-container\",isAuthoredByUser:true,nodeId:\"uyi_gdoYc\",rendersWithMotion:true,scopeId:\"ovSlf3A_G\",whileHover:animation,children:/*#__PURE__*/_jsx(ShareButton,{backgroundType:\"Solid\",borderColor:\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",borderWidth:1,bottomLeftRadius:4,bottomPadding:12,bottomRightRadius:4,font:{color:\"var(--token-3f8a6009-b669-4d81-a88f-b4cf9097f246, rgb(255, 255, 255))\",fontFace:getLocalizedValue(\"v3\",activeLocale)??\"Roboto\",size:24,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:10,size:20},id:\"uyi_gdoYc\",isMixedPadding:false,isMixedRadius:false,layoutId:\"uyi_gdoYc\",leftPadding:12,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:4,rightPadding:12,shareCurrentUrl:true,shareText:\"👉 Look what I read: \",socialMedia:\"Facebook\",style:{height:\"100%\",width:\"100%\"},stylePadding:12,tint:\"var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, rgb(6, 6, 7))\",title:\"\",topLeftRadius:4,topPadding:12,topRightRadius:4,urlToShare:getLocalizedValue(\"v2\",activeLocale)??\"https://bitcoinsrilanka.org/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q66eav-container\",isAuthoredByUser:true,nodeId:\"Qfnp03kf0\",rendersWithMotion:true,scopeId:\"ovSlf3A_G\",whileHover:animation,children:/*#__PURE__*/_jsx(ShareButton1,{backgroundType:\"Solid\",borderColor:\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",borderWidth:1,bottomLeftRadius:4,bottomPadding:12,bottomRightRadius:4,font:{color:\"rgb(255, 255, 255)\",fontFace:getLocalizedValue(\"v3\",activeLocale)??\"Roboto\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:0,size:20},id:\"Qfnp03kf0\",isMixedPadding:false,isMixedRadius:false,layoutId:\"Qfnp03kf0\",leftPadding:12,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:4,rightPadding:12,shareCurrentUrl:true,shareText:Tt1M6Orvw,socialMedia:\"Twitter\",style:{height:\"100%\",width:\"100%\"},stylePadding:12,tint:\"var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, rgb(6, 6, 7))\",title:\"\",topLeftRadius:4,topPadding:12,topRightRadius:4,urlToShare:getLocalizedValue(\"v2\",activeLocale)??\"https://bitcoinsrilanka.org/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1609gxq-container\",isAuthoredByUser:true,nodeId:\"Csxjj2dFe\",rendersWithMotion:true,scopeId:\"ovSlf3A_G\",whileHover:animation,children:/*#__PURE__*/_jsx(ShareButton2,{backgroundType:\"Solid\",borderColor:\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",borderWidth:1,bottomLeftRadius:4,bottomPadding:12,bottomRightRadius:4,font:{color:\"rgb(255, 255, 255)\",fontFace:getLocalizedValue(\"v3\",activeLocale)??\"Roboto\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:10,size:20},id:\"Csxjj2dFe\",isMixedPadding:false,isMixedRadius:false,layoutId:\"Csxjj2dFe\",leftPadding:12,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:4,rightPadding:12,shareCurrentUrl:true,shareText:\"👉 Look what I read: \",socialMedia:\"LinkedIn\",style:{height:\"100%\",width:\"100%\"},stylePadding:12,tint:\"var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, rgb(6, 6, 7))\",title:\"\",topLeftRadius:4,topPadding:12,topRightRadius:4,urlToShare:getLocalizedValue(\"v2\",activeLocale)??\"https://bitcoinsrilanka.org/\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lfqayh-container\",isAuthoredByUser:true,nodeId:\"NIK5n7evr\",rendersWithMotion:true,scopeId:\"ovSlf3A_G\",whileHover:animation,children:/*#__PURE__*/_jsx(ShareButton3,{backgroundType:\"Solid\",borderColor:\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",borderWidth:1,bottomLeftRadius:4,bottomPadding:12,bottomRightRadius:4,font:{color:\"rgb(255, 255, 255)\",fontFace:getLocalizedValue(\"v3\",activeLocale)??\"Roboto\",size:16,weight:\"bold\"},height:\"100%\",iconProperties:{color:\"rgb(255, 255, 255)\",gap:10,size:20},id:\"NIK5n7evr\",isMixedPadding:false,isMixedRadius:false,layoutId:\"NIK5n7evr\",leftPadding:12,linear:{degree:90,fromColor:\"rgb(46, 46, 46)\",opacityFrom:100,opacityTo:0,toColor:\"rgb(36, 36, 36)\"},radius:4,rightPadding:12,shareCurrentUrl:true,shareText:\"👉 Look what I read: \",socialMedia:\"Reddit\",style:{height:\"100%\",width:\"100%\"},stylePadding:12,tint:\"var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, rgb(6, 6, 7))\",title:\"\",topLeftRadius:4,topPadding:12,topRightRadius:4,urlToShare:getLocalizedValue(\"v2\",activeLocale)??\"https://bitcoinsrilanka.org/\",width:\"100%\"})})})]})})]})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DBTakZk9F:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 800px)`,y:undefined},JQvCWIez2:{width:`min(${componentViewport?.width||\"100vw\"} - 176px, 800px)`},nxnSO5x1g:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 800px)`,y:(componentViewport?.y||0)+0+146+0+880.5},UfUOpEx9c:{width:`min(${componentViewport?.width||\"100vw\"} - 176px, 800px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1052,width:`min(${componentViewport?.width||\"100vw\"}, 800px)`,y:(componentViewport?.y||0)+0+156+0+890.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1455b26-container\",nodeId:\"hy4qQFVbS\",scopeId:\"ovSlf3A_G\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{DBTakZk9F:{variant:\"oz9MJJcyg\"},JQvCWIez2:{variant:\"NjYTO3emr\"},nxnSO5x1g:{variant:\"CuIAL1trx\"},UfUOpEx9c:{variant:\"Bmbg9ZoeZ\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"hy4qQFVbS\",layoutId:\"hy4qQFVbS\",style:{width:\"100%\"},variant:\"m2vkqAs8l\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{v6kqsL7iF},webPageId:\"ovSlf3A_G\"},motionChild:true,nodeId:\"x2YDR7WYH\",openInNewTab:false,scopeId:\"ovSlf3A_G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-qdrwfy framer-f1ur2i\",\"data-framer-name\":\"Scroll Up\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xear4c-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lHHi_dGiQ\",scopeId:\"ovSlf3A_G\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f64530eb-c84e-4199-821f-1a2744a6696a, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowFatLineUp\",id:\"lHHi_dGiQ\",layoutId:\"lHHi_dGiQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2qHwP.framer-f1ur2i, .framer-2qHwP .framer-f1ur2i { display: block; }\",\".framer-2qHwP.framer-1vcqyjb { align-content: center; align-items: center; background-color: var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, #060607); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-2qHwP .framer-1qdk101 { align-content: center; align-items: center; background-color: var(--token-ab8cf45f-61cc-4046-82fb-63c1f3998b5f, #060607); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 6; }\",\".framer-2qHwP .framer-1kqmtu8-container { flex: none; height: auto; position: relative; width: 1264px; z-index: 5; }\",\".framer-2qHwP .framer-1qmmh1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-6tm7jz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-1mvx0lq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-1faiz3p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-2qHwP .framer-18pusb9 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-2qHwP .framer-1sb19ok { bottom: 3px; flex: none; left: 6px; position: absolute; right: 6px; top: 2px; }\",\".framer-2qHwP .framer-1kubbk6, .framer-2qHwP .framer-z8072w { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2qHwP .framer-1r892o2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-1ktbygp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2qHwP .framer-14t7xmy { flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2qHwP .framer-3v31s1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-r24npw, .framer-2qHwP .framer-zytufs { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2qHwP .framer-8lw2pc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-9r0dr0 { --framer-paragraph-spacing: 32px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-2qHwP .framer-fnab7b { align-content: flex-start; align-items: flex-start; background-color: var(--token-b18ef067-6570-497e-8a18-34f4e9c59547, #38302e); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 30px 20px 30px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-ajtj5l { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-2qHwP .framer-1rbktne { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-1xwdt72 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-sqhh3t { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-2qHwP .framer-1kstsn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2qHwP .framer-1ju49ch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 210px; }\",\".framer-2qHwP .framer-1szrjjv-container, .framer-2qHwP .framer-1q66eav-container, .framer-2qHwP .framer-1609gxq-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2qHwP .framer-lfqayh-container { flex: none; height: 44px; position: relative; width: 44px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-2qHwP .framer-1455b26-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-2qHwP .framer-qdrwfy { -webkit-backdrop-filter: blur(8px); align-content: center; align-items: center; aspect-ratio: 1 / 1; backdrop-filter: blur(8px); background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: 50px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: visible; padding: 0px; position: fixed; right: 200px; text-decoration: none; width: 50px; z-index: 1; }\",\".framer-2qHwP .framer-xear4c-container { flex: none; height: 24px; position: relative; width: 24px; }\",...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,'.framer-2qHwP[data-border=\"true\"]::after, .framer-2qHwP [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: 1280px) and (max-width: 1439px) { .framer-2qHwP.framer-1vcqyjb { padding: 0px 88px 0px 88px; width: 1280px; } .framer-2qHwP .framer-1kqmtu8-container { flex: 1 0 0px; width: 1px; } .framer-2qHwP .framer-qdrwfy { right: 88px; }}\",\"@media (min-width: 1024px) and (max-width: 1279px) { .framer-2qHwP.framer-1vcqyjb { padding: 0px 88px 0px 88px; width: 1024px; } .framer-2qHwP .framer-1kqmtu8-container { flex: 1 0 0px; width: 1px; } .framer-2qHwP .framer-qdrwfy { right: 88px; }}\",\"@media (min-width: 656px) and (max-width: 1023px) { .framer-2qHwP.framer-1vcqyjb { gap: 70px; padding: 0px 40px 0px 40px; width: 656px; } .framer-2qHwP .framer-1kqmtu8-container { flex: 1 0 0px; width: 1px; } .framer-2qHwP .framer-6tm7jz { gap: 30px; } .framer-2qHwP .framer-qdrwfy { right: 40px; }}\",\"@media (max-width: 655px) { .framer-2qHwP.framer-1vcqyjb { gap: 50px; padding: 0px 16px 0px 16px; width: 360px; } .framer-2qHwP .framer-1kqmtu8-container { flex: 1 0 0px; width: 1px; } .framer-2qHwP .framer-6tm7jz { gap: 16px; } .framer-2qHwP .framer-fnab7b { padding: 20px; } .framer-2qHwP .framer-sqhh3t { flex-wrap: wrap; gap: 20px; justify-content: center; } .framer-2qHwP .framer-1kstsn1 { flex-direction: column; gap: 14px; } .framer-2qHwP .framer-qdrwfy { bottom: 80px; right: 16px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5435\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UfUOpEx9c\":{\"layout\":[\"fixed\",\"auto\"]},\"JQvCWIez2\":{\"layout\":[\"fixed\",\"auto\"]},\"nxnSO5x1g\":{\"layout\":[\"fixed\",\"auto\"]},\"DBTakZk9F\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerovSlf3A_G=withCSS(Component,css,\"framer-2qHwP\");export default FramerovSlf3A_G;FramerovSlf3A_G.displayName=\"Blog Detail\";FramerovSlf3A_G.defaultProps={height:5435,width:1440};addFonts(FramerovSlf3A_G,[{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\"}]},...NavigationFonts,...ShareButtonFonts,...ShareButton1Fonts,...ShareButton2Fonts,...ShareButton3Fonts,...FooterFonts,...PhosphorFonts,...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),...componentPresets.fonts?.[\"kuTdz5wDr\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"kuTdz5wDr\"]):[],...componentPresets.fonts?.[\"I6TNQnmbi\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"I6TNQnmbi\"]):[],...componentPresets.fonts?.[\"SJoc46wdh\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"SJoc46wdh\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerovSlf3A_G\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"5435\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UfUOpEx9c\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JQvCWIez2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nxnSO5x1g\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DBTakZk9F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}