{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/qjCKB7vlPPTaLKURUWGb/Gk6ugCT21zZWiWHbC4eR/uFaAaXDZy.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 (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/534oB9Tn5cZB6VZbkWLJ/Video.js\";import{Video as Video1}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/Gb6z1S0xoupJRsduSsLb/SlideShow.js\";import Journey from\"#framer/local/canvasComponent/Bk4X6L6Ml/Bk4X6L6Ml.js\";import PillBtn from\"#framer/local/canvasComponent/EBcQQEGn7/EBcQQEGn7.js\";import HeaderText from\"#framer/local/canvasComponent/FkNKcXvY4/FkNKcXvY4.js\";import Navigation from\"#framer/local/canvasComponent/LYKaFlLhk/LYKaFlLhk.js\";import Footer from\"#framer/local/canvasComponent/oQJHlUdob/oQJHlUdob.js\";import AwardsAndPrograms from\"#framer/local/canvasComponent/u4RV1KbTj/u4RV1KbTj.js\";import Button from\"#framer/local/canvasComponent/ZWCczRqid/ZWCczRqid.js\";import*as sharedStyle5 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle4 from\"#framer/local/css/IlagTk4df/IlagTk4df.js\";import*as sharedStyle from\"#framer/local/css/kaAjtqlAx/kaAjtqlAx.js\";import*as sharedStyle1 from\"#framer/local/css/o1_5OOKnC/o1_5OOKnC.js\";import*as sharedStyle2 from\"#framer/local/css/RykNjJbME/RykNjJbME.js\";import*as sharedStyle3 from\"#framer/local/css/XfYgGJSzr/XfYgGJSzr.js\";import*as sharedStyle6 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle7 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/uFaAaXDZy/uFaAaXDZy.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const HeaderTextFonts=getFonts(HeaderText);const VideoFonts=getFonts(Video);const TickerFonts=getFonts(Ticker);const Video1Fonts=getFonts(Video1);const ButtonFonts=getFonts(Button);const SlideshowFonts=getFonts(Slideshow);const PillBtnFonts=getFonts(PillBtn);const JourneyFonts=getFonts(Journey);const AwardsAndProgramsFonts=getFonts(AwardsAndPrograms);const FooterFonts=getFonts(Footer);const breakpoints={hJrTThh26:\"(max-width: 809px)\",IrIkuK2qt:\"(min-width: 1440px)\",NpJVcyz3R:\"(min-width: 810px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-9ZPrA\";const variantClassNames={hJrTThh26:\"framer-v-1xjx64m\",IrIkuK2qt:\"framer-v-1rapmcm\",NpJVcyz3R:\"framer-v-pfje9w\"};const transition1={delay:.4,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.5,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.6,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition4};const animation5={boxShadow:\"inset 0px 0px 8px 10px rgba(0, 204, 187, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"IrIkuK2qt\",Phone:\"hJrTThh26\",Tablet:\"NpJVcyz3R\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IrIkuK2qt\"};};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);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"csf7epszg\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"jylxd99Hv\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"nhpNduvRD\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"v5hSrU1MW\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"B7estlY_b\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"B9PSpe1yB\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"pNfwFcola\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"x14UtIUWy\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"fRIOWxynS\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"xTcfJ3M7y\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"k5VmYoj0o\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"DYVFLH_Gi\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"bpI1h7RQV\");const ref13=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IrIkuK2qt\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1rapmcm\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"99.9306vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1crd8ix-container\",\"data-framer-name\":\"NavBar\",layoutScroll:true,name:\"NavBar\",nodeId:\"Z5mG9e0WY\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{variant:\"xbMIJFYSO\"},NpJVcyz3R:{variant:\"xbMIJFYSO\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"Z5mG9e0WY\",layoutId:\"Z5mG9e0WY\",name:\"NavBar\",style:{width:\"100%\"},variant:\"e1OyYowrs\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iyhgpq\",\"data-framer-name\":\"Section: Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uy2cpc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-186bvrz\",\"data-framer-name\":\"Frame 7723\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12mjpri\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Content Infrastructure for\"})})}),className:\"framer-tk0537\",\"data-framer-appear-id\":\"tk0537\",\"data-framer-name\":\"Experience the real world like never before with Mixed Reality to bring about your creations to life\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1nk6pav\",\"data-styles-preset\":\"o1_5OOKnC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Real World AI\"})}),className:\"framer-68076\",\"data-framer-appear-id\":\"68076\",\"data-framer-name\":\"Enhance your World.\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujqdk4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1wp45jj\",\"data-styles-preset\":\"RykNjJbME\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsxs(\"strong\",{children:[\"Pioneers of\",/*#__PURE__*/_jsx(\"br\",{}),\"Spatial AI.\"]})})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1wp45jj\",\"data-styles-preset\":\"RykNjJbME\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Pioneers of Spatial AI.\"})})}),className:\"framer-n5aim2\",\"data-framer-appear-id\":\"n5aim2\",\"data-framer-name\":\"Experience the real world like never before with Mixed Reality to bring about your creations to life\",fonts:[\"Inter\",\"Inter-Bold\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9jwpdr-container\",nodeId:\"WLQ7qpycb\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(HeaderText,{height:\"100%\",id:\"WLQ7qpycb\",layoutId:\"WLQ7qpycb\",style:{width:\"100%\"},variant:\"HdQZEv9z6\",w4T9_aL6W:\"This is not VR.\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9tz0ho-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"JRKCQPZox\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"JRKCQPZox\",isMixedBorderRadius:false,layoutId:\"JRKCQPZox\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/VvtHjsRYcwVITPQC1krUEdAcdI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12ruwtz\",\"data-framer-name\":\"Section: Our Brands\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5818x4\",\"data-border\":true,\"data-framer-name\":\"Frame: Customers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwifs1-container\",isModuleExternal:true,nodeId:\"q1PNKDI3r\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:.4,id:\"q1PNKDI3r\",layoutId:\"q1PNKDI3r\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://websummit.com/\",motionChild:true,nodeId:\"T2Kt30cbS\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/YLUh13w3cnf8i6bDQkA68jgFrM.png\"},className:\"framer-1nqr1ok framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.telstra.com.au/\",motionChild:true,nodeId:\"YAtyis2TF\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:215,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/O7ZUoxoPHdhJ0HUMYGfEJeRwGzc.png\"},className:\"framer-1he5nzh framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://qldxrhub.com/\",motionChild:true,nodeId:\"PwLpv4ZMG\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/1uQyerboSadjNbQ0LVZHRhBhyN0.png\"},className:\"framer-1e4fu7d framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.destinationnsw.com.au/\",motionChild:true,nodeId:\"RoYsKcR1X\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/jWy1jUW34UvhVaR3KMdKuJeXoxE.png\"},className:\"framer-1cv7d9r framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://company.rtl.com/en/homepage/\",motionChild:true,nodeId:\"G3hCknfTo\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/9uYm3ukdTQYpCGMGT0ORGKIbsMM.png\"},className:\"framer-19m4ci7 framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://brumbies.rugby/\",motionChild:true,nodeId:\"hVRSMilkr\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:3392,pixelWidth:2927,positionX:\"center\",positionY:\"center\",sizes:\"97px\",src:\"https://framerusercontent.com/images/6eCGcfcDu0uXUDbVMqEPVpnFUCs.png\",srcSet:\"https://framerusercontent.com/images/6eCGcfcDu0uXUDbVMqEPVpnFUCs.png?scale-down-to=1024 883w,https://framerusercontent.com/images/6eCGcfcDu0uXUDbVMqEPVpnFUCs.png?scale-down-to=2048 1767w,https://framerusercontent.com/images/6eCGcfcDu0uXUDbVMqEPVpnFUCs.png 2927w\"},className:\"framer-1nnxv7r framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:333.3333421636513,intrinsicWidth:1333.3333686546052,pixelHeight:300,pixelWidth:1200,sizes:\"171px\",src:\"https://framerusercontent.com/images/9wZtlyHCEN37JoEeNuqPLETzj9I.png\",srcSet:\"https://framerusercontent.com/images/9wZtlyHCEN37JoEeNuqPLETzj9I.png?scale-down-to=512 512w,https://framerusercontent.com/images/9wZtlyHCEN37JoEeNuqPLETzj9I.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9wZtlyHCEN37JoEeNuqPLETzj9I.png 1200w\"},className:\"framer-174c47b\",\"data-framer-name\":\"Ironman Triathlon logo - white\"}),/*#__PURE__*/_jsx(Link,{href:\"https://en.meo.pt/\",motionChild:true,nodeId:\"hhKKCO5SO\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:352,pixelWidth:1052,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/BJMWn3LnX1PsHJllfjFzcO9oIzg.png\",srcSet:\"https://framerusercontent.com/images/BJMWn3LnX1PsHJllfjFzcO9oIzg.png?scale-down-to=512 512w,https://framerusercontent.com/images/BJMWn3LnX1PsHJllfjFzcO9oIzg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BJMWn3LnX1PsHJllfjFzcO9oIzg.png 1052w\"},className:\"framer-pja6xr framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.livenation.com.au/splendour-in-the-grass-tickets-fdp972064\",motionChild:true,nodeId:\"s9VUhN2Zv\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:440,pixelWidth:4001,positionX:\"center\",positionY:\"center\",sizes:\"147px\",src:\"https://framerusercontent.com/images/BKPGRtn279EXrpg5NJxqUMNs.png\",srcSet:\"https://framerusercontent.com/images/BKPGRtn279EXrpg5NJxqUMNs.png?scale-down-to=512 512w,https://framerusercontent.com/images/BKPGRtn279EXrpg5NJxqUMNs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BKPGRtn279EXrpg5NJxqUMNs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BKPGRtn279EXrpg5NJxqUMNs.png 4001w\"},className:\"framer-lbkx9m framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.quandoo.com.au/\",motionChild:true,nodeId:\"bCJHNWwwc\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:482,pixelWidth:2800,positionX:\"center\",positionY:\"center\",sizes:\"153px\",src:\"https://framerusercontent.com/images/iluzBZYUHGauy6XquVhqybYNcc.png\",srcSet:\"https://framerusercontent.com/images/iluzBZYUHGauy6XquVhqybYNcc.png?scale-down-to=512 512w,https://framerusercontent.com/images/iluzBZYUHGauy6XquVhqybYNcc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iluzBZYUHGauy6XquVhqybYNcc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iluzBZYUHGauy6XquVhqybYNcc.png 2800w\"},className:\"framer-qirwbk framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.telekom.com/en\",motionChild:true,nodeId:\"OHu0yN6Sy\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:215,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3Ycvo3bHgOMQbVaUVIFW96QGzWM.png\"},className:\"framer-1ry3yz7 framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.carebears.com/\",motionChild:true,nodeId:\"kml8o5Ylj\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:278,pixelWidth:1467,positionX:\"center\",positionY:\"center\",sizes:\"179px\",src:\"https://framerusercontent.com/images/tJEKO0kItRW8X2ifobvoTx4jlJk.png\",srcSet:\"https://framerusercontent.com/images/tJEKO0kItRW8X2ifobvoTx4jlJk.png?scale-down-to=512 512w,https://framerusercontent.com/images/tJEKO0kItRW8X2ifobvoTx4jlJk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tJEKO0kItRW8X2ifobvoTx4jlJk.png 1467w\"},className:\"framer-oj9fcg framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.guardiansofearth.io/\",motionChild:true,nodeId:\"LdEOhG_cp\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:317,pixelWidth:948,positionX:\"center\",positionY:\"center\",sizes:\"147px\",src:\"https://framerusercontent.com/images/kIaOAD7LNnPdHhvBdZKXLUZGnio.png\",srcSet:\"https://framerusercontent.com/images/kIaOAD7LNnPdHhvBdZKXLUZGnio.png?scale-down-to=512 512w,https://framerusercontent.com/images/kIaOAD7LNnPdHhvBdZKXLUZGnio.png 948w\"},className:\"framer-1osmsus framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.wmg.com/\",motionChild:true,nodeId:\"RxXByQ4Jw\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1010.9090689982269,intrinsicWidth:2327.2726768304506,pixelHeight:1112,pixelWidth:2560,sizes:\"128.9209px\",src:\"https://framerusercontent.com/images/SWwqiOWQ58pWgvJa7o5Yq7Xc5E.png\",srcSet:\"https://framerusercontent.com/images/SWwqiOWQ58pWgvJa7o5Yq7Xc5E.png?scale-down-to=512 512w,https://framerusercontent.com/images/SWwqiOWQ58pWgvJa7o5Yq7Xc5E.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SWwqiOWQ58pWgvJa7o5Yq7Xc5E.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/SWwqiOWQ58pWgvJa7o5Yq7Xc5E.png 2560w\"},className:\"framer-1yitn1g framer-1j21qoe\",\"data-framer-name\":\"Warner Music_Latina-White\"})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1m5g00t\",\"data-styles-preset\":\"XfYgGJSzr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Brands that use tagSpace AI for deeper engagement with people\"})})})}),className:\"framer-1s9sxno\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v6qbgy-container\",\"data-framer-name\":\"BG Video\",isModuleExternal:true,layoutScroll:true,name:\"BG Video\",nodeId:\"LzHAXiUwh\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"LzHAXiUwh\",isMixedBorderRadius:false,layoutId:\"LzHAXiUwh\",loop:true,muted:true,name:\"BG Video\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/7hJqF9uQnRpfl20tvhj6t7SGY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wpptpd\",\"data-framer-name\":\"Section: About Spatial AI\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cuvqz\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1096txi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) -68%, rgb(5, 255, 234) 100%)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Information \"}),\"\u25CF\",/*#__PURE__*/_jsx(\"strong\",{children:\" Exploration \"}),\"\u25CF\",/*#__PURE__*/_jsx(\"strong\",{children:\" Entertainment \"}),\"\u25CF\",/*#__PURE__*/_jsx(\"strong\",{children:\" Reimagined\"})]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Information \"}),\"\u25CF\",/*#__PURE__*/_jsx(\"strong\",{children:\" Exploration \"}),\"\u25CF\",/*#__PURE__*/_jsx(\"strong\",{children:\" Entertainment \"}),\"\u25CF\",/*#__PURE__*/_jsx(\"strong\",{children:\" Reimagined\"})]})})}),className:\"framer-1lzdjln\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"About Spatial AI\"})}),className:\"framer-4xvu0t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"The future of internet experiences is spatial.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Content will be curated or created by AI and displayed around you using mixed reality technologies.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Currently over 70% of the content you consume on mobile devices is already spatial. Our photos, videos, socials, news and destinations all point to real world places around us. Yet we search them by scrolling for hours each week on 2D devices.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"Mixed reality is rapidly becoming mainstream and it is a game changer for how we enjoy these experiences. But it needs spatial content.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\"},children:\"tagSpace is the content infrastructure for this Spatial AI.\"})]}),className:\"framer-bwew7v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dowx13-container\",isModuleExternal:true,nodeId:\"Q2YmVUxcf\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(179, 46, 46, 0)\",borderRadius:10,bottomLeftRadius:10,bottomRightRadius:10,controls:false,height:\"100%\",id:\"Q2YmVUxcf\",isMixedBorderRadius:false,layoutId:\"Q2YmVUxcf\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/r1R2Z67FNfHgSKKPPykBkqc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:10,topRightRadius:10,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15fo09l\",\"data-framer-name\":\"Section: Infrastructure\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wy7gyx\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9kwdhi\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"tagSpace Spatial AI Infrastructure\"})}),className:\"framer-alqi7o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jqnnjs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gbgyej-container\",isModuleExternal:true,nodeId:\"PIaUv7mQF\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:-280,arrowPaddingTop:-70,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:false},progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true}},NpJVcyz3R:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:-60,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:20,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:0,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-end\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:-280,arrowPaddingTop:-70,arrowPosition:\"top-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:.3,effectsPerspective:1200,effectsRotate:0,effectsScale:.9},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:true},gap:50,height:\"100%\",id:\"PIaUv7mQF\",intervalControl:3,itemAmount:1,layoutId:\"PIaUv7mQF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-65,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1obmgge\",\"data-border\":true,\"data-framer-name\":\"Create\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1601,pixelWidth:2401,positionX:\"center\",positionY:\"center\",sizes:\"606px\",src:\"https://framerusercontent.com/images/6PWjINPwHQaboOJSlBipjidHrWU.png\",srcSet:\"https://framerusercontent.com/images/6PWjINPwHQaboOJSlBipjidHrWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/6PWjINPwHQaboOJSlBipjidHrWU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6PWjINPwHQaboOJSlBipjidHrWU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/6PWjINPwHQaboOJSlBipjidHrWU.png 2401w\"},className:\"framer-1h2wd38\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svtgcr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-waet7y\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pjrtzl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Experience\"})}),className:\"framer-1lzwbat\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gss1so\",\"data-framer-name\":\"Pill btn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"LIVE\"})}),className:\"framer-tuor8t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"tagSpace Spatial AI App\"})})}),className:\"framer-1j1zpod\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Voice chat with your personal AI concierge to summon whatever content you need. Socials, Places, Calendar, News. Or generate filters, 3D content or games on demand.\"})}),className:\"framer-1gmy5z1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ys6uf9\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-v8bowq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j7lg68\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:141,intrinsicWidth:141,pixelHeight:141,pixelWidth:141,src:\"https://framerusercontent.com/images/lNjyU8aOdKNqBsh6QaZMx4xD6I.png\"},className:\"framer-1ndnmff\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:141,intrinsicWidth:141,pixelHeight:141,pixelWidth:141,src:\"https://framerusercontent.com/images/Rn7qQtPKkAt4ga7D2Y8RveE3bA.png\"},className:\"framer-maktq5\",\"data-framer-name\":\"Image\"})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"606px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8ic0ty-container\",inComponentSlot:true,nodeId:\"HgahOFVWA\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Button,{bifc2Jwrt:18,fr_PhLrAH:\"Get The App\",height:\"100%\",i5vWfMJAD:\"https://publish.tagstorm.com/tagspacecom\",id:\"HgahOFVWA\",layoutId:\"HgahOFVWA\",style:{height:\"100%\",width:\"100%\"},variant:\"eyG8JwAtc\",width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i8j186\",\"data-border\":true,\"data-framer-name\":\"Command\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:927,pixelWidth:1654,positionX:\"center\",positionY:\"center\",sizes:\"606px\",src:\"https://framerusercontent.com/images/daEr5twWMdBPsc1o8Y5wiWxatQ.png\",srcSet:\"https://framerusercontent.com/images/daEr5twWMdBPsc1o8Y5wiWxatQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/daEr5twWMdBPsc1o8Y5wiWxatQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/daEr5twWMdBPsc1o8Y5wiWxatQ.png 1654w\"},className:\"framer-1la6mro\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1al5l0p\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lvp3n1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12xeh03\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Compute\"})}),className:\"framer-16ysg0p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nstn1a\",\"data-framer-name\":\"Pill btn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"DEVELOPMENT\"})}),className:\"framer-ezcl9s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"Agentic AI Kernel\"})})}),className:\"framer-1ugtne3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Curate: Personalized content for the user is curated from all connected sources\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Create: AI generated content on the fly. Videos, Images, location-aware games\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Prioritize: The top 20 content items are selected based on where you are, what you're doing and your interests\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Layout: These items are then laid out spatially with awareness of real-world objects, buildings and the ground around you.\"})]}),className:\"framer-14y2uwi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-71u6gy\",\"data-border\":true,\"data-framer-name\":\"Search\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:705,pixelWidth:1253,positionX:\"center\",positionY:\"center\",sizes:\"606px\",src:\"https://framerusercontent.com/images/ta05RyZgqcaLbMKxA2KMx5FGDSg.png\",srcSet:\"https://framerusercontent.com/images/ta05RyZgqcaLbMKxA2KMx5FGDSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ta05RyZgqcaLbMKxA2KMx5FGDSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ta05RyZgqcaLbMKxA2KMx5FGDSg.png 1253w\"},className:\"framer-1sw92rd\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ho80qf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kp6xp8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ahy5j5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Connect\"})}),className:\"framer-1ym3901\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16rz5e2\",\"data-framer-name\":\"Pill btn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"ALPHA\"})}),className:\"framer-eezjwh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"omniTag Spatial Content Protocol\"})})}),className:\"framer-1l7zp4z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"3rd party content sources can be easily connected through pin connection specified in our Open Source data protocol. \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Live video, Social Feeds, Points of Interest, Photos, News, Weather are just a few examples.\"})]}),className:\"framer-ork0kf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-byccnq\",\"data-border\":true,\"data-framer-name\":\"Layout\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:704,pixelWidth:1252,positionX:\"center\",positionY:\"center\",sizes:\"606px\",src:\"https://framerusercontent.com/images/0d74vWV9n3Iemr8VcFNA0vQ5p7s.png\",srcSet:\"https://framerusercontent.com/images/0d74vWV9n3Iemr8VcFNA0vQ5p7s.png?scale-down-to=512 512w,https://framerusercontent.com/images/0d74vWV9n3Iemr8VcFNA0vQ5p7s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0d74vWV9n3Iemr8VcFNA0vQ5p7s.png 1252w\"},className:\"framer-j4rec\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1izjow9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f8d73i\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ysyafx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Create\"})}),className:\"framer-1b6497y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q43qiy\",\"data-framer-name\":\"Pill btn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"B2B\"})}),className:\"framer-1ibt4ox\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"tagStudio Creation Tools\"})})}),className:\"framer-9xc8ug\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Drag n drop creation tools allow anyone to quickly and easily create spatial experiences - messages for friends, shopping lists. Drop a Tag to remember where you parked your car, or set up a meeting point for friends. Scavenger hunts and themed walking tours can be created within minutes.\"})}),className:\"framer-110ohwv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2cmf8i\",\"data-border\":true,\"data-framer-name\":\"View\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:834,pixelWidth:1252,positionX:\"center\",positionY:\"center\",sizes:\"606px\",src:\"https://framerusercontent.com/images/Byb6p8PmGYQpqlItCDJHSg7R0Q.png\",srcSet:\"https://framerusercontent.com/images/Byb6p8PmGYQpqlItCDJHSg7R0Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/Byb6p8PmGYQpqlItCDJHSg7R0Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Byb6p8PmGYQpqlItCDJHSg7R0Q.png 1252w\"},className:\"framer-1o9np5g\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rbo91f\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ss469t\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12r1ims\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Analyze\"})}),className:\"framer-jdsaly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-701vwn\",\"data-framer-name\":\"Pill btn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ilt5ig\",\"data-styles-preset\":\"IlagTk4df\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"B2B\"})}),className:\"framer-rhrk0s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"tagLytics Metrics\"})})}),className:\"framer-1och9d3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Understand instantly which content is getting the most engagement, footfall and conversion. Realtime telemetry is associated with every content piece, securely and with full privacy protection.\"})}),className:\"framer-3r16k2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vji8yz\",\"data-framer-name\":\"Section: Powered By\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9kkey\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Powered By\"})}),className:\"framer-221t6u\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8q2mnx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otldgd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-as12l3-container\",isModuleExternal:true,nodeId:\"uTo31PvWO\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"uTo31PvWO\",isMixedBorderRadius:false,layoutId:\"uTo31PvWO\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/QkDFEwQ9D4SAIY7rdMUzn4Ulwyo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lu5pd6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Artificial Intelligence\"})}),className:\"framer-kn8wrm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w3ogn0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ybhof6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g4z94i-container\",nodeId:\"zC7dsFHl7\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"zC7dsFHl7\",layoutId:\"zC7dsFHl7\",TpZLzTcS2:\"3D generative AI\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x32kld-container\",nodeId:\"dOk_aWmaT\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"dOk_aWmaT\",layoutId:\"dOk_aWmaT\",TpZLzTcS2:\"Agentic AI content curation\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dfxnvh-container\",nodeId:\"YCARz0P0p\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"YCARz0P0p\",layoutId:\"YCARz0P0p\",TpZLzTcS2:\"AI Voice Chat\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gsuwwc-container\",nodeId:\"z5RlLwu6q\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"z5RlLwu6q\",layoutId:\"z5RlLwu6q\",TpZLzTcS2:\"Selfie to 3D avatar generator\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c3kfjf-container\",nodeId:\"iLaBxbfWI\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"iLaBxbfWI\",layoutId:\"iLaBxbfWI\",TpZLzTcS2:\"Selfie to 3D avatar generator\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j67in9\",\"data-framer-name\":\"Pill btn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7Um9ib3RvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Roboto\", \"Roboto Placeholder\", sans-serif',\"--framer-text-color\":\"rgba(255, 255, 255, 0.59)\"},children:\"ML predictive positioning Fuse 6 DoF sensors, SLAM, GPS, spatial maps to 10cm accuracy\"})}),className:\"framer-1i8o7ol\",fonts:[\"GF;Roboto-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z7kyek\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2er7g5-container\",isModuleExternal:true,nodeId:\"sPaBhvFsx\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"sPaBhvFsx\",isMixedBorderRadius:false,layoutId:\"sPaBhvFsx\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Ihgs8RlJ8LGiFsH7r8IOao0ZLbk.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c60e6p\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Spatial Computing\"})}),className:\"framer-1fxb2g8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14ysxta\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19cky3p-container\",nodeId:\"YoL05NfED\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"YoL05NfED\",layoutId:\"YoL05NfED\",TpZLzTcS2:\"Mixed Reality engine\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1796mdu-container\",nodeId:\"eLwTdMf8t\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"eLwTdMf8t\",layoutId:\"eLwTdMf8t\",TpZLzTcS2:\"Real world occlusion\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l5pfsn-container\",nodeId:\"Blxs9n39i\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"Blxs9n39i\",layoutId:\"Blxs9n39i\",TpZLzTcS2:\"Real world lighting\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m18o2k-container\",nodeId:\"LLlqLQxGZ\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"LLlqLQxGZ\",layoutId:\"LLlqLQxGZ\",TpZLzTcS2:\"Support any MR glasses\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17mxmcx-container\",nodeId:\"T66SCNcr0\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"T66SCNcr0\",layoutId:\"T66SCNcr0\",TpZLzTcS2:\"AAA mobile graphics engine\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v3efcn-container\",nodeId:\"Dc6V1mgTF\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"Dc6V1mgTF\",layoutId:\"Dc6V1mgTF\",TpZLzTcS2:\"2D Web -> 4D Spatial content conversion\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vpdn9x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nnlnoq\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-36asgf-container\",isModuleExternal:true,nodeId:\"ugcUgxPnv\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"ugcUgxPnv\",isMixedBorderRadius:false,layoutId:\"ugcUgxPnv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/BEcROKOQvLTc3h8wxfHVzLPJPc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w553rr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"DePin\"})}),className:\"framer-aozipp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x8slnz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11ubvjj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bcpd32-container\",nodeId:\"QtG1BzGGl\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"QtG1BzGGl\",layoutId:\"QtG1BzGGl\",TpZLzTcS2:\"Open Source spatial content protocol\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x5ofs7-container\",nodeId:\"ZAZj5NcBg\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"ZAZj5NcBg\",layoutId:\"ZAZj5NcBg\",TpZLzTcS2:\"Mobile Edge Compute\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vz3hwu-container\",nodeId:\"nVnMxybfY\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"nVnMxybfY\",layoutId:\"nVnMxybfY\",TpZLzTcS2:\"Decentralised P2P compute\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fapnxf-container\",nodeId:\"Tt4Z6CL2f\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"Tt4Z6CL2f\",layoutId:\"Tt4Z6CL2f\",TpZLzTcS2:\"IOT data visualization\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vbpo8z-container\",nodeId:\"YdiXGWgL_\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"YdiXGWgL_\",layoutId:\"YdiXGWgL_\",TpZLzTcS2:\"P2P mobile computation\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t5vzzl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ynynb1-container\",isModuleExternal:true,nodeId:\"YHyh1dnnd\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video1,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"YHyh1dnnd\",isMixedBorderRadius:false,layoutId:\"YHyh1dnnd\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/TmDkSWGn84ryTj2QbsHRd9QSiL0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25o2yv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Blockchain\"})}),className:\"framer-1r5ikxn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijnhao\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xqgsrt-container\",nodeId:\"zR260SVGI\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"zR260SVGI\",layoutId:\"zR260SVGI\",TpZLzTcS2:\"Cross-chain\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jk36fk-container\",nodeId:\"YQAVhaRPC\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"YQAVhaRPC\",layoutId:\"YQAVhaRPC\",TpZLzTcS2:\"RWdA (Real World Digital Assets)\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1586r9c-container\",nodeId:\"KeqXvYC0C\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"KeqXvYC0C\",layoutId:\"KeqXvYC0C\",TpZLzTcS2:\"Locational Smart Contracts\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f7doql-container\",nodeId:\"fNLH9K_sT\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"fNLH9K_sT\",layoutId:\"fNLH9K_sT\",TpZLzTcS2:\"Location-based NFTs Marketplace\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c1ut05-container\",nodeId:\"tSBMN8NWV\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"tSBMN8NWV\",layoutId:\"tSBMN8NWV\",TpZLzTcS2:\"Token-powered ecosystem\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d6mbvz-container\",nodeId:\"X0NHeE8pO\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PillBtn,{height:\"100%\",id:\"X0NHeE8pO\",layoutId:\"X0NHeE8pO\",TpZLzTcS2:\"Fractional revenue sharing\",W10ukz4Nd:\"rgba(255, 255, 255, 0.05)\",width:\"100%\"})})})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7w1oj9\",\"data-framer-name\":\"Section: Why Decentralization\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10enf8e\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m4vtyl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Why Decentralization?\"})}),className:\"framer-18miwn4\",\"data-framer-name\":\"Why Decentralization\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zwv7r3\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rekeyb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Interoperability\"})})})}),className:\"framer-miglqn\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Ability to plug in any existing content source, keeping ownership rights and commercial value in tact.\"})}),className:\"framer-2t1gns\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s4btv1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Privacy\"})})})}),className:\"framer-1patnvh\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Private data needs to remain private, especially for sensitive information like; user locations, personal data, social feeds, calendar and photos.\"})}),className:\"framer-l7p13m\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uaenuw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Proof of ownership\"})})})}),className:\"framer-1eztwyx\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Creators must be empowered with ownership and control of their own content. Brands need to preserve their valuable IP.\"})}),className:\"framer-1989b2x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qu4vw4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Moderation\"})})})}),className:\"framer-1mtfxcy\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"All existing rules for 2D content applies to spatial content; there needs to be accountability & moderation. Also the contest for real world real estate is crucial, so there must be automated rules in place that govern which content is desirable by people and which is not.\"})}),className:\"framer-1uiq4rp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n0awqk-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dJadVIX1H\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,canvasPlay:false,controls:false,height:\"100%\",id:\"dJadVIX1H\",isMixedBorderRadius:false,layoutId:\"dJadVIX1H\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/xk8FmkjwY9NzdRwh9frx7gKcXn0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w6u94v\",\"data-framer-name\":\"Section: Team\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nbrfls\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kna5lr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Team DNA\"})}),className:\"framer-5oe0t7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"We are AAA videogames veterans, AI and Web3 experts.\"})})}),className:\"framer-1ztezu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rjqmf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"Our core team members have  been pioneering deep, AI-powered, immersive experiences since the 1990s.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"With pedigrees from the worlds top AAA videogames companies, we know what it takes to deliver new features and content; on time and at scale. It is in our blood.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:\"We began developing our own blockchain technologies in 2018 after realising the importance of empowering creators with ownership and control over their content.  Since then we have been continuously experimenting and developing decentralised technologies that will power the next generation of spatial internet experiences.\"})]}),className:\"framer-16jq2ek\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hr0qij\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.activision.com/\",motionChild:true,nodeId:\"nzQLJkEIL\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:290.9090846038063,intrinsicWidth:1163.6363384152253,pixelHeight:320,pixelWidth:1280,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png\",srcSet:\"https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png?scale-down-to=512 512w,https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png 1280w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:290.9090846038063,intrinsicWidth:1163.6363384152253,pixelHeight:320,pixelWidth:1280,sizes:\"130px\",src:\"https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png\",srcSet:\"https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png?scale-down-to=512 512w,https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:290.9090846038063,intrinsicWidth:1163.6363384152253,pixelHeight:320,pixelWidth:1280,src:\"https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png\",srcSet:\"https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png?scale-down-to=512 512w,https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VJ3yUo9WItJ9eCCjxWuKmUlDKik.png 1280w\"},className:\"framer-1obgu8f framer-1j21qoe\",\"data-framer-name\":\"Activision.svg\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.playstation.com/\",motionChild:true,nodeId:\"cBxhVGYX2\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1963.6363210756926,intrinsicWidth:3490.9090152456756,pixelHeight:576,pixelWidth:1024,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png\",srcSet:\"https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png 1024w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1963.6363210756926,intrinsicWidth:3490.9090152456756,pixelHeight:576,pixelWidth:1024,sizes:\"130px\",src:\"https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png\",srcSet:\"https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png 1024w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1963.6363210756926,intrinsicWidth:3490.9090152456756,pixelHeight:576,pixelWidth:1024,src:\"https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png\",srcSet:\"https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjy89ORXSTKaiLD1ObX6x9oKM.png 1024w\"},className:\"framer-1nf39y9 framer-1j21qoe\",\"data-framer-name\":\"PlayStation-Logo White\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://sonyinteractive.com/\",motionChild:true,nodeId:\"GqdXs2Tqc\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:847.2727089085859,intrinsicWidth:2327.2726768304506,pixelHeight:932,pixelWidth:2560,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png\",srcSet:\"https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png 2560w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:847.2727089085859,intrinsicWidth:2327.2726768304506,pixelHeight:932,pixelWidth:2560,sizes:\"130px\",src:\"https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png\",srcSet:\"https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png 2560w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:847.2727089085859,intrinsicWidth:2327.2726768304506,pixelHeight:932,pixelWidth:2560,src:\"https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png\",srcSet:\"https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/sQflk92fFuGQFrm29oTClDU9rJo.png 2560w\"},className:\"framer-1e1688n framer-1j21qoe\",\"data-framer-name\":\"Sony Interactive_Entertainment_logo_(2016).svg\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://en.wikipedia.org/wiki/THQ\",motionChild:true,nodeId:\"lLd_hbZAL\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:327.2727201792821,intrinsicWidth:727.2727115095158,pixelHeight:360,pixelWidth:800,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png\",srcSet:\"https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png 800w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:327.2727201792821,intrinsicWidth:727.2727115095158,pixelHeight:360,pixelWidth:800,sizes:\"130px\",src:\"https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png\",srcSet:\"https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:327.2727201792821,intrinsicWidth:727.2727115095158,pixelHeight:360,pixelWidth:800,src:\"https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png\",srcSet:\"https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntcG1I4CpYlYenDuAIIhwe9qA4k.png 800w\"},className:\"framer-9j76az framer-1j21qoe\",\"data-framer-name\":\"THQ logo_2011.svg\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.capcom.com/\",motionChild:true,nodeId:\"RyeS0lTCf\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:847.2727089085859,intrinsicWidth:2327.2726768304506,pixelHeight:1024,pixelWidth:5592,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png 5592w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:847.2727089085859,intrinsicWidth:2327.2726768304506,pixelHeight:1024,pixelWidth:5592,positionX:\"center\",positionY:\"center\",sizes:\"130px\",src:\"https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png 5592w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:847.2727089085859,intrinsicWidth:2327.2726768304506,pixelHeight:1024,pixelWidth:5592,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Re7RgkkW7u2uvkvx1u4qRqKy1vM.png 5592w\"},className:\"framer-19cguxb framer-1j21qoe\",\"data-framer-name\":\"Sony Interactive_Entertainment_logo_(2016).svg\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ea.com/\",motionChild:true,nodeId:\"ySTo3rhlU\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1963.6363210756926,intrinsicWidth:3490.9090152456756,pixelHeight:2160,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png\",srcSet:\"https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png 3840w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1963.6363210756926,intrinsicWidth:3490.9090152456756,pixelHeight:2160,pixelWidth:3840,sizes:\"130px\",src:\"https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png\",srcSet:\"https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1963.6363210756926,intrinsicWidth:3490.9090152456756,pixelHeight:2160,pixelWidth:3840,src:\"https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png\",srcSet:\"https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/DEnN824H7ZoWcAbSDMXeeVo.png 3840w\"},className:\"framer-7sdd0u framer-1j21qoe\",\"data-framer-name\":\"Electronic-Arts-Logo-2000 White\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.digitalx.com/\",motionChild:true,nodeId:\"xPpVhX29V\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:551.8181698578451,intrinsicWidth:2988.181753414723,pixelHeight:607,pixelWidth:3287,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png\",srcSet:\"https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png 3287w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:551.8181698578451,intrinsicWidth:2988.181753414723,pixelHeight:607,pixelWidth:3287,sizes:\"130px\",src:\"https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png\",srcSet:\"https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png 3287w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:551.8181698578451,intrinsicWidth:2988.181753414723,pixelHeight:607,pixelWidth:3287,src:\"https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png\",srcSet:\"https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=512 512w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/h7px2hONhiBiLoNeBqkMUt44.png 3287w\"},className:\"framer-19c3h30 framer-1j21qoe\",\"data-framer-name\":\"Digitalx\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.sega.com/\",motionChild:true,nodeId:\"f114BAjoN\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:363.6363557547579,intrinsicWidth:1090.9090672642737,pixelHeight:400,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png\",srcSet:\"https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png?scale-down-to=512 512w,https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png 1200w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:363.6363557547579,intrinsicWidth:1090.9090672642737,pixelHeight:400,pixelWidth:1200,sizes:\"130px\",src:\"https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png\",srcSet:\"https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png?scale-down-to=512 512w,https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:363.6363557547579,intrinsicWidth:1090.9090672642737,pixelHeight:400,pixelWidth:1200,src:\"https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png\",srcSet:\"https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png?scale-down-to=512 512w,https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cy84Tcm5h2bYGYw1moalyvCKF88.png 1200w\"},className:\"framer-17wacfo framer-1j21qoe\",\"data-framer-name\":\"SEGA logo.svg\",whileHover:animation4})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.aristocrat.com/\",motionChild:true,nodeId:\"dsmSnJ4gb\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:367.27271931230547,intrinsicWidth:1163.6363384152253,pixelHeight:404,pixelWidth:1280,sizes:`max((min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 136px) / 2, 130px)`,src:\"https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png\",srcSet:\"https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png 1280w\"}},NpJVcyz3R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:367.27271931230547,intrinsicWidth:1163.6363384152253,pixelHeight:404,pixelWidth:1280,sizes:\"130px\",src:\"https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png\",srcSet:\"https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:367.27271931230547,intrinsicWidth:1163.6363384152253,pixelHeight:404,pixelWidth:1280,src:\"https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png\",srcSet:\"https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png?scale-down-to=512 512w,https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/f7N7ItjyyQ3aYijG34bYHxNhAg.png 1280w\"},className:\"framer-hn88t6 framer-1j21qoe\",\"data-framer-name\":\"Aristocrat Leisure_logo.svg\",whileHover:animation4})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sg84do\",\"data-framer-name\":\"Section: Partners & Backers\",id:elementId6,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9jbz4\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-57mysq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our Network\"})}),className:\"framer-1dhufp5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wlxoxa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9psrc\",\"data-border\":true,\"data-framer-name\":\"Frame 7735\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"Backed By\"})})}),className:\"framer-1d7brnt\",\"data-framer-name\":\"Backed By\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18y95v-container\",isModuleExternal:true,nodeId:\"O6w1QVpTU\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:.4,id:\"O6w1QVpTU\",layoutId:\"O6w1QVpTU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://www.telekom.com/\",motionChild:true,nodeId:\"hc6cLYEaR\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:215,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3Ycvo3bHgOMQbVaUVIFW96QGzWM.png\"},className:\"framer-1a05a14 framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.techstars.com/\",motionChild:true,nodeId:\"Eh2k0DbLR\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:215,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/BERh5QSvk6VVXZHvlTklSCNqrEg.png\"},className:\"framer-1ay1n8d framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://quakecapital.com/\",motionChild:true,nodeId:\"OhUt1btgd\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1184,intrinsicWidth:1076,pixelHeight:482,pixelWidth:1242,positionX:\"center\",positionY:\"center\",sizes:\"189px\",src:\"https://framerusercontent.com/images/NKq5viHALBJOtusnzhlMm2m5wI.png\",srcSet:\"https://framerusercontent.com/images/NKq5viHALBJOtusnzhlMm2m5wI.png?scale-down-to=512 512w,https://framerusercontent.com/images/NKq5viHALBJOtusnzhlMm2m5wI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NKq5viHALBJOtusnzhlMm2m5wI.png 1242w\"},className:\"framer-szyhlh framer-1j21qoe\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.faculty.group/\",motionChild:true,nodeId:\"b7T3Y7jn9\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1184,intrinsicWidth:1076,pixelHeight:149,pixelWidth:926,positionX:\"center\",positionY:\"center\",sizes:\"327px\",src:\"https://framerusercontent.com/images/pQu6SAicM64onfiNh2mq6PBWhAQ.png\",srcSet:\"https://framerusercontent.com/images/pQu6SAicM64onfiNh2mq6PBWhAQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/pQu6SAicM64onfiNh2mq6PBWhAQ.png 926w\"},className:\"framer-elyx82 framer-1j21qoe\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.jelix.vc/\",motionChild:true,nodeId:\"lwFNTF1DE\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1184,intrinsicWidth:1076,pixelHeight:448,pixelWidth:600,positionX:\"center\",positionY:\"center\",sizes:\"137px\",src:\"https://framerusercontent.com/images/s2nAsQj2Z7U0Jsffnw1Fwh2QTg.png\",srcSet:\"https://framerusercontent.com/images/s2nAsQj2Z7U0Jsffnw1Fwh2QTg.png?scale-down-to=512 512w,https://framerusercontent.com/images/s2nAsQj2Z7U0Jsffnw1Fwh2QTg.png 600w\"},className:\"framer-146qehu framer-1j21qoe\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.azafranpartners.com/\",motionChild:true,nodeId:\"ap0_aB80Q\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1184,intrinsicWidth:1076,pixelHeight:312,pixelWidth:1375,positionX:\"center\",positionY:\"center\",sizes:\"221px\",src:\"https://framerusercontent.com/images/14Dv2NcLglHslFlh4dpRL2AH24M.png\",srcSet:\"https://framerusercontent.com/images/14Dv2NcLglHslFlh4dpRL2AH24M.png?scale-down-to=512 512w,https://framerusercontent.com/images/14Dv2NcLglHslFlh4dpRL2AH24M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/14Dv2NcLglHslFlh4dpRL2AH24M.png 1375w\"},className:\"framer-dqr86d framer-1j21qoe\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.boltscapital.com/\",motionChild:true,nodeId:\"R0jwtxUoM\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:741,intrinsicWidth:1632,pixelHeight:213,pixelWidth:817,positionX:\"center\",positionY:\"center\",sizes:\"220.2429px\",src:\"https://framerusercontent.com/images/l7OM2mgs1gpuXZh2j9JQ4Oides.png\",srcSet:\"https://framerusercontent.com/images/l7OM2mgs1gpuXZh2j9JQ4Oides.png?scale-down-to=512 512w,https://framerusercontent.com/images/l7OM2mgs1gpuXZh2j9JQ4Oides.png 817w\"},className:\"framer-1y1434v framer-1j21qoe\",\"data-framer-name\":\"Bolts Capital\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:449,intrinsicWidth:1364,pixelHeight:449,pixelWidth:1364,sizes:\"214px\",src:\"https://framerusercontent.com/images/FXxe6ZHEbXW7HlbaGbnCjq0FuBA.png\",srcSet:\"https://framerusercontent.com/images/FXxe6ZHEbXW7HlbaGbnCjq0FuBA.png?scale-down-to=512 512w,https://framerusercontent.com/images/FXxe6ZHEbXW7HlbaGbnCjq0FuBA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FXxe6ZHEbXW7HlbaGbnCjq0FuBA.png 1364w\"},className:\"framer-1klrj5u\",\"data-framer-name\":\"SL2 Capital\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q88kzg\",\"data-border\":true,\"data-framer-name\":\"Frame 7735\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1woeoh7\",\"data-styles-preset\":\"kaAjtqlAx\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 204, 188)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgba(0, 204, 187, 0.3) 0%, rgb(5, 255, 234) 100%)\"},children:\"Partnered With\"})})}),className:\"framer-1ii7466\",\"data-framer-name\":\"Partnered With\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p3ey3a-container\",isModuleExternal:true,nodeId:\"GxXz6or_8\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:.4,id:\"GxXz6or_8\",layoutId:\"GxXz6or_8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://artis.systems/\",motionChild:true,nodeId:\"pFrqkbccF\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:439,pixelWidth:2049,positionX:\"center\",positionY:\"center\",sizes:\"160px\",src:\"https://framerusercontent.com/images/FnsTNmHzmlPND1pFYQaEMuiFsC8.png\",srcSet:\"https://framerusercontent.com/images/FnsTNmHzmlPND1pFYQaEMuiFsC8.png?scale-down-to=512 512w,https://framerusercontent.com/images/FnsTNmHzmlPND1pFYQaEMuiFsC8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FnsTNmHzmlPND1pFYQaEMuiFsC8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FnsTNmHzmlPND1pFYQaEMuiFsC8.png 2049w\"},className:\"framer-v8pq42 framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.ericsson.com/en/reports-and-papers/consumerlab/startup-5g\",motionChild:true,nodeId:\"yU5CKusOa\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DUS8fALMJnd4mxUiS4uSPFs35k.png\"},className:\"framer-bmys9j framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.xreal.com/\",motionChild:true,nodeId:\"R6Ox1ywgu\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"stretch\",pixelHeight:216,pixelWidth:216,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cZlGOIXVXSy6tineEkLqgxZ8dUw.png\"},className:\"framer-1qb4ybf framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.mexc.com/\",motionChild:true,nodeId:\"OSUImR0mk\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:296,pixelWidth:2359,positionX:\"center\",positionY:\"center\",sizes:\"286px\",src:\"https://framerusercontent.com/images/EJGMcPRNjQl5rDCjtBfuWXfwsk.png\",srcSet:\"https://framerusercontent.com/images/EJGMcPRNjQl5rDCjtBfuWXfwsk.png?scale-down-to=512 512w,https://framerusercontent.com/images/EJGMcPRNjQl5rDCjtBfuWXfwsk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EJGMcPRNjQl5rDCjtBfuWXfwsk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/EJGMcPRNjQl5rDCjtBfuWXfwsk.png 2359w\"},className:\"framer-1sdf5zo framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://sport-gsic.com/\",motionChild:true,nodeId:\"y6xfISV0Y\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:450,pixelWidth:1850,positionX:\"center\",positionY:\"center\",sizes:\"235px\",src:\"https://framerusercontent.com/images/jBDoZo5Oaf8P1QiaI34kX47KUE.png\",srcSet:\"https://framerusercontent.com/images/jBDoZo5Oaf8P1QiaI34kX47KUE.png?scale-down-to=512 512w,https://framerusercontent.com/images/jBDoZo5Oaf8P1QiaI34kX47KUE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jBDoZo5Oaf8P1QiaI34kX47KUE.png 1850w\"},className:\"framer-xeeb78 framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://blockchainaustralia.com.au/\",motionChild:true,nodeId:\"WW6MBoHfu\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:556,pixelWidth:1486,positionX:\"center\",positionY:\"center\",sizes:\"160px\",src:\"https://framerusercontent.com/images/NHt7s9V6eBIysYG6CIRugF30djg.png\",srcSet:\"https://framerusercontent.com/images/NHt7s9V6eBIysYG6CIRugF30djg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NHt7s9V6eBIysYG6CIRugF30djg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NHt7s9V6eBIysYG6CIRugF30djg.png 1486w\"},className:\"framer-5osti4 framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.awexr.com/\",motionChild:true,nodeId:\"lXmu8qMd9\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",pixelHeight:390,pixelWidth:348,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/eAoJ09f0zQOuN8Qx92581JZSRw.png\"},className:\"framer-10z2zqs framer-1j21qoe\",\"data-framer-name\":\"image 121\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://solusgroup.io/\",motionChild:true,nodeId:\"sf3q2zGUq\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:363.6363557547579,intrinsicWidth:1011.8181598876138,pixelHeight:400,pixelWidth:1113,sizes:\"169.7325px\",src:\"https://framerusercontent.com/images/Dj5sXP9ZJmMgrIIxjN6SYPIJs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Dj5sXP9ZJmMgrIIxjN6SYPIJs.png?scale-down-to=512 512w,https://framerusercontent.com/images/Dj5sXP9ZJmMgrIIxjN6SYPIJs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dj5sXP9ZJmMgrIIxjN6SYPIJs.png 1113w\"},className:\"framer-4avtxi framer-1j21qoe\",\"data-framer-name\":\"Solus-group-logo-header-BW\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.qualcomm.com/\",motionChild:true,nodeId:\"lV7xowiOn\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:471,intrinsicWidth:2560,pixelHeight:471,pixelWidth:2560,sizes:\"217.4098px\",src:\"https://framerusercontent.com/images/xTHOjjB9jTuX2RbmfAIlyaLV8VQ.png\",srcSet:\"https://framerusercontent.com/images/xTHOjjB9jTuX2RbmfAIlyaLV8VQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/xTHOjjB9jTuX2RbmfAIlyaLV8VQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTHOjjB9jTuX2RbmfAIlyaLV8VQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/xTHOjjB9jTuX2RbmfAIlyaLV8VQ.png 2560w\"},className:\"framer-9gxzpf framer-1j21qoe\",\"data-framer-name\":\"Qualcomm-Logo-White\"})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7rqedz\",\"data-framer-name\":\"Section: Roadmap\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i6ww6d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"RoadMap\"})}),className:\"framer-9t25ne\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ch4672-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S8ZHzTxSs\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:false,controls:false,height:\"100%\",id:\"S8ZHzTxSs\",isMixedBorderRadius:false,layoutId:\"S8ZHzTxSs\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/PAZsRXgPW5IBTSCDsbM7B0pfuck.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1inzscc\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-shwcoc-container\",nodeId:\"CUeIr5DeP\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(Journey,{aEFVOAGFE:\"\u2022 tagSpace App iOS/Android\\n\u2022 tagStudio B2B Creator\\n\u2022 tagLytics RWdA Analytics\",height:\"100%\",id:\"CUeIr5DeP\",layoutId:\"CUeIr5DeP\",s09OAf9Px:\"LIVE\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i20vq2-container\",nodeId:\"mxUTPVFwE\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(Journey,{aEFVOAGFE:\"\u2022 $TAGAI listings\\n\u2022 Ecosystem growth\\n\u2022 3D graphics enhancements\",height:\"100%\",id:\"mxUTPVFwE\",layoutId:\"mxUTPVFwE\",s09OAf9Px:\"2025 Q2\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1orwp13-container\",nodeId:\"KVZv0SGXj\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(Journey,{aEFVOAGFE:\"\u2022 3D generative AI\\n\u2022 tagPlace RWdA Marketplace Beta\\n\u2022 In-app rewards\\n\u2022 Start native -> web app development\",height:\"100%\",id:\"KVZv0SGXj\",layoutId:\"KVZv0SGXj\",s09OAf9Px:\"2025 Q3\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-h2x8bi-container\",nodeId:\"oPVeA1Fod\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(Journey,{aEFVOAGFE:\"\u2022 Agentic Spatial AI\\n\u2022 Voice assist AI\\n\u2022 OmniTag Open Source spatial content protocol\\n\u2022 tagStudio Public Launch\\n\u2022 AI 3D selfie generator\",height:\"100%\",id:\"oPVeA1Fod\",layoutId:\"oPVeA1Fod\",s09OAf9Px:\"2025 Q4\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{width:`min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:175,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 40px) / 5, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18fpe83-container\",nodeId:\"z89kozfjE\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(Journey,{aEFVOAGFE:\"\u2022 AI Spatial Concierge\\n\u2022 tagSpace web app launch\\n\u2022 Land Tags Beta release\\n\u2022 tagSpace mixed reality glasses\",height:\"100%\",id:\"z89kozfjE\",layoutId:\"z89kozfjE\",s09OAf9Px:\"2026 Q1\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-155f29u\",\"data-framer-name\":\"BG Image\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ru3717\",\"data-framer-name\":\"Section: Awards\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cd83j5\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Awards & Programs\"})}),className:\"framer-4xfc9l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cmb52l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qngze8\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{height:460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 20px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19l3ei4-container\",nodeId:\"OwIfoupQk\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(AwardsAndPrograms,{height:\"100%\",id:\"OwIfoupQk\",kqYmi0XvX:\"Techstars Lisbon\",layoutId:\"OwIfoupQk\",r_QruAdbt:\"rgba(255, 255, 255, 0.07)\",style:{height:\"100%\",width:\"100%\"},UYRKIGyi3:\"Won first 3 customers in 8 weeks - Music festivals, brand marketing and tourism\",width:\"100%\",YTmvcRhd_:\"https://www.techstars.com/newsroom/the-first-class-of-techstars-lisbon-in-partnership-with-semapa-next\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{height:460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 20px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m0lqz2-container\",nodeId:\"eRii376HN\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(AwardsAndPrograms,{bLf_WqZYr:addImageAlt({pixelHeight:754,pixelWidth:1024,src:\"https://framerusercontent.com/images/aQJMLaobeV5PzipoKvFvitYSsMM.png\",srcSet:\"https://framerusercontent.com/images/aQJMLaobeV5PzipoKvFvitYSsMM.png?scale-down-to=512 512w,https://framerusercontent.com/images/aQJMLaobeV5PzipoKvFvitYSsMM.png 1024w\"},\"\"),height:\"100%\",id:\"eRii376HN\",kqYmi0XvX:\"5G Consumer Program\",layoutId:\"eRii376HN\",r_QruAdbt:\"rgba(255, 255, 255, 0.07)\",style:{height:\"100%\",width:\"100%\"},UYRKIGyi3:\"World first AR media tour of Cologne and historic tour of Berlin Wall. Partnered with RTL media group and Deutsche Telekom\",width:\"100%\",YTmvcRhd_:\"https://www.hubraum.com/5g-consumer-entertainment-program/\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{height:460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 20px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5fiour-container\",nodeId:\"tIS3hJBtJ\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(AwardsAndPrograms,{bLf_WqZYr:addImageAlt({pixelHeight:539,pixelWidth:1025,src:\"https://framerusercontent.com/images/dZYaCPveadruyzkiiGJy2PEb7w.png\",srcSet:\"https://framerusercontent.com/images/dZYaCPveadruyzkiiGJy2PEb7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/dZYaCPveadruyzkiiGJy2PEb7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dZYaCPveadruyzkiiGJy2PEb7w.png 1025w\"},\"\"),height:\"100%\",id:\"tIS3hJBtJ\",kqYmi0XvX:\"Mixed Reality Program\",layoutId:\"tIS3hJBtJ\",r_QruAdbt:\"rgba(255, 255, 255, 0.07)\",style:{height:\"100%\",width:\"100%\"},UYRKIGyi3:\"Delivered world first city-scale holographic sightseeing experiences for nReal Light MR glasses.\",width:\"100%\",YTmvcRhd_:\"https://www.hubraum.com/mixed-reality-program/\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1auh8ym\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{height:460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 20px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i2gsaf-container\",nodeId:\"FDDq0GhHb\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(AwardsAndPrograms,{bLf_WqZYr:addImageAlt({pixelHeight:288,pixelWidth:512,src:\"https://framerusercontent.com/images/2vwvaYsRquNbvpHhJuXaP52WBUA.png\"},\"\"),height:\"100%\",id:\"FDDq0GhHb\",kqYmi0XvX:\"Smart Cities Program\",layoutId:\"FDDq0GhHb\",r_QruAdbt:\"rgba(255, 255, 255, 0.07)\",style:{height:\"100%\",width:\"100%\"},UYRKIGyi3:\"Connections to customers, special access into insights and trends, priority access to technologies and support.\",width:\"100%\",YTmvcRhd_:\"https://www.qualcomm.com/news/releases/2019/04/qualcomm-launches-qualcomm-smart-cities-accelerator-program\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{height:460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 20px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iy0e45-container\",nodeId:\"SGLO9YVRY\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(AwardsAndPrograms,{bLf_WqZYr:addImageAlt({pixelHeight:451,pixelWidth:512,src:\"https://framerusercontent.com/images/7CgDPfhTXJAmBPKLfycKlV0.png\"},\"\"),height:\"100%\",id:\"SGLO9YVRY\",kqYmi0XvX:\"Startup 5G Program\",layoutId:\"SGLO9YVRY\",r_QruAdbt:\"rgba(255, 255, 255, 0.07)\",style:{height:\"100%\",width:\"100%\"},UYRKIGyi3:\"Premium access to global network of Telcos, Governments and Enterprises looking for 5G consumer experiences.\",width:\"100%\",YTmvcRhd_:\"https://www.ericsson.com/en/reports-and-papers/consumerlab/startup-5g\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px)`},NpJVcyz3R:{height:460}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:340,width:`max((min(${componentViewport?.width||\"100vw\"} * 0.9, 1440px) - 20px) / 3, 1px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13difkd-container\",nodeId:\"dF6IsIcws\",rendersWithMotion:true,scopeId:\"uFaAaXDZy\",whileHover:animation5,children:/*#__PURE__*/_jsx(AwardsAndPrograms,{bLf_WqZYr:addImageAlt({pixelHeight:169,pixelWidth:512,src:\"https://framerusercontent.com/images/EpoL1aLbBw9DL3bdH6uz9cs4iWQ.png\"},\"\"),height:\"100%\",id:\"dF6IsIcws\",kqYmi0XvX:\" Outliers Program 2022\",layoutId:\"dF6IsIcws\",r_QruAdbt:\"rgba(255, 255, 255, 0.07)\",style:{height:\"100%\",width:\"100%\"},UYRKIGyi3:\"Work on Web3 x AR tourism POC with Abu Dhabi's leading corporate and government entities.\",width:\"100%\",YTmvcRhd_:\"https://www.hub71.com/latest-news/press-release/the-department-of-culture-and-tourism-abu-dhabi-and-hub71-partner-on-innovative-startup-solutions\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1quu51\",\"data-framer-name\":\"BG Image\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8jbzxt\",\"data-framer-name\":\"Section: Get The App\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get the App\"})}),className:\"framer-1jmbpfv\",\"data-framer-name\":\"Get The App\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jyjqza\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1252,intrinsicWidth:1252,pixelHeight:1e3,pixelWidth:1e3,sizes:\"238px\",src:\"https://framerusercontent.com/images/7eoZDcmyq9tMwwtlF8YwZtgUmao.png\",srcSet:\"https://framerusercontent.com/images/7eoZDcmyq9tMwwtlF8YwZtgUmao.png?scale-down-to=512 512w,https://framerusercontent.com/images/7eoZDcmyq9tMwwtlF8YwZtgUmao.png 1000w\"},className:\"framer-14e7523\",\"data-border\":true,\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n0athw\",\"data-border\":true,\"data-framer-name\":\"Frame 7740\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wsjy7h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"The tagSpace AI app is currently available for iOS and Android smartphones as well as a prototype for the XREAL Light mixed reality glasses.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Previously only available to enterprises, there is now content available for everybody with new experiences and spatial content added weekly. Scan the QR code or click the button on your mobile devices to download the latest version.\"})]}),className:\"framer-gtyibt\",\"data-framer-name\":\"Experience the real world like never before with Mixed Reality to bring about your creations to life\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6jxyde\",\"data-framer-name\":\"Frame 8005\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 168px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f12n4g-container\",nodeId:\"D7XU_19kG\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{bifc2Jwrt:18,fr_PhLrAH:\"Download\",height:\"100%\",i5vWfMJAD:\"https://publish.tagstorm.com/tagspacecom\",id:\"D7XU_19kG\",layoutId:\"D7XU_19kG\",variant:\"EUBQVfWZ6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 168px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tdcyjd-container\",nodeId:\"ATYqyYc1u\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{bifc2Jwrt:18,fr_PhLrAH:\"Release Notes\",height:\"100%\",i5vWfMJAD:\"https://apps.apple.com/us/app/tagspace/id1256307378\",id:\"ATYqyYc1u\",layoutId:\"ATYqyYc1u\",variant:\"TXMkXR9fQ\",width:\"100%\"})})})})})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ckese3\",\"data-framer-name\":\"Section: Join the Conversation\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-121p1x9\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-or4mn9\",\"data-border\":true,\"data-framer-name\":\"Frame 7740\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rx1rn5\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join the conversation, get involved!\"})}),className:\"framer-tspmi4\",\"data-framer-name\":\"Join the conversation in the tagSpace Discord\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Get the latest updates and access the future of tagSpace and the TAGD token\"})}),className:\"framer-1drfph5\",\"data-framer-name\":\"Experience the real world like never before with Mixed Reality to bring about your creations to life\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hnppvc\",\"data-framer-name\":\"Frame 8005\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2kddps-container\",nodeId:\"d2_EKiojL\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{bifc2Jwrt:18,fr_PhLrAH:\"Join our Discord\",height:\"100%\",i5vWfMJAD:\"https://discord.gg/drjQ6RRDHX\",id:\"d2_EKiojL\",layoutId:\"d2_EKiojL\",variant:\"EUBQVfWZ6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{width:`calc(min(${componentViewport?.width||\"100vw\"} * 0.95, 1440px) - 60px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g8rq2u-container\",nodeId:\"aiBMYdWxG\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Button,{bifc2Jwrt:18,fr_PhLrAH:\"Join our Telegram\",height:\"100%\",i5vWfMJAD:\"https://t.me/tagspace_chat\",id:\"aiBMYdWxG\",layoutId:\"aiBMYdWxG\",variant:\"TXMkXR9fQ\",width:\"100%\"})})})})})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t9ckyn\",\"data-framer-name\":\"Section: Follow Us\",id:elementId11,ref:ref12,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-14kgtv7\",\"data-border\":true,\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-177f42t\",\"data-framer-name\":\"Frame 7721\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16cgs4l\",\"data-framer-name\":\"Frame 7735\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"left\"},children:\"Follow Us\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Follow Us\"})}),className:\"framer-3h2fjk\",\"data-framer-name\":\"Join the conversation in the tagSpace Discord\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.5)\"},children:\"Connect with tagSpace to receive important updates and join a growing community of creators.\"})}),className:\"framer-1b2tok1\",\"data-framer-name\":\"Enhance your World.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sujb73\",\"data-framer-name\":\"Home page Links\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/tagSpaceCo/\",motionChild:true,nodeId:\"EnUz3IPmX\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 17.543 13.398 L 18.204 9.087 L 14.068 9.087 L 14.068 6.29 C 14.068 5.111 14.646 3.961 16.498 3.961 L 18.379 3.961 L 18.379 0.291 C 18.379 0.291 16.672 0 15.041 0 C 11.634 0 9.408 2.064 9.408 5.802 L 9.408 9.087 L 5.621 9.087 L 5.621 13.398 L 9.408 13.398 L 9.408 23.819 C 10.179 23.94 10.958 24 11.738 24 C 12.518 24 13.297 23.94 14.068 23.819 L 14.068 13.398 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:8925493170},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 21.928 16.748 L 22.755 11.359 L 17.585 11.359 L 17.585 7.863 C 17.585 6.388 18.307 4.951 20.623 4.951 L 22.973 4.951 L 22.973 0.364 C 22.973 0.364 20.84 0 18.801 0 C 14.543 0 11.76 2.581 11.76 7.252 L 11.76 11.359 L 7.027 11.359 L 7.027 16.748 L 11.76 16.748 L 11.76 29.774 C 12.723 29.925 13.697 30 14.672 30 C 15.648 30 16.621 29.925 17.585 29.774 L 17.585 16.748 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11162030872}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-32by2m framer-1j21qoe\",\"data-framer-name\":\"5296500 fb_social media_facebook_facebook logo_social network_icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 29.238 22.33 L 30.34 15.146 L 23.447 15.146 L 23.447 10.483 C 23.447 8.518 24.409 6.602 27.497 6.602 L 30.631 6.602 L 30.631 0.485 C 30.631 0.485 27.787 0 25.068 0 C 19.39 0 15.68 3.441 15.68 9.67 L 15.68 15.146 L 9.369 15.146 L 9.369 22.33 L 15.68 22.33 L 15.68 39.698 C 16.964 39.899 18.263 40 19.563 40 C 20.863 40 22.162 39.899 23.447 39.698 L 23.447 22.33 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11735078646,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/tagspace_co\",motionChild:true,nodeId:\"riWPUUz2U\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 11.874 7.032 C 8.926 7.032 6.484 9.432 6.484 12.421 C 6.484 15.411 8.884 17.811 11.874 17.811 C 14.863 17.811 17.263 15.368 17.263 12.421 C 17.263 9.474 14.821 7.032 11.874 7.032 Z M 11.874 15.874 C 9.979 15.874 8.421 14.316 8.421 12.421 C 8.421 10.526 9.979 8.968 11.874 8.968 C 13.768 8.968 15.326 10.526 15.326 12.421 C 15.326 14.316 13.768 15.874 11.874 15.874 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 16.253 6.905 C 16.253 6.231 16.799 5.684 17.474 5.684 C 18.148 5.684 18.695 6.231 18.695 6.905 C 18.695 7.58 18.148 8.126 17.474 8.126 C 16.799 8.126 16.253 7.58 16.253 6.905 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 20.632 3.747 C 19.537 2.611 17.979 2.021 16.211 2.021 L 7.537 2.021 C 3.874 2.021 1.432 4.463 1.432 8.126 L 1.432 16.758 C 1.432 18.568 2.021 20.126 3.2 21.263 C 4.337 22.358 5.853 22.905 7.579 22.905 L 16.168 22.905 C 17.979 22.905 19.495 22.316 20.589 21.263 C 21.726 20.168 22.316 18.611 22.316 16.8 L 22.316 8.126 C 22.316 6.358 21.726 4.842 20.632 3.747 Z M 20.463 16.8 C 20.463 18.105 20 19.158 19.242 19.874 C 18.484 20.589 17.432 20.968 16.168 20.968 L 7.579 20.968 C 6.316 20.968 5.263 20.589 4.505 19.874 C 3.747 19.116 3.368 18.063 3.368 16.758 L 3.368 8.126 C 3.368 6.863 3.747 5.811 4.505 5.053 C 5.221 4.337 6.316 3.958 7.579 3.958 L 16.253 3.958 C 17.516 3.958 18.568 4.337 19.326 5.095 C 20.042 5.853 20.463 6.905 20.463 8.126 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10194907770},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 14.842 8.789 C 11.158 8.789 8.105 11.789 8.105 15.526 C 8.105 19.263 11.105 22.263 14.842 22.263 C 18.579 22.263 21.579 19.211 21.579 15.526 C 21.579 11.842 18.526 8.789 14.842 8.789 Z M 14.842 19.842 C 12.474 19.842 10.526 17.895 10.526 15.526 C 10.526 13.158 12.474 11.211 14.842 11.211 C 17.211 11.211 19.158 13.158 19.158 15.526 C 19.158 17.895 17.211 19.842 14.842 19.842 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 20.316 8.632 C 20.316 7.789 20.999 7.105 21.842 7.105 C 22.685 7.105 23.368 7.789 23.368 8.632 C 23.368 9.475 22.685 10.158 21.842 10.158 C 20.999 10.158 20.316 9.475 20.316 8.632 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 25.789 4.684 C 24.421 3.263 22.474 2.526 20.263 2.526 L 9.421 2.526 C 4.842 2.526 1.789 5.579 1.789 10.158 L 1.789 20.947 C 1.789 23.211 2.526 25.158 4 26.579 C 5.421 27.947 7.316 28.632 9.474 28.632 L 20.211 28.632 C 22.474 28.632 24.368 27.895 25.737 26.579 C 27.158 25.211 27.895 23.263 27.895 21 L 27.895 10.158 C 27.895 7.947 27.158 6.053 25.789 4.684 Z M 25.579 21 C 25.579 22.632 25 23.947 24.053 24.842 C 23.105 25.737 21.789 26.211 20.211 26.211 L 9.474 26.211 C 7.895 26.211 6.579 25.737 5.632 24.842 C 4.684 23.895 4.211 22.579 4.211 20.947 L 4.211 10.158 C 4.211 8.579 4.684 7.263 5.632 6.316 C 6.526 5.421 7.895 4.947 9.474 4.947 L 20.316 4.947 C 21.895 4.947 23.211 5.421 24.158 6.368 C 25.053 7.316 25.579 8.632 25.579 10.158 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11553713197}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1ps7wxj framer-1j21qoe\",\"data-framer-name\":\"1161953 instagram_icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 19.789 11.719 C 14.877 11.719 10.807 15.719 10.807 20.702 C 10.807 25.684 14.807 29.684 19.789 29.684 C 24.772 29.684 28.772 25.614 28.772 20.702 C 28.772 15.789 24.702 11.719 19.789 11.719 Z M 19.789 26.456 C 16.632 26.456 14.035 23.86 14.035 20.702 C 14.035 17.544 16.632 14.947 19.789 14.947 C 22.947 14.947 25.544 17.544 25.544 20.702 C 25.544 23.86 22.947 26.456 19.789 26.456 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 27.088 11.509 C 27.088 10.385 27.999 9.474 29.123 9.474 C 30.247 9.474 31.158 10.385 31.158 11.509 C 31.158 12.633 30.247 13.544 29.123 13.544 C 27.999 13.544 27.088 12.633 27.088 11.509 Z\" fill=\"rgb(255, 255, 255)\"></path><path d=\"M 34.386 6.246 C 32.561 4.351 29.965 3.368 27.018 3.368 L 12.561 3.368 C 6.456 3.368 2.386 7.439 2.386 13.544 L 2.386 27.93 C 2.386 30.947 3.368 33.544 5.333 35.439 C 7.228 37.263 9.754 38.175 12.632 38.175 L 26.947 38.175 C 29.965 38.175 32.491 37.193 34.316 35.439 C 36.211 33.614 37.193 31.018 37.193 28 L 37.193 13.544 C 37.193 10.596 36.211 8.07 34.386 6.246 Z M 34.105 28 C 34.105 30.175 33.333 31.93 32.07 33.123 C 30.807 34.316 29.053 34.947 26.947 34.947 L 12.632 34.947 C 10.526 34.947 8.772 34.316 7.509 33.123 C 6.246 31.86 5.614 30.105 5.614 27.93 L 5.614 13.544 C 5.614 11.439 6.246 9.684 7.509 8.421 C 8.702 7.228 10.526 6.596 12.632 6.596 L 27.088 6.596 C 29.193 6.596 30.947 7.228 32.211 8.491 C 33.404 9.754 34.105 11.509 34.105 13.544 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10109829496,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://t.me/tagspace_chat\",motionChild:true,nodeId:\"aIs7Cpz0t\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 23.93 3.94 L 20.309 20.931 C 20.036 22.13 19.323 22.428 18.311 21.863 L 12.793 17.818 L 10.13 20.366 C 9.836 20.659 9.589 20.904 9.021 20.904 L 9.418 15.313 L 19.645 6.12 C 20.089 5.725 19.548 5.507 18.954 5.901 L 6.311 13.821 L 0.868 12.126 C -0.316 11.758 -0.337 10.948 1.114 10.383 L 22.404 2.224 C 23.389 1.856 24.252 2.442 23.93 3.94 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:8967053667},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 29.913 4.925 L 25.386 26.163 C 25.045 27.662 24.154 28.036 22.888 27.329 L 15.991 22.273 L 12.663 25.457 C 12.295 25.824 11.987 26.13 11.277 26.13 L 11.772 19.142 L 24.556 7.65 C 25.112 7.157 24.435 6.884 23.692 7.377 L 7.888 17.276 L 1.085 15.158 C -0.395 14.698 -0.422 13.685 1.393 12.979 L 28.004 2.78 C 29.237 2.32 30.315 3.053 29.913 4.925 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10014156094}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1s6y7e4 framer-1j21qoe\",\"data-framer-name\":\"8547122 telegram_plane_icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 39.884 6.567 L 33.848 34.885 C 33.393 36.883 32.205 37.381 30.518 36.439 L 21.321 29.697 L 16.884 33.943 C 16.393 34.432 15.982 34.84 15.036 34.84 L 15.696 25.522 L 32.741 10.2 C 33.482 9.542 32.58 9.178 31.589 9.835 L 10.518 23.035 L 1.446 20.21 C -0.527 19.597 -0.562 18.247 1.857 17.306 L 37.339 3.706 C 38.982 3.093 40.42 4.071 39.884 6.567 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11774338524,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/drjQ6RRDHX\",motionChild:true,nodeId:\"KfbmA1pD5\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.67 5.019 C 19.664 5.007 19.654 4.998 19.641 4.993 C 18.212 4.337 16.703 3.869 15.153 3.601 C 15.124 3.596 15.095 3.61 15.081 3.635 C 14.875 4.008 14.689 4.391 14.522 4.783 C 12.851 4.529 11.152 4.529 9.481 4.783 C 9.313 4.39 9.124 4.007 8.914 3.635 C 8.899 3.61 8.87 3.597 8.841 3.601 C 7.291 3.868 5.783 4.336 4.353 4.993 C 4.341 4.998 4.331 5.007 4.324 5.018 C 1.465 9.287 0.682 13.451 1.066 17.563 C 1.068 17.584 1.079 17.602 1.095 17.615 C 2.759 18.847 4.621 19.788 6.601 20.397 C 6.629 20.405 6.66 20.395 6.678 20.372 C 7.103 19.793 7.48 19.18 7.804 18.54 C 7.814 18.522 7.814 18.501 7.807 18.483 C 7.8 18.464 7.785 18.45 7.766 18.443 C 7.172 18.216 6.597 17.942 6.046 17.623 C 6.026 17.612 6.013 17.59 6.011 17.567 C 6.01 17.543 6.021 17.52 6.039 17.506 C 6.155 17.42 6.269 17.33 6.381 17.239 C 6.401 17.222 6.428 17.218 6.452 17.229 C 10.061 18.876 13.968 18.876 17.533 17.229 C 17.557 17.218 17.585 17.221 17.606 17.238 C 17.717 17.33 17.832 17.42 17.948 17.506 C 17.967 17.52 17.977 17.543 17.976 17.566 C 17.975 17.59 17.962 17.611 17.942 17.623 C 17.392 17.944 16.817 18.218 16.221 18.442 C 16.202 18.449 16.188 18.464 16.18 18.483 C 16.173 18.501 16.174 18.522 16.184 18.54 C 16.513 19.177 16.89 19.789 17.309 20.371 C 17.327 20.395 17.358 20.406 17.386 20.397 C 19.37 19.79 21.235 18.849 22.901 17.615 C 22.918 17.603 22.928 17.584 22.93 17.564 C 23.39 12.81 22.16 8.68 19.67 5.019 Z M 8.343 15.059 C 7.257 15.059 6.362 14.062 6.362 12.838 C 6.362 11.613 7.24 10.616 8.343 10.616 C 9.456 10.616 10.342 11.622 10.325 12.838 C 10.325 14.062 9.447 15.059 8.343 15.059 Z M 15.67 15.059 C 14.584 15.059 13.689 14.062 13.689 12.838 C 13.689 11.613 14.566 10.616 15.67 10.616 C 16.783 10.616 17.669 11.622 17.652 12.838 C 17.652 14.062 16.783 15.059 15.67 15.059 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12013416113},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 24.587 6.274 C 24.58 6.259 24.567 6.247 24.552 6.241 C 22.765 5.421 20.879 4.836 18.941 4.501 C 18.905 4.495 18.869 4.512 18.851 4.544 C 18.594 5.01 18.361 5.489 18.153 5.978 C 16.064 5.661 13.94 5.661 11.852 5.978 C 11.642 5.488 11.405 5.009 11.142 4.544 C 11.124 4.513 11.088 4.496 11.052 4.501 C 9.114 4.835 7.228 5.42 5.441 6.241 C 5.426 6.247 5.413 6.258 5.405 6.272 C 1.831 11.609 0.852 16.814 1.333 21.954 C 1.335 21.98 1.348 22.003 1.369 22.019 C 3.449 23.559 5.776 24.735 8.251 25.496 C 8.287 25.507 8.325 25.494 8.348 25.464 C 8.879 24.741 9.35 23.976 9.756 23.175 C 9.767 23.153 9.768 23.127 9.759 23.104 C 9.75 23.08 9.731 23.062 9.708 23.054 C 8.965 22.77 8.246 22.427 7.558 22.029 C 7.532 22.014 7.516 21.988 7.514 21.958 C 7.513 21.929 7.526 21.901 7.549 21.883 C 7.694 21.775 7.836 21.663 7.976 21.548 C 8.001 21.528 8.036 21.523 8.065 21.536 C 12.576 23.595 17.459 23.595 21.917 21.536 C 21.946 21.522 21.981 21.526 22.007 21.547 C 22.147 21.663 22.29 21.774 22.435 21.883 C 22.459 21.9 22.472 21.929 22.47 21.958 C 22.469 21.988 22.453 22.014 22.427 22.029 C 21.74 22.43 21.021 22.773 20.276 23.053 C 20.253 23.062 20.234 23.08 20.225 23.103 C 20.217 23.127 20.218 23.153 20.229 23.175 C 20.642 23.971 21.112 24.736 21.636 25.463 C 21.658 25.494 21.697 25.507 21.733 25.496 C 24.212 24.737 26.543 23.561 28.627 22.019 C 28.647 22.004 28.66 21.98 28.662 21.955 C 29.237 16.012 27.7 10.85 24.587 6.274 Z M 10.429 18.824 C 9.071 18.824 7.952 17.578 7.952 16.047 C 7.952 14.517 9.05 13.27 10.429 13.27 C 11.82 13.27 12.928 14.528 12.906 16.047 C 12.906 17.578 11.809 18.824 10.429 18.824 Z M 19.588 18.824 C 18.23 18.824 17.111 17.578 17.111 16.047 C 17.111 14.517 18.208 13.27 19.588 13.27 C 20.978 13.27 22.086 14.528 22.065 16.047 C 22.065 17.578 20.978 18.824 19.588 18.824 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:10292902407}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-186p9xi framer-1j21qoe\",\"data-framer-name\":\"8666257 discord_icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 32.783 8.365 C 32.773 8.345 32.756 8.329 32.735 8.321 C 30.353 7.228 27.838 6.448 25.255 6.002 C 25.207 5.993 25.158 6.016 25.135 6.059 C 24.792 6.68 24.482 7.318 24.204 7.971 C 21.419 7.549 18.587 7.549 15.802 7.971 C 15.522 7.317 15.206 6.678 14.856 6.059 C 14.831 6.017 14.784 5.994 14.736 6.002 C 12.152 6.447 9.638 7.227 7.255 8.321 C 7.235 8.33 7.218 8.344 7.206 8.363 C 2.442 15.478 1.137 22.418 1.777 29.272 C 1.781 29.306 1.798 29.337 1.825 29.358 C 4.599 31.412 7.702 32.98 11.001 33.995 C 11.049 34.009 11.1 33.992 11.13 33.953 C 11.839 32.988 12.467 31.967 13.007 30.9 C 13.023 30.87 13.024 30.836 13.012 30.805 C 13 30.774 12.975 30.75 12.944 30.738 C 11.954 30.359 10.995 29.903 10.077 29.372 C 10.043 29.353 10.021 29.317 10.019 29.278 C 10.017 29.239 10.034 29.201 10.065 29.177 C 10.259 29.033 10.448 28.884 10.635 28.731 C 10.668 28.704 10.714 28.697 10.754 28.715 C 16.768 31.46 23.279 31.46 29.222 28.715 C 29.262 28.696 29.309 28.702 29.343 28.73 C 29.529 28.883 29.719 29.033 29.913 29.177 C 29.945 29.201 29.962 29.238 29.96 29.277 C 29.958 29.317 29.937 29.352 29.903 29.372 C 28.987 29.907 28.028 30.364 27.035 30.737 C 27.004 30.749 26.979 30.773 26.967 30.804 C 26.955 30.836 26.957 30.87 26.973 30.9 C 27.522 31.961 28.149 32.981 28.848 33.951 C 28.878 33.992 28.929 34.009 28.977 33.995 C 32.283 32.983 35.391 31.415 38.169 29.358 C 38.196 29.338 38.214 29.307 38.217 29.274 C 38.983 21.35 36.933 14.467 32.783 8.365 Z M 13.906 25.099 C 12.095 25.099 10.603 23.437 10.603 21.396 C 10.603 19.356 12.066 17.694 13.906 17.694 C 15.76 17.694 17.237 19.37 17.208 21.396 C 17.208 23.437 15.745 25.099 13.906 25.099 Z M 26.117 25.099 C 24.306 25.099 22.814 23.437 22.814 21.396 C 22.814 19.356 24.277 17.694 26.117 17.694 C 27.971 17.694 29.449 19.37 29.42 21.396 C 29.42 23.437 27.971 25.099 26.117 25.099 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11942363473,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@tagspace\",motionChild:true,nodeId:\"gV4ZAWxOM\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 21.603 10.001 C 19.657 10.005 17.758 9.41 16.176 8.298 L 16.176 16.05 C 16.175 18.989 14.314 21.62 11.507 22.65 C 8.701 23.68 5.537 22.893 3.57 20.676 C 1.602 18.459 1.243 15.277 2.67 12.691 C 4.096 10.106 7.008 8.66 9.976 9.064 L 9.976 12.962 C 8.616 12.543 7.134 13.028 6.304 14.166 C 5.474 15.304 5.483 16.836 6.327 17.964 C 7.17 19.092 8.658 19.561 10.013 19.125 C 11.369 18.69 12.285 17.449 12.285 16.05 L 12.285 0.897 L 16.176 0.897 C 16.173 1.219 16.2 1.541 16.258 1.858 C 16.531 3.29 17.393 4.549 18.641 5.338 C 19.52 5.908 20.55 6.211 21.603 6.211 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11925560202},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 27.004 12.501 C 24.571 12.507 22.198 11.762 20.22 10.373 L 20.22 20.062 C 20.218 23.737 17.893 27.025 14.384 28.312 C 10.876 29.6 6.921 28.616 4.462 25.845 C 2.002 23.074 1.554 19.096 3.337 15.864 C 5.12 12.632 8.76 10.825 12.47 11.33 L 12.47 16.203 C 10.77 15.678 8.918 16.285 7.88 17.707 C 6.842 19.13 6.854 21.045 7.908 22.455 C 8.963 23.865 10.822 24.451 12.516 23.906 C 14.211 23.362 15.357 21.811 15.357 20.062 L 15.357 1.121 L 20.22 1.121 C 20.216 1.524 20.251 1.926 20.322 2.323 C 20.664 4.113 21.741 5.686 23.301 6.672 C 24.4 7.384 25.687 7.764 27.004 7.764 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11093977584}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1tlvsqf framer-1j21qoe\",\"data-framer-name\":\"8547041 tiktok_icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 36.005 16.668 C 32.761 16.675 29.597 15.683 26.959 13.831 L 26.959 26.749 C 26.958 31.649 23.857 36.033 19.179 37.75 C 14.501 39.466 9.229 38.155 5.949 34.46 C 2.67 30.765 2.072 25.461 4.449 21.152 C 6.827 16.843 11.68 14.434 16.627 15.107 L 16.627 21.604 C 14.359 20.904 11.89 21.714 10.506 23.61 C 9.123 25.506 9.138 28.06 10.544 29.94 C 11.951 31.82 14.43 32.601 16.689 31.875 C 18.948 31.149 20.475 29.081 20.475 26.749 L 20.475 1.495 L 26.959 1.495 C 26.955 2.032 27.001 2.569 27.096 3.097 C 27.552 5.484 28.988 7.581 31.069 8.896 C 32.533 9.846 34.25 10.352 36.005 10.352 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:11605775096,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@tagspace\",motionChild:true,nodeId:\"KcHCOCNul\",openInNewTab:true,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 22.799 4.342 C 23.518 5.12 23.752 6.884 23.752 6.884 C 23.752 6.884 23.992 8.955 23.992 11.027 L 23.992 12.968 C 23.992 15.039 23.752 17.11 23.752 17.11 C 23.752 17.11 23.518 18.874 22.799 19.649 C 21.976 20.567 21.064 20.663 20.549 20.717 C 20.493 20.723 20.441 20.728 20.395 20.734 C 17.038 20.991 11.996 21 11.996 21 C 11.996 21 5.758 20.939 3.839 20.743 C 3.731 20.723 3.622 20.707 3.513 20.695 C 2.905 20.617 1.951 20.494 1.193 19.649 C 0.474 18.873 0.24 17.109 0.24 17.109 C 0.24 17.109 0 15.039 0 12.967 L 0 11.026 C 0 8.955 0.24 6.884 0.24 6.884 C 0.24 6.884 0.475 5.12 1.193 4.342 C 2.02 3.421 2.934 3.328 3.449 3.276 C 3.503 3.271 3.553 3.266 3.597 3.26 C 6.954 3 11.99 3 11.99 3 L 12.001 3 C 12.001 3 17.038 3 20.395 3.26 C 20.44 3.266 20.49 3.271 20.544 3.276 C 21.058 3.328 21.974 3.421 22.799 4.342 Z M 9 7.5 L 9 16.5 L 16.5 12 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9848990866},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><path d=\"M 28.499 5.428 C 29.398 6.4 29.69 8.606 29.69 8.606 C 29.69 8.606 29.99 11.194 29.99 13.784 L 29.99 16.21 C 29.99 18.799 29.69 21.387 29.69 21.387 C 29.69 21.387 29.398 23.592 28.499 24.562 C 27.47 25.709 26.33 25.829 25.687 25.896 C 25.616 25.904 25.552 25.91 25.494 25.917 C 21.297 26.239 14.996 26.25 14.996 26.25 C 14.996 26.25 7.197 26.174 4.799 25.928 C 4.663 25.904 4.528 25.884 4.391 25.868 C 3.632 25.771 2.439 25.617 1.492 24.561 C 0.592 23.591 0.3 21.386 0.3 21.386 C 0.3 21.386 0 18.799 0 16.208 L 0 13.782 C 0 11.194 0.3 8.606 0.3 8.606 C 0.3 8.606 0.593 6.4 1.492 5.428 C 2.524 4.276 3.667 4.16 4.311 4.095 C 4.379 4.088 4.441 4.082 4.496 4.075 C 8.693 3.75 14.988 3.75 14.988 3.75 L 15.001 3.75 C 15.001 3.75 21.297 3.75 25.494 4.075 C 25.55 4.082 25.613 4.088 25.68 4.095 C 26.323 4.16 27.467 4.276 28.499 5.428 Z M 11.25 9.375 L 11.25 20.625 L 20.625 15 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:9370130138}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-17vyxbd framer-1j21qoe\",\"data-framer-name\":\"317714 video_youtube_icon (1) 1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 37.999 7.237 C 39.197 8.533 39.587 11.474 39.587 11.474 C 39.587 11.474 39.987 14.925 39.987 18.378 L 39.987 21.613 C 39.987 25.065 39.587 28.516 39.587 28.516 C 39.587 28.516 39.197 31.456 37.999 32.749 C 36.627 34.279 35.107 34.438 34.249 34.528 C 34.155 34.538 34.069 34.546 33.992 34.556 C 28.396 34.985 19.994 35 19.994 35 C 19.994 35 9.596 34.899 6.398 34.571 C 6.218 34.539 6.037 34.512 5.855 34.491 C 4.842 34.361 3.252 34.156 1.989 32.748 C 0.79 31.455 0.4 28.515 0.4 28.515 C 0.4 28.515 0 25.065 0 21.611 L 0 18.376 C 0 14.925 0.4 11.474 0.4 11.474 C 0.4 11.474 0.791 8.533 1.989 7.237 C 3.366 5.702 4.89 5.547 5.748 5.46 C 5.838 5.451 5.921 5.443 5.995 5.434 C 11.59 5 19.984 5 19.984 5 L 20.002 5 C 20.002 5 28.396 5 33.992 5.434 C 34.067 5.443 34.15 5.451 34.24 5.46 C 35.097 5.547 36.623 5.702 37.999 7.237 Z M 15 12.5 L 15 27.5 L 27.5 20 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12665142214,withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/tagSpaceCo\",motionChild:true,nodeId:\"yVb91rl74\",scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><g transform=\"translate(1.725 1.438)\"><path d=\"M 0.075 0.063 L 20.475 0.063 L 20.475 21.063 L 0.075 21.063 Z\" fill=\"transparent\"></path><path d=\"M 12.216 8.95 L 19.81 0.063 L 18.011 0.063 L 11.416 7.779 L 6.15 0.063 L 0.075 0.063 L 8.039 11.732 L 0.075 21.052 L 1.875 21.052 L 8.838 12.902 L 14.4 21.052 L 20.475 21.052 L 12.215 8.95 Z M 9.751 11.835 L 8.944 10.673 L 2.523 1.426 L 5.287 1.426 L 10.469 8.888 L 11.276 10.05 L 18.011 19.75 L 15.247 19.75 L 9.751 11.835 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:12628440131},NpJVcyz3R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 30 30\"><g transform=\"translate(3 2.5)\"><path d=\"M -0.75 -0.625 L 24.75 -0.625 L 24.75 25.625 L -0.75 25.625 Z\" fill=\"transparent\"></path><path d=\"M 14.426 10.484 L 23.919 -0.625 L 21.669 -0.625 L 13.427 9.021 L 6.843 -0.625 L -0.75 -0.625 L 9.205 13.962 L -0.75 25.612 L 1.5 25.612 L 10.204 15.425 L 17.157 25.612 L 24.75 25.612 L 14.425 10.484 Z M 11.345 14.09 L 10.336 12.638 L 2.31 1.08 L 5.766 1.08 L 12.243 10.407 L 13.251 11.86 L 21.67 23.984 L 18.215 23.984 L 11.345 14.091 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:11491855387}},children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-ftw13r framer-1j21qoe\",\"data-framer-name\":\"11244080 x_twitter_elon musk_twitter new logo_icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><g transform=\"translate(3 2.5)\"><path d=\"M 0 0 L 34 0 L 34 35 L 0 35 Z\" fill=\"transparent\"></path><path d=\"M 20.235 14.813 L 32.892 0 L 29.893 0 L 18.902 12.861 L 10.124 0 L 0 0 L 13.274 19.449 L 0 34.982 L 3 34.982 L 14.606 21.4 L 23.876 34.982 L 34 34.982 L 20.234 14.813 Z M 16.126 19.62 L 14.781 17.684 L 4.08 2.273 L 8.687 2.273 L 17.323 14.71 L 18.668 16.647 L 29.894 32.812 L 25.287 32.812 L 16.126 19.621 Z\" fill=\"rgb(255, 255, 255)\"></path></g></svg>',svgContentId:9845382325,withExternalLayout:true})})})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:472,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bh8gu8-container\",id:elementId12,nodeId:\"bpI1h7RQV\",ref:ref13,scopeId:\"uFaAaXDZy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{hJrTThh26:{variant:\"UWzL9fqMp\"},NpJVcyz3R:{variant:\"dLh1GIxEW\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"bpI1h7RQV\",layoutId:\"bpI1h7RQV\",style:{width:\"100%\"},variant:\"fX4QSQhd8\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9ZPrA.framer-1j21qoe, .framer-9ZPrA .framer-1j21qoe { display: block; }\",\".framer-9ZPrA.framer-1rapmcm { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-9ZPrA .framer-1crd8ix-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 5; }\",\".framer-9ZPrA .framer-1iyhgpq { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9ZPrA .framer-1uy2cpc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; max-width: 1440px; overflow: visible; padding: 160px 0px 40px 0px; position: relative; width: 90%; z-index: 2; }\",\".framer-9ZPrA .framer-186bvrz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9ZPrA .framer-12mjpri { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9ZPrA .framer-tk0537, .framer-9ZPrA .framer-68076, .framer-9ZPrA .framer-n5aim2 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-ujqdk4 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-9jwpdr-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-9ZPrA .framer-9tz0ho-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 100% / 2); opacity: 0.57; position: absolute; top: 0px; width: 100%; z-index: 0; }\",\".framer-9ZPrA .framer-12ruwtz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-5818x4 { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ZPrA .framer-1vwifs1-container { flex: none; height: 98px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1nqr1ok, .framer-9ZPrA .framer-1he5nzh, .framer-9ZPrA .framer-1e4fu7d, .framer-9ZPrA .framer-1cv7d9r, .framer-9ZPrA .framer-19m4ci7, .framer-9ZPrA .framer-1ay1n8d { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 130px); overflow: hidden; position: relative; text-decoration: none; width: 130px; }\",\".framer-9ZPrA .framer-1nnxv7r { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 97px); opacity: 0.5; overflow: hidden; position: relative; text-decoration: none; width: 97px; }\",\".framer-9ZPrA .framer-174c47b { aspect-ratio: 4 / 1; height: var(--framer-aspect-ratio-supported, 43px); opacity: 0.5; overflow: visible; position: relative; width: 171px; }\",\".framer-9ZPrA .framer-pja6xr { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 130px); opacity: 0.55; overflow: hidden; position: relative; text-decoration: none; width: 130px; }\",\".framer-9ZPrA .framer-lbkx9m { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 147px); opacity: 0.55; overflow: hidden; position: relative; text-decoration: none; width: 147px; }\",\".framer-9ZPrA .framer-qirwbk { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 153px); opacity: 0.55; overflow: hidden; position: relative; text-decoration: none; width: 153px; }\",\".framer-9ZPrA .framer-1ry3yz7 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 138px); overflow: hidden; position: relative; text-decoration: none; width: 138px; }\",\".framer-9ZPrA .framer-oj9fcg { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 179px); opacity: 0.51; overflow: hidden; position: relative; text-decoration: none; width: 179px; }\",\".framer-9ZPrA .framer-1osmsus { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 147px); opacity: 0.51; overflow: hidden; position: relative; text-decoration: none; width: 147px; }\",\".framer-9ZPrA .framer-1yitn1g { aspect-ratio: 2.3021582733812953 / 1; height: var(--framer-aspect-ratio-supported, 56px); opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 130px; }\",\".framer-9ZPrA .framer-1s9sxno, .framer-9ZPrA .framer-1j1zpod, .framer-9ZPrA .framer-1gmy5z1, .framer-9ZPrA .framer-1ugtne3, .framer-9ZPrA .framer-14y2uwi, .framer-9ZPrA .framer-1l7zp4z, .framer-9ZPrA .framer-ork0kf, .framer-9ZPrA .framer-9xc8ug, .framer-9ZPrA .framer-110ohwv, .framer-9ZPrA .framer-1och9d3, .framer-9ZPrA .framer-3r16k2, .framer-9ZPrA .framer-221t6u, .framer-9ZPrA .framer-kn8wrm, .framer-9ZPrA .framer-1fxb2g8, .framer-9ZPrA .framer-aozipp, .framer-9ZPrA .framer-1r5ikxn, .framer-9ZPrA .framer-miglqn, .framer-9ZPrA .framer-2t1gns, .framer-9ZPrA .framer-1patnvh, .framer-9ZPrA .framer-l7p13m, .framer-9ZPrA .framer-1eztwyx, .framer-9ZPrA .framer-1989b2x, .framer-9ZPrA .framer-1mtfxcy, .framer-9ZPrA .framer-1uiq4rp, .framer-9ZPrA .framer-9t25ne, .framer-9ZPrA .framer-4xfc9l { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9ZPrA .framer-1v6qbgy-container { flex: none; height: 100vh; left: calc(50.00000000000002% - 100% / 2); opacity: 0.25; position: fixed; top: 0px; width: 100%; z-index: 0; }\",\".framer-9ZPrA .framer-1wpptpd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 102px 0px 102px 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-16cuvqz { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 591px; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-1096txi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9ZPrA .framer-1lzdjln, .framer-9ZPrA .framer-4xvu0t, .framer-9ZPrA .framer-bwew7v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 612px; word-break: break-word; word-wrap: break-word; }\",\".framer-9ZPrA .framer-dowx13-container { flex: none; height: 481px; opacity: 0.85; position: relative; width: 605px; }\",\".framer-9ZPrA .framer-15fo09l { align-content: center; align-items: center; background-color: rgba(24, 20, 26, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1wy7gyx { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 2000px; overflow: visible; padding: 0px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-9kwdhi, .framer-9ZPrA .framer-1ckese3, .framer-9ZPrA .framer-t9ckyn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-alqi7o, .framer-9ZPrA .framer-tuor8t, .framer-9ZPrA .framer-16ysg0p, .framer-9ZPrA .framer-ezcl9s, .framer-9ZPrA .framer-1ym3901, .framer-9ZPrA .framer-eezjwh, .framer-9ZPrA .framer-1b6497y, .framer-9ZPrA .framer-1ibt4ox, .framer-9ZPrA .framer-jdsaly, .framer-9ZPrA .framer-rhrk0s, .framer-9ZPrA .framer-5oe0t7, .framer-9ZPrA .framer-1ztezu, .framer-9ZPrA .framer-1dhufp5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9ZPrA .framer-jqnnjs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 780px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1gbgyej-container { flex: none; height: 682px; position: relative; width: 654px; }\",\".framer-9ZPrA .framer-1obmgge, .framer-9ZPrA .framer-i8j186, .framer-9ZPrA .framer-71u6gy, .framer-9ZPrA .framer-byccnq, .framer-9ZPrA .framer-2cmf8i { --border-bottom-width: 2px; --border-color: rgba(69, 118, 150, 0.56); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 2px; -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background: radial-gradient(50% 50% at 50% 0%, rgba(80, 106, 120, 0.22) 0%, rgba(20, 20, 20, 0.6) 100%); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0px 0.3621759214656777px 1.8108796073283884px -2px rgba(255, 255, 255, 0.73), 0px 3px 15px -4px rgba(255, 255, 255, 0.2); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px; position: relative; width: 654px; }\",\".framer-9ZPrA .framer-1h2wd38, .framer-9ZPrA .framer-1la6mro, .framer-9ZPrA .framer-1sw92rd, .framer-9ZPrA .framer-j4rec, .framer-9ZPrA .framer-1o9np5g { border-bottom-left-radius: 17px; border-bottom-right-radius: 17px; border-top-left-radius: 17px; border-top-right-radius: 17px; flex: none; height: 180px; mix-blend-mode: difference; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1svtgcr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-waet7y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-pjrtzl, .framer-9ZPrA .framer-12xeh03, .framer-9ZPrA .framer-ahy5j5, .framer-9ZPrA .framer-1ysyafx, .framer-9ZPrA .framer-12r1ims, .framer-9ZPrA .framer-1kna5lr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1lzwbat, .framer-9ZPrA .framer-1i8o7ol, .framer-9ZPrA .framer-16jq2ek { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-9ZPrA .framer-gss1so, .framer-9ZPrA .framer-1nstn1a, .framer-9ZPrA .framer-16rz5e2, .framer-9ZPrA .framer-1q43qiy, .framer-9ZPrA .framer-701vwn { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 6px 10px 6px 10px; position: relative; width: min-content; }\",\".framer-9ZPrA .framer-ys6uf9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-v8bowq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9ZPrA .framer-j7lg68 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.5; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-9ZPrA .framer-1ndnmff, .framer-9ZPrA .framer-maktq5 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 32px; }\",\".framer-9ZPrA .framer-8ic0ty-container { flex: none; height: 48px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1al5l0p, .framer-9ZPrA .framer-1ho80qf, .framer-9ZPrA .framer-1izjow9, .framer-9ZPrA .framer-rbo91f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-lvp3n1, .framer-9ZPrA .framer-1kp6xp8, .framer-9ZPrA .framer-f8d73i, .framer-9ZPrA .framer-1ss469t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-vji8yz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1t9kkey { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-8q2mnx, .framer-9ZPrA .framer-1vpdn9x, .framer-9ZPrA .framer-12rjqmf, .framer-9ZPrA .framer-qngze8, .framer-9ZPrA .framer-1auh8ym { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1otldgd, .framer-9ZPrA .framer-z7kyek, .framer-9ZPrA .framer-1nnlnoq, .framer-9ZPrA .framer-t5vzzl { align-content: center; align-items: center; background-color: #151515; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 430px; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ZPrA .framer-as12l3-container, .framer-9ZPrA .framer-2er7g5-container, .framer-9ZPrA .framer-36asgf-container, .framer-9ZPrA .framer-1ynynb1-container { flex: none; height: 180px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-lu5pd6, .framer-9ZPrA .framer-1c60e6p, .framer-9ZPrA .framer-1w553rr, .framer-9ZPrA .framer-25o2yv, .framer-9ZPrA .framer-cmb52l, .framer-9ZPrA .framer-8jbzxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-w3ogn0, .framer-9ZPrA .framer-x8slnz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1ybhof6, .framer-9ZPrA .framer-11ubvjj, .framer-9ZPrA .framer-ijnhao { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-g4z94i-container, .framer-9ZPrA .framer-1x32kld-container, .framer-9ZPrA .framer-1dfxnvh-container, .framer-9ZPrA .framer-gsuwwc-container, .framer-9ZPrA .framer-1c3kfjf-container, .framer-9ZPrA .framer-19cky3p-container, .framer-9ZPrA .framer-1796mdu-container, .framer-9ZPrA .framer-1l5pfsn-container, .framer-9ZPrA .framer-m18o2k-container, .framer-9ZPrA .framer-17mxmcx-container, .framer-9ZPrA .framer-1v3efcn-container, .framer-9ZPrA .framer-bcpd32-container, .framer-9ZPrA .framer-1x5ofs7-container, .framer-9ZPrA .framer-1vz3hwu-container, .framer-9ZPrA .framer-1fapnxf-container, .framer-9ZPrA .framer-vbpo8z-container, .framer-9ZPrA .framer-1xqgsrt-container, .framer-9ZPrA .framer-1jk36fk-container, .framer-9ZPrA .framer-1586r9c-container, .framer-9ZPrA .framer-f7doql-container, .framer-9ZPrA .framer-c1ut05-container, .framer-9ZPrA .framer-d6mbvz-container, .framer-9ZPrA .framer-f12n4g-container, .framer-9ZPrA .framer-1tdcyjd-container, .framer-9ZPrA .framer-2kddps-container, .framer-9ZPrA .framer-1g8rq2u-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-9ZPrA .framer-j67in9 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-14ysxta { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-7w1oj9 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-10enf8e { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 25px 24px 25px 24px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-m4vtyl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-9ZPrA .framer-18miwn4, .framer-9ZPrA .framer-1jmbpfv, .framer-9ZPrA .framer-tspmi4, .framer-9ZPrA .framer-3h2fjk, .framer-9ZPrA .framer-1b2tok1 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-9ZPrA .framer-zwv7r3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1rekeyb, .framer-9ZPrA .framer-1s4btv1, .framer-9ZPrA .framer-1uaenuw, .framer-9ZPrA .framer-1qu4vw4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-n0awqk-container { flex: none; height: 572px; mix-blend-mode: saturation; position: relative; width: 612px; }\",\".framer-9ZPrA .framer-w6u94v, .framer-9ZPrA .framer-7rqedz, .framer-9ZPrA .framer-1ru3717 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-nbrfls, .framer-9ZPrA .framer-1t9jbz4 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-1hr0qij { align-self: stretch; display: grid; flex: 1 0 0px; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); height: auto; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; z-index: 1; }\",\".framer-9ZPrA .framer-1obgu8f { align-self: center; aspect-ratio: 4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-1nf39y9 { align-self: center; aspect-ratio: 1.7777777777777777 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 89px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-1e1688n, .framer-9ZPrA .framer-19cguxb { align-self: center; aspect-ratio: 2.7467811158798283 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 58px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-9j76az { align-self: center; aspect-ratio: 2.2222222222222223 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 72px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-7sdd0u { align-self: center; aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 90px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-19c3h30 { align-self: center; aspect-ratio: 5.415156507413509 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-17wacfo { align-self: center; aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-hn88t6 { align-self: center; aspect-ratio: 3.1683168316831685 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); justify-self: center; opacity: 0.9; overflow: visible; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-1sg84do { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-57mysq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9ZPrA .framer-wlxoxa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-9ZPrA .framer-1s9psrc, .framer-9ZPrA .framer-q88kzg { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; -webkit-backdrop-filter: blur(10px); align-content: center; align-items: center; backdrop-filter: blur(10px); background-color: rgba(255, 255, 255, 0); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ZPrA .framer-1d7brnt, .framer-9ZPrA .framer-1ii7466, .framer-9ZPrA .framer-gtyibt, .framer-9ZPrA .framer-1drfph5 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-9ZPrA .framer-18y95v-container, .framer-9ZPrA .framer-1p3ey3a-container { flex: none; height: 140px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1a05a14 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 161px); overflow: hidden; position: relative; text-decoration: none; width: 161px; }\",\".framer-9ZPrA .framer-szyhlh { height: 77px; opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 189px; }\",\".framer-9ZPrA .framer-elyx82 { height: 153px; opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 327px; }\",\".framer-9ZPrA .framer-146qehu { height: 95px; opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 137px; }\",\".framer-9ZPrA .framer-dqr86d { height: 79px; opacity: 0.58; overflow: visible; position: relative; text-decoration: none; width: 221px; }\",\".framer-9ZPrA .framer-1y1434v { aspect-ratio: 2.2024291497975708 / 1; height: var(--framer-aspect-ratio-supported, 100px); opacity: 0.54; overflow: visible; position: relative; text-decoration: none; width: 221px; }\",\".framer-9ZPrA .framer-1klrj5u { aspect-ratio: 3.0378619153674835 / 1; height: var(--framer-aspect-ratio-supported, 70px); opacity: 0.52; overflow: visible; position: relative; width: 214px; }\",\".framer-9ZPrA .framer-v8pq42, .framer-9ZPrA .framer-5osti4 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 160px); opacity: 0.55; overflow: hidden; position: relative; text-decoration: none; width: 160px; }\",\".framer-9ZPrA .framer-bmys9j { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 128px); overflow: hidden; position: relative; text-decoration: none; width: 128px; }\",\".framer-9ZPrA .framer-1qb4ybf { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 160px); overflow: hidden; position: relative; text-decoration: none; width: 160px; }\",\".framer-9ZPrA .framer-1sdf5zo { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 286px); opacity: 0.55; overflow: hidden; position: relative; text-decoration: none; width: 286px; }\",\".framer-9ZPrA .framer-xeeb78 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 235px); opacity: 0.55; overflow: hidden; position: relative; text-decoration: none; width: 235px; }\",\".framer-9ZPrA .framer-10z2zqs { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 128px); opacity: 0.5; overflow: hidden; position: relative; text-decoration: none; width: 128px; }\",\".framer-9ZPrA .framer-4avtxi { aspect-ratio: 2.7824999999999998 / 1; height: var(--framer-aspect-ratio-supported, 61px); opacity: 0.53; overflow: visible; position: relative; text-decoration: none; width: 169px; }\",\".framer-9ZPrA .framer-9gxzpf { aspect-ratio: 5.435244161358811 / 1; height: var(--framer-aspect-ratio-supported, 40px); opacity: 0.5; overflow: visible; position: relative; text-decoration: none; width: 217px; }\",\".framer-9ZPrA .framer-1i6ww6d { align-content: flex-start; align-items: flex-start; background-color: rgba(0, 0, 0, 0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-1ch4672-container { flex: none; height: 718px; opacity: 0.72; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-1inzscc { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-shwcoc-container, .framer-9ZPrA .framer-1i20vq2-container, .framer-9ZPrA .framer-1orwp13-container, .framer-9ZPrA .framer-h2x8bi-container, .framer-9ZPrA .framer-18fpe83-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-155f29u { background-color: rgba(0, 0, 0, 0); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.6; overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-9ZPrA .framer-cd83j5 { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: flex-start; align-items: flex-start; background-color: rgba(26, 26, 26, 0); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1440px; overflow: hidden; padding: 0px; position: relative; width: 90%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-9ZPrA .framer-19l3ei4-container, .framer-9ZPrA .framer-1m0lqz2-container, .framer-9ZPrA .framer-5fiour-container, .framer-9ZPrA .framer-1i2gsaf-container, .framer-9ZPrA .framer-iy0e45-container, .framer-9ZPrA .framer-13difkd-container { flex: 1 0 0px; height: 340px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-9ZPrA .framer-1quu51 { background-color: rgba(255, 255, 255, 0); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.6; overflow: visible; position: absolute; top: -80px; width: 100%; z-index: 0; }\",\".framer-9ZPrA .framer-1jyjqza { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-14e7523 { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 238px); mix-blend-mode: saturation; overflow: visible; position: relative; width: 238px; }\",\".framer-9ZPrA .framer-1n0athw { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ZPrA .framer-wsjy7h, .framer-9ZPrA .framer-rx1rn5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-9ZPrA .framer-6jxyde, .framer-9ZPrA .framer-hnppvc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-9ZPrA .framer-121p1x9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1440px; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 90%; z-index: 2; }\",\".framer-9ZPrA .framer-or4mn9 { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ZPrA .framer-14kgtv7 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: visible; padding: 48px 16px 48px 16px; position: relative; width: 90%; z-index: 1; }\",\".framer-9ZPrA .framer-177f42t { align-content: center; align-items: center; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-9ZPrA .framer-16cgs4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-sujb73 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-9ZPrA .framer-32by2m, .framer-9ZPrA .framer-1ps7wxj, .framer-9ZPrA .framer-1s6y7e4, .framer-9ZPrA .framer-186p9xi, .framer-9ZPrA .framer-1tlvsqf, .framer-9ZPrA .framer-17vyxbd, .framer-9ZPrA .framer-ftw13r { flex: none; height: 40px; position: relative; text-decoration: none; width: 40px; }\",\".framer-9ZPrA .framer-bh8gu8-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,'.framer-9ZPrA[data-border=\"true\"]::after, .framer-9ZPrA [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; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-9ZPrA.framer-1rapmcm { width: 810px; } .framer-9ZPrA .framer-9tz0ho-container { bottom: unset; height: 100vh; } .framer-9ZPrA .framer-12ruwtz { padding: 24px 0px 24px 0px; } .framer-9ZPrA .framer-1vwifs1-container { height: 140px; } .framer-9ZPrA .framer-1wpptpd { padding: 68px 0px 68px 0px; } .framer-9ZPrA .framer-16cuvqz { flex-direction: column; height: min-content; padding: 24px; } .framer-9ZPrA .framer-1096txi { flex: none; width: min-content; } .framer-9ZPrA .framer-1lzdjln { width: 674px; } .framer-9ZPrA .framer-4xvu0t { width: 672px; } .framer-9ZPrA .framer-bwew7v { width: 679px; } .framer-9ZPrA .framer-dowx13-container { height: 335px; width: 674px; } .framer-9ZPrA .framer-jqnnjs { height: 680px; } .framer-9ZPrA .framer-1gbgyej-container { height: 610px; width: 100%; } .framer-9ZPrA .framer-vji8yz { padding: 80px 0px 80px 0px; } .framer-9ZPrA .framer-1t9kkey { padding: 32px 0px 32px 0px; } .framer-9ZPrA .framer-1otldgd, .framer-9ZPrA .framer-z7kyek { height: 580px; } .framer-9ZPrA .framer-1nnlnoq, .framer-9ZPrA .framer-t5vzzl { height: 540px; } .framer-9ZPrA .framer-7w1oj9, .framer-9ZPrA .framer-1sg84do, .framer-9ZPrA .framer-121p1x9 { padding: 40px 0px 40px 0px; } .framer-9ZPrA .framer-10enf8e { flex-direction: column; padding: 24px; } .framer-9ZPrA .framer-m4vtyl { flex: none; order: 0; width: 100%; } .framer-9ZPrA .framer-n0awqk-container { height: 378px; order: 3; } .framer-9ZPrA .framer-nbrfls { padding: 24px; } .framer-9ZPrA .framer-1hr0qij { gap: 24px; grid-template-columns: repeat(auto-fill, 130px); } .framer-9ZPrA .framer-1obgu8f { height: var(--framer-aspect-ratio-supported, 33px); } .framer-9ZPrA .framer-1nf39y9, .framer-9ZPrA .framer-7sdd0u { height: var(--framer-aspect-ratio-supported, 73px); } .framer-9ZPrA .framer-1e1688n { height: var(--framer-aspect-ratio-supported, 47px); } .framer-9ZPrA .framer-9j76az { height: var(--framer-aspect-ratio-supported, 59px); } .framer-9ZPrA .framer-19cguxb { height: var(--framer-aspect-ratio-supported, 48px); } .framer-9ZPrA .framer-19c3h30 { height: var(--framer-aspect-ratio-supported, 24px); } .framer-9ZPrA .framer-17wacfo { height: var(--framer-aspect-ratio-supported, 43px); } .framer-9ZPrA .framer-hn88t6 { height: var(--framer-aspect-ratio-supported, 41px); } .framer-9ZPrA .framer-wlxoxa, .framer-9ZPrA .framer-1i6ww6d, .framer-9ZPrA .framer-sujb73 { gap: 16px; } .framer-9ZPrA .framer-1inzscc { flex-direction: column; } .framer-9ZPrA .framer-shwcoc-container, .framer-9ZPrA .framer-1i20vq2-container, .framer-9ZPrA .framer-1orwp13-container, .framer-9ZPrA .framer-h2x8bi-container, .framer-9ZPrA .framer-18fpe83-container, .framer-9ZPrA .framer-177f42t { flex: none; width: 100%; } .framer-9ZPrA .framer-19l3ei4-container, .framer-9ZPrA .framer-1m0lqz2-container, .framer-9ZPrA .framer-5fiour-container, .framer-9ZPrA .framer-1i2gsaf-container, .framer-9ZPrA .framer-iy0e45-container, .framer-9ZPrA .framer-13difkd-container { height: 460px; } .framer-9ZPrA .framer-1jmbpfv, .framer-9ZPrA .framer-tspmi4, .framer-9ZPrA .framer-3h2fjk { overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9ZPrA .framer-1jyjqza { padding: 40px 24px 40px 24px; } .framer-9ZPrA .framer-1n0athw { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; } .framer-9ZPrA .framer-or4mn9 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; padding: 40px; } .framer-9ZPrA .framer-14kgtv7 { flex-direction: column; padding: 40px 16px 40px 16px; } .framer-9ZPrA .framer-32by2m, .framer-9ZPrA .framer-1ps7wxj, .framer-9ZPrA .framer-1s6y7e4, .framer-9ZPrA .framer-186p9xi, .framer-9ZPrA .framer-1tlvsqf, .framer-9ZPrA .framer-17vyxbd, .framer-9ZPrA .framer-ftw13r { height: 30px; width: 30px; }}\",\"@media (max-width: 809px) { .framer-9ZPrA.framer-1rapmcm { width: 390px; } .framer-9ZPrA .framer-1iyhgpq { flex-direction: column; height: 90vh; } .framer-9ZPrA .framer-1uy2cpc { flex: 1 0 0px; height: 1px; } .framer-9ZPrA .framer-12ruwtz { padding: 24px 0px 24px 0px; } .framer-9ZPrA .framer-5818x4, .framer-9ZPrA .framer-1s9psrc, .framer-9ZPrA .framer-q88kzg { padding: 16px; } .framer-9ZPrA .framer-1vwifs1-container, .framer-9ZPrA .framer-18y95v-container, .framer-9ZPrA .framer-1p3ey3a-container { height: 100px; } .framer-9ZPrA .framer-1wpptpd { padding: 40px 0px 40px 0px; } .framer-9ZPrA .framer-16cuvqz { flex-direction: column; height: min-content; padding: 24px; width: 95%; } .framer-9ZPrA .framer-1096txi { flex: none; order: 1; padding: 24px 1px 24px 1px; width: min-content; } .framer-9ZPrA .framer-1lzdjln { width: 322px; } .framer-9ZPrA .framer-4xvu0t { width: 317px; } .framer-9ZPrA .framer-bwew7v { width: 311px; } .framer-9ZPrA .framer-dowx13-container { height: 153px; order: 0; width: 100%; } .framer-9ZPrA .framer-15fo09l, .framer-9ZPrA .framer-vji8yz, .framer-9ZPrA .framer-7w1oj9, .framer-9ZPrA .framer-w6u94v, .framer-9ZPrA .framer-7rqedz, .framer-9ZPrA .framer-1ru3717 { padding: 60px 0px 60px 0px; } .framer-9ZPrA .framer-1wy7gyx, .framer-9ZPrA .framer-1t9jbz4, .framer-9ZPrA .framer-cd83j5 { width: 95%; } .framer-9ZPrA .framer-9kwdhi { padding: 0px 24px 0px 24px; } .framer-9ZPrA .framer-alqi7o { flex: 718 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-9ZPrA .framer-jqnnjs { height: 627px; } .framer-9ZPrA .framer-1gbgyej-container { height: 618px; width: 100%; } .framer-9ZPrA .framer-1t9kkey { padding: 32px 0px 32px 0px; width: 95%; } .framer-9ZPrA .framer-8q2mnx, .framer-9ZPrA .framer-1vpdn9x, .framer-9ZPrA .framer-12rjqmf, .framer-9ZPrA .framer-1inzscc, .framer-9ZPrA .framer-qngze8, .framer-9ZPrA .framer-1auh8ym, .framer-9ZPrA .framer-1ckese3, .framer-9ZPrA .framer-t9ckyn { flex-direction: column; } .framer-9ZPrA .framer-1otldgd, .framer-9ZPrA .framer-z7kyek, .framer-9ZPrA .framer-1nnlnoq, .framer-9ZPrA .framer-t5vzzl { flex: none; height: min-content; width: 100%; } .framer-9ZPrA .framer-10enf8e, .framer-9ZPrA .framer-1jyjqza { flex-direction: column; padding: 24px; width: 95%; } .framer-9ZPrA .framer-m4vtyl { flex: none; order: 0; width: 100%; } .framer-9ZPrA .framer-n0awqk-container { height: 233px; order: 3; width: 332px; } .framer-9ZPrA .framer-nbrfls { padding: 24px; width: 95%; } .framer-9ZPrA .framer-1kna5lr { align-content: flex-start; align-items: flex-start; flex-direction: column; } .framer-9ZPrA .framer-1ztezu { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9ZPrA .framer-16jq2ek, .framer-9ZPrA .framer-shwcoc-container, .framer-9ZPrA .framer-1i20vq2-container, .framer-9ZPrA .framer-1orwp13-container, .framer-9ZPrA .framer-h2x8bi-container, .framer-9ZPrA .framer-18fpe83-container, .framer-9ZPrA .framer-19l3ei4-container, .framer-9ZPrA .framer-1m0lqz2-container, .framer-9ZPrA .framer-5fiour-container, .framer-9ZPrA .framer-1i2gsaf-container, .framer-9ZPrA .framer-iy0e45-container, .framer-9ZPrA .framer-13difkd-container, .framer-9ZPrA .framer-177f42t { flex: none; width: 100%; } .framer-9ZPrA .framer-1hr0qij { align-self: unset; flex: none; gap: 40px; grid-template-columns: repeat(2, minmax(130px, 1fr)); grid-template-rows: repeat(5, min-content); height: min-content; width: 100%; } .framer-9ZPrA .framer-1obgu8f { height: var(--framer-aspect-ratio-supported, 33px); } .framer-9ZPrA .framer-1nf39y9, .framer-9ZPrA .framer-7sdd0u { height: var(--framer-aspect-ratio-supported, 73px); } .framer-9ZPrA .framer-1e1688n { height: var(--framer-aspect-ratio-supported, 47px); } .framer-9ZPrA .framer-9j76az { height: var(--framer-aspect-ratio-supported, 59px); } .framer-9ZPrA .framer-19cguxb { height: var(--framer-aspect-ratio-supported, 48px); } .framer-9ZPrA .framer-19c3h30 { height: var(--framer-aspect-ratio-supported, 24px); } .framer-9ZPrA .framer-17wacfo { height: var(--framer-aspect-ratio-supported, 43px); } .framer-9ZPrA .framer-hn88t6 { height: var(--framer-aspect-ratio-supported, 41px); } .framer-9ZPrA .framer-1sg84do { gap: 30px; padding: 40px 0px 40px 0px; } .framer-9ZPrA .framer-wlxoxa { gap: 16px; } .framer-9ZPrA .framer-1i6ww6d { gap: 16px; width: 95%; } .framer-9ZPrA .framer-1jmbpfv, .framer-9ZPrA .framer-tspmi4, .framer-9ZPrA .framer-3h2fjk, .framer-9ZPrA .framer-1b2tok1 { overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-9ZPrA .framer-14e7523 { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; } .framer-9ZPrA .framer-1n0athw { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; width: 100%; } .framer-9ZPrA .framer-6jxyde, .framer-9ZPrA .framer-hnppvc { flex-direction: column; flex-wrap: wrap; width: 100%; } .framer-9ZPrA .framer-f12n4g-container, .framer-9ZPrA .framer-1tdcyjd-container, .framer-9ZPrA .framer-2kddps-container, .framer-9ZPrA .framer-1g8rq2u-container { width: 100%; } .framer-9ZPrA .framer-121p1x9 { padding: 40px 0px 40px 0px; width: 95%; } .framer-9ZPrA .framer-or4mn9 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 30px; } .framer-9ZPrA .framer-14kgtv7 { flex-direction: column; padding: 40px 16px 40px 16px; width: 95%; } .framer-9ZPrA .framer-sujb73 { gap: 16px; justify-content: flex-start; } .framer-9ZPrA .framer-32by2m, .framer-9ZPrA .framer-1ps7wxj, .framer-9ZPrA .framer-1s6y7e4, .framer-9ZPrA .framer-186p9xi, .framer-9ZPrA .framer-1tlvsqf, .framer-9ZPrA .framer-17vyxbd, .framer-9ZPrA .framer-ftw13r { height: 24px; width: 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 10213\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NpJVcyz3R\":{\"layout\":[\"fixed\",\"auto\"]},\"hJrTThh26\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"csf7epszg\":{\"pattern\":\":csf7epszg\",\"name\":\"hero\"},\"jylxd99Hv\":{\"pattern\":\":jylxd99Hv\",\"name\":\"spatialai\"},\"nhpNduvRD\":{\"pattern\":\":nhpNduvRD\",\"name\":\"infrastructure\"},\"v5hSrU1MW\":{\"pattern\":\":v5hSrU1MW\",\"name\":\"poweredby\"},\"B7estlY_b\":{\"pattern\":\":B7estlY_b\",\"name\":\"whydecentralisation\"},\"B9PSpe1yB\":{\"pattern\":\":B9PSpe1yB\",\"name\":\"team\"},\"pNfwFcola\":{\"pattern\":\":pNfwFcola\",\"name\":\"partners\"},\"x14UtIUWy\":{\"pattern\":\":x14UtIUWy\",\"name\":\"roadmap\"},\"fRIOWxynS\":{\"pattern\":\":fRIOWxynS\",\"name\":\"awards\"},\"xTcfJ3M7y\":{\"pattern\":\":xTcfJ3M7y\",\"name\":\"gettheapp\"},\"k5VmYoj0o\":{\"pattern\":\":k5VmYoj0o\",\"name\":\"jointheconversation\"},\"DYVFLH_Gi\":{\"pattern\":\":DYVFLH_Gi\",\"name\":\"followus\"},\"bpI1h7RQV\":{\"pattern\":\":bpI1h7RQV\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameruFaAaXDZy=withCSS(Component,css,\"framer-9ZPrA\");export default FrameruFaAaXDZy;FrameruFaAaXDZy.displayName=\"Home\";FrameruFaAaXDZy.defaultProps={height:10213,width:1440};addFonts(FrameruFaAaXDZy,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Roboto\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/roboto/v47/KFOMCnqEu92Fr1ME7kSn66aGLdTylUAMQXC89YmC2DPNWubEbWmWggvWl0Qn.woff2\",weight:\"400\"}]},...NavigationFonts,...HeaderTextFonts,...VideoFonts,...TickerFonts,...Video1Fonts,...ButtonFonts,...SlideshowFonts,...PillBtnFonts,...JourneyFonts,...AwardsAndProgramsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruFaAaXDZy\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NpJVcyz3R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hJrTThh26\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"csf7epszg\\\":{\\\"pattern\\\":\\\":csf7epszg\\\",\\\"name\\\":\\\"hero\\\"},\\\"jylxd99Hv\\\":{\\\"pattern\\\":\\\":jylxd99Hv\\\",\\\"name\\\":\\\"spatialai\\\"},\\\"nhpNduvRD\\\":{\\\"pattern\\\":\\\":nhpNduvRD\\\",\\\"name\\\":\\\"infrastructure\\\"},\\\"v5hSrU1MW\\\":{\\\"pattern\\\":\\\":v5hSrU1MW\\\",\\\"name\\\":\\\"poweredby\\\"},\\\"B7estlY_b\\\":{\\\"pattern\\\":\\\":B7estlY_b\\\",\\\"name\\\":\\\"whydecentralisation\\\"},\\\"B9PSpe1yB\\\":{\\\"pattern\\\":\\\":B9PSpe1yB\\\",\\\"name\\\":\\\"team\\\"},\\\"pNfwFcola\\\":{\\\"pattern\\\":\\\":pNfwFcola\\\",\\\"name\\\":\\\"partners\\\"},\\\"x14UtIUWy\\\":{\\\"pattern\\\":\\\":x14UtIUWy\\\",\\\"name\\\":\\\"roadmap\\\"},\\\"fRIOWxynS\\\":{\\\"pattern\\\":\\\":fRIOWxynS\\\",\\\"name\\\":\\\"awards\\\"},\\\"xTcfJ3M7y\\\":{\\\"pattern\\\":\\\":xTcfJ3M7y\\\",\\\"name\\\":\\\"gettheapp\\\"},\\\"k5VmYoj0o\\\":{\\\"pattern\\\":\\\":k5VmYoj0o\\\",\\\"name\\\":\\\"jointheconversation\\\"},\\\"DYVFLH_Gi\\\":{\\\"pattern\\\":\\\":DYVFLH_Gi\\\",\\\"name\\\":\\\"followus\\\"},\\\"bpI1h7RQV\\\":{\\\"pattern\\\":\\\":bpI1h7RQV\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicWidth\":\"1440\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"10213\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "o6CACsE,IAAIA,IAAe,SAASA,EAAc,CAACA,EAAc,KAAQ,OAAOA,EAAc,QAAW,UAAUA,EAAc,MAAS,QAAQA,EAAc,KAAQ,OAAOA,EAAc,UAAa,YAAa,GAAGA,KAAgBA,GAAc,CAAC,EAAE,EAAE,IAAIC,IAAS,SAASA,EAAQ,CAACA,EAAQ,MAAS,SAASA,EAAQ,IAAO,KAAM,GAAGA,KAAUA,GAAQ,CAAC,EAAE,EAAE,IAAMC,GAAa,uEACtb,SAASC,GAASC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,OAAAC,EAAO,QAAAC,EAAQ,SAAAC,EAAS,YAAAC,EAAY,WAAAC,EAAW,GAAAC,EAAG,SAAAC,EAAS,GAAGC,CAAI,EAAET,EAAM,OAAOS,CAAK,CAQjH,SAASC,EAAMV,EAAM,CAAC,IAAMW,EAASZ,GAASC,CAAK,EAAE,OAAoBY,EAAKC,GAAU,CAAC,GAAGF,CAAQ,CAAC,CAAE,CAAC,SAASG,GAAoBC,EAAS,CAAC,IAAMC,EAA4BC,GAA+B,EAAQC,EAAeC,EAAO,EAAK,EAAQC,EAAaD,EAAO,EAAK,EAAQE,EAAYC,GAAYC,GAAa,CAAC,GAAG,CAACR,EAAS,QAAQ,OAAO,IAAMS,GAAaD,IAAc,EAAE,KAAKA,GAAaR,EAAS,QAAQ,SAAeU,EAAa,KAAK,IAAIV,EAAS,QAAQ,YAAYS,CAAW,EAAE,GAAMT,EAAS,QAAQ,SAAS,GAAG,CAACU,IAAcV,EAAS,QAAQ,YAAYS,EAAa,EAAE,CAAC,CAAC,EAAQE,EAAKJ,GAAY,IAAI,CAAC,IAAMK,EAAMZ,EAAS,QAAQ,GAAG,CAACY,EAAM,OAAOA,EAAM,QAAQ,OACtjB,EAAhHA,EAAM,YAAY,GAAGA,EAAM,WAAW,CAACA,EAAM,QAAQ,CAACA,EAAM,OAAOA,EAAM,YAAYA,EAAM,oBAAiCA,GAAO,CAACT,EAAe,SAASF,IAA6BE,EAAe,QAAQ,GAAKE,EAAa,QAAQ,GAAKO,EAAM,KAAK,EAAE,MAAMC,GAAG,CAAC,CAAC,EACvR,QAAQ,IAAIV,EAAe,QAAQ,EAAK,EAAG,EAAE,CAAC,CAAC,EAAQW,EAAMP,GAAY,IAAI,CAAI,CAACP,EAAS,SAASG,EAAe,UAAeH,EAAS,QAAQ,MAAM,EAAEK,EAAa,QAAQ,GAAM,EAAE,CAAC,CAAC,EAAE,MAAM,CAAC,KAAAM,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAUD,CAAY,CAAE,CAAC,SAASU,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,EAAE,CAAC,GAAK,CAACC,CAAkB,EAAEC,GAAS,IAAIN,CAAW,EAAO,CAACO,EAAsBC,CAAwB,EAAEF,GAAS,EAAK,EAAKN,IAAcK,GAAoB,CAACE,GAAuBC,EAAyB,EAAI,EAAG,IAAMC,EAE7hBJ,GAAoBJ,GAAOC,GAAMC,GAAa,CAACC,GAQ/C,CAACG,EAA0BG,EAAS,OAAGD,EAAaC,EAAS,cAAsBL,EAAmBK,EAAS,WAAgBA,EAAS,cAAqBA,CAAS,CAAC,IAAM5B,GAAuB6B,GAAK,SAAoB1C,EAAM,CAAC,GAAK,CACzO,QAAA2C,EAAQ,MAAM,OAAAC,EAAO,QAAAC,EAAQ,GAAG,cAAAC,EAAc,GAAM,SAAAX,EAAS,GAAM,QAAAY,EAAQ,GAAK,KAAAd,EAAK,GAAK,MAAAD,EAAM,GAAK,YAAAE,EAAY,GAAK,eAAAc,GAAe,GAAM,UAAAC,GAAU,QAAQ,gBAAAC,EAAgB,gBAAgB,OAAAC,GAAO,EAAE,OAAAC,GAAO,GAAG,UAAUC,GAAc,EAAE,OAAAC,EAAO,QAAQvB,EAAY,SAAAwB,EAAS,SAAAC,GAAS,QAAAC,GAAQ,OAAAC,GAAO,MAAAC,GAAM,QAAAC,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,EAAS,EAAEhE,EAAYe,EAASI,EAAO,EAAQ8C,GAASC,GAAmB,EAAQC,EAAiBhD,EAAO,IAAI,EAAQiD,GAAgBjD,EAAO,IAAI,EAAQkD,GAAWC,GAAc,EAAQC,GAAaC,GAAgB,EAAQC,EAAiBJ,IAAYE,KAAeG,GAAa,OAAaC,GAAaC,GAAU5E,CAAK,EAGtpB6E,EAAiBJ,EAAiB,cAAc3C,GAAoB,CAAC,YAAAC,EAAY,MAAAC,EAAM,KAAAC,EAAK,YAAAC,EAAY,SAAAC,CAAQ,CAAC,EAAQ2C,EAAaL,EAAiB,GAAKM,GAAUhE,CAAQ,EAAQiE,GAAkBP,EAAiB,GAAMM,GAAUhE,EAAS,CAAC,OAAO,MAAM,KAAK,EAAI,CAAC,EAC1QkE,EAAU5B,KAAgB,IAAI,KAAKA,GAAmB,CAAC,KAAA3B,EAAK,MAAAG,EAAM,YAAAR,EAAY,UAAA6D,CAAS,EAAEpE,GAAoBC,CAAQ,EAC3HoE,EAAU,IAAI,CAAIV,GAA2BI,IAAmB,gBAAwB9C,EAAYL,EAAK,EAAOG,EAAM,EAAE,EAAE,CAACgD,EAAiB9C,CAAW,CAAC,EACxJoD,EAAU,IAAI,CAAIV,IACfK,GAAc/C,GAAa8C,IAAmB,eAAcnD,EAAK,EAAKmD,IAAmB,eAAqBhD,EAAM,EAAE,EAAE,CAACgD,EAAiBC,EAAa/C,CAAW,CAAC,EAAEoD,EAAU,IAAI,CAAI,CAACd,IAAYf,GAAQR,GAAemC,GAAW,CAAClE,EAAS,UACnPA,EAAS,QAAQ,YAAY,IAAI,EAAE,CAAC+B,EAAcQ,EAAO2B,CAAS,CAAC,EAO5D,IAAMG,EAAoCjE,EAAO,EAAK,EAE7DgE,EAAU,IAAI,CAAC,GAAG,CAACC,EAAoC,QAAQ,CAACA,EAAoC,QAAQ,GAAK,MAAO,CAAC,IAAMC,EAAiBC,GAAc/B,CAAQ,EAAEA,EAAS,IAAI,GAAGA,GAAU,GAAG,IAAIlC,GAKxMgE,GAAkB,KAOlBJ,GAAW,GAAG,GAAG,CAAE,EAAE,CAACA,EAAUpC,EAAQD,EAAOW,CAAQ,CAAC,EACzD4B,EAAU,IAAI,CAAC,GAAIG,GAAc/B,CAAQ,EAAS,OAAOA,EAAS,GAAG,SAASgC,GAAOlE,EAAYkE,CAAK,CAAC,CAAE,EAAE,CAAChC,CAAQ,CAAC,EACrHiC,GAAW,IAAI,CAAIrB,EAAiB,UAAU,MAAepD,EAAS,UACnE,CAACqD,IAAiBnC,GAAM,CAACkC,EAAiB,UAAQzC,EAAK,CAAG,CAAC,EAC9D+D,GAAU,IAAI,CAAI1E,EAAS,UAASqD,GAAgB,QAAQrD,EAAS,QAAQ,MAAMoD,EAAiB,QAAQpD,EAAS,QAAQ,OAAOc,EAAM,EAAG,CAAC,EAAE,IAAM6D,GAAIC,GAAQ,IAAI,CAAC,IAAIC,EAAS,GASpL,GAAGjD,IAAU,MAAM,OAAOC,EAAOgD,EAAS,GAAGjD,IAAU,SAAS,OAAOE,EAAQ+C,CAAS,EAAE,CAACjD,EAAQE,EAAQD,EAAOqC,CAAS,CAAC,EAC5HE,EAAU,IAAI,CAAIlB,IAAUlD,EAAS,SAAS8D,IAAmB,YAAY,WAAW,IAAInD,EAAK,EAAE,EAAE,CAAG,EAAE,CAAC,CAAC,EAC5GyD,EAAU,IAAI,CAAIpE,EAAS,SAAS,CAACiB,IAAMjB,EAAS,QAAQ,QAAQqC,IAAQ,GAAG,IAAI,EAAE,CAACA,EAAM,CAAC,EAC7F,IAAMyC,GAAY,IAAI,CAAC,IAAMlE,EAAMZ,EAAS,QAAYY,IAAgBA,EAAM,YAAY,IAAIsD,EAAU,GAAE5D,GAAa4D,GAAW,GAAG,GAAG,GACxIC,EAAU,SAASL,IAAmB,YAAY9C,GAAa8C,IAAmB,eAAeC,IAAapD,EAAK,EAAE,EAAE,OAAoBd,EAAK,QAAQ,CAAC,QAAAgD,GAAQ,aAAAC,GAAa,aAAAC,GAAa,YAAAC,GAAY,UAAAC,GAAU,IAAI0B,GAAI,KAAKzD,EAAK,IAAIlB,EAAS,SAASa,GAAG4B,KAAW5B,CAAC,EAAE,QAAQA,GAAG6B,KAAU7B,CAAC,EAAE,OAAOA,GAAG8B,KAAS9B,CAAC,EAAE,QAAQA,GAAG+B,KAAQ/B,CAAC,EAAE,SAASsD,EAAU,SAASL,IAAmB,YAAY9C,GAAa8C,IAAmB,eAAeC,EAAa,QAAQI,EAAU,QAAQ,OAAOT,GAAkB,CAACnB,EAAO,WAAWuB,IAAmB,YAAY,CAACG,GAAkB,OAC7jB,WAAW,OAAOlC,GAAe,CAACD,GAASD,IAAS9C,GAAa,sEAAsEgD,GAAeQ,EAAOA,EAAO,OAAU,aAAauC,GAAY,SAAS1D,EAAS,MAAMsC,EAAiB,GAAKzC,EAAM,YAAYE,EAAY,MAAM,CAAC,OAAS0B,GAAQ,UAAU,OAAO,MAAM,OAAO,OAAO,OAAO,aAAAe,GAAa,QAAQ,QAAQ,UAAU1B,GAAU,gBAAgBC,EAAgB,eAAe,SAAS,CAAC,CAAC,CAAE,CAAC,EAAExC,EAAM,YAAY,QAAQ,SAASoF,GAAsBP,EAAM,CAAC,OAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAE,CAAQ,SAASQ,GAAUR,EAAM,CAA0E,OAA5DA,EAAM,MAAM,0CAA0C,GAAG,CAAC,GAAgB,IAAIO,EAAqB,EAAE,KAAK,GAAG,CAAE,CAAC,IAAME,GAAiB,CAAC,QAAQ,OAAO,UAAU,aAAa,MAAM,EAAEC,GAAoBvF,EAAM,CAAC,QAAQ,CAAC,KAAKwF,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAAC,MAAM,QAAQ,CAAC,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,MAAM,MAAM,aAAa,uEAAuE,OAAOlG,EAAM,CAAC,OAAOA,EAAM,UAAU,QAAS,CAAC,EAAE,QAAQ,CAAC,KAAKkG,EAAY,KAAK,MAAM,OAAO,iBAAiB,CAAC,MAAM,MAAM,EAAE,OAAOlG,EAAM,CAAC,OAAOA,EAAM,UAAU,KAAM,CAAC,EAAE,QAAQ,CAAC,KAAKkG,EAAY,QAAQ,MAAM,UAAU,aAAa,MAAM,cAAc,IAAI,EAAE,GAAGC,GAAoB,cAAc,CAAC,KAAKD,EAAY,QAAQ,MAAM,SAAS,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,OAAO,CAAC,CAAC,cAAApD,CAAa,IAAI,CAACA,EAAc,YAAY,uHAAuH,EAAE,gBAAgB,CAAC,KAAKoD,EAAY,MAAM,MAAM,aAAa,aAAa,eAAe,EAAE,UAAU,CAAC,MAAM,aAAa,KAAKA,EAAY,OAAO,IAAI,EAAE,IAAI,IAAI,KAAK,GAAG,KAAK,GAAG,EAAE,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,MAAM,cAAc,IAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,MAAM,QAAQF,GAAiB,aAAaA,GAAiB,IAAID,EAAS,CAAC,EAMx+D,SAAS,CAAC,KAAKG,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,EAAK,EAAE,MAAM,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,MAAM,cAAc,IAAI,EAAE,OAAO,CAAC,KAAKA,EAAY,OAAO,IAAI,IAAI,IAAI,EAAE,KAAK,IAAI,OAAO,CAAC,CAAC,MAAAlE,CAAK,IAAIA,EAAM,aAAa,EAAE,EAAE,MAAM,CAAC,KAAKkE,EAAY,YAAY,EAAE,SAAS,CAAC,KAAKA,EAAY,YAAY,EAAE,QAAQ,CAAC,KAAKA,EAAY,YAAY,EAAE,OAAO,CAAC,KAAKA,EAAY,YAAY,EAAE,GAAGE,EAAa,CAAC,EC3EqmD,IAAMC,GAAgBC,EAASC,EAAU,EAAQC,GAAkCC,GAA0BC,CAAQ,EAAQC,GAAgBL,EAASM,EAAU,EAAQC,GAAWP,EAASQ,CAAK,EAAQC,GAAYT,EAASU,CAAM,EAAQC,GAAYX,EAASQ,CAAM,EAAQI,GAAYZ,EAASa,CAAM,EAAQC,GAAed,EAASe,EAAS,EAAQC,GAAahB,EAASiB,CAAO,EAAQC,GAAalB,EAASmB,CAAO,EAAQC,GAAuBpB,EAASqB,CAAiB,EAAQC,GAAYtB,EAASuB,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,MAAM,GAAG,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAY,CAAC,OAAO,IAAI,MAAM,EAAE,SAAS,IAAI,KAAK,QAAQ,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAW,EAAQE,EAAW,CAAC,UAAU,iDAAiD,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWF,EAAW,EAAQG,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAU,CAAC,CAAC,MAAAC,CAAK,IAAoBC,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOF,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUG,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAA6BC,GAAW,SAASF,EAAMG,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,GAAQ,GAAGC,EAAS,EAAEtB,GAASI,CAAK,EAAQmB,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,EAAmB,EAAEC,GAA8BR,GAAQS,GAAY,EAAK,EAAQC,GAAe,OAAqOC,EAAkBC,GAAGrD,GAAkB,GAAtO,CAAauC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQe,EAAUC,EAAkB,WAAW,EAAQC,EAAW3B,EAAO,IAAI,EAAQ4B,GAAWF,EAAkB,WAAW,EAAQG,GAAW7B,EAAO,IAAI,EAAQ8B,GAAWJ,EAAkB,WAAW,EAAQK,GAAW/B,EAAO,IAAI,EAAQgC,GAAWN,EAAkB,WAAW,EAAQO,GAAWjC,EAAO,IAAI,EAAQkC,GAAWR,EAAkB,WAAW,EAAQS,GAAWnC,EAAO,IAAI,EAAQoC,GAAWV,EAAkB,WAAW,EAAQW,EAAWrC,EAAO,IAAI,EAAQsC,GAAWZ,EAAkB,WAAW,EAAQa,EAAWvC,EAAO,IAAI,EAAQwC,GAAWd,EAAkB,WAAW,EAAQe,GAAWzC,EAAO,IAAI,EAAQ0C,GAAWhB,EAAkB,WAAW,EAAQiB,EAAW3C,EAAO,IAAI,EAAQ4C,GAAWlB,EAAkB,WAAW,EAAQmB,EAAY7C,EAAO,IAAI,EAAQ8C,EAAYpB,EAAkB,WAAW,EAAQqB,GAAY/C,EAAO,IAAI,EAAQgD,EAAYtB,EAAkB,WAAW,EAAQuB,EAAYjD,EAAO,IAAI,EAAQkD,EAAYxB,EAAkB,WAAW,EAAQyB,EAAYnD,EAAO,IAAI,EAAE,OAAAoD,GAAiB,CAAC,CAAC,EAAsB/D,EAAKgE,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAjF,EAAiB,EAAE,SAAsBkF,EAAMC,GAAY,CAAC,GAAG5C,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,yCAAyC,CAAC,EAAeoE,EAAME,EAAO,IAAI,CAAC,GAAG3C,GAAU,UAAUW,GAAGD,EAAkB,iBAAiBb,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKoE,EAA0B,CAAC,OAAO,GAAG,MAAM,YAAY,EAAE,EAAE,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,SAAS,aAAa,GAAK,KAAK,SAAS,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKuE,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,SAAS,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeN,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,GAAG7B,EAAU,IAAIE,EAAK,SAAS,CAActC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAsBiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKwE,GAAkC,CAAC,sBAAsB,GAAK,QAAQvF,GAAU,SAAsBe,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uGAAuG,MAAM,CAAC,QAAQ,YAAY,EAAE,QAAQd,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAec,EAAKwE,GAAkC,CAAC,sBAAsB,GAAK,QAAQpF,GAAW,SAAsBY,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,wBAAwB,QAAQ,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,QAAQd,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,kBAAkB,EAAE,SAAsBiE,EAAM,SAAS,CAAC,SAAS,CAAC,cAA2BjE,EAAK,KAAK,CAAC,CAAC,EAAE,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKwE,GAAkC,CAAC,sBAAsB,GAAK,QAAQlF,GAAW,SAAsBU,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,uGAAuG,MAAM,CAAC,QAAQ,YAAY,EAAE,QAAQd,GAAW,UAAU,GAAK,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAec,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK0E,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,UAAU,kBAAkB,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1E,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,WAAW,GAAM,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,4FAA4F,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,sBAAsB,SAAsBiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,mBAAmB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK4E,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5E,EAAK6E,EAAK,CAAC,KAAK,yBAAyB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,wBAAwB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,qCAAqC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,uCAAuC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,0BAA0B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,gCAAgC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,qBAAqB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,yEAAyE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,mCAAmC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,uBAAuB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gCAAgC,mBAAmB,2BAA2B,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9E,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,+DAA+D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,iBAAiB,GAAK,aAAa,GAAK,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAO,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,KAAK,WAAW,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,qEAAqE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,4BAA4B,GAAGuC,GAAW,IAAIC,GAAK,SAAsByB,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,kBAAkB,EAAE,SAAsBiE,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,2EAA2E,EAAE,SAAS,CAAcjE,EAAK,SAAS,CAAC,SAAS,cAAc,CAAC,EAAE,SAAiBA,EAAK,SAAS,CAAC,SAAS,eAAe,CAAC,EAAE,SAAiBA,EAAK,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,SAAiBA,EAAK,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,kBAAkB,EAAE,SAAsBiE,EAAM,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,CAAcjE,EAAK,SAAS,CAAC,SAAS,cAAc,CAAC,EAAE,SAAiBA,EAAK,SAAS,CAAC,SAAS,eAAe,CAAC,EAAE,SAAiBA,EAAK,SAAS,CAAC,SAAS,iBAAiB,CAAC,EAAE,SAAiBA,EAAK,SAAS,CAAC,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAYQ,EAAS,CAAC,SAAS,CAAczE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,gDAAgD,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qGAAqG,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,qPAAqP,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,yIAAyI,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,6DAA6D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAO,CAAC,gBAAgB,uBAAuB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,mEAAmE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,0BAA0B,GAAGyC,GAAW,IAAIC,GAAK,SAAsBuB,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcjE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,KAAK,gBAAgB,IAAI,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAK,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,mBAAmB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,EAAE,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,CAAC,EAAE,UAAU,CAAC,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,IAAI,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,GAAG,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,mBAAmB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,EAAE,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,CAAC,CAAC,EAAE,SAAsB7B,EAAKgF,GAAU,CAAC,UAAU,WAAW,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,KAAK,gBAAgB,IAAI,cAAc,YAAY,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,GAAG,mBAAmB,KAAK,cAAc,EAAE,aAAa,EAAE,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,EAAE,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,mBAAmB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,IAAI,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAcf,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,SAAS,SAAS,CAAcnE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sKAAsK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcnE,EAAKmE,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAsBF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcnE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAe9E,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9E,EAAKoE,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,gBAAgB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrE,EAAKiF,EAAO,CAAC,UAAU,GAAG,UAAU,cAAc,OAAO,OAAO,UAAU,2CAA2C,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,UAAU,SAAS,CAAcnE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAYQ,EAAS,CAAC,SAAS,CAAczE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iFAAiF,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+EAA+E,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gHAAgH,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4HAA4H,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,SAAS,CAAcnE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAYQ,EAAS,CAAC,SAAS,CAAcR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,wHAAqIjE,EAAK,KAAK,CAAC,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8FAA8F,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,SAAS,SAAS,CAAcnE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,cAAc,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,SAAsBnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mSAAmS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,OAAO,SAAS,CAAcnE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,CAAC,EAAeb,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,SAAS,CAAcnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKmE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBnE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mMAAmM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,GAAG2C,GAAW,IAAIC,GAAK,SAAsBqB,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAO,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mBAAmB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8BAA8B,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gBAAgB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gCAAgC,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gCAAgC,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,6CAA6C,sBAAsB,2BAA2B,EAAE,SAAS,wFAAwF,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAO,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,uBAAuB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,uBAAuB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sBAAsB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yBAAyB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6BAA6B,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0CAA0C,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAO,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,uCAAuC,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,sBAAsB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,4BAA4B,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yBAAyB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yBAAyB,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAO,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,uEAAuE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,cAAc,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,mCAAmC,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6BAA6B,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kCAAkC,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0BAA0B,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKkF,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,6BAA6B,UAAU,4BAA4B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gCAAgC,GAAG6C,GAAW,IAAIC,GAAK,SAAsBmB,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wGAAwG,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wHAAwH,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mRAAmR,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,GAAG,iBAAiB,GAAG,kBAAkB,GAAG,WAAW,GAAM,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,4FAA4F,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,GAAG,eAAe,GAAG,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe3E,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,GAAG+C,GAAW,IAAIC,EAAK,SAAsBiB,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,sDAAsD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAYQ,EAAS,CAAC,SAAS,CAAczE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sGAAsG,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mKAAmK,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,qUAAqU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK6E,EAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gCAAgC,mBAAmB,iBAAiB,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,+BAA+B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,oKAAoK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,gCAAgC,mBAAmB,yBAAyB,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,+BAA+B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gCAAgC,mBAAmB,iDAAiD,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,oCAAoC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,+BAA+B,mBAAmB,oBAAoB,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,0BAA0B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,0FAA0F,OAAO,kcAAkc,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,IAAI,0FAA0F,OAAO,kcAAkc,EAAE,UAAU,gCAAgC,mBAAmB,iDAAiD,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,sBAAsB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,mEAAmE,OAAO,oVAAoV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,mEAAmE,OAAO,oVAAoV,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,IAAI,mEAAmE,OAAO,oVAAoV,EAAE,UAAU,+BAA+B,mBAAmB,kCAAkC,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,4BAA4B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,KAAK,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,wBAAwB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gCAAgC,mBAAmB,gBAAgB,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK6E,EAAK,CAAC,KAAK,8BAA8B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,YAAYX,GAAmB,OAAO,OAAO,wCAAwC,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,+BAA+B,mBAAmB,8BAA8B,WAAWtF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,8BAA8B,GAAGiD,GAAW,IAAIC,EAAK,SAAsBe,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcjE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK4E,EAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5E,EAAK6E,EAAK,CAAC,KAAK,2BAA2B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,4BAA4B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,+BAA+B,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,+BAA+B,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,wBAAwB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gCAAgC,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,mCAAmC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,+BAA+B,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,gCAAgC,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,MAAM,aAAa,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gCAAgC,mBAAmB,eAAe,CAAC,CAAC,CAAC,EAAe9E,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,kBAAkB,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,yEAAyE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK4E,EAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,GAAG,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc5E,EAAK6E,EAAK,CAAC,KAAK,yBAAyB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,wEAAwE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,yBAAyB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,wBAAwB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,0BAA0B,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,sCAAsC,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,+BAA+B,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,yBAAyB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,YAAY,IAAI,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,qEAAqE,EAAE,UAAU,gCAAgC,mBAAmB,WAAW,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,yBAAyB,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,wFAAwF,OAAO,gQAAgQ,EAAE,UAAU,+BAA+B,mBAAmB,4BAA4B,CAAC,CAAC,CAAC,EAAe9E,EAAK6E,EAAK,CAAC,KAAK,4BAA4B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAK8E,EAAM,CAAC,GAAG,IAAI,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,+BAA+B,mBAAmB,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeb,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,GAAGd,GAAW,IAAIC,GAAK,SAAS,CAAca,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKoE,EAA0B,CAAC,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAK2E,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,WAAW,GAAM,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,4FAA4F,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKmF,EAAQ,CAAC,UAAU;AAAA;AAAA,iCAAkF,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,OAAO,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKmF,EAAQ,CAAC,UAAU;AAAA;AAAA,iCAAoE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKmF,EAAQ,CAAC,UAAU;AAAA;AAAA;AAAA,4CAAgH,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKmF,EAAQ,CAAC,UAAU;AAAA;AAAA;AAAA;AAAA,+BAA+I,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,MAAM,OAAOA,GAAmB,OAAO,OAAO,iBAAiB,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKmF,EAAQ,CAAC,UAAU;AAAA;AAAA;AAAA,uCAAgH,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,UAAU,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,GAAGZ,GAAW,IAAIC,EAAK,SAAS,CAAcW,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKoF,EAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,UAAU,mBAAmB,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,kFAAkF,MAAM,OAAO,UAAU,wGAAwG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKoF,EAAkB,CAAC,UAAU1F,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,sBAAsB,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,6HAA6H,MAAM,OAAO,UAAU,4DAA4D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKoF,EAAkB,CAAC,UAAU1F,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,wBAAwB,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,mGAAmG,MAAM,OAAO,UAAU,gDAAgD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKoF,EAAkB,CAAC,UAAU1F,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,uBAAuB,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,kHAAkH,MAAM,OAAO,UAAU,4GAA4G,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKoF,EAAkB,CAAC,UAAU1F,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,kEAAkE,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,qBAAqB,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,+GAA+G,MAAM,OAAO,UAAU,uEAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,kBAAkB,EAAE,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlD,GAAmB,OAAO,OAAO,oCAAoC,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,WAAW5E,EAAW,SAAsBO,EAAKoF,EAAkB,CAAC,UAAU1F,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,EAAE,EAAE,OAAO,OAAO,GAAG,YAAY,UAAU,yBAAyB,SAAS,YAAY,UAAU,4BAA4B,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,4FAA4F,MAAM,OAAO,UAAU,mJAAmJ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeM,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,uBAAuB,GAAGV,GAAW,IAAIC,EAAM,SAAS,CAAcxD,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcjE,EAAK8E,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,CAAC,EAAeb,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,aAAa,SAAS,CAAcjE,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsBd,EAAYQ,EAAS,CAAC,SAAS,CAAczE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,8IAA8I,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,2OAA2O,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uGAAuG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,2BAA2B,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKiF,EAAO,CAAC,UAAU,GAAG,UAAU,WAAW,OAAO,OAAO,UAAU,2CAA2C,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,2BAA2B,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKiF,EAAO,CAAC,UAAU,GAAG,UAAU,gBAAgB,OAAO,OAAO,UAAU,sDAAsD,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iCAAiC,GAAGyD,EAAY,IAAIC,GAAM,SAAsB1D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjE,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gDAAgD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oBAAoB,EAAE,SAAS,6EAA6E,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uGAAuG,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKiF,EAAO,CAAC,UAAU,GAAG,UAAU,mBAAmB,OAAO,OAAO,UAAU,gCAAgC,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejF,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,YAAYX,GAAmB,OAAO,OAAO,0BAA0B,CAAC,EAAE,SAAsBlB,EAAKoE,EAA0B,CAAC,OAAO,GAAG,SAAsBpE,EAAKqE,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,CAAC,MAAM,MAAM,CAAC,CAAC,EAAE,SAAsB7B,EAAKiF,EAAO,CAAC,UAAU,GAAG,UAAU,oBAAoB,OAAO,OAAO,UAAU,6BAA6B,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,qBAAqB,GAAG2D,EAAY,IAAIC,EAAM,SAAsB5D,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,YAAY,SAAsBiE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcjE,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gDAAgD,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK+E,EAAS,CAAC,sBAAsB,GAAK,SAAsB/E,EAAWyE,EAAS,CAAC,SAAsBzE,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,0BAA0B,EAAE,SAAS,8FAA8F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sBAAsB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeiE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcjE,EAAK6E,EAAK,CAAC,KAAK,uCAAuC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,ugBAAugB,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,6gBAA6gB,aAAa,WAAW,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,qEAAqE,QAAQ,EAAE,IAAI,wgBAAwgB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK6E,EAAK,CAAC,KAAK,wCAAwC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,ggDAAggD,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,+gDAA+gD,aAAa,WAAW,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,gCAAgC,mBAAmB,yBAAyB,QAAQ,EAAE,IAAI,siDAAsiD,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK6E,EAAK,CAAC,KAAK,6BAA6B,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,gfAAgf,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,sfAAsf,aAAa,WAAW,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,gCAAgC,mBAAmB,8BAA8B,QAAQ,EAAE,IAAI,sfAAsf,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK6E,EAAK,CAAC,KAAK,gCAAgC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,24DAA24D,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,+5DAA+5D,aAAa,WAAW,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,gCAAgC,mBAAmB,uBAAuB,QAAQ,EAAE,IAAI,o8DAAo8D,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK6E,EAAK,CAAC,KAAK,mCAAmC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,4sBAA4sB,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,stBAAstB,aAAa,WAAW,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,gCAAgC,mBAAmB,sBAAsB,QAAQ,EAAE,IAAI,iuBAAiuB,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK6E,EAAK,CAAC,KAAK,oCAAoC,YAAY,GAAK,OAAO,YAAY,aAAa,GAAK,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,y+BAAy+B,aAAa,UAAU,EAAE,UAAU,CAAC,IAAI,ogCAAogC,aAAa,UAAU,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,gCAAgC,mBAAmB,kCAAkC,QAAQ,EAAE,IAAI,o/BAAo/B,aAAa,YAAY,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAK6E,EAAK,CAAC,KAAK,iCAAiC,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB7E,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,6mBAA6mB,aAAa,WAAW,EAAE,UAAU,CAAC,IAAI,knBAAknB,aAAa,WAAW,CAAC,EAAE,SAAsB7B,EAAKqF,EAAI,CAAC,GAAG,IAAI,UAAU,+BAA+B,mBAAmB,qDAAqD,QAAQ,EAAE,IAAI,qjBAAqjB,aAAa,WAAW,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerF,EAAKoE,EAA0B,CAAC,OAAO,IAAI,MAAMlD,GAAmB,OAAO,QAAQ,SAAsBlB,EAAKqE,EAAU,CAAC,UAAU,0BAA0B,GAAGR,EAAY,OAAO,YAAY,IAAIC,EAAM,QAAQ,YAAY,SAAsB9D,EAAKsE,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKsF,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetF,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuF,GAAI,CAAC,kFAAkF,kFAAkF,oSAAoS,oKAAoK,8SAA8S,iUAAiU,ySAAyS,mSAAmS,iQAAiQ,4QAA4Q,0GAA0G,uLAAuL,4RAA4R,ivBAAivB,yGAAyG,oVAAoV,qMAAqM,gLAAgL,uMAAuM,uMAAuM,uMAAuM,yLAAyL,uMAAuM,wMAAwM,wNAAwN,8+BAA8+B,uLAAuL,gSAAgS,6mBAA6mB,kRAAkR,+SAA+S,yHAAyH,uUAAuU,wlBAAwlB,yUAAyU,0iBAA0iB,2QAA2Q,2GAA2G,+9BAA+9B,sXAAsX,yRAAyR,2RAA2R,kaAAka,kTAAkT,qkBAAqkB,yRAAyR,mRAAmR,iSAAiS,2MAA2M,wGAAwG,6WAA6W,wXAAwX,+QAA+Q,onBAAonB,+YAA+Y,mkBAAmkB,kOAAkO,uaAAua,6SAA6S,6UAA6U,gmCAAgmC,sbAAsb,+QAA+Q,wTAAwT,mnBAAmnB,yRAAyR,8PAA8P,+QAA+Q,4WAA4W,sIAAsI,0VAA0V,opBAAopB,iTAAiT,+TAA+T,2VAA2V,+WAA+W,+UAA+U,+UAA+U,+UAA+U,+TAA+T,+UAA+U,oSAAoS,sTAAsT,8SAA8S,mwBAAmwB,mRAAmR,kJAAkJ,yLAAyL,2IAA2I,4IAA4I,4IAA4I,4IAA4I,0NAA0N,kMAAkM,qOAAqO,wLAAwL,yLAAyL,wMAAwM,uMAAuM,uMAAuM,wNAAwN,sNAAsN,0VAA0V,yHAAyH,idAAid,gVAAgV,qQAAqQ,isBAAisB,0XAA0X,4OAA4O,2mBAA2mB,qeAAqe,2oBAA2oB,wTAAwT,0UAA0U,+TAA+T,2nBAA2nB,mnBAAmnB,uZAAuZ,oRAAoR,2QAA2Q,8SAA8S,wGAAwG,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,o2HAAo2H,42LAA42L,EAat7mMC,GAAgBC,GAAQlF,GAAUgF,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,MAAM,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,SAAS,OAAO,SAAS,MAAM,SAAS,IAAI,4GAA4G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGI,GAAgB,GAAGC,GAAgB,GAAGC,GAAW,GAAGC,GAAY,GAAGC,GAAY,GAAGC,GAAY,GAAGC,GAAe,GAAGC,GAAa,GAAGC,GAAa,GAAGC,GAAuB,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC5iI,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,6BAA+B,OAAO,4BAA8B,OAAO,uBAAyB,GAAG,kBAAoB,OAAO,oCAAsC,4JAA0L,yBAA2B,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,qBAAuB,iuBAAm2B,qBAAuB,OAAO,qBAAuB,OAAO,sBAAwB,OAAO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "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", "NavigationFonts", "getFonts", "LYKaFlLhk_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "HeaderTextFonts", "FkNKcXvY4_default", "VideoFonts", "Video", "TickerFonts", "Ticker", "Video1Fonts", "ButtonFonts", "ZWCczRqid_default", "SlideshowFonts", "Slideshow", "PillBtnFonts", "EBcQQEGn7_default", "JourneyFonts", "Bk4X6L6Ml_default", "AwardsAndProgramsFonts", "u4RV1KbTj_default", "FooterFonts", "oQJHlUdob_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "addImageAlt", "image", "alt", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "LYKaFlLhk_default", "RichTextWithOptimizedAppearEffect", "x", "FkNKcXvY4_default", "Video", "Ticker", "Link", "Image2", "RichText2", "Slideshow", "ZWCczRqid_default", "EBcQQEGn7_default", "Bk4X6L6Ml_default", "u4RV1KbTj_default", "SVG", "oQJHlUdob_default", "css", "FrameruFaAaXDZy", "withCSS", "uFaAaXDZy_default", "addFonts", "NavigationFonts", "HeaderTextFonts", "VideoFonts", "TickerFonts", "Video1Fonts", "ButtonFonts", "SlideshowFonts", "PillBtnFonts", "JourneyFonts", "AwardsAndProgramsFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
