{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/VhRrow1tXDCbjjxj9Oqd/LeCelPfxpUVetuvqfO3P/VhfwXZhzk.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (2add0ca)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,SVG,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"RD80m1D5p\",\"WbkUT5yE3\",\"eajsh3Y6Z\",\"fnmwwBd_1\"];const variantClassNames={eajsh3Y6Z:\"framer-v-1ae26ai\",fnmwwBd_1:\"framer-v-19p3mi3\",RD80m1D5p:\"framer-v-1t22sak\",WbkUT5yE3:\"framer-v-aha6l3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"RD80m1D5p\",\"Variant 3\":\"eajsh3Y6Z\",\"Variant Hide 2\":\"fnmwwBd_1\",\"Variant Hide\":\"WbkUT5yE3\"};const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/ _jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"RD80m1D5p\",tap2:H3MRpl190,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"RD80m1D5p\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1hknzz7=activeVariantCallback(async(...args)=>{if(H3MRpl190){const res=await H3MRpl190(...args);if(res===false)return false;}await delay(()=>setVariant(\"WbkUT5yE3\"),100);});const onTap4buf0m=activeVariantCallback(async(...args)=>{if(H3MRpl190){const res=await H3MRpl190(...args);if(res===false)return false;}await delay(()=>setVariant(\"RD80m1D5p\"),100);});const onTap123op4y=activeVariantCallback(async(...args)=>{if(H3MRpl190){const res=await H3MRpl190(...args);if(res===false)return false;}await delay(()=>setVariant(\"fnmwwBd_1\"),100);});const onTapmgfard=activeVariantCallback(async(...args)=>{if(H3MRpl190){const res=await H3MRpl190(...args);if(res===false)return false;}await delay(()=>setVariant(\"eajsh3Y6Z\"),100);});const isDisplayed=()=>{if(baseVariant===\"eajsh3Y6Z\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"fnmwwBd_1\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"WbkUT5yE3\")return true;return false;};const isDisplayed3=()=>{if([\"WbkUT5yE3\",\"eajsh3Y6Z\",\"fnmwwBd_1\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-cqs8B\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Transition,{value:transition,children:/*#__PURE__*/ _jsxs(motion.button,{...restProps,className:cx(\"framer-1t22sak\",className),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"RD80m1D5p\",onTap:onTap1hknzz7,ref:ref,style:{...style},...addPropertyOverrides({eajsh3Y6Z:{\"data-framer-name\":\"Variant 3\",onTap:onTap123op4y},fnmwwBd_1:{\"data-framer-name\":\"Variant Hide 2\",onTap:onTapmgfard},WbkUT5yE3:{\"data-framer-name\":\"Variant Hide\",onTap:onTap4buf0m}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/ _jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:239,pixelHeight:20,pixelWidth:239,src:new URL(\"assets/GyuqsC48zSkQIR5RcPcOIctqEmA.svg\",\"https://framerusercontent.com/modules/VhRrow1tXDCbjjxj9Oqd/LeCelPfxpUVetuvqfO3P/VhfwXZhzk.js\").href},className:\"framer-xoxak1\",\"data-framer-name\":\"Frame_2608511_1_\",layoutDependency:layoutDependency,layoutId:\"qz9pUHaCZ\"}),isDisplayed1()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-14pjk0h\",\"data-framer-name\":\"Frame_2608502_1_\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"v_oXk8RsZ\",svg:'<svg width=\"80\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"79\" height=\"19\" rx=\"3.5\" fill=\"#fff\" stroke=\"#919191\"/><path d=\"M8.581 13.064a3.9 3.9 0 0 1-1.224-.192c-.389-.133-.696-.304-.92-.512l.296-.624c.214.187.486.341.816.464.331.123.675.184 1.032.184.326 0 .59-.037.792-.112.203-.075.352-.176.448-.304a.748.748 0 0 0 .144-.448.6.6 0 0 0-.192-.464 1.306 1.306 0 0 0-.488-.28 4.788 4.788 0 0 0-.656-.192c-.24-.053-.482-.115-.728-.184a3.55 3.55 0 0 1-.664-.28 1.381 1.381 0 0 1-.48-.448c-.122-.192-.184-.437-.184-.736 0-.288.075-.552.224-.792.155-.245.39-.44.704-.584.32-.15.726-.224 1.216-.224.326 0 .648.043.968.128.32.085.598.208.832.368l-.264.64a2.496 2.496 0 0 0-.76-.344 2.873 2.873 0 0 0-.776-.112c-.314 0-.573.04-.776.12a.973.973 0 0 0-.448.32.779.779 0 0 0-.136.448c0 .197.062.355.184.472.128.117.291.21.488.28.203.07.424.133.664.192.24.053.48.115.72.184.246.07.467.16.664.272.203.112.366.261.488.448.123.187.184.427.184.72 0 .283-.077.547-.232.792-.154.24-.394.435-.72.584-.32.144-.725.216-1.216.216Zm5.49-4.344c.346 0 .65.067.911.2.267.133.475.336.624.608.15.272.224.616.224 1.032V13h-.768v-2.352c0-.41-.101-.72-.304-.928-.197-.208-.477-.312-.84-.312-.272 0-.51.053-.712.16a1.12 1.12 0 0 0-.472.472c-.107.208-.16.467-.16.776V13h-.768V7.064h.768v2.84l-.152-.304c.139-.277.352-.493.64-.648a2.099 2.099 0 0 1 1.008-.232Zm4.996 4.328a2.27 2.27 0 0 1-1.136-.28 2.085 2.085 0 0 1-.784-.768 2.19 2.19 0 0 1-.288-1.12c0-.421.096-.795.288-1.12a2.03 2.03 0 0 1 .784-.76 2.27 2.27 0 0 1 1.136-.28c.422 0 .798.093 1.128.28.336.181.598.435.784.76.192.32.288.693.288 1.12 0 .421-.096.795-.288 1.12a2.01 2.01 0 0 1-.784.768c-.33.187-.706.28-1.128.28Zm0-.672c.272 0 .515-.061.728-.184.22-.123.39-.296.512-.52a1.65 1.65 0 0 0 .184-.792c0-.304-.06-.565-.184-.784a1.298 1.298 0 0 0-.512-.52 1.434 1.434 0 0 0-.728-.184 1.37 1.37 0 0 0-1.24.704c-.128.219-.192.48-.192.784 0 .299.064.563.192.792a1.37 1.37 0 0 0 1.24.704Zm4.041.624-1.576-4.24h.728l1.4 3.84h-.344l1.456-3.84h.648l1.424 3.84h-.336l1.432-3.84h.688L27.044 13h-.736l-1.336-3.504h.224L23.844 13h-.736Zm10.192.064a3.9 3.9 0 0 1-1.224-.192c-.39-.133-.696-.304-.92-.512l.296-.624a2.6 2.6 0 0 0 .816.464c.33.123.675.184 1.032.184.326 0 .59-.037.792-.112.203-.075.352-.176.448-.304a.748.748 0 0 0 .144-.448.6.6 0 0 0-.192-.464 1.305 1.305 0 0 0-.488-.28 4.786 4.786 0 0 0-.656-.192c-.24-.053-.483-.115-.728-.184a3.55 3.55 0 0 1-.664-.28 1.382 1.382 0 0 1-.48-.448c-.122-.192-.184-.437-.184-.736 0-.288.075-.552.224-.792.155-.245.39-.44.704-.584.32-.15.726-.224 1.216-.224.325 0 .648.043.968.128.32.085.597.208.832.368l-.264.64a2.495 2.495 0 0 0-.76-.344 2.872 2.872 0 0 0-.776-.112c-.315 0-.573.04-.776.12a.973.973 0 0 0-.448.32.78.78 0 0 0-.136.448c0 .197.062.355.184.472.128.117.29.21.488.28.203.07.424.133.664.192.24.053.48.115.72.184.245.07.467.16.664.272.203.112.365.261.488.448s.184.427.184.72c0 .283-.077.547-.232.792-.154.24-.394.435-.72.584-.32.144-.725.216-1.216.216Zm5.04-.016a2.27 2.27 0 0 1-1.135-.28A2.084 2.084 0 0 1 36.42 12a2.19 2.19 0 0 1-.288-1.12c0-.421.096-.795.288-1.12.192-.325.453-.579.784-.76.33-.187.71-.28 1.136-.28.421 0 .797.093 1.128.28.336.181.597.435.784.76.192.32.288.693.288 1.12 0 .421-.096.795-.288 1.12a2.011 2.011 0 0 1-.784.768 2.25 2.25 0 0 1-1.128.28Zm0-.672c.273 0 .515-.061.729-.184a1.3 1.3 0 0 0 .512-.52c.122-.23.184-.493.184-.792 0-.304-.062-.565-.184-.784a1.3 1.3 0 0 0-.512-.52 1.434 1.434 0 0 0-.728-.184 1.37 1.37 0 0 0-1.24.704c-.128.219-.192.48-.192.784 0 .299.064.563.192.792a1.37 1.37 0 0 0 1.24.704Zm5.047.672a2.19 2.19 0 0 1-.96-.2 1.466 1.466 0 0 1-.64-.608c-.15-.277-.224-.624-.224-1.04V8.76h.768v2.352c0 .416.099.728.296.936.203.208.485.312.848.312.267 0 .499-.053.696-.16a1.13 1.13 0 0 0 .456-.48 1.7 1.7 0 0 0 .16-.768V8.76h.768V13h-.728v-1.144l.12.304a1.484 1.484 0 0 1-.624.656c-.277.155-.59.232-.936.232Zm3.63-.048V8.76h.736v1.152l-.072-.288c.117-.293.315-.517.592-.672.277-.155.619-.232 1.024-.232v.744a.583.583 0 0 0-.096-.008h-.08c-.41 0-.736.123-.976.368s-.36.6-.36 1.064V13h-.768Zm5.036.048a2.37 2.37 0 0 1-1.16-.28A2.068 2.068 0 0 1 50.1 12a2.162 2.162 0 0 1-.288-1.12c0-.421.096-.795.288-1.12a2.01 2.01 0 0 1 .792-.76 2.37 2.37 0 0 1 1.16-.28c.384 0 .725.077 1.024.232.304.15.538.373.704.672l-.584.376a1.265 1.265 0 0 0-.512-.456 1.381 1.381 0 0 0-.64-.152c-.278 0-.526.061-.744.184a1.353 1.353 0 0 0-.52.52c-.128.219-.192.48-.192.784 0 .304.064.568.192.792.128.224.3.397.52.52.218.123.466.184.744.184.229 0 .442-.048.64-.144a1.33 1.33 0 0 0 .512-.464l.584.368c-.166.293-.4.52-.704.68-.3.155-.64.232-1.024.232Zm4.547 0a2.49 2.49 0 0 1-1.2-.28 2.053 2.053 0 0 1-.8-.768 2.21 2.21 0 0 1-.28-1.12c0-.421.091-.795.272-1.12a2 2 0 0 1 .76-.76c.326-.187.691-.28 1.096-.28.411 0 .774.09 1.088.272.315.181.56.437.736.768.182.325.272.707.272 1.144 0 .032-.002.07-.008.112a.854.854 0 0 1-.008.12H54.92v-.552h3.208l-.312.192a1.426 1.426 0 0 0-.168-.728 1.248 1.248 0 0 0-.488-.496 1.348 1.348 0 0 0-.712-.184c-.266 0-.504.061-.712.184-.208.117-.37.285-.488.504a1.502 1.502 0 0 0-.176.736v.128c0 .283.064.536.192.76.134.219.318.39.552.512.235.123.504.184.808.184.251 0 .478-.043.68-.128a1.49 1.49 0 0 0 .544-.384l.424.496a1.851 1.851 0 0 1-.72.512c-.282.117-.6.176-.952.176Zm4.227 0a3.49 3.49 0 0 1-1.008-.144c-.315-.096-.563-.213-.744-.352l.32-.608c.181.123.405.227.672.312.267.085.538.128.816.128.357 0 .613-.05.768-.152a.476.476 0 0 0 .24-.424.373.373 0 0 0-.144-.312.983.983 0 0 0-.384-.168 5.41 5.41 0 0 0-.52-.096 10.93 10.93 0 0 1-.576-.112 2.572 2.572 0 0 1-.528-.192c-.16-.085-.288-.2-.384-.344-.096-.15-.144-.347-.144-.592 0-.256.072-.48.216-.672.144-.192.346-.339.608-.44.267-.107.581-.16.944-.16.277 0 .557.035.84.104.288.064.523.157.704.28l-.328.608a1.812 1.812 0 0 0-.6-.264 2.767 2.767 0 0 0-.624-.072c-.336 0-.587.056-.752.168-.166.107-.248.245-.248.416 0 .144.048.256.144.336.101.075.23.133.384.176.16.043.336.08.528.112.192.027.384.064.576.112.192.043.365.104.52.184.16.08.288.192.384.336.101.144.152.336.152.576 0 .256-.075.477-.224.664-.15.187-.36.333-.632.44a2.8 2.8 0 0 1-.976.152ZM67.207 8a.5.5 0 0 0-.353.854l2.792 2.792a.5.5 0 0 0 .708 0l2.792-2.792A.5.5 0 0 0 72.793 8h-5.586Z\" fill=\"#2D85FF\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1qyd66d\",\"data-framer-name\":\"Frame_2608502_1_\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:80,layoutDependency:layoutDependency,layoutId:\"wakMtXnE0\",style:{filter:\"drop-shadow(3px 4px 4px rgba(0,0,0,0.25))\",WebkitFilter:\"drop-shadow(3px 4px 4px rgba(0,0,0,0.25))\"},svg:'<svg width=\"80\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\".5\" y=\".5\" width=\"79\" height=\"19\" rx=\"3.5\" fill=\"#fff\" stroke=\"#919191\"/><path d=\"M8.581 13.064a3.9 3.9 0 0 1-1.224-.192c-.389-.133-.696-.304-.92-.512l.296-.624c.214.187.486.341.816.464.331.123.675.184 1.032.184.326 0 .59-.037.792-.112.203-.075.352-.176.448-.304a.748.748 0 0 0 .144-.448.6.6 0 0 0-.192-.464 1.306 1.306 0 0 0-.488-.28 4.788 4.788 0 0 0-.656-.192c-.24-.053-.482-.115-.728-.184a3.55 3.55 0 0 1-.664-.28 1.381 1.381 0 0 1-.48-.448c-.122-.192-.184-.437-.184-.736 0-.288.075-.552.224-.792.155-.245.39-.44.704-.584.32-.15.726-.224 1.216-.224.326 0 .648.043.968.128.32.085.598.208.832.368l-.264.64a2.496 2.496 0 0 0-.76-.344 2.873 2.873 0 0 0-.776-.112c-.314 0-.573.04-.776.12a.973.973 0 0 0-.448.32.779.779 0 0 0-.136.448c0 .197.062.355.184.472.128.117.291.21.488.28.203.07.424.133.664.192.24.053.48.115.72.184.246.07.467.16.664.272.203.112.366.261.488.448.123.187.184.427.184.72 0 .283-.077.547-.232.792-.154.24-.394.435-.72.584-.32.144-.725.216-1.216.216Zm5.49-4.344c.346 0 .65.067.911.2.267.133.475.336.624.608.15.272.224.616.224 1.032V13h-.768v-2.352c0-.41-.101-.72-.304-.928-.197-.208-.477-.312-.84-.312-.272 0-.51.053-.712.16a1.12 1.12 0 0 0-.472.472c-.107.208-.16.467-.16.776V13h-.768V7.064h.768v2.84l-.152-.304c.139-.277.352-.493.64-.648a2.099 2.099 0 0 1 1.008-.232Zm4.996 4.328a2.27 2.27 0 0 1-1.136-.28 2.085 2.085 0 0 1-.784-.768 2.19 2.19 0 0 1-.288-1.12c0-.421.096-.795.288-1.12a2.03 2.03 0 0 1 .784-.76 2.27 2.27 0 0 1 1.136-.28c.422 0 .798.093 1.128.28.336.181.598.435.784.76.192.32.288.693.288 1.12 0 .421-.096.795-.288 1.12a2.01 2.01 0 0 1-.784.768c-.33.187-.706.28-1.128.28Zm0-.672c.272 0 .515-.061.728-.184.22-.123.39-.296.512-.52a1.65 1.65 0 0 0 .184-.792c0-.304-.06-.565-.184-.784a1.298 1.298 0 0 0-.512-.52 1.434 1.434 0 0 0-.728-.184 1.37 1.37 0 0 0-1.24.704c-.128.219-.192.48-.192.784 0 .299.064.563.192.792a1.37 1.37 0 0 0 1.24.704Zm4.041.624-1.576-4.24h.728l1.4 3.84h-.344l1.456-3.84h.648l1.424 3.84h-.336l1.432-3.84h.688L27.044 13h-.736l-1.336-3.504h.224L23.844 13h-.736Zm10.192.064a3.9 3.9 0 0 1-1.224-.192c-.39-.133-.696-.304-.92-.512l.296-.624a2.6 2.6 0 0 0 .816.464c.33.123.675.184 1.032.184.326 0 .59-.037.792-.112.203-.075.352-.176.448-.304a.748.748 0 0 0 .144-.448.6.6 0 0 0-.192-.464 1.305 1.305 0 0 0-.488-.28 4.786 4.786 0 0 0-.656-.192c-.24-.053-.483-.115-.728-.184a3.55 3.55 0 0 1-.664-.28 1.382 1.382 0 0 1-.48-.448c-.122-.192-.184-.437-.184-.736 0-.288.075-.552.224-.792.155-.245.39-.44.704-.584.32-.15.726-.224 1.216-.224.325 0 .648.043.968.128.32.085.597.208.832.368l-.264.64a2.495 2.495 0 0 0-.76-.344 2.872 2.872 0 0 0-.776-.112c-.315 0-.573.04-.776.12a.973.973 0 0 0-.448.32.78.78 0 0 0-.136.448c0 .197.062.355.184.472.128.117.29.21.488.28.203.07.424.133.664.192.24.053.48.115.72.184.245.07.467.16.664.272.203.112.365.261.488.448s.184.427.184.72c0 .283-.077.547-.232.792-.154.24-.394.435-.72.584-.32.144-.725.216-1.216.216Zm5.04-.016a2.27 2.27 0 0 1-1.135-.28A2.084 2.084 0 0 1 36.42 12a2.19 2.19 0 0 1-.288-1.12c0-.421.096-.795.288-1.12.192-.325.453-.579.784-.76.33-.187.71-.28 1.136-.28.421 0 .797.093 1.128.28.336.181.597.435.784.76.192.32.288.693.288 1.12 0 .421-.096.795-.288 1.12a2.011 2.011 0 0 1-.784.768 2.25 2.25 0 0 1-1.128.28Zm0-.672c.273 0 .515-.061.729-.184a1.3 1.3 0 0 0 .512-.52c.122-.23.184-.493.184-.792 0-.304-.062-.565-.184-.784a1.3 1.3 0 0 0-.512-.52 1.434 1.434 0 0 0-.728-.184 1.37 1.37 0 0 0-1.24.704c-.128.219-.192.48-.192.784 0 .299.064.563.192.792a1.37 1.37 0 0 0 1.24.704Zm5.047.672a2.19 2.19 0 0 1-.96-.2 1.466 1.466 0 0 1-.64-.608c-.15-.277-.224-.624-.224-1.04V8.76h.768v2.352c0 .416.099.728.296.936.203.208.485.312.848.312.267 0 .499-.053.696-.16a1.13 1.13 0 0 0 .456-.48 1.7 1.7 0 0 0 .16-.768V8.76h.768V13h-.728v-1.144l.12.304a1.484 1.484 0 0 1-.624.656c-.277.155-.59.232-.936.232Zm3.63-.048V8.76h.736v1.152l-.072-.288c.117-.293.315-.517.592-.672.277-.155.619-.232 1.024-.232v.744a.583.583 0 0 0-.096-.008h-.08c-.41 0-.736.123-.976.368s-.36.6-.36 1.064V13h-.768Zm5.036.048a2.37 2.37 0 0 1-1.16-.28A2.068 2.068 0 0 1 50.1 12a2.162 2.162 0 0 1-.288-1.12c0-.421.096-.795.288-1.12a2.01 2.01 0 0 1 .792-.76 2.37 2.37 0 0 1 1.16-.28c.384 0 .725.077 1.024.232.304.15.538.373.704.672l-.584.376a1.265 1.265 0 0 0-.512-.456 1.381 1.381 0 0 0-.64-.152c-.278 0-.526.061-.744.184a1.353 1.353 0 0 0-.52.52c-.128.219-.192.48-.192.784 0 .304.064.568.192.792.128.224.3.397.52.52.218.123.466.184.744.184.229 0 .442-.048.64-.144a1.33 1.33 0 0 0 .512-.464l.584.368c-.166.293-.4.52-.704.68-.3.155-.64.232-1.024.232Zm4.547 0a2.49 2.49 0 0 1-1.2-.28 2.053 2.053 0 0 1-.8-.768 2.21 2.21 0 0 1-.28-1.12c0-.421.091-.795.272-1.12a2 2 0 0 1 .76-.76c.326-.187.691-.28 1.096-.28.411 0 .774.09 1.088.272.315.181.56.437.736.768.182.325.272.707.272 1.144 0 .032-.002.07-.008.112a.854.854 0 0 1-.008.12H54.92v-.552h3.208l-.312.192a1.426 1.426 0 0 0-.168-.728 1.248 1.248 0 0 0-.488-.496 1.348 1.348 0 0 0-.712-.184c-.266 0-.504.061-.712.184-.208.117-.37.285-.488.504a1.502 1.502 0 0 0-.176.736v.128c0 .283.064.536.192.76.134.219.318.39.552.512.235.123.504.184.808.184.251 0 .478-.043.68-.128a1.49 1.49 0 0 0 .544-.384l.424.496a1.851 1.851 0 0 1-.72.512c-.282.117-.6.176-.952.176Zm4.227 0a3.49 3.49 0 0 1-1.008-.144c-.315-.096-.563-.213-.744-.352l.32-.608c.181.123.405.227.672.312.267.085.538.128.816.128.357 0 .613-.05.768-.152a.476.476 0 0 0 .24-.424.373.373 0 0 0-.144-.312.983.983 0 0 0-.384-.168 5.41 5.41 0 0 0-.52-.096 10.93 10.93 0 0 1-.576-.112 2.572 2.572 0 0 1-.528-.192c-.16-.085-.288-.2-.384-.344-.096-.15-.144-.347-.144-.592 0-.256.072-.48.216-.672.144-.192.346-.339.608-.44.267-.107.581-.16.944-.16.277 0 .557.035.84.104.288.064.523.157.704.28l-.328.608a1.812 1.812 0 0 0-.6-.264 2.767 2.767 0 0 0-.624-.072c-.336 0-.587.056-.752.168-.166.107-.248.245-.248.416 0 .144.048.256.144.336.101.075.23.133.384.176.16.043.336.08.528.112.192.027.384.064.576.112.192.043.365.104.52.184.16.08.288.192.384.336.101.144.152.336.152.576 0 .256-.075.477-.224.664-.15.187-.36.333-.632.44a2.8 2.8 0 0 1-.976.152ZM67.207 8a.5.5 0 0 0-.353.854l2.792 2.792a.5.5 0 0 0 .708 0l2.792-2.792A.5.5 0 0 0 72.793 8h-5.586Z\" fill=\"#2D85FF\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/ _jsx(SVG,{className:\"framer-1j6uzw0\",\"data-framer-name\":\"Frame_2608501_1_\",fill:\"black\",intrinsicHeight:20,intrinsicWidth:188,layoutDependency:layoutDependency,layoutId:\"LH6s7dypZ\",style:{filter:\"drop-shadow(3px 4px 4px rgba(0,0,0,0.25))\",WebkitFilter:\"drop-shadow(3px 4px 4px rgba(0,0,0,0.25))\"},svg:'<svg width=\"188\" height=\"20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect x=\"85.5\" y=\".5\" width=\"102\" height=\"19\" rx=\"4.5\" fill=\"#fff\" stroke=\"#B9B9B9\"/><path d=\"M106.456 13.048a3.64 3.64 0 0 1-1.2-.2c-.379-.139-.672-.315-.88-.528l.232-.456c.197.192.461.355.792.488.336.128.688.192 1.056.192.352 0 .637-.043.856-.128.224-.09.387-.21.488-.36a.832.832 0 0 0 .16-.496.73.73 0 0 0-.192-.528 1.224 1.224 0 0 0-.488-.312 5.034 5.034 0 0 0-.672-.208c-.245-.059-.491-.12-.736-.184a3.358 3.358 0 0 1-.68-.272 1.46 1.46 0 0 1-.496-.44c-.123-.187-.184-.43-.184-.728 0-.277.072-.53.216-.76.149-.235.376-.421.68-.56.304-.144.693-.216 1.168-.216.315 0 .627.045.936.136.309.085.576.205.8.36l-.2.472a2.873 2.873 0 0 0-1.544-.464c-.336 0-.613.045-.832.136-.219.09-.381.213-.488.368a.893.893 0 0 0-.152.512c0 .219.061.395.184.528a1.3 1.3 0 0 0 .496.312c.208.075.435.141.68.2.245.059.488.123.728.192.245.07.469.16.672.272.208.107.373.25.496.432.128.181.192.419.192.712 0 .272-.075.525-.224.76-.149.23-.379.416-.688.56-.304.139-.696.208-1.176.208Zm5.042-.008a2.36 2.36 0 0 1-1.152-.272 2.043 2.043 0 0 1-.776-.76 2.19 2.19 0 0 1-.28-1.112c0-.416.088-.784.264-1.104a2.029 2.029 0 0 1 1.792-1.032 2 2 0 0 1 1.048.272c.309.176.552.427.728.752.176.32.264.69.264 1.112a.578.578 0 0 1-.008.088v.088h-3.656v-.424h3.352l-.224.168a1.61 1.61 0 0 0-.2-.808 1.407 1.407 0 0 0-1.304-.76c-.288 0-.547.067-.776.2a1.39 1.39 0 0 0-.536.56c-.128.24-.192.515-.192.824v.088c0 .32.069.603.208.848.144.24.341.43.592.568.256.133.547.2.872.2.256 0 .493-.045.712-.136.224-.09.416-.23.576-.416l.32.368a1.796 1.796 0 0 1-.704.512 2.337 2.337 0 0 1-.92.176Zm3.044-.04V8.8h.544v1.144l-.056-.2c.117-.32.315-.563.592-.728.277-.17.621-.256 1.032-.256v.552h-.064a.263.263 0 0 0-.064-.008c-.443 0-.789.136-1.04.408-.251.267-.376.648-.376 1.144V13h-.568Zm4.408 0-1.864-4.2h.592l1.712 3.896h-.28l1.736-3.896h.56l-1.872 4.2h-.584Zm3.256 0V8.8h.568V13h-.568Zm.288-5.128a.403.403 0 0 1-.296-.12.393.393 0 0 1-.12-.288c0-.112.04-.205.12-.28.08-.08.179-.12.296-.12.117 0 .216.037.296.112.08.075.12.168.12.28 0 .117-.04.216-.12.296a.386.386 0 0 1-.296.12Zm3.605 5.168c-.416 0-.79-.09-1.12-.272a2.05 2.05 0 0 1-.768-.76 2.19 2.19 0 0 1-.28-1.112c0-.421.093-.792.28-1.112.186-.32.442-.57.768-.752.33-.181.704-.272 1.12-.272.357 0 .68.07.968.208.288.139.514.347.68.624l-.424.288a1.335 1.335 0 0 0-.536-.472 1.606 1.606 0 0 0-.696-.152c-.299 0-.568.07-.808.208a1.45 1.45 0 0 0-.568.568 1.723 1.723 0 0 0-.208.864c0 .33.069.619.208.864.138.245.328.437.568.576.24.133.509.2.808.2.25 0 .482-.05.696-.152.213-.101.392-.256.536-.464l.424.288a1.64 1.64 0 0 1-.68.624 2.203 2.203 0 0 1-.968.208Zm4.477 0a2.36 2.36 0 0 1-1.152-.272 2.043 2.043 0 0 1-.776-.76 2.19 2.19 0 0 1-.28-1.112c0-.416.088-.784.264-1.104a2.029 2.029 0 0 1 1.792-1.032 2 2 0 0 1 1.048.272c.309.176.552.427.728.752.176.32.264.69.264 1.112a.578.578 0 0 1-.008.088v.088H128.8v-.424h3.352l-.224.168a1.61 1.61 0 0 0-.2-.808 1.407 1.407 0 0 0-1.304-.76c-.288 0-.547.067-.776.2a1.39 1.39 0 0 0-.536.56c-.128.24-.192.515-.192.824v.088c0 .32.069.603.208.848.144.24.341.43.592.568.256.133.547.2.872.2.256 0 .493-.045.712-.136.224-.09.416-.23.576-.416l.32.368a1.796 1.796 0 0 1-.704.512 2.337 2.337 0 0 1-.92.176Zm4.362-.04 2.56-5.6h.584l2.56 5.6h-.624l-2.352-5.256h.24L135.554 13h-.616Zm1.008-1.496.176-.48h3.256l.176.48h-3.608Zm7.255 3.088c-.384 0-.752-.056-1.104-.168a2.18 2.18 0 0 1-.856-.48l.288-.432c.198.176.44.315.728.416.294.107.603.16.928.16.534 0 .926-.125 1.176-.376.251-.245.376-.63.376-1.152v-1.048l.08-.72-.056-.72V8.8h.544v3.688c0 .725-.178 1.256-.536 1.592-.352.341-.874.512-1.568.512Zm-.104-1.752c-.4 0-.76-.085-1.08-.256a1.996 1.996 0 0 1-.76-.728 2.068 2.068 0 0 1-.272-1.064c0-.4.091-.752.272-1.056.187-.31.44-.55.76-.72.32-.17.68-.256 1.08-.256.374 0 .71.077 1.008.232.299.155.536.384.712.688.176.304.264.675.264 1.112 0 .437-.088.808-.264 1.112a1.784 1.784 0 0 1-.712.696c-.298.16-.634.24-1.008.24Zm.056-.504c.31 0 .584-.064.824-.192a1.5 1.5 0 0 0 .568-.544c.139-.235.208-.504.208-.808 0-.304-.069-.57-.208-.8a1.442 1.442 0 0 0-.568-.536 1.67 1.67 0 0 0-.824-.2 1.7 1.7 0 0 0-.824.2 1.45 1.45 0 0 0-.568.536c-.133.23-.2.496-.2.8 0 .304.067.573.2.808.139.23.328.41.568.544.246.128.52.192.824.192Zm3.733.664V8.8h.544v1.144l-.056-.2a1.36 1.36 0 0 1 .592-.728c.277-.17.621-.256 1.032-.256v.552h-.064a.27.27 0 0 0-.064-.008c-.443 0-.79.136-1.04.408-.251.267-.376.648-.376 1.144V13h-.568Zm4.893.04a2.36 2.36 0 0 1-1.152-.272 2.043 2.043 0 0 1-.776-.76 2.19 2.19 0 0 1-.28-1.112c0-.416.088-.784.264-1.104a2.029 2.029 0 0 1 1.792-1.032 2 2 0 0 1 1.048.272c.309.176.552.427.728.752.176.32.264.69.264 1.112a.578.578 0 0 1-.008.088v.088h-3.656v-.424h3.352l-.224.168a1.61 1.61 0 0 0-.2-.808 1.407 1.407 0 0 0-1.304-.76c-.288 0-.547.067-.776.2a1.39 1.39 0 0 0-.536.56c-.128.24-.192.515-.192.824v.088c0 .32.069.603.208.848.144.24.341.43.592.568.256.133.547.2.872.2.256 0 .493-.045.712-.136.224-.09.416-.23.576-.416l.32.368a1.796 1.796 0 0 1-.704.512 2.337 2.337 0 0 1-.92.176Zm4.828 0a2.36 2.36 0 0 1-1.152-.272 2.05 2.05 0 0 1-.776-.76 2.2 2.2 0 0 1-.28-1.112c0-.416.088-.784.264-1.104a2 2 0 0 1 .736-.752c.315-.187.667-.28 1.056-.28a2 2 0 0 1 1.048.272c.31.176.552.427.728.752.176.32.264.69.264 1.112a.473.473 0 0 1-.008.088v.088h-3.656v-.424h3.352l-.224.168a1.6 1.6 0 0 0-.2-.808 1.407 1.407 0 0 0-1.304-.76 1.52 1.52 0 0 0-.776.2 1.39 1.39 0 0 0-.536.56c-.128.24-.192.515-.192.824v.088c0 .32.07.603.208.848.144.24.342.43.592.568.256.133.547.2.872.2.256 0 .494-.045.712-.136.224-.09.416-.23.576-.416l.32.368a1.789 1.789 0 0 1-.704.512 2.337 2.337 0 0 1-.92.176Zm8.292-4.28c.342 0 .638.067.888.2.256.128.454.325.592.592.144.267.216.603.216 1.008V13h-.568v-2.384c0-.443-.106-.776-.32-1-.208-.23-.504-.344-.888-.344a1.48 1.48 0 0 0-.752.184c-.208.117-.37.29-.488.52a1.81 1.81 0 0 0-.168.816V13h-.568v-2.384c0-.443-.106-.776-.32-1-.213-.23-.512-.344-.896-.344-.282 0-.53.061-.744.184a1.2 1.2 0 0 0-.496.52 1.81 1.81 0 0 0-.168.816V13h-.568V8.8h.544v1.136l-.088-.2a1.49 1.49 0 0 1 .616-.712 1.91 1.91 0 0 1 1.016-.264c.411 0 .76.104 1.048.312.288.203.475.51.56.92l-.224-.088c.123-.341.339-.616.648-.824.315-.213.691-.32 1.128-.32Zm5.021 4.28c-.438 0-.822-.09-1.152-.272a2.036 2.036 0 0 1-.776-.76 2.19 2.19 0 0 1-.28-1.112c0-.416.088-.784.264-1.104a2.027 2.027 0 0 1 1.792-1.032c.394 0 .744.09 1.048.272.309.176.552.427.728.752.176.32.264.69.264 1.112a.578.578 0 0 1-.008.088v.088h-3.656v-.424h3.352l-.224.168a1.61 1.61 0 0 0-.2-.808 1.407 1.407 0 0 0-1.304-.76c-.288 0-.547.067-.776.2-.23.133-.408.32-.536.56-.128.24-.192.515-.192.824v.088c0 .32.069.603.208.848.144.24.341.43.592.568.256.133.546.2.872.2.256 0 .493-.045.712-.136.224-.09.416-.23.576-.416l.32.368a1.803 1.803 0 0 1-.704.512 2.341 2.341 0 0 1-.92.176Zm5.188-4.28c.341 0 .64.067.896.2.261.128.464.325.608.592.149.267.224.603.224 1.008V13h-.568v-2.384c0-.443-.112-.776-.336-1-.219-.23-.528-.344-.928-.344-.299 0-.56.061-.784.184a1.23 1.23 0 0 0-.512.52 1.744 1.744 0 0 0-.176.816V13h-.568V8.8h.544v1.152l-.088-.216c.133-.304.347-.541.64-.712.293-.176.643-.264 1.048-.264Zm4.59 4.28c-.395 0-.699-.107-.912-.32-.213-.213-.32-.515-.32-.904V7.872h.568v3.912c0 .245.061.435.184.568.128.133.309.2.544.2a.915.915 0 0 0 .624-.216l.2.408a1.047 1.047 0 0 1-.408.224 1.613 1.613 0 0 1-.48.072Zm-1.984-3.768V8.8h2.6v.472h-2.6Z\" fill=\"#000\"/><path d=\"M96.5 13H93v-1h3.5m1.5-1h-5v-1h5m0-1h-5V8h5m1-2h-7c-.555 0-1 .445-1 1v7a1 1 0 0 0 1 1h7a1 1 0 0 0 1-1V7a1 1 0 0 0-1-1Z\" fill=\"#2D85FF\"/><rect x=\".5\" y=\".5\" width=\"79\" height=\"19\" rx=\"3.5\" fill=\"#fff\" stroke=\"#919191\"/><path d=\"M11.211 7.4h.8V13h-.8V7.4ZM7.995 13h-.8V7.4h.8V13Zm3.288-2.496H7.915v-.696h3.369v.696ZM13.576 13V8.76h.768V13h-.768Zm.384-5.056a.526.526 0 0 1-.376-.144.479.479 0 0 1-.144-.352c0-.144.048-.264.144-.36a.526.526 0 0 1 .376-.144c.149 0 .272.048.368.144.101.09.152.205.152.344a.516.516 0 0 1-.144.368.509.509 0 0 1-.376.144Zm3.602 5.104c-.41 0-.779-.09-1.104-.272a2 2 0 0 1-.76-.76 2.243 2.243 0 0 1-.28-1.136c0-.432.093-.808.28-1.128a2 2 0 0 1 .76-.76 2.229 2.229 0 0 1 1.104-.272c.357 0 .68.08.968.24.288.16.517.4.688.72.176.32.264.72.264 1.2s-.085.88-.256 1.2a1.73 1.73 0 0 1-.68.728c-.288.16-.616.24-.984.24Zm.064-.672c.267 0 .507-.061.72-.184.219-.123.39-.296.512-.52.128-.23.192-.493.192-.792 0-.304-.064-.565-.192-.784a1.298 1.298 0 0 0-.512-.52 1.418 1.418 0 0 0-.72-.184 1.37 1.37 0 0 0-1.24.704c-.128.219-.192.48-.192.784 0 .299.064.563.192.792a1.37 1.37 0 0 0 1.24.704Zm1.448.624v-1.144l.048-.984-.08-.984V7.064h.768V13h-.736Zm4.077.048a2.49 2.49 0 0 1-1.2-.28 2.053 2.053 0 0 1-.8-.768 2.21 2.21 0 0 1-.28-1.12c0-.421.09-.795.272-1.12a2 2 0 0 1 .76-.76 2.16 2.16 0 0 1 1.096-.28c.41 0 .774.09 1.088.272.315.181.56.437.736.768.181.325.272.707.272 1.144 0 .032-.002.07-.008.112a.854.854 0 0 1-.008.12h-3.608v-.552h3.208l-.312.192a1.426 1.426 0 0 0-.168-.728 1.248 1.248 0 0 0-.488-.496A1.348 1.348 0 0 0 23 9.368c-.266 0-.504.061-.712.184-.208.117-.37.285-.488.504a1.502 1.502 0 0 0-.176.736v.128c0 .283.064.536.192.76.133.219.317.39.552.512.235.123.504.184.808.184.25 0 .477-.043.68-.128a1.49 1.49 0 0 0 .544-.384l.424.496a1.851 1.851 0 0 1-.72.512 2.47 2.47 0 0 1-.952.176Zm6.903.016a3.89 3.89 0 0 1-1.224-.192c-.39-.133-.696-.304-.92-.512l.296-.624a2.6 2.6 0 0 0 .816.464c.33.123.675.184 1.032.184.325 0 .59-.037.792-.112.203-.075.352-.176.448-.304a.748.748 0 0 0 .144-.448.6.6 0 0 0-.192-.464 1.305 1.305 0 0 0-.488-.28 4.786 4.786 0 0 0-.656-.192c-.24-.053-.483-.115-.728-.184a3.55 3.55 0 0 1-.664-.28 1.382 1.382 0 0 1-.48-.448c-.123-.192-.184-.437-.184-.736 0-.288.075-.552.224-.792.155-.245.39-.44.704-.584.32-.15.725-.224 1.216-.224.325 0 .648.043.968.128.32.085.597.208.832.368l-.264.64a2.495 2.495 0 0 0-.76-.344 2.872 2.872 0 0 0-.776-.112c-.315 0-.573.04-.776.12a.973.973 0 0 0-.448.32.78.78 0 0 0-.136.448c0 .197.061.355.184.472.128.117.29.21.488.28.203.07.424.133.664.192.24.053.48.115.72.184.245.07.467.16.664.272.203.112.365.261.488.448s.184.427.184.72c0 .283-.077.547-.232.792-.155.24-.395.435-.72.584-.32.144-.725.216-1.216.216Zm5.04-.016a2.27 2.27 0 0 1-1.135-.28 2.084 2.084 0 0 1-.784-.768 2.19 2.19 0 0 1-.288-1.12c0-.421.096-.795.288-1.12.192-.325.453-.579.784-.76.33-.187.71-.28 1.136-.28.421 0 .797.093 1.128.28.336.181.597.435.784.76.192.32.288.693.288 1.12 0 .421-.096.795-.288 1.12a2.011 2.011 0 0 1-.784.768 2.25 2.25 0 0 1-1.128.28Zm0-.672c.273 0 .515-.061.729-.184a1.3 1.3 0 0 0 .512-.52c.122-.23.184-.493.184-.792 0-.304-.062-.565-.184-.784a1.3 1.3 0 0 0-.512-.52 1.434 1.434 0 0 0-.728-.184 1.37 1.37 0 0 0-1.24.704c-.128.219-.192.48-.192.784 0 .299.064.563.192.792a1.37 1.37 0 0 0 1.24.704Zm5.047.672a2.19 2.19 0 0 1-.96-.2 1.466 1.466 0 0 1-.64-.608c-.15-.277-.224-.624-.224-1.04V8.76h.768v2.352c0 .416.099.728.296.936.203.208.485.312.848.312.267 0 .499-.053.696-.16a1.13 1.13 0 0 0 .456-.48 1.7 1.7 0 0 0 .16-.768V8.76h.768V13h-.728v-1.144l.12.304a1.484 1.484 0 0 1-.624.656c-.277.155-.59.232-.936.232ZM43.77 13V8.76h.736v1.152l-.072-.288c.117-.293.315-.517.592-.672.277-.155.619-.232 1.024-.232v.744a.583.583 0 0 0-.096-.008h-.08c-.41 0-.736.123-.976.368s-.36.6-.36 1.064V13h-.768Zm5.035.048c-.431 0-.818-.093-1.16-.28a2.068 2.068 0 0 1-.791-.768 2.162 2.162 0 0 1-.288-1.12c0-.421.096-.795.288-1.12a2.01 2.01 0 0 1 .792-.76c.34-.187.727-.28 1.16-.28.383 0 .725.077 1.023.232.305.15.54.373.705.672L49.95 10a1.265 1.265 0 0 0-.513-.456 1.381 1.381 0 0 0-.64-.152c-.277 0-.525.061-.744.184a1.353 1.353 0 0 0-.52.52c-.127.219-.191.48-.191.784 0 .304.063.568.191.792.129.224.302.397.52.52.22.123.467.184.744.184.23 0 .443-.048.64-.144.203-.101.374-.256.512-.464l.584.368a1.7 1.7 0 0 1-.703.68c-.3.155-.64.232-1.025.232Zm4.548 0a2.49 2.49 0 0 1-1.2-.28 2.053 2.053 0 0 1-.8-.768 2.21 2.21 0 0 1-.28-1.12c0-.421.09-.795.272-1.12a2 2 0 0 1 .76-.76 2.16 2.16 0 0 1 1.096-.28c.41 0 .774.09 1.088.272.315.181.56.437.736.768.182.325.272.707.272 1.144 0 .032-.002.07-.008.112a.854.854 0 0 1-.008.12h-3.608v-.552h3.208l-.312.192a1.426 1.426 0 0 0-.168-.728 1.248 1.248 0 0 0-.488-.496 1.348 1.348 0 0 0-.712-.184c-.266 0-.504.061-.712.184-.208.117-.37.285-.488.504a1.502 1.502 0 0 0-.176.736v.128c0 .283.064.536.192.76.134.219.318.39.552.512.235.123.504.184.808.184.25 0 .478-.043.68-.128a1.49 1.49 0 0 0 .544-.384l.424.496a1.851 1.851 0 0 1-.72.512c-.282.117-.6.176-.952.176Zm4.227 0a3.49 3.49 0 0 1-1.008-.144c-.315-.096-.563-.213-.744-.352l.32-.608c.181.123.405.227.672.312.266.085.538.128.816.128.357 0 .613-.05.768-.152a.476.476 0 0 0 .24-.424.373.373 0 0 0-.144-.312.983.983 0 0 0-.384-.168 5.405 5.405 0 0 0-.52-.096 10.93 10.93 0 0 1-.576-.112 2.572 2.572 0 0 1-.528-.192c-.16-.085-.288-.2-.384-.344-.096-.15-.144-.347-.144-.592 0-.256.072-.48.216-.672.144-.192.346-.339.608-.44.266-.107.581-.16.944-.16.277 0 .557.035.84.104.288.064.522.157.704.28l-.328.608a1.812 1.812 0 0 0-.6-.264 2.767 2.767 0 0 0-.624-.072c-.336 0-.587.056-.752.168-.166.107-.248.245-.248.416 0 .144.048.256.144.336.101.075.23.133.384.176.16.043.336.08.528.112.192.027.384.064.576.112.192.043.365.104.52.184.16.08.288.192.384.336.101.144.152.336.152.576 0 .256-.075.477-.224.664-.15.187-.36.333-.632.44a2.8 2.8 0 0 1-.976.152ZM72.793 12a.5.5 0 0 0 .353-.854l-2.792-2.792a.5.5 0 0 0-.708 0l-2.792 2.792a.5.5 0 0 0 .353.854h5.586Z\" fill=\"#2D85FF\"/></svg>',withExternalLayout:true})]})})})});});const css=['.framer-cqs8B [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cqs8B .framer-8rhj3n { display: block; }\",\".framer-cqs8B .framer-1t22sak { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 240px; }\",\".framer-cqs8B .framer-xoxak1 { aspect-ratio: 11.95 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 260px; }\",\".framer-cqs8B .framer-14pjk0h { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); position: relative; width: 86px; }\",\".framer-cqs8B .framer-1qyd66d { aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 102px; }\",\".framer-cqs8B .framer-1j6uzw0 { aspect-ratio: 9.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 240px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cqs8B .framer-1t22sak { gap: 0px; } .framer-cqs8B .framer-1t22sak > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-cqs8B .framer-1t22sak > :first-child { margin-top: 0px; } .framer-cqs8B .framer-1t22sak > :last-child { margin-bottom: 0px; } }\",\".framer-cqs8B.framer-v-aha6l3 .framer-1qyd66d { order: 2; }\",\".framer-cqs8B.framer-v-1ae26ai .framer-1t22sak, .framer-cqs8B.framer-v-19p3mi3 .framer-1t22sak { width: 260px; }\",\".framer-cqs8B.framer-v-1ae26ai .framer-xoxak1, .framer-cqs8B.framer-v-19p3mi3 .framer-14pjk0h { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WbkUT5yE3\":{\"layout\":[\"fixed\",\"auto\"]},\"eajsh3Y6Z\":{\"layout\":[\"fixed\",\"auto\"]},\"fnmwwBd_1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"H3MRpl190\":\"tap2\"}\n */ const FramerVhfwXZhzk=withCSS(Component,css,\"framer-cqs8B\");export default FramerVhfwXZhzk;FramerVhfwXZhzk.displayName=\"Show Sources\";FramerVhfwXZhzk.defaultProps={height:26,width:240};addPropertyControls(FramerVhfwXZhzk,{variant:{options:[\"RD80m1D5p\",\"WbkUT5yE3\",\"eajsh3Y6Z\",\"fnmwwBd_1\"],optionTitles:[\"Variant 1\",\"Variant Hide\",\"Variant 3\",\"Variant Hide 2\"],title:\"Variant\",type:ControlType.Enum},H3MRpl190:{title:\"Tap 2\",type:ControlType.EventHandler}});addFonts(FramerVhfwXZhzk,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVhfwXZhzk\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerIntrinsicHeight\":\"26\",\"framerVariables\":\"{\\\"H3MRpl190\\\":\\\"tap2\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WbkUT5yE3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eajsh3Y6Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fnmwwBd_1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VhfwXZhzk.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "H3MRpl190", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1hknzz7", "args", "onTap4buf0m", "onTap123op4y", "onTapmgfard", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "LayoutGroup", "motion", "cx", "u", "Image2", "SVG", "css", "FramerVhfwXZhzk", "withCSS", "VhfwXZhzk_default", "addPropertyControls", "ControlType", "addFonts"]
}
