{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/iRwRrTHM2eA7MCzoMyAJ/3BuFMZ7WVt75Jq59uaj9/UncodeNumber_1_1_1.js", "ssg:https://framerusercontent.com/modules/l3jhRDPwbuQDN00KjFqC/60NtB8P1AZA2AEGIwa1y/S9tstmm16.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{useFormValue}from\"https://framer.com/m/Store-nhJr.js\";// Lista de pa\u00EDses\nconst defaultCountryOptions=[{code:\"+49\",name:\"Germany\",flag:\"\uD83C\uDDE9\uD83C\uDDEA\",format:\"+49 (###) ###-####\"},{code:\"+33\",name:\"France\",flag:\"\uD83C\uDDEB\uD83C\uDDF7\",format:\"+33 ## ## ## ##\"},{code:\"+34\",name:\"Spain\",flag:\"\uD83C\uDDEA\uD83C\uDDF8\",format:\"+34 ### ## ## ##\"},{code:\"+39\",name:\"Italy\",flag:\"\uD83C\uDDEE\uD83C\uDDF9\",format:\"+39 ### ### ####\"},{code:\"+31\",name:\"Netherlands\",flag:\"\uD83C\uDDF3\uD83C\uDDF1\",format:\"+31 ## #### ####\"},{code:\"+351\",name:\"Portugal\",flag:\"\uD83C\uDDF5\uD83C\uDDF9\",format:\"+351 ### ### ###\"},{code:\"+44\",name:\"UK\",flag:\"\uD83C\uDDEC\uD83C\uDDE7\",format:\"+44 #### ### ####\"},{code:\"+55\",name:\"Brazil\",flag:\"\uD83C\uDDE7\uD83C\uDDF7\",format:\"+55 (##) # ####-####\"},{code:\"+1\",name:\"USA\",flag:\"\uD83C\uDDFA\uD83C\uDDF8\",format:\"+1 (###) ###-####\"}];const useStore=createStore({selectedValue:\"\"});const formatPhoneNumber=(numbers,format)=>{let result=format;let numberIndex=0;for(let i=0;i<format.length&&numberIndex<numbers.length;i++){if(format[i]===\"#\"){result=result.substring(0,i)+numbers[numberIndex]+result.substring(i+1);numberIndex++;}}return result.indexOf(\"#\")>=0?result.substring(0,result.indexOf(\"#\")):result;};export function withFormInput(Component){return props=>{const[inputValue,setInputValue]=useFormValue(props.name,props.defaultValue);const[wasBlurred,setWasBlurred]=useState(false);const handleChange=event=>{const newValue=event.target.value;const selectedCountry=defaultCountryOptions.find(country=>country.code===props.selectedCountry);if(selectedCountry){const formattedValue=formatPhoneNumber(newValue,selectedCountry.format);setInputValue(formattedValue);}const isValid=!newValue.includes(\"#\")&&newValue.trim()!==\"\";props.onValidationChange&&props.onValidationChange(isValid);};return /*#__PURE__*/_jsx(Component,{...props,value:inputValue,onChange:handleChange,required:props.isRequired});};}export function UncodeNumber(props){const{name,placeholder,padding,textColor,backgroundColor,borderColor,borderRadius,font,fontSize,placeholderColor,countryOptions=defaultCountryOptions,isRequired,codeBy,gap,onValidationChange}=props;const[selectedCountry,setSelectedCountry]=useState(countryOptions[0].code);const[inputValue,setInputValue]=useState(\"\");const containerRef=useRef(null);const handleCountryChange=event=>{setSelectedCountry(event.target.value);};const handleChange=event=>{const rawValue=event.target.value;const selectedCountryObj=countryOptions.find(country=>country.code===selectedCountry);if(selectedCountryObj){// Se estiver apagando, permite\nif(rawValue.length<inputValue.length){setInputValue(rawValue);return;}// Remove o c\u00F3digo do pa\u00EDs do come\u00E7o do valor se existir\nlet valueWithoutCountryCode=rawValue;if(rawValue.startsWith(selectedCountryObj.code)){valueWithoutCountryCode=rawValue.substring(selectedCountryObj.code.length);}// Remove tudo exceto n\u00FAmeros\nconst numbersOnly=valueWithoutCountryCode.replace(/\\D/g,\"\");// Limita ao m\u00E1ximo de n\u00FAmeros do formato\nconst maxNumbers=selectedCountryObj.format.split(\"\").filter(char=>char===\"#\").length;const limitedNumbers=numbersOnly.slice(0,maxNumbers);// Aplica a formata\u00E7\u00E3o usando o formato completo com c\u00F3digo do pa\u00EDs\nconst formattedValue=formatPhoneNumber(limitedNumbers,selectedCountryObj.format);setInputValue(formattedValue);// Valida\u00E7\u00E3o\nconst isValid=limitedNumbers.length===maxNumbers;onValidationChange&&onValidationChange(isValid);}};const styles={container:{display:\"flex\",flexDirection:\"row\",padding:`${padding}px`,color:textColor,backgroundColor:backgroundColor,borderRadius:`${borderRadius}px`,alignItems:\"center\"},input:{padding:\"10px\",borderRadius:\"24px\",color:textColor,backgroundColor:backgroundColor,flex:1,marginLeft:gap,border:`1px solid ${borderColor}`,transition:\"border 0.3s ease\",fontFamily:font.fontFamily,fontSize:`${fontSize}px`},select:{display:countryOptions.length>1?\"block\":\"none\",padding:\"10px\",borderRadius:\"24px\",border:`1px solid ${borderColor}`,color:\"#284348\",backgroundColor:\"#ffff\",fontSize:`${fontSize}px`,appearance:\"none\",WebkitAppearance:\"none\",MozAppearance:\"none\"}};return /*#__PURE__*/_jsxs(\"div\",{ref:containerRef,children:[/*#__PURE__*/_jsxs(\"div\",{style:styles.container,children:[/*#__PURE__*/_jsx(\"select\",{style:styles.select,value:selectedCountry,onChange:handleCountryChange,children:countryOptions.map(country=>/*#__PURE__*/_jsxs(\"option\",{value:country.code,children:[country.flag,\" \",country.code]},country.code))}),/*#__PURE__*/_jsx(\"input\",{type:\"text\",name:name,placeholder:placeholder,value:inputValue,onChange:handleChange,style:styles.input,required:isRequired})]}),/*#__PURE__*/_jsx(\"style\",{children:`\n                   ::placeholder {\n                       color: ${placeholderColor};\n                   }\n               `})]});}addPropertyControls(UncodeNumber,{countryOptions:{type:ControlType.Array,title:\"Country Options\",defaultValue:defaultCountryOptions,propertyControl:{type:ControlType.Object,controls:{code:{type:ControlType.String,title:\"Country Code\",description:\"C\\xf3digo do pa\\xeds / Country code\"},name:{type:ControlType.String,title:\"Country Name\",description:\"Nome do pa\\xeds / Country name\"},flag:{type:ControlType.String,title:\"Flag Emoji\",description:\"Emoji da bandeira do pa\\xeds / Country flag emoji\"},format:{type:ControlType.String,title:\"Phone Number Format\",description:\"Formato do n\\xfamero de telefone / Phone number format\"}}}},name:{type:ControlType.String,title:\"Name\",defaultValue:\"numberInputValue\",description:\"Nome do campo de entrada / Input field name\"},placeholder:{type:ControlType.String,title:\"Placeholder\",defaultValue:\"Enter your phone number\",description:\"Texto de espa\\xe7o reservado / Placeholder text\"},padding:{type:ControlType.FusedNumber,title:\"Padding\",toggleKey:\"paddingPerSide\",toggleTitles:[\"All Sides\",\"Individual\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,defaultValue:10,description:\"Espa\\xe7amento interno do campo / Internal field spacing\"},gap:{type:ControlType.Number,title:\"Gap\",defaultValue:10,description:\"Espa\\xe7amento entre o seletor e o campo / Spacing between selector and field\"},textColor:{type:ControlType.Color,title:\"Text Color\",defaultValue:\"#ffffff\",description:\"Cor do texto no campo / Text color in field\"},backgroundColor:{type:ControlType.Color,title:\"Background Color\",defaultValue:\"#1B2622\",description:\"Cor de fundo do campo / Field background color\"},borderColor:{type:ControlType.Color,title:\"Border Color\",defaultValue:\"#ffffff\",description:\"Cor da borda do campo / Field border color\"},borderRadius:{type:ControlType.Number,title:\"Border Radius\",defaultValue:24,description:\"Raio da borda do campo / Field border radius\"},font:{type:ControlType.Font,controls:\"extended\",displayFontSize:true,displayTextAlignment:false,defaultFontType:\"monospace\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"},description:\"Fonte a ser utilizada no campo / Font to be used in field\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:16,description:\"Tamanho da fonte do campo / Field font size\"},placeholderColor:{type:ControlType.Color,title:\"Placeholder Color\",defaultValue:\"#ffffff\",description:\"Cor do texto do placeholder / Placeholder text color\"},isRequired:{type:ControlType.Boolean,title:\"Required\",defaultValue:false,description:\"Campo \\xe9 obrigat\\xf3rio / Field is required\"},codeBy:{type:ControlType.String,title:\" \",defaultValue:\"Autor:\",readOnly:true,description:\"Este componente foi criado por @omatusaelhorch / This component was created by @omatusaelhorch\"}})// Code by @omatusaelhorch\n;\nexport const __FramerMetadata__ = {\"exports\":{\"UncodeNumber\":{\"type\":\"reactComponent\",\"name\":\"UncodeNumber\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"withFormInput\":{\"type\":\"reactComponent\",\"name\":\"withFormInput\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UncodeNumber_1_1_1.map", "// Generated by Framer (7d51cf8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={sXmEm9Wtl:{hover:true,pressed:true}};const cycleOrder=[\"sXmEm9Wtl\",\"fzEBOyGN5\",\"KluiDsfEj\",\"Itgn3fo3_\",\"A8HqyuulT\"];const serializationHash=\"framer-fEI5R\";const variantClassNames={A8HqyuulT:\"framer-v-19rl0ny\",fzEBOyGN5:\"framer-v-yw1ng7\",Itgn3fo3_:\"framer-v-jfkdr5\",KluiDsfEj:\"framer-v-p13cdq\",sXmEm9Wtl:\"framer-v-aqkbmn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"sXmEm9Wtl\",Disabled:\"KluiDsfEj\",Error:\"A8HqyuulT\",Loading:\"fzEBOyGN5\",Success:\"Itgn3fo3_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"sXmEm9Wtl\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sXmEm9Wtl\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"fzEBOyGN5\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"fzEBOyGN5\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-aqkbmn\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"sXmEm9Wtl\",ref:refBinding,style:{backgroundColor:\"rgb(78, 212, 0)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"sXmEm9Wtl-hover\":{backgroundColor:\"rgb(37, 102, 0)\",opacity:1},\"sXmEm9Wtl-pressed\":{backgroundColor:\"rgb(255, 255, 255)\",opacity:1},A8HqyuulT:{backgroundColor:\"rgba(255, 34, 68, 0.15)\",opacity:1},Itgn3fo3_:{opacity:1},KluiDsfEj:{opacity:.5}},...addPropertyOverrides({\"sXmEm9Wtl-hover\":{\"data-framer-name\":undefined},\"sXmEm9Wtl-pressed\":{\"data-framer-name\":undefined},A8HqyuulT:{\"data-framer-name\":\"Error\"},fzEBOyGN5:{\"data-framer-name\":\"Loading\"},Itgn3fo3_:{\"data-framer-name\":\"Success\"},KluiDsfEj:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbHJveS1Cb2xk\",\"--framer-font-family\":'\"Gilroy-Bold\", \"Gilroy-Bold Placeholder\", sans-serif',\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-tcooor, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"GARANTIR MINHA VAGA\"})}),className:\"framer-5yb59a\",\"data-framer-name\":\"Entrar na lista de espera\",fonts:[\"CUSTOM;Gilroy-Bold\"],layoutDependency:layoutDependency,layoutId:\"x6jkp7hee\",style:{\"--extracted-tcooor\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{A8HqyuulT:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"},Itgn3fo3_:{\"--extracted-r6o4lv\":\"rgb(8, 74, 65)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A8HqyuulT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Somethin went wrong\"})}),fonts:[\"Inter-SemiBold\"]},Itgn3fo3_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(8, 74, 65))\"},children:\"Thank you\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-82alxd\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"AdGHSwaQN\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qggvyn\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"rUn1Xt4JS\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(8, 74, 65) 342deg)\",mask:\"none\",WebkitMask:\"none\"},variants:{fzEBOyGN5:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdk2qo\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"RhKS4kiiY\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fEI5R.framer-rst00h, .framer-fEI5R .framer-rst00h { display: block; }\",\".framer-fEI5R.framer-aqkbmn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 15px; position: relative; width: 207px; }\",\".framer-fEI5R .framer-5yb59a { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-fEI5R .framer-82alxd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-fEI5R .framer-1qggvyn { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-fEI5R .framer-1wdk2qo { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fEI5R.framer-aqkbmn { gap: 0px; } .framer-fEI5R.framer-aqkbmn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fEI5R.framer-aqkbmn > :first-child { margin-top: 0px; } .framer-fEI5R.framer-aqkbmn > :last-child { margin-bottom: 0px; } }\",\".framer-fEI5R.framer-v-yw1ng7.framer-aqkbmn { cursor: unset; min-width: 240px; }\",\".framer-fEI5R.framer-v-yw1ng7 .framer-1qggvyn { overflow: hidden; }\",\".framer-fEI5R.framer-v-p13cdq.framer-aqkbmn, .framer-fEI5R.framer-v-jfkdr5.framer-aqkbmn, .framer-fEI5R.framer-v-19rl0ny.framer-aqkbmn { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 207\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"fzEBOyGN5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"240px\",null,null,null]},\"KluiDsfEj\":{\"layout\":[\"fixed\",\"auto\"]},\"Itgn3fo3_\":{\"layout\":[\"fixed\",\"auto\"]},\"A8HqyuulT\":{\"layout\":[\"fixed\",\"auto\"]},\"wUcqkE6Jy\":{\"layout\":[\"fixed\",\"auto\"]},\"jSDb00tBH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerS9tstmm16=withCSS(Component,css,\"framer-fEI5R\");export default FramerS9tstmm16;FramerS9tstmm16.displayName=\"Button Primary 2\";FramerS9tstmm16.defaultProps={height:46,width:207};addPropertyControls(FramerS9tstmm16,{variant:{options:[\"sXmEm9Wtl\",\"fzEBOyGN5\",\"KluiDsfEj\",\"Itgn3fo3_\",\"A8HqyuulT\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerS9tstmm16,[{explicitInter:true,fonts:[{family:\"Gilroy-Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/IzdqF272mATppHOwrnmZWJwu74.woff2\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerS9tstmm16\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"207\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fzEBOyGN5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"240px\\\",null,null,null]},\\\"KluiDsfEj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Itgn3fo3_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A8HqyuulT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wUcqkE6Jy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jSDb00tBH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"46\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./S9tstmm16.map"],
  "mappings": "6OACA,IAAMA,GAAsB,CAAC,CAAC,KAAK,MAAM,KAAK,UAAU,KAAK,qBAAO,OAAO,oBAAoB,EAAE,CAAC,KAAK,MAAM,KAAK,SAAS,KAAK,qBAAO,OAAO,iBAAiB,EAAE,CAAC,KAAK,MAAM,KAAK,QAAQ,KAAK,qBAAO,OAAO,kBAAkB,EAAE,CAAC,KAAK,MAAM,KAAK,QAAQ,KAAK,qBAAO,OAAO,kBAAkB,EAAE,CAAC,KAAK,MAAM,KAAK,cAAc,KAAK,qBAAO,OAAO,kBAAkB,EAAE,CAAC,KAAK,OAAO,KAAK,WAAW,KAAK,qBAAO,OAAO,kBAAkB,EAAE,CAAC,KAAK,MAAM,KAAK,KAAK,KAAK,qBAAO,OAAO,mBAAmB,EAAE,CAAC,KAAK,MAAM,KAAK,SAAS,KAAK,qBAAO,OAAO,sBAAsB,EAAE,CAAC,KAAK,KAAK,KAAK,MAAM,KAAK,qBAAO,OAAO,mBAAmB,CAAC,EAAQC,GAASC,EAAY,CAAC,cAAc,EAAE,CAAC,EAAQC,GAAkB,CAACC,EAAQC,IAAS,CAAC,IAAIC,EAAOD,EAAWE,EAAY,EAAE,QAAQ,EAAE,EAAE,EAAEF,EAAO,QAAQE,EAAYH,EAAQ,OAAO,IAAQC,EAAO,CAAC,IAAI,MAAKC,EAAOA,EAAO,UAAU,EAAE,CAAC,EAAEF,EAAQG,CAAW,EAAED,EAAO,UAAU,EAAE,CAAC,EAAEC,KAAgB,OAAOD,EAAO,QAAQ,GAAG,GAAG,EAAEA,EAAO,UAAU,EAAEA,EAAO,QAAQ,GAAG,CAAC,EAAEA,CAAO,EAAksB,SAASE,GAAaC,EAAM,CAAC,GAAK,CAAC,KAAAC,EAAK,YAAAC,EAAY,QAAAC,EAAQ,UAAAC,EAAU,gBAAAC,EAAgB,YAAAC,EAAY,aAAAC,EAAa,KAAAC,EAAK,SAAAC,EAAS,iBAAAC,EAAiB,eAAAC,EAAeC,GAAsB,WAAAC,EAAW,OAAAC,EAAO,IAAAC,EAAI,mBAAAC,CAAkB,EAAEhB,EAAW,CAACiB,EAAgBC,CAAkB,EAAEC,EAASR,EAAe,CAAC,EAAE,IAAI,EAAO,CAACS,EAAWC,CAAa,EAAEF,EAAS,EAAE,EAAQG,EAAaC,EAAO,IAAI,EAAQC,EAAoBC,GAAO,CAACP,EAAmBO,EAAM,OAAO,KAAK,CAAE,EAAQC,EAAaD,GAAO,CAAC,IAAME,EAASF,EAAM,OAAO,MAAYG,EAAmBjB,EAAe,KAAKkB,GAASA,EAAQ,OAAOZ,CAAe,EAAE,GAAGW,EAAmB,CAClxE,GAAGD,EAAS,OAAOP,EAAW,OAAO,CAACC,EAAcM,CAAQ,EAAE,MAAO,CACrE,IAAIG,EAAwBH,EAAYA,EAAS,WAAWC,EAAmB,IAAI,IAAGE,EAAwBH,EAAS,UAAUC,EAAmB,KAAK,MAAM,GAC/J,IAAMG,GAAYD,EAAwB,QAAQ,MAAM,EAAE,EACpDE,EAAWJ,EAAmB,OAAO,MAAM,EAAE,EAAE,OAAOK,IAAMA,KAAO,GAAG,EAAE,OAAaC,EAAeH,GAAY,MAAM,EAAEC,CAAU,EAClIG,GAAeC,GAAkBF,EAAeN,EAAmB,MAAM,EAAEP,EAAcc,EAAc,EAC7G,IAAME,GAAQH,EAAe,SAASF,EAAWhB,GAAoBA,EAAmBqB,EAAO,CAAE,CAAC,EAAQC,EAAO,CAAC,UAAU,CAAC,QAAQ,OAAO,cAAc,MAAM,QAAQ,GAAGnC,CAAO,KAAK,MAAMC,EAAU,gBAAgBC,EAAgB,aAAa,GAAGE,CAAY,KAAK,WAAW,QAAQ,EAAE,MAAM,CAAC,QAAQ,OAAO,aAAa,OAAO,MAAMH,EAAU,gBAAgBC,EAAgB,KAAK,EAAE,WAAWU,EAAI,OAAO,aAAaT,CAAW,GAAG,WAAW,mBAAmB,WAAWE,EAAK,WAAW,SAAS,GAAGC,CAAQ,IAAI,EAAE,OAAO,CAAC,QAAQE,EAAe,OAAO,EAAE,QAAQ,OAAO,QAAQ,OAAO,aAAa,OAAO,OAAO,aAAaL,CAAW,GAAG,MAAM,UAAU,gBAAgB,QAAQ,SAAS,GAAGG,CAAQ,KAAK,WAAW,OAAO,iBAAiB,OAAO,cAAc,MAAM,CAAC,EAAE,OAAoB,EAAM,MAAM,CAAC,IAAIa,EAAa,SAAS,CAAc,EAAM,MAAM,CAAC,MAAMgB,EAAO,UAAU,SAAS,CAAcC,EAAK,SAAS,CAAC,MAAMD,EAAO,OAAO,MAAMrB,EAAgB,SAASO,EAAoB,SAASb,EAAe,IAAIkB,GAAsB,EAAM,SAAS,CAAC,MAAMA,EAAQ,KAAK,SAAS,CAACA,EAAQ,KAAK,IAAIA,EAAQ,IAAI,CAAC,EAAEA,EAAQ,IAAI,CAAC,CAAC,CAAC,EAAeU,EAAK,QAAQ,CAAC,KAAK,OAAO,KAAKtC,EAAK,YAAYC,EAAY,MAAMkB,EAAW,SAASM,EAAa,MAAMY,EAAO,MAAM,SAASzB,CAAU,CAAC,CAAC,CAAC,CAAC,EAAe0B,EAAK,QAAQ,CAAC,SAAS;AAAA;AAAA,gCAE1wC7B,CAAgB;AAAA;AAAA,gBAEhC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC8B,EAAoBzC,GAAa,CAAC,eAAe,CAAC,KAAK0C,EAAY,MAAM,MAAM,kBAAkB,aAAa7B,GAAsB,gBAAgB,CAAC,KAAK6B,EAAY,OAAO,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,YAAY,qCAAqC,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,YAAY,gCAAgC,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,YAAY,mDAAmD,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,sBAAsB,YAAY,wDAAwD,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,aAAa,mBAAmB,YAAY,6CAA6C,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,cAAc,aAAa,0BAA0B,YAAY,iDAAiD,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,MAAM,UAAU,UAAU,iBAAiB,aAAa,CAAC,YAAY,YAAY,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,EAAE,aAAa,GAAG,YAAY,0DAA0D,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,GAAG,YAAY,+EAA+E,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,aAAa,aAAa,UAAU,YAAY,6CAA6C,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,mBAAmB,aAAa,UAAU,YAAY,gDAAgD,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,eAAe,aAAa,UAAU,YAAY,4CAA4C,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,gBAAgB,aAAa,GAAG,YAAY,8CAA8C,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,SAAS,WAAW,gBAAgB,GAAK,qBAAqB,GAAM,gBAAgB,YAAY,aAAa,CAAC,SAAS,GAAG,WAAW,OAAO,EAAE,YAAY,2DAA2D,EAAE,SAAS,CAAC,KAAKA,EAAY,OAAO,MAAM,YAAY,aAAa,GAAG,YAAY,6CAA6C,EAAE,iBAAiB,CAAC,KAAKA,EAAY,MAAM,MAAM,oBAAoB,aAAa,UAAU,YAAY,sDAAsD,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,GAAM,YAAY,+CAA+C,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,IAAI,aAAa,SAAS,SAAS,GAAK,YAAY,gGAAgG,CAAC,CAAC,ECVv8E,IAAMC,GAAgBC,EAAOC,EAAO,GAAG,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAS1B,EAAO,OAAa2B,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,SAAS,YAAY,MAAM,YAAY,QAAQ,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU4B,GAA6BC,EAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,EAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAQC,EAAkBC,EAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAzC,EAAQ,GAAG0C,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAApD,CAAQ,EAAEqD,EAAgB,CAAC,WAAA1D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,IAAIuC,EAAW,QAAA/B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQyD,EAAiB3B,GAAuBD,EAAM1B,CAAQ,EAAuCuD,EAAkBC,EAAG5D,GAAkB,GAAhD,CAAC,CAAuE,EAAQ6D,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAAuC,OAAoB3B,EAAKyC,EAAY,CAAC,GAAGhB,GAAUT,EAAgB,SAAsBhB,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKT,GAAW,CAAC,MAAMN,GAAY,SAAsB,EAAMV,EAAO,IAAI,CAAC,GAAGmD,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,gBAAgBb,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,gBAAgB,kBAAkB,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,EAAE,GAAGQ,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,kBAAkB,QAAQ,CAAC,EAAE,oBAAoB,CAAC,gBAAgB,qBAAqB,QAAQ,CAAC,EAAE,UAAU,CAAC,gBAAgB,0BAA0B,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,EAAE,CAAC,EAAE,GAAG3C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,CAAC,EAAE+C,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgBvC,EAAK0C,EAAS,CAAC,sBAAsB,GAAK,SAAsB1C,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,uDAAuD,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,8CAA8C,0BAA0B,WAAW,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,MAAM,CAAC,oBAAoB,EAAE,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,kBAAkB,EAAE,UAAU,CAAC,qBAAqB,gBAAgB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGxD,GAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,2CAA2C,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,EAAE,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,yCAAyC,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC,EAAEoD,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgBxC,EAAKzB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,KAAK,iHAAiH,WAAW,gHAAgH,EAAE,SAAsBpC,EAAK3B,GAAgB,CAAC,eAAec,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBkD,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,2GAA2G,KAAK,OAAO,WAAW,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,KAAK,iHAAiH,WAAW,gHAAgH,CAAC,EAAE,SAAsBpC,EAAKzB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB6D,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,kBAAkBhD,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuD,GAAI,CAAC,kFAAkF,gFAAgF,qRAAqR,0KAA0K,2KAA2K,qIAAqI,gMAAgM,yWAAyW,mFAAmF,sEAAsE,2JAA2J,EAU35RC,EAAgBC,EAAQnC,GAAUiC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,mBAAmBA,EAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,UAAU,WAAW,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,cAAc,OAAO,SAAS,IAAI,uEAAuE,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["defaultCountryOptions", "useStore", "createStore", "formatPhoneNumber", "numbers", "format", "result", "numberIndex", "UncodeNumber", "props", "name", "placeholder", "padding", "textColor", "backgroundColor", "borderColor", "borderRadius", "font", "fontSize", "placeholderColor", "countryOptions", "defaultCountryOptions", "isRequired", "codeBy", "gap", "onValidationChange", "selectedCountry", "setSelectedCountry", "ye", "inputValue", "setInputValue", "containerRef", "pe", "handleCountryChange", "event", "handleChange", "rawValue", "selectedCountryObj", "country", "valueWithoutCountryCode", "numbersOnly", "maxNumbers", "char", "limitedNumbers", "formattedValue", "formatPhoneNumber", "isValid", "styles", "p", "addPropertyControls", "ControlType", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "RichText2", "css", "FramerS9tstmm16", "withCSS", "S9tstmm16_default", "addPropertyControls", "ControlType", "addFonts"]
}
