{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs", "ssg:https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js", "ssg:https://framerusercontent.com/modules/YBuvlNCOOcOUrmjAhAqx/BRDej02WfUue06y2MXJb/componentPresets.js", "ssg:https://framerusercontent.com/modules/PhbKLkn5q0EXrWr3qm4u/s8AXf0NQtFz0Kg2Trbmg/j9hdgCsNw.js", "ssg:https://framerusercontent.com/modules/ITFKIrQNtmpd2bdPCStI/vsz7LHmYMcnAJDTEEO13/mI2Y3qW4U.js", "ssg:https://framerusercontent.com/modules/ydSRXsCE9AjsYRzp2geS/BwfTIKCcELqra8cKgZEe/zxoyoA1RP.js", "ssg:https://framerusercontent.com/modules/vOQBgHEisL84mzllWENr/msZix5Fq5NQR7QYvqCYb/DlwhQkN6z.js"],
  "sourcesContent": ["function clamp(t,e,i){return Math.max(t,Math.min(e,i))}class Animate{advance(t){if(!this.isRunning)return;let e=!1;if(this.lerp)this.value=function damp(t,e,i,s){return function lerp(t,e,i){return(1-i)*t+i*e}(t,e,1-Math.exp(-i*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0);else{this.currentTime+=t;const i=clamp(0,this.currentTime/this.duration,1);e=i>=1;const s=e?1:this.easing(i);this.value=this.from+(this.to-this.from)*s}e&&this.stop(),this.onUpdate?.(this.value,e)}stop(){this.isRunning=!1}fromTo(t,e,{lerp:i=.1,duration:s=1,easing:o=(t=>t),onStart:n,onUpdate:r}){this.from=this.value=t,this.to=e,this.lerp=i,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,n?.(),this.onUpdate=r}}class Dimensions{constructor({wrapper:t,content:e,autoResize:i=!0,debounce:s=250}={}){this.wrapper=t,this.content=e,i&&(this.debouncedResize=function debounce(t,e){let i;return function(){let s=arguments,o=this;clearTimeout(i),i=setTimeout((function(){t.apply(o,s)}),e)}}(this.resize,s),this.wrapper===window?window.addEventListener(\"resize\",this.debouncedResize,!1):(this.wrapperResizeObserver=new ResizeObserver(this.debouncedResize),this.wrapperResizeObserver.observe(this.wrapper)),this.contentResizeObserver=new ResizeObserver(this.debouncedResize),this.contentResizeObserver.observe(this.content)),this.resize()}destroy(){this.wrapperResizeObserver?.disconnect(),this.contentResizeObserver?.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}resize=()=>{this.onWrapperResize(),this.onContentResize()};onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)};onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)};get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...e){let i=this.events[t]||[];for(let t=0,s=i.length;t<s;t++)i[t](...e)}on(t,e){return this.events[t]?.push(e)||(this.events[t]=[e]),()=>{this.events[t]=this.events[t]?.filter((t=>e!==t))}}off(t,e){this.events[t]=this.events[t]?.filter((t=>e!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(t,{wheelMultiplier:e=1,touchMultiplier:i=1}){this.element=t,this.wheelMultiplier=e,this.touchMultiplier=i,this.touchStart={x:null,y:null},this.emitter=new Emitter,window.addEventListener(\"resize\",this.onWindowResize,!1),this.onWindowResize(),this.element.addEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.addEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.addEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.addEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}on(t,e){return this.emitter.on(t,e)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel,{passive:!1}),this.element.removeEventListener(\"touchstart\",this.onTouchStart,{passive:!1}),this.element.removeEventListener(\"touchmove\",this.onTouchMove,{passive:!1}),this.element.removeEventListener(\"touchend\",this.onTouchEnd,{passive:!1})}onTouchStart=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})};onTouchMove=t=>{const{clientX:e,clientY:i}=t.targetTouches?t.targetTouches[0]:t,s=-(e-this.touchStart.x)*this.touchMultiplier,o=-(i-this.touchStart.y)*this.touchMultiplier;this.touchStart.x=e,this.touchStart.y=i,this.lastDelta={x:s,y:o},this.emitter.emit(\"scroll\",{deltaX:s,deltaY:o,event:t})};onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})};onWheel=e=>{let{deltaX:i,deltaY:s,deltaMode:o}=e;i*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,i*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:i,deltaY:s,event:e})};onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight}}class Lenis{constructor({wrapper:t=window,content:e=document.documentElement,wheelEventsTarget:i=t,eventsTarget:s=i,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:r=.075,touchInertiaMultiplier:l=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=!h&&.1,infinite:u=!1,orientation:d=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w=!1,__experimental__naiveDimensions:S=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.onVirtualScroll=({deltaX:t,deltaY:e,event:i})=>{if(i.ctrlKey)return;const s=i.type.includes(\"touch\"),o=i.type.includes(\"wheel\");this.isTouching=\"touchstart\"===i.type||\"touchmove\"===i.type;if(this.options.syncTouch&&s&&\"touchstart\"===i.type&&!this.isStopped&&!this.isLocked)return void this.reset();const n=0===t&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===t;if(n||r)return;let l=i.composedPath();l=l.slice(0,l.indexOf(this.rootElement));const h=this.options.prevent;if(l.find((t=>{var e,i,n,r,l;return(\"function\"==typeof h?null==h?void 0:h(t):h)||(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent\"))||s&&(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent-touch\"))||o&&(null===(n=t.hasAttribute)||void 0===n?void 0:n.call(t,\"data-lenis-prevent-wheel\"))||(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis\"))&&!(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis-stopped\"))})))return;if(this.isStopped||this.isLocked)return void i.preventDefault();if(!(this.options.syncTouch&&s||this.options.smoothWheel&&o))return this.isScrolling=\"native\",void this.animate.stop();i.preventDefault();let a=e;\"both\"===this.options.gestureOrientation?a=Math.abs(e)>Math.abs(t)?e:t:\"horizontal\"===this.options.gestureOrientation&&(a=t);const c=s&&this.options.syncTouch,u=s&&\"touchend\"===i.type&&Math.abs(a)>5;u&&(a=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+a,Object.assign({programmatic:!1},c?{lerp:u?this.options.syncTouchLerp:1}:{lerp:this.options.lerp,duration:this.options.duration,easing:this.options.easing}))},this.onNativeScroll=()=>{if(clearTimeout(this.__resetVelocityTimeout),delete this.__resetVelocityTimeout,this.__preventNextNativeScrollEvent)delete this.__preventNextNativeScrollEvent;else if(!1===this.isScrolling||\"native\"===this.isScrolling){const t=this.animatedScroll;this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity,this.velocity=this.animatedScroll-t,this.direction=Math.sign(this.animatedScroll-t),this.isScrolling=\"native\",this.emit(),0!==this.velocity&&(this.__resetVelocityTimeout=setTimeout((()=>{this.lastVelocity=this.velocity,this.velocity=0,this.isScrolling=!1,this.emit()}),400))}},window.lenisVersion=\"1.1.2\",t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:e,wheelEventsTarget:i,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:r,touchInertiaMultiplier:l,duration:h,easing:a,lerp:c,infinite:u,gestureOrientation:p,orientation:d,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,__experimental__naiveDimensions:S},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:e,autoResize:g}),this.updateClassName(),this.userData={},this.time=0,this.velocity=this.lastVelocity=0,this.isLocked=!1,this.isStopped=!1,this.isScrolling=!1,this.targetScroll=this.animatedScroll=this.actualScroll,this.options.wrapper.addEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll=new VirtualScroll(s,{touchMultiplier:m,wheelMultiplier:v}),this.virtualScroll.on(\"scroll\",this.onVirtualScroll)}destroy(){this.emitter.destroy(),this.options.wrapper.removeEventListener(\"scroll\",this.onNativeScroll,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,e){return this.emitter.on(t,e)}off(t,e){return this.emitter.off(t,e)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit({userData:t={}}={}){this.userData=t,this.emitter.emit(\"scroll\",this),this.userData={}}reset(){this.isLocked=!1,this.isScrolling=!1,this.animatedScroll=this.targetScroll=this.actualScroll,this.lastVelocity=this.velocity=0,this.animate.stop()}start(){this.isStopped&&(this.isStopped=!1,this.reset())}stop(){this.isStopped||(this.isStopped=!0,this.animate.stop(),this.reset())}raf(t){const e=t-(this.time||t);this.time=t,this.animate.advance(.001*e)}scrollTo(t,{offset:e=0,immediate:i=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:r=!o&&this.options.lerp,onStart:l,onComplete:h,force:a=!1,programmatic:c=!0,userData:u={}}={}){if(!this.isStopped&&!this.isLocked||a){if([\"top\",\"left\",\"start\"].includes(t))t=0;else if([\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let i;if(\"string\"==typeof t?i=document.querySelector(t):(null==t?void 0:t.nodeType)&&(i=t),i){if(this.options.wrapper!==window){const t=this.options.wrapper.getBoundingClientRect();e-=this.isHorizontal?t.left:t.top}const s=i.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t){if(t+=e,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),i)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),void(null==h||h(this));t!==this.targetScroll&&(c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:r,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==l||l(this)},onUpdate:(t,e)=>{this.isScrolling=\"smooth\",this.lastVelocity=this.velocity,this.velocity=t-this.animatedScroll,this.direction=Math.sign(this.velocity),this.animatedScroll=t,this.setScroll(this.scroll),c&&(this.targetScroll=t),e||this.emit({userData:u}),e&&(this.reset(),this.emit({userData:u}),null==h||h(this),this.__preventNextNativeScrollEvent=!0)}}))}}}get rootElement(){return this.options.wrapper===window?document.documentElement:this.options.wrapper}get limit(){return this.options.__experimental__naiveDimensions?this.isHorizontal?this.rootElement.scrollWidth-this.rootElement.clientWidth:this.rootElement.scrollHeight-this.rootElement.clientHeight:this.dimensions.limit[this.isHorizontal?\"x\":\"y\"]}get isHorizontal(){return\"horizontal\"===this.options.orientation}get actualScroll(){return this.isHorizontal?this.rootElement.scrollLeft:this.rootElement.scrollTop}get scroll(){return this.options.infinite?function modulo(t,e){return(t%e+e)%e}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n", "import{jsx as _jsx,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import Lenis from\"lenis\";// import Lenis from \"@studio-freight/lenis\"\nimport{useEffect,useRef}from\"react\";/**\n * @framerDisableUnlink\n */export default function SmoothScroll(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current)lenis.current.scrollTo(0,{immediate:true});},[lenis]);// Check Overlay overflow\nuseEffect(()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){const checkOverflow=()=>{const htmlStyle=window.getComputedStyle(document.documentElement);const isOverflowHidden=htmlStyle.overflow===\"hidden\";if(isOverflowHidden){overlayElement.setAttribute(\"data-lenis-prevent\",\"true\");}};// Set up MutationObserver for the html element\nconst htmlObserver=new MutationObserver(mutations=>{for(const mutation of mutations){if(mutation.type===\"attributes\"&&mutation.attributeName===\"style\"){checkOverflow();}}});// Observe the html element for style changes\nhtmlObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});// Initial check\ncheckOverflow();return()=>{htmlObserver.disconnect();};}},[]);// useEffect(() => {\n//     const overlayElement = document.getElementById(\"overlay\")\n//     if (overlayElement) {\n//         const handleMutation = (mutationsList, observer) => {\n//             for (const mutation of mutationsList) {\n//                 if (\n//                     mutation.type === \"childList\" &&\n//                     overlayElement.children.length > 0\n//                 ) {\n//                     // Check if the html tag has the style \"overflow: hidden;\"\n//                     const htmlElement = document.documentElement\n//                     console.log(htmlElement, \"htmlElement\")\n//                     const computedStyle =\n//                         window.getComputedStyle(htmlElement)\n//                     console.log(\"computedStyle\", computedStyle)\n//                     const isOverflowHidden =\n//                         computedStyle.overflow === \"hidden\"\n//                     console.log(\"isOverflowHidden\", isOverflowHidden)\n//                     if (isOverflowHidden) {\n//                         overlayElement.setAttribute(\n//                             \"data-lenis-prevent\",\n//                             \"true\"\n//                         )\n//                     }\n//                 }\n//             }\n//         }\n//         const observer = new MutationObserver(handleMutation)\n//         observer.observe(overlayElement, {\n//             childList: true,\n//             attributes: true,\n//             subtree: true,\n//         })\n//         return () => observer.disconnect()\n//     }\n// }, [])\nuseEffect(()=>{const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];const computedStyle=window.getComputedStyle(element);if(computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}},[]);useEffect(()=>{lenis.current=new Lenis({duration:intensity/10});const raf=time=>{if(lenis.current){lenis.current.raf(time);requestAnimationFrame(raf);}};requestAnimationFrame(raf);return()=>{if(lenis.current){lenis.current.destroy();lenis.current=null;}};},[]);useEffect(()=>{const styleElement=document.createElement(\"style\");styleElement.textContent=`\nhtml.lenis {\nheight: auto;\n}\n.lenis.lenis-smooth {\n\nscroll-behavior: auto !important;\n}\n.lenis.lenis-smooth [data-lenis-prevent] {\n\noverscroll-behavior: contain;\n}\n.lenis.lenis-stopped {\n\noverflow: hidden;\n}\n.lenis.lenis-scrolling iframe {\n\npointer-events: none;\n}\n`;document.head.appendChild(styleElement);return()=>{document.head.removeChild(styleElement);};},[]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=[...document.querySelectorAll(\"a[href]\")].filter(anchor=>anchor.href.includes(\"#\")).map(anchor=>{const href=`#${anchor.href.split(\"#\").pop()}`;const decodedHref=decodeURIComponent(href);let scrollMargin=0;const targetElement=document.querySelector(decodedHref);if(targetElement){scrollMargin=parseInt(window.getComputedStyle(targetElement).scrollMarginTop);}return{href,scrollMargin,anchorElement:anchor};});const handleClick=(e,href,scrollMargin)=>{e.preventDefault();lenis.current.scrollTo(href,{offset:-scrollMargin});};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.addEventListener(\"click\",handlers[index]);});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{anchorElement.removeEventListener(\"click\",handlers[index]);});};},[lenis]);return /*#__PURE__*/_jsx(_Fragment,{});}SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map", "// Generated by Framer (ab692b1)\nexport const props={zMGAObhko:{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={zMGAObhko:[{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 (f26e712)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-D3WA3 .framer-styles-preset-8wvw1a {  }\"];export const className=\"framer-D3WA3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}];export const css=['.framer-aCCIR .framer-styles-preset-xqc4bt:not(.rich-text-wrapper), .framer-aCCIR .framer-styles-preset-xqc4bt.rich-text-wrapper code { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-aCCIR\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9f1494d)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper), .framer-CodVS .framer-styles-preset-1ojyiex.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-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) th, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table th, .framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) td, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table td { padding: 10px; }\",\".framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) th, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table th { background-color: rgba(153, 153, 153, 0.1); }\",\".framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) tr + tr td, .framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) tr + tr th, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table tr + tr td, .framer-CodVS .framer-styles-preset-1ojyiex.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-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) td + td, .framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) th + th, .framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) td + th, .framer-CodVS .framer-styles-preset-1ojyiex:not(.rich-text-wrapper) th + td, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table td + td, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table th + th, .framer-CodVS .framer-styles-preset-1ojyiex.rich-text-wrapper table td + th, .framer-CodVS .framer-styles-preset-1ojyiex.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-CodVS\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentPresetsProvider,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getWhereExpressionFromPathVariables,Image,NotFoundError,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Footer2 from\"#framer/local/canvasComponent/uKXuO0kIG/uKXuO0kIG.js\";import Navigation from\"#framer/local/canvasComponent/ykWhHc2De/ykWhHc2De.js\";import BlogItem from\"#framer/local/canvasComponent/ZgxT5GP79/ZgxT5GP79.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/rCyTjhkZI/rCyTjhkZI.js\";import*as componentPresets from\"#framer/local/componentPresets/componentPresets/componentPresets.js\";import*as sharedStyle2 from\"#framer/local/css/g7dQdd9sC/g7dQdd9sC.js\";import*as sharedStyle1 from\"#framer/local/css/hNE1AraSy/hNE1AraSy.js\";import*as sharedStyle8 from\"#framer/local/css/j9hdgCsNw/j9hdgCsNw.js\";import*as sharedStyle4 from\"#framer/local/css/kNIGsJwIi/kNIGsJwIi.js\";import*as sharedStyle7 from\"#framer/local/css/mI2Y3qW4U/mI2Y3qW4U.js\";import*as sharedStyle3 from\"#framer/local/css/nyZeh1_nT/nyZeh1_nT.js\";import*as sharedStyle from\"#framer/local/css/r42qsDqci/r42qsDqci.js\";import*as sharedStyle9 from\"#framer/local/css/UTvN04ZYX/UTvN04ZYX.js\";import*as sharedStyle6 from\"#framer/local/css/zxoyoA1RP/zxoyoA1RP.js\";import*as sharedStyle5 from\"#framer/local/css/zzkquLAGX/zzkquLAGX.js\";import metadataProvider from\"#framer/local/webPageMetadata/DlwhQkN6z/DlwhQkN6z.js\";const RichTextWithFX=withFX(RichText);const BlogItemFonts=getFonts(BlogItem);const SmoothScrollFonts=getFonts(SmoothScroll);const Footer2Fonts=getFonts(Footer2);const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const breakpoints={c7EKdyhgX:\"(min-width: 1200px)\",chJicueOy:\"(max-width: 809px)\",lI1wv72_S:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-wUx26\";const variantClassNames={c7EKdyhgX:\"framer-v-1byt0f7\",chJicueOy:\"framer-v-14oh2fr\",lI1wv72_S:\"framer-v-4cy8y4\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"c7EKdyhgX\",Phone:\"chJicueOy\",Tablet:\"lI1wv72_S\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"c7EKdyhgX\"};};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:\"DlwhQkN6z\",data:Blog,type:\"Collection\"},select:[{collection:\"DlwhQkN6z\",name:\"GkxQmTQi5\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"vr6P3OpCG\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"zXWNBzYIf\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"N1h15C6Pl\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"JGNP9Tgll\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"Z76E_lcUO\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"oxAQOjERk\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"xx_LsZLL0\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"GgbRBHLv5\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"YkIe8qLWs\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"R_Ks97y2O\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"w8TzlCzv8\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"SoQ641okn\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"F3AnEhptY\",type:\"Identifier\"},{collection:\"DlwhQkN6z\",name:\"mwKFkIZLc\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"DlwhQkN6z\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,GkxQmTQi5=getFromCurrentRouteData(\"GkxQmTQi5\")??\"\",mwKFkIZLc=getFromCurrentRouteData(\"mwKFkIZLc\"),oxAQOjERk=getFromCurrentRouteData(\"oxAQOjERk\"),Z76E_lcUO=getFromCurrentRouteData(\"Z76E_lcUO\")??\"\",vr6P3OpCG=getFromCurrentRouteData(\"vr6P3OpCG\")??\"\",zXWNBzYIf=getFromCurrentRouteData(\"zXWNBzYIf\")??\"\",GgbRBHLv5=getFromCurrentRouteData(\"GgbRBHLv5\"),JGNP9Tgll=getFromCurrentRouteData(\"JGNP9Tgll\"),xx_LsZLL0=getFromCurrentRouteData(\"xx_LsZLL0\")??\"\",YkIe8qLWs=getFromCurrentRouteData(\"YkIe8qLWs\"),R_Ks97y2O=getFromCurrentRouteData(\"R_Ks97y2O\"),w8TzlCzv8=getFromCurrentRouteData(\"w8TzlCzv8\"),SoQ641okn=getFromCurrentRouteData(\"SoQ641okn\")??\"\",F3AnEhptY=getFromCurrentRouteData(\"F3AnEhptY\"),rnOpXDHIZ,e552oNwvOKMomFl2Oi,MD5D6o6DlKMomFl2Oi,GkxQmTQi5KMomFl2Oi,vr6P3OpCGKMomFl2Oi,mwKFkIZLcKMomFl2Oi,idKMomFl2Oi,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"RDDCUPeNs\");const ref1=React.useRef(null);const textContent=enumToDisplayNameFunctions[\"mwKFkIZLc\"]?.(mwKFkIZLc,activeLocale);const visible=isSet(zXWNBzYIf);const visible1=isSet(GgbRBHLv5);const visible2=isSet(JGNP9Tgll);const visible3=isSet(YkIe8qLWs);const visible4=isSet(R_Ks97y2O);const visible5=isSet(w8TzlCzv8);const visible6=isSet(SoQ641okn);const visible7=isSet(F3AnEhptY);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"c7EKdyhgX\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-cb3e5e73-fbf0-43c1-a605-e89bc81b00cc, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1byt0f7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xic1la\",\"data-border\":true,\"data-framer-name\":\"Post\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-17gxntc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkj7m2\",\"data-framer-name\":\"All Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9xsspe\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cudu0c\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1394tc7\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-195ca2ff-95dc-4d7d-bb9a-c5fb1e041116, rgb(0, 0, 0))\"},children:\"Get your MMLU score 20X cheaper and 1000x faster Copy\"})})},lI1wv72_S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tmfyw6\",\"data-styles-preset\":\"r42qsDqci\",style:{\"--framer-text-color\":\"var(--token-59bd40d3-6d6e-49e9-9a95-987f586824e2, rgb(16, 24, 40))\"},children:\"Get your MMLU score 20X cheaper and 1000x faster Copy\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-59bd40d3-6d6e-49e9-9a95-987f586824e2, rgb(16, 24, 40))\"},children:\"Get your MMLU score 20X cheaper and 1000x faster Copy\"})}),className:\"framer-mj1fs8\",fonts:[\"FS;Satoshi-bold\"],text:GkxQmTQi5,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ragnba\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-178c6763-4f35-44d2-bc8c-f5d3d12a4f98, rgb(30, 103, 206))\"},children:\"Apr 27, 2024\"})}),className:\"framer-13tmwo3\",\"data-framer-name\":\"Creator\",fonts:[\"FS;Satoshi-medium\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8nnlbl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gtjmne\",\"data-framer-name\":\"Elements/Created By\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+-233+0+0+0+-370.5+0+95.4+0+51),sizes:\"24px\",...toResponsiveImage(oxAQOjERk)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+-233+0+0+0+-245+0+83.2+0+51),sizes:\"24px\",...toResponsiveImage(oxAQOjERk)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+-233+0+0+0+-394.5+0+121.8+0+51),sizes:\"24px\",...toResponsiveImage(oxAQOjERk)},className:\"framer-1rwm0cc\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8d3u7t\",\"data-framer-name\":\"Dtae\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-178c6763-4f35-44d2-bc8c-f5d3d12a4f98, rgb(30, 103, 206))\"},children:\"vijil\"})}),className:\"framer-1m9du8z\",\"data-framer-name\":\"Creator\",fonts:[\"FS;Satoshi-medium\"],text:Z76E_lcUO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--token-59bd40d3-6d6e-49e9-9a95-987f586824e2, rgb(16, 24, 40))\"},children:\"Apr 27, 2024\"})}),className:\"framer-1hw8axt\",\"data-framer-name\":\"Creator\",fonts:[\"FS;Satoshi-medium\"],text:vr6P3OpCG,verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),visible&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"zMGAObhko\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:zXWNBzYIf,className:\"framer-cingv1\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-nxfsq8\",code:\"framer-styles-preset-xqc4bt\",h1:\"framer-styles-preset-jyvtvt\",h2:\"framer-styles-preset-1tmfyw6\",h3:\"framer-styles-preset-9casjw\",h4:\"framer-styles-preset-1qa6hcf\",h5:\"framer-styles-preset-1u6wdg8\",h6:\"framer-styles-preset-1j7y7ji\",img:\"framer-styles-preset-8wvw1a\",p:\"framer-styles-preset-1peag5t\",table:\"framer-styles-preset-1ojyiex\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gvht4l\",\"data-framer-name\":\"Image wrapper\",children:[visible2&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+-233+0+0+0+114.9+0+-745),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px), 1072px)`,...toResponsiveImage(JGNP9Tgll)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+-233+0+0+0+353.2+0+-151.5),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(JGNP9Tgll)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+-233+0+0+0+45.3+0+-745),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(JGNP9Tgll)},className:\"framer-1mueznw\",\"data-border\":true})}),visible&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"zMGAObhko\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:xx_LsZLL0,className:\"framer-1mxm7o7\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-nxfsq8\",code:\"framer-styles-preset-xqc4bt\",h1:\"framer-styles-preset-jyvtvt\",h2:\"framer-styles-preset-1tmfyw6\",h3:\"framer-styles-preset-9casjw\",h4:\"framer-styles-preset-1qa6hcf\",h5:\"framer-styles-preset-1u6wdg8\",h6:\"framer-styles-preset-1j7y7ji\",img:\"framer-styles-preset-8wvw1a\",p:\"framer-styles-preset-1peag5t\",table:\"framer-styles-preset-1ojyiex\"},verticalAlignment:\"top\",withExternalLayout:true})}),visible1&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+-233+0+0+0+114.9+0+-392),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px), 1072px)`,...toResponsiveImage(GgbRBHLv5)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+-233+0+0+0+353.2+0+65.5),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(GgbRBHLv5)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+-233+0+0+0+45.3+0+-392),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(GgbRBHLv5)},className:\"framer-1wljw5n\",\"data-border\":true})}),visible3&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+-233+0+0+0+114.9+0+105),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px), 1072px)`,...toResponsiveImage(YkIe8qLWs)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+-233+0+0+0+353.2+0+166.5),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(YkIe8qLWs)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+-233+0+0+0+45.3+0+105),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(YkIe8qLWs)},className:\"framer-g0ayug\",\"data-border\":true})}),visible4&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+-233+0+0+0+114.9+0+602),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px), 1072px)`,...toResponsiveImage(R_Ks97y2O)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+-233+0+0+0+353.2+0+267.5),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(R_Ks97y2O)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+-233+0+0+0+45.3+0+602),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(R_Ks97y2O)},className:\"framer-qsrk8p\",\"data-border\":true})}),visible5&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+-233+0+0+0+114.9+0+1098),sizes:`min(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px), 1072px)`,...toResponsiveImage(w8TzlCzv8)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+-233+0+0+0+353.2+0+368.5),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(w8TzlCzv8)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+-233+0+0+0+45.3+0+1098),sizes:`min(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px), 1072px)`,...toResponsiveImage(w8TzlCzv8)},className:\"framer-1j51icp\",\"data-border\":true})})]}),visible6&&/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"zMGAObhko\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:SoQ641okn,className:\"framer-eg0rag\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-nxfsq8\",h1:\"framer-styles-preset-jyvtvt\",h2:\"framer-styles-preset-1tmfyw6\",h3:\"framer-styles-preset-9casjw\",h4:\"framer-styles-preset-1qa6hcf\",h5:\"framer-styles-preset-1u6wdg8\",h6:\"framer-styles-preset-1j7y7ji\",img:\"framer-styles-preset-8wvw1a\",p:\"framer-styles-preset-1fo5pvp\",table:\"framer-styles-preset-1ojyiex\"},verticalAlignment:\"top\",withExternalLayout:true})})]})}),visible7&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rnodue\",\"data-framer-name\":\"Bottom Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+120+0+0+0+140.4+0+0),sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px), 1px) * 0.4)`,...toResponsiveImage(F3AnEhptY)}},lI1wv72_S:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+160+0+0+205.2+0+0),sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 64px, 1px), 1200px), 1px) * 0.4)`,...toResponsiveImage(F3AnEhptY)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+200+0+0+190.8+0+0),sizes:`calc(max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1200px), 1px) * 0.4)`,...toResponsiveImage(F3AnEhptY)},className:\"framer-utexxk\",\"data-border\":true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c30a325a-fe63-4500-b3bf-1bc0cfa32a48, rgb(52, 64, 84))\"},children:\"Working at Vijil this summer, Aditya is a 5th year PhD student at the University of Illinois at Urbana Champaign. His work broadly looks at how individuals and groups can understand large algorithmic systems (e.g pricing systems, recommendation systems, LLM) and work together to achieve better outcomes in a fair sense. Prior to starting his PhD, he worked as a Quant at Goldman Sachs and holds a Master\u2019s in Computational Science and Engineering from Harvard (working with Hima Lakkaraju) and a Bachelors of Science in Computer Science and Applied & Computational Mathematics from Caltech. You can learn more about him at https://adityakaran.github.io/\"})}),className:\"framer-1fcg6rr\",fonts:[\"FS;Satoshi-medium\"],text:rnOpXDHIZ,verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mdxvmc\",\"data-framer-name\":\"Blog Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g72tqo\",\"data-framer-name\":\"Latest Blog\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{lI1wv72_S:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tmfyw6\",\"data-styles-preset\":\"r42qsDqci\",style:{\"--framer-text-alignment\":\"left\"},children:\"Lastest Blog\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:200,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:60}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1tmfyw6\",\"data-styles-preset\":\"r42qsDqci\",children:\"Lastest Blog\"})}),className:\"framer-daqsjy\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y874rf\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"KMomFl2Oi\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"KMomFl2Oi\",name:\"e552oNwvO\",type:\"Identifier\"},{collection:\"KMomFl2Oi\",name:\"MD5D6o6Dl\",type:\"Identifier\"},{collection:\"KMomFl2Oi\",name:\"GkxQmTQi5\",type:\"Identifier\"},{collection:\"KMomFl2Oi\",name:\"vr6P3OpCG\",type:\"Identifier\"},{collection:\"KMomFl2Oi\",name:\"mwKFkIZLc\",type:\"Identifier\"},{collection:\"KMomFl2Oi\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({e552oNwvO:e552oNwvOKMomFl2Oi,GkxQmTQi5:GkxQmTQi5KMomFl2Oi,id:idKMomFl2Oi,MD5D6o6Dl:MD5D6o6DlKMomFl2Oi,mwKFkIZLc:mwKFkIZLcKMomFl2Oi,vr6P3OpCG:vr6P3OpCGKMomFl2Oi},index)=>{e552oNwvOKMomFl2Oi??=\"\";GkxQmTQi5KMomFl2Oi??=\"\";vr6P3OpCGKMomFl2Oi??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`KMomFl2Oi-${idKMomFl2Oi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{e552oNwvO:e552oNwvOKMomFl2Oi},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{e552oNwvO:e552oNwvOKMomFl2Oi},webPageId:\"DlwhQkN6z\"},implicitPathVariables:undefined},{href:{pathVariables:{e552oNwvO:e552oNwvOKMomFl2Oi},webPageId:\"DlwhQkN6z\"},implicitPathVariables:undefined},{href:{pathVariables:{e552oNwvO:e552oNwvOKMomFl2Oi},webPageId:\"DlwhQkN6z\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{y:(componentViewport?.y||0)+0+525.4+60+0+0+99.2+0+0},lI1wv72_S:{y:(componentViewport?.y||0)+0+630.2+60+0+0+99.2+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:395,width:`max((min(${componentViewport?.width||\"100vw\"} - 60px, 950px) - 40px) / 3, 50px)`,y:(componentViewport?.y||0)+0+687.8+60+0+0+99.2+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c13h2n-container\",nodeId:\"TFmgktlGF\",scopeId:\"DlwhQkN6z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{EF97nP1jJ:resolvedLinks[2]},lI1wv72_S:{EF97nP1jJ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BlogItem,{EF97nP1jJ:resolvedLinks[0],fd9PfOpgk:enumToDisplayNameFunctions[\"mwKFkIZLc\"]?.(mwKFkIZLcKMomFl2Oi,activeLocale),height:\"100%\",id:\"TFmgktlGF\",layoutId:\"TFmgktlGF\",o3lAMUIq3:GkxQmTQi5KMomFl2Oi,ors4Yzdbp:toResponsiveImage(MD5D6o6DlKMomFl2Oi),style:{width:\"100%\"},SZ23SHtu7:vr6P3OpCGKMomFl2Oi,width:\"100%\"})})})})})})})},idKMomFl2Oi);})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xujiu3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W1IIJ3oqQ\",scopeId:\"DlwhQkN6z\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"W1IIJ3oqQ\",intensity:8,layoutId:\"W1IIJ3oqQ\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{y:(componentViewport?.y||0)+0+1359.6},lI1wv72_S:{y:(componentViewport?.y||0)+0+1464.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:262,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1522,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y1kuit-container\",nodeId:\"FXdqFFZMq\",scopeId:\"DlwhQkN6z\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{variant:\"LhSowhNAn\"}},children:/*#__PURE__*/_jsx(Footer2,{height:\"100%\",id:\"FXdqFFZMq\",layoutId:\"FXdqFFZMq\",style:{width:\"100%\"},variant:\"e4RFM7v5Q\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:\"min(100vw, 1440px)\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1otec39-container\",layoutScroll:true,nodeId:\"XfaTMwQuT\",rendersWithMotion:true,scopeId:\"DlwhQkN6z\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{chJicueOy:{__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:\"j6TlFciTS\"},__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,variant:\"j6TlFciTS\"},lI1wv72_S:{variant:\"NS7lDv0Ik\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{height:\"100%\",id:\"XfaTMwQuT\",layoutId:\"XfaTMwQuT\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"KAh5wwsrO\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wUx26.framer-1yvbr5p, .framer-wUx26 .framer-1yvbr5p { display: block; }\",\".framer-wUx26.framer-1byt0f7 { align-content: center; align-items: center; background-color: var(--token-cb3e5e73-fbf0-43c1-a605-e89bc81b00cc, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-wUx26 .framer-1xic1la { --border-bottom-width: 1px; --border-color: var(--token-02b1808e-ab0e-4234-87f9-3d206b3bfdb7, rgba(0, 0, 0, 0.07)); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 200px 30px 96px 30px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-17gxntc { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 65px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-wUx26 .framer-1pkj7m2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-wUx26 .framer-9xsspe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1072px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1cudu0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-wUx26 .framer-1394tc7 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-mj1fs8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-wUx26 .framer-1ragnba { align-content: center; align-items: center; background-color: rgba(30, 103, 206, 0.1); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-wUx26 .framer-13tmwo3, .framer-wUx26 .framer-1hw8axt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 1; }\",\".framer-wUx26 .framer-8nnlbl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1gtjmne { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-wUx26 .framer-1rwm0cc { aspect-ratio: 1 / 1; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-wUx26 .framer-8d3u7t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-wUx26 .framer-1m9du8z { --framer-paragraph-spacing: 0px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-wUx26 .framer-cingv1, .framer-wUx26 .framer-1mxm7o7 { --framer-paragraph-spacing: 24px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wUx26 .framer-1gvht4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1mueznw { --border-bottom-width: 1px; --border-color: var(--token-e68482e3-7718-4ff9-af40-2df4dad739ed, rgba(255, 255, 255, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 217px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1wljw5n, .framer-wUx26 .framer-g0ayug, .framer-wUx26 .framer-qsrk8p { --border-bottom-width: 1px; --border-color: var(--token-e68482e3-7718-4ff9-af40-2df4dad739ed, rgba(255, 255, 255, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.4423480083857443 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 139px); position: relative; width: 100%; }\",\".framer-wUx26 .framer-1j51icp { --border-bottom-width: 1px; --border-color: var(--token-e68482e3-7718-4ff9-af40-2df4dad739ed, rgba(255, 255, 255, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 2.819672131147541 / 1; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 71px); position: relative; width: 100%; }\",\".framer-wUx26 .framer-eg0rag { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wUx26 .framer-1rnodue { align-content: flex-start; align-items: flex-start; 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-wUx26 .framer-utexxk { --border-bottom-width: 1px; --border-color: var(--token-e68482e3-7718-4ff9-af40-2df4dad739ed, rgba(255, 255, 255, 0.08)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.3986928104575163 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 143px); position: relative; width: 40%; }\",\".framer-wUx26 .framer-1fcg6rr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wUx26 .framer-1mdxvmc { 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: 60px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1g72tqo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 950px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-daqsjy { --framer-paragraph-spacing: 30px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-wUx26 .framer-y874rf { display: grid; flex: none; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1c13h2n-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-wUx26 .framer-xujiu3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wUx26 .framer-y1kuit-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-wUx26 .framer-1otec39-container { flex: none; height: auto; left: 50%; max-width: 1440px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wUx26.framer-1byt0f7, .framer-wUx26 .framer-1xic1la, .framer-wUx26 .framer-17gxntc, .framer-wUx26 .framer-1pkj7m2, .framer-wUx26 .framer-9xsspe, .framer-wUx26 .framer-1cudu0c, .framer-wUx26 .framer-1394tc7, .framer-wUx26 .framer-1ragnba, .framer-wUx26 .framer-1gtjmne, .framer-wUx26 .framer-8d3u7t, .framer-wUx26 .framer-1gvht4l, .framer-wUx26 .framer-1rnodue, .framer-wUx26 .framer-1mdxvmc, .framer-wUx26 .framer-1g72tqo { gap: 0px; } .framer-wUx26.framer-1byt0f7 > *, .framer-wUx26 .framer-8d3u7t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-wUx26.framer-1byt0f7 > :first-child, .framer-wUx26 .framer-1pkj7m2 > :first-child, .framer-wUx26 .framer-9xsspe > :first-child, .framer-wUx26 .framer-1cudu0c > :first-child, .framer-wUx26 .framer-1394tc7 > :first-child, .framer-wUx26 .framer-8d3u7t > :first-child, .framer-wUx26 .framer-1gvht4l > :first-child, .framer-wUx26 .framer-1rnodue > :first-child, .framer-wUx26 .framer-1mdxvmc > :first-child, .framer-wUx26 .framer-1g72tqo > :first-child { margin-top: 0px; } .framer-wUx26.framer-1byt0f7 > :last-child, .framer-wUx26 .framer-1pkj7m2 > :last-child, .framer-wUx26 .framer-9xsspe > :last-child, .framer-wUx26 .framer-1cudu0c > :last-child, .framer-wUx26 .framer-1394tc7 > :last-child, .framer-wUx26 .framer-8d3u7t > :last-child, .framer-wUx26 .framer-1gvht4l > :last-child, .framer-wUx26 .framer-1rnodue > :last-child, .framer-wUx26 .framer-1mdxvmc > :last-child, .framer-wUx26 .framer-1g72tqo > :last-child { margin-bottom: 0px; } .framer-wUx26 .framer-1xic1la > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-wUx26 .framer-1xic1la > :first-child, .framer-wUx26 .framer-17gxntc > :first-child, .framer-wUx26 .framer-1ragnba > :first-child, .framer-wUx26 .framer-1gtjmne > :first-child { margin-left: 0px; } .framer-wUx26 .framer-1xic1la > :last-child, .framer-wUx26 .framer-17gxntc > :last-child, .framer-wUx26 .framer-1ragnba > :last-child, .framer-wUx26 .framer-1gtjmne > :last-child { margin-right: 0px; } .framer-wUx26 .framer-17gxntc > * { margin: 0px; margin-left: calc(65px / 2); margin-right: calc(65px / 2); } .framer-wUx26 .framer-1pkj7m2 > *, .framer-wUx26 .framer-1g72tqo > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wUx26 .framer-9xsspe > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-wUx26 .framer-1cudu0c > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-wUx26 .framer-1394tc7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-wUx26 .framer-1ragnba > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wUx26 .framer-1gtjmne > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-wUx26 .framer-1gvht4l > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wUx26 .framer-1rnodue > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-wUx26 .framer-1mdxvmc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,'.framer-wUx26[data-border=\"true\"]::after, .framer-wUx26 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-wUx26.framer-1byt0f7 { width: 810px; } .framer-wUx26 .framer-1xic1la { padding: 160px 32px 64px 32px; } .framer-wUx26 .framer-9xsspe { gap: 32px; } .framer-wUx26 .framer-1394tc7, .framer-wUx26 .framer-mj1fs8 { order: 0; } .framer-wUx26 .framer-1ragnba, .framer-wUx26 .framer-eg0rag { order: 2; } .framer-wUx26 .framer-8nnlbl, .framer-wUx26 .framer-cingv1 { order: 1; } .framer-wUx26 .framer-1gvht4l { order: 3; } .framer-wUx26 .framer-1mueznw { height: 81px; } .framer-wUx26 .framer-daqsjy { white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wUx26 .framer-9xsspe { gap: 0px; } .framer-wUx26 .framer-9xsspe > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wUx26 .framer-9xsspe > :first-child { margin-top: 0px; } .framer-wUx26 .framer-9xsspe > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-wUx26.framer-1byt0f7 { width: 390px; } .framer-wUx26 .framer-1xic1la { flex-direction: column; padding: 120px 24px 64px 24px; } .framer-wUx26 .framer-17gxntc { flex: none; width: 100%; } .framer-wUx26 .framer-9xsspe { gap: 32px; } .framer-wUx26 .framer-1cudu0c { gap: 24px; } .framer-wUx26 .framer-1394tc7, .framer-wUx26 .framer-1g72tqo { order: 0; } .framer-wUx26 .framer-cingv1 { order: 1; } .framer-wUx26 .framer-1gvht4l { order: 3; } .framer-wUx26 .framer-eg0rag { order: 2; } .framer-wUx26 .framer-daqsjy { white-space: pre; width: auto; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-wUx26 .framer-1xic1la, .framer-wUx26 .framer-9xsspe, .framer-wUx26 .framer-1cudu0c { gap: 0px; } .framer-wUx26 .framer-1xic1la > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-wUx26 .framer-1xic1la > :first-child, .framer-wUx26 .framer-9xsspe > :first-child, .framer-wUx26 .framer-1cudu0c > :first-child { margin-top: 0px; } .framer-wUx26 .framer-1xic1la > :last-child, .framer-wUx26 .framer-9xsspe > :last-child, .framer-wUx26 .framer-1cudu0c > :last-child { margin-bottom: 0px; } .framer-wUx26 .framer-9xsspe > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-wUx26 .framer-1cudu0c > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1937\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"lI1wv72_S\":{\"layout\":[\"fixed\",\"auto\"]},\"chJicueOy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"RDDCUPeNs\":{\"pattern\":\":RDDCUPeNs\",\"name\":\"post\"}}\n * @framerResponsiveScreen\n */const FramerDlwhQkN6z=withCSS(Component,css,\"framer-wUx26\");export default FramerDlwhQkN6z;FramerDlwhQkN6z.displayName=\"Blog\";FramerDlwhQkN6z.defaultProps={height:1937,width:1200};addFonts(FramerDlwhQkN6z,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...BlogItemFonts,...SmoothScrollFonts,...Footer2Fonts,...NavigationFonts,...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),...componentPresets.fonts?.[\"zMGAObhko\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"zMGAObhko\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDlwhQkN6z\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lI1wv72_S\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"chJicueOy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"1937\",\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"RDDCUPeNs\\\":{\\\"pattern\\\":\\\":RDDCUPeNs\\\",\\\"name\\\":\\\"post\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "t", "i", "Animate", "e", "s", "o", "n", "Dimensions", "window", "Emitter", "VirtualScroll", "Lenis", "l", "h", "a", "c", "u", "d", "p", "m", "v", "g", "w", "S", "r", "SmoothScroll", "props", "intensity", "lenis", "pe", "ue", "overlayElement", "checkOverflow", "window", "htmlObserver", "mutations", "mutation", "allElements", "i", "element", "Lenis", "raf", "time", "styleElement", "anchorLinksData", "anchor", "href", "decodedHref", "scrollMargin", "targetElement", "handleClick", "e", "handlers", "anchorElement", "index", "p", "l", "addPropertyControls", "ControlType", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "RichTextWithFX", "withFX", "RichText2", "BlogItemFonts", "getFonts", "ZgxT5GP79_default", "SmoothScrollFonts", "SmoothScroll", "Footer2Fonts", "uKXuO0kIG_default", "NavigationFonts", "ykWhHc2De_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "isSet", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transformTemplate1", "_", "t", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "rCyTjhkZI_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "GkxQmTQi5", "mwKFkIZLc", "oxAQOjERk", "Z76E_lcUO", "vr6P3OpCG", "zXWNBzYIf", "GgbRBHLv5", "JGNP9Tgll", "xx_LsZLL0", "YkIe8qLWs", "R_Ks97y2O", "w8TzlCzv8", "SoQ641okn", "F3AnEhptY", "rnOpXDHIZ", "e552oNwvOKMomFl2Oi", "MD5D6o6DlKMomFl2Oi", "GkxQmTQi5KMomFl2Oi", "vr6P3OpCGKMomFl2Oi", "mwKFkIZLcKMomFl2Oi", "idKMomFl2Oi", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "textContent", "enumToDisplayNameFunctions", "visible", "visible1", "visible2", "visible3", "visible4", "visible5", "visible6", "visible7", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "x", "RichText2", "getLoadingLazyAtYPosition", "Image2", "ComponentPresetsProvider", "RichTextWithFX", "ChildrenCanSuspend", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "ZgxT5GP79_default", "SmoothScroll", "uKXuO0kIG_default", "NavigationWithVariantAppearEffect", "css", "FramerDlwhQkN6z", "withCSS", "DlwhQkN6z_default", "addFonts", "BlogItemFonts", "SmoothScrollFonts", "Footer2Fonts", "NavigationFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "__FramerMetadata__"]
}
