{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framerusercontent.com/modules/3XiZzxOo4302UXuoaRAO/IA4OOSGjCogp7AvzXwPy/Signup_Bar.js", "ssg:https://framerusercontent.com/modules/NSrcb5IrQhPoWLQstekN/lrTmFEPXYRPKrbExBmpE/pFxUC01W4.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", "// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({email:\"#0099FF\",isSubmitted:false});const createLoomEvent=email=>{const myHeaders=new Headers;myHeaders.append(\"Content-Type\",\"application/json\");const raw=JSON.stringify({email:email,eventName:\"signup\"});const requestOptions={method:\"POST\",headers:myHeaders,body:raw,redirect:\"follow\"};fetch(\"https://uberleads.azure-api.net/api/application/trigger-loom-event\",requestOptions).then(response=>{if(response.ok){window.location.href=`https://uberleads-production.us.auth0.com/authorize?response_type=code&client_id=e5nQxPwE9kuO3Q7cZjQtn42kJKBkqHAR&redirect_uri=https://platform.discoverdata.ai/.auth/login/auth0/callback&screen_hint=signup&login_hint=${email}`;}}).catch(error=>console.error(error));};const createLoomContact=email=>{const myHeaders=new Headers;myHeaders.append(\"Content-Type\",\"application/json\");const raw=JSON.stringify({email:email});const requestOptions={method:\"POST\",headers:myHeaders,body:raw,redirect:\"follow\"};fetch(\"https://uberleads.azure-api.net/api/application/create-loom-contact\",requestOptions).then(response=>{createLoomEvent(email);}).catch(error=>console.error(error));};/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n */export default function Input(props){const[store,setStore]=useStore();// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nvar re=/(([^<>()[\\]\\\\.,;:\\s@\\\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\\\"]+)*)|(\\\".+\\\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))/;return /*#__PURE__*/_jsxs(\"div\",{style:containerStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:rowStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"email\",placeholder:\"Email Addresss\",style:inputStyle,onChange:e=>setStore({email:e.target.value})}),re.test(store.email)?/*#__PURE__*/_jsx(\"button\",{onClick:()=>{if(typeof window.gr===\"function\"){// \uD83D\uDC47\uFE0F this runs\nconsole.log(\"\u2705 gr function is defined\");window.gr(\"track\",\"conversion\",{email:store.email});}else{console.log(\"\u26D4\uFE0F gr function is NOT defined\");}createLoomContact(store.email);},style:buttonStyle,children:\"Sign up\"}):/*#__PURE__*/_jsx(\"button\",{onClick:()=>{setStore({isSubmitted:true});},style:buttonStyle,children:\"Sign up\"})]}),store.isSubmitted&&!re.test(store.email)&&/*#__PURE__*/_jsx(\"span\",{style:hintStyle,children:\"Please provide a valid email address\"})]});}// Styles are written in object syntax\n// Learn more: https://reactjs.org/docs/dom-elements.html#style\nconst hintStyle={color:\"red\",marginTop:\"10px\"};const containerStyle={height:\"100%\",minWidth:\"300px\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\",overflow:\"hidden\"};const rowStyle={width:\"100%\",display:\"flex\",flexDirection:\"row\",justifyContent:\"center\",flexWrap:\"wrap\",gap:10};const inputStyle={appearance:`none`,display:\"flex\",lineHeight:`1.4em`,outline:`none`,border:`none`,padding:`20px`,borderRadius:`12px`,fontFamily:`\"Inter Regular\", Inter, Inter, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto,Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`,fontWeight:400,fontSize:`16px`,background:`var(--token-40c03004-286a-43c1-b36f-58b60663152c, rgb(242, 242, 242))`,color:`rgb(34, 34, 34)`,boxShadow:`transparent 0px 0px 0px 1px inset`};const buttonStyle={cursor:\"pointer\",backgroundColor:\"#222222\",appearance:\"none\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\",padding:\"20px\",fontFamily:`\"Inter Regular\", Inter, Inter, system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`,borderRadius:\"12px\",fontWeight:400,fontSize:\"16px\",background:\"var(--token-40c03004-286a-43c1-b36f-58b60663152c, #222222)\",color:\"white\",boxShadow:\"transparent 0px 0px 0px 1px inset\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerSupportedLayoutWidth\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Signup_Bar.map", "// Generated by Framer (a4439fa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Input from\"#framer/local/codeFile/i4tKeP4/Signup_Bar.js\";import*as sharedStyle from\"#framer/local/css/RiWIUouR0/RiWIUouR0.js\";import metadataProvider from\"#framer/local/webPageMetadata/pFxUC01W4/pFxUC01W4.js\";const MotionDivWithFX=withFX(motion.div);const InputFonts=getFonts(Input);const cycleOrder=[\"BwOAYr8DH\",\"WY33Zjhbx\"];const breakpoints={BwOAYr8DH:\"(min-width: 1200px)\",WY33Zjhbx:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-mKhGx\";const variantClassNames={BwOAYr8DH:\"framer-v-8vdrx4\",WY33Zjhbx:\"framer-v-mmc26a\"};const animation={opacity:0,rotate:-180,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:-180,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:20,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"BwOAYr8DH\",Phone:\"WY33Zjhbx\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"BwOAYr8DH\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-mKhGx`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-mKhGx`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"BwOAYr8DH\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8vdrx4\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3kciga\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:341.3333333333333,pixelHeight:64,pixelWidth:512,src:\"https://framerusercontent.com/images/tFvss2dZGQiAGBkrwyVSmoPTPs.png\"},className:\"framer-1lcwydc\",\"data-framer-name\":\"image\",name:\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1na0j9o\",\"data-styles-preset\":\"RiWIUouR0\",children:\"Get Started Here\"})}),className:\"framer-g2qr1h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ywd8z5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qnr8q9-container\",children:/*#__PURE__*/_jsx(Input,{height:\"100%\",id:\"zXB5HuL3n\",layoutId:\"zXB5HuL3n\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bfgl0h\"})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-mKhGx { background: rgb(248, 244, 222); }`,\".framer-mKhGx.framer-1elzxt6, .framer-mKhGx .framer-1elzxt6 { display: block; }\",\".framer-mKhGx.framer-8vdrx4 { align-content: center; align-items: center; background-color: #f8f4de; display: flex; flex-direction: column; flex-wrap: nowrap; height: 650px; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; width: 1200px; }\",\".framer-mKhGx .framer-3kciga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 45px; min-width: 45px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mKhGx .framer-1lcwydc { aspect-ratio: 8 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 400px; }\",\".framer-mKhGx .framer-g2qr1h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-mKhGx .framer-1ywd8z5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-mKhGx .framer-1qnr8q9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-mKhGx .framer-1bfgl0h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; min-height: 34px; min-width: 34px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-mKhGx .framer-3kciga, .framer-mKhGx .framer-1ywd8z5, .framer-mKhGx .framer-1bfgl0h { gap: 0px; } .framer-mKhGx .framer-3kciga > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-mKhGx .framer-3kciga > :first-child, .framer-mKhGx .framer-1bfgl0h > :first-child { margin-left: 0px; } .framer-mKhGx .framer-3kciga > :last-child, .framer-mKhGx .framer-1bfgl0h > :last-child { margin-right: 0px; } .framer-mKhGx .framer-1ywd8z5 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-mKhGx .framer-1ywd8z5 > :first-child { margin-top: 0px; } .framer-mKhGx .framer-1ywd8z5 > :last-child { margin-bottom: 0px; } .framer-mKhGx .framer-1bfgl0h > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } }\",\"@media (min-width: 1200px) { .framer-mKhGx .hidden-8vdrx4 { display: none !important; } }\",`@media (max-width: 1199px) { .framer-mKhGx .hidden-mmc26a { display: none !important; } .${metadata.bodyClassName}-framer-mKhGx { background: rgb(248, 244, 222); } .framer-mKhGx.framer-8vdrx4 { width: 390px; } .framer-mKhGx .framer-1lcwydc { height: var(--framer-aspect-ratio-supported, 37px); width: 300px; } .framer-mKhGx .framer-1ywd8z5 { width: 310px; }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 650\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"WY33Zjhbx\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerpFxUC01W4=withCSS(Component,css,\"framer-mKhGx\");export default FramerpFxUC01W4;FramerpFxUC01W4.displayName=\"Page\";FramerpFxUC01W4.defaultProps={height:650,width:1200};addFonts(FramerpFxUC01W4,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...InputFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpFxUC01W4\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"650\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WY33Zjhbx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "useStore", "createStore", "createLoomEvent", "email", "myHeaders", "raw", "response", "window", "error", "createLoomContact", "Input", "props", "store", "setStore", "re", "u", "containerStyle", "rowStyle", "p", "inputStyle", "e", "buttonStyle", "hintStyle", "MotionDivWithFX", "withFX", "motion", "InputFonts", "getFonts", "Input", "breakpoints", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "MotionDivWithFX", "Image2", "RichText2", "x", "ComponentViewportProvider", "Container", "Input", "css", "FramerpFxUC01W4", "withCSS", "pFxUC01W4_default", "addFonts", "InputFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
