{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o8oJhFYrIZjldS0IkgVS/LZ6X13399yJkxfH9e1YI/Counter.js", "ssg:https://framerusercontent.com/modules/sxVSmODNT2hlCVkcQ93s/sfDRThEUum7rVQy8bk3v/aH7yeXBVj.js", "ssg:https://framerusercontent.com/modules/8I16ZFmckDsF4JWiSeof/asCoMAuz7SGa9i5lw4S0/kNP8cImIG.js", "ssg:https://framerusercontent.com/modules/vinaJIo8deu90WiWX2pm/vaCFU0LTvwmgXH66akJy/fuxa0eFsG.js", "ssg:https://framerusercontent.com/modules/rvjlnVLMm914XRRoK83x/J4umbNVeiXWsxXhxfI2L/OY8jC43hH.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor,letterSpacing:\"-0.07em\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter.map", "// Generated by Framer (677c5d1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Counter}from\"https://framerusercontent.com/modules/o8oJhFYrIZjldS0IkgVS/LZ6X13399yJkxfH9e1YI/Counter.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/f1lPIhIVdcD2Gr9VznBt/JgqdSXZcPWatscgS1fXM/uQRBhygQf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/3HouY1S9n4kVGGMsGJua/cSHfe5fMoEYyiYavXdWb/xNIXLfFSf.js\";const CounterFonts=getFonts(Counter);const CounterControls=getPropertyControls(Counter);const cycleOrder=[\"rU6L3C7CP\",\"cgtZ872x4\",\"GafEYaEBD\"];const serializationHash=\"framer-Bnc74\";const variantClassNames={cgtZ872x4:\"framer-v-kd3l4t\",GafEYaEBD:\"framer-v-11s36qo\",rU6L3C7CP:\"framer-v-1t1ct45\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};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 humanReadableEnumMap={Decimal:\"decimal\",Integer:\"integer\"};const humanReadableVariantMap={Desktop:\"rU6L3C7CP\",Phone:\"GafEYaEBD\",Tablet:\"cgtZ872x4\"};const getProps=({description,h3Title,height,id,incrementType,number,speedMs,suffix,width,...props})=>{return{...props,BU4_wyR9A:number??props.BU4_wyR9A??17,ezNYwgiIW:h3Title??props.ezNYwgiIW??\"H3 Title\",MTE4RiHaV:description??props.MTE4RiHaV??\"Description\",OhLeOem3o:speedMs??props.OhLeOem3o??60,uvfNqUND5:suffix??props.uvfNqUND5??\"+\",variant:humanReadableVariantMap[props.variant]??props.variant??\"rU6L3C7CP\",XbDSLtZLO:humanReadableEnumMap[incrementType]??incrementType??props.XbDSLtZLO??\"integer\"};};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,BU4_wyR9A,uvfNqUND5,XbDSLtZLO,OhLeOem3o,ezNYwgiIW,MTE4RiHaV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rU6L3C7CP\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-1t1ct45\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"rU6L3C7CP\",ref:refBinding,style:{...style},...addPropertyOverrides({cgtZ872x4:{\"data-framer-name\":\"Tablet\"},GafEYaEBD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rnq1xt-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"SCstb8RtQ-container\",nodeId:\"SCstb8RtQ\",rendersWithMotion:true,scopeId:\"aH7yeXBVj\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:BU4_wyR9A,gapSize:0,height:\"100%\",id:\"SCstb8RtQ\",incrementType:XbDSLtZLO,layoutId:\"SCstb8RtQ\",loop:false,prefixColor:\"rgb(255, 255, 255)\",prefixFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:700},prefixText:\"\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:600},speed:OhLeOem3o,start:0,startOnViewport:true,suffixColor:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",suffixFont:{},suffixText:uvfNqUND5,textColor:\"var(--token-09fd1980-8076-4f0b-8bb4-7ba5919ad6b8, rgb(12, 12, 12))\",textSize:90,width:\"100%\",...addPropertyOverrides({cgtZ872x4:{textSize:66},GafEYaEBD:{textSize:44}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11g5wz4\",\"data-border\":true,\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"KM6RVAnzp\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(214, 214, 214)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ddjjzx\",\"data-styles-preset\":\"uQRBhygQf\",children:\"Websites launched\"})}),className:\"framer-10l1onq\",\"data-framer-name\":\"Websites launched\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BCdPzBs67\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:ezNYwgiIW,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-jnye1g\",\"data-styles-preset\":\"xNIXLfFSf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(12, 12, 12, 0.6))\"},children:\"Helping brands make their mark online.\"})}),className:\"framer-1yj06m6\",\"data-framer-name\":\"Helping brands make their mark online.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KQ5BFZosn\",style:{\"--extracted-r6o4lv\":\"rgba(12, 12, 12, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},text:MTE4RiHaV,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Bnc74.framer-zp4nlz, .framer-Bnc74 .framer-zp4nlz { display: block; }\",\".framer-Bnc74.framer-1t1ct45 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 400px; }\",\".framer-Bnc74 .framer-rnq1xt-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Bnc74 .framer-11g5wz4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 40px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Bnc74 .framer-10l1onq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Bnc74 .framer-1yj06m6 { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bnc74.framer-1t1ct45, .framer-Bnc74 .framer-11g5wz4 { gap: 0px; } .framer-Bnc74.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Bnc74.framer-1t1ct45 > :first-child, .framer-Bnc74 .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-Bnc74.framer-1t1ct45 > :last-child, .framer-Bnc74 .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-Bnc74 .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-Bnc74.framer-v-kd3l4t.framer-1t1ct45 { gap: 24px; }\",\".framer-Bnc74.framer-v-kd3l4t .framer-11g5wz4 { gap: 6px; padding: 32px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bnc74.framer-v-kd3l4t.framer-1t1ct45, .framer-Bnc74.framer-v-kd3l4t .framer-11g5wz4 { gap: 0px; } .framer-Bnc74.framer-v-kd3l4t.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Bnc74.framer-v-kd3l4t.framer-1t1ct45 > :first-child, .framer-Bnc74.framer-v-kd3l4t .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-Bnc74.framer-v-kd3l4t.framer-1t1ct45 > :last-child, .framer-Bnc74.framer-v-kd3l4t .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-Bnc74.framer-v-kd3l4t .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-Bnc74.framer-v-11s36qo.framer-1t1ct45 { gap: 20px; }\",\".framer-Bnc74.framer-v-11s36qo .framer-11g5wz4 { gap: 6px; padding: 24px 0px 0px 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Bnc74.framer-v-11s36qo.framer-1t1ct45, .framer-Bnc74.framer-v-11s36qo .framer-11g5wz4 { gap: 0px; } .framer-Bnc74.framer-v-11s36qo.framer-1t1ct45 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Bnc74.framer-v-11s36qo.framer-1t1ct45 > :first-child, .framer-Bnc74.framer-v-11s36qo .framer-11g5wz4 > :first-child { margin-top: 0px; } .framer-Bnc74.framer-v-11s36qo.framer-1t1ct45 > :last-child, .framer-Bnc74.framer-v-11s36qo .framer-11g5wz4 > :last-child { margin-bottom: 0px; } .framer-Bnc74.framer-v-11s36qo .framer-11g5wz4 > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-Bnc74[data-border=\"true\"]::after, .framer-Bnc74 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 240\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cgtZ872x4\":{\"layout\":[\"fixed\",\"auto\"]},\"GafEYaEBD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BU4_wyR9A\":\"number\",\"uvfNqUND5\":\"suffix\",\"XbDSLtZLO\":\"incrementType\",\"OhLeOem3o\":\"speedMs\",\"ezNYwgiIW\":\"h3Title\",\"MTE4RiHaV\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraH7yeXBVj=withCSS(Component,css,\"framer-Bnc74\");export default FrameraH7yeXBVj;FrameraH7yeXBVj.displayName=\"Numbers / Item\";FrameraH7yeXBVj.defaultProps={height:240,width:400};addPropertyControls(FrameraH7yeXBVj,{variant:{options:[\"rU6L3C7CP\",\"cgtZ872x4\",\"GafEYaEBD\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},BU4_wyR9A:{defaultValue:17,displayStepper:true,title:\"Number\",type:ControlType.Number},uvfNqUND5:{defaultValue:\"+\",title:\"Suffix\",type:ControlType.String},XbDSLtZLO:CounterControls?.[\"incrementType\"]&&{...CounterControls[\"incrementType\"],defaultValue:\"integer\",description:undefined,hidden:undefined,title:\"Increment Type\"},OhLeOem3o:{defaultValue:60,max:2e3,min:0,step:10,title:\"Speed Ms\",type:ControlType.Number},ezNYwgiIW:{defaultValue:\"H3 Title\",displayTextArea:false,title:\"H3 Title\",type:ControlType.String},MTE4RiHaV:{defaultValue:\"Description\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FrameraH7yeXBVj,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"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\"}]},...CounterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraH7yeXBVj\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cgtZ872x4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GafEYaEBD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"240\",\"framerVariables\":\"{\\\"BU4_wyR9A\\\":\\\"number\\\",\\\"uvfNqUND5\\\":\\\"suffix\\\",\\\"XbDSLtZLO\\\":\\\"incrementType\\\",\\\"OhLeOem3o\\\":\\\"speedMs\\\",\\\"ezNYwgiIW\\\":\\\"h3Title\\\",\\\"MTE4RiHaV\\\":\\\"description\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9045c1a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-Ra5Ld\";const variantClassNames={BbNvF7zfL:\"framer-v-1udtjmn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({height,id,logo,width,...props})=>{return{...props,IiM01HZ0g:logo??props.IiM01HZ0g??{src:\"https://framerusercontent.com/images/haNVbcSIbfVRCcLU0UxDtMQWaQk.svg\"}};};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,IiM01HZ0g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"BbNvF7zfL\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1udtjmn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"BbNvF7zfL\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(224, 224, 224)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-(((componentViewport?.height||200)-0)*.4+0))/2+0+0)),pixelHeight:51,pixelWidth:100,sizes:`calc(${((componentViewport?.height||200)-0)*.4} * 1.45)`,...toResponsiveImage(IiM01HZ0g),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-46623r\",layoutDependency:layoutDependency,layoutId:\"EgPSYyOAm\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ra5Ld.framer-821ky2, .framer-Ra5Ld .framer-821ky2 { display: block; }\",\".framer-Ra5Ld.framer-1udtjmn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 290px; }\",\".framer-Ra5Ld .framer-46623r { aspect-ratio: 1.45 / 1; flex: none; height: 40%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 116px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ra5Ld.framer-1udtjmn { gap: 0px; } .framer-Ra5Ld.framer-1udtjmn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ra5Ld.framer-1udtjmn > :first-child { margin-top: 0px; } .framer-Ra5Ld.framer-1udtjmn > :last-child { margin-bottom: 0px; } }\",'.framer-Ra5Ld[data-border=\"true\"]::after, .framer-Ra5Ld [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 290\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"IiM01HZ0g\":\"logo\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkNP8cImIG=withCSS(Component,css,\"framer-Ra5Ld\");export default FramerkNP8cImIG;FramerkNP8cImIG.displayName=\"Carousel / Item\";FramerkNP8cImIG.defaultProps={height:200,width:290};addPropertyControls(FramerkNP8cImIG,{IiM01HZ0g:{__defaultAssetReference:\"data:framer/asset-reference,haNVbcSIbfVRCcLU0UxDtMQWaQk.svg?originalFilename=Logo-1.svg&preferredSize=auto\",title:\"Logo\",type:ControlType.ResponsiveImage}});addFonts(FramerkNP8cImIG,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkNP8cImIG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerVariables\":\"{\\\"IiM01HZ0g\\\":\\\"logo\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"290\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kNP8cImIG.map", "// Generated by Framer (013b13c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import CarouselItem from\"https://framerusercontent.com/modules/8I16ZFmckDsF4JWiSeof/asCoMAuz7SGa9i5lw4S0/kNP8cImIG.js\";const CarouselItemFonts=getFonts(CarouselItem);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"TyCkGq4e0\",\"JQZ30bDwJ\"];const serializationHash=\"framer-2jr4W\";const variantClassNames={JQZ30bDwJ:\"framer-v-1l0olfg\",TyCkGq4e0:\"framer-v-10fhop6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Desktop:\"TyCkGq4e0\",Phone:\"JQZ30bDwJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TyCkGq4e0\"};};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:\"TyCkGq4e0\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10fhop6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"TyCkGq4e0\",ref:refBinding,style:{...style},...addPropertyOverrides({JQZ30bDwJ:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10ctm3x-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dc39UCPnr-container\",nodeId:\"dc39UCPnr\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",hoverFactor:.3,id:\"dc39UCPnr\",layoutId:\"dc39UCPnr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"280px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pob2ir-container\",\"data-framer-name\":\"Camb AI\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"CYw5IFaGt-container\",name:\"Camb AI\",nodeId:\"CYw5IFaGt\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"CYw5IFaGt\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/hcruJMIFDX0Tq6Yn0VLpFGpIPKI.svg\"},\"\"),layoutId:\"CYw5IFaGt\",name:\"Camb AI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wxqo85-container\",\"data-framer-name\":\"Freelancer.com\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"k9wMrkBgh-container\",name:\"Freelancer.com\",nodeId:\"k9wMrkBgh\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"k9wMrkBgh\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/uzQZI48ilWhbBhOGqEQueIGPw.svg\"},\"\"),layoutId:\"k9wMrkBgh\",name:\"Freelancer.com\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v2b4js-container\",\"data-framer-name\":\"Prezent AI\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"rycXxYZTD-container\",name:\"Prezent AI\",nodeId:\"rycXxYZTD\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"rycXxYZTD\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/nOxr3o7oVKjbMFKCC1Jdac6HaRw.svg\"},\"\"),layoutId:\"rycXxYZTD\",name:\"Prezent AI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-f7po0z-container\",\"data-framer-name\":\"Muir.ai\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"h7vBRumze-container\",name:\"Muir.ai\",nodeId:\"h7vBRumze\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"h7vBRumze\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/0BdeClUcvCMwtvPScazLoVuY1q8.svg\"},\"\"),layoutId:\"h7vBRumze\",name:\"Muir.ai\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tp7eix-container\",\"data-framer-name\":\"Fnp\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"GiuOc_6q5-container\",name:\"Fnp\",nodeId:\"GiuOc_6q5\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"GiuOc_6q5\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/lopYhKJPvW4Qm1N8csUZ6ZPf4.svg\"},\"\"),layoutId:\"GiuOc_6q5\",name:\"Fnp\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1psmpno-container\",\"data-framer-name\":\"Budweiser\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"HjoTuRGOs-container\",name:\"Budweiser\",nodeId:\"HjoTuRGOs\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"HjoTuRGOs\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/MPtOO3NnYcERDfFb3yakimLzE.svg\"},\"\"),layoutId:\"HjoTuRGOs\",name:\"Budweiser\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5s83ww-container\",\"data-framer-name\":\"Maruti Suzuki\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"MaA9D9wpR-container\",name:\"Maruti Suzuki\",nodeId:\"MaA9D9wpR\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"MaA9D9wpR\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/q2XEz4SHAG7RlKu5DvDCh8x3lM.svg\"},\"\"),layoutId:\"MaA9D9wpR\",name:\"Maruti Suzuki\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1h74vu8-container\",\"data-framer-name\":\"Aditya Birla\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"bAqfjPb7i-container\",name:\"Aditya Birla\",nodeId:\"bAqfjPb7i\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"bAqfjPb7i\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/ZDLXVBCDAE1hRO0D0yUMrkHe24.svg\"},\"\"),layoutId:\"bAqfjPb7i\",name:\"Aditya Birla\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-123pkg5-container\",\"data-framer-name\":\"Plivo\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"BwcB7oVz0-container\",name:\"Plivo\",nodeId:\"BwcB7oVz0\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"BwcB7oVz0\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/zWMbmalzemwyV15trsXfXMJrhsk.svg\"},\"\"),layoutId:\"BwcB7oVz0\",name:\"Plivo\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jkdsls-container\",\"data-framer-name\":\"Tata AIA\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zRONRALNH-container\",name:\"Tata AIA\",nodeId:\"zRONRALNH\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"zRONRALNH\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/XmlDfe1klddFeYHksKPEc0snyOM.svg\"},\"\"),layoutId:\"zRONRALNH\",name:\"Tata AIA\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ehno31-container\",\"data-framer-name\":\"Policy Bazar\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mYjjvxaK6-container\",name:\"Policy Bazar\",nodeId:\"mYjjvxaK6\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"mYjjvxaK6\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/unzbLDedtA88M7OXRWlJerMS9g0.svg\"},\"\"),layoutId:\"mYjjvxaK6\",name:\"Policy Bazar\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:200,width:\"290px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jde0ti-container\",\"data-framer-name\":\"KPMG\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"VJLnNDfuP-container\",name:\"KPMG\",nodeId:\"VJLnNDfuP\",rendersWithMotion:true,scopeId:\"fuxa0eFsG\",children:/*#__PURE__*/_jsx(CarouselItem,{height:\"100%\",id:\"VJLnNDfuP\",IiM01HZ0g:addImageAlt({src:\"https://framerusercontent.com/images/xmDfwvUvygduiKANMIPxSKksgfA.svg\"},\"\"),layoutId:\"VJLnNDfuP\",name:\"KPMG\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({JQZ30bDwJ:{speed:80}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2jr4W.framer-1h1rqwp, .framer-2jr4W .framer-1h1rqwp { display: block; }\",\".framer-2jr4W.framer-10fhop6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-2jr4W .framer-10ctm3x-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-2jr4W .framer-pob2ir-container { height: 200px; position: relative; width: 280px; }\",\".framer-2jr4W .framer-wxqo85-container, .framer-2jr4W .framer-v2b4js-container, .framer-2jr4W .framer-f7po0z-container, .framer-2jr4W .framer-1tp7eix-container, .framer-2jr4W .framer-1psmpno-container, .framer-2jr4W .framer-5s83ww-container, .framer-2jr4W .framer-1h74vu8-container, .framer-2jr4W .framer-123pkg5-container, .framer-2jr4W .framer-1jkdsls-container, .framer-2jr4W .framer-1ehno31-container, .framer-2jr4W .framer-jde0ti-container { height: 200px; position: relative; width: 290px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2jr4W.framer-10fhop6 { gap: 0px; } .framer-2jr4W.framer-10fhop6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-2jr4W.framer-10fhop6 > :first-child { margin-top: 0px; } .framer-2jr4W.framer-10fhop6 > :last-child { margin-bottom: 0px; } }\",\".framer-2jr4W.framer-v-1l0olfg.framer-10fhop6 { height: 160px; width: 380px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"JQZ30bDwJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerfuxa0eFsG=withCSS(Component,css,\"framer-2jr4W\");export default Framerfuxa0eFsG;Framerfuxa0eFsG.displayName=\"Logo carousel\";Framerfuxa0eFsG.defaultProps={height:200,width:1200};addPropertyControls(Framerfuxa0eFsG,{variant:{options:[\"TyCkGq4e0\",\"JQZ30bDwJ\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerfuxa0eFsG,[{explicitInter:true,fonts:[]},...CarouselItemFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfuxa0eFsG\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JQZ30bDwJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fuxa0eFsG.map", "// Generated by Framer (1f5f6d9)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"Fel6wEcWG\",\"hA3yf8MT3\"];const serializationHash=\"framer-PbC65\";const variantClassNames={Fel6wEcWG:\"framer-v-1bjjrw5\",hA3yf8MT3:\"framer-v-1hxfpe5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};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={Logo:\"Fel6wEcWG\",Variant:\"hA3yf8MT3\"};const getProps=({height,id,padding,width,...props})=>{return{...props,bkkXyXBrz:padding??props.bkkXyXBrz??\"0px 0px 0px 16px\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Fel6wEcWG\"};};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,bkkXyXBrz,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Fel6wEcWG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hA3yf8MT3\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"hA3yf8MT3\")return false;return true;};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-1bjjrw5\",className,classNames),\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"Fel6wEcWG\",ref:refBinding,style:{\"--2j2nca\":numberToPixelString(bkkXyXBrz),...style},...addPropertyOverrides({hA3yf8MT3:{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1l7d039\",\"data-framer-name\":\"Logotype - 1, whites\",fill:\"black\",intrinsicHeight:60,intrinsicWidth:332,layoutDependency:layoutDependency,layoutId:\"M92JG6Uuj\",svg:'<svg width=\"332\" height=\"60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M215.757 16.825c-2.402 2.22-4.357 5.924-4.357 12.848 0 6.884 1.911 10.642 4.361 12.953 2.681 2.46 6.781 4.22 13.681 4.224h38.443c4.64 0 7.97-1.56 10.865-4.223 2.451-2.31 4.363-6.07 4.363-12.954 0-6.924-1.955-10.628-4.358-12.849-2.996-2.805-6.375-4.424-10.87-4.424h-38.422c-6.791 0-10.956 1.85-13.706 4.425Zm71.44 34.88c-4.978 4.599-11.254 7.545-19.312 7.545h-38.443c-9.135-.004-16.564-2.407-22.126-7.545C201.723 46.468 199 39.054 199 29.673c0-9.379 2.716-16.756 8.312-21.928C212.871 2.54 220.303 0 229.463 0h38.422c8.058 0 14.344 3.09 19.315 7.745 5.597 5.171 8.313 12.55 8.313 21.928 0 9.38-2.724 16.795-8.316 22.032ZM198.8 0H143v11.6h21.162v47.9H177V11.6h21.8V0Zm-79.829 0c-7.161 0-12.972 1.982-17.318 6.043-4.375 4.035-6.499 9.793-6.499 17.11v13.293c0 7.32 2.125 13.101 6.497 17.188 4.346 4.007 10.161 5.966 17.32 5.966 7.158 0 12.968-1.955 17.314-5.962 4.373-4.086 6.502-9.871 6.502-17.192V23.154c0-7.319-2.123-13.076-6.499-17.111C131.942 1.983 126.132 0 118.971 0Zm-11.359 22.837c0-3.595 1.018-6.36 2.967-8.404 1.991-2.032 4.746-3.097 8.392-3.097 3.706 0 6.455 1.069 8.387 3.093 1.952 2.044 2.972 4.81 2.972 8.408v13.926c0 3.598-1.02 6.364-2.972 8.408-1.932 2.024-4.681 3.093-8.387 3.093-3.646 0-6.401-1.065-8.392-3.097-1.949-2.044-2.967-4.809-2.967-8.404V22.837ZM74.885 0H49.8v59.6h12.457V37.742h13.577c1.387 0 2.104.358 2.468.813.497.574.81 1.385.81 2.465V59.6H91.57V39.514c0-2.392-.629-4.415-1.986-5.96-1.18-1.393-2.763-2.202-4.669-2.474v-1.063c2.222-1.026 4.11-2.551 5.655-4.561 1.753-2.278 2.585-5.47 2.585-8.956 0-3.174-.755-6.668-2.298-9.07-1.537-2.389-3.694-4.225-6.438-5.513C81.674.627 78.486 0 74.885 0ZM62.258 25.035V11.507h11.518c2.354 0 4.029.64 5.162 1.774 1.145 1.1 1.76 3.224 1.76 5.219 0 1.983-.627 3.673-1.833 4.834-1.135 1.091-2.785 1.7-5.09 1.7H62.259ZM23.341 0c-7.059 0-12.768 1.981-17.01 6.042C2.067 10.073 0 15.82 0 23.12v13.27c0 4.865.922 9.066 2.814 12.563 1.932 3.412 4.532 6.07 7.763 7.903 3.273 1.77 6.906 2.653 10.863 2.653 2.913 0 5.308-.347 7.12-1.104 1.729-.723 3.102-1.648 4.032-2.817a13.851 13.851 0 0 0 1.474-2.08V59.6H45.8V28.284H22.084v10.974h11.34c-.09 2.621-.891 4.743-2.36 6.43-1.471 1.688-4.155 2.658-7.822 2.658-3.584 0-6.247-1.082-8.13-3.146-1.914-2.149-2.912-5-2.912-8.652V22.961c0-3.712 1.002-6.525 2.9-8.56 1.887-2.023 4.505-3.08 7.984-3.08 2.38 0 4.514.465 5.946 1.294 1.47.803 2.545 1.902 3.24 3.29.762 1.422 1.162 3.095 1.162 6.476h12.3c0-6.377-1.949-12.844-5.93-16.649C35.865 1.866 30.328 0 23.341 0ZM295 4.143V0h20.953l4.859 14.18L325.592 0h5.516v19.92h-4.43l.06-10.568-3.628 10.568h-4.67l-3.629-10.568.06 10.568h-4.429V4.143h-5.418V19.92h-4.392V4.143H295Z\" fill=\"#fff\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1hpf2uu\",\"data-framer-name\":\"Logotypes - 1, black\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cd3VVnnIM\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 105 19\"><path d=\"M 68.236 5.328 C 67.477 6.031 66.858 7.204 66.858 9.396 C 66.858 11.576 67.463 12.766 68.238 13.498 C 69.086 14.277 70.382 14.835 72.564 14.836 L 84.723 14.836 C 86.19 14.836 87.243 14.342 88.159 13.499 C 88.934 12.767 89.539 11.576 89.539 9.396 C 89.539 7.204 88.92 6.031 88.16 5.328 C 87.213 4.439 86.144 3.927 84.723 3.927 L 72.571 3.927 C 70.423 3.927 69.106 4.513 68.236 5.328 Z M 90.83 16.373 C 89.256 17.83 87.271 18.763 84.723 18.763 L 72.564 18.763 C 69.675 18.761 67.326 18 65.567 16.373 C 63.798 14.715 62.937 12.367 62.937 9.396 C 62.937 6.426 63.796 4.09 65.566 2.453 C 67.324 0.804 69.674 0 72.571 0 L 84.723 0 C 87.271 0 89.259 0.978 90.831 2.453 C 92.601 4.09 93.46 6.427 93.46 9.396 C 93.46 12.367 92.599 14.715 90.83 16.373 Z M 62.873 0 L 45.226 0 L 45.226 3.673 L 51.919 3.673 L 51.919 18.842 L 55.979 18.842 L 55.979 3.673 L 62.873 3.673 Z M 37.626 0 C 35.362 0 33.524 0.628 32.15 1.914 C 30.766 3.191 30.094 5.015 30.094 7.332 L 30.094 11.541 C 30.094 13.859 30.766 15.69 32.149 16.984 C 33.523 18.253 35.362 18.873 37.626 18.873 C 39.891 18.873 41.728 18.254 43.102 16.985 C 44.485 15.691 45.159 13.86 45.159 11.541 L 45.159 7.332 C 45.159 5.014 44.487 3.191 43.103 1.914 C 41.729 0.628 39.891 0 37.626 0 Z M 34.034 7.232 C 34.034 6.093 34.356 5.218 34.972 4.57 C 35.602 3.927 36.473 3.59 37.626 3.59 C 38.799 3.59 39.668 3.928 40.279 4.569 C 40.896 5.216 41.219 6.092 41.219 7.232 L 41.219 11.642 C 41.219 12.781 40.896 13.657 40.279 14.304 C 39.668 14.945 38.799 15.284 37.626 15.284 C 36.473 15.284 35.602 14.946 34.972 14.303 C 34.356 13.656 34.034 12.78 34.034 11.642 Z M 23.683 0 L 15.75 0 L 15.75 18.873 L 19.69 18.873 L 19.69 11.952 L 23.984 11.952 C 24.422 11.952 24.649 12.065 24.764 12.209 C 24.922 12.391 25.02 12.648 25.02 12.99 L 25.02 18.873 L 28.96 18.873 L 28.96 12.513 C 28.96 11.755 28.761 11.115 28.333 10.625 C 27.959 10.184 27.458 9.928 26.856 9.842 L 26.856 9.505 C 27.558 9.18 28.155 8.698 28.644 8.061 C 29.199 7.34 29.462 6.329 29.462 5.225 C 29.462 4.22 29.223 3.113 28.735 2.353 C 28.249 1.596 27.567 1.015 26.699 0.607 C 25.83 0.199 24.822 0 23.683 0 Z M 19.69 7.928 L 19.69 3.644 L 23.332 3.644 C 24.077 3.644 24.607 3.847 24.965 4.206 C 25.327 4.554 25.522 5.227 25.522 5.858 C 25.522 6.486 25.323 7.021 24.942 7.389 C 24.583 7.735 24.061 7.927 23.332 7.927 L 19.69 7.927 Z M 7.382 0 C 5.149 0 3.344 0.627 2.002 1.913 C 0.654 3.19 0 5.01 0 7.321 L 0 11.524 C 0 13.064 0.292 14.394 0.89 15.502 C 1.501 16.582 2.323 17.424 3.345 18.004 C 4.38 18.565 5.529 18.845 6.781 18.845 C 7.702 18.845 8.459 18.735 9.033 18.495 C 9.579 18.266 10.014 17.973 10.308 17.603 C 10.483 17.398 10.639 17.178 10.774 16.944 L 10.774 18.873 L 14.485 18.873 L 14.485 8.957 L 6.984 8.957 L 6.984 12.432 L 10.571 12.432 C 10.542 13.262 10.289 13.934 9.824 14.468 C 9.359 15.002 8.51 15.31 7.351 15.31 C 6.217 15.31 5.375 14.967 4.779 14.313 C 4.174 13.633 3.858 12.73 3.858 11.574 L 3.858 7.271 C 3.858 6.096 4.175 5.205 4.776 4.56 C 5.372 3.92 6.2 3.585 7.301 3.585 C 8.053 3.585 8.728 3.732 9.181 3.995 C 9.646 4.249 9.986 4.597 10.206 5.037 C 10.447 5.487 10.573 6.017 10.573 7.087 L 14.463 7.087 C 14.463 5.068 13.847 3.02 12.588 1.815 C 11.343 0.591 9.592 0 7.382 0 Z M 93.298 1.312 L 93.298 0 L 99.925 0 L 101.462 4.49 L 102.973 0 L 104.718 0 L 104.718 6.308 L 103.317 6.308 L 103.336 2.961 L 102.188 6.308 L 100.711 6.308 L 99.564 2.961 L 99.583 6.308 L 98.182 6.308 L 98.182 1.312 L 96.468 1.312 L 96.468 6.308 L 95.079 6.308 L 95.079 1.312 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10120841776,withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PbC65.framer-lv1yz8, .framer-PbC65 .framer-lv1yz8 { display: block; }\",\".framer-PbC65.framer-1bjjrw5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: var(--2j2nca); position: relative; width: min-content; }\",\".framer-PbC65 .framer-1l7d039 { aspect-ratio: 5.533333333333333 / 1; flex: none; height: 20px; position: relative; width: var(--framer-aspect-ratio-supported, 332px); }\",\".framer-PbC65 .framer-1hpf2uu { flex: none; height: 19px; position: relative; width: 105px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PbC65.framer-1bjjrw5 { gap: 0px; } .framer-PbC65.framer-1bjjrw5 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-PbC65.framer-1bjjrw5 > :first-child { margin-left: 0px; } .framer-PbC65.framer-1bjjrw5 > :last-child { margin-right: 0px; } }\",\".framer-PbC65.framer-v-1hxfpe5 .framer-1l7d039 { width: var(--framer-aspect-ratio-supported, 110px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 121\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hA3yf8MT3\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"bkkXyXBrz\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOY8jC43hH=withCSS(Component,css,\"framer-PbC65\");export default FramerOY8jC43hH;FramerOY8jC43hH.displayName=\"Logo\";FramerOY8jC43hH.defaultProps={height:19,width:121};addPropertyControls(FramerOY8jC43hH,{variant:{options:[\"Fel6wEcWG\",\"hA3yf8MT3\"],optionTitles:[\"Logo\",\"Variant\"],title:\"Variant\",type:ControlType.Enum},bkkXyXBrz:{defaultValue:\"0px 0px 0px 16px\",description:\"\",title:\"Padding\",type:ControlType.Padding}});addFonts(FramerOY8jC43hH,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOY8jC43hH\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"121\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"19\",\"framerVariables\":\"{\\\"bkkXyXBrz\\\":\\\"padding\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hA3yf8MT3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OY8jC43hH.map"],
  "mappings": "ocAA4L,IAAMA,GAAc,CAAC,UAAU,CAAC,QAAQ,OAAO,eAAe,SAAS,WAAW,QAAQ,CAAC,EAAS,SAASC,EAAQC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,IAAAC,EAAI,MAAAC,EAAM,QAAAC,EAAQ,WAAAC,EAAW,WAAAC,EAAW,WAAAC,EAAW,WAAAC,EAAW,YAAAC,EAAY,YAAAC,EAAY,KAAAC,EAAK,qBAAAC,EAAqB,SAAAC,EAAS,aAAAC,EAAa,UAAAC,EAAU,gBAAAC,EAAgB,kBAAAC,EAAkB,cAAAC,CAAa,EAAElB,EAAW,CAACmB,EAAMC,CAAQ,EAAEC,GAASpB,CAAK,EAAO,CAACqB,EAAUC,CAAY,EAAEF,GAAS,EAAK,EAAQG,EAAaC,EAAO,IAAI,EAAEC,GAAU,IAAI,CAAC,IAAMC,EAAS,IAAI,qBAAqBC,GAAS,CAAC,IAAMC,EAAMD,EAAQ,CAAC,EAAEL,EAAaM,EAAM,cAAc,CAAE,CAAC,EAAE,OAAGL,EAAa,SAASG,EAAS,QAAQH,EAAa,OAAO,EAAS,IAAI,CAAIA,EAAa,SAASG,EAAS,UAAUH,EAAa,OAAO,CAAG,CAAE,EAAE,CAAC,CAAC,EAAEE,GAAU,IAAI,CAAC,IAAMI,EAAY,IAAI,CAAC,IAAMC,EAAUb,IAAgB,UAAU,EAAE,GAAGE,EAASY,GAAW,CAAC,IAAMC,EAAU,YAAYD,EAAUD,GAAW,QAAQ,CAAC,CAAC,EAAE,OAAOE,GAAW/B,EAAIA,EAAI+B,CAAU,CAAC,CAAE,EAAE,GAAGX,GAAW,CAACN,GAAiBf,IAAQC,EAAI,CAAC,IAAMgC,EAAW,YAAYJ,EAAY3B,CAAK,EAAE,MAAM,IAAI,CAAC,cAAc+B,CAAU,CAAE,OAAWlB,GAAiBM,GAAWF,EAASnB,CAAK,CAAG,EAAE,CAACkB,EAAMlB,EAAMC,EAAIS,EAAKW,EAAUnB,EAAMa,EAAgBE,CAAa,CAAC,EAAEQ,GAAU,IAAI,CAAIT,GAAmBK,GAAWF,EAASnB,CAAK,CACl6C,EAAE,CAACqB,EAAUL,EAAkBhB,CAAK,CAAC,EAAE,IAAMkC,EAAaC,GAAYxB,IAAuB,QAAgBwB,EAAO,eAAe,OAAO,EAAWxB,IAAuB,SAAiBwB,EAAO,eAAe,OAAO,EAAE,QAAQ,KAAK,GAAG,EAAeA,EAAO,QAAQlB,IAAgB,UAAU,EAAE,CAAC,EAAK,OAAoBmB,EAAMC,EAAO,IAAI,CAAC,IAAId,EAAa,MAAM,CAAC,GAAG1B,GAAc,UAAU,IAAI,GAAGM,MAAY,cAAc,MAAM,WAAW,SAAS,SAAS,GAAGS,MAAa,WAAWC,EAAa,WAAW,WAAWA,EAAa,WAAW,MAAMC,EAAU,cAAc,SAAS,EAAE,SAAS,CAAcwB,EAAK,OAAO,CAAC,MAAM,CAAC,WAAWhC,EAAW,WAAW,WAAWA,EAAW,WAAW,MAAME,CAAW,EAAE,SAASJ,CAAU,CAAC,EAAekC,EAAK,OAAO,CAAC,SAASJ,EAAahB,CAAK,CAAC,CAAC,EAAeoB,EAAK,OAAO,CAAC,MAAM,CAAC,WAAW/B,EAAW,WAAW,WAAWA,EAAW,WAAW,MAAME,CAAW,EAAE,SAASJ,CAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAACP,EAAQ,aAAa,CAAC,MAAM,EAAE,IAAI,IAAI,MAAM,IAAI,WAAW,GAAG,WAAW,GAAG,KAAK,GAAM,qBAAqB,QAAQ,SAAS,GAAG,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,EAAE,UAAU,UAAU,gBAAgB,GAAM,cAAc,SAAS,EAAEyC,EAAoBzC,EAAQ,CAAC,gBAAgB,CAAC,KAAK0C,EAAY,QAAQ,MAAM,WAAW,aAAa,GAAM,aAAa,KAAK,cAAc,KAAK,EAAE,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,GAAM,aAAa,MAAM,cAAc,IAAI,EAAE,aAAa,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,SAAS,CAAC,MAAM,YAAY,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,YAAY,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,eAAe,aAAa,EAAE,eAAe,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,GAAG,eAAe,EAAI,EAAE,qBAAqB,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,aAAa,QAAQ,QAAQ,CAAC,QAAQ,SAAS,MAAM,EAAE,aAAa,CAAC,gBAAgB,kBAAkB,MAAM,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,KAAK,MAAM,iBAAiB,aAAa,UAAU,QAAQ,CAAC,UAAU,SAAS,EAAE,aAAa,CAAC,UAAU,SAAS,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,cAAc,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,aAAa,EAAE,EAAE,WAAW,CAAC,MAAM,cAAc,KAAKA,EAAY,KAAK,aAAa,CAAC,WAAW,QAAQ,WAAW,IAAI,WAAW,EAAI,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,MAAM,MAAM,cAAc,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,aAAa,aAAa,IAAI,IAAI,EAAE,IAAI,IAAI,KAAK,EAAE,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,iBAAiB,aAAa,GAAM,aAAa,KAAK,cAAc,MAAM,YAAY,iFAAiF,CAAC,CAAC,ECA7vE,IAAMC,GAAaC,EAASC,CAAO,EAAQC,GAAgBC,GAAoBF,CAAO,EAAQG,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,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,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAqB,CAAC,QAAQ,UAAU,QAAQ,SAAS,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,YAAAC,EAAY,QAAAC,EAAQ,OAAAC,EAAO,GAAAC,EAAG,cAAAC,EAAc,OAAAC,EAAO,QAAAC,EAAQ,OAAAC,EAAO,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUJ,GAAQI,EAAM,WAAW,GAAG,UAAUR,GAASQ,EAAM,WAAW,WAAW,UAAUT,GAAaS,EAAM,WAAW,cAAc,UAAUH,GAASG,EAAM,WAAW,GAAG,UAAUF,GAAQE,EAAM,WAAW,IAAI,QAAQX,GAAwBW,EAAM,OAAO,GAAGA,EAAM,SAAS,YAAY,UAAUZ,GAAqBO,CAAa,GAAGA,GAAeK,EAAM,WAAW,SAAS,GAAUC,GAAuB,CAACD,EAAM7B,IAAe6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAE6B,EAAM,iBAAwB7B,EAAS,KAAK,GAAG,EAAU+B,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,QAAA5C,EAAQ,UAAA6C,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAElC,GAASU,CAAK,EAAO,CAAC,YAAAyB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA7D,CAAQ,EAAE8D,EAAgB,CAAC,WAAAnE,GAAW,eAAe,YAAY,IAAIyC,EAAW,QAAAlC,EAAQ,kBAAAL,EAAiB,CAAC,EAAQkE,EAAiBjC,GAAuBD,EAAM7B,CAAQ,EAAmFgE,GAAkBC,EAAGrE,GAAkB,GAA5F,CAAaiD,GAAuBA,EAAS,CAAuE,EAAE,OAAoBhC,EAAKqD,EAAY,CAAC,GAAGpB,GAAUT,EAAgB,SAAsBxB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBgE,EAAMpD,EAAO,IAAI,CAAC,GAAGsC,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,GAAkB,iBAAiBnB,EAAUU,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAI3B,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG9C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAEwD,EAAYI,CAAc,EAAE,SAAS,CAAc7C,EAAKuD,EAA0B,CAAC,SAAsBvD,EAAKwD,EAA8B,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiBN,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBlD,EAAKrB,EAAQ,CAAC,qBAAqB,OAAO,IAAIuD,EAAU,QAAQ,EAAE,OAAO,OAAO,GAAG,YAAY,cAAcE,EAAU,SAAS,YAAY,KAAK,GAAM,YAAY,qBAAqB,WAAW,CAAC,WAAW,2CAA2C,UAAU,SAAS,WAAW,GAAG,EAAE,WAAW,GAAG,kBAAkB,GAAM,aAAa,CAAC,WAAW,2CAA2C,UAAU,SAAS,WAAW,GAAG,EAAE,MAAMC,EAAU,MAAM,EAAE,gBAAgB,GAAK,YAAY,qEAAqE,WAAW,CAAC,EAAE,WAAWF,EAAU,UAAU,qEAAqE,SAAS,GAAG,MAAM,OAAO,GAAGlD,GAAqB,CAAC,UAAU,CAAC,SAAS,EAAE,EAAE,UAAU,CAAC,SAAS,EAAE,CAAC,EAAEwD,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeS,EAAMpD,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,KAAK,EAAE,SAAS,CAAclD,EAAKyD,GAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,KAAKZ,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAetC,EAAKyD,GAAS,CAAC,sBAAsB,GAAK,SAAsBzD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,gDAAgD,EAAE,SAAS,wCAAwC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yCAAyC,MAAM,CAAC,OAAO,EAAE,iBAAiBgD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wBAAwB,6BAA6B,KAAK,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmB,GAAI,CAAC,kFAAkF,gFAAgF,iRAAiR,wGAAwG,ySAAyS,qKAAqK,qIAAqI,qlBAAqlB,8DAA8D,yFAAyF,qtBAAqtB,+DAA+D,0FAA0F,6tBAA6tB,GAAeA,GAAI,GAAgBA,GAAI,+bAA+b,EASjwUC,GAAgBC,EAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,iBAAiBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,eAAe,GAAK,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,IAAI,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAUnF,IAAkB,eAAkB,CAAC,GAAGA,GAAgB,cAAiB,aAAa,UAAU,YAAY,OAAU,OAAO,OAAU,MAAM,gBAAgB,EAAE,UAAU,CAAC,aAAa,GAAG,IAAI,IAAI,IAAI,EAAE,KAAK,GAAG,MAAM,WAAW,KAAKmF,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,WAAW,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,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,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,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,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlF,GAAa,GAAGwF,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTr8K,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,EAAyL,IAAMC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAW,CAAC,CAAC,MAAAD,EAAM,SAAAE,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWN,GAAOG,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAME,EAAM,WAAW,CAAC,IAAI,sEAAsE,CAAC,GAAUC,GAAuB,CAACD,EAAME,IAAeF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAEF,EAAM,iBAAwBE,EAAS,KAAK,GAAG,EAAUC,GAA6BC,EAAW,SAASJ,EAAMK,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,QAAAC,EAAQ,UAAAC,EAAU,GAAGC,CAAS,EAAE1B,GAASK,CAAK,EAAO,CAAC,YAAAsB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAA3B,CAAQ,EAAE4B,EAAgB,CAAC,eAAe,YAAY,IAAItB,EAAW,QAAAW,EAAQ,kBAAAY,EAAiB,CAAC,EAAQC,EAAiB/B,GAAuBD,EAAME,CAAQ,EAAuC+B,EAAkBC,EAAGC,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoB5C,EAAK6C,EAAY,CAAC,GAAGlB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQU,EAAS,QAAQ,GAAM,SAAsBX,EAAKR,GAAW,CAAC,MAAMH,GAAY,SAAsBW,EAAKE,EAAO,IAAI,CAAC,GAAG4B,EAAU,GAAGI,EAAgB,UAAUS,EAAGD,EAAkB,iBAAiBhB,EAAUM,CAAU,EAAE,cAAc,GAAK,mBAAmB,UAAU,iBAAiBS,EAAiB,SAAS,YAAY,IAAIxB,EAAW,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgB,qBAAqB,GAAGQ,CAAK,EAAE,SAAsBzB,EAAK8C,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,QAAQC,IAA2BxB,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,KAAKA,GAAmB,QAAQ,KAAK,GAAG,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,YAAY,GAAG,WAAW,IAAI,MAAM,UAAUA,GAAmB,QAAQ,KAAK,GAAG,aAAa,GAAGjC,GAAkBuC,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,iBAAiBY,EAAiB,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQO,GAAI,CAAC,kFAAkF,gFAAgF,6PAA6P,+KAA+K,6WAA6W,+bAA+b,EASxsJC,GAAgBC,EAAQtC,GAAUoC,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,UAAU,CAAC,wBAAwB,6GAA6G,MAAM,OAAO,KAAKI,EAAY,eAAe,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTkE,IAAMM,GAAkBC,EAASC,CAAY,EAAQC,GAAYF,EAASG,EAAM,EAAQC,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,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,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,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,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,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,EAAMzB,IAAeyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAEyB,EAAM,iBAAwBzB,EAAS,KAAK,GAAG,EAAU2B,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,QAAAxC,EAAQ,GAAGyC,CAAS,EAAEtB,GAASI,CAAK,EAAO,CAAC,YAAAmB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnD,CAAQ,EAAEoD,EAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,IAAIqC,EAAW,QAAA9B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiB3B,GAAuBD,EAAMzB,CAAQ,EAAuCsD,EAAkBC,EAAG3D,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBoB,EAAKwC,EAAY,CAAC,GAAGd,GAAUT,EAAgB,SAAsBjB,EAAKC,GAAS,CAAC,QAAQjB,EAAS,QAAQ,GAAM,SAAsBgB,EAAKT,GAAW,CAAC,MAAMJ,GAAY,SAAsBa,EAAKE,EAAO,QAAQ,CAAC,GAAGyB,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBb,EAAUI,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIrB,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,GAAG1C,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAsBhC,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKtB,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAM,UAAU,EAAI,EAAE,MAAM,CAAcsB,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,UAAU,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,UAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,iBAAiB,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,iBAAiB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,aAAa,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,aAAa,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,aAAa,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,UAAU,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,UAAU,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,UAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,MAAM,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,MAAM,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,MAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,YAAY,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,YAAY,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,oEAAoE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,gBAAgB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,gBAAgB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,eAAe,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,eAAe,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,qEAAqE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,QAAQ,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,QAAQ,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,WAAW,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,2BAA2B,mBAAmB,eAAe,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,eAAe,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeY,EAAKyC,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,SAAsBzC,EAAK0C,EAA8B,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,gBAAgB,GAAK,iBAAiBL,EAAiB,SAAS,sBAAsB,KAAK,OAAO,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrC,EAAKxB,EAAa,CAAC,OAAO,OAAO,GAAG,YAAY,UAAUY,EAAY,CAAC,IAAI,sEAAsE,EAAE,EAAE,EAAE,SAAS,YAAY,KAAK,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGN,GAAqB,CAAC,UAAU,CAAC,MAAM,EAAE,CAAC,EAAE8C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQW,GAAI,CAAC,kFAAkF,kFAAkF,+PAA+P,2GAA2G,8FAA8F,ofAAof,+WAA+W,gFAAgF,EAQlwZC,GAAgBC,EAAQlC,GAAUgC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGtE,GAAkB,GAAGG,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRzK,IAAMyE,GAAW,CAAC,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,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,GAAoBC,GAAO,CAAC,GAAG,OAAOA,GAAQ,SAAS,OAAOA,EAAM,GAAI,OAAO,SAASA,CAAK,EAAmB,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,IAAK,EAAQC,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWP,GAAOI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,KAAK,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,QAAAC,EAAQ,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAASE,EAAM,WAAW,mBAAmB,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU0B,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,QAAAvC,EAAQ,UAAAwC,EAAU,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAnD,CAAQ,EAAEoD,EAAgB,CAAC,WAAAzD,GAAW,eAAe,YAAY,IAAIoC,EAAW,QAAA7B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQwD,EAAiB5B,GAAuBD,EAAMxB,CAAQ,EAAuCsD,EAAkBC,EAAG3D,GAAkB,GAAhD,CAAC,CAAuE,EAAQ4D,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQb,IAAc,YAAuC,OAAoB9B,EAAK4C,EAAY,CAAC,GAAGjB,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQf,EAAS,QAAQ,GAAM,SAAsBc,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBsD,EAAM3C,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUQ,EAAGD,EAAkB,iBAAiBd,EAAUK,CAAU,EAAE,mBAAmB,OAAO,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,WAAW5B,GAAoBuC,CAAS,EAAE,GAAGH,CAAK,EAAE,GAAGzC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,MAAS,CAAC,EAAE8C,EAAYI,CAAc,EAAE,SAAS,CAACQ,EAAY,GAAgB1C,EAAK8C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBP,EAAiB,SAAS,YAAY,IAAI,ysFAAysF,mBAAmB,EAAI,CAAC,EAAEI,EAAa,GAAgB3C,EAAK8C,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,uBAAuB,OAAO,WAAW,iBAAiBP,EAAiB,SAAS,YAAY,QAAQ,EAAE,MAAM,CAAC,gBAAgB,kBAAkB,EAAE,IAAI,0iHAA0iH,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQQ,GAAI,CAAC,kFAAkF,gFAAgF,6RAA6R,2KAA2K,gGAAgG,6WAA6W,wGAAwG,EASn/VC,GAAgBC,EAAQrC,GAAUmC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,SAAS,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,mBAAmB,YAAY,GAAG,MAAM,UAAU,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,EAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "CounterFonts", "getFonts", "Counter", "CounterControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "description", "h3Title", "height", "id", "incrementType", "number", "speedMs", "suffix", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "BU4_wyR9A", "uvfNqUND5", "XbDSLtZLO", "OhLeOem3o", "ezNYwgiIW", "MTE4RiHaV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FrameraH7yeXBVj", "withCSS", "aH7yeXBVj_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "logo", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "IiM01HZ0g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "css", "FramerkNP8cImIG", "withCSS", "kNP8cImIG_default", "addPropertyControls", "ControlType", "addFonts", "CarouselItemFonts", "getFonts", "kNP8cImIG_default", "TickerFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "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", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerfuxa0eFsG", "withCSS", "fuxa0eFsG_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bkkXyXBrz", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "SVG", "css", "FramerOY8jC43hH", "withCSS", "OY8jC43hH_default", "addPropertyControls", "ControlType", "addFonts"]
}
