{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/dpKWl78gnZ5Un0wd88ts/xtJUqPjxMsJ5a4ayV2OZ/hFXtMncIX.js", "ssg:https://framerusercontent.com/modules/LkSerSc7gruqULX47UzT/tGqZ46RRZ3FlJc0mt1H3/saFNYO4Rl.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,SVG,useActiveVariantCallback,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/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-f9flL\";const variantClassNames={RwB6PzYil:\"framer-v-hwapoj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"RwB6PzYil\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapk2fvrr=activeVariantCallback(async(...args)=>{setVariant(\"RwB6PzYil\");});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-hwapoj\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"RwB6PzYil\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xgfbbm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Czngm_WwJ-container\",nodeId:\"Czngm_WwJ\",rendersWithMotion:true,scopeId:\"hFXtMncIX\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"Czngm_WwJ\",layoutId:\"Czngm_WwJ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1cg0lgp\",\"data-framer-name\":\"Arbitrum_Logos_AllWhite_horizontal_RGB_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HABiOFLmN\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 122 32\"><g><path d=\"M 0 0 L 121.483 0 L 121.483 32 L 0 32 Z\" fill=\"transparent\"></path><path d=\"M 16.008 18.43 L 14.506 22.676 C 14.462 22.793 14.462 22.923 14.506 23.04 L 17.078 30.35 L 20.062 28.568 L 16.485 18.422 C 16.451 18.318 16.353 18.249 16.244 18.25 C 16.135 18.252 16.039 18.324 16.008 18.429 Z M 19.008 11.28 C 18.928 11.045 18.612 11.045 18.524 11.28 L 17.021 15.526 C 16.977 15.643 16.977 15.773 17.021 15.89 L 21.243 27.864 L 24.227 26.082 L 19.007 11.28 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 13.711 1.98 C 13.786 1.981 13.859 2.002 13.924 2.04 L 25.286 8.827 C 25.418 8.902 25.498 9.047 25.498 9.206 L 25.498 22.779 C 25.498 22.939 25.418 23.082 25.286 23.159 L 13.924 29.953 C 13.859 29.991 13.786 30.012 13.711 30.013 C 13.636 30.012 13.563 29.991 13.499 29.953 L 2.137 23.166 C 2.003 23.087 1.921 22.942 1.924 22.786 L 1.924 9.207 C 1.924 9.047 2.005 8.903 2.137 8.827 L 13.499 2.04 C 13.563 2.002 13.636 1.981 13.711 1.98 Z M 13.711 0 C 13.308 0 12.898 0.114 12.539 0.326 L 1.177 7.113 C 0.447 7.558 0.003 8.351 0.004 9.206 L 0.004 22.779 C -0.001 23.636 0.444 24.434 1.177 24.879 L 12.538 31.666 C 12.898 31.886 13.301 31.992 13.711 31.992 C 14.121 31.992 14.525 31.879 14.884 31.666 L 26.246 24.88 C 26.98 24.436 27.425 23.638 27.419 22.78 L 27.419 9.205 C 27.424 8.348 26.979 7.55 26.246 7.105 L 14.884 0.325 C 14.528 0.115 14.124 0.003 13.711 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 12.748 8.242 L 9.867 8.242 C 9.648 8.243 9.454 8.384 9.383 8.591 L 3.21 26.108 L 6.193 27.89 L 12.996 8.599 C 13.025 8.517 13.013 8.427 12.963 8.356 C 12.914 8.285 12.833 8.242 12.746 8.242 Z M 17.788 8.242 L 14.907 8.242 C 14.688 8.243 14.494 8.384 14.423 8.591 L 7.38 28.587 L 10.363 30.369 L 18.03 8.6 C 18.061 8.52 18.05 8.43 18.002 8.358 C 17.954 8.287 17.874 8.244 17.788 8.243 Z M 39.683 11.889 C 39.969 11.889 40.211 11.949 40.408 12.071 C 40.606 12.192 40.797 12.435 40.988 12.784 L 44.748 19.844 C 44.785 19.919 44.792 19.987 44.77 20.04 C 44.748 20.093 44.697 20.116 44.609 20.116 L 43.165 20.116 C 43.04 20.116 42.952 20.063 42.908 19.965 L 42.102 18.455 L 36.765 18.455 L 35.981 19.965 C 35.93 20.071 35.841 20.116 35.724 20.116 L 34.251 20.116 C 34.149 20.116 34.09 20.086 34.075 20.04 C 34.06 19.995 34.06 19.927 34.105 19.843 L 37.828 12.783 C 38.018 12.427 38.202 12.192 38.385 12.071 C 38.569 11.949 38.774 11.889 39.015 11.889 Z M 37.476 17.075 L 41.383 17.075 L 39.58 13.633 C 39.55 13.58 39.507 13.549 39.456 13.549 L 39.382 13.549 C 39.331 13.549 39.287 13.579 39.258 13.633 Z M 53.01 11.888 C 53.882 11.888 54.505 12.093 54.879 12.495 C 55.253 12.897 55.451 13.504 55.451 14.3 L 55.451 14.967 C 55.451 15.642 55.319 16.173 55.055 16.567 C 54.791 16.961 54.358 17.212 53.757 17.317 L 55.7 19.805 C 55.736 19.843 55.751 19.904 55.73 19.979 C 55.715 20.055 55.656 20.093 55.546 20.093 L 54.087 20.093 C 54.017 20.095 53.948 20.085 53.882 20.063 C 53.842 20.029 53.805 19.991 53.772 19.949 L 51.976 17.507 L 48.304 17.507 L 48.304 19.843 C 48.304 20.01 48.223 20.101 48.054 20.101 L 46.823 20.101 C 46.647 20.101 46.566 20.017 46.566 19.843 L 46.566 12.237 C 46.566 12.002 46.676 11.881 46.911 11.881 Z M 48.311 16.082 L 52.658 16.082 C 53.046 16.082 53.318 15.998 53.471 15.824 C 53.633 15.657 53.713 15.392 53.713 15.035 L 53.713 14.543 C 53.713 14.186 53.633 13.928 53.471 13.753 C 53.311 13.587 53.039 13.496 52.658 13.496 L 48.458 13.496 C 48.355 13.496 48.311 13.541 48.311 13.64 Z M 64.945 11.889 C 65.722 11.889 66.279 12.056 66.609 12.374 C 66.939 12.693 67.1 13.178 67.1 13.83 L 67.1 14.391 C 67.1 15.043 66.858 15.544 66.374 15.885 C 66.894 16.195 67.159 16.704 67.159 17.394 L 67.159 18.076 C 67.159 18.387 67.129 18.676 67.056 18.918 C 66.994 19.156 66.879 19.376 66.719 19.563 C 66.558 19.737 66.359 19.873 66.096 19.973 C 65.789 20.074 65.466 20.123 65.143 20.116 L 58.399 20.116 C 58.172 20.116 58.055 20.002 58.055 19.76 L 58.055 12.245 C 58.055 12.01 58.165 11.889 58.399 11.889 Z M 59.799 15.3 L 64.454 15.3 C 64.835 15.3 65.084 15.24 65.224 15.126 C 65.363 15.012 65.429 14.837 65.429 14.61 L 65.429 14.208 C 65.429 13.965 65.363 13.791 65.231 13.67 C 65.099 13.556 64.879 13.503 64.593 13.503 L 59.946 13.503 C 59.843 13.503 59.799 13.556 59.799 13.655 Z M 59.799 16.581 L 59.799 18.333 C 59.799 18.439 59.851 18.485 59.946 18.485 L 64.6 18.485 C 64.901 18.485 65.121 18.425 65.246 18.318 C 65.37 18.212 65.444 18.022 65.444 17.772 L 65.444 17.325 C 65.444 17.082 65.37 16.9 65.238 16.779 C 65.099 16.657 64.842 16.589 64.461 16.589 Z M 71.394 11.889 C 71.555 11.889 71.644 11.972 71.644 12.147 L 71.644 19.851 C 71.644 20.018 71.563 20.109 71.394 20.109 L 70.163 20.109 C 69.987 20.109 69.906 20.025 69.906 19.851 L 69.906 12.147 C 69.906 11.98 69.994 11.889 70.163 11.889 Z M 83.29 11.889 C 83.466 11.889 83.547 11.972 83.547 12.147 L 83.547 13.299 C 83.547 13.481 83.459 13.565 83.291 13.565 L 79.728 13.565 L 79.728 19.851 C 79.728 20.018 79.648 20.109 79.478 20.109 L 78.24 20.109 C 78.079 20.109 77.99 20.025 77.99 19.851 L 77.99 13.565 L 74.428 13.565 C 74.253 13.565 74.172 13.474 74.172 13.299 L 74.172 12.147 C 74.172 11.98 74.26 11.889 74.428 11.889 L 83.291 11.889 Z M 92.271 11.888 C 93.144 11.888 93.767 12.093 94.148 12.495 C 94.529 12.897 94.72 13.504 94.72 14.3 L 94.72 14.967 C 94.72 15.642 94.588 16.173 94.324 16.567 C 94.06 16.961 93.627 17.212 93.026 17.317 L 94.969 19.805 C 95.006 19.843 95.02 19.904 94.999 19.979 C 94.984 20.055 94.925 20.093 94.815 20.093 L 93.356 20.093 C 93.286 20.095 93.217 20.085 93.151 20.063 C 93.114 20.033 93.078 19.995 93.034 19.949 L 91.238 17.507 L 87.565 17.507 L 87.565 19.843 C 87.565 20.01 87.485 20.101 87.316 20.101 L 86.085 20.101 C 85.909 20.101 85.828 20.017 85.828 19.843 L 85.828 12.237 C 85.828 12.002 85.945 11.881 86.173 11.881 Z M 87.573 16.082 L 91.92 16.082 C 92.308 16.082 92.58 15.998 92.733 15.824 C 92.894 15.657 92.975 15.392 92.975 15.035 L 92.975 14.543 C 92.975 14.186 92.895 13.928 92.733 13.753 C 92.572 13.587 92.301 13.496 91.919 13.496 L 87.719 13.496 C 87.617 13.496 87.573 13.541 87.573 13.64 Z M 98.653 11.889 C 98.814 11.889 98.903 11.972 98.903 12.147 L 98.903 16.833 C 98.903 17.143 98.924 17.409 98.976 17.613 C 99.026 17.826 99.108 17.985 99.225 18.107 C 99.35 18.237 99.511 18.327 99.687 18.365 C 99.885 18.418 100.126 18.44 100.42 18.44 L 103.564 18.44 C 103.865 18.44 104.099 18.41 104.297 18.364 C 104.473 18.325 104.633 18.236 104.759 18.107 C 104.884 17.969 104.968 17.798 105.001 17.614 C 105.049 17.357 105.072 17.095 105.067 16.833 L 105.067 12.147 C 105.067 11.98 105.148 11.889 105.316 11.889 L 106.555 11.889 C 106.716 11.889 106.804 11.972 106.804 12.147 L 106.804 17.007 C 106.804 17.568 106.746 18.046 106.636 18.447 C 106.536 18.809 106.347 19.141 106.086 19.411 C 105.837 19.661 105.507 19.836 105.096 19.949 C 104.693 20.063 104.202 20.116 103.63 20.116 L 100.354 20.116 C 99.782 20.116 99.291 20.063 98.894 19.949 C 98.499 19.836 98.169 19.661 97.913 19.411 C 97.663 19.161 97.473 18.842 97.356 18.448 C 97.238 18.054 97.18 17.568 97.18 17.008 L 97.18 12.147 C 97.18 11.98 97.268 11.889 97.436 11.889 Z M 111.683 11.889 C 111.845 11.889 111.991 11.904 112.116 11.919 C 112.233 11.949 112.343 11.987 112.431 12.055 C 112.519 12.124 112.6 12.215 112.68 12.321 C 112.746 12.435 112.827 12.579 112.9 12.776 L 115.261 18.41 C 115.285 18.477 115.351 18.521 115.422 18.516 L 115.561 18.516 C 115.634 18.516 115.686 18.486 115.722 18.41 L 118.083 12.776 C 118.156 12.586 118.237 12.435 118.303 12.321 C 118.364 12.214 118.449 12.123 118.552 12.056 C 118.643 11.988 118.748 11.941 118.86 11.919 C 118.977 11.889 119.116 11.889 119.285 11.889 L 120.502 11.889 C 120.89 11.889 121.161 11.979 121.301 12.162 C 121.44 12.344 121.506 12.662 121.506 13.102 L 121.506 19.843 C 121.506 20.01 121.418 20.101 121.249 20.101 L 120.076 20.101 C 119.915 20.101 119.827 20.018 119.827 19.843 L 119.827 13.71 C 119.827 13.634 119.798 13.588 119.739 13.588 L 119.637 13.588 C 119.563 13.588 119.512 13.618 119.49 13.679 L 117.203 18.942 C 117.127 19.13 117.034 19.31 116.924 19.48 C 116.838 19.612 116.737 19.734 116.624 19.844 C 116.514 19.935 116.389 20.011 116.25 20.049 C 116.111 20.087 115.95 20.109 115.759 20.109 L 115.217 20.109 C 115.026 20.109 114.865 20.087 114.725 20.049 C 114.586 20.011 114.458 19.941 114.352 19.844 C 114.233 19.74 114.131 19.617 114.051 19.48 C 113.94 19.311 113.847 19.131 113.773 18.942 L 111.486 13.679 C 111.464 13.611 111.42 13.589 111.339 13.589 L 111.236 13.589 C 111.17 13.589 111.148 13.626 111.148 13.709 L 111.148 19.844 C 111.148 20.011 111.068 20.102 110.899 20.102 L 109.741 20.102 C 109.565 20.102 109.484 20.019 109.484 19.844 L 109.484 13.103 C 109.484 12.656 109.55 12.345 109.69 12.163 C 109.829 11.981 110.093 11.89 110.496 11.89 L 111.683 11.89 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:12746455189,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cm2kqp\",\"data-framer-name\":\"Avalanche\",layoutDependency:layoutDependency,layoutId:\"LEwZJ8i2T\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n01mgt\",\"data-framer-name\":\"Avalanche\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:147,layoutDependency:layoutDependency,layoutId:\"lUwtcnKLZ\",svg:'<svg width=\"147\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.075 31.406c8.227 0 14.892-6.895 14.892-15.405S23.302.596 15.075.596C6.85.596.184 7.49.184 16s6.665 15.405 14.891 15.405ZM7.963 22.13h2.891c.682 0 1.022 0 1.326-.086.331-.1.635-.286.888-.533.23-.229.396-.529.728-1.129l.009-.019 3.747-6.853.012-.022c.324-.59.486-.886.559-1.201.078-.343.078-.71 0-1.053-.074-.314-.24-.619-.566-1.21l-.01-.014-1.468-2.647c-.304-.558-.456-.834-.65-.934a.719.719 0 0 0-.667 0c-.193.105-.345.381-.649.934l-7.135 13.01c-.3.547-.446.819-.437 1.043a.762.762 0 0 0 .331.595c.184.119.484.119 1.091.119Zm14.33 0H18.15c-.607 0-.916 0-1.104-.114a.771.771 0 0 1-.332-.6c-.014-.224.138-.496.442-1.034l.01-.014 2.066-3.672c.304-.543.46-.814.65-.914a.71.71 0 0 1 .662 0c.189.1.336.357.626.867l.023.043 2.076 3.671a.318.318 0 0 1 .033.053l.012.022c.277.5.42.757.411.968a.76.76 0 0 1-.331.6c-.184.124-.488.124-1.1.124Zm98.124-8.981c-.382-.424-.75-.71-1.114-.848a2.814 2.814 0 0 0-1.068-.214c-.538 0-1.026.1-1.468.305-.428.19-.801.466-1.114.819a3.712 3.712 0 0 0-.732 1.214 4.443 4.443 0 0 0-.249 1.5c0 .576.083 1.11.249 1.59.175.486.419.905.732 1.258a3.42 3.42 0 0 0 1.114.833c.442.2.93.305 1.468.305.419 0 .824-.1 1.216-.305.4-.214.773-.547 1.114-1l1.523 1.124c-.469.667-1.04 1.152-1.717 1.457a5.167 5.167 0 0 1-2.154.457 6.072 6.072 0 0 1-2.214-.395 5.25 5.25 0 0 1-1.731-1.138 5.333 5.333 0 0 1-1.128-1.776c-.272-.686-.41-1.453-.41-2.29 0-.863.138-1.639.41-2.339.272-.71.649-1.31 1.128-1.805a4.922 4.922 0 0 1 1.731-1.138 5.869 5.869 0 0 1 2.214-.41c.704 0 1.353.134 1.952.396.607.252 1.169.685 1.685 1.305l-1.437 1.095Zm-78.87-2.522H39.95l-4.516 10.738H37.5l.939-2.457h4.502l.966 2.457h2.113l-4.474-10.738Zm-.847 2.276 1.597 4.367H39.07l1.63-4.367Zm9.427-2.276H48l4.079 10.738h1.597l4.194-10.738h-1.994l-2.918 8.114-2.831-8.114Zm14.35 0h1.598l4.47 10.738h-2.113l-.967-2.457h-4.502l-.94 2.457h-2.066l4.52-10.738Zm2.344 6.643-1.598-4.367-1.63 4.367h3.228Zm9.654-6.643h-1.846v10.738h6.26v-1.728h-4.414v-9.01Zm12.053 0h1.598L94.6 21.365h-2.113l-.966-2.457h-4.507l-.94 2.457h-2.066l4.52-10.738Zm2.343 6.643-1.597-4.367-1.63 4.367h3.227Zm10.262-6.643h-2.45v10.738h1.847v-8.238h.027l5.133 8.238h2.348V10.627h-1.846v7.981h-.028l-5.031-7.981Zm26.971 0h-1.846v10.738h1.846v-4.733h4.852v4.733h1.846V10.627h-1.846v4.276h-4.852v-4.276Zm11.958 0h6.878v1.729h-5.032v2.638h4.765v1.728h-4.765v2.915h5.294v1.728h-7.14V10.627Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.016)\" d=\"M0 0h146.933v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q356l3\",\"data-framer-name\":\"Coinbase\",layoutDependency:layoutDependency,layoutId:\"SmKF8_oUq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bum4ss\",\"data-framer-name\":\"Coinbase_Wordmark_White_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zExdgXscI\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 102 18\"><g transform=\"translate(0.807 0)\"><path d=\"M 0 0.807 L 100.765 0.807 L 100.765 18.807 L 0 18.807 Z\" fill=\"transparent\"></path><path d=\"M 20.341 5.025 C 16.68 5.025 13.82 7.805 13.82 11.525 C 13.82 15.245 16.608 17.999 20.34 17.999 C 24.073 17.999 26.91 15.197 26.91 11.5 C 26.91 7.828 24.122 5.025 20.34 5.025 Z M 20.365 15.318 C 18.281 15.318 16.753 13.699 16.753 11.525 C 16.753 9.326 18.256 7.708 20.341 7.708 C 22.45 7.708 23.976 9.351 23.976 11.525 C 23.976 13.699 22.45 15.318 20.366 15.318 Z M 27.709 7.853 L 29.528 7.853 L 29.528 17.759 L 32.436 17.759 L 32.436 5.267 L 27.709 5.267 Z M 6.499 7.707 C 8.027 7.707 9.239 8.649 9.699 10.05 L 12.778 10.05 C 12.22 7.055 9.748 5.025 6.524 5.025 C 2.864 5.025 0.004 7.805 0.004 11.525 C 0.004 15.245 2.791 18 6.523 18 C 9.674 18 12.195 15.97 12.753 12.95 L 9.698 12.95 C 9.262 14.351 8.05 15.318 6.522 15.318 C 4.413 15.318 2.935 13.699 2.935 11.525 C 2.935 9.326 4.39 7.707 6.499 7.707 Z M 82.976 10.317 L 80.843 10.003 C 79.825 9.858 79.098 9.52 79.098 8.723 C 79.098 7.853 80.044 7.418 81.328 7.418 C 82.734 7.418 83.631 8.022 83.825 9.012 L 86.637 9.012 C 86.321 6.5 84.382 5.026 81.401 5.026 C 78.322 5.026 76.286 6.596 76.286 8.819 C 76.286 10.945 77.62 12.179 80.31 12.564 L 82.443 12.878 C 83.486 13.022 84.067 13.434 84.067 14.207 C 84.067 15.197 83.049 15.608 81.643 15.608 C 79.922 15.608 78.953 14.908 78.807 13.845 L 75.947 13.845 C 76.213 16.285 78.128 18 81.619 18 C 84.794 18 86.903 16.55 86.903 14.061 C 86.903 11.839 85.376 10.679 82.976 10.317 Z M 30.983 0.12 C 29.916 0.12 29.116 0.893 29.116 1.955 C 29.116 3.018 29.916 3.791 30.983 3.791 C 32.049 3.791 32.85 3.018 32.85 1.956 C 32.85 0.893 32.05 0.12 30.983 0.12 Z M 73.669 9.543 C 73.669 6.837 72.021 5.025 68.531 5.025 C 65.234 5.025 63.391 6.693 63.028 9.254 L 65.913 9.254 C 66.058 8.264 66.833 7.442 68.483 7.442 C 69.961 7.442 70.688 8.094 70.688 8.892 C 70.688 9.931 69.355 10.196 67.707 10.365 C 65.477 10.607 62.713 11.379 62.713 14.279 C 62.713 16.526 64.386 17.975 67.053 17.975 C 69.137 17.975 70.446 17.105 71.101 15.728 C 71.198 16.96 72.119 17.758 73.404 17.758 L 75.101 17.758 L 75.101 15.173 L 73.671 15.173 L 73.671 9.543 Z M 70.809 12.683 C 70.809 14.351 69.355 15.583 67.585 15.583 C 66.494 15.583 65.572 15.124 65.572 14.158 C 65.572 12.926 67.052 12.588 68.409 12.443 C 69.718 12.323 70.445 12.033 70.809 11.476 L 70.809 12.684 Z M 55.369 5.024 C 53.744 5.024 52.387 5.701 51.417 6.836 L 51.417 0 L 48.508 0 L 48.508 17.759 L 51.368 17.759 L 51.368 16.116 C 52.338 17.299 53.72 18 55.368 18 C 58.858 18 61.501 15.246 61.501 11.525 C 61.501 7.805 58.811 5.025 55.368 5.025 Z M 54.932 15.317 C 52.848 15.317 51.32 13.698 51.32 11.524 C 51.32 9.35 52.871 7.707 54.956 7.707 C 57.066 7.707 58.543 9.326 58.543 11.524 C 58.543 13.698 57.017 15.317 54.932 15.317 Z M 41.551 5.025 C 39.66 5.025 38.423 5.798 37.696 6.885 L 37.696 5.268 L 34.811 5.268 L 34.811 17.758 L 37.719 17.758 L 37.719 10.97 C 37.719 9.06 38.931 7.708 40.725 7.708 C 42.398 7.708 43.44 8.892 43.44 10.608 L 43.44 17.76 L 46.349 17.76 L 46.349 10.39 C 46.349 7.249 44.726 5.026 41.55 5.026 Z M 100.768 11.115 C 100.768 7.539 98.151 5.026 94.635 5.026 C 90.903 5.026 88.163 7.829 88.163 11.525 C 88.163 15.415 91.097 18 94.684 18 C 97.714 18 100.09 16.212 100.695 13.675 L 97.665 13.675 C 97.229 14.787 96.162 15.415 94.732 15.415 C 92.865 15.415 91.459 14.255 91.144 12.225 L 100.768 12.225 Z M 91.314 10.148 C 91.775 8.408 93.084 7.563 94.587 7.563 C 96.235 7.563 97.496 8.505 97.787 10.148 L 91.313 10.148 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:11009484432,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1osp6fc\",\"data-framer-name\":\"Forbes\",layoutDependency:layoutDependency,layoutId:\"a1VSsfrsA\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gx9559\",\"data-framer-name\":\"forbes_2_2\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FDIs4c4Ie\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 77 20\"><g transform=\"translate(0.236 0.496)\"><path d=\"M 0 0.004 L 75.922 0.004 L 75.922 19.004 L 0 19.004 Z\" fill=\"transparent\"></path><path d=\"M 43.11 6.195 C 44.07 5.672 45.03 5.41 46.252 5.41 C 49.219 5.41 51.487 8.028 51.487 11.606 C 51.487 16.144 48.695 19.024 44.07 19.024 C 42.412 19.024 40.753 18.762 39.182 18.412 C 39.27 16.58 39.358 5.41 39.182 3.315 C 39.009 2.268 38.746 1.832 37.962 1.658 L 37.351 1.57 L 37.351 1.047 L 43.198 0 C 43.111 0.872 43.11 3.403 43.11 6.195 Z M 43.197 17.977 C 43.458 18.063 43.895 18.063 44.244 18.063 C 46.077 18.063 47.386 15.358 47.387 11.867 C 47.387 9.075 46.34 6.807 44.419 6.807 C 43.982 6.807 43.633 6.893 43.109 7.068 C 43.023 11.606 43.109 16.755 43.197 17.977 Z M 0 0.349 L 15.36 0.349 L 15.447 5.498 L 14.574 5.76 C 13.702 3.141 12.48 1.658 10.124 1.658 L 7.069 1.658 C 6.95 4.129 6.892 6.602 6.894 9.075 L 8.988 8.988 C 10.297 8.988 10.906 7.941 11.169 6.458 L 11.955 6.458 L 11.955 12.651 L 11.169 12.651 C 10.907 11.168 10.297 10.121 8.988 10.121 L 6.894 10.034 C 6.894 12.302 6.981 14.135 7.069 15.27 C 7.243 16.928 7.679 17.713 8.814 17.8 L 9.861 17.975 L 9.861 18.673 L 0.001 18.673 L 0.001 17.975 L 0.873 17.8 C 2.008 17.714 2.443 16.928 2.618 15.27 C 2.793 12.566 2.88 6.893 2.618 3.751 C 2.444 2.093 2.007 1.395 0.873 1.221 L 0 1.134 Z M 26.88 12.129 C 26.88 8.202 24.698 5.235 20.334 5.235 C 15.971 5.235 13.528 8.376 13.528 12.129 C 13.528 16.056 15.709 19.024 20.072 19.024 C 24.436 19.024 26.879 15.881 26.879 12.129 Z M 17.629 12.129 C 17.629 8.726 18.152 6.108 20.072 6.108 C 21.906 6.108 22.777 8.813 22.777 12.128 C 22.777 15.532 22.253 18.15 20.247 18.15 C 18.502 18.15 17.629 15.445 17.629 12.129 Z M 59.341 5.234 C 54.891 5.234 52.621 8.637 52.621 12.215 C 52.621 16.23 55.414 19.022 59.341 19.023 C 61.785 19.023 63.704 17.8 64.577 16.578 L 64.229 16.143 C 63.355 16.753 62.657 17.102 61.261 17.102 C 58.119 17.102 56.548 14.746 56.636 11.517 L 64.752 11.517 C 64.752 7.939 63.006 5.234 59.342 5.234 Z M 60.737 10.47 L 56.636 10.557 C 56.723 8.55 57.509 6.107 58.992 6.107 C 60.475 6.107 60.737 8.725 60.737 10.47 Z M 71.124 5.234 C 72.694 5.234 74.091 5.495 75.138 5.932 L 75.227 9.335 L 74.617 9.51 C 73.83 7.153 72.783 6.193 71.213 6.193 C 70.166 6.193 69.379 6.979 69.379 8.113 C 69.379 9.248 70.251 9.859 72.695 10.819 C 74.964 11.692 75.925 12.739 75.925 14.571 C 75.925 17.276 73.742 19.022 70.339 19.022 C 68.68 19.022 66.761 18.672 65.714 18.236 L 65.626 14.396 L 66.237 14.221 C 67.197 16.84 68.419 17.8 70.077 17.8 C 71.473 17.8 72.259 16.84 72.259 15.793 C 72.259 14.746 71.647 14.134 69.466 13.35 C 67.37 12.651 65.888 11.692 65.888 9.423 C 65.888 7.153 67.896 5.233 71.124 5.233 Z M 32.726 8.29 C 34.122 5.148 36.74 4.712 38.223 5.584 L 36.827 9.164 C 35.082 8.029 33.162 8.552 32.727 9.164 C 32.638 11.258 32.638 14.574 32.813 16.232 C 32.9 17.278 33.163 17.802 34.035 17.89 L 35.082 17.977 L 35.082 18.675 L 26.967 18.675 L 26.967 17.977 L 27.577 17.89 C 28.364 17.802 28.712 17.278 28.799 16.232 C 28.887 14.4 28.974 10.734 28.799 8.64 C 28.712 7.505 28.363 7.07 27.577 6.981 L 26.967 6.894 L 26.967 6.371 L 32.813 5.236 L 32.726 8.291 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:10363448155,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wyzdiu\",\"data-framer-name\":\"Optimism\",layoutDependency:layoutDependency,layoutId:\"Lf7WWYoIM\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qqe10\",\"data-framer-name\":\"Optimism_White_48_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"x9K0KTsZ2\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99 16\"><g transform=\"translate(0.34 0.5)\"><path d=\"M 0 0 L 98.475 0 L 98.475 15 L 0 15 Z\" fill=\"transparent\"></path><path d=\"M 5.265 14.785 C 4.531 14.792 3.801 14.677 3.105 14.445 C 2.474 14.239 1.899 13.89 1.425 13.425 C 0.969 12.971 0.643 12.405 0.445 11.725 C 0.261 11.045 0.237 10.251 0.372 9.345 C 0.47 8.771 0.575 8.198 0.686 7.625 L 1.056 5.885 C 1.461 4.085 2.194 2.718 3.252 1.785 C 4.311 0.85 5.74 0.385 7.536 0.385 C 8.311 0.385 9.026 0.505 9.678 0.745 C 10.313 0.953 10.889 1.31 11.358 1.785 C 11.826 2.251 12.152 2.825 12.337 3.505 C 12.534 4.185 12.558 4.978 12.411 5.885 C 12.325 6.468 12.22 7.048 12.097 7.625 C 11.986 8.199 11.869 8.773 11.746 9.345 C 11.327 11.171 10.589 12.538 9.53 13.445 C 8.471 14.338 7.05 14.785 5.265 14.785 Z M 5.505 11.905 C 6.17 11.905 6.755 11.691 7.259 11.265 C 7.764 10.838 8.121 10.158 8.329 9.225 C 8.465 8.638 8.582 8.085 8.681 7.565 C 8.791 7.045 8.89 6.505 8.976 5.945 C 9.136 5.011 9.062 4.331 8.755 3.905 C 8.447 3.478 7.961 3.265 7.295 3.265 C 6.631 3.265 6.047 3.478 5.542 3.905 C 5.049 4.331 4.699 5.011 4.489 5.945 C 4.354 6.505 4.231 7.045 4.12 7.565 C 4.016 8.117 3.918 8.671 3.825 9.225 C 3.677 10.158 3.751 10.838 4.046 11.265 C 4.342 11.691 4.828 11.905 5.505 11.905 Z M 14.366 14.585 C 14.251 14.589 14.141 14.536 14.071 14.445 C 13.997 14.351 13.972 14.231 13.997 14.085 L 16.545 1.085 C 16.566 0.944 16.639 0.816 16.748 0.725 C 16.844 0.638 16.968 0.588 17.098 0.585 L 22.01 0.585 C 22.761 0.585 23.438 0.678 24.041 0.865 C 24.657 1.051 25.168 1.338 25.574 1.725 C 25.98 2.111 26.264 2.598 26.424 3.185 C 26.584 3.758 26.589 4.431 26.442 5.205 C 26.134 6.738 25.506 7.871 24.558 8.605 C 23.623 9.338 22.361 9.705 20.773 9.705 L 18.281 9.705 L 17.431 14.085 C 17.41 14.226 17.337 14.354 17.228 14.445 C 17.134 14.536 17.009 14.587 16.878 14.585 Z M 18.761 6.945 L 20.884 6.945 C 21.37 6.951 21.844 6.796 22.232 6.505 C 22.638 6.211 22.902 5.765 23.026 5.165 C 23.087 4.818 23.1 4.511 23.063 4.245 C 23.031 3.986 22.89 3.753 22.675 3.605 C 22.465 3.445 22.14 3.365 21.696 3.365 L 19.481 3.365 Z M 29.853 14.585 C 29.732 14.592 29.615 14.539 29.539 14.445 C 29.463 14.341 29.437 14.21 29.466 14.085 L 31.516 3.725 L 28.229 3.725 C 28.114 3.729 28.003 3.677 27.933 3.585 C 27.859 3.478 27.835 3.358 27.859 3.225 L 28.284 1.085 C 28.304 0.948 28.369 0.821 28.469 0.725 C 28.571 0.635 28.702 0.585 28.838 0.585 L 38.771 0.585 C 38.907 0.585 39.005 0.631 39.067 0.725 C 39.141 0.818 39.165 0.938 39.141 1.085 L 38.716 3.225 C 38.688 3.364 38.617 3.49 38.513 3.585 C 38.42 3.676 38.294 3.727 38.163 3.725 L 34.876 3.725 L 32.845 14.085 C 32.823 14.226 32.751 14.354 32.641 14.445 C 32.547 14.536 32.422 14.587 32.291 14.585 Z M 39.528 14.585 C 39.407 14.592 39.29 14.539 39.214 14.445 C 39.14 14.351 39.115 14.231 39.14 14.085 L 41.706 1.085 C 41.727 0.944 41.799 0.816 41.909 0.725 C 42.005 0.637 42.13 0.588 42.26 0.585 L 44.753 0.585 C 44.876 0.585 44.974 0.631 45.048 0.725 C 45.122 0.818 45.147 0.938 45.122 1.085 L 42.556 14.085 C 42.535 14.226 42.462 14.354 42.353 14.445 C 42.265 14.534 42.145 14.584 42.02 14.585 Z M 47.102 14.585 C 46.981 14.592 46.864 14.539 46.788 14.445 C 46.714 14.351 46.69 14.231 46.714 14.085 L 49.262 1.085 C 49.284 0.944 49.356 0.816 49.466 0.725 C 49.568 0.635 49.699 0.585 49.835 0.585 L 51.829 0.585 C 52.026 0.585 52.161 0.645 52.235 0.765 C 52.304 0.843 52.36 0.93 52.401 1.025 L 54.396 7.345 L 58.901 1.025 C 58.938 0.958 59.011 0.871 59.122 0.765 C 59.251 0.643 59.424 0.578 59.602 0.585 L 61.596 0.585 C 61.732 0.585 61.836 0.631 61.91 0.725 C 61.984 0.818 62.009 0.938 61.984 1.085 L 59.436 14.085 C 59.415 14.226 59.342 14.354 59.233 14.445 C 59.131 14.535 58.999 14.585 58.863 14.585 L 56.648 14.585 C 56.533 14.589 56.423 14.536 56.353 14.445 C 56.279 14.351 56.254 14.231 56.279 14.085 L 57.719 6.705 L 54.894 10.765 C 54.799 10.881 54.694 10.988 54.58 11.085 C 54.46 11.182 54.309 11.231 54.155 11.225 L 53.195 11.225 C 53.023 11.225 52.9 11.178 52.826 11.085 C 52.751 10.99 52.695 10.881 52.66 10.765 L 51.349 6.525 L 49.853 14.085 C 49.832 14.226 49.759 14.354 49.65 14.445 C 49.562 14.534 49.443 14.584 49.318 14.585 Z M 63.39 14.585 C 63.269 14.592 63.152 14.539 63.076 14.445 C 63.002 14.351 62.977 14.231 63.002 14.085 L 65.569 1.085 C 65.59 0.944 65.662 0.816 65.772 0.725 C 65.868 0.638 65.992 0.588 66.122 0.585 L 68.615 0.585 C 68.738 0.585 68.837 0.631 68.911 0.725 C 68.984 0.818 69.009 0.938 68.984 1.085 L 66.418 14.085 C 66.397 14.226 66.324 14.354 66.215 14.445 C 66.127 14.534 66.007 14.584 65.882 14.585 Z M 75.063 14.785 C 73.832 14.785 72.823 14.598 72.035 14.225 C 71.259 13.851 70.699 13.358 70.355 12.745 C 70.027 12.14 69.903 11.446 70.004 10.765 C 70.027 10.66 70.078 10.564 70.151 10.485 C 70.225 10.397 70.333 10.346 70.447 10.345 L 72.81 10.345 C 72.983 10.345 73.106 10.378 73.18 10.445 C 73.253 10.511 73.327 10.598 73.401 10.705 C 73.451 10.905 73.549 11.098 73.697 11.285 C 73.844 11.471 74.047 11.625 74.306 11.745 C 74.576 11.851 74.909 11.905 75.303 11.905 C 76.017 11.905 76.589 11.785 77.02 11.545 C 77.45 11.305 77.703 10.978 77.777 10.565 C 77.851 10.271 77.802 10.031 77.629 9.845 C 77.469 9.645 77.18 9.471 76.762 9.325 C 76.355 9.165 75.808 9.005 75.118 8.845 C 74.22 8.631 73.481 8.338 72.903 7.965 C 72.324 7.578 71.918 7.091 71.684 6.505 C 71.462 5.905 71.432 5.191 71.592 4.365 C 71.838 3.138 72.447 2.171 73.42 1.465 C 74.392 0.745 75.654 0.385 77.205 0.385 C 78.005 0.385 78.713 0.505 79.328 0.745 C 79.956 0.985 80.479 1.305 80.898 1.705 C 81.316 2.105 81.618 2.531 81.802 2.985 C 81.987 3.425 82.048 3.858 81.987 4.285 C 81.971 4.398 81.919 4.504 81.839 4.585 C 81.76 4.662 81.654 4.705 81.544 4.705 L 79.07 4.705 C 78.954 4.707 78.839 4.679 78.737 4.625 C 78.641 4.56 78.565 4.47 78.516 4.365 C 78.516 4.071 78.374 3.818 78.091 3.605 C 77.808 3.378 77.432 3.265 76.965 3.265 C 76.435 3.265 75.992 3.371 75.635 3.585 C 75.278 3.785 75.057 4.098 74.971 4.525 C 74.909 4.791 74.94 5.025 75.063 5.225 C 75.198 5.425 75.444 5.598 75.801 5.745 C 76.171 5.891 76.675 6.045 77.315 6.205 C 78.399 6.431 79.248 6.738 79.864 7.125 C 80.479 7.498 80.891 7.971 81.101 8.545 C 81.322 9.118 81.353 9.818 81.193 10.645 C 80.923 12.005 80.263 13.038 79.217 13.745 C 78.183 14.438 76.798 14.785 75.063 14.785 Z M 83.466 14.585 C 83.345 14.592 83.228 14.539 83.152 14.445 C 83.078 14.351 83.054 14.231 83.078 14.085 L 85.626 1.085 C 85.647 0.944 85.719 0.816 85.829 0.725 C 85.931 0.635 86.063 0.585 86.199 0.585 L 88.193 0.585 C 88.39 0.585 88.525 0.645 88.599 0.765 C 88.668 0.843 88.724 0.93 88.765 1.025 L 90.759 7.345 L 95.264 1.025 C 95.301 0.958 95.375 0.871 95.486 0.765 C 95.615 0.643 95.788 0.578 95.966 0.585 L 97.96 0.585 C 98.096 0.585 98.2 0.631 98.274 0.725 C 98.348 0.818 98.373 0.938 98.348 1.085 L 95.8 14.085 C 95.779 14.226 95.706 14.354 95.597 14.445 C 95.495 14.535 95.363 14.585 95.227 14.585 L 93.012 14.585 C 92.897 14.589 92.786 14.537 92.716 14.445 C 92.64 14.341 92.614 14.21 92.643 14.085 L 94.083 6.705 L 91.258 10.765 C 91.163 10.881 91.058 10.988 90.944 11.085 C 90.824 11.182 90.673 11.231 90.519 11.225 L 89.559 11.225 C 89.387 11.225 89.264 11.178 89.189 11.085 C 89.115 10.99 89.059 10.881 89.024 10.765 L 87.713 6.525 L 86.217 14.085 C 86.196 14.226 86.123 14.354 86.014 14.445 C 85.926 14.534 85.807 14.584 85.682 14.585 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',svgContentId:9452488851,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pk86ay\",\"data-framer-name\":\"Solana\",layoutDependency:layoutDependency,layoutId:\"eIshCa7CQ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1k7iofv\",\"data-framer-name\":\"solanaWordMark_1\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"QbOAIf6Pz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 92 15\"><g transform=\"translate(0.564 0.5)\"><path d=\"M 0.11 0 L 90.815 0 L 90.815 15 L 0.11 15 Z\" fill=\"transparent\"></path><g transform=\"translate(0 0.095)\"><path d=\"M 13.118 2.97 L 13.118 0 L 2.722 0 C 1.988 0.005 1.289 0.319 0.797 0.864 C 0.28 1.434 -0.004 2.178 0 2.948 L 0 5.961 C 0 6.742 0.287 7.492 0.797 8.045 C 1.289 8.59 1.988 8.903 2.722 8.908 L 10.963 8.908 L 10.963 11.875 L 0.196 11.875 L 0.196 14.845 L 10.983 14.845 C 11.717 14.839 12.415 14.526 12.907 13.981 C 13.424 13.41 13.708 12.667 13.704 11.897 L 13.704 8.887 C 13.708 8.117 13.424 7.373 12.907 6.802 C 12.415 6.258 11.717 5.944 10.983 5.939 L 2.742 5.939 L 2.742 2.969 L 13.118 2.969 Z M 15.954 2.948 L 15.954 11.897 C 15.954 12.679 16.24 13.428 16.751 13.981 C 17.243 14.525 17.941 14.839 18.675 14.844 L 26.936 14.844 C 27.67 14.839 28.368 14.525 28.86 13.981 C 29.37 13.428 29.657 12.679 29.657 11.897 L 29.657 2.948 C 29.657 2.166 29.371 1.417 28.86 0.864 C 28.368 0.32 27.67 0.006 26.936 0.001 L 18.676 0.001 C 17.942 0.006 17.244 0.32 16.752 0.864 C 16.235 1.434 15.951 2.178 15.955 2.948 Z M 26.916 11.875 L 18.689 11.875 L 18.689 2.97 L 26.911 2.97 Z M 45.106 2.948 L 45.106 14.845 L 47.847 14.845 L 47.847 9.968 L 55.877 9.968 L 55.877 14.845 L 58.615 14.845 L 58.615 2.948 C 58.615 2.166 58.329 1.417 57.818 0.864 C 57.326 0.32 56.628 0.006 55.894 0.001 L 47.827 0.001 C 47.093 0.006 46.395 0.32 45.903 0.864 C 45.386 1.434 45.102 2.178 45.106 2.948 Z M 55.876 6.998 L 47.849 6.998 L 47.849 2.97 L 55.878 2.97 Z M 77.192 2.948 L 77.192 14.845 L 79.928 14.845 L 79.928 9.968 L 87.955 9.968 L 87.955 14.845 L 90.696 14.845 L 90.696 2.948 C 90.696 2.166 90.409 1.417 89.899 0.864 C 89.407 0.32 88.71 0.007 87.976 0.001 L 79.914 0.001 C 79.18 0.006 78.482 0.32 77.99 0.864 C 77.473 1.434 77.189 2.178 77.193 2.948 Z M 87.959 6.998 L 79.928 6.998 L 79.928 2.97 L 87.955 2.97 Z M 72.021 0.001 L 72.021 11.875 L 70.933 11.875 L 66.993 1.237 C 66.864 0.879 66.632 0.567 66.326 0.339 C 66.026 0.119 65.672 0.001 65.309 0.001 L 62.869 0.001 C 62.389 0.001 61.927 0.208 61.587 0.576 C 61.242 0.956 61.052 1.452 61.055 1.966 L 61.055 14.844 L 63.789 14.844 L 63.789 2.97 L 64.887 2.97 L 68.816 13.61 C 68.951 13.975 69.184 14.287 69.484 14.507 C 69.784 14.727 70.139 14.845 70.501 14.844 L 72.941 14.844 C 73.423 14.844 73.884 14.637 74.224 14.269 C 74.569 13.889 74.758 13.392 74.755 12.879 L 74.755 0.001 Z M 34.828 11.875 L 34.828 0.001 L 32.09 0.001 L 32.09 11.897 C 32.09 12.679 32.377 13.428 32.887 13.981 C 33.379 14.525 34.077 14.839 34.811 14.844 L 43.053 14.844 L 43.053 11.875 Z\" fill=\"rgb(255,255,255)\"></path></g></g></svg>',svgContentId:11045302118,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1prq3ug\",\"data-framer-name\":\"Ripple\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"E7K6GkyHk\",onTap:onTapk2fvrr,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o174mh\",\"data-framer-name\":\"Ripple\",layoutDependency:layoutDependency,layoutId:\"UWVc4NOyE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85 24\" overflow=\"visible\"><g><path d=\"M 30.962 9.099 C 30.724 9.021 30.243 8.943 29.767 8.943 C 28.327 8.943 26.814 10.04 26.814 11.455 L 26.814 18.12 L 23.539 18.12 L 23.539 6.276 L 26.65 6.276 L 26.65 7.451 C 27.37 6.587 28.724 6.036 30.163 6.036 C 30.645 6.036 30.883 6.114 31.28 6.114 Z M 34.634 0 C 35.751 0 36.708 0.863 36.708 2.038 C 36.708 3.213 35.751 4.076 34.555 4.076 C 33.36 4.076 32.402 3.213 32.402 2.038 C 32.481 0.863 33.439 0 34.634 0 M 36.233 18.12 L 32.957 18.12 L 32.957 6.276 L 36.233 6.276 Z M 45.809 6.042 C 44.455 6.042 43.253 6.515 42.296 7.217 L 42.296 6.276 L 39.105 6.276 L 39.105 24 L 42.375 24 L 42.375 17.257 C 43.333 17.964 44.37 18.354 45.651 18.354 C 47.407 18.354 49.164 17.568 50.201 16.316 C 51.159 15.219 51.72 13.804 51.72 12.156 C 51.714 8.709 49.085 6.042 45.809 6.042 M 45.413 15.453 C 43.418 15.453 42.058 14.122 42.058 12.156 C 42.058 10.196 43.412 8.859 45.413 8.859 C 47.169 8.859 48.523 10.352 48.523 12.156 C 48.523 14.044 47.084 15.453 45.413 15.453 M 68.159 0.707 L 71.434 0.707 L 71.434 18.12 L 68.159 18.12 Z M 84.604 16.238 C 83.408 17.568 81.493 18.354 79.657 18.354 C 76.064 18.354 73.349 15.92 73.349 12.156 C 73.349 8.859 75.661 5.958 79.254 5.958 C 82.609 5.958 85 8.703 85 12 C 85 12.312 85 12.629 84.921 12.941 L 76.46 12.941 C 76.619 14.589 77.979 15.764 79.736 15.764 C 81.09 15.764 82.212 14.979 82.767 14.434 Z M 81.566 10.669 C 81.487 9.65 80.529 8.553 79.169 8.553 C 77.815 8.553 76.692 9.572 76.613 10.669 Z M 60.339 6.042 C 58.985 6.042 57.783 6.515 56.825 7.217 L 56.825 6.276 L 53.714 6.276 L 53.714 24 L 56.99 24 L 56.99 17.257 C 57.948 17.964 58.985 18.354 60.266 18.354 C 62.022 18.354 63.779 17.568 64.816 16.316 C 65.774 15.219 66.335 13.804 66.335 12.156 C 66.243 8.709 63.608 6.042 60.339 6.042 M 59.936 15.453 C 57.942 15.453 56.581 14.122 56.581 12.156 C 56.581 10.196 57.935 8.859 59.936 8.859 C 61.693 8.859 63.047 10.352 63.047 12.156 C 63.053 14.044 61.614 15.453 59.936 15.453 M 12.608 1.966 C 11.254 2.751 10.455 4.16 10.455 5.652 C 10.455 6.438 10.772 7.223 11.175 7.924 C 11.492 8.553 11.657 9.65 10.534 10.196 C 9.735 10.669 8.698 10.352 8.222 9.566 C 7.741 8.937 7.186 8.314 6.466 7.84 C 5.112 7.055 3.513 7.055 2.153 7.84 C 0.799 8.625 0 10.034 0 11.526 C 0 13.019 0.799 14.428 2.153 15.213 C 3.507 15.998 5.105 15.998 6.466 15.213 C 7.186 14.823 7.741 14.194 8.143 13.487 C 8.46 12.935 9.339 12.234 10.455 12.857 C 11.254 13.331 11.492 14.35 11.095 15.129 C 10.699 15.836 10.455 16.621 10.455 17.401 C 10.455 18.893 11.254 20.302 12.608 21.087 C 13.962 21.872 15.56 21.872 16.921 21.087 C 18.275 20.302 19.074 18.893 19.074 17.401 C 19.074 15.908 18.275 14.5 16.921 13.714 C 16.201 13.325 15.402 13.163 14.524 13.163 C 13.804 13.163 12.846 12.689 12.846 11.514 C 12.846 10.573 13.566 9.866 14.524 9.866 C 15.323 9.866 16.201 9.71 16.921 9.315 C 18.275 8.529 19.074 7.121 19.074 5.628 C 19.074 4.136 18.275 2.727 16.921 1.942 C 16.28 1.552 15.481 1.391 14.767 1.391 C 14.042 1.415 13.243 1.57 12.608 1.966\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-29cyn6\",layoutDependency:layoutDependency,layoutId:\"QljaaAm8d\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 85 24\" overflow=\"visible\"><path d=\"M 30.962 9.099 C 30.724 9.021 30.243 8.943 29.767 8.943 C 28.327 8.943 26.814 10.04 26.814 11.455 L 26.814 18.12 L 23.539 18.12 L 23.539 6.276 L 26.65 6.276 L 26.65 7.451 C 27.37 6.587 28.724 6.036 30.163 6.036 C 30.645 6.036 30.883 6.114 31.28 6.114 Z M 34.634 0 C 35.751 0 36.708 0.863 36.708 2.038 C 36.708 3.213 35.751 4.076 34.555 4.076 C 33.36 4.076 32.402 3.213 32.402 2.038 C 32.481 0.863 33.439 0 34.634 0 M 36.233 18.12 L 32.957 18.12 L 32.957 6.276 L 36.233 6.276 Z M 45.809 6.042 C 44.455 6.042 43.253 6.515 42.296 7.217 L 42.296 6.276 L 39.105 6.276 L 39.105 24 L 42.375 24 L 42.375 17.257 C 43.333 17.964 44.37 18.354 45.651 18.354 C 47.407 18.354 49.164 17.568 50.201 16.316 C 51.159 15.219 51.72 13.804 51.72 12.156 C 51.714 8.709 49.085 6.042 45.809 6.042 M 45.413 15.453 C 43.418 15.453 42.058 14.122 42.058 12.156 C 42.058 10.196 43.412 8.859 45.413 8.859 C 47.169 8.859 48.523 10.352 48.523 12.156 C 48.523 14.044 47.084 15.453 45.413 15.453 M 68.159 0.707 L 71.434 0.707 L 71.434 18.12 L 68.159 18.12 Z M 84.604 16.238 C 83.408 17.568 81.493 18.354 79.657 18.354 C 76.064 18.354 73.349 15.92 73.349 12.156 C 73.349 8.859 75.661 5.958 79.254 5.958 C 82.609 5.958 85 8.703 85 12 C 85 12.312 85 12.629 84.921 12.941 L 76.46 12.941 C 76.619 14.589 77.979 15.764 79.736 15.764 C 81.09 15.764 82.212 14.979 82.767 14.434 Z M 81.566 10.669 C 81.487 9.65 80.529 8.553 79.169 8.553 C 77.815 8.553 76.692 9.572 76.613 10.669 Z M 60.339 6.042 C 58.985 6.042 57.783 6.515 56.825 7.217 L 56.825 6.276 L 53.714 6.276 L 53.714 24 L 56.99 24 L 56.99 17.257 C 57.948 17.964 58.985 18.354 60.266 18.354 C 62.022 18.354 63.779 17.568 64.816 16.316 C 65.774 15.219 66.335 13.804 66.335 12.156 C 66.243 8.709 63.608 6.042 60.339 6.042 M 59.936 15.453 C 57.942 15.453 56.581 14.122 56.581 12.156 C 56.581 10.196 57.935 8.859 59.936 8.859 C 61.693 8.859 63.047 10.352 63.047 12.156 C 63.053 14.044 61.614 15.453 59.936 15.453 M 12.608 1.966 C 11.254 2.751 10.455 4.16 10.455 5.652 C 10.455 6.438 10.772 7.223 11.175 7.924 C 11.492 8.553 11.657 9.65 10.534 10.196 C 9.735 10.669 8.698 10.352 8.222 9.566 C 7.741 8.937 7.186 8.314 6.466 7.84 C 5.112 7.055 3.513 7.055 2.153 7.84 C 0.799 8.625 0 10.034 0 11.526 C 0 13.019 0.799 14.428 2.153 15.213 C 3.507 15.998 5.105 15.998 6.466 15.213 C 7.186 14.823 7.741 14.194 8.143 13.487 C 8.46 12.935 9.339 12.234 10.455 12.857 C 11.254 13.331 11.492 14.35 11.095 15.129 C 10.699 15.836 10.455 16.621 10.455 17.401 C 10.455 18.893 11.254 20.302 12.608 21.087 C 13.962 21.872 15.56 21.872 16.921 21.087 C 18.275 20.302 19.074 18.893 19.074 17.401 C 19.074 15.908 18.275 14.5 16.921 13.714 C 16.201 13.325 15.402 13.163 14.524 13.163 C 13.804 13.163 12.846 12.689 12.846 11.514 C 12.846 10.573 13.566 9.866 14.524 9.866 C 15.323 9.866 16.201 9.71 16.921 9.315 C 18.275 8.529 19.074 7.121 19.074 5.628 C 19.074 4.136 18.275 2.727 16.921 1.942 C 16.28 1.552 15.481 1.391 14.767 1.391 C 14.042 1.415 13.243 1.57 12.608 1.966\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18h724r\",layoutDependency:layoutDependency,layoutId:\"qA4IwezYV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.741 12.084\" overflow=\"visible\"><path d=\"M 7.423 3.063 C 7.186 2.985 6.704 2.907 6.228 2.907 C 4.788 2.907 3.276 4.004 3.276 5.419 L 3.276 12.084 L 0 12.084 L 0 0.24 L 3.111 0.24 L 3.111 1.415 C 3.831 0.551 5.185 0 6.624 0 C 7.106 0 7.344 0.078 7.741 0.078 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1orgp6d\",layoutDependency:layoutDependency,layoutId:\"koP_HAYEx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.306 4.076\" overflow=\"visible\"><path d=\"M 2.233 0 C 3.349 0 4.306 0.863 4.306 2.038 C 4.306 3.213 3.349 4.076 2.153 4.076 C 0.958 4.076 0 3.213 0 2.038 C 0.079 0.863 1.037 0 2.233 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lzs6ug\",layoutDependency:layoutDependency,layoutId:\"p57wAZvRa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.276 11.844\" overflow=\"visible\"><path d=\"M 3.276 11.844 L 0 11.844 L 0 0 L 3.276 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7m4y3e\",layoutDependency:layoutDependency,layoutId:\"BkLXNmpe3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.614 17.958\" overflow=\"visible\"><path d=\"M 6.704 0 C 5.349 0 4.148 0.474 3.19 1.175 L 3.19 0.234 L 0 0.234 L 0 17.958 L 3.269 17.958 L 3.269 11.215 C 4.227 11.922 5.264 12.312 6.545 12.312 C 8.302 12.312 10.058 11.526 11.095 10.274 C 12.053 9.177 12.614 7.762 12.614 6.114 C 12.608 2.667 9.979 0 6.704 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1csmig6\",layoutDependency:layoutDependency,layoutId:\"MhopHyTAB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.466 6.593\" overflow=\"visible\"><path d=\"M 3.355 6.593 C 1.36 6.593 0 5.263 0 3.297 C 0 1.337 1.354 0 3.355 0 C 5.112 0 6.466 1.493 6.466 3.297 C 6.466 5.185 5.026 6.593 3.355 6.593\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16h1ptq\",layoutDependency:layoutDependency,layoutId:\"q9qO13wWw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.276 17.413\" overflow=\"visible\"><path d=\"M 0 0 L 3.276 0 L 3.276 17.413 L 0 17.413 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rq82q\",layoutDependency:layoutDependency,layoutId:\"uFEO61HWm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.651 12.396\" overflow=\"visible\"><path d=\"M 11.254 10.28 C 10.058 11.61 8.143 12.396 6.307 12.396 C 2.714 12.396 0 9.962 0 6.198 C 0 2.901 2.312 0 5.905 0 C 9.259 0 11.651 2.745 11.651 6.042 C 11.651 6.354 11.651 6.671 11.571 6.983 L 3.111 6.983 C 3.269 8.631 4.63 9.806 6.386 9.806 C 7.741 9.806 8.863 9.021 9.418 8.476 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ma4bya\",layoutDependency:layoutDependency,layoutId:\"wnpMrAjBX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.953 2.116\" overflow=\"visible\"><path d=\"M 4.953 2.116 C 4.874 1.097 3.916 0 2.556 0 C 1.202 0 0.079 1.019 0 2.116 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zffws0\",layoutDependency:layoutDependency,layoutId:\"nT1tWqsfN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.62 17.958\" overflow=\"visible\"><path d=\"M 6.624 0 C 5.27 0 4.069 0.474 3.111 1.175 L 3.111 0.234 L 0 0.234 L 0 17.958 L 3.276 17.958 L 3.276 11.215 C 4.233 11.922 5.27 12.312 6.551 12.312 C 8.308 12.312 10.065 11.526 11.102 10.274 C 12.059 9.177 12.62 7.762 12.62 6.114 C 12.529 2.667 9.894 0 6.624 0\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1krn29r\",layoutDependency:layoutDependency,layoutId:\"i1mLIzYo9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.466 6.593\" overflow=\"visible\"><path d=\"M 3.355 6.593 C 1.36 6.593 0 5.263 0 3.297 C 0 1.337 1.354 0 3.355 0 C 5.112 0 6.466 1.493 6.466 3.297 C 6.472 5.185 5.032 6.593 3.355 6.593\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-z5139d\",layoutDependency:layoutDependency,layoutId:\"w3t0xsXOE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.074 20.285\" overflow=\"visible\"><path d=\"M 12.608 0.575 C 11.254 1.361 10.455 2.769 10.455 4.262 C 10.455 5.047 10.772 5.832 11.175 6.533 C 11.492 7.163 11.657 8.26 10.534 8.805 C 9.735 9.279 8.698 8.961 8.222 8.176 C 7.741 7.546 7.186 6.923 6.466 6.45 C 5.112 5.664 3.513 5.664 2.153 6.45 C 0.799 7.235 0 8.643 0 10.136 C 0 11.628 0.799 13.037 2.153 13.822 C 3.507 14.607 5.105 14.607 6.466 13.822 C 7.186 13.433 7.741 12.803 8.143 12.096 C 8.46 11.544 9.339 10.843 10.455 11.467 C 11.254 11.94 11.492 12.959 11.095 13.738 C 10.699 14.446 10.455 15.231 10.455 16.01 C 10.455 17.502 11.254 18.911 12.608 19.696 C 13.962 20.482 15.56 20.482 16.921 19.696 C 18.275 18.911 19.074 17.502 19.074 16.01 C 19.074 14.517 18.275 13.109 16.921 12.324 C 16.201 11.934 15.402 11.772 14.524 11.772 C 13.804 11.772 12.846 11.299 12.846 10.124 C 12.846 9.183 13.566 8.476 14.524 8.476 C 15.323 8.476 16.201 8.32 16.921 7.924 C 18.275 7.139 19.074 5.73 19.074 4.238 C 19.074 2.745 18.275 1.337 16.921 0.551 C 16.28 0.162 15.481 0 14.767 0 C 14.042 0.024 13.243 0.18 12.608 0.575\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-156x5mr\",\"data-framer-name\":\"Metamask\",layoutDependency:layoutDependency,layoutId:\"LuipM6q1L\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tb4tyf\",layoutDependency:layoutDependency,layoutId:\"ZcuNZzKBd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 31\" overflow=\"visible\"><g><path d=\"M 35.728 23.93 L 35.728 30.753 L 32.176 30.753 L 32.176 26.006 L 28.122 26.451 C 27.222 26.55 26.871 26.847 26.871 27.391 C 26.871 28.182 27.622 28.478 29.173 28.478 C 30.724 28.478 31.225 28.33 32.176 28.083 L 30.324 30.654 C 29.573 30.802 28.873 30.901 28.122 30.901 C 24.92 30.901 23.068 29.616 23.068 27.391 C 23.068 25.166 24.519 24.375 27.772 23.979 L 32.075 23.485 C 31.825 22.249 30.875 21.705 29.023 21.705 C 27.172 21.705 25.32 22.15 23.569 22.99 L 24.119 19.925 C 25.72 19.233 27.622 18.887 29.473 18.887 C 33.577 18.887 35.728 20.568 35.728 23.88 Z M 3.853 15.376 L 0 30.753 L 3.853 30.753 L 5.755 23.04 L 9.057 26.995 L 13.11 26.995 L 16.463 23.04 L 18.365 30.753 L 22.218 30.753 L 18.365 15.376 L 11.109 23.979 Z M 18.415 0 L 11.159 8.603 L 3.853 0 L 0 15.376 L 3.853 15.376 L 5.755 7.663 L 9.057 11.619 L 13.11 11.619 L 16.463 7.663 L 18.365 15.376 L 22.218 15.376 Z M 44.986 23.782 L 41.883 23.337 C 41.083 23.238 40.782 22.99 40.782 22.545 C 40.782 21.853 41.533 21.557 43.084 21.557 C 44.635 21.557 46.537 21.903 48.238 22.743 L 47.788 19.727 C 46.387 19.233 44.836 18.986 43.184 18.986 C 39.331 18.986 37.23 20.321 37.23 22.694 C 37.23 25.067 38.38 25.611 40.832 25.957 L 43.985 26.451 C 44.786 26.55 45.136 26.896 45.136 27.391 C 45.136 28.083 44.385 28.429 42.884 28.429 C 41.383 28.429 38.781 27.935 37.029 27.094 L 37.38 30.11 C 38.881 30.654 40.832 31 42.684 31 C 46.637 31 48.689 29.616 48.689 27.193 C 48.689 24.77 47.538 24.177 44.986 23.831 Z M 50.09 16.761 L 50.09 30.753 L 53.643 30.753 L 53.643 16.761 Z M 57.746 24.474 L 62.65 19.183 L 58.246 19.183 L 53.593 24.671 L 58.546 30.802 L 63 30.802 L 57.696 24.523 Z M 49.589 12.064 C 49.589 14.338 51.441 15.574 54.643 15.574 C 57.846 15.574 56.145 15.475 56.845 15.327 L 58.697 12.756 C 57.746 13.003 56.695 13.152 55.694 13.152 C 54.093 13.152 53.392 12.805 53.392 12.064 C 53.392 11.322 53.793 11.223 54.643 11.124 L 58.697 10.679 L 58.697 15.426 L 62.249 15.426 L 62.249 8.603 C 62.249 5.34 60.148 3.609 55.994 3.609 C 51.841 3.609 52.292 3.955 50.64 4.648 L 50.09 7.713 C 51.841 6.872 53.793 6.427 55.544 6.427 C 57.295 6.427 58.396 6.971 58.597 8.207 L 54.293 8.702 C 51.041 9.048 49.589 10.136 49.589 12.113 Z M 39.681 11.322 C 39.681 14.14 41.333 15.574 44.585 15.574 C 47.838 15.574 46.937 15.376 47.988 14.882 L 48.438 11.767 C 47.438 12.36 46.437 12.657 45.436 12.657 C 43.935 12.657 43.234 12.064 43.234 10.679 L 43.234 6.576 L 48.589 6.576 L 48.589 3.708 L 43.234 3.708 L 43.234 1.335 L 36.529 4.895 L 36.529 6.625 L 39.732 6.625 L 39.732 11.322 Z M 36.229 10.037 L 36.229 10.729 L 26.671 10.729 C 27.122 12.163 28.373 12.805 30.674 12.805 C 32.976 12.805 34.177 12.459 35.678 11.718 L 35.228 14.734 C 33.827 15.327 32.075 15.624 30.324 15.624 C 25.57 15.624 22.968 13.547 22.968 9.641 C 22.968 5.735 25.62 3.609 29.674 3.609 C 33.727 3.609 36.229 5.982 36.229 10.086 Z M 26.621 8.356 L 32.676 8.356 C 32.376 6.971 31.325 6.279 29.624 6.279 C 27.922 6.279 26.971 6.971 26.621 8.356 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-afl4nk\",layoutDependency:layoutDependency,layoutId:\"nTxuRIzpe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 63 31\" overflow=\"visible\"><path d=\"M 35.728 23.93 L 35.728 30.753 L 32.176 30.753 L 32.176 26.006 L 28.122 26.451 C 27.222 26.55 26.871 26.847 26.871 27.391 C 26.871 28.182 27.622 28.478 29.173 28.478 C 30.724 28.478 31.225 28.33 32.176 28.083 L 30.324 30.654 C 29.573 30.802 28.873 30.901 28.122 30.901 C 24.92 30.901 23.068 29.616 23.068 27.391 C 23.068 25.166 24.519 24.375 27.772 23.979 L 32.075 23.485 C 31.825 22.249 30.875 21.705 29.023 21.705 C 27.172 21.705 25.32 22.15 23.569 22.99 L 24.119 19.925 C 25.72 19.233 27.622 18.887 29.473 18.887 C 33.577 18.887 35.728 20.568 35.728 23.88 Z M 3.853 15.376 L 0 30.753 L 3.853 30.753 L 5.755 23.04 L 9.057 26.995 L 13.11 26.995 L 16.463 23.04 L 18.365 30.753 L 22.218 30.753 L 18.365 15.376 L 11.109 23.979 Z M 18.415 0 L 11.159 8.603 L 3.853 0 L 0 15.376 L 3.853 15.376 L 5.755 7.663 L 9.057 11.619 L 13.11 11.619 L 16.463 7.663 L 18.365 15.376 L 22.218 15.376 Z M 44.986 23.782 L 41.883 23.337 C 41.083 23.238 40.782 22.99 40.782 22.545 C 40.782 21.853 41.533 21.557 43.084 21.557 C 44.635 21.557 46.537 21.903 48.238 22.743 L 47.788 19.727 C 46.387 19.233 44.836 18.986 43.184 18.986 C 39.331 18.986 37.23 20.321 37.23 22.694 C 37.23 25.067 38.38 25.611 40.832 25.957 L 43.985 26.451 C 44.786 26.55 45.136 26.896 45.136 27.391 C 45.136 28.083 44.385 28.429 42.884 28.429 C 41.383 28.429 38.781 27.935 37.029 27.094 L 37.38 30.11 C 38.881 30.654 40.832 31 42.684 31 C 46.637 31 48.689 29.616 48.689 27.193 C 48.689 24.77 47.538 24.177 44.986 23.831 Z M 50.09 16.761 L 50.09 30.753 L 53.643 30.753 L 53.643 16.761 Z M 57.746 24.474 L 62.65 19.183 L 58.246 19.183 L 53.593 24.671 L 58.546 30.802 L 63 30.802 L 57.696 24.523 Z M 49.589 12.064 C 49.589 14.338 51.441 15.574 54.643 15.574 C 57.846 15.574 56.145 15.475 56.845 15.327 L 58.697 12.756 C 57.746 13.003 56.695 13.152 55.694 13.152 C 54.093 13.152 53.392 12.805 53.392 12.064 C 53.392 11.322 53.793 11.223 54.643 11.124 L 58.697 10.679 L 58.697 15.426 L 62.249 15.426 L 62.249 8.603 C 62.249 5.34 60.148 3.609 55.994 3.609 C 51.841 3.609 52.292 3.955 50.64 4.648 L 50.09 7.713 C 51.841 6.872 53.793 6.427 55.544 6.427 C 57.295 6.427 58.396 6.971 58.597 8.207 L 54.293 8.702 C 51.041 9.048 49.589 10.136 49.589 12.113 Z M 39.681 11.322 C 39.681 14.14 41.333 15.574 44.585 15.574 C 47.838 15.574 46.937 15.376 47.988 14.882 L 48.438 11.767 C 47.438 12.36 46.437 12.657 45.436 12.657 C 43.935 12.657 43.234 12.064 43.234 10.679 L 43.234 6.576 L 48.589 6.576 L 48.589 3.708 L 43.234 3.708 L 43.234 1.335 L 36.529 4.895 L 36.529 6.625 L 39.732 6.625 L 39.732 11.322 Z M 36.229 10.037 L 36.229 10.729 L 26.671 10.729 C 27.122 12.163 28.373 12.805 30.674 12.805 C 32.976 12.805 34.177 12.459 35.678 11.718 L 35.228 14.734 C 33.827 15.327 32.075 15.624 30.324 15.624 C 25.57 15.624 22.968 13.547 22.968 9.641 C 22.968 5.735 25.62 3.609 29.674 3.609 C 33.727 3.609 36.229 5.982 36.229 10.086 Z M 26.621 8.356 L 32.676 8.356 C 32.376 6.971 31.325 6.279 29.624 6.279 C 27.922 6.279 26.971 6.971 26.621 8.356 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ec68vq\",layoutDependency:layoutDependency,layoutId:\"OJNgO67N1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.66 12.014\" overflow=\"visible\"><path d=\"M 12.66 5.043 L 12.66 11.866 L 9.107 11.866 L 9.107 7.12 L 5.054 7.565 C 4.153 7.663 3.803 7.96 3.803 8.504 C 3.803 9.295 4.554 9.592 6.105 9.592 C 7.656 9.592 8.156 9.443 9.107 9.196 L 7.256 11.767 C 6.505 11.915 5.805 12.014 5.054 12.014 C 1.851 12.014 0 10.729 0 8.504 C 0 6.279 1.451 5.488 4.704 5.093 L 9.007 4.598 C 8.757 3.362 7.806 2.818 5.955 2.818 C 4.103 2.818 2.252 3.263 0.5 4.104 L 1.051 1.038 C 2.652 0.346 4.554 0 6.405 0 C 10.508 0 12.66 1.681 12.66 4.994 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16cz5wg\",layoutDependency:layoutDependency,layoutId:\"WkjfXBTi1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.218 15.376\" overflow=\"visible\"><path d=\"M 3.853 0 L 0 15.376 L 3.853 15.376 L 5.755 7.663 L 9.057 11.619 L 13.11 11.619 L 16.463 7.663 L 18.365 15.376 L 22.218 15.376 L 18.365 0 L 11.109 8.603 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jzyvc5\",layoutDependency:layoutDependency,layoutId:\"UoyRvBL6_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22.218 15.376\" overflow=\"visible\"><path d=\"M 18.415 0 L 11.159 8.603 L 3.853 0 L 0 15.376 L 3.853 15.376 L 5.755 7.663 L 9.057 11.619 L 13.11 11.619 L 16.463 7.663 L 18.365 15.376 L 22.218 15.376 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tkdk7j\",layoutDependency:layoutDependency,layoutId:\"UGfHqMNlO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.659 12.014\" overflow=\"visible\"><path d=\"M 7.956 4.796 L 4.854 4.351 C 4.053 4.252 3.753 4.005 3.753 3.56 C 3.753 2.868 4.504 2.571 6.055 2.571 C 7.606 2.571 9.508 2.917 11.209 3.758 L 10.759 0.742 C 9.357 0.247 7.806 0 6.155 0 C 2.302 0 0.2 1.335 0.2 3.708 C 0.2 6.081 1.351 6.625 3.803 6.971 L 6.956 7.466 C 7.756 7.565 8.106 7.911 8.106 8.405 C 8.106 9.097 7.356 9.443 5.855 9.443 C 4.353 9.443 1.751 8.949 0 8.108 L 0.35 11.124 C 1.851 11.668 3.803 12.014 5.654 12.014 C 9.608 12.014 11.659 10.63 11.659 8.207 C 11.659 5.785 10.508 5.191 7.956 4.845 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1n9sy29\",layoutDependency:layoutDependency,layoutId:\"hZ2IqxatE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.553 13.992\" overflow=\"visible\"><path d=\"M 0 0 L 0 13.992 L 3.553 13.992 L 3.553 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qo2f6l\",layoutDependency:layoutDependency,layoutId:\"U2aJ_HHpx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.407 11.619\" overflow=\"visible\"><path d=\"M 4.153 5.29 L 9.057 0 L 4.654 0 L 0 5.488 L 4.954 11.619 L 9.407 11.619 L 4.103 5.34 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18cbw9a\",layoutDependency:layoutDependency,layoutId:\"cpUxGiN7R\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.66 11.965\" overflow=\"visible\"><path d=\"M 0 8.455 C 0 10.729 1.851 11.965 5.054 11.965 C 8.257 11.965 6.555 11.866 7.256 11.718 L 9.107 9.147 C 8.156 9.394 7.106 9.542 6.105 9.542 C 4.504 9.542 3.803 9.196 3.803 8.455 C 3.803 7.713 4.203 7.614 5.054 7.515 L 9.107 7.07 L 9.107 11.817 L 12.66 11.817 L 12.66 4.994 C 12.66 1.73 10.558 0 6.405 0 C 2.252 0 2.702 0.346 1.051 1.038 L 0.5 4.104 C 2.252 3.263 4.203 2.818 5.955 2.818 C 7.706 2.818 8.807 3.362 9.007 4.598 L 4.704 5.093 C 1.451 5.439 0 6.526 0 8.504 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vxjffr\",layoutDependency:layoutDependency,layoutId:\"Hlw0VhWll\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.06 14.239\" overflow=\"visible\"><path d=\"M 3.153 9.987 C 3.153 12.805 4.804 14.239 8.056 14.239 C 11.309 14.239 10.408 14.041 11.459 13.547 L 11.909 10.432 C 10.909 11.026 9.908 11.322 8.907 11.322 C 7.406 11.322 6.705 10.729 6.705 9.344 L 6.705 5.241 L 12.06 5.241 L 12.06 2.373 L 6.705 2.373 L 6.705 0 L 0 3.56 L 0 5.29 L 3.203 5.29 L 3.203 9.987 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rd0ewu\",layoutDependency:layoutDependency,layoutId:\"mtQJEKf9L\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.261 12.014\" overflow=\"visible\"><path d=\"M 13.261 6.427 L 13.261 7.12 L 3.703 7.12 C 4.153 8.553 5.404 9.196 7.706 9.196 C 10.008 9.196 11.209 8.85 12.71 8.108 L 12.26 11.124 C 10.859 11.718 9.107 12.014 7.356 12.014 C 2.602 12.014 0 9.938 0 6.032 C 0 2.126 2.652 0 6.705 0 C 10.759 0 13.261 2.373 13.261 6.477 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-e2uwl1\",layoutDependency:layoutDependency,layoutId:\"ng9ow_7Rr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.055 2.077\" overflow=\"visible\"><path d=\"M 0 2.077 L 6.055 2.077 C 5.755 0.692 4.704 0 3.002 0 C 1.301 0 0.35 0.692 0 2.077 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g7ehj8\",\"data-framer-name\":\"Chainlink\",layoutDependency:layoutDependency,layoutId:\"IlNweSU65\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1nzov4u\",layoutDependency:layoutDependency,layoutId:\"p7C7dw3d_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 113 29\" overflow=\"visible\"><g><path d=\"M 0 0 L 113 0 L 113 29 L 0 29 Z\" fill=\"transparent\"></path><path d=\"M 12.396 0 L 0 7.25 L 0 21.75 L 12.396 29 L 24.793 21.75 L 24.793 7.25 Z M 19.541 18.677 L 12.399 22.854 L 5.256 18.677 L 5.256 10.323 L 12.399 6.146 L 19.541 10.323 Z M 38.394 21.765 C 37.163 21.765 36.06 21.48 35.089 20.906 C 34.117 20.332 33.349 19.505 32.787 18.422 C 32.225 17.338 31.944 16.035 31.944 14.509 C 31.944 12.984 32.228 11.659 32.793 10.572 C 33.358 9.486 34.128 8.658 35.104 8.089 C 36.078 7.519 37.175 7.235 38.395 7.235 C 39.187 7.235 39.927 7.35 40.607 7.577 C 41.289 7.804 41.895 8.135 42.426 8.569 C 42.957 9.003 43.389 9.533 43.724 10.159 C 44.059 10.786 44.275 11.498 44.376 12.297 L 41.61 12.297 C 41.547 11.892 41.426 11.53 41.245 11.209 C 41.063 10.89 40.834 10.618 40.557 10.392 C 40.279 10.167 39.963 9.997 39.611 9.88 C 39.257 9.763 38.872 9.705 38.453 9.705 C 37.716 9.705 37.067 9.891 36.503 10.265 C 35.941 10.638 35.501 11.182 35.186 11.898 C 34.87 12.613 34.712 13.485 34.712 14.509 C 34.712 15.534 34.871 16.423 35.19 17.136 C 35.509 17.848 35.947 18.385 36.507 18.749 C 37.067 19.113 37.712 19.295 38.442 19.295 C 38.848 19.295 39.226 19.24 39.576 19.128 C 39.925 19.018 40.24 18.856 40.518 18.643 C 40.797 18.431 41.034 18.167 41.217 17.865 C 41.404 17.558 41.536 17.205 41.61 16.807 L 44.376 16.807 C 44.296 17.468 44.098 18.108 43.791 18.697 C 43.482 19.291 43.069 19.819 42.553 20.277 C 42.038 20.736 41.431 21.097 40.734 21.365 C 40.037 21.63 39.257 21.764 38.396 21.764 L 38.396 21.767 Z M 48.538 15.397 L 48.538 21.569 L 45.857 21.569 L 45.857 7.419 L 48.463 7.419 L 48.463 12.803 L 48.595 12.803 C 48.838 12.189 49.22 11.704 49.739 11.349 C 50.256 10.996 50.917 10.817 51.717 10.817 C 52.441 10.817 53.077 10.975 53.619 11.291 C 54.163 11.608 54.585 12.064 54.884 12.659 C 55.184 13.253 55.333 13.973 55.333 14.816 L 55.333 21.567 L 52.642 21.567 L 52.642 15.271 C 52.642 14.587 52.47 14.055 52.126 13.671 C 51.783 13.288 51.297 13.096 50.673 13.096 C 50.254 13.096 49.885 13.188 49.567 13.372 C 49.248 13.557 48.997 13.818 48.812 14.155 C 48.628 14.495 48.536 14.906 48.536 15.396 L 48.536 15.398 Z M 60.099 21.779 C 59.43 21.779 58.832 21.658 58.304 21.418 C 57.776 21.177 57.361 20.821 57.057 20.35 C 56.754 19.879 56.603 19.294 56.603 18.598 C 56.603 18.004 56.71 17.509 56.927 17.116 C 57.138 16.729 57.441 16.401 57.809 16.162 C 58.181 15.919 58.601 15.734 59.074 15.611 C 59.546 15.488 60.042 15.401 60.559 15.35 C 61.172 15.287 61.665 15.228 62.041 15.175 C 62.417 15.122 62.689 15.036 62.861 14.919 C 63.033 14.802 63.119 14.629 63.119 14.401 L 63.119 14.354 C 63.119 13.878 62.974 13.509 62.688 13.247 C 62.401 12.985 61.991 12.853 61.459 12.853 C 60.897 12.853 60.45 12.977 60.118 13.229 C 59.787 13.478 59.566 13.781 59.453 14.135 L 56.959 13.859 C 57.115 13.214 57.399 12.664 57.807 12.211 C 58.216 11.759 58.73 11.413 59.349 11.175 C 59.967 10.938 60.67 10.818 61.458 10.818 C 62.002 10.818 62.532 10.883 63.048 11.013 C 63.563 11.142 64.028 11.348 64.445 11.631 C 64.859 11.913 65.193 12.286 65.438 12.747 C 65.684 13.21 65.809 13.773 65.809 14.439 L 65.809 21.569 L 63.241 21.569 L 63.241 20.097 L 63.167 20.097 C 62.999 20.419 62.777 20.709 62.511 20.953 C 62.236 21.207 61.898 21.407 61.498 21.556 C 61.099 21.706 60.632 21.78 60.101 21.78 L 60.098 21.78 Z M 60.828 19.842 C 61.291 19.842 61.694 19.749 62.038 19.562 C 62.381 19.376 62.65 19.126 62.844 18.813 C 63.037 18.5 63.135 18.153 63.135 17.774 L 63.135 16.586 C 63.048 16.649 62.918 16.706 62.751 16.757 C 62.563 16.813 62.372 16.859 62.178 16.895 C 61.967 16.936 61.756 16.972 61.55 17.004 C 61.366 17.033 61.181 17.058 60.997 17.08 C 60.641 17.131 60.327 17.213 60.054 17.326 C 59.782 17.441 59.567 17.595 59.412 17.791 C 59.256 17.987 59.177 18.234 59.177 18.532 C 59.177 18.962 59.332 19.288 59.641 19.511 C 59.95 19.733 60.345 19.843 60.826 19.843 L 60.827 19.843 Z M 67.57 21.57 L 67.57 10.954 L 70.251 10.954 L 70.251 21.57 Z M 74.695 15.397 L 74.695 21.569 L 72.014 21.569 L 72.014 10.952 L 74.648 10.952 L 74.648 12.803 L 74.761 12.803 C 74.998 12.195 75.375 11.713 75.89 11.354 C 76.406 10.996 77.054 10.818 77.836 10.818 C 78.561 10.818 79.194 10.976 79.734 11.293 C 80.274 11.608 80.693 12.066 80.991 12.664 C 81.288 13.262 81.436 13.979 81.436 14.814 L 81.436 21.566 L 78.756 21.566 L 78.756 15.27 C 78.756 14.593 78.583 14.06 78.236 13.675 C 77.89 13.29 77.412 13.095 76.805 13.095 C 76.393 13.095 76.028 13.187 75.713 13.371 C 75.397 13.556 75.15 13.817 74.968 14.154 C 74.785 14.494 74.696 14.905 74.696 15.394 L 74.696 15.397 Z M 85.878 6.723 L 85.878 21.57 L 83.197 21.57 L 83.197 6.723 L 85.878 6.723 Z M 87.639 21.57 L 87.639 10.954 L 90.32 10.954 L 90.32 21.57 Z M 94.763 15.397 L 94.763 21.569 L 92.082 21.569 L 92.082 10.952 L 94.716 10.952 L 94.716 12.803 L 94.83 12.803 C 95.067 12.195 95.443 11.713 95.959 11.354 C 96.474 10.996 97.122 10.818 97.904 10.818 C 98.629 10.818 99.263 10.976 99.803 11.293 C 100.344 11.608 100.763 12.066 101.059 12.664 C 101.356 13.262 101.505 13.979 101.505 14.814 L 101.505 21.566 L 98.824 21.566 L 98.824 15.27 C 98.824 14.593 98.651 14.06 98.304 13.675 C 97.958 13.29 97.481 13.095 96.874 13.095 C 96.462 13.095 96.096 13.187 95.781 13.371 C 95.465 13.556 95.218 13.817 95.036 14.154 C 94.854 14.494 94.763 14.905 94.763 15.394 Z M 109.821 21.57 L 113 21.57 L 108.814 15.551 L 112.783 10.953 L 109.672 10.953 L 106.117 15.103 L 105.95 15.103 L 105.95 7.419 L 103.268 7.419 L 103.268 21.57 L 105.95 21.57 L 105.95 18.104 L 106.791 17.16 L 109.821 21.569 Z M 70.272 6.723 L 67.591 6.723 L 67.591 9.439 L 70.272 9.439 Z M 90.343 6.723 L 87.663 6.723 L 87.663 9.439 L 90.343 9.439 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-2o95ji\",layoutDependency:layoutDependency,layoutId:\"CKA30AaGJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 113 29\" overflow=\"visible\"><path d=\"M 0 0 L 113 0 L 113 29 L 0 29 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1srybpy\",layoutDependency:layoutDependency,layoutId:\"kjjZWJ3Mz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 113 29\" overflow=\"visible\"><path d=\"M 12.396 0 L 0 7.25 L 0 21.75 L 12.396 29 L 24.793 21.75 L 24.793 7.25 Z M 19.541 18.677 L 12.399 22.854 L 5.256 18.677 L 5.256 10.323 L 12.399 6.146 L 19.541 10.323 Z M 38.394 21.765 C 37.163 21.765 36.06 21.48 35.089 20.906 C 34.117 20.332 33.349 19.505 32.787 18.422 C 32.225 17.338 31.944 16.035 31.944 14.509 C 31.944 12.984 32.228 11.659 32.793 10.572 C 33.358 9.486 34.128 8.658 35.104 8.089 C 36.078 7.519 37.175 7.235 38.395 7.235 C 39.187 7.235 39.927 7.35 40.607 7.577 C 41.289 7.804 41.895 8.135 42.426 8.569 C 42.957 9.003 43.389 9.533 43.724 10.159 C 44.059 10.786 44.275 11.498 44.376 12.297 L 41.61 12.297 C 41.547 11.892 41.426 11.53 41.245 11.209 C 41.063 10.89 40.834 10.618 40.557 10.392 C 40.279 10.167 39.963 9.997 39.611 9.88 C 39.257 9.763 38.872 9.705 38.453 9.705 C 37.716 9.705 37.067 9.891 36.503 10.265 C 35.941 10.638 35.501 11.182 35.186 11.898 C 34.87 12.613 34.712 13.485 34.712 14.509 C 34.712 15.534 34.871 16.423 35.19 17.136 C 35.509 17.848 35.947 18.385 36.507 18.749 C 37.067 19.113 37.712 19.295 38.442 19.295 C 38.848 19.295 39.226 19.24 39.576 19.128 C 39.925 19.018 40.24 18.856 40.518 18.643 C 40.797 18.431 41.034 18.167 41.217 17.865 C 41.404 17.558 41.536 17.205 41.61 16.807 L 44.376 16.807 C 44.296 17.468 44.098 18.108 43.791 18.697 C 43.482 19.291 43.069 19.819 42.553 20.277 C 42.038 20.736 41.431 21.097 40.734 21.365 C 40.037 21.63 39.257 21.764 38.396 21.764 L 38.396 21.767 Z M 48.538 15.397 L 48.538 21.569 L 45.857 21.569 L 45.857 7.419 L 48.463 7.419 L 48.463 12.803 L 48.595 12.803 C 48.838 12.189 49.22 11.704 49.739 11.349 C 50.256 10.996 50.917 10.817 51.717 10.817 C 52.441 10.817 53.077 10.975 53.619 11.291 C 54.163 11.608 54.585 12.064 54.884 12.659 C 55.184 13.253 55.333 13.973 55.333 14.816 L 55.333 21.567 L 52.642 21.567 L 52.642 15.271 C 52.642 14.587 52.47 14.055 52.126 13.671 C 51.783 13.288 51.297 13.096 50.673 13.096 C 50.254 13.096 49.885 13.188 49.567 13.372 C 49.248 13.557 48.997 13.818 48.812 14.155 C 48.628 14.495 48.536 14.906 48.536 15.396 L 48.536 15.398 Z M 60.099 21.779 C 59.43 21.779 58.832 21.658 58.304 21.418 C 57.776 21.177 57.361 20.821 57.057 20.35 C 56.754 19.879 56.603 19.294 56.603 18.598 C 56.603 18.004 56.71 17.509 56.927 17.116 C 57.138 16.729 57.441 16.401 57.809 16.162 C 58.181 15.919 58.601 15.734 59.074 15.611 C 59.546 15.488 60.042 15.401 60.559 15.35 C 61.172 15.287 61.665 15.228 62.041 15.175 C 62.417 15.122 62.689 15.036 62.861 14.919 C 63.033 14.802 63.119 14.629 63.119 14.401 L 63.119 14.354 C 63.119 13.878 62.974 13.509 62.688 13.247 C 62.401 12.985 61.991 12.853 61.459 12.853 C 60.897 12.853 60.45 12.977 60.118 13.229 C 59.787 13.478 59.566 13.781 59.453 14.135 L 56.959 13.859 C 57.115 13.214 57.399 12.664 57.807 12.211 C 58.216 11.759 58.73 11.413 59.349 11.175 C 59.967 10.938 60.67 10.818 61.458 10.818 C 62.002 10.818 62.532 10.883 63.048 11.013 C 63.563 11.142 64.028 11.348 64.445 11.631 C 64.859 11.913 65.193 12.286 65.438 12.747 C 65.684 13.21 65.809 13.773 65.809 14.439 L 65.809 21.569 L 63.241 21.569 L 63.241 20.097 L 63.167 20.097 C 62.999 20.419 62.777 20.709 62.511 20.953 C 62.236 21.207 61.898 21.407 61.498 21.556 C 61.099 21.706 60.632 21.78 60.101 21.78 L 60.098 21.78 Z M 60.828 19.842 C 61.291 19.842 61.694 19.749 62.038 19.562 C 62.381 19.376 62.65 19.126 62.844 18.813 C 63.037 18.5 63.135 18.153 63.135 17.774 L 63.135 16.586 C 63.048 16.649 62.918 16.706 62.751 16.757 C 62.563 16.813 62.372 16.859 62.178 16.895 C 61.967 16.936 61.756 16.972 61.55 17.004 C 61.366 17.033 61.181 17.058 60.997 17.08 C 60.641 17.131 60.327 17.213 60.054 17.326 C 59.782 17.441 59.567 17.595 59.412 17.791 C 59.256 17.987 59.177 18.234 59.177 18.532 C 59.177 18.962 59.332 19.288 59.641 19.511 C 59.95 19.733 60.345 19.843 60.826 19.843 L 60.827 19.843 Z M 67.57 21.57 L 67.57 10.954 L 70.251 10.954 L 70.251 21.57 Z M 74.695 15.397 L 74.695 21.569 L 72.014 21.569 L 72.014 10.952 L 74.648 10.952 L 74.648 12.803 L 74.761 12.803 C 74.998 12.195 75.375 11.713 75.89 11.354 C 76.406 10.996 77.054 10.818 77.836 10.818 C 78.561 10.818 79.194 10.976 79.734 11.293 C 80.274 11.608 80.693 12.066 80.991 12.664 C 81.288 13.262 81.436 13.979 81.436 14.814 L 81.436 21.566 L 78.756 21.566 L 78.756 15.27 C 78.756 14.593 78.583 14.06 78.236 13.675 C 77.89 13.29 77.412 13.095 76.805 13.095 C 76.393 13.095 76.028 13.187 75.713 13.371 C 75.397 13.556 75.15 13.817 74.968 14.154 C 74.785 14.494 74.696 14.905 74.696 15.394 L 74.696 15.397 Z M 85.878 6.723 L 85.878 21.57 L 83.197 21.57 L 83.197 6.723 L 85.878 6.723 Z M 87.639 21.57 L 87.639 10.954 L 90.32 10.954 L 90.32 21.57 Z M 94.763 15.397 L 94.763 21.569 L 92.082 21.569 L 92.082 10.952 L 94.716 10.952 L 94.716 12.803 L 94.83 12.803 C 95.067 12.195 95.443 11.713 95.959 11.354 C 96.474 10.996 97.122 10.818 97.904 10.818 C 98.629 10.818 99.263 10.976 99.803 11.293 C 100.344 11.608 100.763 12.066 101.059 12.664 C 101.356 13.262 101.505 13.979 101.505 14.814 L 101.505 21.566 L 98.824 21.566 L 98.824 15.27 C 98.824 14.593 98.651 14.06 98.304 13.675 C 97.958 13.29 97.481 13.095 96.874 13.095 C 96.462 13.095 96.096 13.187 95.781 13.371 C 95.465 13.556 95.218 13.817 95.036 14.154 C 94.854 14.494 94.763 14.905 94.763 15.394 Z M 109.821 21.57 L 113 21.57 L 108.814 15.551 L 112.783 10.953 L 109.672 10.953 L 106.117 15.103 L 105.95 15.103 L 105.95 7.419 L 103.268 7.419 L 103.268 21.57 L 105.95 21.57 L 105.95 18.104 L 106.791 17.16 L 109.821 21.569 Z M 70.272 6.723 L 67.591 6.723 L 67.591 9.439 L 70.272 9.439 Z M 90.343 6.723 L 87.663 6.723 L 87.663 9.439 L 90.343 9.439 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15conro\",layoutDependency:layoutDependency,layoutId:\"o9CvK51kz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24.793 29\" overflow=\"visible\"><path d=\"M 12.396 0 L 0 7.25 L 0 21.75 L 12.396 29 L 24.793 21.75 L 24.793 7.25 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xy0923\",layoutDependency:layoutDependency,layoutId:\"q8BD8n1_A\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14.285 16.709\" overflow=\"visible\"><path d=\"M 14.285 12.531 L 7.142 16.709 L 0 12.531 L 0 4.177 L 7.142 0 L 14.285 4.177 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r4ub74\",layoutDependency:layoutDependency,layoutId:\"o29DXP0NH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.432 14.533\" overflow=\"visible\"><path d=\"M 6.45 14.53 C 5.218 14.53 4.116 14.245 3.145 13.671 C 2.172 13.098 1.405 12.27 0.843 11.187 C 0.281 10.104 0 8.8 0 7.274 C 0 5.749 0.284 4.424 0.849 3.337 C 1.414 2.252 2.184 1.423 3.159 0.854 C 4.134 0.284 5.231 0 6.451 0 C 7.243 0 7.983 0.115 8.663 0.342 C 9.344 0.57 9.95 0.9 10.482 1.334 C 11.013 1.768 11.445 2.298 11.78 2.924 C 12.115 3.551 12.331 4.263 12.432 5.062 L 9.666 5.062 C 9.603 4.657 9.482 4.296 9.301 3.974 C 9.119 3.655 8.89 3.383 8.613 3.158 C 8.334 2.932 8.018 2.762 7.667 2.645 C 7.313 2.528 6.928 2.47 6.509 2.47 C 5.772 2.47 5.122 2.657 4.559 3.03 C 3.997 3.403 3.557 3.948 3.242 4.663 C 2.926 5.378 2.768 6.25 2.768 7.274 C 2.768 8.299 2.927 9.188 3.245 9.901 C 3.565 10.613 4.002 11.15 4.562 11.514 C 5.122 11.878 5.768 12.061 6.498 12.061 C 6.904 12.061 7.282 12.005 7.631 11.893 C 7.981 11.783 8.295 11.621 8.574 11.409 C 8.853 11.196 9.09 10.932 9.272 10.63 C 9.46 10.323 9.592 9.97 9.666 9.572 L 12.432 9.572 C 12.352 10.233 12.153 10.873 11.847 11.462 C 11.537 12.056 11.125 12.584 10.609 13.042 C 10.093 13.501 9.486 13.862 8.79 14.13 C 8.093 14.396 7.313 14.529 6.452 14.529 L 6.452 14.533 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2qijfi\",layoutDependency:layoutDependency,layoutId:\"IxeE99qRB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.476 14.15\" overflow=\"visible\"><path d=\"M 2.681 7.977 L 2.681 14.15 L 0 14.15 L 0 0 L 2.606 0 L 2.606 5.384 L 2.738 5.384 C 2.981 4.77 3.363 4.285 3.882 3.93 C 4.4 3.576 5.06 3.398 5.86 3.398 C 6.585 3.398 7.22 3.555 7.762 3.872 C 8.306 4.189 8.728 4.645 9.027 5.24 C 9.327 5.834 9.476 6.554 9.476 7.396 L 9.476 14.147 L 6.785 14.147 L 6.785 7.852 C 6.785 7.168 6.613 6.635 6.27 6.251 C 5.926 5.868 5.441 5.677 4.816 5.677 C 4.397 5.677 4.029 5.769 3.71 5.953 C 3.391 6.138 3.14 6.399 2.956 6.736 C 2.771 7.076 2.68 7.487 2.68 7.976 L 2.68 7.979 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r2wfdw\",layoutDependency:layoutDependency,layoutId:\"KHPkUNtQv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.206 10.962\" overflow=\"visible\"><path d=\"M 3.496 10.961 C 2.827 10.961 2.23 10.84 1.702 10.6 C 1.174 10.359 0.758 10.003 0.455 9.532 C 0.151 9.061 0 8.476 0 7.78 C 0 7.186 0.108 6.691 0.324 6.298 C 0.535 5.91 0.838 5.583 1.206 5.344 C 1.578 5.1 1.998 4.916 2.471 4.793 C 2.943 4.67 3.439 4.583 3.956 4.532 C 4.569 4.468 5.063 4.41 5.438 4.357 C 5.814 4.304 6.086 4.218 6.258 4.101 C 6.43 3.983 6.516 3.811 6.516 3.583 L 6.516 3.536 C 6.516 3.06 6.372 2.691 6.085 2.429 C 5.798 2.167 5.388 2.035 4.857 2.035 C 4.294 2.035 3.848 2.159 3.516 2.41 C 3.185 2.66 2.964 2.963 2.85 3.316 L 0.356 3.04 C 0.512 2.395 0.796 1.846 1.205 1.393 C 1.614 0.941 2.128 0.595 2.746 0.357 C 3.364 0.119 4.068 0 4.855 0 C 5.399 0 5.93 0.065 6.445 0.195 C 6.96 0.324 7.425 0.53 7.842 0.813 C 8.257 1.095 8.59 1.467 8.835 1.929 C 9.081 2.392 9.206 2.955 9.206 3.62 L 9.206 10.751 L 6.638 10.751 L 6.638 9.279 L 6.564 9.279 C 6.397 9.601 6.175 9.891 5.908 10.135 C 5.633 10.389 5.295 10.588 4.895 10.738 C 4.496 10.888 4.03 10.962 3.498 10.962 L 3.495 10.962 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2zf72m\",layoutDependency:layoutDependency,layoutId:\"RW86TnG8u\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.958 3.257\" overflow=\"visible\"><path d=\"M 1.651 3.256 C 2.114 3.256 2.517 3.163 2.861 2.977 C 3.204 2.79 3.473 2.54 3.667 2.227 C 3.86 1.914 3.958 1.567 3.958 1.188 L 3.958 0 C 3.871 0.064 3.741 0.121 3.574 0.172 C 3.386 0.228 3.194 0.274 3.001 0.31 C 2.79 0.35 2.579 0.386 2.373 0.419 C 2.189 0.447 2.004 0.472 1.82 0.494 C 1.463 0.545 1.15 0.628 0.877 0.74 C 0.605 0.855 0.39 1.009 0.235 1.205 C 0.079 1.401 0 1.648 0 1.946 C 0 2.377 0.155 2.703 0.464 2.925 C 0.773 3.147 1.168 3.257 1.649 3.257 L 1.65 3.257 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iojj51\",layoutDependency:layoutDependency,layoutId:\"fihgtAcQI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.681 10.616\" overflow=\"visible\"><path d=\"M 0 10.616 L 0 0 L 2.681 0 L 2.681 10.616 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1847kjp\",layoutDependency:layoutDependency,layoutId:\"binMQ9OC9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.422 10.751\" overflow=\"visible\"><path d=\"M 2.681 4.578 L 2.681 10.751 L 0 10.751 L 0 0.133 L 2.634 0.133 L 2.634 1.985 L 2.747 1.985 C 2.984 1.377 3.361 0.894 3.876 0.536 C 4.392 0.177 5.04 0 5.822 0 C 6.547 0 7.18 0.158 7.719 0.474 C 8.26 0.79 8.679 1.248 8.977 1.846 C 9.274 2.444 9.422 3.161 9.422 3.996 L 9.422 10.747 L 6.741 10.747 L 6.741 4.452 C 6.741 3.775 6.569 3.242 6.222 2.857 C 5.876 2.472 5.398 2.277 4.791 2.277 C 4.379 2.277 4.014 2.369 3.699 2.553 C 3.383 2.738 3.135 2.999 2.953 3.336 C 2.771 3.676 2.682 4.087 2.682 4.576 L 2.682 4.578 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q91w85\",layoutDependency:layoutDependency,layoutId:\"XJ7RWshvx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.681 14.847\" overflow=\"visible\"><path d=\"M 2.681 0 L 2.681 14.847 L 0 14.847 L 0 0 L 2.681 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-laxy8g\",layoutDependency:layoutDependency,layoutId:\"gT0znn4Pb\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.681 10.616\" overflow=\"visible\"><path d=\"M 0 10.616 L 0 0 L 2.681 0 L 2.681 10.616 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n7r5q2\",layoutDependency:layoutDependency,layoutId:\"D9rO0L2Z6\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.422 10.751\" overflow=\"visible\"><path d=\"M 2.681 4.578 L 2.681 10.751 L 0 10.751 L 0 0.133 L 2.634 0.133 L 2.634 1.985 L 2.747 1.985 C 2.984 1.377 3.361 0.894 3.876 0.536 C 4.392 0.177 5.04 0 5.822 0 C 6.547 0 7.18 0.158 7.721 0.474 C 8.261 0.79 8.68 1.248 8.977 1.846 C 9.274 2.444 9.422 3.161 9.422 3.996 L 9.422 10.747 L 6.742 10.747 L 6.742 4.452 C 6.742 3.775 6.569 3.242 6.222 2.857 C 5.876 2.472 5.398 2.277 4.791 2.277 C 4.379 2.277 4.014 2.369 3.699 2.553 C 3.383 2.738 3.136 2.999 2.953 3.336 C 2.771 3.676 2.681 4.087 2.681 4.576 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j3mhh9\",layoutDependency:layoutDependency,layoutId:\"APHXs97Hj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.731 14.151\" overflow=\"visible\"><path d=\"M 6.552 14.151 L 9.731 14.151 L 5.546 8.132 L 9.515 3.533 L 6.404 3.533 L 2.849 7.684 L 2.682 7.684 L 2.682 0 L 0 0 L 0 14.151 L 2.682 14.151 L 2.682 10.685 L 3.522 9.741 L 6.552 14.15 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p8kzj4\",layoutDependency:layoutDependency,layoutId:\"NMIPu4sS1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.681 2.716\" overflow=\"visible\"><path d=\"M 2.681 0 L 0 0 L 0 2.716 L 2.681 2.716 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19v4oks\",layoutDependency:layoutDependency,layoutId:\"s_FyGtBq9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.681 2.716\" overflow=\"visible\"><path d=\"M 2.681 0 L 0 0 L 0 2.716 L 2.681 2.716 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p0hfie\",\"data-framer-name\":\"Mantle\",layoutDependency:layoutDependency,layoutId:\"UH4mZTTy7\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1eh8mg4\",layoutDependency:layoutDependency,layoutId:\"i9KsKE1Y4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 30\" overflow=\"visible\"><g><path d=\"M 0 0 L 112 0 L 112 30 L 0 30 Z\" fill=\"transparent\"></path><path d=\"M 16.351 5.141 L 17.112 0.178 C 16.359 0.06 15.589 0 14.821 0 L 14.809 0 L 14.809 10.126 L 14.821 10.126 C 15.242 10.126 15.659 10.181 16.062 10.29 L 17.355 5.355 C 17.025 5.267 16.689 5.196 16.349 5.143 Z M 12.409 10.78 L 12.408 10.779 C 12.408 10.779 12.407 10.78 12.407 10.78 Z M 12.408 10.779 C 12.771 10.565 13.161 10.402 13.564 10.292 L 12.277 5.443 C 12.605 5.355 12.937 5.282 13.273 5.228 L 12.481 0.186 C 11.717 0.31 10.954 0.496 10.219 0.738 L 11.761 5.513 C 11.271 5.675 10.793 5.876 10.334 6.114 L 8.071 1.643 C 7.382 2 6.716 2.415 6.091 2.877 L 9.065 7 C 9.34 6.799 9.626 6.611 9.919 6.439 Z M 6.1 10.519 L 1.605 8.204 C 1.252 8.902 0.954 9.636 0.716 10.382 L 5.516 11.952 C 5.674 11.46 5.87 10.981 6.1 10.519 Z M 23.279 10.034 L 18.991 12.556 C 19.203 12.924 19.364 13.319 19.474 13.728 L 24.262 12.421 C 24.351 12.753 24.424 13.089 24.476 13.429 L 29.457 12.626 C 29.335 11.85 29.151 11.08 28.912 10.335 L 24.194 11.895 C 24.034 11.399 23.836 10.917 23.6 10.453 L 28.016 8.16 C 27.663 7.466 27.253 6.792 26.797 6.159 L 22.724 9.171 C 22.925 9.449 23.108 9.738 23.281 10.034 Z M 21.529 1.62 L 21.529 1.622 C 21.529 1.622 21.529 1.622 21.529 1.622 Z M 19.377 0.723 L 17.828 5.581 C 18.315 5.739 18.788 5.937 19.244 6.172 L 21.529 1.622 C 20.835 1.267 20.116 0.966 19.377 0.723 Z M 19.739 6.349 L 17.221 10.772 C 17.587 10.985 17.923 11.246 18.221 11.548 L 25.285 4.375 C 24.735 3.821 24.144 3.312 23.517 2.85 L 20.604 6.916 C 20.325 6.713 20.038 6.523 19.741 6.349 Z M 10.648 12.567 C 10.858 12.199 11.115 11.858 11.414 11.555 L 4.33 4.405 C 3.783 4.959 3.277 5.562 2.822 6.195 L 6.837 9.144 C 6.637 9.426 6.447 9.717 6.277 10.018 L 10.646 12.569 Z M 5.291 12.43 L 5.293 12.431 C 5.293 12.431 5.293 12.431 5.293 12.43 Z M 5.293 12.431 C 5.205 12.766 5.135 13.105 5.082 13.448 L 0.178 12.674 C 0.059 13.439 0 14.222 0 15.001 L 10.004 15.001 C 10.004 14.573 10.058 14.15 10.165 13.743 Z M 23.543 19.481 L 28.038 21.796 C 28.389 21.098 28.689 20.364 28.927 19.618 L 24.127 18.048 C 23.969 18.54 23.773 19.019 23.543 19.481 Z M 16.077 19.708 L 17.364 24.557 C 17.036 24.645 16.704 24.718 16.368 24.772 L 17.16 29.814 C 17.927 29.69 18.683 29.505 19.422 29.262 L 17.882 24.487 C 18.373 24.326 18.85 24.125 19.309 23.886 L 21.572 28.357 C 22.263 27.999 22.925 27.586 23.552 27.123 L 20.578 23 C 20.303 23.201 20.017 23.389 19.724 23.561 L 17.234 19.22 C 16.871 19.434 16.481 19.598 16.077 19.708 Z M 6.364 19.966 L 10.652 17.444 C 10.441 17.076 10.279 16.682 10.169 16.272 L 5.381 17.579 C 5.291 17.247 5.219 16.911 5.167 16.571 L 0.186 17.374 C 0.308 18.15 0.492 18.92 0.731 19.665 L 5.449 18.105 C 5.609 18.601 5.807 19.083 6.043 19.547 L 1.627 21.84 C 1.98 22.536 2.39 23.208 2.846 23.841 L 6.919 20.829 C 6.719 20.551 6.533 20.263 6.362 19.966 Z M 8.113 28.38 C 8.807 28.735 9.526 29.036 10.266 29.279 L 11.815 24.421 C 11.328 24.263 10.855 24.065 10.399 23.83 Z M 9.904 23.651 L 12.422 19.23 C 12.056 19.017 11.72 18.756 11.422 18.454 L 4.358 25.627 C 4.906 26.179 5.501 26.691 6.126 27.152 L 9.039 23.086 C 9.318 23.289 9.605 23.479 9.902 23.653 Z M 18.995 17.433 C 18.785 17.801 18.528 18.142 18.229 18.445 L 25.313 25.595 C 25.861 25.039 26.365 24.441 26.821 23.805 L 22.806 20.856 C 23.006 20.574 23.196 20.283 23.366 19.982 L 18.997 17.431 Z M 13.581 19.712 L 12.288 24.647 C 12.618 24.735 12.954 24.806 13.294 24.859 L 12.531 29.822 C 13.284 29.94 14.054 30 14.822 30 L 14.834 30 L 14.834 19.874 L 14.822 19.874 C 14.401 19.874 13.984 19.819 13.581 19.71 Z M 24.351 17.57 C 24.44 17.234 24.51 16.895 24.563 16.552 L 29.467 17.326 C 29.585 16.561 29.645 15.778 29.645 14.999 L 19.639 14.999 C 19.639 15.427 19.585 15.85 19.477 16.257 Z M 37.434 15.472 L 39.46 15.472 L 39.46 8.059 L 40.042 8.059 L 43.28 15.472 L 45.495 15.472 L 41.363 6.009 L 37.434 6.009 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 78.754 6.009 L 76.728 6.009 L 76.728 15.472 L 78.754 15.472 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 76.728 15.472 L 74.513 15.472 L 71.277 8.059 L 69.945 8.059 L 69.945 15.472 L 67.919 15.472 L 67.919 6.009 L 72.598 6.009 Z M 53.555 6.009 L 53.555 15.472 L 51.529 15.472 L 51.529 8.059 L 50.946 8.059 L 47.708 15.472 L 45.495 15.472 L 49.625 6.009 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 62.616 6.009 L 58.909 6.009 L 54.777 15.472 L 56.993 15.472 L 58.34 12.389 L 63.186 12.389 L 64.531 15.472 L 66.746 15.472 L 62.614 6.009 Z M 59.234 10.339 L 60.228 8.061 L 61.295 8.061 L 62.29 10.339 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 84.608 8.059 L 84.608 15.472 L 86.634 15.472 L 86.634 8.059 L 91.363 8.059 L 91.363 6.009 L 79.88 6.009 L 79.88 8.059 Z M 94.513 6.009 L 92.487 6.009 L 92.487 15.472 L 101.306 15.472 L 101.306 13.422 L 94.513 13.422 Z M 102.432 6.009 L 102.432 15.472 L 112 15.472 L 112 13.422 L 104.458 13.422 L 104.458 11.629 L 110.996 11.629 L 110.996 9.578 L 104.458 9.578 L 104.458 8.059 L 112 8.059 L 112 6.009 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 37.285 23.852 L 37.285 17.801 L 38.703 17.801 L 40.779 21.717 L 40.779 17.801 L 42.103 17.801 L 42.103 23.852 L 40.686 23.852 L 38.61 19.936 L 38.61 23.852 Z M 43.265 23.852 L 43.265 17.801 L 46.922 17.801 L 46.922 18.925 L 44.649 18.925 L 44.649 20.3 L 46.922 20.3 L 46.922 21.398 L 44.649 21.398 L 44.649 22.73 L 46.922 22.73 L 46.922 23.854 L 43.265 23.854 Z M 49.057 23.852 L 49.057 19.046 L 47.417 19.046 L 47.417 17.801 L 52.082 17.801 L 52.082 19.046 L 50.432 19.046 L 50.432 23.852 Z M 54.545 23.852 L 52.436 17.801 L 53.889 17.801 L 55.135 21.821 L 56.323 17.801 L 57.399 17.801 L 58.586 21.821 L 59.833 17.801 L 61.286 17.801 L 59.176 23.852 L 58.048 23.852 L 56.861 20.048 L 55.673 23.852 Z M 66.529 23.096 C 65.948 23.715 65.173 24.025 64.204 24.025 C 63.236 24.025 62.462 23.715 61.881 23.096 C 61.301 22.476 61.009 21.719 61.009 20.826 C 61.009 19.932 61.301 19.175 61.881 18.555 C 62.462 17.936 63.238 17.626 64.204 17.626 C 65.171 17.626 65.947 17.936 66.529 18.555 C 67.11 19.175 67.401 19.932 67.401 20.826 C 67.401 21.719 67.11 22.476 66.529 23.096 Z M 64.204 22.771 C 64.752 22.771 65.18 22.585 65.49 22.213 C 65.8 21.841 65.956 21.379 65.956 20.826 C 65.956 20.272 65.8 19.81 65.49 19.438 C 65.18 19.066 64.752 18.88 64.204 18.88 C 63.657 18.88 63.221 19.066 62.909 19.438 C 62.599 19.81 62.447 20.272 62.453 20.826 C 62.447 21.379 62.599 21.841 62.909 22.213 C 63.219 22.585 63.651 22.771 64.204 22.771 Z M 72.893 19.986 C 72.893 20.424 72.793 20.814 72.594 21.158 C 72.394 21.502 72.121 21.759 71.774 21.932 L 72.824 23.851 L 71.253 23.851 L 70.312 22.174 L 69.587 22.174 L 69.587 23.851 L 68.203 23.851 L 68.203 17.799 L 70.748 17.799 C 71.37 17.799 71.882 18.005 72.286 18.416 C 72.691 18.83 72.893 19.352 72.893 19.986 Z M 69.587 18.94 L 69.587 21.032 L 70.535 21.032 C 70.813 21.032 71.043 20.934 71.223 20.737 C 71.403 20.542 71.492 20.29 71.492 19.984 C 71.492 19.678 71.403 19.429 71.223 19.231 C 71.043 19.036 70.815 18.937 70.535 18.937 L 69.587 18.937 Z M 78.754 17.799 L 76.405 20.799 L 78.754 23.852 L 77.105 23.852 L 75.14 21.18 L 75.14 23.852 L 73.756 23.852 L 73.756 17.801 L 75.14 17.801 L 75.14 20.489 L 77.114 17.801 L 78.754 17.801 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a5hdq4\",layoutDependency:layoutDependency,layoutId:\"NSTGnaIf2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 112 30\" overflow=\"visible\"><path d=\"M 0 0 L 112 0 L 112 30 L 0 30 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-ka1ukr\",layoutDependency:layoutDependency,layoutId:\"y3d7UqDO_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45.495 30\" overflow=\"visible\"><path d=\"M 16.351 5.141 L 17.112 0.178 C 16.359 0.06 15.589 0 14.821 0 L 14.809 0 L 14.809 10.126 L 14.821 10.126 C 15.242 10.126 15.659 10.181 16.062 10.29 L 17.355 5.355 C 17.025 5.267 16.689 5.196 16.349 5.143 Z M 12.409 10.78 L 12.408 10.779 C 12.408 10.779 12.407 10.78 12.407 10.78 Z M 12.408 10.779 C 12.771 10.565 13.161 10.402 13.564 10.292 L 12.277 5.443 C 12.605 5.355 12.937 5.282 13.273 5.228 L 12.481 0.186 C 11.717 0.31 10.954 0.496 10.219 0.738 L 11.761 5.513 C 11.271 5.675 10.793 5.876 10.334 6.114 L 8.071 1.643 C 7.382 2 6.716 2.415 6.091 2.877 L 9.065 7 C 9.34 6.799 9.626 6.611 9.919 6.439 Z M 6.1 10.519 L 1.605 8.204 C 1.252 8.902 0.954 9.636 0.716 10.382 L 5.516 11.952 C 5.674 11.46 5.87 10.981 6.1 10.519 Z M 23.279 10.034 L 18.991 12.556 C 19.203 12.924 19.364 13.319 19.474 13.728 L 24.262 12.421 C 24.351 12.753 24.424 13.089 24.476 13.429 L 29.457 12.626 C 29.335 11.85 29.151 11.08 28.912 10.335 L 24.194 11.895 C 24.034 11.399 23.836 10.917 23.6 10.453 L 28.016 8.16 C 27.663 7.466 27.253 6.792 26.797 6.159 L 22.724 9.171 C 22.925 9.449 23.108 9.738 23.281 10.034 Z M 21.529 1.62 L 21.529 1.622 C 21.529 1.622 21.529 1.622 21.529 1.622 Z M 19.377 0.723 L 17.828 5.581 C 18.315 5.739 18.788 5.937 19.244 6.172 L 21.529 1.622 C 20.835 1.267 20.116 0.966 19.377 0.723 Z M 19.739 6.349 L 17.221 10.772 C 17.587 10.985 17.923 11.246 18.221 11.548 L 25.285 4.375 C 24.735 3.821 24.144 3.312 23.517 2.85 L 20.604 6.916 C 20.325 6.713 20.038 6.523 19.741 6.349 Z M 10.648 12.567 C 10.858 12.199 11.115 11.858 11.414 11.555 L 4.33 4.405 C 3.783 4.959 3.277 5.562 2.822 6.195 L 6.837 9.144 C 6.637 9.426 6.447 9.717 6.277 10.018 L 10.646 12.569 Z M 5.291 12.43 L 5.293 12.431 C 5.293 12.431 5.293 12.431 5.293 12.43 Z M 5.293 12.431 C 5.205 12.766 5.135 13.105 5.082 13.448 L 0.178 12.674 C 0.059 13.439 0 14.222 0 15.001 L 10.004 15.001 C 10.004 14.573 10.058 14.15 10.165 13.743 Z M 23.543 19.481 L 28.038 21.796 C 28.389 21.098 28.689 20.364 28.927 19.618 L 24.127 18.048 C 23.969 18.54 23.773 19.019 23.543 19.481 Z M 16.077 19.708 L 17.364 24.557 C 17.036 24.645 16.704 24.718 16.368 24.772 L 17.16 29.814 C 17.927 29.69 18.683 29.505 19.422 29.262 L 17.882 24.487 C 18.373 24.326 18.85 24.125 19.309 23.886 L 21.572 28.357 C 22.263 27.999 22.925 27.586 23.552 27.123 L 20.578 23 C 20.303 23.201 20.017 23.389 19.724 23.561 L 17.234 19.22 C 16.871 19.434 16.481 19.598 16.077 19.708 Z M 6.364 19.966 L 10.652 17.444 C 10.441 17.076 10.279 16.682 10.169 16.272 L 5.381 17.579 C 5.291 17.247 5.219 16.911 5.167 16.571 L 0.186 17.374 C 0.308 18.15 0.492 18.92 0.731 19.665 L 5.449 18.105 C 5.609 18.601 5.807 19.083 6.043 19.547 L 1.627 21.84 C 1.98 22.536 2.39 23.208 2.846 23.841 L 6.919 20.829 C 6.719 20.551 6.533 20.263 6.362 19.966 Z M 8.113 28.38 C 8.807 28.735 9.526 29.036 10.266 29.279 L 11.815 24.421 C 11.328 24.263 10.855 24.065 10.399 23.83 Z M 9.904 23.651 L 12.422 19.23 C 12.056 19.017 11.72 18.756 11.422 18.454 L 4.358 25.627 C 4.906 26.179 5.501 26.691 6.126 27.152 L 9.039 23.086 C 9.318 23.289 9.605 23.479 9.902 23.653 Z M 18.995 17.433 C 18.785 17.801 18.528 18.142 18.229 18.445 L 25.313 25.595 C 25.861 25.039 26.365 24.441 26.821 23.805 L 22.806 20.856 C 23.006 20.574 23.196 20.283 23.366 19.982 L 18.997 17.431 Z M 13.581 19.712 L 12.288 24.647 C 12.618 24.735 12.954 24.806 13.294 24.859 L 12.531 29.822 C 13.284 29.94 14.054 30 14.822 30 L 14.834 30 L 14.834 19.874 L 14.822 19.874 C 14.401 19.874 13.984 19.819 13.581 19.71 Z M 24.351 17.57 C 24.44 17.234 24.51 16.895 24.563 16.552 L 29.467 17.326 C 29.585 16.561 29.645 15.778 29.645 14.999 L 19.639 14.999 C 19.639 15.427 19.585 15.85 19.477 16.257 Z M 37.434 15.472 L 39.46 15.472 L 39.46 8.059 L 40.042 8.059 L 43.28 15.472 L 45.495 15.472 L 41.363 6.009 L 37.434 6.009 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fawlbl\",layoutDependency:layoutDependency,layoutId:\"HY3mJbCbC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.546 10.29\" overflow=\"visible\"><path d=\"M 1.542 5.141 L 2.302 0.178 C 1.549 0.06 0.779 0 0.011 0 L 0 0 L 0 10.126 L 0.011 10.126 C 0.432 10.126 0.85 10.181 1.252 10.29 L 2.546 5.355 C 2.215 5.267 1.879 5.196 1.54 5.143 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mcdv9a\",layoutDependency:layoutDependency,layoutId:\"ivKob7oaB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.473 10.594\" overflow=\"visible\"><path d=\"M 6.317 10.594 L 3.828 6.253 C 3.534 6.425 3.249 6.613 2.974 6.814 L 0 2.691 C 0.625 2.229 1.291 1.814 1.98 1.457 L 4.243 5.928 C 4.702 5.69 5.179 5.489 5.67 5.327 L 4.128 0.552 C 4.863 0.31 5.625 0.124 6.39 0 L 7.182 5.042 C 6.846 5.096 6.514 5.169 6.186 5.258 L 7.473 10.106 C 7.069 10.217 6.679 10.38 6.316 10.594 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-blmdrv\",layoutDependency:layoutDependency,layoutId:\"Jwfr74AVe\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.384 3.748\" overflow=\"visible\"><path d=\"M 5.384 2.315 L 0.889 0 C 0.536 0.699 0.237 1.433 0 2.178 L 4.8 3.748 C 4.958 3.256 5.154 2.777 5.384 2.315 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cxa162\",layoutDependency:layoutDependency,layoutId:\"XOYSZ853b\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.466 7.569\" overflow=\"visible\"><path d=\"M 4.288 3.876 L 0 6.397 C 0.212 6.765 0.373 7.16 0.482 7.569 L 5.271 6.262 C 5.36 6.594 5.432 6.931 5.484 7.27 L 10.466 6.467 C 10.344 5.691 10.16 4.921 9.921 4.176 L 5.202 5.736 C 5.043 5.24 4.844 4.758 4.609 4.294 L 9.024 2.002 C 8.672 1.307 8.262 0.633 7.805 0 L 3.733 3.012 C 3.933 3.29 4.117 3.579 4.29 3.876 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jf4f8b\",layoutDependency:layoutDependency,layoutId:\"CAt_KfYvM\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.701 5.449\" overflow=\"visible\"><path d=\"M 3.701 0.899 C 3.008 0.544 2.288 0.243 1.549 0 L 0 4.858 C 0.487 5.016 0.96 5.214 1.416 5.449 L 3.701 0.898 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ppu63g\",layoutDependency:layoutDependency,layoutId:\"hFRcHwnCi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.063 8.698\" overflow=\"visible\"><path d=\"M 2.518 3.498 L 0 7.922 C 0.366 8.135 0.702 8.395 1 8.698 L 8.063 1.525 C 7.514 0.971 6.923 0.461 6.295 0 L 3.382 4.065 C 3.104 3.862 2.816 3.673 2.52 3.498 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jawzph\",layoutDependency:layoutDependency,layoutId:\"eglytw7cR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.592 8.164\" overflow=\"visible\"><path d=\"M 7.824 8.164 L 3.455 5.612 C 3.625 5.312 3.815 5.021 4.015 4.739 L 0 1.789 C 0.455 1.157 0.961 0.554 1.508 0 L 8.592 7.15 C 8.293 7.453 8.036 7.794 7.826 8.162 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eqfm5e\",layoutDependency:layoutDependency,layoutId:\"ug7XoJYoG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.165 2.571\" overflow=\"visible\"><path d=\"M 5.291 0 L 10.165 1.313 C 10.058 1.72 10.004 2.142 10.004 2.571 L 0 2.571 C 0 1.791 0.059 1.008 0.178 0.244 L 5.082 1.018 C 5.135 0.675 5.205 0.335 5.293 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-liq3kq\",layoutDependency:layoutDependency,layoutId:\"Rnq1qWHdh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.384 3.748\" overflow=\"visible\"><path d=\"M 0 1.433 L 4.496 3.748 C 4.846 3.049 5.147 2.315 5.384 1.57 L 0.584 0 C 0.426 0.492 0.231 0.971 0 1.433 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xhe1g7\",layoutDependency:layoutDependency,layoutId:\"DvZ37YHos\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.475 10.594\" overflow=\"visible\"><path d=\"M 1.158 0 L 3.648 4.341 C 3.941 4.168 4.226 3.981 4.501 3.78 L 7.475 7.903 C 6.848 8.366 6.186 8.779 5.496 9.137 L 3.232 4.666 C 2.773 4.905 2.296 5.105 1.805 5.267 L 3.345 10.042 C 2.607 10.285 1.85 10.47 1.084 10.594 L 0.291 5.552 C 0.627 5.498 0.959 5.425 1.288 5.336 L 0 0.488 C 0.404 0.377 0.794 0.214 1.158 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w5i1in\",layoutDependency:layoutDependency,layoutId:\"FHfk9pTyh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.466 7.569\" overflow=\"visible\"><path d=\"M 6.178 3.693 L 10.466 1.172 C 10.255 0.804 10.093 0.41 9.984 0 L 5.195 1.307 C 5.106 0.975 5.034 0.638 4.982 0.299 L 0 1.102 C 0.122 1.878 0.306 2.648 0.545 3.393 L 5.264 1.833 C 5.423 2.329 5.622 2.811 5.857 3.275 L 1.442 5.567 C 1.794 6.264 2.204 6.936 2.661 7.569 L 6.733 4.557 C 6.534 4.279 6.348 3.99 6.176 3.693 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nlkc7q\",layoutDependency:layoutDependency,layoutId:\"vw1Kix7Rm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.701 5.449\" overflow=\"visible\"><path d=\"M 0 4.55 C 0.693 4.905 1.413 5.206 2.152 5.449 L 3.701 0.591 C 3.215 0.433 2.741 0.235 2.286 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o7plpy\",layoutDependency:layoutDependency,layoutId:\"mSno4_wh0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.063 8.698\" overflow=\"visible\"><path d=\"M 5.546 5.197 L 8.063 0.775 C 7.698 0.563 7.361 0.302 7.063 0 L 0 7.173 C 0.547 7.725 1.143 8.237 1.768 8.698 L 4.681 4.632 C 4.959 4.835 5.247 5.025 5.544 5.199 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-189bv55\",layoutDependency:layoutDependency,layoutId:\"JrSN1I2tR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.592 8.164\" overflow=\"visible\"><path d=\"M 0.768 0 L 5.137 2.552 C 4.967 2.852 4.778 3.143 4.577 3.425 L 8.592 6.375 C 8.136 7.01 7.632 7.608 7.084 8.164 L 0 1.014 C 0.299 0.712 0.557 0.37 0.766 0.002 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ub9sl1\",layoutDependency:layoutDependency,layoutId:\"WYJVqBaEz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.546 10.29\" overflow=\"visible\"><path d=\"M 1.293 0.002 L 0 4.936 C 0.33 5.025 0.666 5.096 1.006 5.149 L 0.243 10.111 C 0.996 10.23 1.766 10.29 2.534 10.29 L 2.546 10.29 L 2.546 0.163 L 2.534 0.163 C 2.113 0.163 1.696 0.109 1.293 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-os728v\",layoutDependency:layoutDependency,layoutId:\"SUBS8w3e2\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.167 2.571\" overflow=\"visible\"><path d=\"M 0 1.258 C 0.108 0.851 0.161 0.428 0.161 0 L 10.167 0 C 10.167 0.779 10.108 1.562 9.989 2.326 L 5.086 1.553 C 5.033 1.896 4.962 2.235 4.874 2.571 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dt5ykk\",layoutDependency:layoutDependency,layoutId:\"vUEEkG6Mg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.061 9.464\" overflow=\"visible\"><path d=\"M 0 0 L 3.93 0 L 8.061 9.464 L 5.846 9.464 L 2.609 2.05 L 2.026 2.05 L 2.026 9.464 L 0 9.464 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p2n0sv\",layoutDependency:layoutDependency,layoutId:\"e8tTo1KDn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.026 9.464\" overflow=\"visible\"><path d=\"M 2.026 0 L 0 0 L 0 9.464 L 2.026 9.464 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1l4xynd\",layoutDependency:layoutDependency,layoutId:\"KTODglDLF\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.233 9.464\" overflow=\"visible\"><path d=\"M 31.233 9.464 L 29.018 9.464 L 25.782 2.05 L 24.45 2.05 L 24.45 9.464 L 22.424 9.464 L 22.424 0 L 27.103 0 Z M 8.06 0 L 8.06 9.464 L 6.034 9.464 L 6.034 2.05 L 5.451 2.05 L 2.213 9.464 L 0 9.464 L 4.13 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1a7ncsp\",layoutDependency:layoutDependency,layoutId:\"tQxGzqJ0s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.809 9.464\" overflow=\"visible\"><path d=\"M 8.809 9.464 L 6.594 9.464 L 3.358 2.05 L 2.026 2.05 L 2.026 9.464 L 0 9.464 L 0 0 L 4.679 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-151xbfn\",layoutDependency:layoutDependency,layoutId:\"bZOw5O7wN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.06 9.464\" overflow=\"visible\"><path d=\"M 4.13 0 L 0 9.464 L 2.213 9.464 L 5.451 2.05 L 6.034 2.05 L 6.034 9.464 L 8.06 9.464 L 8.06 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1g8lcg2\",layoutDependency:layoutDependency,layoutId:\"iVVrhVLjR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.969 9.464\" overflow=\"visible\"><path d=\"M 7.839 0 L 4.132 0 L 0 9.464 L 2.215 9.464 L 3.562 6.38 L 8.408 6.38 L 9.754 9.464 L 11.969 9.464 L 7.837 0 Z M 4.457 4.33 L 5.451 2.052 L 6.518 2.052 L 7.512 4.33 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-n1ruom\",layoutDependency:layoutDependency,layoutId:\"oZEORbMNz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.969 9.464\" overflow=\"visible\"><path d=\"M 7.839 0 L 4.132 0 L 0 9.464 L 2.215 9.464 L 3.562 6.38 L 8.408 6.38 L 9.754 9.464 L 11.969 9.464 L 7.837 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-11yta6e\",layoutDependency:layoutDependency,layoutId:\"ir5REmVBo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.056 2.278\" overflow=\"visible\"><path d=\"M 0 2.278 L 0.994 0 L 2.061 0 L 3.056 2.278 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1oja9si\",layoutDependency:layoutDependency,layoutId:\"qGmsvz_MC\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 32.12 9.464\" overflow=\"visible\"><path d=\"M 4.727 2.05 L 4.727 9.464 L 6.753 9.464 L 6.753 2.05 L 11.483 2.05 L 11.483 0 L 0 0 L 0 2.05 Z M 14.633 0 L 12.607 0 L 12.607 9.464 L 21.426 9.464 L 21.426 7.413 L 14.633 7.413 Z M 22.552 0 L 22.552 9.464 L 32.12 9.464 L 32.12 7.413 L 24.578 7.413 L 24.578 5.62 L 31.116 5.62 L 31.116 3.57 L 24.578 3.57 L 24.578 2.05 L 32.12 2.05 L 32.12 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qpai8t\",layoutDependency:layoutDependency,layoutId:\"iPCcGL8Rf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.483 9.464\" overflow=\"visible\"><path d=\"M 0 2.05 L 0 0 L 11.483 0 L 11.483 2.05 L 6.753 2.05 L 6.753 9.464 L 4.727 9.464 L 4.727 2.05 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-67mq8j\",layoutDependency:layoutDependency,layoutId:\"ktPvHJgsq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.818 9.464\" overflow=\"visible\"><path d=\"M 2.026 0 L 0 0 L 0 9.464 L 8.818 9.464 L 8.818 7.413 L 2.026 7.413 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-r3gell\",layoutDependency:layoutDependency,layoutId:\"Ks8nse8E0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.568 9.464\" overflow=\"visible\"><path d=\"M 9.568 0 L 9.568 2.05 L 2.026 2.05 L 2.026 3.57 L 8.564 3.57 L 8.564 5.62 L 2.026 5.62 L 2.026 7.413 L 9.568 7.413 L 9.568 9.464 L 0 9.464 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1y7sew1\",layoutDependency:layoutDependency,layoutId:\"tX_8ZJbaa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 41.469 6.399\" overflow=\"visible\"><path d=\"M 0 6.226 L 0 0.175 L 1.417 0.175 L 3.494 4.092 L 3.494 0.175 L 4.818 0.175 L 4.818 6.226 L 3.401 6.226 L 1.325 2.31 L 1.325 6.226 Z M 5.98 6.226 L 5.98 0.175 L 9.637 0.175 L 9.637 1.299 L 7.364 1.299 L 7.364 2.674 L 9.637 2.674 L 9.637 3.772 L 7.364 3.772 L 7.364 5.104 L 9.637 5.104 L 9.637 6.228 L 5.98 6.228 Z M 11.772 6.226 L 11.772 1.42 L 10.132 1.42 L 10.132 0.175 L 14.796 0.175 L 14.796 1.42 L 13.147 1.42 L 13.147 6.226 Z M 17.26 6.226 L 15.151 0.175 L 16.604 0.175 L 17.85 4.195 L 19.038 0.175 L 20.114 0.175 L 21.301 4.195 L 22.548 0.175 L 24.001 0.175 L 21.891 6.226 L 20.763 6.226 L 19.576 2.422 L 18.388 6.226 Z M 29.244 5.47 C 28.663 6.089 27.888 6.399 26.919 6.399 C 25.951 6.399 25.177 6.089 24.596 5.47 C 24.016 4.85 23.724 4.093 23.724 3.2 C 23.724 2.306 24.016 1.549 24.596 0.929 C 25.177 0.31 25.953 0 26.919 0 C 27.886 0 28.661 0.31 29.244 0.929 C 29.825 1.549 30.116 2.306 30.116 3.2 C 30.116 4.093 29.825 4.85 29.244 5.47 Z M 26.919 5.145 C 27.467 5.145 27.895 4.959 28.205 4.587 C 28.515 4.215 28.671 3.754 28.671 3.2 C 28.671 2.646 28.515 2.184 28.205 1.812 C 27.895 1.44 27.467 1.254 26.919 1.254 C 26.372 1.254 25.936 1.44 25.624 1.812 C 25.314 2.184 25.162 2.646 25.168 3.2 C 25.162 3.754 25.314 4.215 25.624 4.587 C 25.934 4.959 26.366 5.145 26.919 5.145 Z M 35.608 2.36 C 35.608 2.798 35.508 3.188 35.309 3.532 C 35.109 3.876 34.836 4.133 34.489 4.306 L 35.539 6.225 L 33.968 6.225 L 33.027 4.548 L 32.302 4.548 L 32.302 6.225 L 30.918 6.225 L 30.918 0.173 L 33.463 0.173 C 34.085 0.173 34.597 0.379 35.001 0.791 C 35.406 1.204 35.608 1.726 35.608 2.36 Z M 32.302 1.314 L 32.302 3.406 L 33.25 3.406 C 33.528 3.406 33.758 3.309 33.938 3.111 C 34.118 2.916 34.207 2.664 34.207 2.358 C 34.207 2.052 34.118 1.803 33.938 1.605 C 33.758 1.41 33.53 1.311 33.25 1.311 L 32.302 1.311 Z M 41.469 0.173 L 39.12 3.173 L 41.469 6.226 L 39.82 6.226 L 37.855 3.554 L 37.855 6.226 L 36.471 6.226 L 36.471 0.175 L 37.855 0.175 L 37.855 2.863 L 39.829 0.175 L 41.469 0.175 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-aezws5\",layoutDependency:layoutDependency,layoutId:\"rBcUNKhJv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.818 6.052\" overflow=\"visible\"><path d=\"M 0 6.052 L 0 0 L 1.417 0 L 3.494 3.917 L 3.494 0 L 4.818 0 L 4.818 6.052 L 3.401 6.052 L 1.325 2.135 L 1.325 6.052 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-a020zn\",layoutDependency:layoutDependency,layoutId:\"wtLAalDtY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.657 6.054\" overflow=\"visible\"><path d=\"M 0 6.052 L 0 0 L 3.657 0 L 3.657 1.125 L 1.384 1.125 L 1.384 2.499 L 3.657 2.499 L 3.657 3.598 L 1.384 3.598 L 1.384 4.929 L 3.657 4.929 L 3.657 6.054 L 0 6.054 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tqw8n0\",layoutDependency:layoutDependency,layoutId:\"IK3rhYa1t\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.664 6.052\" overflow=\"visible\"><path d=\"M 1.64 6.052 L 1.64 1.245 L 0 1.245 L 0 0 L 4.664 0 L 4.664 1.245 L 3.015 1.245 L 3.015 6.052 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wf1vgx\",layoutDependency:layoutDependency,layoutId:\"MseIiAeMK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.85 6.052\" overflow=\"visible\"><path d=\"M 2.11 6.052 L 0 0 L 1.453 0 L 2.7 4.02 L 3.887 0 L 4.963 0 L 6.15 4.02 L 7.397 0 L 8.85 0 L 6.74 6.052 L 5.612 6.052 L 4.425 2.248 L 3.238 6.052 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s3hbr2\",layoutDependency:layoutDependency,layoutId:\"R5r7476QJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.392 6.399\" overflow=\"visible\"><path d=\"M 5.52 5.47 C 4.939 6.089 4.163 6.399 3.195 6.399 C 2.226 6.399 1.453 6.089 0.872 5.47 C 0.291 4.85 0 4.093 0 3.2 C 0 2.306 0.291 1.549 0.872 0.929 C 1.453 0.31 2.228 0 3.195 0 C 4.162 0 4.937 0.31 5.52 0.929 C 6.1 1.549 6.392 2.306 6.392 3.2 C 6.392 4.093 6.1 4.85 5.52 5.47 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5qbye6\",layoutDependency:layoutDependency,layoutId:\"Ag4P0nrmj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.503 3.891\" overflow=\"visible\"><path d=\"M 1.752 3.891 C 2.299 3.891 2.728 3.705 3.037 3.333 C 3.347 2.961 3.503 2.499 3.503 1.945 C 3.503 1.391 3.347 0.929 3.037 0.558 C 2.728 0.186 2.299 0 1.752 0 C 1.204 0 0.768 0.186 0.457 0.558 C 0.147 0.929 -0.005 1.391 0 1.945 C -0.005 2.499 0.147 2.961 0.457 3.333 C 0.766 3.705 1.199 3.891 1.752 3.891 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pv0e6\",layoutDependency:layoutDependency,layoutId:\"z3HiwUK9I\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.69 6.052\" overflow=\"visible\"><path d=\"M 4.69 2.188 C 4.69 2.625 4.59 3.016 4.392 3.359 C 4.191 3.703 3.918 3.96 3.572 4.133 L 4.622 6.052 L 3.05 6.052 L 2.11 4.375 L 1.384 4.375 L 1.384 6.052 L 0 6.052 L 0 0 L 2.546 0 C 3.167 0 3.679 0.207 4.084 0.618 C 4.488 1.031 4.69 1.553 4.69 2.188 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l1igv9\",layoutDependency:layoutDependency,layoutId:\"vBFv4qbBv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1.905 2.096\" overflow=\"visible\"><path d=\"M 0 0.004 L 0 2.096 L 0.948 2.096 C 1.226 2.096 1.456 1.998 1.636 1.801 C 1.816 1.605 1.905 1.354 1.905 1.048 C 1.905 0.742 1.816 0.492 1.636 0.295 C 1.456 0.1 1.228 0 0.948 0 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-i1i3le\",layoutDependency:layoutDependency,layoutId:\"wFRBUqBpG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.998 6.054\" overflow=\"visible\"><path d=\"M 4.998 0 L 2.649 3.001 L 4.998 6.054 L 3.349 6.054 L 1.384 3.382 L 1.384 6.054 L 0 6.054 L 0 0.002 L 1.384 0.002 L 1.384 2.691 L 3.358 0.002 L 4.998 0.002 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6one2g\",\"data-framer-name\":\"World\",layoutDependency:layoutDependency,layoutId:\"xjc5ajnTM\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1o9wyst\",layoutDependency:layoutDependency,layoutId:\"OQx8wCCd1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 20\" overflow=\"visible\"><path d=\"M 15.146 1.347 C 13.595 0.46 11.916 0 10.092 0 C 8.269 0 6.59 0.444 5.038 1.347 C 3.487 2.25 2.272 3.455 1.36 4.992 C 0.448 6.53 0 8.193 0 10 C 0 11.807 0.448 13.47 1.36 15.008 C 2.271 16.545 3.487 17.749 5.038 18.653 C 6.59 19.556 8.269 20 10.092 20 C 11.916 20 13.595 19.556 15.146 18.653 C 16.698 17.75 17.913 16.545 18.825 15.008 C 19.736 13.47 20.185 11.807 20.185 10 C 20.185 8.193 19.736 6.53 18.825 4.992 C 17.914 3.455 16.698 2.251 15.146 1.347 Z M 10.716 13.613 C 9.58 13.613 8.669 13.296 7.965 12.646 C 7.486 12.202 7.182 11.663 7.022 11.03 L 17.897 11.03 C 17.785 11.949 17.513 12.805 17.097 13.613 L 10.699 13.613 L 10.715 13.613 Z M 7.037 9.001 C 7.181 8.383 7.501 7.845 7.965 7.4 C 8.653 6.75 9.581 6.417 10.716 6.417 L 17.145 6.417 C 17.561 7.226 17.817 8.082 17.913 9 L 7.037 9 Z M 3.279 6.022 C 3.982 4.817 4.926 3.867 6.126 3.154 C 7.326 2.44 8.653 2.092 10.092 2.092 C 11.532 2.092 12.859 2.44 14.059 3.154 C 14.667 3.518 15.226 3.947 15.706 4.438 L 10.62 4.438 C 9.469 4.438 8.445 4.676 7.55 5.151 C 6.654 5.627 5.951 6.277 5.454 7.116 C 5.102 7.703 4.879 8.337 4.782 9.018 L 2.288 9.018 C 2.416 7.956 2.736 6.958 3.28 6.039 L 3.28 6.023 Z M 14.059 16.846 C 12.859 17.56 11.532 17.908 10.092 17.908 C 8.653 17.908 7.326 17.56 6.126 16.846 C 4.926 16.132 3.966 15.182 3.279 13.978 C 2.751 13.075 2.415 12.092 2.287 11.046 L 4.781 11.046 C 4.877 11.728 5.101 12.361 5.453 12.948 C 5.949 13.772 6.653 14.438 7.549 14.913 C 8.444 15.389 9.468 15.627 10.619 15.627 L 15.658 15.627 C 15.178 16.102 14.65 16.514 14.059 16.863 L 14.059 16.847 Z M 36.449 13.216 L 34.53 5.895 C 34.402 5.389 34.146 4.992 33.778 4.691 C 33.411 4.39 32.963 4.246 32.435 4.246 C 31.907 4.246 31.491 4.389 31.108 4.691 C 30.74 4.991 30.484 5.387 30.356 5.895 L 28.452 13.169 L 26.085 4.421 L 23.35 4.421 L 26.213 14.04 C 26.549 15.229 27.268 15.815 28.373 15.815 C 29.477 15.815 29.412 15.657 29.764 15.34 C 30.1 15.022 30.356 14.595 30.5 14.04 L 32.419 6.671 L 34.322 14.04 C 34.626 15.229 35.346 15.815 36.482 15.815 C 37.618 15.815 38.289 15.228 38.641 14.04 L 41.489 4.421 L 38.77 4.421 L 36.435 13.216 L 36.45 13.216 Z M 51.019 4.913 C 50.091 4.39 49.052 4.12 47.9 4.12 C 46.749 4.12 45.725 4.39 44.814 4.913 C 43.886 5.436 43.166 6.149 42.638 7.053 C 42.11 7.956 41.855 8.939 41.855 10.017 C 41.855 11.094 42.111 12.093 42.638 12.98 C 43.166 13.883 43.886 14.581 44.814 15.12 C 45.742 15.643 46.765 15.913 47.9 15.913 C 49.035 15.913 50.091 15.643 51.019 15.12 C 51.948 14.597 52.667 13.884 53.195 12.98 C 53.723 12.077 53.978 11.094 53.978 10.017 C 53.978 8.939 53.722 7.94 53.195 7.053 C 52.667 6.15 51.948 5.452 51.019 4.913 Z M 50.924 11.838 C 50.636 12.393 50.22 12.82 49.708 13.137 C 49.197 13.455 48.589 13.613 47.933 13.613 C 47.277 13.613 46.67 13.455 46.157 13.137 C 45.646 12.82 45.229 12.393 44.942 11.854 C 44.654 11.315 44.51 10.697 44.51 10.016 C 44.51 9.334 44.654 8.748 44.942 8.193 C 45.229 7.639 45.645 7.21 46.157 6.894 C 46.669 6.577 47.261 6.418 47.933 6.418 C 48.605 6.418 49.196 6.577 49.708 6.894 C 50.219 7.211 50.636 7.639 50.924 8.177 C 51.212 8.716 51.355 9.334 51.355 10.016 C 51.355 10.697 51.212 11.284 50.924 11.838 Z M 59.193 5.071 C 58.665 5.452 58.297 5.974 58.057 6.609 L 58.057 4.422 L 55.481 4.422 L 55.481 15.61 L 58.088 15.61 L 58.088 10.635 C 58.088 9.303 58.408 8.352 59.032 7.767 C 59.671 7.18 60.567 6.879 61.751 6.864 L 61.815 6.864 L 61.815 4.281 L 61.735 4.281 C 60.76 4.281 59.912 4.55 59.193 5.073 Z M 66.357 13.043 C 66.117 12.758 65.989 12.329 65.989 11.728 L 65.989 0.144 L 63.383 0.144 L 63.383 12.061 C 63.383 13.297 63.719 14.216 64.375 14.802 C 65.031 15.389 66.022 15.674 67.35 15.674 L 67.606 15.674 L 67.606 13.487 C 67.014 13.487 66.583 13.329 66.343 13.043 L 66.359 13.043 Z M 77.377 0.144 L 77.377 5.833 C 77.137 5.484 76.818 5.183 76.434 4.913 C 75.65 4.39 74.738 4.12 73.667 4.12 C 72.596 4.12 71.556 4.374 70.676 4.881 C 69.812 5.387 69.141 6.086 68.661 6.988 C 68.182 7.891 67.941 8.906 67.941 10.016 C 67.941 11.126 68.182 12.155 68.645 13.043 C 69.124 13.946 69.796 14.644 70.659 15.15 C 71.523 15.657 72.53 15.911 73.666 15.911 C 74.802 15.911 75.01 15.784 75.618 15.547 C 76.21 15.308 76.706 14.977 77.106 14.532 C 77.218 14.421 77.298 14.294 77.393 14.168 L 77.393 15.61 L 80 15.61 L 80 0.144 Z M 77.009 11.87 C 76.721 12.425 76.306 12.869 75.777 13.185 C 75.249 13.502 74.641 13.661 73.971 13.661 C 73.3 13.661 72.691 13.503 72.18 13.185 C 71.668 12.868 71.268 12.425 70.996 11.87 C 70.724 11.316 70.581 10.698 70.581 10.017 C 70.581 9.335 70.724 8.717 70.996 8.163 C 71.268 7.608 71.668 7.164 72.18 6.848 C 72.691 6.531 73.283 6.373 73.971 6.373 C 74.658 6.373 75.266 6.531 75.777 6.848 C 76.306 7.165 76.706 7.608 77.009 8.163 C 77.297 8.717 77.44 9.335 77.44 10.017 C 77.44 10.698 77.297 11.316 77.009 11.87 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1euct1o\",layoutDependency:layoutDependency,layoutId:\"KtwO0TIpz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20.185 20\" overflow=\"visible\"><path d=\"M 15.146 1.347 C 13.595 0.46 11.916 0 10.092 0 C 8.269 0 6.59 0.444 5.038 1.347 C 3.487 2.25 2.272 3.455 1.36 4.992 C 0.448 6.53 0 8.193 0 10 C 0 11.807 0.448 13.47 1.36 15.008 C 2.271 16.545 3.487 17.749 5.038 18.653 C 6.59 19.556 8.269 20 10.092 20 C 11.916 20 13.595 19.556 15.146 18.653 C 16.698 17.75 17.913 16.545 18.825 15.008 C 19.736 13.47 20.185 11.807 20.185 10 C 20.185 8.193 19.736 6.53 18.825 4.992 C 17.914 3.455 16.698 2.251 15.146 1.347 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l6i8ss\",layoutDependency:layoutDependency,layoutId:\"dm08PFp4q\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.876 2.583\" overflow=\"visible\"><path d=\"M 3.694 2.583 C 2.559 2.583 1.647 2.266 0.944 1.617 C 0.464 1.172 0.161 0.634 0 0 L 10.876 0 C 10.763 0.92 10.491 1.775 10.076 2.583 L 3.678 2.583 L 3.693 2.583 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1iqjgv\",layoutDependency:layoutDependency,layoutId:\"L_FEBoMzw\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.876 2.584\" overflow=\"visible\"><path d=\"M 0 2.584 C 0.144 1.966 0.464 1.427 0.928 0.983 C 1.616 0.333 2.544 0 3.679 0 L 10.108 0 C 10.524 0.808 10.78 1.664 10.876 2.583 L 0 2.583 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1r4m9mt\",layoutDependency:layoutDependency,layoutId:\"y3jB9gOTk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.418 6.926\" overflow=\"visible\"><path d=\"M 0.991 3.93 C 1.694 2.725 2.638 1.775 3.838 1.062 C 5.038 0.348 6.365 0 7.805 0 C 9.244 0 10.571 0.348 11.771 1.062 C 12.379 1.426 12.939 1.855 13.418 2.346 L 8.333 2.346 C 7.181 2.346 6.157 2.584 5.262 3.059 C 4.366 3.535 3.663 4.185 3.166 5.024 C 2.815 5.611 2.591 6.245 2.494 6.926 L 0 6.926 C 0.128 5.864 0.448 4.866 0.992 3.947 L 0.992 3.931 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d1ujve\",layoutDependency:layoutDependency,layoutId:\"KBXPYCzC4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.371 6.862\" overflow=\"visible\"><path d=\"M 11.772 5.799 C 10.572 6.513 9.245 6.862 7.806 6.862 C 6.366 6.862 5.039 6.513 3.839 5.799 C 2.639 5.086 1.68 4.135 0.992 2.931 C 0.464 2.029 0.128 1.045 0 0 L 2.494 0 C 2.59 0.681 2.815 1.315 3.166 1.902 C 3.662 2.725 4.366 3.391 5.262 3.867 C 6.157 4.342 7.181 4.58 8.333 4.58 L 13.371 4.58 C 12.891 5.056 12.363 5.468 11.772 5.816 L 11.772 5.8 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y9ow4w\",layoutDependency:layoutDependency,layoutId:\"EuaY8Y0NS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.139 11.569\" overflow=\"visible\"><path d=\"M 13.099 8.97 L 11.18 1.649 C 11.052 1.142 10.796 0.746 10.428 0.444 C 10.061 0.144 9.613 0 9.085 0 C 8.556 0 8.141 0.143 7.757 0.444 C 7.39 0.745 7.134 1.141 7.006 1.649 L 5.102 8.922 L 2.735 0.175 L 0 0.175 L 2.863 9.794 C 3.199 10.983 3.918 11.569 5.023 11.569 C 6.127 11.569 6.062 11.411 6.414 11.093 C 6.75 10.776 7.006 10.348 7.15 9.794 L 9.069 2.425 L 10.972 9.794 C 11.276 10.983 11.996 11.569 13.132 11.569 C 14.268 11.569 14.939 10.982 15.291 9.794 L 18.139 0.175 L 15.419 0.175 L 13.085 8.97 L 13.1 8.97 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l6uhma\",layoutDependency:layoutDependency,layoutId:\"q9nPdZeWK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.123 11.792\" overflow=\"visible\"><path d=\"M 9.164 0.793 C 8.236 0.269 7.197 0 6.045 0 C 4.893 0 3.87 0.269 2.959 0.793 C 2.03 1.316 1.311 2.029 0.783 2.932 C 0.255 3.835 0 4.818 0 5.896 C 0 6.974 0.256 7.973 0.783 8.86 C 1.311 9.763 2.03 10.461 2.959 11 C 3.887 11.523 4.91 11.792 6.045 11.792 C 7.18 11.792 8.236 11.523 9.164 11 C 10.092 10.476 10.812 9.764 11.34 8.86 C 11.868 7.957 12.123 6.974 12.123 5.896 C 12.123 4.818 11.867 3.82 11.34 2.932 C 10.812 2.03 10.092 1.332 9.164 0.793 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mev7l2\",layoutDependency:layoutDependency,layoutId:\"pg0UAeN7m\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.845 7.194\" overflow=\"visible\"><path d=\"M 6.414 5.42 C 6.126 5.974 5.71 6.402 5.198 6.719 C 4.687 7.036 4.079 7.194 3.423 7.194 C 2.766 7.194 2.16 7.036 1.647 6.719 C 1.136 6.402 0.719 5.974 0.431 5.435 C 0.144 4.896 0 4.279 0 3.597 C 0 2.916 0.144 2.329 0.431 1.775 C 0.719 1.22 1.135 0.792 1.647 0.475 C 2.159 0.158 2.751 0 3.423 0 C 4.094 0 4.686 0.158 5.198 0.475 C 5.709 0.793 6.126 1.22 6.414 1.759 C 6.701 2.298 6.845 2.916 6.845 3.597 C 6.845 4.279 6.701 4.865 6.414 5.42 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-153p5b0\",layoutDependency:layoutDependency,layoutId:\"fHXoN8RBf\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.334 11.329\" overflow=\"visible\"><path d=\"M 3.711 0.791 C 3.183 1.171 2.816 1.694 2.575 2.328 L 2.575 0.141 L 0 0.141 L 0 11.329 L 2.607 11.329 L 2.607 6.354 C 2.607 5.022 2.927 4.072 3.551 3.486 C 4.19 2.899 5.086 2.599 6.27 2.583 L 6.334 2.583 L 6.334 0 L 6.254 0 C 5.279 0 4.43 0.269 3.711 0.793 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-n5zc44\",layoutDependency:layoutDependency,layoutId:\"BCx2RAkQ7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.224 15.53\" overflow=\"visible\"><path d=\"M 2.974 12.899 C 2.734 12.614 2.607 12.186 2.607 11.584 L 2.607 0 L 0 0 L 0 11.917 C 0 13.153 0.336 14.073 0.992 14.658 C 1.648 15.245 2.639 15.53 3.967 15.53 L 4.224 15.53 L 4.224 13.343 C 3.631 13.343 3.2 13.185 2.961 12.899 L 2.976 12.899 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-189hgng\",layoutDependency:layoutDependency,layoutId:\"Jfbp44_uo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.059 15.767\" overflow=\"visible\"><path d=\"M 9.436 0 L 9.436 5.689 C 9.196 5.341 8.877 5.039 8.492 4.77 C 7.709 4.246 6.797 3.977 5.726 3.977 C 4.655 3.977 3.615 4.231 2.735 4.737 C 1.871 5.244 1.2 5.942 0.72 6.845 C 0.24 7.748 0 8.762 0 9.872 C 0 10.982 0.24 12.012 0.703 12.899 C 1.183 13.802 1.855 14.5 2.718 15.007 C 3.582 15.513 4.589 15.767 5.725 15.767 C 6.861 15.767 7.069 15.64 7.677 15.403 C 8.269 15.165 8.764 14.833 9.164 14.389 C 9.277 14.278 9.356 14.151 9.452 14.025 L 9.452 15.467 L 12.059 15.467 L 12.059 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pm3dfi\",layoutDependency:layoutDependency,layoutId:\"TEQIwdoKo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.86 7.288\" overflow=\"visible\"><path d=\"M 6.428 5.498 C 6.141 6.052 5.725 6.496 5.197 6.813 C 4.669 7.129 4.061 7.288 3.39 7.288 C 2.719 7.288 2.11 7.13 1.599 6.813 C 1.088 6.495 0.688 6.052 0.416 5.498 C 0.144 4.943 0 4.325 0 3.644 C 0 2.963 0.144 2.345 0.416 1.79 C 0.688 1.236 1.088 0.792 1.599 0.475 C 2.11 0.158 2.702 0 3.39 0 C 4.078 0 4.686 0.158 5.197 0.475 C 5.725 0.793 6.125 1.236 6.428 1.79 C 6.716 2.345 6.86 2.963 6.86 3.644 C 6.86 4.325 6.716 4.943 6.428 5.498 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hfpc4i\",\"data-framer-name\":\"Sui\",layoutDependency:layoutDependency,layoutId:\"N1yS8Fp57\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-44ot97\",layoutDependency:layoutDependency,layoutId:\"b6DkV7KVj\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53.29 28\" overflow=\"visible\"><g><path d=\"M 0 0 L 53.29 0 L 53.29 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 46.547 17.359 C 46.547 18.122 46.38 18.757 46.051 19.246 C 45.725 19.737 45.316 20.106 44.834 20.343 C 44.356 20.581 43.879 20.702 43.418 20.702 C 42.653 20.702 42.013 20.437 41.521 19.915 C 41.03 19.39 40.783 18.675 40.783 17.788 L 40.783 9.769 L 38.621 9.769 L 38.621 17.92 C 38.621 19.009 38.801 19.926 39.157 20.648 C 39.515 21.368 40.016 21.916 40.645 22.277 C 41.271 22.631 41.995 22.81 42.797 22.81 C 43.767 22.81 44.583 22.579 45.222 22.122 C 45.8 21.705 46.245 21.199 46.547 20.618 L 46.547 22.646 L 48.709 22.646 L 48.709 9.769 L 46.547 9.769 L 46.547 17.36 Z M 35.397 14.523 C 34.9 14.168 34.371 13.884 33.824 13.677 C 33.291 13.476 32.801 13.315 32.364 13.198 L 30.652 12.735 C 30.345 12.654 30.003 12.547 29.639 12.417 C 29.275 12.282 28.926 12.112 28.596 11.909 C 28.273 11.704 28.003 11.447 27.795 11.144 C 27.595 10.841 27.494 10.472 27.494 10.047 C 27.494 9.536 27.641 9.074 27.931 8.674 C 28.228 8.27 28.649 7.947 29.178 7.716 C 29.718 7.482 30.358 7.363 31.082 7.363 C 32.069 7.363 32.913 7.589 33.59 8.036 C 34.256 8.475 34.641 9.101 34.735 9.896 L 34.747 9.997 L 36.932 9.997 L 36.927 9.878 C 36.9 9.007 36.627 8.218 36.119 7.534 C 35.619 6.851 34.931 6.308 34.077 5.917 C 33.226 5.522 32.239 5.322 31.147 5.322 C 30.055 5.322 29.071 5.525 28.192 5.925 C 27.316 6.321 26.606 6.887 26.084 7.609 C 25.563 8.328 25.3 9.181 25.3 10.146 C 25.3 11.311 25.699 12.267 26.484 12.988 C 27.257 13.699 28.32 14.254 29.641 14.636 L 31.705 15.23 C 32.286 15.392 32.835 15.584 33.336 15.801 C 33.825 16.013 34.225 16.291 34.524 16.628 C 34.814 16.956 34.962 17.39 34.962 17.919 C 34.962 18.504 34.789 19.023 34.446 19.461 C 34.1 19.899 33.622 20.247 33.028 20.495 C 32.428 20.741 31.739 20.865 30.983 20.865 C 30.333 20.865 29.717 20.767 29.154 20.575 C 28.602 20.379 28.137 20.079 27.776 19.684 C 27.423 19.288 27.218 18.779 27.167 18.17 L 27.158 18.065 L 24.833 18.065 L 24.843 18.189 C 24.909 19.128 25.2 19.965 25.708 20.676 C 26.22 21.387 26.929 21.948 27.818 22.345 C 28.707 22.739 29.773 22.939 30.984 22.939 C 32.284 22.939 33.406 22.717 34.317 22.278 C 35.238 21.837 35.949 21.233 36.427 20.483 C 36.911 19.731 37.158 18.88 37.158 17.95 C 37.158 17.142 36.989 16.45 36.658 15.891 C 36.329 15.336 35.905 14.876 35.397 14.522 Z M 53.224 6.458 C 53.224 6.064 53.074 5.723 52.779 5.444 C 52.491 5.166 52.14 5.026 51.734 5.026 C 51.329 5.026 50.976 5.166 50.681 5.445 C 50.391 5.724 50.244 6.065 50.244 6.459 C 50.244 6.853 50.391 7.193 50.682 7.473 C 50.976 7.751 51.33 7.892 51.735 7.892 C 52.141 7.892 52.459 7.764 52.738 7.512 L 52.751 7.501 C 52.761 7.492 52.771 7.482 52.782 7.472 L 52.823 7.432 C 53.091 7.16 53.226 6.833 53.226 6.458 Z M 52.798 9.768 L 50.636 9.768 L 50.636 22.644 L 52.798 22.644 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 17.414 11.663 L 11.295 4.141 C 11.082 3.878 10.682 3.878 10.469 4.141 L 9.252 5.637 C 8.879 6.099 8.442 6.867 8.147 7.783 C 7.853 8.701 7.7 9.771 7.905 10.837 C 8.223 12.486 9.432 13.935 11.544 15.141 C 14.671 16.93 16.572 19.139 17.155 21.715 C 17.186 21.851 17.212 21.987 17.235 22.121 L 17.261 22.279 L 17.362 22.154 C 18.527 20.714 19.226 18.847 19.226 16.877 C 19.226 14.907 18.547 13.095 17.413 11.663 Z M 19.336 10.17 L 19.362 10.203 C 20.862 12.074 21.761 14.454 21.761 17.044 C 21.761 23.076 16.889 27.966 10.88 27.966 C 4.872 27.966 0 23.076 0 17.044 C 0 14.454 0.898 12.074 2.399 10.202 L 2.425 10.169 L 10.579 0.144 C 10.653 0.053 10.764 0 10.88 0 C 10.997 0 11.108 0.053 11.182 0.144 L 19.337 10.169 Z M 4.374 11.629 C 3.224 13.065 2.535 14.889 2.535 16.876 C 2.535 21.502 6.271 25.252 10.879 25.252 C 12.193 25.252 13.436 24.946 14.542 24.404 L 14.577 24.386 L 14.582 24.347 C 14.657 23.712 14.627 22.986 14.455 22.249 C 14.045 20.481 12.618 18.869 10.168 17.467 C 7.349 15.86 5.664 13.784 5.192 11.294 C 5.166 11.162 5.145 11.031 5.127 10.899 L 5.106 10.733 L 4.377 11.631 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nu2j7f\",layoutDependency:layoutDependency,layoutId:\"Utbar0Ht5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 53.29 28\" overflow=\"visible\"><path d=\"M 0 0 L 53.29 0 L 53.29 28 L 0 28 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-13xzl3s\",layoutDependency:layoutDependency,layoutId:\"k1o4KJRp5\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28.393 17.914\" overflow=\"visible\"><path d=\"M 21.714 12.333 C 21.714 13.096 21.546 13.731 21.217 14.221 C 20.892 14.711 20.483 15.08 20 15.317 C 19.522 15.555 19.046 15.676 18.585 15.676 C 17.819 15.676 17.18 15.411 16.687 14.889 C 16.197 14.365 15.949 13.649 15.949 12.762 L 15.949 4.743 L 13.788 4.743 L 13.788 12.894 C 13.788 13.983 13.968 14.9 14.324 15.622 C 14.682 16.342 15.182 16.89 15.812 17.251 C 16.437 17.605 17.162 17.784 17.964 17.784 C 18.933 17.784 19.749 17.553 20.389 17.097 C 20.966 16.679 21.411 16.174 21.714 15.592 L 21.714 17.62 L 23.875 17.62 L 23.875 4.743 L 21.714 4.743 L 21.714 12.334 Z M 10.564 9.497 C 10.067 9.143 9.537 8.858 8.991 8.652 C 8.458 8.45 7.967 8.289 7.531 8.172 L 5.818 7.709 C 5.511 7.628 5.17 7.521 4.805 7.391 C 4.442 7.257 4.093 7.086 3.762 6.883 C 3.439 6.678 3.17 6.421 2.961 6.118 C 2.762 5.815 2.661 5.446 2.661 5.021 C 2.661 4.51 2.808 4.048 3.098 3.649 C 3.395 3.244 3.815 2.921 4.345 2.69 C 4.884 2.456 5.525 2.337 6.248 2.337 C 7.236 2.337 8.08 2.563 8.757 3.01 C 9.423 3.449 9.808 4.075 9.902 4.87 L 9.913 4.971 L 12.099 4.971 L 12.094 4.853 C 12.067 3.982 11.794 3.192 11.286 2.508 C 10.785 1.826 10.098 1.282 9.244 0.891 C 8.392 0.496 7.406 0.297 6.313 0.297 C 5.221 0.297 4.238 0.499 3.359 0.899 C 2.482 1.296 1.773 1.861 1.25 2.583 C 0.73 3.302 0.466 4.156 0.466 5.12 C 0.466 6.285 0.865 7.241 1.65 7.963 C 2.424 8.674 3.486 9.228 4.808 9.61 L 6.872 10.204 C 7.453 10.366 8.002 10.559 8.502 10.775 C 8.992 10.987 9.392 11.265 9.691 11.603 C 9.981 11.93 10.129 12.364 10.129 12.893 C 10.129 13.478 9.956 13.997 9.613 14.435 C 9.267 14.873 8.789 15.221 8.194 15.47 C 7.595 15.715 6.906 15.839 6.15 15.839 C 5.5 15.839 4.883 15.742 4.321 15.549 C 3.768 15.353 3.304 15.054 2.943 14.658 C 2.59 14.262 2.385 13.753 2.333 13.144 L 2.324 13.039 L 0 13.039 L 0.009 13.163 C 0.076 14.102 0.367 14.94 0.874 15.651 C 1.387 16.361 2.096 16.923 2.984 17.319 C 3.874 17.713 4.939 17.914 6.151 17.914 C 7.45 17.914 8.572 17.691 9.483 17.252 C 10.405 16.811 11.115 16.207 11.593 15.457 C 12.078 14.706 12.324 13.854 12.324 12.924 C 12.324 12.117 12.156 11.424 11.825 10.865 C 11.496 10.31 11.072 9.85 10.564 9.496 Z M 28.391 1.432 C 28.391 1.038 28.241 0.697 27.946 0.418 C 27.657 0.141 27.307 0 26.901 0 C 26.495 0 26.142 0.141 25.848 0.419 C 25.558 0.698 25.411 1.039 25.411 1.433 C 25.411 1.827 25.558 2.167 25.849 2.447 C 26.142 2.725 26.496 2.866 26.902 2.866 C 27.308 2.866 27.625 2.738 27.905 2.487 L 27.917 2.475 C 27.928 2.466 27.938 2.457 27.948 2.446 L 27.99 2.406 C 28.258 2.134 28.393 1.807 28.393 1.432 Z M 27.964 4.742 L 25.803 4.742 L 25.803 17.618 L 27.964 17.618 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-763m1k\",layoutDependency:layoutDependency,layoutId:\"wlJs07IDx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.087 13.041\" overflow=\"visible\"><path d=\"M 7.926 7.59 C 7.926 8.353 7.759 8.988 7.43 9.477 C 7.104 9.968 6.695 10.337 6.213 10.574 C 5.735 10.812 5.258 10.933 4.797 10.933 C 4.032 10.933 3.392 10.668 2.899 10.146 C 2.409 9.621 2.161 8.906 2.161 8.019 L 2.161 0 L 0 0 L 0 8.151 C 0 9.24 0.18 10.157 0.536 10.879 C 0.894 11.599 1.395 12.147 2.024 12.508 C 2.65 12.862 3.374 13.041 4.176 13.041 C 5.146 13.041 5.962 12.81 6.601 12.353 C 7.179 11.936 7.623 11.43 7.926 10.849 L 7.926 12.877 L 10.087 12.877 L 10.087 0 L 7.926 0 L 7.926 7.591 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1478npv\",layoutDependency:layoutDependency,layoutId:\"XmrYNxPjp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.324 17.617\" overflow=\"visible\"><path d=\"M 10.564 9.201 C 10.067 8.846 9.537 8.561 8.991 8.355 C 8.458 8.153 7.967 7.992 7.531 7.876 L 5.818 7.413 C 5.511 7.332 5.17 7.225 4.805 7.094 C 4.442 6.96 4.093 6.79 3.762 6.586 C 3.439 6.381 3.17 6.124 2.961 5.821 C 2.762 5.518 2.661 5.149 2.661 4.724 C 2.661 4.214 2.808 3.752 3.098 3.352 C 3.395 2.947 3.815 2.625 4.345 2.393 C 4.884 2.159 5.525 2.041 6.248 2.041 C 7.236 2.041 8.08 2.267 8.757 2.714 C 9.423 3.153 9.808 3.778 9.902 4.573 L 9.913 4.675 L 12.099 4.675 L 12.094 4.556 C 12.067 3.685 11.794 2.896 11.286 2.211 C 10.785 1.529 10.098 0.985 9.244 0.595 C 8.392 0.199 7.406 0 6.313 0 C 5.221 0 4.238 0.203 3.359 0.603 C 2.482 0.999 1.773 1.565 1.25 2.286 C 0.73 3.005 0.466 3.859 0.466 4.823 C 0.466 5.988 0.865 6.945 1.65 7.666 C 2.424 8.377 3.486 8.931 4.808 9.314 L 6.872 9.907 C 7.453 10.07 8.002 10.262 8.502 10.479 C 8.992 10.691 9.392 10.968 9.691 11.306 C 9.981 11.633 10.129 12.068 10.129 12.597 C 10.129 13.182 9.956 13.7 9.613 14.138 C 9.267 14.576 8.789 14.924 8.194 15.173 C 7.595 15.418 6.906 15.543 6.15 15.543 C 5.5 15.543 4.883 15.445 4.321 15.253 C 3.768 15.057 3.304 14.757 2.943 14.362 C 2.59 13.965 2.385 13.456 2.333 12.848 L 2.324 12.743 L 0 12.743 L 0.009 12.866 C 0.076 13.805 0.367 14.643 0.874 15.354 C 1.387 16.065 2.096 16.626 2.984 17.022 C 3.874 17.416 4.939 17.617 6.151 17.617 C 7.45 17.617 8.572 17.395 9.483 16.956 C 10.405 16.514 11.115 15.91 11.593 15.16 C 12.078 14.409 12.324 13.558 12.324 12.628 C 12.324 11.82 12.156 11.127 11.825 10.569 C 11.496 10.013 11.072 9.553 10.564 9.2 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ux07k0\",layoutDependency:layoutDependency,layoutId:\"Rwa3t4QJc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.982 2.866\" overflow=\"visible\"><path d=\"M 2.98 1.432 C 2.98 1.038 2.83 0.697 2.535 0.418 C 2.246 0.141 1.896 0 1.49 0 C 1.084 0 0.731 0.141 0.437 0.419 C 0.147 0.698 0 1.039 0 1.433 C 0 1.827 0.147 2.167 0.438 2.447 C 0.731 2.725 1.085 2.866 1.491 2.866 C 1.897 2.866 2.214 2.738 2.494 2.487 L 2.506 2.475 C 2.517 2.466 2.527 2.457 2.537 2.446 L 2.579 2.406 C 2.847 2.134 2.982 1.807 2.982 1.432 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bfc9ts\",layoutDependency:layoutDependency,layoutId:\"HmVsVhZEi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.161 12.877\" overflow=\"visible\"><path d=\"M 2.161 0 L 0 0 L 0 12.877 L 2.161 12.877 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-13keozv\",layoutDependency:layoutDependency,layoutId:\"GPlow57mk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.761 27.966\" overflow=\"visible\"><path d=\"M 17.414 11.663 L 11.295 4.141 C 11.082 3.878 10.682 3.878 10.469 4.141 L 9.252 5.636 C 8.879 6.098 8.442 6.867 8.147 7.783 C 7.853 8.7 7.7 9.771 7.905 10.836 C 8.223 12.485 9.432 13.935 11.544 15.14 C 14.671 16.93 16.572 19.139 17.155 21.715 C 17.186 21.851 17.212 21.987 17.235 22.121 L 17.261 22.278 L 17.362 22.154 C 18.527 20.714 19.226 18.847 19.226 16.877 C 19.226 14.906 18.547 13.095 17.413 11.663 Z M 19.336 10.169 L 19.362 10.203 C 20.862 12.074 21.761 14.453 21.761 17.044 C 21.761 23.076 16.889 27.966 10.88 27.966 C 4.872 27.966 0 23.076 0 17.044 C 0 14.453 0.898 12.074 2.399 10.202 L 2.425 10.168 L 10.579 0.143 C 10.653 0.053 10.764 0 10.88 0 C 10.997 0 11.108 0.053 11.182 0.143 L 19.337 10.168 Z M 4.374 11.628 C 3.224 13.065 2.535 14.889 2.535 16.875 C 2.535 21.502 6.271 25.251 10.879 25.251 C 12.193 25.251 13.436 24.946 14.542 24.403 L 14.577 24.386 L 14.582 24.347 C 14.657 23.712 14.627 22.986 14.455 22.249 C 14.045 20.481 12.618 18.869 10.168 17.467 C 7.349 15.859 5.664 13.784 5.192 11.294 C 5.166 11.161 5.145 11.03 5.127 10.899 L 5.106 10.733 L 4.377 11.63 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-15efeeh\",layoutDependency:layoutDependency,layoutId:\"DvrvBkNha\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.415 18.335\" overflow=\"visible\"><path d=\"M 9.602 7.719 C 10.736 9.151 11.415 10.963 11.415 12.933 C 11.415 14.903 10.716 16.77 9.551 18.21 L 9.45 18.335 L 9.424 18.177 C 9.401 18.043 9.375 17.907 9.344 17.771 C 8.76 15.195 6.86 12.986 3.733 11.197 C 1.621 9.991 0.412 8.542 0.094 6.893 C -0.111 5.827 0.041 4.757 0.336 3.839 C 0.63 2.923 1.068 2.155 1.441 1.693 L 2.658 0.197 C 2.871 -0.066 3.271 -0.066 3.484 0.197 L 9.603 7.719 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1w0fcz0\",layoutDependency:layoutDependency,layoutId:\"ZvKSIyqFG\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.761 27.966\" overflow=\"visible\"><path d=\"M 19.337 10.168 L 11.182 0.143 C 11.108 0.053 10.997 0 10.88 0 C 10.764 0 10.653 0.053 10.579 0.143 L 2.425 10.168 L 2.399 10.202 C 0.898 12.074 0 14.453 0 17.044 C 0 23.076 4.872 27.966 10.88 27.966 C 16.889 27.966 21.761 23.076 21.761 17.044 C 21.761 14.453 20.862 12.074 19.362 10.203 L 19.336 10.169 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h33oew\",layoutDependency:layoutDependency,layoutId:\"fODihDUvk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.085 14.519\" overflow=\"visible\"><path d=\"M 1.842 0.898 L 2.571 0 L 2.592 0.166 C 2.61 0.297 2.631 0.429 2.656 0.561 C 3.129 3.051 4.814 5.126 7.633 6.734 C 10.083 8.136 11.51 9.748 11.92 11.516 C 12.092 12.253 12.122 12.979 12.047 13.614 L 12.042 13.653 L 12.007 13.67 C 10.901 14.213 9.658 14.519 8.344 14.519 C 3.736 14.519 0 10.769 0 6.143 C 0 4.156 0.689 2.332 1.839 0.895 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1egdyal\",\"data-framer-name\":\"DYDX\",layoutDependency:layoutDependency,layoutId:\"hNJtwgzco\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-w7hxw5\",layoutDependency:layoutDependency,layoutId:\"Cl8DNu5hg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 57.789 18\" overflow=\"visible\"><g><path d=\"M 53.592 0 L 41.13 17.839 L 44.956 17.839 L 57.483 0 Z M 45.355 0 L 49.021 5.257 L 47.108 8.124 L 41.449 0 Z M 53.963 17.841 L 49.898 12.027 L 51.811 9.239 L 57.789 17.841 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 36.666 0 L 40.014 0 L 40.014 17.839 L 36.666 17.839 L 36.666 17.173 C 35.667 17.717 34.547 18.002 33.409 18 C 29.661 18 26.623 14.978 26.623 11.25 C 26.623 7.522 29.661 4.5 33.409 4.5 C 34.547 4.498 35.667 4.783 36.666 5.327 Z M 33.373 15.037 C 35.496 15.037 37.217 13.326 37.217 11.214 C 37.217 9.103 35.496 7.391 33.373 7.391 C 31.251 7.391 29.53 9.103 29.53 11.214 C 29.53 13.326 31.251 15.037 33.373 15.037 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 26.956 0 L 14.507 17.839 L 18.41 17.839 L 30.847 0 Z M 18.413 0 L 22.319 5.416 L 20.167 8.442 L 14.348 0 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 10.043 0 L 13.391 0 L 13.391 17.839 L 10.043 17.839 L 10.043 17.173 C 9.044 17.717 7.924 18.002 6.786 18 C 3.038 18 0 14.978 0 11.25 C 0 7.522 3.038 4.5 6.786 4.5 C 7.924 4.498 9.044 4.783 10.043 5.327 Z M 6.75 15.037 C 8.873 15.037 10.594 13.326 10.594 11.214 C 10.594 9.103 8.873 7.391 6.75 7.391 C 4.628 7.391 2.907 9.103 2.907 11.214 C 2.907 13.326 4.628 15.037 6.75 15.037 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-e6f8ar\",layoutDependency:layoutDependency,layoutId:\"ayRLGgmVZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.659 17.841\" overflow=\"visible\"><path d=\"M 12.462 0 L 0 17.839 L 3.826 17.839 L 16.353 0 Z M 4.225 0 L 7.891 5.257 L 5.978 8.124 L 0.319 0 Z M 12.833 17.841 L 8.768 12.027 L 10.681 9.239 L 16.659 17.841 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1alkdxl\",layoutDependency:layoutDependency,layoutId:\"Kulxtqvwp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.353 17.839\" overflow=\"visible\"><path d=\"M 12.462 0 L 0 17.839 L 3.826 17.839 L 16.353 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1a9z5bl\",layoutDependency:layoutDependency,layoutId:\"Z7Rbmj1Sr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.572 8.124\" overflow=\"visible\"><path d=\"M 3.906 0 L 7.572 5.257 L 5.659 8.124 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k1cybv\",layoutDependency:layoutDependency,layoutId:\"NcAO7WdgX\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.891 8.602\" overflow=\"visible\"><path d=\"M 4.065 8.602 L 0 2.788 L 1.913 0 L 7.891 8.602 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-iai6yc\",layoutDependency:layoutDependency,layoutId:\"zMuQV8CAN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.391 18\" overflow=\"visible\"><path d=\"M 10.043 0 L 13.391 0 L 13.391 17.839 L 10.043 17.839 L 10.043 17.173 C 9.044 17.717 7.924 18.002 6.786 18 C 3.038 18 0 14.978 0 11.25 C 0 7.522 3.038 4.5 6.786 4.5 C 7.924 4.498 9.044 4.783 10.043 5.327 Z M 6.75 15.037 C 8.873 15.037 10.594 13.326 10.594 11.214 C 10.594 9.103 8.873 7.391 6.75 7.391 C 4.628 7.391 2.907 9.103 2.907 11.214 C 2.907 13.326 4.628 15.037 6.75 15.037 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dwksbx\",layoutDependency:layoutDependency,layoutId:\"qsNA_IRFp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.391 18\" overflow=\"visible\"><path d=\"M 10.043 0 L 13.391 0 L 13.391 17.839 L 10.043 17.839 L 10.043 17.173 C 9.044 17.717 7.924 18.002 6.786 18 C 3.038 18 0 14.978 0 11.25 C 0 7.522 3.038 4.5 6.786 4.5 C 7.924 4.498 9.044 4.783 10.043 5.327 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1uc1t7h\",layoutDependency:layoutDependency,layoutId:\"ksxK2Z8OB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.687 7.646\" overflow=\"visible\"><path d=\"M 3.843 7.646 C 5.966 7.646 7.687 5.934 7.687 3.823 C 7.687 1.712 5.966 0 3.843 0 C 1.721 0 0 1.712 0 3.823 C 0 5.934 1.721 7.646 3.843 7.646 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-hv5235\",layoutDependency:layoutDependency,layoutId:\"y1NLdCSvI\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.499 17.839\" overflow=\"visible\"><path d=\"M 12.608 0 L 0.159 17.839 L 4.062 17.839 L 16.499 0 Z M 4.065 0 L 7.971 5.416 L 5.819 8.442 L 0 0 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18ok7xt\",layoutDependency:layoutDependency,layoutId:\"InYOmqzcZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16.34 17.839\" overflow=\"visible\"><path d=\"M 12.449 0 L 0 17.839 L 3.903 17.839 L 16.34 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-105fqtq\",layoutDependency:layoutDependency,layoutId:\"cfR68bDaE\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.971 8.442\" overflow=\"visible\"><path d=\"M 4.065 0 L 7.971 5.416 L 5.819 8.442 L 0 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-rzg8zn\",layoutDependency:layoutDependency,layoutId:\"H8fUI44NL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.391 18\" overflow=\"visible\"><path d=\"M 10.043 0 L 13.391 0 L 13.391 17.839 L 10.043 17.839 L 10.043 17.173 C 9.044 17.717 7.924 18.002 6.786 18 C 3.038 18 0 14.978 0 11.25 C 0 7.522 3.038 4.5 6.786 4.5 C 7.924 4.498 9.044 4.783 10.043 5.327 Z M 6.75 15.037 C 8.873 15.037 10.594 13.326 10.594 11.214 C 10.594 9.103 8.873 7.391 6.75 7.391 C 4.628 7.391 2.907 9.103 2.907 11.214 C 2.907 13.326 4.628 15.037 6.75 15.037 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7be02g\",layoutDependency:layoutDependency,layoutId:\"nAP8AQi2f\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.391 18\" overflow=\"visible\"><path d=\"M 10.043 0 L 13.391 0 L 13.391 17.839 L 10.043 17.839 L 10.043 17.173 C 9.044 17.717 7.924 18.002 6.786 18 C 3.038 18 0 14.978 0 11.25 C 0 7.522 3.038 4.5 6.786 4.5 C 7.924 4.498 9.044 4.783 10.043 5.327 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-21mewv\",layoutDependency:layoutDependency,layoutId:\"sGMJ5YF7V\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.687 7.646\" overflow=\"visible\"><path d=\"M 3.843 7.646 C 5.966 7.646 7.687 5.934 7.687 3.823 C 7.687 1.712 5.966 0 3.843 0 C 1.721 0 0 1.712 0 3.823 C 0 5.934 1.721 7.646 3.844 7.646 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s8hnue\",\"data-framer-name\":\"Nansen\",layoutDependency:layoutDependency,layoutId:\"uC3mzSqmU\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-17mfun3\",layoutDependency:layoutDependency,layoutId:\"xh1SEqjWo\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 100 23\" overflow=\"visible\"><g><path d=\"M 0.001 0 L 99.999 0 L 99.999 23 L 0.001 23 Z\" fill=\"transparent\"></path><path d=\"M 82.908 7.704 C 79.878 7.704 77.38 9.925 77.38 13.352 C 77.38 16.777 79.832 19.068 82.908 19.068 C 84.92 19.068 86.816 18.095 87.765 16.291 L 85.961 15.389 C 85.359 16.384 84.226 16.963 83 16.963 C 81.311 16.963 79.947 16.061 79.647 14.301 L 88.181 14.301 C 88.204 13.955 88.227 13.63 88.227 13.329 C 88.227 9.927 85.937 7.705 82.908 7.705 Z M 79.67 12.472 C 79.994 10.666 81.311 9.81 82.931 9.81 C 84.551 9.81 85.752 10.783 85.984 12.472 Z M 51.085 9.603 C 50.391 8.376 48.91 7.704 47.338 7.704 C 44.285 7.704 41.995 10.158 41.995 13.374 C 41.995 16.59 44.423 19.067 47.245 19.067 C 48.91 19.067 50.39 18.211 51.085 16.961 L 51.085 18.79 L 53.352 18.79 L 53.352 7.982 L 51.085 7.982 L 51.085 9.602 Z M 47.639 16.938 C 45.742 16.938 44.286 15.318 44.286 13.373 C 44.286 11.43 45.744 9.833 47.593 9.833 C 49.328 9.833 51.063 11.291 51.063 13.374 C 51.063 15.457 49.443 16.939 47.64 16.939 L 47.639 16.939 Z M 95.675 7.704 C 94.518 7.704 92.783 8.306 92.159 9.648 L 92.159 7.982 L 89.892 7.982 L 89.892 18.79 L 92.159 18.79 L 92.159 12.981 C 92.159 10.736 93.87 9.926 95.282 9.926 C 96.693 9.926 97.734 10.99 97.734 12.749 L 97.734 18.79 L 100 18.79 L 100 12.611 C 100 9.533 98.404 7.704 95.675 7.704 Z M 61.446 7.704 C 60.29 7.704 58.555 8.306 57.93 9.648 L 57.93 7.982 L 55.664 7.982 L 55.664 18.79 L 57.931 18.79 L 57.931 12.981 C 57.931 10.736 59.642 9.926 61.053 9.926 C 62.465 9.926 63.505 10.99 63.505 12.749 L 63.505 18.79 L 65.772 18.79 L 65.772 12.611 C 65.772 9.533 64.176 7.704 61.448 7.704 Z M 37.787 15.064 L 31.172 4.048 L 28.514 4.048 L 28.514 18.79 L 30.827 18.79 L 30.827 7.751 L 37.51 18.79 L 40.1 18.79 L 40.1 4.048 L 37.787 4.048 Z M 73.495 12.611 L 71.136 12.171 C 70.235 12.008 69.817 11.592 69.817 10.944 C 69.817 10.089 70.557 9.624 71.806 9.624 C 72.962 9.624 73.795 10.18 73.842 11.014 L 76.016 11.014 C 76.016 8.676 73.842 7.704 71.83 7.704 C 69.332 7.704 67.551 9.023 67.551 11.014 C 67.551 12.634 68.499 13.698 70.557 14.091 L 72.731 14.508 C 73.772 14.716 74.119 15.086 74.119 15.688 C 74.119 16.637 73.378 17.147 71.899 17.147 C 70.419 17.147 69.493 16.475 69.401 15.48 L 67.297 15.48 C 67.39 17.794 69.263 19.067 71.876 19.067 C 74.488 19.067 76.385 17.655 76.385 15.502 C 76.385 13.929 75.483 12.979 73.494 12.61 L 73.495 12.61 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 22.06 12.171 C 20.94 11.44 19.756 10.812 18.522 10.296 C 17.997 10.081 17.631 9.783 17.423 9.405 C 17.215 9.026 17.164 8.553 17.272 7.982 C 17.612 6.315 17.72 4.718 17.596 3.191 C 17.472 1.663 16.902 0.714 15.885 0.345 L 15.515 0.206 C 14.436 -0.195 13.372 -0.01 12.323 0.761 C 11.274 1.533 10.337 2.566 9.513 3.862 C 8.818 4.953 8.193 6.086 7.641 7.255 C 7.229 7.181 6.816 7.114 6.402 7.055 C 4.566 6.823 3.118 6.805 2.054 6.997 C 0.99 7.191 0.38 7.579 0.226 8.167 L 0.041 8.838 C -0.113 9.378 0.164 9.976 0.873 10.631 C 1.582 11.287 2.331 11.846 3.117 12.309 C 3.903 12.787 4.45 13.355 4.759 14.01 C 5.068 14.666 5.183 15.51 5.105 16.544 C 4.998 17.934 5.098 19.225 5.407 20.42 C 5.715 21.616 6.362 22.376 7.349 22.7 L 7.904 22.885 C 8.783 23.178 9.704 22.904 10.668 22.063 C 11.631 21.222 12.576 19.976 13.502 18.325 C 13.902 17.617 14.27 16.892 14.604 16.15 C 15.393 16.273 16.186 16.362 16.982 16.416 C 18.764 16.531 20.205 16.462 21.308 16.207 C 22.41 15.953 23.039 15.563 23.193 15.039 L 23.401 14.275 C 23.586 13.581 23.138 12.878 22.06 12.169 Z M 11.93 4.013 C 12.886 2.494 13.896 1.587 14.96 1.294 C 15.73 1.51 16.178 2.255 16.3 3.528 C 16.424 4.8 16.378 6.084 16.162 7.382 C 16.054 7.999 15.804 8.42 15.41 8.642 C 15.017 8.866 14.512 8.894 13.895 8.724 C 12.589 8.348 11.272 8.013 9.945 7.72 C 10.52 6.44 11.183 5.202 11.93 4.015 L 11.93 4.014 Z M 11.722 13.26 C 10.597 12.966 9.829 12.431 9.421 11.65 C 9.013 10.872 9.023 9.942 9.456 8.862 C 9.463 8.846 9.47 8.83 9.475 8.814 L 9.536 8.827 C 10.933 9.133 12.318 9.492 13.687 9.903 C 14.273 10.073 14.673 10.363 14.89 10.771 C 15.105 11.18 15.113 11.671 14.913 12.241 C 14.726 12.795 14.525 13.332 14.314 13.855 C 13.445 13.678 12.58 13.479 11.721 13.259 L 11.722 13.259 Z M 5.385 10.17 C 4.552 10.533 3.666 10.374 2.725 9.695 C 2.273 9.395 1.867 9.028 1.523 8.608 C 2.479 8.177 3.99 8.053 6.056 8.238 C 6.386 8.27 6.745 8.316 7.128 8.374 C 6.676 9.262 6.096 9.861 5.386 10.17 L 5.385 10.17 Z M 12.532 17.518 C 11.729 18.891 10.912 19.955 10.08 20.712 C 9.248 21.467 8.508 21.808 7.86 21.73 C 7.413 21.097 7.155 20.341 7.085 19.462 C 7.018 18.534 7.06 17.602 7.212 16.685 C 7.32 15.976 7.721 15.52 8.415 15.32 C 9.108 15.119 10.041 15.165 11.213 15.458 C 11.953 15.646 12.674 15.808 13.377 15.942 C 13.114 16.477 12.832 17.003 12.532 17.518 Z M 17.492 14.405 C 16.817 14.31 16.144 14.201 15.473 14.08 C 15.648 13.62 15.818 13.155 15.978 12.681 C 16.193 12.079 16.51 11.682 16.926 11.489 C 17.342 11.297 17.828 11.324 18.383 11.571 C 20.51 12.512 21.729 13.391 22.037 14.208 C 20.927 14.61 19.412 14.676 17.492 14.405 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xeiosj\",layoutDependency:layoutDependency,layoutId:\"p6TTZ4aZL\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 99.998 23\" overflow=\"visible\"><path d=\"M 0 0 L 99.998 0 L 99.998 23 L 0 23 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1h8mau4\",layoutDependency:layoutDependency,layoutId:\"FEfZOzFYg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 71.486 15.02\" overflow=\"visible\"><path d=\"M 54.394 3.656 C 51.364 3.656 48.867 5.878 48.867 9.304 C 48.867 12.73 51.318 15.02 54.394 15.02 C 56.406 15.02 58.303 14.048 59.251 12.244 L 57.447 11.342 C 56.846 12.336 55.712 12.916 54.487 12.916 C 52.798 12.916 51.434 12.013 51.133 10.254 L 59.668 10.254 C 59.691 9.907 59.713 9.582 59.713 9.281 C 59.713 5.879 57.423 3.658 54.394 3.658 Z M 51.156 8.424 C 51.48 6.619 52.798 5.763 54.418 5.763 C 56.037 5.763 57.239 6.735 57.471 8.424 Z M 22.571 5.555 C 21.877 4.328 20.397 3.656 18.824 3.656 C 15.771 3.656 13.482 6.11 13.482 9.326 C 13.482 12.543 15.91 15.019 18.732 15.019 C 20.397 15.019 21.877 14.163 22.571 12.914 L 22.571 14.742 L 24.839 14.742 L 24.839 3.934 L 22.571 3.934 L 22.571 5.554 Z M 19.125 12.891 C 17.229 12.891 15.772 11.271 15.772 9.326 C 15.772 7.382 17.23 5.785 19.079 5.785 C 20.814 5.785 22.549 7.243 22.549 9.326 C 22.549 11.409 20.929 12.891 19.127 12.891 L 19.125 12.891 Z M 67.161 3.656 C 66.004 3.656 64.27 4.259 63.645 5.6 L 63.645 3.934 L 61.379 3.934 L 61.379 14.742 L 63.645 14.742 L 63.645 8.933 C 63.645 6.689 65.356 5.879 66.768 5.879 C 68.18 5.879 69.22 6.942 69.22 8.702 L 69.22 14.742 L 71.486 14.742 L 71.486 8.563 C 71.486 5.485 69.891 3.656 67.162 3.656 Z M 32.933 3.656 C 31.776 3.656 30.041 4.259 29.417 5.6 L 29.417 3.934 L 27.15 3.934 L 27.15 14.742 L 29.418 14.742 L 29.418 8.933 C 29.418 6.689 31.129 5.879 32.54 5.879 C 33.951 5.879 34.991 6.942 34.991 8.702 L 34.991 14.742 L 37.259 14.742 L 37.259 8.563 C 37.259 5.485 35.662 3.656 32.934 3.656 Z M 9.274 11.016 L 2.658 0 L 0 0 L 0 14.743 L 2.313 14.743 L 2.313 3.703 L 8.996 14.743 L 11.587 14.743 L 11.587 0 L 9.274 0 Z M 44.981 8.563 L 42.623 8.123 C 41.721 7.961 41.304 7.545 41.304 6.896 C 41.304 6.041 42.044 5.577 43.292 5.577 C 44.449 5.577 45.281 6.132 45.328 6.966 L 47.502 6.966 C 47.502 4.628 45.328 3.656 43.316 3.656 C 40.818 3.656 39.037 4.976 39.037 6.966 C 39.037 8.587 39.986 9.651 42.043 10.044 L 44.218 10.461 C 45.258 10.668 45.605 11.038 45.605 11.641 C 45.605 12.589 44.865 13.099 43.386 13.099 C 41.906 13.099 40.979 12.428 40.888 11.432 L 38.783 11.432 C 38.876 13.747 40.749 15.019 43.362 15.019 C 45.975 15.019 47.871 13.608 47.871 11.455 C 47.871 9.881 46.97 8.932 44.98 8.562 L 44.981 8.562 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xmrzde\",layoutDependency:layoutDependency,layoutId:\"noqpngai7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.846 11.364\" overflow=\"visible\"><path d=\"M 5.527 0 C 2.497 0 0 2.222 0 5.648 C 0 9.073 2.451 11.364 5.527 11.364 C 7.539 11.364 9.436 10.392 10.384 8.587 L 8.58 7.685 C 7.979 8.68 6.845 9.26 5.62 9.26 C 3.931 9.26 2.567 8.357 2.266 6.597 L 10.801 6.597 C 10.824 6.251 10.846 5.926 10.846 5.625 C 10.846 2.223 8.557 0.001 5.527 0.001 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tv4usn\",layoutDependency:layoutDependency,layoutId:\"LpAEH1U2a\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.315 2.661\" overflow=\"visible\"><path d=\"M 0 2.661 C 0.324 0.856 1.641 0 3.261 0 C 4.881 0 6.082 0.972 6.315 2.661 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-12g9rhc\",layoutDependency:layoutDependency,layoutId:\"ifioX_G5K\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.357 11.363\" overflow=\"visible\"><path d=\"M 9.09 1.899 C 8.396 0.672 6.915 0 5.343 0 C 2.289 0 0 2.454 0 5.67 C 0 8.886 2.428 11.363 5.25 11.363 C 6.915 11.363 8.395 10.507 9.09 9.257 L 9.09 11.086 L 11.357 11.086 L 11.357 0.278 L 9.09 0.278 L 9.09 1.898 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-p5j9w0\",layoutDependency:layoutDependency,layoutId:\"YLiZuSDeK\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.777 7.106\" overflow=\"visible\"><path d=\"M 3.353 7.105 C 1.457 7.105 0 5.485 0 3.541 C 0 1.597 1.458 0 3.307 0 C 5.042 0 6.777 1.458 6.777 3.541 C 6.777 5.624 5.157 7.106 3.355 7.106 L 3.353 7.106 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9ky1bz\",layoutDependency:layoutDependency,layoutId:\"FMUVK2ytv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.108 11.086\" overflow=\"visible\"><path d=\"M 5.782 0 C 4.626 0 2.891 0.602 2.266 1.944 L 2.266 0.278 L 0 0.278 L 0 11.086 L 2.266 11.086 L 2.266 5.277 C 2.266 3.032 3.978 2.222 5.389 2.222 C 6.801 2.222 7.841 3.286 7.841 5.046 L 7.841 11.086 L 10.108 11.086 L 10.108 4.907 C 10.108 1.829 8.512 0 5.783 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-v21djt\",layoutDependency:layoutDependency,layoutId:\"K6J7foTsi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 10.108 11.086\" overflow=\"visible\"><path d=\"M 5.782 0 C 4.626 0 2.891 0.602 2.266 1.944 L 2.266 0.278 L 0 0.278 L 0 11.086 L 2.267 11.086 L 2.267 5.277 C 2.267 3.032 3.978 2.222 5.389 2.222 C 6.801 2.222 7.841 3.286 7.841 5.046 L 7.841 11.086 L 10.108 11.086 L 10.108 4.907 C 10.108 1.829 8.512 0 5.784 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-99ij7r\",layoutDependency:layoutDependency,layoutId:\"ONVEc7o0W\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.587 14.743\" overflow=\"visible\"><path d=\"M 9.274 11.016 L 2.658 0 L 0 0 L 0 14.743 L 2.313 14.743 L 2.313 3.703 L 8.996 14.743 L 11.587 14.743 L 11.587 0 L 9.274 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-stdd0l\",layoutDependency:layoutDependency,layoutId:\"ASo7Twmnd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.088 11.363\" overflow=\"visible\"><path d=\"M 6.198 4.907 L 3.84 4.467 C 2.938 4.305 2.521 3.888 2.521 3.24 C 2.521 2.385 3.261 1.92 4.509 1.92 C 5.666 1.92 6.498 2.476 6.545 3.31 L 8.719 3.31 C 8.719 0.972 6.545 0 4.533 0 C 2.035 0 0.254 1.32 0.254 3.31 C 0.254 4.931 1.203 5.994 3.26 6.387 L 5.435 6.804 C 6.475 7.012 6.822 7.382 6.822 7.984 C 6.822 8.933 6.082 9.443 4.603 9.443 C 3.123 9.443 2.196 8.771 2.105 7.776 L 0 7.776 C 0.093 10.09 1.966 11.363 4.579 11.363 C 7.192 11.363 9.088 9.952 9.088 7.798 C 9.088 6.225 8.187 5.276 6.197 4.906 L 6.198 4.906 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-psffma\",layoutDependency:layoutDependency,layoutId:\"K2I1oEOst\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.441 22.998\" overflow=\"visible\"><path d=\"M 22.06 12.171 C 20.94 11.44 19.756 10.812 18.522 10.296 C 17.997 10.081 17.631 9.783 17.423 9.405 C 17.215 9.026 17.164 8.553 17.272 7.982 C 17.612 6.315 17.72 4.718 17.596 3.191 C 17.472 1.663 16.902 0.714 15.885 0.345 L 15.515 0.206 C 14.436 -0.195 13.372 -0.01 12.323 0.761 C 11.274 1.533 10.337 2.566 9.513 3.862 C 8.818 4.953 8.193 6.086 7.641 7.255 C 7.229 7.181 6.816 7.114 6.402 7.055 C 4.566 6.823 3.118 6.805 2.054 6.997 C 0.99 7.191 0.38 7.579 0.226 8.167 L 0.041 8.838 C -0.113 9.378 0.164 9.976 0.873 10.631 C 1.582 11.287 2.331 11.846 3.117 12.309 C 3.903 12.787 4.45 13.355 4.759 14.01 C 5.068 14.666 5.183 15.51 5.105 16.544 C 4.998 17.934 5.098 19.225 5.407 20.42 C 5.715 21.616 6.362 22.376 7.349 22.7 L 7.904 22.885 C 8.783 23.178 9.704 22.904 10.668 22.063 C 11.631 21.222 12.576 19.976 13.502 18.325 C 13.902 17.617 14.27 16.892 14.604 16.15 C 15.393 16.273 16.186 16.362 16.982 16.416 C 18.764 16.531 20.205 16.462 21.308 16.207 C 22.41 15.953 23.039 15.563 23.193 15.039 L 23.401 14.275 C 23.586 13.581 23.138 12.878 22.06 12.169 Z M 11.93 4.013 C 12.886 2.494 13.896 1.587 14.96 1.294 C 15.73 1.51 16.178 2.255 16.3 3.528 C 16.424 4.8 16.378 6.084 16.162 7.382 C 16.054 7.999 15.804 8.42 15.41 8.642 C 15.017 8.866 14.512 8.894 13.895 8.724 C 12.589 8.348 11.272 8.013 9.945 7.72 C 10.52 6.44 11.183 5.202 11.93 4.015 L 11.93 4.014 Z M 11.722 13.26 C 10.597 12.966 9.829 12.431 9.421 11.65 C 9.013 10.872 9.023 9.942 9.456 8.862 C 9.463 8.846 9.47 8.83 9.475 8.814 L 9.536 8.827 C 10.933 9.133 12.318 9.492 13.687 9.903 C 14.273 10.073 14.673 10.363 14.89 10.771 C 15.105 11.18 15.113 11.671 14.913 12.241 C 14.726 12.795 14.525 13.332 14.314 13.855 C 13.445 13.678 12.58 13.479 11.721 13.259 L 11.722 13.259 Z M 5.385 10.17 C 4.552 10.533 3.666 10.374 2.725 9.695 C 2.273 9.395 1.867 9.028 1.523 8.608 C 2.479 8.177 3.99 8.053 6.056 8.238 C 6.386 8.27 6.745 8.316 7.128 8.374 C 6.676 9.262 6.096 9.861 5.386 10.17 L 5.385 10.17 Z M 12.532 17.518 C 11.729 18.891 10.912 19.955 10.08 20.712 C 9.248 21.467 8.508 21.808 7.86 21.73 C 7.413 21.097 7.155 20.341 7.085 19.462 C 7.018 18.534 7.06 17.602 7.212 16.685 C 7.32 15.976 7.721 15.52 8.415 15.32 C 9.108 15.119 10.041 15.165 11.213 15.458 C 11.953 15.646 12.674 15.808 13.377 15.942 C 13.114 16.477 12.832 17.003 12.532 17.518 Z M 17.492 14.405 C 16.817 14.31 16.144 14.201 15.473 14.08 C 15.648 13.62 15.818 13.155 15.978 12.681 C 16.193 12.079 16.51 11.682 16.926 11.489 C 17.342 11.297 17.828 11.324 18.383 11.571 C 20.51 12.512 21.729 13.391 22.037 14.208 C 20.927 14.61 19.412 14.676 17.492 14.405 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-fbfmgn\",layoutDependency:layoutDependency,layoutId:\"nKiRW4IBV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.441 22.998\" overflow=\"visible\"><path d=\"M 22.06 12.171 C 20.94 11.44 19.756 10.812 18.522 10.296 C 17.997 10.081 17.631 9.783 17.423 9.405 C 17.215 9.026 17.164 8.553 17.272 7.982 C 17.612 6.315 17.72 4.718 17.596 3.191 C 17.472 1.663 16.902 0.714 15.885 0.345 L 15.515 0.206 C 14.436 -0.195 13.372 -0.01 12.323 0.761 C 11.274 1.533 10.337 2.566 9.513 3.862 C 8.818 4.953 8.193 6.086 7.641 7.255 C 7.229 7.181 6.816 7.114 6.402 7.055 C 4.566 6.823 3.118 6.805 2.054 6.997 C 0.99 7.191 0.38 7.579 0.226 8.167 L 0.041 8.838 C -0.113 9.378 0.164 9.976 0.873 10.631 C 1.582 11.287 2.331 11.846 3.117 12.309 C 3.903 12.787 4.45 13.355 4.759 14.01 C 5.068 14.666 5.183 15.51 5.105 16.544 C 4.998 17.934 5.098 19.225 5.407 20.42 C 5.715 21.616 6.362 22.376 7.349 22.7 L 7.904 22.885 C 8.783 23.178 9.704 22.904 10.668 22.063 C 11.631 21.222 12.576 19.976 13.502 18.325 C 13.902 17.617 14.27 16.892 14.604 16.15 C 15.393 16.273 16.186 16.362 16.982 16.416 C 18.764 16.531 20.205 16.462 21.308 16.207 C 22.41 15.953 23.039 15.563 23.193 15.039 L 23.401 14.275 C 23.586 13.581 23.138 12.878 22.06 12.169 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3hq6xu\",layoutDependency:layoutDependency,layoutId:\"QtnpYUfWA\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.423 7.54\" overflow=\"visible\"><path d=\"M 1.985 2.719 C 2.941 1.2 3.951 0.293 5.015 0 C 5.785 0.216 6.233 0.961 6.355 2.234 C 6.479 3.506 6.433 4.79 6.217 6.088 C 6.109 6.705 5.859 7.126 5.465 7.348 C 5.072 7.572 4.567 7.6 3.95 7.43 C 2.644 7.054 1.327 6.719 0 6.426 C 0.575 5.146 1.238 3.908 1.985 2.72 L 1.985 2.72 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13pzgoy\",layoutDependency:layoutDependency,layoutId:\"JVeF6NF1l\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.934 5.041\" overflow=\"visible\"><path d=\"M 2.599 4.445 C 1.474 4.152 0.706 3.617 0.298 2.836 C -0.11 2.058 -0.1 1.128 0.334 0.047 C 0.341 0.032 0.347 0.016 0.352 0 L 0.413 0.013 C 1.81 0.318 3.195 0.677 4.564 1.089 C 5.15 1.259 5.551 1.549 5.767 1.956 C 5.982 2.365 5.99 2.856 5.79 3.427 C 5.603 3.98 5.402 4.517 5.191 5.041 C 4.322 4.864 3.457 4.665 2.598 4.445 L 2.599 4.445 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6tceuz\",layoutDependency:layoutDependency,layoutId:\"zGyCgr3fv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.605 2.204\" overflow=\"visible\"><path d=\"M 3.863 2.015 C 3.029 2.378 2.143 2.219 1.203 1.541 C 0.75 1.24 0.345 0.873 0 0.453 C 0.956 0.022 2.468 -0.102 4.533 0.083 C 4.863 0.115 5.222 0.161 5.605 0.22 C 5.153 1.107 4.573 1.707 3.863 2.015 L 3.862 2.015 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-4qe80u\",layoutDependency:layoutDependency,layoutId:\"q07mVC_NR\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.323 6.544\" overflow=\"visible\"><path d=\"M 5.478 2.321 C 4.675 3.694 3.858 4.758 3.026 5.515 C 2.194 6.27 1.453 6.61 0.806 6.533 C 0.359 5.9 0.101 5.144 0.031 4.264 C -0.036 3.337 0.006 2.405 0.158 1.488 C 0.266 0.778 0.667 0.323 1.361 0.122 C 2.054 -0.078 2.987 -0.032 4.159 0.261 C 4.899 0.449 5.62 0.61 6.323 0.745 C 6.06 1.28 5.778 1.806 5.478 2.321 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gfsp03\",layoutDependency:layoutDependency,layoutId:\"u5xSB4vsO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.565 3.205\" overflow=\"visible\"><path d=\"M 2.019 3.042 C 1.344 2.947 0.671 2.838 0 2.717 C 0.175 2.257 0.345 1.792 0.505 1.318 C 0.721 0.716 1.037 0.319 1.453 0.127 C 1.869 -0.066 2.355 -0.039 2.91 0.208 C 5.037 1.149 6.256 2.028 6.565 2.846 C 5.454 3.247 3.939 3.313 2.019 3.042 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p6vms\",\"data-framer-name\":\"sumsub\",layoutDependency:layoutDependency,layoutId:\"bggaTKdCa\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-1gth1mt\",layoutDependency:layoutDependency,layoutId:\"r1AgFdpZ4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.154 24\" overflow=\"visible\"><g><path d=\"M 4.407 11.197 C 4.407 10.991 4.574 10.825 4.78 10.825 L 10.647 10.825 C 10.852 10.825 11.018 10.992 11.018 11.197 L 11.018 12.65 C 11.018 12.855 10.852 13.021 10.647 13.021 L 8.815 13.021 L 8.815 14.846 C 8.815 15.051 8.648 15.217 8.443 15.217 L 4.78 15.217 C 4.574 15.217 4.407 15.051 4.407 14.845 Z M 4.407 8.246 C 4.407 8.45 4.241 8.616 4.035 8.616 L 2.204 8.616 L 2.204 10.442 C 2.204 10.646 2.037 10.812 1.831 10.812 L 0.373 10.812 C 0.167 10.812 0 10.646 0 10.441 L 0 6.792 C 0 6.587 0.167 6.421 0.373 6.421 L 4.035 6.421 C 4.24 6.421 4.407 6.587 4.407 6.792 Z M 6.611 19.967 L 6.611 21.42 C 6.611 21.625 6.444 21.791 6.238 21.791 L 4.78 21.791 C 4.574 21.791 4.407 21.625 4.407 21.42 L 4.407 19.967 C 4.407 19.762 4.574 19.596 4.78 19.596 L 6.238 19.596 C 6.337 19.595 6.432 19.634 6.502 19.704 C 6.572 19.774 6.612 19.868 6.612 19.967 Z M 32.683 6.421 C 32.889 6.421 33.056 6.586 33.056 6.791 L 33.056 10.442 C 33.056 10.646 32.889 10.812 32.683 10.812 L 31.225 10.812 C 31.019 10.812 30.852 10.646 30.852 10.441 L 30.852 8.616 L 29.021 8.616 C 28.815 8.616 28.649 8.45 28.649 8.245 L 28.649 6.792 C 28.649 6.587 28.816 6.421 29.021 6.421 L 32.683 6.421 Z M 28.276 10.812 C 28.482 10.812 28.649 10.979 28.649 11.184 L 28.649 14.834 C 28.649 15.038 28.482 15.204 28.276 15.204 L 24.614 15.204 C 24.408 15.204 24.241 15.038 24.241 14.833 L 24.241 13.008 L 22.409 13.008 C 22.204 13.008 22.037 12.842 22.037 12.637 L 22.037 11.184 C 22.037 10.979 22.203 10.813 22.409 10.812 Z M 26.073 21.804 C 26.279 21.804 26.446 21.971 26.446 22.176 L 26.446 23.629 C 26.446 23.834 26.279 24 26.073 24 L 22.41 24 C 22.205 24 22.038 23.834 22.038 23.629 L 22.038 21.804 L 20.207 21.804 C 20.001 21.804 19.835 21.638 19.835 21.433 L 19.835 17.413 L 13.223 17.413 L 13.223 21.433 C 13.223 21.638 13.056 21.804 12.851 21.804 L 11.019 21.804 L 11.019 23.629 C 11.019 23.834 10.853 24 10.647 24 L 6.985 24 C 6.778 24 6.612 23.834 6.612 23.629 L 6.612 22.176 C 6.612 21.971 6.779 21.804 6.985 21.804 L 8.815 21.804 L 8.815 19.98 C 8.815 19.775 8.982 19.608 9.187 19.608 L 11.018 19.608 L 11.018 15.588 C 11.018 15.383 11.185 15.217 11.391 15.217 L 13.222 15.217 L 13.222 11.197 C 13.222 10.991 13.389 10.825 13.595 10.825 L 19.461 10.825 C 19.667 10.825 19.834 10.991 19.834 11.197 L 19.834 15.217 L 21.665 15.217 C 21.871 15.217 22.038 15.383 22.038 15.588 L 22.038 19.608 L 23.869 19.608 C 24.074 19.608 24.241 19.775 24.241 19.98 L 24.241 21.804 Z M 28.275 19.596 C 28.481 19.596 28.648 19.762 28.648 19.967 L 28.648 21.42 C 28.648 21.625 28.481 21.791 28.275 21.791 L 26.817 21.791 C 26.611 21.791 26.444 21.625 26.444 21.42 L 26.444 19.967 C 26.444 19.762 26.611 19.596 26.817 19.596 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 9.083 6.592 L 23.764 6.592 C 23.97 6.592 24.137 6.426 24.137 6.22 L 24.137 4.766 C 24.137 4.561 23.97 4.395 23.765 4.395 L 21.933 4.395 L 21.933 2.569 C 21.933 2.364 21.766 2.197 21.56 2.197 L 19.729 2.197 L 19.729 0.372 C 19.729 0.167 19.563 0 19.357 0 L 13.492 0 C 13.286 0 13.119 0.166 13.119 0.372 L 13.119 2.197 L 11.288 2.197 C 11.082 2.197 10.915 2.364 10.915 2.569 L 10.915 4.395 L 9.084 4.395 C 8.878 4.395 8.712 4.561 8.712 4.766 L 8.712 6.22 C 8.712 6.426 8.878 6.592 9.084 6.592 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 71.172 10.651 C 73.398 10.651 75.209 12.405 75.21 14.576 L 75.21 19.132 C 75.209 19.208 75.178 19.28 75.124 19.333 C 75.07 19.386 74.996 19.416 74.92 19.415 L 73.294 19.415 C 73.138 19.415 73.005 19.293 73.005 19.132 L 73.005 14.575 C 73.005 13.598 72.187 12.799 71.172 12.799 C 70.156 12.799 69.339 13.598 69.339 14.575 L 69.339 19.133 C 69.336 19.291 69.207 19.417 69.049 19.416 L 67.421 19.416 C 67.266 19.416 67.132 19.293 67.132 19.133 L 67.132 14.573 C 67.132 14.101 66.943 13.649 66.608 13.315 C 66.273 12.982 65.819 12.795 65.346 12.795 C 64.36 12.795 63.56 13.59 63.56 14.572 L 63.56 19.133 C 63.557 19.29 63.428 19.416 63.271 19.416 L 61.65 19.416 C 61.494 19.416 61.36 19.293 61.36 19.133 L 61.36 11.102 C 61.362 10.944 61.492 10.818 61.65 10.819 L 63.266 10.819 C 63.342 10.818 63.415 10.848 63.47 10.901 C 63.524 10.953 63.555 11.026 63.556 11.102 L 63.556 11.213 C 64.058 10.877 64.708 10.644 65.346 10.644 C 66.438 10.642 67.482 11.093 68.228 11.889 C 68.965 11.126 70.012 10.65 71.171 10.65 Z M 83.297 14.964 C 83.611 15.153 83.886 15.396 84.084 15.718 C 84.281 16.039 84.393 16.429 84.393 16.905 C 84.393 17.598 84.171 18.126 83.829 18.521 C 83.49 18.914 83.04 19.169 82.594 19.336 C 81.704 19.668 80.793 19.662 80.681 19.66 L 80.673 19.66 C 79.761 19.66 79.019 19.604 78.506 19.546 C 78.248 19.515 78.048 19.488 77.911 19.466 C 77.843 19.454 77.791 19.446 77.756 19.438 L 77.715 19.431 C 77.71 19.43 77.706 19.43 77.704 19.429 L 77.701 19.428 L 77.701 19.428 L 77.696 19.427 L 77.692 19.426 C 77.593 19.401 77.51 19.333 77.466 19.241 C 77.426 19.163 77.416 19.076 77.416 19.003 L 77.416 18.999 L 77.478 17.882 L 77.482 17.867 L 77.492 17.817 L 77.493 17.809 C 77.5 17.736 77.531 17.668 77.58 17.614 C 77.656 17.539 77.763 17.518 77.876 17.518 L 77.89 17.518 L 77.904 17.521 L 77.907 17.522 L 77.919 17.524 L 77.938 17.527 L 77.969 17.532 L 78.154 17.562 C 78.314 17.588 78.539 17.623 78.805 17.656 C 79.337 17.724 80.023 17.792 80.652 17.792 C 81.205 17.792 81.581 17.697 81.813 17.558 C 82.036 17.422 82.128 17.246 82.128 17.047 C 82.128 16.81 81.983 16.639 81.669 16.491 C 81.352 16.341 80.91 16.238 80.408 16.122 L 80.394 16.12 C 79.704 15.961 78.913 15.778 78.295 15.4 C 77.982 15.208 77.707 14.962 77.512 14.639 C 77.316 14.314 77.204 13.921 77.204 13.44 C 77.195 12.707 77.515 12.008 78.076 11.535 C 78.658 11.036 79.523 10.72 80.663 10.678 L 80.669 10.678 C 81.536 10.678 82.403 10.711 83.267 10.779 L 83.275 10.78 L 83.278 10.78 L 83.284 10.781 L 83.292 10.782 C 83.389 10.796 83.474 10.854 83.523 10.938 C 83.569 11.023 83.578 11.133 83.578 11.254 L 83.578 12.244 L 83.573 12.26 L 83.565 12.306 L 83.565 12.313 C 83.558 12.389 83.527 12.462 83.476 12.519 C 83.399 12.599 83.286 12.624 83.162 12.624 L 83.155 12.624 L 83.148 12.622 L 83.146 12.622 L 83.139 12.621 L 83.109 12.619 L 82.988 12.611 C 82.882 12.605 82.722 12.595 82.512 12.586 C 82.094 12.567 81.475 12.548 80.675 12.548 C 80.207 12.576 79.903 12.686 79.719 12.829 C 79.541 12.969 79.466 13.145 79.466 13.345 C 79.466 13.575 79.608 13.743 79.922 13.889 C 80.24 14.037 80.681 14.138 81.182 14.251 L 81.196 14.254 C 81.887 14.41 82.679 14.59 83.297 14.963 Z M 106.154 15.242 C 106.154 17.687 104.099 19.66 101.574 19.66 C 100.671 19.66 99.782 19.281 99.112 18.759 L 99.112 19.135 C 99.11 19.293 98.98 19.419 98.822 19.418 L 97.199 19.418 C 97.044 19.418 96.91 19.296 96.91 19.135 L 96.91 7.837 C 96.912 7.679 97.041 7.553 97.199 7.554 L 98.822 7.554 C 98.898 7.553 98.971 7.582 99.026 7.635 C 99.08 7.688 99.111 7.761 99.112 7.837 L 99.112 11.516 C 99.852 11.061 100.704 10.821 101.574 10.824 C 104.099 10.824 106.154 12.797 106.154 15.242 Z M 103.945 15.242 C 103.945 13.979 102.883 12.957 101.574 12.957 C 100.264 12.957 99.203 13.98 99.203 15.242 C 99.203 16.504 100.265 17.527 101.574 17.527 C 102.884 17.527 103.945 16.503 103.945 15.242 Z M 94.703 11.107 L 94.703 15.777 C 94.703 17.926 92.889 19.659 90.664 19.659 L 90.636 19.659 C 88.411 19.659 86.598 17.926 86.598 15.777 L 86.598 11.107 C 86.599 11.031 86.63 10.958 86.684 10.905 C 86.739 10.852 86.812 10.823 86.888 10.824 L 88.514 10.824 C 88.673 10.822 88.802 10.949 88.804 11.107 L 88.804 15.777 C 88.804 16.741 89.619 17.532 90.636 17.532 L 90.664 17.532 C 91.682 17.532 92.497 16.741 92.497 15.777 L 92.497 11.107 C 92.498 11.031 92.529 10.958 92.583 10.905 C 92.638 10.852 92.711 10.823 92.787 10.824 L 94.413 10.824 C 94.572 10.822 94.701 10.949 94.703 11.107 Z M 47.756 14.964 C 48.071 15.153 48.345 15.396 48.542 15.716 C 48.738 16.038 48.85 16.428 48.85 16.904 C 48.85 17.597 48.629 18.125 48.287 18.521 C 47.948 18.913 47.498 19.169 47.052 19.335 C 46.162 19.667 45.25 19.66 45.139 19.66 L 45.132 19.66 C 44.219 19.66 43.477 19.602 42.963 19.544 C 42.713 19.515 42.462 19.48 42.213 19.438 L 42.173 19.43 L 42.162 19.428 L 42.159 19.427 L 42.158 19.427 L 42.163 19.401 L 42.158 19.426 L 42.154 19.426 L 42.15 19.425 C 42.051 19.4 41.968 19.332 41.924 19.24 C 41.889 19.165 41.871 19.084 41.873 19.002 L 41.873 18.998 L 41.938 17.882 L 41.942 17.867 L 41.952 17.817 L 41.953 17.809 C 41.96 17.736 41.991 17.668 42.04 17.614 C 42.116 17.539 42.223 17.518 42.335 17.518 L 42.351 17.518 L 42.364 17.521 L 42.369 17.522 L 42.38 17.524 L 42.4 17.527 L 42.43 17.532 L 42.616 17.562 C 42.775 17.588 43.001 17.623 43.266 17.656 C 43.797 17.724 44.484 17.792 45.113 17.792 C 45.666 17.792 46.042 17.697 46.274 17.558 C 46.497 17.422 46.589 17.246 46.589 17.047 C 46.589 16.81 46.444 16.639 46.13 16.491 C 45.813 16.341 45.372 16.238 44.869 16.122 L 44.854 16.12 C 44.165 15.961 43.374 15.778 42.756 15.4 C 42.442 15.208 42.168 14.962 41.973 14.639 C 41.776 14.314 41.665 13.921 41.665 13.44 C 41.656 12.707 41.975 12.009 42.536 11.535 C 43.118 11.036 43.983 10.72 45.123 10.678 L 45.129 10.678 C 45.996 10.678 46.863 10.711 47.727 10.779 L 47.734 10.78 L 47.737 10.78 L 47.744 10.781 L 47.752 10.782 C 47.849 10.796 47.934 10.854 47.983 10.938 C 48.03 11.023 48.037 11.133 48.037 11.254 L 48.037 12.244 L 48.033 12.26 L 48.025 12.306 L 48.025 12.313 C 48.018 12.39 47.987 12.462 47.936 12.519 C 47.859 12.599 47.746 12.624 47.622 12.624 L 47.616 12.624 L 47.608 12.622 L 47.606 12.622 L 47.6 12.621 L 47.569 12.619 L 47.448 12.611 C 47.342 12.605 47.182 12.595 46.972 12.586 C 46.553 12.567 45.935 12.548 45.135 12.548 C 44.666 12.576 44.363 12.686 44.179 12.829 C 44.001 12.969 43.926 13.145 43.926 13.345 C 43.926 13.575 44.069 13.743 44.382 13.889 C 44.7 14.037 45.141 14.138 45.642 14.251 L 45.656 14.254 C 46.347 14.41 47.139 14.59 47.756 14.963 Z M 58.867 10.824 C 58.943 10.823 59.017 10.852 59.071 10.905 C 59.125 10.958 59.156 11.031 59.157 11.107 L 59.157 15.777 C 59.157 17.926 57.343 19.659 55.119 19.659 L 55.091 19.659 C 52.865 19.659 51.052 17.926 51.052 15.777 L 51.052 11.107 C 51.053 11.031 51.084 10.958 51.138 10.905 C 51.193 10.852 51.266 10.823 51.343 10.824 L 52.969 10.824 C 53.045 10.823 53.118 10.852 53.172 10.906 C 53.226 10.959 53.257 11.031 53.258 11.107 L 53.258 15.777 C 53.258 16.741 54.074 17.532 55.091 17.532 L 55.117 17.532 C 56.136 17.532 56.951 16.741 56.951 15.777 L 56.951 11.107 C 56.951 11.031 56.982 10.958 57.037 10.905 C 57.091 10.852 57.165 10.823 57.241 10.824 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-132s52q\",layoutDependency:layoutDependency,layoutId:\"p9PCqiqzT\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 33.056 17.579\" overflow=\"visible\"><path d=\"M 4.407 4.776 C 4.407 4.571 4.574 4.404 4.78 4.404 L 10.647 4.404 C 10.852 4.405 11.018 4.571 11.018 4.776 L 11.018 6.229 C 11.018 6.434 10.852 6.6 10.647 6.6 L 8.815 6.6 L 8.815 8.425 C 8.815 8.63 8.648 8.796 8.443 8.796 L 4.78 8.796 C 4.574 8.796 4.407 8.63 4.407 8.425 Z M 4.407 1.826 C 4.407 2.03 4.241 2.196 4.035 2.196 L 2.204 2.196 L 2.204 4.022 C 2.204 4.225 2.037 4.392 1.831 4.392 L 0.373 4.392 C 0.167 4.392 0 4.225 0 4.021 L 0 0.372 C 0 0.167 0.167 0.001 0.373 0.001 L 4.035 0.001 C 4.24 0.001 4.407 0.167 4.407 0.372 Z M 6.611 13.547 L 6.611 15 C 6.611 15.205 6.444 15.371 6.238 15.371 L 4.78 15.371 C 4.574 15.371 4.407 15.205 4.407 15 L 4.407 13.547 C 4.407 13.341 4.574 13.175 4.78 13.175 L 6.238 13.175 C 6.337 13.175 6.432 13.214 6.502 13.284 C 6.572 13.353 6.612 13.448 6.612 13.547 Z M 32.683 0 C 32.889 0 33.056 0.166 33.056 0.371 L 33.056 4.022 C 33.056 4.225 32.889 4.392 32.683 4.392 L 31.225 4.392 C 31.019 4.392 30.852 4.225 30.852 4.021 L 30.852 2.196 L 29.021 2.196 C 28.815 2.196 28.649 2.03 28.649 1.825 L 28.649 0.372 C 28.649 0.167 28.816 0.001 29.021 0.001 L 32.683 0.001 Z M 28.276 4.392 C 28.482 4.392 28.649 4.558 28.649 4.763 L 28.649 8.413 C 28.649 8.617 28.482 8.783 28.276 8.783 L 24.614 8.783 C 24.408 8.783 24.241 8.617 24.241 8.412 L 24.241 6.587 L 22.409 6.587 C 22.204 6.587 22.037 6.421 22.037 6.217 L 22.037 4.763 C 22.037 4.558 22.203 4.392 22.409 4.392 Z M 26.073 15.384 C 26.279 15.384 26.446 15.55 26.446 15.755 L 26.446 17.209 C 26.446 17.413 26.279 17.579 26.073 17.579 L 22.41 17.579 C 22.205 17.579 22.038 17.413 22.038 17.209 L 22.038 15.384 L 20.207 15.384 C 20.001 15.384 19.835 15.217 19.835 15.013 L 19.835 10.992 L 13.223 10.992 L 13.223 15.013 C 13.223 15.217 13.056 15.384 12.851 15.384 L 11.019 15.384 L 11.019 17.209 C 11.019 17.413 10.853 17.579 10.647 17.579 L 6.985 17.579 C 6.778 17.579 6.612 17.413 6.612 17.209 L 6.612 15.755 C 6.612 15.55 6.779 15.384 6.985 15.384 L 8.815 15.384 L 8.815 13.559 C 8.815 13.354 8.982 13.188 9.187 13.188 L 11.018 13.188 L 11.018 9.168 C 11.018 8.963 11.185 8.796 11.391 8.796 L 13.222 8.796 L 13.222 4.776 C 13.222 4.571 13.389 4.404 13.595 4.404 L 19.461 4.404 C 19.667 4.404 19.834 4.571 19.834 4.776 L 19.834 8.796 L 21.665 8.796 C 21.871 8.796 22.038 8.963 22.038 9.168 L 22.038 13.188 L 23.869 13.188 C 24.074 13.188 24.241 13.354 24.241 13.559 L 24.241 15.384 Z M 28.275 13.175 C 28.481 13.175 28.648 13.341 28.648 13.547 L 28.648 15 C 28.648 15.205 28.481 15.371 28.275 15.371 L 26.817 15.371 C 26.611 15.371 26.444 15.205 26.444 15 L 26.444 13.547 C 26.444 13.341 26.611 13.175 26.817 13.175 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1eb2l5i\",layoutDependency:layoutDependency,layoutId:\"qY_lZDZZJ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.611 4.392\" overflow=\"visible\"><path d=\"M 0 4.02 C 0 4.225 0.167 4.392 0.373 4.392 L 4.035 4.392 C 4.241 4.392 4.407 4.225 4.407 4.021 L 4.407 2.196 L 6.239 2.196 C 6.444 2.196 6.611 2.03 6.611 1.825 L 6.611 0.372 C 6.611 0.167 6.445 0 6.239 0 L 0.373 0 C 0.167 0 0 0.166 0 0.372 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vaojb1\",layoutDependency:layoutDependency,layoutId:\"DVax5_DJ0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.407 4.391\" overflow=\"visible\"><path d=\"M 4.407 0.371 C 4.407 0.166 4.24 0 4.035 0 L 0.373 0 C 0.167 0 0 0.166 0 0.371 L 0 4.02 C 0 4.225 0.167 4.391 0.373 4.391 L 1.831 4.391 C 2.037 4.391 2.204 4.225 2.204 4.021 L 2.204 2.195 L 4.035 2.195 C 4.241 2.195 4.407 2.029 4.407 1.825 L 4.407 0.37 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1t6y0ga\",layoutDependency:layoutDependency,layoutId:\"sdnargtct\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.204 2.196\" overflow=\"visible\"><path d=\"M 2.204 0.372 C 2.204 0.273 2.165 0.178 2.095 0.109 C 2.025 0.039 1.93 0 1.831 0 L 0.373 0 C 0.167 0 0 0.166 0 0.372 L 0 1.825 C 0 2.03 0.167 2.196 0.373 2.196 L 1.831 2.196 C 2.037 2.196 2.204 2.03 2.204 1.825 L 2.204 0.372 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-o3ms7k\",layoutDependency:layoutDependency,layoutId:\"luaYtBKYs\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.407 4.392\" overflow=\"visible\"><path d=\"M 4.034 0.001 L 0.373 0.001 C 0.167 0.001 0 0.167 0 0.372 L 0 1.825 C 0 2.03 0.167 2.196 0.373 2.196 L 2.204 2.196 L 2.204 4.021 C 2.204 4.225 2.37 4.392 2.576 4.392 L 4.035 4.392 C 4.241 4.392 4.407 4.225 4.407 4.022 L 4.407 0.371 C 4.407 0.166 4.24 0 4.035 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tmvc62\",layoutDependency:layoutDependency,layoutId:\"aYJcB8LRv\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.612 4.392\" overflow=\"visible\"><path d=\"M 6.238 0 L 0.372 0 C 0.166 0 0 0.167 0 0.372 L 0 1.825 C 0 2.03 0.167 2.196 0.372 2.196 L 2.204 2.196 L 2.204 4.021 C 2.204 4.225 2.371 4.392 2.577 4.392 L 6.239 4.392 C 6.445 4.392 6.612 4.225 6.612 4.022 L 6.612 0.372 C 6.612 0.166 6.445 0 6.239 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aucoxi\",layoutDependency:layoutDependency,layoutId:\"t5GwupghN\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.834 13.175\" overflow=\"visible\"><path d=\"M 19.46 10.979 L 17.63 10.979 L 17.63 9.155 C 17.63 8.95 17.463 8.783 17.257 8.783 L 15.426 8.783 L 15.426 4.763 C 15.426 4.558 15.259 4.392 15.053 4.392 L 13.222 4.392 L 13.222 0.372 C 13.222 0.166 13.055 0 12.849 0 L 6.983 0 C 6.777 0 6.61 0.166 6.61 0.372 L 6.61 4.392 L 4.779 4.392 C 4.573 4.392 4.407 4.558 4.407 4.763 L 4.407 8.783 L 2.576 8.783 C 2.37 8.783 2.203 8.95 2.203 9.155 L 2.203 10.979 L 0.373 10.979 C 0.167 10.979 0 11.146 0 11.351 L 0 12.804 C 0 13.009 0.167 13.175 0.373 13.175 L 4.035 13.175 C 4.241 13.175 4.407 13.009 4.407 12.804 L 4.407 10.979 L 6.239 10.979 C 6.444 10.979 6.611 10.813 6.611 10.608 L 6.611 6.587 L 13.223 6.587 L 13.223 10.608 C 13.223 10.813 13.39 10.979 13.595 10.979 L 15.427 10.979 L 15.427 12.804 C 15.427 13.009 15.593 13.175 15.799 13.175 L 19.461 13.175 C 19.667 13.175 19.834 13.009 19.834 12.804 L 19.834 11.351 C 19.834 11.146 19.667 10.979 19.461 10.979 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hrdljj\",layoutDependency:layoutDependency,layoutId:\"HmoYjniJY\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.204 2.196\" overflow=\"visible\"><path d=\"M 1.832 0 L 0.373 0 C 0.167 0 0 0.166 0 0.372 L 0 1.825 C 0 2.03 0.167 2.196 0.373 2.196 L 1.831 2.196 C 2.037 2.196 2.204 2.03 2.204 1.825 L 2.204 0.372 C 2.204 0.166 2.037 0 1.831 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-6156ae\",layoutDependency:layoutDependency,layoutId:\"rolkfLhRD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 15.425 6.592\" overflow=\"visible\"><path d=\"M 0.371 6.592 L 15.052 6.592 C 15.258 6.592 15.425 6.426 15.425 6.22 L 15.425 4.766 C 15.425 4.561 15.259 4.395 15.053 4.395 L 13.221 4.395 L 13.221 2.569 C 13.221 2.364 13.055 2.197 12.849 2.197 L 11.018 2.197 L 11.018 0.372 C 11.018 0.167 10.851 0 10.646 0 L 4.78 0 C 4.574 0 4.407 0.166 4.407 0.372 L 4.407 2.197 L 2.576 2.197 C 2.371 2.197 2.204 2.364 2.204 2.569 L 2.204 4.395 L 0.372 4.395 C 0.166 4.395 0 4.561 0 4.766 L 0 6.22 C 0 6.426 0.167 6.592 0.373 6.592 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-12x5xxy\",layoutDependency:layoutDependency,layoutId:\"XG_WoWYLi\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 64.489 12.107\" overflow=\"visible\"><path d=\"M 29.507 3.097 C 31.733 3.097 33.544 4.852 33.545 7.023 L 33.545 11.578 C 33.544 11.654 33.513 11.727 33.459 11.78 C 33.405 11.833 33.332 11.862 33.256 11.861 L 31.629 11.861 C 31.473 11.861 31.34 11.739 31.34 11.578 L 31.34 7.022 C 31.34 6.044 30.522 5.245 29.507 5.245 C 28.491 5.245 27.674 6.044 27.674 7.022 L 27.674 11.58 C 27.671 11.737 27.542 11.863 27.385 11.862 L 25.757 11.862 C 25.601 11.862 25.467 11.74 25.467 11.58 L 25.467 7.02 C 25.467 6.548 25.278 6.095 24.943 5.762 C 24.608 5.428 24.154 5.241 23.681 5.241 C 22.695 5.241 21.895 6.037 21.895 7.019 L 21.895 11.58 C 21.892 11.737 21.764 11.863 21.606 11.862 L 19.985 11.862 C 19.829 11.862 19.695 11.74 19.695 11.58 L 19.695 3.548 C 19.697 3.39 19.827 3.264 19.985 3.265 L 21.602 3.265 C 21.677 3.265 21.751 3.294 21.805 3.347 C 21.859 3.4 21.89 3.472 21.891 3.548 L 21.891 3.66 C 22.393 3.324 23.043 3.09 23.681 3.09 C 24.773 3.089 25.817 3.54 26.563 4.335 C 27.3 3.572 28.347 3.096 29.506 3.096 Z M 41.632 7.41 C 41.946 7.6 42.221 7.842 42.42 8.164 C 42.616 8.486 42.728 8.875 42.728 9.351 C 42.728 10.044 42.507 10.572 42.164 10.968 C 41.825 11.361 41.375 11.616 40.929 11.782 C 40.039 12.114 39.128 12.108 39.016 12.107 L 39.008 12.107 C 38.096 12.107 37.355 12.05 36.841 11.992 C 36.583 11.962 36.383 11.934 36.246 11.912 C 36.178 11.901 36.127 11.892 36.091 11.885 L 36.05 11.877 C 36.046 11.877 36.041 11.877 36.04 11.875 L 36.036 11.874 L 36.036 11.874 L 36.031 11.873 L 36.027 11.872 C 35.928 11.847 35.845 11.779 35.802 11.687 C 35.761 11.609 35.751 11.522 35.751 11.449 L 35.751 11.445 L 35.813 10.328 L 35.817 10.313 L 35.827 10.263 L 35.828 10.256 C 35.835 10.183 35.866 10.114 35.915 10.061 C 35.991 9.985 36.098 9.964 36.211 9.964 L 36.225 9.964 L 36.239 9.967 L 36.243 9.968 L 36.255 9.97 L 36.274 9.973 L 36.304 9.978 L 36.489 10.009 C 36.649 10.034 36.874 10.069 37.14 10.102 C 37.672 10.17 38.358 10.238 38.987 10.238 C 39.54 10.238 39.916 10.144 40.148 10.004 C 40.371 9.869 40.464 9.692 40.464 9.493 C 40.464 9.256 40.318 9.085 40.004 8.937 C 39.687 8.788 39.245 8.684 38.743 8.569 L 38.729 8.567 C 38.039 8.407 37.249 8.224 36.63 7.847 C 36.317 7.655 36.043 7.409 35.847 7.085 C 35.651 6.76 35.54 6.367 35.54 5.887 C 35.53 5.154 35.85 4.455 36.411 3.982 C 36.993 3.482 37.858 3.166 38.998 3.124 L 39.005 3.124 C 39.871 3.124 40.738 3.158 41.602 3.225 L 41.61 3.227 L 41.613 3.227 L 41.62 3.228 L 41.627 3.228 C 41.724 3.242 41.809 3.3 41.858 3.385 C 41.904 3.469 41.913 3.58 41.913 3.701 L 41.913 4.69 L 41.908 4.707 L 41.901 4.752 L 41.9 4.76 C 41.893 4.836 41.862 4.908 41.811 4.966 C 41.734 5.046 41.621 5.07 41.497 5.07 L 41.49 5.07 L 41.483 5.068 L 41.481 5.068 L 41.474 5.068 L 41.445 5.065 L 41.323 5.058 C 41.217 5.051 41.057 5.041 40.848 5.032 C 40.429 5.013 39.81 4.994 39.011 4.994 C 38.542 5.022 38.238 5.133 38.055 5.275 C 37.876 5.415 37.801 5.591 37.801 5.791 C 37.801 6.022 37.943 6.189 38.258 6.335 C 38.575 6.483 39.016 6.584 39.517 6.698 L 39.531 6.701 C 40.222 6.856 41.014 7.036 41.632 7.409 Z M 64.489 7.688 C 64.489 10.133 62.434 12.106 59.909 12.106 C 59.006 12.106 58.117 11.727 57.447 11.206 L 57.447 11.581 C 57.445 11.739 57.315 11.866 57.157 11.864 L 55.534 11.864 C 55.379 11.864 55.245 11.742 55.245 11.581 L 55.245 0.283 C 55.247 0.126 55.376 -0.001 55.534 0 L 57.157 0 C 57.233 -0.001 57.306 0.029 57.361 0.082 C 57.415 0.135 57.446 0.207 57.447 0.283 L 57.447 3.963 C 58.187 3.507 59.04 3.268 59.909 3.27 C 62.434 3.27 64.489 5.243 64.489 7.688 Z M 62.28 7.688 C 62.28 6.426 61.218 5.403 59.909 5.403 C 58.599 5.403 57.538 6.427 57.538 7.688 C 57.538 8.95 58.6 9.973 59.909 9.973 C 61.219 9.973 62.28 8.95 62.28 7.688 Z M 53.038 3.553 L 53.038 8.224 C 53.038 10.373 51.224 12.105 49 12.105 L 48.972 12.105 C 46.747 12.105 44.933 10.373 44.933 8.224 L 44.933 3.553 C 44.934 3.477 44.965 3.405 45.019 3.352 C 45.074 3.299 45.147 3.269 45.223 3.27 L 46.85 3.27 C 47.008 3.269 47.137 3.395 47.139 3.553 L 47.139 8.224 C 47.139 9.187 47.954 9.978 48.972 9.978 L 49 9.978 C 50.017 9.978 50.832 9.187 50.832 8.224 L 50.832 3.553 C 50.833 3.477 50.864 3.405 50.918 3.352 C 50.973 3.299 51.046 3.269 51.122 3.27 L 52.749 3.27 C 52.907 3.269 53.036 3.395 53.038 3.553 Z M 6.092 7.41 C 6.406 7.6 6.68 7.842 6.877 8.162 C 7.073 8.484 7.185 8.875 7.185 9.351 C 7.185 10.043 6.964 10.571 6.622 10.967 C 6.283 11.359 5.833 11.615 5.387 11.781 C 4.497 12.114 3.586 12.107 3.474 12.106 L 3.467 12.106 C 2.554 12.106 1.812 12.049 1.299 11.991 C 1.048 11.962 0.798 11.926 0.549 11.884 L 0.508 11.877 L 0.497 11.874 L 0.494 11.873 L 0.493 11.873 L 0.499 11.848 L 0.493 11.873 L 0.49 11.873 L 0.485 11.871 C 0.386 11.846 0.303 11.779 0.259 11.686 C 0.224 11.612 0.207 11.53 0.209 11.448 L 0.209 11.444 L 0.273 10.328 L 0.277 10.313 L 0.287 10.263 L 0.288 10.256 C 0.295 10.183 0.326 10.115 0.375 10.061 C 0.451 9.985 0.558 9.964 0.671 9.964 L 0.686 9.964 L 0.699 9.967 L 0.704 9.968 L 0.715 9.97 L 0.735 9.973 L 0.765 9.978 L 0.951 10.009 C 1.11 10.034 1.336 10.069 1.601 10.102 C 2.133 10.17 2.819 10.238 3.448 10.238 C 4.002 10.238 4.377 10.144 4.609 10.004 C 4.833 9.869 4.924 9.692 4.924 9.493 C 4.924 9.256 4.779 9.085 4.465 8.937 C 4.148 8.788 3.707 8.684 3.204 8.569 L 3.189 8.567 C 2.5 8.407 1.709 8.224 1.091 7.847 C 0.777 7.655 0.503 7.409 0.308 7.085 C 0.112 6.76 0 6.367 0 5.887 C -0.009 5.154 0.311 4.455 0.871 3.982 C 1.453 3.482 2.318 3.166 3.458 3.124 L 3.464 3.124 C 4.331 3.124 5.198 3.158 6.062 3.225 L 6.07 3.227 L 6.073 3.227 L 6.079 3.228 L 6.087 3.228 C 6.184 3.242 6.269 3.3 6.318 3.385 C 6.365 3.469 6.373 3.58 6.373 3.701 L 6.373 4.69 L 6.368 4.707 L 6.361 4.752 L 6.36 4.76 C 6.353 4.836 6.322 4.908 6.271 4.966 C 6.194 5.046 6.081 5.07 5.957 5.07 L 5.951 5.07 L 5.943 5.068 L 5.941 5.068 L 5.935 5.068 L 5.904 5.065 L 5.783 5.058 C 5.677 5.051 5.517 5.041 5.308 5.032 C 4.889 5.013 4.27 4.994 3.47 4.994 C 3.002 5.022 2.698 5.133 2.514 5.275 C 2.336 5.415 2.261 5.591 2.261 5.791 C 2.261 6.022 2.404 6.189 2.717 6.335 C 3.035 6.483 3.476 6.584 3.977 6.698 L 3.991 6.701 C 4.682 6.856 5.474 7.036 6.092 7.409 Z M 17.202 3.27 C 17.279 3.269 17.352 3.299 17.406 3.352 C 17.46 3.405 17.491 3.477 17.492 3.553 L 17.492 8.224 C 17.492 10.373 15.678 12.105 13.454 12.105 L 13.426 12.105 C 11.2 12.105 9.388 10.373 9.388 8.224 L 9.388 3.553 C 9.388 3.477 9.419 3.405 9.474 3.351 C 9.528 3.298 9.602 3.269 9.678 3.27 L 11.304 3.27 C 11.38 3.269 11.453 3.299 11.507 3.352 C 11.562 3.405 11.592 3.477 11.593 3.553 L 11.593 8.224 C 11.593 9.187 12.409 9.978 13.426 9.978 L 13.453 9.978 C 14.471 9.978 15.286 9.187 15.286 8.224 L 15.286 3.553 C 15.286 3.477 15.317 3.405 15.372 3.351 C 15.426 3.298 15.5 3.269 15.576 3.27 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-9v65s8\",layoutDependency:layoutDependency,layoutId:\"EJLNFCDAn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.85 8.772\" overflow=\"visible\"><path d=\"M 9.812 0.006 C 8.653 0.006 7.605 0.482 6.869 1.245 C 6.122 0.449 5.079 -0.001 3.986 0 C 3.348 0 2.698 0.233 2.196 0.57 L 2.196 0.458 C 2.195 0.382 2.164 0.31 2.11 0.257 C 2.056 0.204 1.983 0.174 1.907 0.175 L 0.29 0.175 C 0.132 0.174 0.002 0.3 0 0.458 L 0 8.489 C 0 8.65 0.134 8.772 0.29 8.772 L 1.911 8.772 C 2.069 8.772 2.197 8.647 2.2 8.489 L 2.2 3.929 C 2.2 2.947 3.001 2.151 3.986 2.151 C 4.46 2.151 4.914 2.338 5.249 2.671 C 5.584 3.005 5.772 3.457 5.772 3.929 L 5.772 8.489 C 5.772 8.65 5.907 8.772 6.062 8.772 L 7.69 8.772 C 7.848 8.773 7.977 8.647 7.979 8.489 L 7.979 3.932 C 7.979 2.954 8.797 2.155 9.812 2.155 C 10.828 2.155 11.645 2.954 11.645 3.932 L 11.645 8.488 C 11.645 8.649 11.778 8.771 11.934 8.771 L 13.561 8.771 C 13.637 8.772 13.71 8.743 13.764 8.689 C 13.819 8.636 13.85 8.564 13.85 8.488 L 13.85 3.932 C 13.849 1.761 12.038 0.007 9.812 0.007 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-kxuumh\",layoutDependency:layoutDependency,layoutId:\"kZFMBvfvp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.189 8.983\" overflow=\"visible\"><path d=\"M 6.092 4.285 C 5.475 3.912 4.683 3.732 3.992 3.577 L 3.978 3.574 C 3.477 3.46 3.036 3.359 2.718 3.211 C 2.404 3.065 2.261 2.898 2.261 2.667 C 2.261 2.467 2.336 2.291 2.515 2.151 C 2.699 2.008 3.002 1.898 3.471 1.87 C 4.27 1.87 4.889 1.889 5.308 1.908 C 5.518 1.917 5.678 1.927 5.784 1.934 L 5.905 1.941 L 5.935 1.944 L 5.942 1.944 L 5.944 1.944 L 5.951 1.946 L 5.958 1.946 C 6.082 1.946 6.195 1.922 6.272 1.842 C 6.323 1.784 6.354 1.712 6.361 1.635 L 6.361 1.628 L 6.369 1.582 L 6.373 1.566 L 6.373 0.576 C 6.373 0.455 6.365 0.345 6.319 0.261 C 6.27 0.176 6.185 0.118 6.088 0.104 L 6.08 0.103 L 6.073 0.103 L 6.07 0.103 L 6.063 0.101 C 5.199 0.034 4.332 0 3.465 0 L 3.459 0 C 2.319 0.042 1.454 0.358 0.872 0.857 C 0.311 1.331 -0.009 2.029 0 2.762 C 0 3.243 0.112 3.636 0.308 3.961 C 0.503 4.284 0.777 4.531 1.091 4.723 C 1.709 5.1 2.5 5.283 3.189 5.442 L 3.204 5.445 C 3.706 5.56 4.148 5.664 4.465 5.813 C 4.779 5.961 4.924 6.132 4.924 6.369 C 4.924 6.568 4.832 6.745 4.609 6.88 C 4.377 7.02 4.001 7.114 3.448 7.114 C 2.819 7.114 2.133 7.046 1.601 6.978 C 1.335 6.945 1.11 6.91 0.95 6.884 L 0.765 6.854 L 0.734 6.849 L 0.715 6.846 L 0.703 6.844 L 0.699 6.843 L 0.686 6.84 L 0.671 6.84 C 0.559 6.84 0.452 6.861 0.376 6.936 C 0.326 6.99 0.296 7.059 0.289 7.131 L 0.288 7.139 L 0.277 7.189 L 0.274 7.204 L 0.212 8.321 L 0.212 8.325 C 0.212 8.398 0.222 8.485 0.262 8.563 C 0.306 8.655 0.389 8.723 0.488 8.748 L 0.492 8.749 L 0.496 8.75 L 0.501 8.724 L 0.496 8.75 L 0.497 8.75 L 0.5 8.751 C 0.502 8.752 0.506 8.752 0.511 8.753 L 0.552 8.761 C 0.587 8.768 0.639 8.777 0.707 8.788 C 0.844 8.81 1.043 8.838 1.302 8.868 C 1.815 8.926 2.557 8.983 3.469 8.983 L 3.477 8.983 C 3.589 8.984 4.5 8.99 5.389 8.658 C 5.836 8.492 6.286 8.236 6.625 7.844 C 6.967 7.448 7.189 6.92 7.189 6.227 C 7.189 5.751 7.076 5.362 6.88 5.04 C 6.682 4.718 6.407 4.475 6.092 4.286 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1cg6p18\",layoutDependency:layoutDependency,layoutId:\"VaE0zrmej\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.244 12.106\" overflow=\"visible\"><path d=\"M 4.664 3.27 C 3.795 3.268 2.942 3.507 2.202 3.963 L 2.202 0.283 C 2.201 0.207 2.17 0.135 2.116 0.082 C 2.062 0.029 1.988 -0.001 1.912 0 L 0.289 0 C 0.131 -0.001 0.002 0.126 0 0.283 L 0 11.581 C 0 11.742 0.134 11.864 0.289 11.864 L 1.912 11.864 C 2.07 11.866 2.2 11.739 2.202 11.581 L 2.202 11.206 C 2.873 11.727 3.761 12.106 4.664 12.106 C 7.189 12.106 9.244 10.133 9.244 7.688 C 9.244 5.243 7.189 3.27 4.664 3.27 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-d5w7j\",layoutDependency:layoutDependency,layoutId:\"lZveFvobP\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.742 4.57\" overflow=\"visible\"><path d=\"M 2.371 4.57 C 1.062 4.57 0 3.547 0 2.285 C 0 1.024 1.061 0 2.371 0 C 3.68 0 4.742 1.023 4.742 2.285 C 4.742 3.546 3.682 4.57 2.371 4.57 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vrslpk\",layoutDependency:layoutDependency,layoutId:\"EHDw7JLsn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.105 8.835\" overflow=\"visible\"><path d=\"M 7.816 0 L 6.189 0 C 6.113 -0.001 6.04 0.029 5.985 0.082 C 5.931 0.135 5.9 0.207 5.899 0.283 L 5.899 4.954 C 5.899 5.917 5.084 6.708 4.066 6.708 L 4.038 6.708 C 3.021 6.708 2.206 5.917 2.206 4.954 L 2.206 0.283 C 2.204 0.125 2.075 -0.001 1.917 0 L 0.29 0 C 0.214 -0.001 0.141 0.029 0.086 0.082 C 0.032 0.135 0.001 0.207 0 0.283 L 0 4.954 C 0 7.103 1.814 8.835 4.038 8.835 L 4.066 8.835 C 6.291 8.835 8.105 7.103 8.105 4.954 L 8.105 0.283 C 8.103 0.125 7.974 -0.001 7.816 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c2umk8\",layoutDependency:layoutDependency,layoutId:\"WiGiV6FM0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.185 8.982\" overflow=\"visible\"><path d=\"M 6.092 4.285 C 5.474 3.912 4.682 3.732 3.991 3.577 L 3.977 3.574 C 3.476 3.46 3.035 3.359 2.717 3.211 C 2.404 3.065 2.261 2.898 2.261 2.667 C 2.261 2.467 2.336 2.291 2.514 2.151 C 2.698 2.008 3.002 1.898 3.47 1.87 C 4.27 1.87 4.889 1.889 5.308 1.908 C 5.517 1.917 5.677 1.927 5.783 1.934 L 5.904 1.941 L 5.935 1.944 L 5.941 1.944 L 5.943 1.944 L 5.951 1.946 L 5.957 1.946 C 6.081 1.946 6.194 1.922 6.271 1.842 C 6.322 1.784 6.353 1.712 6.36 1.635 L 6.361 1.628 L 6.368 1.582 L 6.373 1.566 L 6.373 0.576 C 6.373 0.455 6.365 0.345 6.318 0.261 C 6.269 0.176 6.184 0.118 6.087 0.104 L 6.079 0.103 L 6.073 0.103 L 6.07 0.103 L 6.062 0.101 C 5.198 0.034 4.331 0 3.464 0 L 3.458 0 C 2.318 0.042 1.453 0.358 0.871 0.857 C 0.311 1.331 -0.009 2.03 0 2.762 C 0 3.243 0.112 3.636 0.308 3.961 C 0.503 4.284 0.777 4.531 1.091 4.723 C 1.709 5.1 2.5 5.283 3.189 5.442 L 3.204 5.445 C 3.707 5.56 4.148 5.664 4.465 5.813 C 4.779 5.961 4.924 6.132 4.924 6.369 C 4.924 6.568 4.833 6.745 4.609 6.88 C 4.377 7.02 4.002 7.114 3.448 7.114 C 2.819 7.114 2.133 7.046 1.601 6.978 C 1.336 6.945 1.11 6.91 0.951 6.884 L 0.765 6.854 L 0.735 6.849 L 0.715 6.846 L 0.704 6.844 L 0.699 6.843 L 0.686 6.84 L 0.671 6.84 C 0.558 6.84 0.451 6.861 0.375 6.936 C 0.326 6.99 0.295 7.059 0.288 7.131 L 0.287 7.139 L 0.277 7.189 L 0.273 7.204 L 0.209 8.32 L 0.209 8.324 C 0.207 8.406 0.224 8.488 0.259 8.562 C 0.303 8.654 0.386 8.722 0.485 8.747 L 0.49 8.749 L 0.493 8.749 L 0.499 8.724 L 0.493 8.749 L 0.494 8.749 L 0.497 8.75 L 0.508 8.752 L 0.549 8.76 C 0.798 8.802 1.048 8.838 1.299 8.866 C 1.812 8.925 2.554 8.982 3.467 8.982 L 3.474 8.982 C 3.586 8.983 4.497 8.99 5.387 8.657 C 5.833 8.491 6.283 8.235 6.622 7.843 C 6.964 7.447 7.185 6.919 7.185 6.226 C 7.185 5.751 7.073 5.36 6.877 5.038 C 6.68 4.718 6.406 4.475 6.092 4.286 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16j4641\",layoutDependency:layoutDependency,layoutId:\"KXpYc85I4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.104 8.835\" overflow=\"visible\"><path d=\"M 7.814 0 L 6.188 0 C 6.112 -0.001 6.039 0.028 5.984 0.082 C 5.93 0.135 5.899 0.207 5.898 0.283 L 5.898 4.954 C 5.898 5.918 5.083 6.708 4.065 6.708 L 4.038 6.708 C 3.021 6.708 2.205 5.918 2.205 4.954 L 2.205 0.283 C 2.205 0.208 2.174 0.135 2.12 0.082 C 2.066 0.029 1.993 -0.001 1.917 0 L 0.29 0 C 0.214 -0.001 0.14 0.028 0.086 0.082 C 0.032 0.135 0.001 0.207 0 0.283 L 0 4.954 C 0 7.103 1.813 8.835 4.038 8.835 L 4.066 8.835 C 6.291 8.835 8.104 7.103 8.104 4.954 L 8.104 0.283 C 8.104 0.207 8.073 0.135 8.018 0.082 C 7.964 0.029 7.891 -0.001 7.815 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158,intrinsicWidth:626,pixelHeight:158,pixelWidth:626,sizes:\"103px\",src:\"https://framerusercontent.com/images/kqPqAnqznee8DEWmUJVz893TaYw.webp\",srcSet:\"https://framerusercontent.com/images/kqPqAnqznee8DEWmUJVz893TaYw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kqPqAnqznee8DEWmUJVz893TaYw.webp 626w\"},className:\"framer-1qdh6q\",\"data-framer-name\":\"Soneium\",layoutDependency:layoutDependency,layoutId:\"hOCPI4zWh\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:158,pixelWidth:760,sizes:\"123px\",src:\"https://framerusercontent.com/images/GUkg2YGyZTZ30UP44c421H7clNA.png\",srcSet:\"https://framerusercontent.com/images/GUkg2YGyZTZ30UP44c421H7clNA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GUkg2YGyZTZ30UP44c421H7clNA.png 760w\"},className:\"framer-1d2ayvt\",\"data-framer-name\":\"solayer\",layoutDependency:layoutDependency,layoutId:\"Jp85neMHP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:94,pixelHeight:64,pixelWidth:188,src:\"https://framerusercontent.com/images/rlMbm51XEd4GvIgVG6L8wbySA.png\"},className:\"framer-1pw5008\",\"data-framer-name\":\"Plume\",layoutDependency:layoutDependency,layoutId:\"AqJv2UlGK\"})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f9flL.framer-6o6a67, .framer-f9flL .framer-6o6a67 { display: block; }\",\".framer-f9flL.framer-hwapoj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 37px; justify-content: center; padding: 0px; position: relative; width: 406px; }\",\".framer-f9flL .framer-1xgfbbm-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-f9flL .framer-1cg0lgp { height: 32px; position: relative; width: 122px; }\",\".framer-f9flL .framer-1cm2kqp { height: 32px; overflow: hidden; position: relative; width: 147px; }\",\".framer-f9flL .framer-1n01mgt { aspect-ratio: 4.59375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-f9flL .framer-q356l3, .framer-f9flL .framer-1osp6fc, .framer-f9flL .framer-wyzdiu, .framer-f9flL .framer-1pk86ay { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 31px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-f9flL .framer-bum4ss { flex: none; height: 18px; position: relative; width: 102px; }\",\".framer-f9flL .framer-1gx9559 { flex: none; height: 20px; position: relative; width: 77px; }\",\".framer-f9flL .framer-qqe10 { flex: none; height: 16px; position: relative; width: 99px; }\",\".framer-f9flL .framer-1k7iofv { flex: none; height: 15px; position: relative; width: 92px; }\",\".framer-f9flL .framer-1prq3ug { cursor: pointer; height: 24px; overflow: hidden; position: relative; width: 86px; }\",\".framer-f9flL .framer-1o174mh { height: 24px; left: 1px; position: absolute; top: 0px; width: 85px; }\",\".framer-f9flL .framer-29cyn6 { height: 24px; left: 0px; position: absolute; top: 0px; width: 85px; }\",\".framer-f9flL .framer-18h724r { height: 12px; left: 24px; position: absolute; top: 6px; width: 8px; }\",\".framer-f9flL .framer-1orgp6d { height: 4px; left: 33px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-1lzs6ug { height: 12px; left: 33px; position: absolute; top: 7px; width: 4px; }\",\".framer-f9flL .framer-7m4y3e { height: 18px; left: 39px; position: absolute; top: 6px; width: 13px; }\",\".framer-f9flL .framer-1csmig6 { height: 7px; left: 42px; position: absolute; top: 9px; width: 7px; }\",\".framer-f9flL .framer-16h1ptq { height: 18px; left: 68px; position: absolute; top: 1px; width: 4px; }\",\".framer-f9flL .framer-rq82q { height: 13px; left: 74px; position: absolute; top: 6px; width: 12px; }\",\".framer-f9flL .framer-ma4bya { height: 2px; left: 77px; position: absolute; top: 9px; width: 5px; }\",\".framer-f9flL .framer-zffws0 { height: 18px; left: 54px; position: absolute; top: 6px; width: 13px; }\",\".framer-f9flL .framer-1krn29r { height: 7px; left: 57px; position: absolute; top: 9px; width: 7px; }\",\".framer-f9flL .framer-z5139d { height: 21px; left: 0px; position: absolute; top: 2px; width: 19px; }\",\".framer-f9flL .framer-156x5mr { height: 31px; overflow: hidden; position: relative; width: 63px; }\",\".framer-f9flL .framer-1tb4tyf, .framer-f9flL .framer-afl4nk { height: 31px; left: 0px; position: absolute; top: 0px; width: 63px; }\",\".framer-f9flL .framer-1ec68vq { height: 12px; left: 23px; position: absolute; top: 19px; width: 13px; }\",\".framer-f9flL .framer-16cz5wg { height: 16px; left: 0px; position: absolute; top: 16px; width: 22px; }\",\".framer-f9flL .framer-1jzyvc5 { height: 16px; left: 0px; position: absolute; top: 0px; width: 22px; }\",\".framer-f9flL .framer-tkdk7j { height: 12px; left: 37px; position: absolute; top: 19px; width: 12px; }\",\".framer-f9flL .framer-1n9sy29 { height: 14px; left: 50px; position: absolute; top: 17px; width: 4px; }\",\".framer-f9flL .framer-1qo2f6l { height: 12px; left: 54px; position: absolute; top: 19px; width: 10px; }\",\".framer-f9flL .framer-18cbw9a { height: 12px; left: 50px; position: absolute; top: 4px; width: 13px; }\",\".framer-f9flL .framer-vxjffr { height: 14px; left: 37px; position: absolute; top: 2px; width: 12px; }\",\".framer-f9flL .framer-1rd0ewu { height: 12px; left: 23px; position: absolute; top: 4px; width: 14px; }\",\".framer-f9flL .framer-e2uwl1 { height: 2px; left: 27px; position: absolute; top: 7px; width: 6px; }\",\".framer-f9flL .framer-1g7ehj8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-f9flL .framer-1nzov4u { height: 29px; position: relative; width: 113px; }\",\".framer-f9flL .framer-2o95ji, .framer-f9flL .framer-1srybpy { height: 29px; left: 0px; position: absolute; top: 0px; width: 113px; }\",\".framer-f9flL .framer-15conro { height: 29px; left: 0px; position: absolute; top: 0px; width: 25px; }\",\".framer-f9flL .framer-1xy0923 { height: 17px; left: 6px; position: absolute; top: 6px; width: 15px; }\",\".framer-f9flL .framer-r4ub74 { height: 15px; left: 32px; position: absolute; top: 7px; width: 13px; }\",\".framer-f9flL .framer-2qijfi { height: 14px; left: 46px; position: absolute; top: 8px; width: 10px; }\",\".framer-f9flL .framer-r2wfdw { height: 11px; left: 57px; position: absolute; top: 11px; width: 9px; }\",\".framer-f9flL .framer-2zf72m { height: 4px; left: 59px; position: absolute; top: 17px; width: 4px; }\",\".framer-f9flL .framer-1iojj51 { height: 11px; left: 68px; position: absolute; top: 11px; width: 3px; }\",\".framer-f9flL .framer-1847kjp { height: 11px; left: 72px; position: absolute; top: 11px; width: 10px; }\",\".framer-f9flL .framer-1q91w85 { height: 15px; left: 83px; position: absolute; top: 7px; width: 3px; }\",\".framer-f9flL .framer-laxy8g { height: 11px; left: 88px; position: absolute; top: 11px; width: 3px; }\",\".framer-f9flL .framer-n7r5q2 { height: 11px; left: 92px; position: absolute; top: 11px; width: 10px; }\",\".framer-f9flL .framer-j3mhh9 { height: 14px; left: 104px; position: absolute; top: 8px; width: 10px; }\",\".framer-f9flL .framer-1p8kzj4 { height: 3px; left: 68px; position: absolute; top: 7px; width: 3px; }\",\".framer-f9flL .framer-19v4oks { height: 3px; left: 88px; position: absolute; top: 7px; width: 3px; }\",\".framer-f9flL .framer-1p0hfie { height: 30px; overflow: hidden; position: relative; width: 113px; }\",\".framer-f9flL .framer-1eh8mg4, .framer-f9flL .framer-a5hdq4 { height: 30px; left: 0px; position: absolute; top: 0px; width: 112px; }\",\".framer-f9flL .framer-ka1ukr { height: 30px; left: 0px; position: absolute; top: 0px; width: 46px; }\",\".framer-f9flL .framer-1fawlbl { height: 11px; left: 15px; position: absolute; top: 0px; width: 3px; }\",\".framer-f9flL .framer-mcdv9a { height: 11px; left: 6px; position: absolute; top: 0px; width: 8px; }\",\".framer-f9flL .framer-blmdrv { height: 4px; left: 1px; position: absolute; top: 8px; width: 6px; }\",\".framer-f9flL .framer-cxa162 { height: 8px; left: 19px; position: absolute; top: 6px; width: 11px; }\",\".framer-f9flL .framer-jf4f8b { height: 6px; left: 18px; position: absolute; top: 1px; width: 4px; }\",\".framer-f9flL .framer-ppu63g { height: 9px; left: 17px; position: absolute; top: 3px; width: 8px; }\",\".framer-f9flL .framer-1jawzph { height: 8px; left: 3px; position: absolute; top: 5px; width: 9px; }\",\".framer-f9flL .framer-eqfm5e { height: 3px; left: 0px; position: absolute; top: 13px; width: 10px; }\",\".framer-f9flL .framer-liq3kq { height: 4px; left: 24px; position: absolute; top: 18px; width: 6px; }\",\".framer-f9flL .framer-1xhe1g7 { height: 11px; left: 16px; position: absolute; top: 19px; width: 8px; }\",\".framer-f9flL .framer-1w5i1in { height: 8px; left: 0px; position: absolute; top: 17px; width: 11px; }\",\".framer-f9flL .framer-nlkc7q { height: 6px; left: 8px; position: absolute; top: 24px; width: 4px; }\",\".framer-f9flL .framer-1o7plpy { height: 9px; left: 5px; position: absolute; top: 19px; width: 8px; }\",\".framer-f9flL .framer-189bv55 { height: 8px; left: 18px; position: absolute; top: 18px; width: 9px; }\",\".framer-f9flL .framer-ub9sl1 { height: 11px; left: 13px; position: absolute; top: 20px; width: 3px; }\",\".framer-f9flL .framer-os728v { height: 3px; left: 20px; position: absolute; top: 15px; width: 10px; }\",\".framer-f9flL .framer-1dt5ykk { height: 10px; left: 38px; position: absolute; top: 6px; width: 8px; }\",\".framer-f9flL .framer-1p2n0sv { height: 10px; left: 77px; position: absolute; top: 6px; width: 2px; }\",\".framer-f9flL .framer-1l4xynd { height: 10px; left: 46px; position: absolute; top: 6px; width: 31px; }\",\".framer-f9flL .framer-1a7ncsp { height: 10px; left: 23px; position: absolute; top: 0px; width: 9px; }\",\".framer-f9flL .framer-151xbfn { height: 10px; left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-f9flL .framer-1g8lcg2 { height: 10px; left: 55px; position: absolute; top: 6px; width: 12px; }\",\".framer-f9flL .framer-n1ruom, .framer-f9flL .framer-1qpai8t { height: 10px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-f9flL .framer-11yta6e { height: 3px; left: 5px; position: absolute; top: 2px; width: 3px; }\",\".framer-f9flL .framer-1oja9si { height: 10px; left: 80px; position: absolute; top: 6px; width: 32px; }\",\".framer-f9flL .framer-67mq8j { height: 10px; left: 13px; position: absolute; top: 0px; width: 9px; }\",\".framer-f9flL .framer-r3gell { height: 10px; left: 23px; position: absolute; top: 0px; width: 10px; }\",\".framer-f9flL .framer-1y7sew1 { height: 7px; left: 38px; position: absolute; top: 18px; width: 42px; }\",\".framer-f9flL .framer-aezws5 { height: 6px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-a020zn { height: 6px; left: 6px; position: absolute; top: 0px; width: 4px; }\",\".framer-f9flL .framer-1tqw8n0 { height: 6px; left: 10px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-1wf1vgx { height: 6px; left: 15px; position: absolute; top: 0px; width: 9px; }\",\".framer-f9flL .framer-s3hbr2 { height: 7px; left: 24px; position: absolute; top: 0px; width: 7px; }\",\".framer-f9flL .framer-5qbye6 { height: 4px; left: 25px; position: absolute; top: 2px; width: 4px; }\",\".framer-f9flL .framer-1pv0e6 { height: 6px; left: 31px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-1l1igv9 { height: 2px; left: 33px; position: absolute; top: 2px; width: 2px; }\",\".framer-f9flL .framer-i1i3le { height: 6px; left: 37px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-6one2g { height: 20px; overflow: hidden; position: relative; width: 81px; }\",\".framer-f9flL .framer-1o9wyst { height: 20px; left: 0px; position: absolute; top: 0px; width: 80px; }\",\".framer-f9flL .framer-1euct1o { height: 20px; left: 0px; position: absolute; top: 0px; width: 20px; }\",\".framer-f9flL .framer-1l6i8ss { height: 3px; left: 7px; position: absolute; top: 11px; width: 11px; }\",\".framer-f9flL .framer-1iqjgv { height: 3px; left: 7px; position: absolute; top: 7px; width: 11px; }\",\".framer-f9flL .framer-1r4m9mt { height: 7px; left: 3px; position: absolute; top: 2px; width: 14px; }\",\".framer-f9flL .framer-d1ujve { height: 7px; left: 3px; position: absolute; top: 11px; width: 14px; }\",\".framer-f9flL .framer-1y9ow4w { height: 12px; left: 24px; position: absolute; top: 4px; width: 18px; }\",\".framer-f9flL .framer-l6uhma { height: 12px; left: 42px; position: absolute; top: 4px; width: 12px; }\",\".framer-f9flL .framer-mev7l2 { height: 7px; left: 45px; position: absolute; top: 7px; width: 7px; }\",\".framer-f9flL .framer-153p5b0 { height: 12px; left: 56px; position: absolute; top: 5px; width: 7px; }\",\".framer-f9flL .framer-n5zc44 { height: 16px; left: 64px; position: absolute; top: 0px; width: 4px; }\",\".framer-f9flL .framer-189hgng { height: 16px; left: 68px; position: absolute; top: 0px; width: 12px; }\",\".framer-f9flL .framer-1pm3dfi { height: 8px; left: 71px; position: absolute; top: 7px; width: 7px; }\",\".framer-f9flL .framer-1hfpc4i { height: 28px; overflow: hidden; position: relative; width: 54px; }\",\".framer-f9flL .framer-44ot97, .framer-f9flL .framer-nu2j7f { height: 28px; left: 0px; position: absolute; top: 0px; width: 54px; }\",\".framer-f9flL .framer-13xzl3s { height: 18px; left: 25px; position: absolute; top: 5px; width: 29px; }\",\".framer-f9flL .framer-763m1k { height: 13px; left: 14px; position: absolute; top: 5px; width: 10px; }\",\".framer-f9flL .framer-1478npv { height: 18px; left: 0px; position: absolute; top: 1px; width: 13px; }\",\".framer-f9flL .framer-1ux07k0 { height: 3px; left: 26px; position: absolute; top: 0px; width: 3px; }\",\".framer-f9flL .framer-1bfc9ts { height: 13px; left: 26px; position: absolute; top: 5px; width: 2px; }\",\".framer-f9flL .framer-13keozv, .framer-f9flL .framer-1w0fcz0 { height: 28px; left: 0px; position: absolute; top: 0px; width: 22px; }\",\".framer-f9flL .framer-15efeeh { height: 19px; left: 8px; position: absolute; top: 4px; width: 12px; }\",\".framer-f9flL .framer-1h33oew { height: 15px; left: 3px; position: absolute; top: 11px; width: 12px; }\",\".framer-f9flL .framer-1egdyal { height: 18px; overflow: hidden; position: relative; width: 58px; }\",\".framer-f9flL .framer-w7hxw5 { height: 18px; left: 0px; position: absolute; top: 0px; width: 58px; }\",\".framer-f9flL .framer-e6f8ar { height: 18px; left: 41px; position: absolute; top: 0px; width: 17px; }\",\".framer-f9flL .framer-1alkdxl, .framer-f9flL .framer-18ok7xt { height: 18px; left: 0px; position: absolute; top: 0px; width: 17px; }\",\".framer-f9flL .framer-1a9z5bl { height: 8px; left: 1px; position: absolute; top: 0px; width: 8px; }\",\".framer-f9flL .framer-k1cybv { height: 9px; left: 9px; position: absolute; top: 9px; width: 8px; }\",\".framer-f9flL .framer-iai6yc { height: 18px; left: 27px; position: absolute; top: 0px; width: 14px; }\",\".framer-f9flL .framer-dwksbx, .framer-f9flL .framer-rzg8zn, .framer-f9flL .framer-7be02g { height: 18px; left: 0px; position: absolute; top: 0px; width: 14px; }\",\".framer-f9flL .framer-1uc1t7h, .framer-f9flL .framer-21mewv { height: 8px; left: 3px; position: absolute; top: 8px; width: 8px; }\",\".framer-f9flL .framer-hv5235 { height: 18px; left: 15px; position: absolute; top: 0px; width: 17px; }\",\".framer-f9flL .framer-105fqtq { height: 9px; left: 0px; position: absolute; top: 0px; width: 8px; }\",\".framer-f9flL .framer-1s8hnue { height: 24px; overflow: hidden; position: relative; width: 101px; }\",\".framer-f9flL .framer-17mfun3 { height: 23px; left: 0px; position: absolute; top: 1px; width: 100px; }\",\".framer-f9flL .framer-1xeiosj { height: 23px; left: 0px; position: absolute; top: 0px; width: 100px; }\",\".framer-f9flL .framer-1h8mau4 { height: 15px; left: 29px; position: absolute; top: 4px; width: 72px; }\",\".framer-f9flL .framer-1xmrzde { height: 12px; left: 49px; position: absolute; top: 4px; width: 11px; }\",\".framer-f9flL .framer-tv4usn { height: 3px; left: 51px; position: absolute; top: 6px; width: 7px; }\",\".framer-f9flL .framer-12g9rhc { height: 12px; left: 14px; position: absolute; top: 4px; width: 12px; }\",\".framer-f9flL .framer-p5j9w0 { height: 7px; left: 16px; position: absolute; top: 6px; width: 7px; }\",\".framer-f9flL .framer-9ky1bz { height: 11px; left: 62px; position: absolute; top: 4px; width: 10px; }\",\".framer-f9flL .framer-v21djt { height: 11px; left: 27px; position: absolute; top: 4px; width: 10px; }\",\".framer-f9flL .framer-99ij7r { height: 15px; left: 0px; position: absolute; top: 0px; width: 12px; }\",\".framer-f9flL .framer-stdd0l { height: 12px; left: 39px; position: absolute; top: 4px; width: 9px; }\",\".framer-f9flL .framer-psffma, .framer-f9flL .framer-fbfmgn { height: 23px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-f9flL .framer-3hq6xu { height: 8px; left: 10px; position: absolute; top: 2px; width: 7px; }\",\".framer-f9flL .framer-13pzgoy { height: 5px; left: 9px; position: absolute; top: 9px; width: 6px; }\",\".framer-f9flL .framer-6tceuz { height: 2px; left: 2px; position: absolute; top: 8px; width: 6px; }\",\".framer-f9flL .framer-4qe80u { height: 7px; left: 7px; position: absolute; top: 15px; width: 7px; }\",\".framer-f9flL .framer-1gfsp03 { height: 3px; left: 16px; position: absolute; top: 12px; width: 7px; }\",\".framer-f9flL .framer-1p6vms { height: 24px; overflow: hidden; position: relative; width: 107px; }\",\".framer-f9flL .framer-1gth1mt { height: 24px; left: 0px; position: absolute; top: 0px; width: 106px; }\",\".framer-f9flL .framer-132s52q { height: 18px; left: 0px; position: absolute; top: 7px; width: 33px; }\",\".framer-f9flL .framer-1eb2l5i { height: 5px; left: 5px; position: absolute; top: 5px; width: 7px; }\",\".framer-f9flL .framer-1vaojb1 { height: 5px; left: 0px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-1t6y0ga { height: 2px; left: 5px; position: absolute; top: 13px; width: 2px; }\",\".framer-f9flL .framer-o3ms7k { height: 5px; left: 29px; position: absolute; top: 0px; width: 5px; }\",\".framer-f9flL .framer-tmvc62 { height: 5px; left: 22px; position: absolute; top: 5px; width: 7px; }\",\".framer-f9flL .framer-aucoxi { height: 13px; left: 7px; position: absolute; top: 5px; width: 20px; }\",\".framer-f9flL .framer-hrdljj { height: 2px; left: 27px; position: absolute; top: 13px; width: 2px; }\",\".framer-f9flL .framer-6156ae { height: 7px; left: 9px; position: absolute; top: 0px; width: 16px; }\",\".framer-f9flL .framer-12x5xxy { height: 12px; left: 42px; position: absolute; top: 8px; width: 65px; }\",\".framer-f9flL .framer-9v65s8 { height: 9px; left: 20px; position: absolute; top: 3px; width: 14px; }\",\".framer-f9flL .framer-kxuumh { height: 9px; left: 36px; position: absolute; top: 3px; width: 7px; }\",\".framer-f9flL .framer-1cg6p18 { height: 12px; left: 55px; position: absolute; top: 0px; width: 9px; }\",\".framer-f9flL .framer-d5w7j { height: 5px; left: 58px; position: absolute; top: 6px; width: 5px; }\",\".framer-f9flL .framer-1vrslpk { height: 9px; left: 45px; position: absolute; top: 4px; width: 8px; }\",\".framer-f9flL .framer-c2umk8 { height: 9px; left: 0px; position: absolute; top: 3px; width: 7px; }\",\".framer-f9flL .framer-16j4641 { height: 9px; left: 10px; position: absolute; top: 4px; width: 8px; }\",\".framer-f9flL .framer-1qdh6q { aspect-ratio: 3.962025316455696 / 1; height: var(--framer-aspect-ratio-supported, 26px); overflow: visible; position: relative; width: 103px; }\",\".framer-f9flL .framer-1d2ayvt { height: 26px; position: relative; width: 123px; }\",\".framer-f9flL .framer-1pw5008 { aspect-ratio: 2.9375 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 88px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 406\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerhFXtMncIX=withCSS(Component,css,\"framer-f9flL\");export default FramerhFXtMncIX;FramerhFXtMncIX.displayName=\"Ticker/ Logo Ticker Home\";FramerhFXtMncIX.defaultProps={height:37,width:406};addFonts(FramerhFXtMncIX,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhFXtMncIX\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"37\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"406\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hFXtMncIX.map", "// Generated by Framer (890879b)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,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 TickerLogoTickerHome from\"https://framerusercontent.com/modules/dpKWl78gnZ5Un0wd88ts/xtJUqPjxMsJ5a4ayV2OZ/hFXtMncIX.js\";const TickerLogoTickerHomeFonts=getFonts(TickerLogoTickerHome);const serializationHash=\"framer-NNaIm\";const variantClassNames={IlORLISkK:\"framer-v-12xhq4p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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 getProps=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"IlORLISkK\",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-12xhq4p\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IlORLISkK\",ref:refBinding,style:{mask:\"linear-gradient(90deg, rgba(0,0,0,0) 3%, rgba(0,0,0,1) 8%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 97%) add\",WebkitMask:\"linear-gradient(90deg, rgba(0,0,0,0) 3%, rgba(0,0,0,1) 8%, rgba(0, 0, 0, 1) 92%, rgba(0, 0, 0, 0) 97%) add\",...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`,y:(componentViewport?.y||0)+(0+((componentViewport?.height||37)-0-37)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c6tb36-container\",layoutDependency:layoutDependency,layoutId:\"bDHDeRRva-container\",nodeId:\"bDHDeRRva\",rendersWithMotion:true,scopeId:\"saFNYO4Rl\",children:/*#__PURE__*/_jsx(TickerLogoTickerHome,{height:\"100%\",id:\"bDHDeRRva\",layoutId:\"bDHDeRRva\",style:{width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NNaIm.framer-1c5ld6k, .framer-NNaIm .framer-1c5ld6k { display: block; }\",\".framer-NNaIm.framer-12xhq4p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1120px; }\",\".framer-NNaIm .framer-1c6tb36-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramersaFNYO4Rl=withCSS(Component,css,\"framer-NNaIm\");export default FramersaFNYO4Rl;FramersaFNYO4Rl.displayName=\"Partner Logos\";FramersaFNYO4Rl.defaultProps={height:37,width:1120};addFonts(FramersaFNYO4Rl,[{explicitInter:true,fonts:[]},...TickerLogoTickerHomeFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersaFNYO4Rl\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerIntrinsicHeight\":\"37\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapk2fvrr", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "SVG", "u", "Image2", "css", "FramerhFXtMncIX", "withCSS", "hFXtMncIX_default", "addFonts", "TickerFonts", "TickerLogoTickerHomeFonts", "getFonts", "hFXtMncIX_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "hFXtMncIX_default", "css", "FramersaFNYO4Rl", "withCSS", "saFNYO4Rl_default", "addFonts", "TickerLogoTickerHomeFonts"]
}
