{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/Jfyo0URw6dFkYOl3UKHU/Vjin00TtzREUBb62whq7/VideoCarouselV3.js", "ssg:https://framerusercontent.com/modules/SLX3fxyqa5cj7I9lEY6y/msf43yLkyQFNr8kOGidj/cGsQbfefm.js"],
  "sourcesContent": ["// Welcome to Code in Framer\n// Get Started: https://www.framer.com/developers/\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useContainerQuery}from\"https://framer.com/m/Hooks-04c2.js@zwNDEORTcagqWlOQj6wu\";const IconPause=({size})=>{return /*#__PURE__*/_jsx(\"svg\",{style:{height:size,width:size},viewBox:`0 0 24 24`,fill:\"none\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M14.25 9V15M9.75 15V9M21 12C21 16.9706 16.9706 21 12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12Z\",stroke:\"currentColor\",\"stroke-width\":\"1.5\"})});};const IconPlay=({size})=>{return /*#__PURE__*/_jsxs(\"svg\",{style:{height:size,width:size},viewBox:`0 0 24 24`,fill:\"none\",children:[/*#__PURE__*/_jsx(\"path\",{d:\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22Z\",stroke:\"currentColor\",\"stroke-width\":\"1.5\"}),/*#__PURE__*/_jsx(\"path\",{d:\"M10 8L16 12L10 16V8Z\",stroke:\"currentColor\",\"stroke-width\":\"1.5\"})]});};const IconChevronsLeftRight=({size})=>{return /*#__PURE__*/_jsx(\"svg\",{style:{height:size,width:size},viewBox:\"0 0 16 16\",fill:\"none\",children:/*#__PURE__*/_jsx(\"path\",{d:\"M6.00033 4.66663L2.66699 7.99996L6.00033 11.3333M10.0003 4.66663L13.3337 7.99996L10.0003 11.3333\",stroke:\"white\",\"stroke-linecap\":\"round\",\"stroke-linejoin\":\"round\"})});};const CustomScrollbar=({containerRef,scrollTrackStyles,scrollThumbStyles,scrollTrackBgStyles})=>{const trackRef=useRef(null);const thumbRef=useRef(null);// Calculate thumb position based on scroll position\nuseEffect(()=>{if(!containerRef.current||!trackRef.current||!thumbRef.current)return;const container=containerRef.current;const updateThumbPosition=()=>{const thumb=thumbRef.current;const trackWidth=trackRef.current.offsetWidth;const thumbWidth=thumb.offsetWidth;const maxLeft=trackWidth-thumbWidth;const scrollPercent=container.scrollLeft/(container.scrollWidth-container.offsetWidth);const maxPercent=maxLeft/trackWidth*100;const constrainedPercent=Math.min(scrollPercent*100,maxPercent);console.log(\"Updating thumb position:\",{scrollLeft:container.scrollLeft,scrollWidth:container.scrollWidth,offsetWidth:container.offsetWidth,scrollPercent,maxPercent,constrainedPercent,currentLeft:thumb.style.left,newLeft:`${constrainedPercent}%`});thumb.style.left=`${constrainedPercent}%`;thumb.style.transform=\"none\";};// Initial position\nupdateThumbPosition();// Add scroll event listener\ncontainer.addEventListener(\"scroll\",updateThumbPosition);return()=>container.removeEventListener(\"scroll\",updateThumbPosition);},[containerRef]);return /*#__PURE__*/_jsxs(\"div\",{className:\"scroll-track\",ref:trackRef,style:scrollTrackStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:scrollTrackBgStyles}),/*#__PURE__*/_jsx(\"div\",{ref:thumbRef,onMouseDown:e=>{// Temporarily disable smooth scrolling during drag\nif(containerRef.current){containerRef.current.style.scrollBehavior=\"auto\";}const startX=e.clientX;const startLeft=parseFloat(thumbRef.current.style.left||\"0\");const trackWidth=trackRef.current.offsetWidth;const thumbWidth=thumbRef.current.offsetWidth;const maxLeft=trackWidth-thumbWidth;const handleMouseMove=e=>{const deltaX=e.clientX-startX;const newLeft=Math.max(0,Math.min(startLeft+deltaX/trackWidth*100,maxLeft/trackWidth*100));thumbRef.current.style.left=`${newLeft}%`;// Update scroll position\nif(containerRef.current){const scrollWidth=containerRef.current.scrollWidth-containerRef.current.offsetWidth;containerRef.current.scrollLeft=scrollWidth*newLeft/100;}};const handleMouseUp=()=>{document.removeEventListener(\"mousemove\",handleMouseMove);document.removeEventListener(\"mouseup\",handleMouseUp);// Re-enable smooth scrolling after drag\nif(containerRef.current){containerRef.current.style.scrollBehavior=\"smooth\";}};document.addEventListener(\"mousemove\",handleMouseMove);document.addEventListener(\"mouseup\",handleMouseUp);},onTouchStart:e=>{e.preventDefault()// Prevent scrolling while dragging\n;if(containerRef.current){containerRef.current.style.scrollBehavior=\"auto\";}const startX=e.touches[0].clientX;const startLeft=parseFloat(thumbRef.current.style.left||\"0\");const trackWidth=trackRef.current.offsetWidth;const thumbWidth=thumbRef.current.offsetWidth;const maxLeft=trackWidth-thumbWidth;const handleTouchMove=e=>{const deltaX=e.touches[0].clientX-startX;const newLeft=Math.max(0,Math.min(startLeft+deltaX/trackWidth*100,maxLeft/trackWidth*100));thumbRef.current.style.left=`${newLeft}%`;// Update scroll position\nif(containerRef.current){const scrollWidth=containerRef.current.scrollWidth-containerRef.current.offsetWidth;containerRef.current.scrollLeft=scrollWidth*newLeft/100;}};const handleTouchEnd=()=>{document.removeEventListener(\"touchmove\",handleTouchMove);document.removeEventListener(\"touchend\",handleTouchEnd);// Re-enable smooth scrolling after drag\nif(containerRef.current){containerRef.current.style.scrollBehavior=\"smooth\";}};document.addEventListener(\"touchmove\",handleTouchMove);document.addEventListener(\"touchend\",handleTouchEnd);},style:{...scrollThumbStyles,position:\"absolute\",left:\"0%\",touchAction:\"none\",userSelect:\"none\",cursor:\"grab\"},children:/*#__PURE__*/_jsx(IconChevronsLeftRight,{size:24})})]});};/**\n * These annotations control how your component sizes\n * Learn more: https://www.framer.com/developers/#code-components-auto-sizing\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */// ================================================================\n// Carousel Component\n// ----------------------------------------------------------------\n// Uses a list of items profided in the Framer UI\n// Clicking on a item controls the video playback\n// ================================================================\nexport default function VideoCarouselV3(props){const containerRef=useRef(null);const isMobile=useContainerQuery(width=>width<810,containerRef);const isTablet=useContainerQuery(width=>width<1199,containerRef);const isLargeDesktop=useContainerQuery(width=>width>1400,containerRef);const videoRef=useRef(null);const videoContainerRef=useRef(null);const carouselItemsContainerRef=useRef(null);const[activeItemTitle,setActiveItemTitle]=useState(null);const[isPaused,setIsPaused]=useState(false);const[isInView,setIsInView]=useState(false);const[progress,setProgress]=useState(0);const progressTimeoutRef=useRef(null);const pad=(num,size)=>{num=num.toString();while(num.length<size)num=\"0\"+num;return num;};const togglePause=()=>{if(videoRef.current){if(videoRef.current.paused){setIsPaused(false);videoRef.current.play();}else{setIsPaused(true);videoRef.current.pause();}}};const jumpTo=time=>{if(videoRef.current){videoRef.current.currentTime=time===0?.01:time;}};const onTimeUpdate=()=>{const currentTime=videoRef.current?.currentTime;if(!currentTime)return;let closestItem=null;// Loop through the items to find the closest time less than or equal to current time\nprops.items.forEach(item=>{if(currentTime>=item.slideStartTime&&(closestItem==null||item.slideStartTime>closestItem.slideStartTime)){closestItem=item;}});// If we're at the end of the video, clear the active item\nif(videoRef.current&&currentTime>=videoRef.current.duration-.1){setActiveItemTitle(null);if(carouselItemsContainerRef.current){carouselItemsContainerRef.current.scrollLeft=0;}return;}if(closestItem){setActiveItemTitle(closestItem.title);}else{// If no item is active (before first slide start time), clear active item\nsetActiveItemTitle(null);}};const scrollToActiveItem=title=>{if(!carouselItemsContainerRef.current)return;const items=carouselItemsContainerRef.current.children;const activeItem=Array.from(items).find(item=>item.getAttribute(\"data-title\")===title);if(activeItem){const containerWidth=carouselItemsContainerRef.current.offsetWidth;const itemLeft=activeItem.offsetLeft;const itemWidth=activeItem.offsetWidth;const newScrollPosition=itemLeft-(containerWidth-itemWidth)/2;carouselItemsContainerRef.current.scrollLeft=newScrollPosition;}};// Effect to update scroll position when active item changes\nuseEffect(()=>{if(activeItemTitle){scrollToActiveItem(activeItemTitle);}},[activeItemTitle]);useEffect(()=>{if(!videoRef.current||!videoContainerRef.current)return;const observer=new IntersectionObserver(([entry])=>{setIsInView(entry.isIntersecting);if(entry.isIntersecting){videoRef.current?.play();}else{videoRef.current?.pause();}},{threshold:.5});observer.observe(videoContainerRef.current);return()=>{observer.disconnect();};},[]);useEffect(()=>{if(videoRef.current){videoRef.current.playbackRate=.8;// Only autoplay if in view\nif(isInView){videoRef.current.play();}}},[isInView]);// Function to update progress for an item\nconst updateProgress=(item,nextItem)=>{if(!videoRef.current)return;// Calculate duration based on whether there's a next item or not\nconst duration=nextItem?nextItem.slideStartTime-item.slideStartTime:videoRef.current.duration-item.slideStartTime;const updateInterval=50// Update every 50ms for smooth animation\n;const totalSteps=duration*1e3/updateInterval// Convert duration to milliseconds\n;const incrementPerStep=100/totalSteps;const updateStep=()=>{if(!videoRef.current?.paused){setProgress(prevProgress=>{const newProgress=Math.min(prevProgress+incrementPerStep,100);if(newProgress<100){progressTimeoutRef.current=setTimeout(updateStep,updateInterval);}return newProgress;});}};// Clear any existing timeout\nif(progressTimeoutRef.current){clearTimeout(progressTimeoutRef.current);}// Start the progress update\nupdateStep();};// Update progress when active item changes\nuseEffect(()=>{if(!activeItemTitle||!videoRef.current)return;const currentItem=props.items.find(item=>item.title===activeItemTitle);const currentIndex=props.items.findIndex(item=>item.title===activeItemTitle);const nextItem=props.items[currentIndex+1];if(currentItem){setProgress(0)// Reset progress\n;updateProgress(currentItem,nextItem);}return()=>{if(progressTimeoutRef.current){clearTimeout(progressTimeoutRef.current);}};},[activeItemTitle,props.items]);// Reset progress when video loops\nuseEffect(()=>{if(!videoRef.current)return;const handleVideoEnded=()=>{setProgress(0);};videoRef.current.addEventListener(\"ended\",handleVideoEnded);return()=>{videoRef.current?.removeEventListener(\"ended\",handleVideoEnded);};},[]);// ----------------------------------------------------------------\n// The \"Stylesheet\"\n// ----------------------------------------------------------------\nconst carouselLayoutStyles={display:\"flex\",flexDirection:\"column\",width:\"100%\",maxWidth:\"1800px\",minHeight:isMobile?\"600px\":\"880px\",overflow:\"hidden\",backgroundColor:props.background};const sectionHeaderStyles={display:\"flex\",flexDirection:\"column\",alignItems:\"center\",gap:\"8px\",paddingBottom:isMobile?\"28px\":isTablet?\"40px\":\"40px\"};const sectionSubtitleStyles={position:\"relative\",zIndex:10,margin:0,fontWeight:400,fontFamily:\"var(--framer-font-family, Geist Mono, monospace)\",fontSize:isMobile?\"16px\":isTablet?\"18px\":\"18px\",color:props.primaryColor,textTransform:\"uppercase\",letterSpacing:\"0.02em\"};const sectionTitleStack={display:\"flex\",flexDirection:\"column\",alignItems:\"center\"};const sectionTitleStyles={position:\"relative\",zIndex:10,width:\"100%\",maxWidth:\"960px\",paddingBottom:\"24px\",margin:0,fontWeight:300,fontFamily:\"var(--framer-font-family, Geist, Inter Placeholder, sans-serif)\",fontSize:isMobile?\"48px\":isTablet?\"72px\":\"80px\",lineHeight:1,textAlign:\"center\",color:props.textColor};const sectionChipStyles={position:\"relative\",zIndex:10,display:\"inline-flex\",alignItems:\"center\",justifyContent:\"center\",flexShrink:0,flexGrow:0,height:\"48px\",paddingLeft:\"24px\",paddingRight:\"24px\",backgroundColor:props.background,borderRadius:\"24px\",border:\"1px solid #ccc\",fontWeight:300,fontFamily:\"var(--framer-font-family, Geist, Inter Placeholder, sans-serif)\",fontSize:isMobile?\"16px\":isTablet?\"18px\":\"18px\",color:props.textColor,opacity:.8};const scrollTrackStyles={position:\"relative\",width:\"100%\",height:\"32px\",marginBottom:\"24px\"};const scrollTrackBgStyles={position:\"absolute\",height:\"1px\",width:\"100%\",top:\"50%\",left:\"0\",backgroundColor:props.textColor};const scrollThumbStyles={position:\"absolute\",top:\"0\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",width:\"32px\",height:\"32px\",borderRadius:\"50%\",backgroundColor:props.textColor,cursor:\"grab\",transition:\"none\",transform:\"none\"};const carouselItemsContainerStyles={position:\"relative\",zIndex:2,display:\"flex\",gap:isMobile?\"24px\":\"48px\",alignItems:\"start\",paddingBottom:\"40px\",backgroundImage:isMobile?\"linear-gradient(to top, var(--tw-gradient-stops))\":\"none\",backgroundColor:\"transparent\",overflowX:\"hidden\",overflowY:\"hidden\",scrollBehavior:\"smooth\",minWidth:\"100%\"};const carouselItemStyles={position:\"relative\",alignItems:\"center\",display:\"flex\",flexGrow:0,flexShrink:0,gap:\"8px\",height:\"min-content\",width:isMobile?\"320px\":isTablet?\"380px\":\"380px\",transition:\"all ease-in-out 300ms\",opacity:.4,cursor:\"pointer\"};const carouselItemStylesActive={display:\"flex\",opacity:1};const carouselItemStylesHover={display:\"flex\",scale:\"1\",opacity:1};const carouselItemNumberContainerStyles={display:\"flex\",gap:\"16px\",alignItems:\"center\"};const carouselItemNumberStyles={fontFamily:\"var(--framer-font-family, Geist, sans-serif)\",fontSize:\"18px\",fontWeight:400,color:props.textColor,opacity:.5};const carouselItemNumberStylesActive={opacity:1,color:props.primaryColor};const carouselItemNumberStylesHover={opacity:1,color:props.primaryColor};const carouselItemBodyStyles={display:\"flex\",flexDirection:\"column\",width:\"100%\",gap:\"4px\"};const carouselItemTitleStyles={paddingTop:\"12px\",fontFamily:\"var(--framer-font-family, Geist, sans-serif)\",fontSize:\"20px\",fontWeight:400,color:props.textColor};const carouselItemSummaryStyles={position:\"relative\",width:\"100%\",margin:0,fontFamily:\"var(--framer-font-family, Geist, sans-serif)\",fontWeight:400,color:props.textColor,fontSize:\"16px\",lineHeight:\"1.4\"};const progressBarContainerStyles={position:\"relative\",width:\"40px\",height:\"6px\",backgroundColor:\"rgba(0, 0, 0, 0.1)\",borderRadius:\"3px\",overflow:\"hidden\"};const progressBarFillStyles={position:\"absolute\",top:0,left:0,height:\"100%\",backgroundColor:props.textColor,transition:\"width 0.1s linear\"};const carouselVideoContainerStyles={position:\"relative\",width:\"100%\",backgroundColor:\"#fafafa\"};const carouselVideoStyles={width:\"100%\",height:isMobile?\"320px\":isTablet?\"720px\":\"960px\",objectFit:\"cover\",mixBlendMode:\"multiply\"};const carouselPlaybackStyles={position:\"absolute\",top:\"24px\",left:\"24px\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",height:\"48px\",width:\"48px\",paddingTop:\"2px\",backgroundColor:props.textColor,backdropFilter:\"blur(20px)\",borderRadius:\"100%\",zIndex:\"10\",cursor:\"pointer\"};const carouselPlaybackIconStyles={color:props.background};// ----------------------------------------------------------------\n// Render Dat Component\n// ----------------------------------------------------------------\nreturn /*#__PURE__*/_jsxs(\"div\",{ref:containerRef,style:carouselLayoutStyles,children:[/*#__PURE__*/_jsxs(\"div\",{style:sectionHeaderStyles,children:[/*#__PURE__*/_jsx(\"h3\",{style:sectionSubtitleStyles,children:props.headingSecondary}),/*#__PURE__*/_jsxs(\"div\",{style:sectionTitleStack,children:[/*#__PURE__*/_jsx(\"h2\",{style:sectionTitleStyles,children:props.headingPrimary}),/*#__PURE__*/_jsx(\"h4\",{style:sectionChipStyles,children:props.headingTertiary})]})]}),/*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\"},children:[/*#__PURE__*/_jsx(CustomScrollbar,{containerRef:carouselItemsContainerRef,scrollTrackStyles:scrollTrackStyles,scrollThumbStyles:scrollThumbStyles,scrollTrackBgStyles:scrollTrackBgStyles}),/*#__PURE__*/_jsx(\"div\",{ref:carouselItemsContainerRef,style:carouselItemsContainerStyles,className:\"carousel-items-container\",children:props.items.map((item,idx)=>{return /*#__PURE__*/_jsx(\"div\",{style:{...carouselItemStyles,...activeItemTitle===item.title?carouselItemStylesActive:null},onClick:()=>{setProgress(0);jumpTo(item.slideStartTime);},\"data-title\":item.title,children:/*#__PURE__*/_jsxs(\"div\",{style:carouselItemBodyStyles,children:[/*#__PURE__*/_jsxs(\"div\",{style:carouselItemNumberContainerStyles,children:[/*#__PURE__*/_jsx(\"p\",{style:{...carouselItemNumberStyles,...activeItemTitle===item.title?carouselItemNumberStylesActive:null},children:pad(idx+1,2)}),/*#__PURE__*/_jsx(\"div\",{style:progressBarContainerStyles,children:/*#__PURE__*/_jsx(\"div\",{style:{...progressBarFillStyles,width:`${activeItemTitle===item.title?progress:0}%`}})})]}),/*#__PURE__*/_jsx(\"p\",{style:carouselItemTitleStyles,children:item.title}),/*#__PURE__*/_jsx(\"p\",{style:carouselItemSummaryStyles,children:item.summary})]})},`carousel-item-${idx}`);})})]}),/*#__PURE__*/_jsxs(\"div\",{style:carouselVideoContainerStyles,ref:videoContainerRef,children:[/*#__PURE__*/_jsx(\"div\",{style:carouselPlaybackStyles,children:/*#__PURE__*/_jsx(\"div\",{style:carouselPlaybackIconStyles,onClick:togglePause,children:isPaused?/*#__PURE__*/_jsx(IconPlay,{size:32}):/*#__PURE__*/_jsx(IconPause,{size:32})})}),/*#__PURE__*/_jsx(\"video\",{style:carouselVideoStyles,ref:videoRef,poster:props.videoPosterPath,onTimeUpdate:onTimeUpdate,controls:false,autoPlay:false,loop:true,muted:true,playsInline:true,children:/*#__PURE__*/_jsx(\"source\",{src:props.videoPath,type:\"video/mp4\"})})]})]});}// ================================================================\n// Property Controls\n// ----------------------------------------------------------------\n// The things you can control in the Framer UI\n// They are magically instantiated as props in the component\n// ================================================================\naddPropertyControls(VideoCarouselV3,{headingPrimary:{type:ControlType.String,defaultValue:\"Kilowatt-Scale Special Purpose Reactor\",placeholder:\"Type something\u2026\"},headingSecondary:{type:ControlType.String,defaultValue:\"\",placeholder:\"Type something\u2026\"},headingTertiary:{type:ControlType.String,defaultValue:\"\",placeholder:\"Type something\u2026\"},videoPath:{type:ControlType.File,allowedFileTypes:[\"mp4\"]},videoPosterPath:{type:ControlType.File,allowedFileTypes:[\"jpg\",\"png\"]},background:{type:ControlType.Color,defaultValue:\"#18181a\"},textColor:{type:ControlType.Color,defaultValue:\"#000000\"},primaryColor:{type:ControlType.Color,defaultValue:\"#000000\"},items:{title:\"Items\",type:ControlType.Array,control:{type:ControlType.Object,controls:{title:{type:ControlType.String,placeholder:\"Slide Item Title\"},summary:{type:ControlType.String,placeholder:\"Excepteur quis occaecat tempor ullamco duis sint enim. Velit elit ea et.\"},slideStartTime:{type:ControlType.Number,description:\"The time the video should skip to in seconds\",defaultValue:2}}},defaultValue:[{slideNumber:1,title:\"Velit elit ullamco\",summary:\"Excepteur quis occaecat tempor ullamco duis sint enim. Velit elit ea et.\",slideStartTime:1},{slideNumber:2,title:\"Tempor ullamco duis\",summary:\"Excepteur quis occaecat tempor ullamco duis sint enim. Velit elit ea et.\",slideStartTime:17}]}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"VideoCarouselV3\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VideoCarouselV3.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import Footer from\"#framer/local/canvasComponent/duRMmzcft/duRMmzcft.js\";import NavBarV2 from\"#framer/local/canvasComponent/hLLCCdk8F/hLLCCdk8F.js\";import Slideshow from\"#framer/local/canvasComponent/Mt5BFR8dy/Mt5BFR8dy.js\";import VideoCarouselV3 from\"#framer/local/codeFile/aTHbUcM/VideoCarouselV3.js\";import metadataProvider from\"#framer/local/webPageMetadata/cGsQbfefm/cGsQbfefm.js\";const SlideshowFonts=getFonts(Slideshow);const Slideshow1Fonts=getFonts(Slideshow1);const VideoCarouselV3Fonts=getFonts(VideoCarouselV3);const VideoFonts=getFonts(Video);const NavBarV2Fonts=getFonts(NavBarV2);const NavBarV2WithVariantAppearEffect=withVariantAppearEffect(NavBarV2);const FooterFonts=getFonts(Footer);const breakpoints={rtYH5Qv7G:\"(min-width: 810px) and (max-width: 1199px)\",ULdiumPUq:\"(min-width: 1200px)\",wcWzy42Ui:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-tdsNe\";const variantClassNames={rtYH5Qv7G:\"framer-v-dw1ge5\",ULdiumPUq:\"framer-v-1qfmys1\",wcWzy42Ui:\"framer-v-fdz5kl\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ULdiumPUq\",Phone:\"wcWzy42Ui\",Tablet:\"rtYH5Qv7G\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ULdiumPUq\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"g_MiJXJE9\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"wcWzy42Ui\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"wcWzy42Ui\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ULdiumPUq\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1qfmys1\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ngwsgi\",\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-99vdv9-container hidden-fdz5kl\",nodeId:\"y0bhTjBIL\",scopeId:\"cGsQbfefm\",children:/*#__PURE__*/_jsx(Slideshow,{height:\"100%\",id:\"y0bhTjBIL\",layoutId:\"y0bhTjBIL\",style:{height:\"100%\",width:\"100%\"},variant:\"eY_mYQFoS\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yn92ya\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Abundant energy from Earth to the asteroid belt.\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Abundant energy from Earth to the asteroid belt.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"80px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Abundant energy from Earth to the asteroid belt.\"})}),className:\"framer-1os0hio\",\"data-framer-name\":\"Abundant energy from Earth to the asteroid belt.\",fonts:[\"GF;Geist-300\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Fission microreactors to enable strategic energy for critical mission capabilities on earth, in space, and underwater.\"})}),className:\"framer-ys3mfj\",\"data-framer-name\":\"Abundant energy from Earth to the asteroid belt.\",fonts:[\"GF;Geist-300\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pey0cd-container hidden-1qfmys1 hidden-dw1ge5\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"vFjiJkIAl\",scopeId:\"cGsQbfefm\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:24,arrowPaddingLeft:0,arrowPaddingRight:16,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"vFjiJkIAl\",intervalControl:5,itemAmount:1,layoutId:\"vFjiJkIAl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:30,dotSize:6,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yhtlwu\",\"data-framer-name\":\"Slide 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:3e3,pixelWidth:3e3,sizes:\"390px\",src:\"https://framerusercontent.com/images/KXc86jzy0In9mt6utRdVzdnNxJ8.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/KXc86jzy0In9mt6utRdVzdnNxJ8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KXc86jzy0In9mt6utRdVzdnNxJ8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KXc86jzy0In9mt6utRdVzdnNxJ8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KXc86jzy0In9mt6utRdVzdnNxJ8.jpg 3000w\"},className:\"framer-slxbga\",\"data-framer-name\":\"BunkerClose\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14f2hzs\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k7jljc\",\"data-framer-name\":\"Slide 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:4096,pixelWidth:4096,sizes:\"390px\",src:\"https://framerusercontent.com/images/kiNXmDD5BbRBGJ6AjCVGGwkxg.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/kiNXmDD5BbRBGJ6AjCVGGwkxg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/kiNXmDD5BbRBGJ6AjCVGGwkxg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kiNXmDD5BbRBGJ6AjCVGGwkxg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kiNXmDD5BbRBGJ6AjCVGGwkxg.jpg 4096w\"},className:\"framer-e4e79m\",\"data-framer-name\":\"Underground\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s8d80g\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p6xeqs\",\"data-framer-name\":\"Slide 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:2880,pixelWidth:3840,sizes:\"390px\",src:\"https://framerusercontent.com/images/60dKlPSpth16kvSqYtFEzSL7BSs.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/60dKlPSpth16kvSqYtFEzSL7BSs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/60dKlPSpth16kvSqYtFEzSL7BSs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/60dKlPSpth16kvSqYtFEzSL7BSs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/60dKlPSpth16kvSqYtFEzSL7BSs.jpg 3840w\"},className:\"framer-1gmt8sw\",\"data-framer-name\":\"Base\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-emzdcf\",\"data-framer-name\":\"Overlay\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ijwm85\",\"data-framer-name\":\"Slide 4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,pixelHeight:2772,pixelWidth:3840,positionX:\"71.9%\",positionY:\"69.1%\",sizes:\"421px\",src:\"https://framerusercontent.com/images/04bKqfnv0ekQUnycOtBROTUnBA.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/04bKqfnv0ekQUnycOtBROTUnBA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/04bKqfnv0ekQUnycOtBROTUnBA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/04bKqfnv0ekQUnycOtBROTUnBA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/04bKqfnv0ekQUnycOtBROTUnBA.jpg 3840w\"},className:\"framer-1p2o3de\",\"data-framer-name\":\"Space\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jj2dzk\",\"data-framer-name\":\"Overlay\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{duration:0,type:\"tween\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uhvmyr\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a573bk-container\",isAuthoredByUser:true,nodeId:\"txwVhvefM\",scopeId:\"cGsQbfefm\",children:/*#__PURE__*/_jsx(VideoCarouselV3,{background:\"var(--token-c0e76dd3-e068-4ba4-be38-18ede7c0315b, rgb(255, 255, 255))\",headingPrimary:\"Kilowatt-Scale Special Purpose Reactor\",headingSecondary:\"R1 Microreactor\",headingTertiary:\"215 kWe for 3-5 years\",height:\"100%\",id:\"txwVhvefM\",items:[{slideStartTime:11,summary:\"Tungsten & B4C shielding ease upkeep. Cradle simplifies deployment with minimal gear.\",title:\"Integrated Shielding & Transport Cradle\"},{slideStartTime:21,summary:\"Graphite and boron carbide control drums with independent actuator motors, inspired by historical space reactor designs.\",title:\"Reactivity Controls\"},{slideStartTime:30,summary:\"TRISO coated particle fuel in prismatic graphite core.\",title:\"Core\"},{slideStartTime:38,summary:\"Sodium heat pipes enable redundant high temperature entirely passive heat transfer.\",title:\"Sodium Heat Pipes\"},{slideStartTime:44,summary:\"Fin and tube heat exchanger.\",title:\"Primary Heat Exchanger\"},{slideStartTime:53,summary:\"Simple recuperated N2 closed Brayton cycle enables efficient power conversion at < 300 psi. Low maintenance, low corrosion, leak resistant, and high reliability.\",title:\"Nitrogen Brayton Cycle\"},{slideStartTime:62,summary:\"Electricity is conditioned through a power management and distribution node which can flexibly deliver power and connect to local microgrids.\",title:\"Power Management & Distribution\"}],layoutId:\"txwVhvefM\",primaryColor:\"var(--token-784a91bb-df9e-4ac4-8996-37ce155ec391, rgb(225, 29, 72))\",style:{maxWidth:\"100%\",width:\"100%\"},textColor:\"var(--token-d32c885b-2527-429c-bfa2-edb1d4c47305, rgb(12, 10, 9))\",videoPath:\"https://framerusercontent.com/assets/O32n9yFxlPKXZczDSMNBNAsplY.mp4\",videoPosterPath:\"https://framerusercontent.com/assets/0iNfe3oqOvNJ1rLB8IENhiHzZ0.png\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c8pznc\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r4jtpq\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-61ryxi\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(225, 29, 72)\",\"--framer-text-transform\":\"uppercase\"},children:\"ENGINEERING\"})}),className:\"framer-q8tf2w\",\"data-framer-name\":\"Capabilities\",fonts:[\"GF;Geist Mono-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c0e76dd3-e068-4ba4-be38-18ede7c0315b, rgb(255, 255, 255))\"},children:\"Simple design optimized for reliability, uptime, and manufacturability\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"29px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c0e76dd3-e068-4ba4-be38-18ede7c0315b, rgb(255, 255, 255))\"},children:\"Simple design optimized for reliability, uptime, and manufacturability\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c0e76dd3-e068-4ba4-be38-18ede7c0315b, rgb(255, 255, 255))\"},children:\"Simple design optimized for reliability, uptime, and manufacturability\"})}),className:\"framer-1jvvk2i\",\"data-framer-name\":\"State of the art thermal management\",fonts:[\"GF;Geist-300\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-84cqv0-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mfvT6EPKc\",scopeId:\"cGsQbfefm\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mfvT6EPKc\",isMixedBorderRadius:false,layoutId:\"mfvT6EPKc\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/zYRp7cN2tMYgn6ia3LuAv8adMo0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{maxWidth:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-d9px6u\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n381k0\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cy1ukf\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(225, 29, 72)\",\"--framer-text-transform\":\"uppercase\"},children:\"Capabilities\"})}),className:\"framer-1ipx4wm\",\"data-framer-name\":\"Capabilities\",fonts:[\"GF;Geist Mono-500\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(12, 10, 9)\"},children:\"Vertically integrated supply chain\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(12, 10, 9)\"},children:\"Vertically integrated supply chain\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtMzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(12, 10, 9)\"},children:\"Vertically integrated supply chain\"})}),className:\"framer-h5m0m4\",\"data-framer-name\":\"Ready to deploy to your unique specifications\",fonts:[\"GF;Geist-300\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9949rb\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hb3awz\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2034+0+0+120+122+0+0+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg\",srcSet:\"https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg 3840w\"}},wcWzy42Ui:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2028+0+0+120+103+0+0+0+0),pixelHeight:3840,pixelWidth:3840,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1840px)`,src:\"https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg\",srcSet:\"https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2178+0+0+120+146+0+0+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg\",srcSet:\"https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XHkpjX57RRQeC1fzjoxFPlOKA.jpg 3840w\"},className:\"framer-1labx5h\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h9ign4\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c5i4tf\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-11qujm\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.12 8.5C18.8915 9.02684 20 9.77952 20 10.6152C20 12.2084 15.9706 13.5 11 13.5C6.02944 13.5 2 12.2084 2 10.6152C2 9.93186 2.74122 9.30402 3.98 8.80977\" stroke=\"#0075FF\" stroke-width=\"3\"/>\\n<path d=\"M17.12 15.5C18.8915 16.0268 20 16.7795 20 17.6152C20 19.2084 15.9706 20.5 11 20.5C6.02944 20.5 2 19.2084 2 17.6152C2 16.9319 2.74122 16.304 3.98 15.8098\" stroke=\"#0075FF\" stroke-width=\"3\"/>\\n<ellipse cx=\"11\" cy=\"4\" rx=\"9\" ry=\"2.5\" stroke=\"#0075FF\" stroke-width=\"3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Special Purpose Reactors\"})}),className:\"framer-11i3g5a\",\"data-framer-name\":\"Special Purpose Reactors\",fonts:[\"GF;Geist Mono-500\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"We specialize in designing and manufacturing adaptable and scaleable reactors for strategic energy applications, including space-based nuclear power and propulsion and energy resilience for mission-critical facilities.\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"We specialize in designing and manufacturing adaptable and scaleable reactors for strategic energy applications, including space-based nuclear power and propulsion and energy resilience for mission-critical facilities.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"We specialize in designing and manufacturing adaptable and scaleable reactors for strategic energy applications, including space-based nuclear power and propulsion and energy resilience for mission-critical facilities.\"})}),className:\"framer-1biwz08\",\"data-framer-name\":\"We specialize in designing and manufacturing adaptable and scaleable reactors for strategic energy applications, including space-based nuclear power and propulsion and energy resilience for mission-critical facilities.\",fonts:[\"GF;Geist-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2034+0+0+120+122+0+0+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg\",srcSet:\"https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg 3840w\"}},wcWzy42Ui:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2028+0+0+120+103+0+0+0+584),pixelHeight:3840,pixelWidth:3840,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1840px)`,src:\"https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg\",srcSet:\"https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2178+0+0+120+146+0+0+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg\",srcSet:\"https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vu1EJPc3JVHhPqI8vIpIE4KvIbs.jpg 3840w\"},className:\"framer-1c6igaa\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b1tkfb\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ien7w8\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1401rf6\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.5 1.5H9.5V20.5H1.5V1.5ZM12.5 1.5H20.5V20.5H12.5V1.5Z\" stroke=\"#FB923C\" stroke-width=\"3\"/>\\n<path d=\"M17 11H5\" stroke=\"#FB923C\" stroke-width=\"3\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Thermal Management\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Thermal Management\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Heat Pipes & Thermal Management\"})}),className:\"framer-1vmot0b\",\"data-framer-name\":\"Heat Pipes & Thermal Management\",fonts:[\"GF;Geist Mono-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"Our expertise encompasses designing and developing high-temperature heat pipes and radiators, ensuring compact high-temperature thermal management.\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"Our expertise encompasses designing and developing high-temperature heat pipes and radiators, ensuring compact high-temperature thermal management.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"Our expertise encompasses designing and developing high-temperature heat pipes and radiators, ensuring compact high-temperature thermal management.\"})}),className:\"framer-1n6979s\",\"data-framer-name\":\"We specialize in designing and manufacturing adaptable reactors for diverse applications, including space missions, mission-critical facilities.\",fonts:[\"GF;Geist-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j6tg7g\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2034+0+0+120+122+0+584+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg\",srcSet:\"https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg 3840w\"}},wcWzy42Ui:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2028+0+0+120+103+0+1168+0+0),pixelHeight:3840,pixelWidth:3840,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1840px)`,src:\"https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg\",srcSet:\"https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2178+0+0+120+146+0+819+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg\",srcSet:\"https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s1B5qgv10Z8WkyPSzjyq9G2fMU.jpg 3840w\"},className:\"framer-1tset7f\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-108mirg\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-si0s38\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ld4ew1\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hwr1co\",\"data-border\":true,\"data-framer-name\":\"O\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s54tn9\",\"data-framer-name\":\"O\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Control Systems\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Control Systems\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Control Systems\"})}),className:\"framer-1l27pvo\",\"data-framer-name\":\"Control Systems\",fonts:[\"GF;Geist Mono-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"Our team excels in design, build, and test of automated control systems, enabling hardware-in-the-loop digital twins.\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"Our team excels in design, build, and test of automated control systems, enabling hardware-in-the-loop digital twins.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"Our team excels in design, build, and test of automated control systems, enabling hardware-in-the-loop digital twins.\"})}),className:\"framer-nuiinw\",\"data-framer-name\":\"We specialize in designing and manufacturing adaptable reactors for diverse applications, including space missions, mission-critical facilities.\",fonts:[\"GF;Geist-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2034+0+0+120+122+0+584+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg\",srcSet:\"https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg 3840w\"}},wcWzy42Ui:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2028+0+0+120+103+0+1168+0+584),pixelHeight:3840,pixelWidth:3840,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1840px)`,src:\"https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg\",srcSet:\"https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2178+0+0+120+146+0+819+0),pixelHeight:3840,pixelWidth:3840,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 64px, 1840px) - 24px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg\",srcSet:\"https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Bx4Rcm3w1lTjQyeYxuWOvR1aFA.jpg 3840w\"},className:\"framer-1th88xx\",\"data-border\":true,\"data-framer-name\":\"Card\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bw5vkj\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1onh3hu\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qky4bs\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"0 0 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.9997 1C10.9997 1 12.4631 14.6582 20.9995 20.9995C14.1704 20.9995 5.14618 20.9995 1 20.9995C9.29248 15.7557 10.9997 1 10.9997 1Z\" fill=\"#E11D48\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Graphite Machining\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Graphite Machining\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QgTW9uby01MDA=\",\"--framer-font-family\":'\"Geist Mono\", monospace',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(12, 10, 9)\",\"--framer-text-transform\":\"uppercase\"},children:\"Graphite Machining\"})}),className:\"framer-jtoxny\",\"data-framer-name\":\"Graphite Machining\",fonts:[\"GF;Geist Mono-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"We precision machine nuclear grade graphite in house.\"})})},wcWzy42Ui:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"We precision machine nuclear grade graphite in house.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(87, 83, 78)\"},children:\"We precision machine nuclear grade graphite in house.\"})}),className:\"framer-158wdxs\",\"data-framer-name\":\"We specialize in designing and manufacturing adaptable reactors for diverse applications, including space missions, mission-critical facilities.\",fonts:[\"GF;Geist-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})})})]})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2dqj2i-container\",layoutScroll:true,nodeId:\"TdciMuiOo\",rendersWithMotion:true,scopeId:\"cGsQbfefm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wcWzy42Ui:{variant:\"HJnafgdQC\"}},children:/*#__PURE__*/_jsx(NavBarV2WithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"TdciMuiOo\",JSudu2uWE:\"Seb7n0Hmv\",layoutId:\"TdciMuiOo\",sN8lsAZV4:\"Seb7n0Hmv\",style:{width:\"100%\"},variant:\"aNTxa34cO\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jjcszy\",\"data-framer-name\":\"section-footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rtYH5Qv7G:{y:(componentViewport?.y||0)+0+3540+0+0},wcWzy42Ui:{y:(componentViewport?.y||0)+0+4683+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`min(${componentViewport?.width||\"100vw\"}, 1840px)`,y:(componentViewport?.y||0)+0+4178+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-138v1tv-container\",nodeId:\"LoHZtoJ0s\",scopeId:\"cGsQbfefm\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wcWzy42Ui:{variant:\"QRcAApoua\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"LoHZtoJ0s\",layoutId:\"LoHZtoJ0s\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"wmNeLB2A4\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tdsNe.framer-81fqma, .framer-tdsNe .framer-81fqma { display: block; }\",\".framer-tdsNe.framer-1qfmys1 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-tdsNe .framer-1ngwsgi { align-content: center; align-items: center; background-color: var(--token-d32c885b-2527-429c-bfa2-edb1d4c47305, #0c0a09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: flex-end; overflow: visible; padding: 180px 32px 80px 32px; position: relative; width: 100%; z-index: 1; }\",\".framer-tdsNe .framer-99vdv9-container, .framer-tdsNe .framer-1pey0cd-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tdsNe .framer-yn92ya { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 504px; justify-content: flex-end; max-width: 1840px; overflow: visible; padding: 280px 0px 0px 0px; pointer-events: none; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-tdsNe .framer-1os0hio { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 960px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tdsNe .framer-ys3mfj { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 696px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tdsNe .framer-yhtlwu, .framer-tdsNe .framer-1k7jljc, .framer-tdsNe .framer-1p6xeqs, .framer-tdsNe .framer-1ijwm85 { height: 696px; overflow: hidden; position: relative; width: 390px; }\",\".framer-tdsNe .framer-slxbga, .framer-tdsNe .framer-e4e79m, .framer-tdsNe .framer-1gmt8sw { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-tdsNe .framer-14f2hzs, .framer-tdsNe .framer-s8d80g, .framer-tdsNe .framer-emzdcf, .framer-tdsNe .framer-jj2dzk { background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 98.79469313063063%); bottom: 0px; flex: none; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tdsNe .framer-1p2o3de { bottom: 0px; flex: none; left: -31px; overflow: visible; position: absolute; right: 0px; top: -167px; }\",\".framer-tdsNe .framer-1uhvmyr { align-content: center; align-items: center; background-color: var(--token-c0e76dd3-e068-4ba4-be38-18ede7c0315b, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 40px 120px 40px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-1a573bk-container { flex: none; height: auto; max-width: 1840px; position: relative; width: 100%; z-index: 1; }\",\".framer-tdsNe .framer-1c8pznc { align-content: center; align-items: center; background-color: var(--token-d32c885b-2527-429c-bfa2-edb1d4c47305, #0c0a09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-r4jtpq { --border-bottom-width: 1px; --border-color: #e7e5e4; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-d32c885b-2527-429c-bfa2-edb1d4c47305, #0c0a09); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1840px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-61ryxi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-q8tf2w, .framer-tdsNe .framer-1biwz08, .framer-tdsNe .framer-1n6979s, .framer-tdsNe .framer-nuiinw, .framer-tdsNe .framer-158wdxs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tdsNe .framer-1jvvk2i { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1200px; word-break: break-word; word-wrap: break-word; }\",\".framer-tdsNe .framer-84cqv0-container { flex: none; height: auto; max-width: 80%; position: relative; width: 100%; }\",\".framer-tdsNe .framer-d9px6u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-n381k0 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1840px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-tdsNe .framer-1cy1ukf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-1ipx4wm { --framer-paragraph-spacing: 0px; flex: none; height: 18px; position: relative; white-space: pre-wrap; width: 486px; word-break: break-word; word-wrap: break-word; }\",\".framer-tdsNe .framer-h5m0m4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-tdsNe .framer-9949rb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-1hb3awz, .framer-tdsNe .framer-1j6tg7g { 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: 100%; }\",\".framer-tdsNe .framer-1labx5h, .framer-tdsNe .framer-1tset7f { --border-bottom-width: 1px; --border-color: var(--token-6097c758-9053-4f39-9a9a-58ec97c542dc, #e7e5e4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(12px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(12px); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 795px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tdsNe .framer-1h9ign4, .framer-tdsNe .framer-b1tkfb, .framer-tdsNe .framer-108mirg, .framer-tdsNe .framer-1bw5vkj { -webkit-backdrop-filter: blur(12px); align-content: center; align-items: center; backdrop-filter: blur(12px); background-color: rgba(255, 255, 255, 0.4); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 0; }\",\".framer-tdsNe .framer-1c5i4tf, .framer-tdsNe .framer-ien7w8, .framer-tdsNe .framer-si0s38, .framer-tdsNe .framer-1onh3hu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 16px 0px; position: relative; width: 100%; }\",\".framer-tdsNe .framer-11qujm, .framer-tdsNe .framer-1401rf6, .framer-tdsNe .framer-qky4bs { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-tdsNe .framer-11i3g5a, .framer-tdsNe .framer-1vmot0b, .framer-tdsNe .framer-1l27pvo, .framer-tdsNe .framer-jtoxny { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-tdsNe .framer-1c6igaa, .framer-tdsNe .framer-1th88xx { --border-bottom-width: 1px; --border-color: var(--token-6097c758-9053-4f39-9a9a-58ec97c542dc, #e7e5e4); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(12px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(12px); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 795px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-tdsNe .framer-1ld4ew1 { flex: none; height: 22px; overflow: visible; position: relative; width: 22px; }\",\".framer-tdsNe .framer-1hwr1co { --border-bottom-width: 3px; --border-color: #40c800; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 18px; left: calc(50% - 18px / 2); position: absolute; top: calc(50% - 18px / 2); width: 18px; }\",\".framer-tdsNe .framer-1s54tn9 { background-color: #40c800; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 8px; left: calc(50% - 8px / 2); position: absolute; top: calc(50% - 8px / 2); width: 8px; }\",\".framer-tdsNe .framer-2dqj2i-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 5; }\",\".framer-tdsNe .framer-jjcszy { align-content: center; align-items: center; background-color: var(--token-d32c885b-2527-429c-bfa2-edb1d4c47305, #0c0a09); 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-tdsNe .framer-138v1tv-container { flex: none; height: auto; max-width: 1840px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tdsNe.framer-1qfmys1, .framer-tdsNe .framer-1ngwsgi, .framer-tdsNe .framer-yn92ya, .framer-tdsNe .framer-1uhvmyr, .framer-tdsNe .framer-1c8pznc, .framer-tdsNe .framer-r4jtpq, .framer-tdsNe .framer-61ryxi, .framer-tdsNe .framer-d9px6u, .framer-tdsNe .framer-n381k0, .framer-tdsNe .framer-1cy1ukf, .framer-tdsNe .framer-9949rb, .framer-tdsNe .framer-1hb3awz, .framer-tdsNe .framer-1labx5h, .framer-tdsNe .framer-1h9ign4, .framer-tdsNe .framer-1c5i4tf, .framer-tdsNe .framer-1c6igaa, .framer-tdsNe .framer-b1tkfb, .framer-tdsNe .framer-ien7w8, .framer-tdsNe .framer-1j6tg7g, .framer-tdsNe .framer-1tset7f, .framer-tdsNe .framer-108mirg, .framer-tdsNe .framer-si0s38, .framer-tdsNe .framer-1th88xx, .framer-tdsNe .framer-1bw5vkj, .framer-tdsNe .framer-1onh3hu, .framer-tdsNe .framer-jjcszy { gap: 0px; } .framer-tdsNe.framer-1qfmys1 > *, .framer-tdsNe .framer-1ngwsgi > *, .framer-tdsNe .framer-1uhvmyr > *, .framer-tdsNe .framer-1c8pznc > *, .framer-tdsNe .framer-d9px6u > *, .framer-tdsNe .framer-1labx5h > *, .framer-tdsNe .framer-1h9ign4 > *, .framer-tdsNe .framer-1c6igaa > *, .framer-tdsNe .framer-b1tkfb > *, .framer-tdsNe .framer-1tset7f > *, .framer-tdsNe .framer-108mirg > *, .framer-tdsNe .framer-1th88xx > *, .framer-tdsNe .framer-1bw5vkj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tdsNe.framer-1qfmys1 > :first-child, .framer-tdsNe .framer-1ngwsgi > :first-child, .framer-tdsNe .framer-yn92ya > :first-child, .framer-tdsNe .framer-1uhvmyr > :first-child, .framer-tdsNe .framer-1c8pznc > :first-child, .framer-tdsNe .framer-r4jtpq > :first-child, .framer-tdsNe .framer-61ryxi > :first-child, .framer-tdsNe .framer-d9px6u > :first-child, .framer-tdsNe .framer-n381k0 > :first-child, .framer-tdsNe .framer-1cy1ukf > :first-child, .framer-tdsNe .framer-9949rb > :first-child, .framer-tdsNe .framer-1labx5h > :first-child, .framer-tdsNe .framer-1h9ign4 > :first-child, .framer-tdsNe .framer-1c6igaa > :first-child, .framer-tdsNe .framer-b1tkfb > :first-child, .framer-tdsNe .framer-1tset7f > :first-child, .framer-tdsNe .framer-108mirg > :first-child, .framer-tdsNe .framer-1th88xx > :first-child, .framer-tdsNe .framer-1bw5vkj > :first-child, .framer-tdsNe .framer-jjcszy > :first-child { margin-top: 0px; } .framer-tdsNe.framer-1qfmys1 > :last-child, .framer-tdsNe .framer-1ngwsgi > :last-child, .framer-tdsNe .framer-yn92ya > :last-child, .framer-tdsNe .framer-1uhvmyr > :last-child, .framer-tdsNe .framer-1c8pznc > :last-child, .framer-tdsNe .framer-r4jtpq > :last-child, .framer-tdsNe .framer-61ryxi > :last-child, .framer-tdsNe .framer-d9px6u > :last-child, .framer-tdsNe .framer-n381k0 > :last-child, .framer-tdsNe .framer-1cy1ukf > :last-child, .framer-tdsNe .framer-9949rb > :last-child, .framer-tdsNe .framer-1labx5h > :last-child, .framer-tdsNe .framer-1h9ign4 > :last-child, .framer-tdsNe .framer-1c6igaa > :last-child, .framer-tdsNe .framer-b1tkfb > :last-child, .framer-tdsNe .framer-1tset7f > :last-child, .framer-tdsNe .framer-108mirg > :last-child, .framer-tdsNe .framer-1th88xx > :last-child, .framer-tdsNe .framer-1bw5vkj > :last-child, .framer-tdsNe .framer-jjcszy > :last-child { margin-bottom: 0px; } .framer-tdsNe .framer-yn92ya > *, .framer-tdsNe .framer-9949rb > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tdsNe .framer-r4jtpq > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-tdsNe .framer-61ryxi > *, .framer-tdsNe .framer-n381k0 > *, .framer-tdsNe .framer-1cy1ukf > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-tdsNe .framer-1hb3awz > *, .framer-tdsNe .framer-1j6tg7g > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-tdsNe .framer-1hb3awz > :first-child, .framer-tdsNe .framer-1c5i4tf > :first-child, .framer-tdsNe .framer-ien7w8 > :first-child, .framer-tdsNe .framer-1j6tg7g > :first-child, .framer-tdsNe .framer-si0s38 > :first-child, .framer-tdsNe .framer-1onh3hu > :first-child { margin-left: 0px; } .framer-tdsNe .framer-1hb3awz > :last-child, .framer-tdsNe .framer-1c5i4tf > :last-child, .framer-tdsNe .framer-ien7w8 > :last-child, .framer-tdsNe .framer-1j6tg7g > :last-child, .framer-tdsNe .framer-si0s38 > :last-child, .framer-tdsNe .framer-1onh3hu > :last-child { margin-right: 0px; } .framer-tdsNe .framer-1c5i4tf > *, .framer-tdsNe .framer-ien7w8 > *, .framer-tdsNe .framer-si0s38 > *, .framer-tdsNe .framer-1onh3hu > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-tdsNe .framer-jjcszy > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-tdsNe[data-border=\"true\"]::after, .framer-tdsNe [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: 1199px) { .framer-tdsNe.framer-1qfmys1 { width: 810px; } .framer-tdsNe .framer-1jvvk2i { width: 100%; } .framer-tdsNe .framer-84cqv0-container { max-width: 100%; } .framer-tdsNe .framer-d9px6u { padding: 0px 24px 0px 24px; } .framer-tdsNe .framer-1labx5h, .framer-tdsNe .framer-1c6igaa, .framer-tdsNe .framer-1tset7f, .framer-tdsNe .framer-1th88xx { height: 560px; }}\",\"@media (max-width: 809px) { .framer-tdsNe.framer-1qfmys1 { width: 390px; } .framer-tdsNe .framer-1ngwsgi { height: 90vh; padding: 180px 16px 80px 16px; } .framer-tdsNe .framer-yn92ya { justify-content: flex-start; order: 1; z-index: 2; } .framer-tdsNe .framer-1pey0cd-container, .framer-tdsNe .framer-1a573bk-container { order: 0; } .framer-tdsNe .framer-1uhvmyr { padding: 120px 20px 120px 20px; } .framer-tdsNe .framer-1c8pznc, .framer-tdsNe .framer-d9px6u { padding: 0px 16px 0px 16px; } .framer-tdsNe .framer-r4jtpq { padding: 80px 0px 120px 0px; } .framer-tdsNe .framer-1jvvk2i { width: 100%; } .framer-tdsNe .framer-84cqv0-container { max-width: 100%; } .framer-tdsNe .framer-1cy1ukf { align-content: flex-start; align-items: flex-start; height: 87px; } .framer-tdsNe .framer-1ipx4wm { flex: 1 0 0px; height: 1px; width: 100%; } .framer-tdsNe .framer-h5m0m4 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-tdsNe .framer-1hb3awz, .framer-tdsNe .framer-1j6tg7g { flex-direction: column; } .framer-tdsNe .framer-1labx5h, .framer-tdsNe .framer-1tset7f { flex: none; height: 560px; width: 100%; } .framer-tdsNe .framer-1c6igaa, .framer-tdsNe .framer-1th88xx { flex: none; height: 560px; justify-content: flex-start; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-tdsNe .framer-1hb3awz, .framer-tdsNe .framer-1j6tg7g { gap: 0px; } .framer-tdsNe .framer-1hb3awz > *, .framer-tdsNe .framer-1j6tg7g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-tdsNe .framer-1hb3awz > :first-child, .framer-tdsNe .framer-1j6tg7g > :first-child { margin-top: 0px; } .framer-tdsNe .framer-1hb3awz > :last-child, .framer-tdsNe .framer-1j6tg7g > :last-child { margin-bottom: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6064.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rtYH5Qv7G\":{\"layout\":[\"fixed\",\"auto\"]},\"wcWzy42Ui\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"g_MiJXJE9\":{\"pattern\":\":g_MiJXJE9\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramercGsQbfefm=withCSS(Component,css,\"framer-tdsNe\");export default FramercGsQbfefm;FramercGsQbfefm.displayName=\"Home\";FramercGsQbfefm.defaultProps={height:6064.5,width:1200};addFonts(FramercGsQbfefm,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RwuM4mJPby1QNtA.woff2\",weight:\"300\"},{family:\"Geist Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geistmono/v1/or3yQ6H-1_WfwkMZI_qYPLs1a-t7PU0AbeEPKJ5W7ihaO_CS.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]},...SlideshowFonts,...Slideshow1Fonts,...VideoCarouselV3Fonts,...VideoFonts,...NavBarV2Fonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercGsQbfefm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"6064.5\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rtYH5Qv7G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wcWzy42Ui\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"g_MiJXJE9\\\":{\\\"pattern\\\":\\\":g_MiJXJE9\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerContractVersion\":\"1\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "6oBAEiP,IAAMA,GAAU,CAAC,CAAC,KAAAC,CAAI,IAAyBC,EAAK,MAAM,CAAC,MAAM,CAAC,OAAOD,EAAK,MAAMA,CAAI,EAAE,QAAQ,YAAY,KAAK,OAAO,SAAsBC,EAAK,OAAO,CAAC,EAAE,yIAAyI,OAAO,eAAe,eAAe,KAAK,CAAC,CAAC,CAAC,EAAUC,GAAS,CAAC,CAAC,KAAAF,CAAI,IAAyBG,EAAM,MAAM,CAAC,MAAM,CAAC,OAAOH,EAAK,MAAMA,CAAI,EAAE,QAAQ,YAAY,KAAK,OAAO,SAAS,CAAcC,EAAK,OAAO,CAAC,EAAE,oHAAoH,OAAO,eAAe,eAAe,KAAK,CAAC,EAAeA,EAAK,OAAO,CAAC,EAAE,uBAAuB,OAAO,eAAe,eAAe,KAAK,CAAC,CAAC,CAAC,CAAC,EAAUG,GAAsB,CAAC,CAAC,KAAAJ,CAAI,IAAyBC,EAAK,MAAM,CAAC,MAAM,CAAC,OAAOD,EAAK,MAAMA,CAAI,EAAE,QAAQ,YAAY,KAAK,OAAO,SAAsBC,EAAK,OAAO,CAAC,EAAE,mGAAmG,OAAO,QAAQ,iBAAiB,QAAQ,kBAAkB,OAAO,CAAC,CAAC,CAAC,EAAUI,GAAgB,CAAC,CAAC,aAAAC,EAAa,kBAAAC,EAAkB,kBAAAC,EAAkB,oBAAAC,CAAmB,IAAI,CAAC,IAAMC,EAASC,EAAO,IAAI,EAAQC,EAASD,EAAO,IAAI,EAC79C,OAAAE,EAAU,IAAI,CAAC,GAAG,CAACP,EAAa,SAAS,CAACI,EAAS,SAAS,CAACE,EAAS,QAAQ,OAAO,IAAME,EAAUR,EAAa,QAAcS,EAAoB,IAAI,CAAC,IAAMC,EAAMJ,EAAS,QAAcK,EAAWP,EAAS,QAAQ,YAAkBQ,EAAWF,EAAM,YAAkBG,EAAQF,EAAWC,EAAiBE,EAAcN,EAAU,YAAYA,EAAU,YAAYA,EAAU,aAAmBO,EAAWF,EAAQF,EAAW,IAAUK,EAAmB,KAAK,IAAIF,EAAc,IAAIC,CAAU,EAAE,QAAQ,IAAI,2BAA2B,CAAC,WAAWP,EAAU,WAAW,YAAYA,EAAU,YAAY,YAAYA,EAAU,YAAY,cAAAM,EAAc,WAAAC,EAAW,mBAAAC,EAAmB,YAAYN,EAAM,MAAM,KAAK,QAAQ,GAAGM,IAAqB,CAAC,EAAEN,EAAM,MAAM,KAAK,GAAGM,KAAsBN,EAAM,MAAM,UAAU,MAAO,EACzyB,OAAAD,EAAoB,EACpBD,EAAU,iBAAiB,SAASC,CAAmB,EAAQ,IAAID,EAAU,oBAAoB,SAASC,CAAmB,CAAE,EAAE,CAACT,CAAY,CAAC,EAAsBH,EAAM,MAAM,CAAC,UAAU,eAAe,IAAIO,EAAS,MAAMH,EAAkB,SAAS,CAAcN,EAAK,MAAM,CAAC,MAAMQ,CAAmB,CAAC,EAAeR,EAAK,MAAM,CAAC,IAAIW,EAAS,YAAYW,GAAG,CACjWjB,EAAa,UAASA,EAAa,QAAQ,MAAM,eAAe,QAAQ,IAAMkB,EAAOD,EAAE,QAAcE,EAAU,WAAWb,EAAS,QAAQ,MAAM,MAAM,GAAG,EAAQK,EAAWP,EAAS,QAAQ,YAAkBQ,EAAWN,EAAS,QAAQ,YAAkBO,EAAQF,EAAWC,EAAiBQ,EAAgBH,GAAG,CAAC,IAAMI,EAAOJ,EAAE,QAAQC,EAAaI,EAAQ,KAAK,IAAI,EAAE,KAAK,IAAIH,EAAUE,EAAOV,EAAW,IAAIE,EAAQF,EAAW,GAAG,CAAC,EAChb,GADkbL,EAAS,QAAQ,MAAM,KAAK,GAAGgB,KAC9ctB,EAAa,QAAQ,CAAC,IAAMuB,EAAYvB,EAAa,QAAQ,YAAYA,EAAa,QAAQ,YAAYA,EAAa,QAAQ,WAAWuB,EAAYD,EAAQ,IAAK,EAAQE,EAAc,IAAI,CAAC,SAAS,oBAAoB,YAAYJ,CAAe,EAAE,SAAS,oBAAoB,UAAUI,CAAa,EAC5SxB,EAAa,UAASA,EAAa,QAAQ,MAAM,eAAe,SAAU,EAAE,SAAS,iBAAiB,YAAYoB,CAAe,EAAE,SAAS,iBAAiB,UAAUI,CAAa,CAAE,EAAE,aAAaP,GAAG,CAACA,EAAE,eAAe,EACzNjB,EAAa,UAASA,EAAa,QAAQ,MAAM,eAAe,QAAQ,IAAMkB,EAAOD,EAAE,QAAQ,CAAC,EAAE,QAAcE,EAAU,WAAWb,EAAS,QAAQ,MAAM,MAAM,GAAG,EAAQK,EAAWP,EAAS,QAAQ,YAAkBQ,EAAWN,EAAS,QAAQ,YAAkBO,EAAQF,EAAWC,EAAiBa,EAAgBR,GAAG,CAAC,IAAMI,EAAOJ,EAAE,QAAQ,CAAC,EAAE,QAAQC,EAAaI,EAAQ,KAAK,IAAI,EAAE,KAAK,IAAIH,EAAUE,EAAOV,EAAW,IAAIE,EAAQF,EAAW,GAAG,CAAC,EACvc,GADycL,EAAS,QAAQ,MAAM,KAAK,GAAGgB,KACretB,EAAa,QAAQ,CAAC,IAAMuB,EAAYvB,EAAa,QAAQ,YAAYA,EAAa,QAAQ,YAAYA,EAAa,QAAQ,WAAWuB,EAAYD,EAAQ,IAAK,EAAQI,EAAe,IAAI,CAAC,SAAS,oBAAoB,YAAYD,CAAe,EAAE,SAAS,oBAAoB,WAAWC,CAAc,EAC/S1B,EAAa,UAASA,EAAa,QAAQ,MAAM,eAAe,SAAU,EAAE,SAAS,iBAAiB,YAAYyB,CAAe,EAAE,SAAS,iBAAiB,WAAWC,CAAc,CAAE,EAAE,MAAM,CAAC,GAAGxB,EAAkB,SAAS,WAAW,KAAK,KAAK,YAAY,OAAO,WAAW,OAAO,OAAO,MAAM,EAAE,SAAsBP,EAAKG,GAAsB,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,EAY7V,SAAR6B,EAAiCC,EAAM,CAAC,IAAM5B,EAAaK,EAAO,IAAI,EAAQwB,EAASC,EAAkBC,GAAOA,EAAM,IAAI/B,CAAY,EAAQgC,EAASF,EAAkBC,GAAOA,EAAM,KAAK/B,CAAY,EAAQiC,EAAeH,EAAkBC,GAAOA,EAAM,KAAK/B,CAAY,EAAQkC,EAAS7B,EAAO,IAAI,EAAQ8B,EAAkB9B,EAAO,IAAI,EAAQ+B,EAA0B/B,EAAO,IAAI,EAAO,CAACgC,EAAgBC,CAAkB,EAAEC,EAAS,IAAI,EAAO,CAACC,EAASC,CAAW,EAAEF,EAAS,EAAK,EAAO,CAACG,EAASC,CAAW,EAAEJ,EAAS,EAAK,EAAO,CAACK,EAASC,CAAW,EAAEN,EAAS,CAAC,EAAQO,EAAmBzC,EAAO,IAAI,EAAQ0C,EAAI,CAACC,EAAItD,IAAO,CAAoB,IAAnBsD,EAAIA,EAAI,SAAS,EAAQA,EAAI,OAAOtD,GAAKsD,EAAI,IAAIA,EAAI,OAAOA,CAAI,EAAQC,EAAY,IAAI,CAAIf,EAAS,UAAYA,EAAS,QAAQ,QAAQO,EAAY,EAAK,EAAEP,EAAS,QAAQ,KAAK,IAAQO,EAAY,EAAI,EAAEP,EAAS,QAAQ,MAAM,GAAI,EAAQgB,EAAOC,GAAM,CAAIjB,EAAS,UAASA,EAAS,QAAQ,YAAYiB,IAAO,EAAE,IAAIA,EAAM,EAAQC,EAAa,IAAI,CAAC,IAAMC,EAAYnB,EAAS,SAAS,YAAY,GAAG,CAACmB,EAAY,OAAO,IAAIC,EAAY,KAE/iC,GADA1B,EAAM,MAAM,QAAQ2B,GAAM,CAAIF,GAAaE,EAAK,iBAAiBD,GAAa,MAAMC,EAAK,eAAeD,EAAY,kBAAiBA,EAAYC,EAAM,CAAC,EACrJrB,EAAS,SAASmB,GAAanB,EAAS,QAAQ,SAAS,GAAG,CAACI,EAAmB,IAAI,EAAKF,EAA0B,UAASA,EAA0B,QAAQ,WAAW,GAAG,OAAwBE,EAAbgB,EAAgCA,EAAY,MACnN,IADwN,CACjN,EAAQE,EAAmBC,GAAO,CAAC,GAAG,CAACrB,EAA0B,QAAQ,OAAO,IAAMsB,EAAMtB,EAA0B,QAAQ,SAAeuB,EAAW,MAAM,KAAKD,CAAK,EAAE,KAAKH,GAAMA,EAAK,aAAa,YAAY,IAAIE,CAAK,EAAE,GAAGE,EAAW,CAAC,IAAMC,EAAexB,EAA0B,QAAQ,YAAkByB,GAASF,EAAW,WAAiBG,EAAUH,EAAW,YAAkBI,EAAkBF,IAAUD,EAAeE,GAAW,EAAE1B,EAA0B,QAAQ,WAAW2B,EAAmB,EACphBxD,EAAU,IAAI,CAAI8B,GAAiBmB,EAAmBnB,CAAe,CAAG,EAAE,CAACA,CAAe,CAAC,EAAE9B,EAAU,IAAI,CAAC,GAAG,CAAC2B,EAAS,SAAS,CAACC,EAAkB,QAAQ,OAAO,IAAM6B,EAAS,IAAI,qBAAqB,CAAC,CAACC,CAAK,IAAI,CAACtB,EAAYsB,EAAM,cAAc,EAAKA,EAAM,eAAgB/B,EAAS,SAAS,KAAK,EAAQA,EAAS,SAAS,MAAM,CAAG,EAAE,CAAC,UAAU,EAAE,CAAC,EAAE,OAAA8B,EAAS,QAAQ7B,EAAkB,OAAO,EAAQ,IAAI,CAAC6B,EAAS,WAAW,CAAE,CAAE,EAAE,CAAC,CAAC,EAAEzD,EAAU,IAAI,CAAI2B,EAAS,UAASA,EAAS,QAAQ,aAAa,GACnfQ,GAAUR,EAAS,QAAQ,KAAK,EAAI,EAAE,CAACQ,CAAQ,CAAC,EACnD,IAAMwB,EAAe,CAACX,EAAKY,IAAW,CAAC,GAAG,CAACjC,EAAS,QAAQ,OAC5D,IAAMkC,EAASD,EAASA,EAAS,eAAeZ,EAAK,eAAerB,EAAS,QAAQ,SAASqB,EAAK,eAAqBc,EAAe,GAEhIC,EAAiB,KADNF,EAAS,IAAIC,GACcE,EAAW,IAAI,CAAKrC,EAAS,SAAS,QAAQW,EAAY2B,IAAc,CAAC,IAAMC,GAAY,KAAK,IAAID,GAAaF,EAAiB,GAAG,EAAE,OAAGG,GAAY,MAAK3B,EAAmB,QAAQ,WAAWyB,EAAWF,CAAc,GAAUI,EAAY,CAAC,CAAG,EAC9R3B,EAAmB,SAAS,aAAaA,EAAmB,OAAO,EACtEyB,EAAW,CAAE,EACbhE,EAAU,IAAI,CAAC,GAAG,CAAC8B,GAAiB,CAACH,EAAS,QAAQ,OAAO,IAAMwC,EAAY9C,EAAM,MAAM,KAAK2B,GAAMA,EAAK,QAAQlB,CAAe,EAAQsC,EAAa/C,EAAM,MAAM,UAAU2B,GAAMA,EAAK,QAAQlB,CAAe,EAAQ8B,EAASvC,EAAM,MAAM+C,EAAa,CAAC,EAAE,OAAGD,IAAa7B,EAAY,CAAC,EACxRqB,EAAeQ,EAAYP,CAAQ,GAAS,IAAI,CAAIrB,EAAmB,SAAS,aAAaA,EAAmB,OAAO,CAAG,CAAE,EAAE,CAACT,EAAgBT,EAAM,KAAK,CAAC,EAC5JrB,EAAU,IAAI,CAAC,GAAG,CAAC2B,EAAS,QAAQ,OAAO,IAAM0C,EAAiB,IAAI,CAAC/B,EAAY,CAAC,CAAE,EAAE,OAAAX,EAAS,QAAQ,iBAAiB,QAAQ0C,CAAgB,EAAQ,IAAI,CAAC1C,EAAS,SAAS,oBAAoB,QAAQ0C,CAAgB,CAAE,CAAE,EAAE,CAAC,CAAC,EAGrO,IAAMC,EAAqB,CAAC,QAAQ,OAAO,cAAc,SAAS,MAAM,OAAO,SAAS,SAAS,UAAUhD,EAAS,QAAQ,QAAQ,SAAS,SAAS,gBAAgBD,EAAM,UAAU,EAAQkD,GAAoB,CAAC,QAAQ,OAAO,cAAc,SAAS,WAAW,SAAS,IAAI,MAAM,cAAcjD,EAAS,OAAgB,MAAa,EAAQkD,GAAsB,CAAC,SAAS,WAAW,OAAO,GAAG,OAAO,EAAE,WAAW,IAAI,WAAW,mDAAmD,SAASlD,EAAS,OAAgB,OAAc,MAAMD,EAAM,aAAa,cAAc,YAAY,cAAc,QAAQ,EAAQoD,GAAkB,CAAC,QAAQ,OAAO,cAAc,SAAS,WAAW,QAAQ,EAAQC,GAAmB,CAAC,SAAS,WAAW,OAAO,GAAG,MAAM,OAAO,SAAS,QAAQ,cAAc,OAAO,OAAO,EAAE,WAAW,IAAI,WAAW,kEAAkE,SAASpD,EAAS,OAAOG,EAAS,OAAO,OAAO,WAAW,EAAE,UAAU,SAAS,MAAMJ,EAAM,SAAS,EAAQsD,GAAkB,CAAC,SAAS,WAAW,OAAO,GAAG,QAAQ,cAAc,WAAW,SAAS,eAAe,SAAS,WAAW,EAAE,SAAS,EAAE,OAAO,OAAO,YAAY,OAAO,aAAa,OAAO,gBAAgBtD,EAAM,WAAW,aAAa,OAAO,OAAO,iBAAiB,WAAW,IAAI,WAAW,kEAAkE,SAASC,EAAS,OAAgB,OAAc,MAAMD,EAAM,UAAU,QAAQ,EAAE,EAAQ3B,GAAkB,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,OAAO,aAAa,MAAM,EAAQE,GAAoB,CAAC,SAAS,WAAW,OAAO,MAAM,MAAM,OAAO,IAAI,MAAM,KAAK,IAAI,gBAAgByB,EAAM,SAAS,EAAQ1B,GAAkB,CAAC,SAAS,WAAW,IAAI,IAAI,QAAQ,OAAO,WAAW,SAAS,eAAe,SAAS,MAAM,OAAO,OAAO,OAAO,aAAa,MAAM,gBAAgB0B,EAAM,UAAU,OAAO,OAAO,WAAW,OAAO,UAAU,MAAM,EAAQuD,GAA6B,CAAC,SAAS,WAAW,OAAO,EAAE,QAAQ,OAAO,IAAItD,EAAS,OAAO,OAAO,WAAW,QAAQ,cAAc,OAAO,gBAAgBA,EAAS,oDAAoD,OAAO,gBAAgB,cAAc,UAAU,SAAS,UAAU,SAAS,eAAe,SAAS,SAAS,MAAM,EAAQuD,GAAmB,CAAC,SAAS,WAAW,WAAW,SAAS,QAAQ,OAAO,SAAS,EAAE,WAAW,EAAE,IAAI,MAAM,OAAO,cAAc,MAAMvD,EAAS,QAAiB,QAAgB,WAAW,wBAAwB,QAAQ,GAAG,OAAO,SAAS,EAAQwD,GAAyB,CAAC,QAAQ,OAAO,QAAQ,CAAC,EAAQC,GAAwB,CAAC,QAAQ,OAAO,MAAM,IAAI,QAAQ,CAAC,EAAQC,GAAkC,CAAC,QAAQ,OAAO,IAAI,OAAO,WAAW,QAAQ,EAAQC,GAAyB,CAAC,WAAW,+CAA+C,SAAS,OAAO,WAAW,IAAI,MAAM5D,EAAM,UAAU,QAAQ,EAAE,EAAQ6D,GAA+B,CAAC,QAAQ,EAAE,MAAM7D,EAAM,YAAY,EAAQ8D,GAA8B,CAAC,QAAQ,EAAE,MAAM9D,EAAM,YAAY,EAAQ+D,GAAuB,CAAC,QAAQ,OAAO,cAAc,SAAS,MAAM,OAAO,IAAI,KAAK,EAAQC,GAAwB,CAAC,WAAW,OAAO,WAAW,+CAA+C,SAAS,OAAO,WAAW,IAAI,MAAMhE,EAAM,SAAS,EAAQiE,GAA0B,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,EAAE,WAAW,+CAA+C,WAAW,IAAI,MAAMjE,EAAM,UAAU,SAAS,OAAO,WAAW,KAAK,EAAQkE,GAA2B,CAAC,SAAS,WAAW,MAAM,OAAO,OAAO,MAAM,gBAAgB,qBAAqB,aAAa,MAAM,SAAS,QAAQ,EAAQC,GAAsB,CAAC,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,OAAO,OAAO,gBAAgBnE,EAAM,UAAU,WAAW,mBAAmB,EAAQoE,GAA6B,CAAC,SAAS,WAAW,MAAM,OAAO,gBAAgB,SAAS,EAAQC,GAAoB,CAAC,MAAM,OAAO,OAAOpE,EAAS,QAAQG,EAAS,QAAQ,QAAQ,UAAU,QAAQ,aAAa,UAAU,EAAQkE,GAAuB,CAAC,SAAS,WAAW,IAAI,OAAO,KAAK,OAAO,QAAQ,OAAO,eAAe,SAAS,WAAW,SAAS,OAAO,OAAO,MAAM,OAAO,WAAW,MAAM,gBAAgBtE,EAAM,UAAU,eAAe,aAAa,aAAa,OAAO,OAAO,KAAK,OAAO,SAAS,EAAQuE,GAA2B,CAAC,MAAMvE,EAAM,UAAU,EAGxuI,OAAoB/B,EAAM,MAAM,CAAC,IAAIG,EAAa,MAAM6E,EAAqB,SAAS,CAAchF,EAAM,MAAM,CAAC,MAAMiF,GAAoB,SAAS,CAAcnF,EAAK,KAAK,CAAC,MAAMoF,GAAsB,SAASnD,EAAM,gBAAgB,CAAC,EAAe/B,EAAM,MAAM,CAAC,MAAMmF,GAAkB,SAAS,CAAcrF,EAAK,KAAK,CAAC,MAAMsF,GAAmB,SAASrD,EAAM,cAAc,CAAC,EAAejC,EAAK,KAAK,CAAC,MAAMuF,GAAkB,SAAStD,EAAM,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/B,EAAM,MAAM,CAAC,MAAM,CAAC,SAAS,UAAU,EAAE,SAAS,CAAcF,EAAKI,GAAgB,CAAC,aAAaqC,EAA0B,kBAAkBnC,GAAkB,kBAAkBC,GAAkB,oBAAoBC,EAAmB,CAAC,EAAeR,EAAK,MAAM,CAAC,IAAIyC,EAA0B,MAAM+C,GAA6B,UAAU,2BAA2B,SAASvD,EAAM,MAAM,IAAI,CAAC2B,EAAK6C,IAA2BzG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGyF,GAAmB,GAAG/C,IAAkBkB,EAAK,MAAM8B,GAAyB,IAAI,EAAE,QAAQ,IAAI,CAACxC,EAAY,CAAC,EAAEK,EAAOK,EAAK,cAAc,CAAE,EAAE,aAAaA,EAAK,MAAM,SAAsB1D,EAAM,MAAM,CAAC,MAAM8F,GAAuB,SAAS,CAAc9F,EAAM,MAAM,CAAC,MAAM0F,GAAkC,SAAS,CAAc5F,EAAK,IAAI,CAAC,MAAM,CAAC,GAAG6F,GAAyB,GAAGnD,IAAkBkB,EAAK,MAAMkC,GAA+B,IAAI,EAAE,SAAS1C,EAAIqD,EAAI,EAAE,CAAC,CAAC,CAAC,EAAezG,EAAK,MAAM,CAAC,MAAMmG,GAA2B,SAAsBnG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGoG,GAAsB,MAAM,GAAG1D,IAAkBkB,EAAK,MAAMX,EAAS,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejD,EAAK,IAAI,CAAC,MAAMiG,GAAwB,SAASrC,EAAK,KAAK,CAAC,EAAe5D,EAAK,IAAI,CAAC,MAAMkG,GAA0B,SAAStC,EAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,iBAAiB6C,GAAK,CAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevG,EAAM,MAAM,CAAC,MAAMmG,GAA6B,IAAI7D,EAAkB,SAAS,CAAcxC,EAAK,MAAM,CAAC,MAAMuG,GAAuB,SAAsBvG,EAAK,MAAM,CAAC,MAAMwG,GAA2B,QAAQlD,EAAY,SAAST,EAAsB7C,EAAKC,GAAS,CAAC,KAAK,EAAE,CAAC,EAAeD,EAAKF,GAAU,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAK,QAAQ,CAAC,MAAMsG,GAAoB,IAAI/D,EAAS,OAAON,EAAM,gBAAgB,aAAawB,EAAa,SAAS,GAAM,SAAS,GAAM,KAAK,GAAK,MAAM,GAAK,YAAY,GAAK,SAAsBzD,EAAK,SAAS,CAAC,IAAIiC,EAAM,UAAU,KAAK,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAM/zEyE,GAAoB1E,EAAgB,CAAC,eAAe,CAAC,KAAK2E,EAAY,OAAO,aAAa,yCAAyC,YAAY,sBAAiB,EAAE,iBAAiB,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,YAAY,sBAAiB,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,aAAa,GAAG,YAAY,sBAAiB,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,iBAAiB,CAAC,KAAK,CAAC,EAAE,gBAAgB,CAAC,KAAKA,EAAY,KAAK,iBAAiB,CAAC,MAAM,KAAK,CAAC,EAAE,WAAW,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,aAAa,CAAC,KAAKA,EAAY,MAAM,aAAa,SAAS,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKA,EAAY,MAAM,QAAQ,CAAC,KAAKA,EAAY,OAAO,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,OAAO,YAAY,kBAAkB,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,YAAY,0EAA0E,EAAE,eAAe,CAAC,KAAKA,EAAY,OAAO,YAAY,+CAA+C,aAAa,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,CAAC,YAAY,EAAE,MAAM,qBAAqB,QAAQ,2EAA2E,eAAe,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,sBAAsB,QAAQ,2EAA2E,eAAe,EAAE,CAAC,CAAC,CAAC,CAAC,EChD7P,IAAMC,GAAeC,EAASC,EAAS,EAAQC,GAAgBF,EAASG,CAAU,EAAQC,GAAqBJ,EAASK,CAAe,EAAQC,GAAWN,EAASO,CAAK,EAAQC,GAAcR,EAASS,CAAQ,EAAQC,GAAgCC,GAAwBF,CAAQ,EAAQG,GAAYZ,EAASa,CAAM,EAAQC,GAAY,CAAC,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,oBAAoB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,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,EAAQ,GAAGC,CAAS,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,GAAI,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,CAAmB,EAAEC,GAA8BR,EAAQ9B,GAAY,EAAK,EAAQuC,EAAe,OAA+CC,EAAkBC,EAAGvC,GAAkB,GAAhD,CAAC,CAAuE,EAAQwC,EAAUC,GAAkB,WAAW,EAAQC,EAAW1B,EAAO,IAAI,EAAQ2B,EAAY,IAAS5C,GAAU,EAAiBmC,IAAc,YAAtB,GAAmEU,EAAa,IAAQ,CAAC7C,GAAU,GAAiBmC,IAAc,YAAuC,OAAAW,GAAiB,CAAC,CAAC,EAAsBxC,EAAKyC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7C,EAAiB,EAAE,SAAsB8C,EAAMC,GAAY,CAAC,GAAGrB,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAe6C,EAAME,EAAO,IAAI,CAAC,GAAGpB,EAAU,UAAUU,EAAGD,EAAkB,iBAAiBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcsB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGP,EAAU,IAAIE,EAAK,SAAS,CAACC,EAAY,GAAgBtC,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM3B,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,SAAsBlB,EAAK8C,EAAU,CAAC,UAAU,wCAAwC,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAKpB,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8D,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAc1C,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,kDAAkD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,kDAAkD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,kDAAkD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mDAAmD,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAS,wHAAwH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mDAAmD,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEuC,EAAa,GAAgBvC,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAK8C,EAAU,CAAC,UAAU,wDAAwD,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAKlB,EAAW,CAAC,UAAU,aAAa,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,GAAG,iBAAiB,EAAE,kBAAkB,GAAG,gBAAgB,EAAE,cAAc,eAAe,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,EAAE,cAAc,EAAK,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,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,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAc4D,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wFAAwF,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,aAAa,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,EAAeF,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAc5C,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,UAAU,QAAQ,UAAU,QAAQ,MAAM,QAAQ,IAAI,yFAAyF,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAelD,EAAK4C,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,SAAS,EAAE,KAAK,OAAO,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5C,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsBA,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAK8C,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAKhB,EAAgB,CAAC,WAAW,wEAAwE,eAAe,yCAAyC,iBAAiB,kBAAkB,gBAAgB,wBAAwB,OAAO,OAAO,GAAG,YAAY,MAAM,CAAC,CAAC,eAAe,GAAG,QAAQ,wFAAwF,MAAM,yCAAyC,EAAE,CAAC,eAAe,GAAG,QAAQ,2HAA2H,MAAM,qBAAqB,EAAE,CAAC,eAAe,GAAG,QAAQ,yDAAyD,MAAM,MAAM,EAAE,CAAC,eAAe,GAAG,QAAQ,sFAAsF,MAAM,mBAAmB,EAAE,CAAC,eAAe,GAAG,QAAQ,+BAA+B,MAAM,wBAAwB,EAAE,CAAC,eAAe,GAAG,QAAQ,oKAAoK,MAAM,wBAAwB,EAAE,CAAC,eAAe,GAAG,QAAQ,gJAAgJ,MAAM,iCAAiC,CAAC,EAAE,SAAS,YAAY,aAAa,sEAAsE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,UAAU,oEAAoE,UAAU,sEAAsE,gBAAgB,sEAAsE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegB,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,cAAc,GAAK,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,mBAAmB,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wEAAwE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,wEAAwE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sCAAsC,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6C,EAA0B,CAAC,SAAsB7C,EAAK8C,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAKd,EAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,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,SAAS,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAec,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAsB0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAc1C,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,mBAAmB,0BAA0B,WAAW,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gBAAgB,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gBAAgB,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,gBAAgB,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gDAAgD,MAAM,CAAC,cAAc,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc1C,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsB,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,0BAA0B,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBlB,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAc1C,EAAKoD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA;AAAA,EAAykB,mBAAmB,EAAI,CAAC,EAAepD,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAA2B,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,4NAA4N,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,4NAA4N,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,4NAA4N,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6NAA6N,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsB,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,0BAA0B,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBlB,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,SAAsBwB,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAc1C,EAAKoD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA;AAAA,EAA2Q,mBAAmB,EAAI,CAAC,EAAepD,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,iCAAiC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kCAAkC,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,qJAAqJ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mJAAmJ,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe0C,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,MAAM,SAAS,CAAc1C,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsB,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,0BAA0B,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAc1C,EAAK,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,GAAG,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,GAAG,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uHAAuH,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,mJAAmJ,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQsB,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQiC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,KAAK,EAAE,GAAG,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,OAAOA,GAAmB,OAAO,0BAA0B,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBlB,EAAKkD,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,QAAQC,GAA2BjC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,IAAI,IAAI,EAAE,IAAI,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,MAAM,YAAYA,GAAmB,OAAO,4CAA4C,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,cAAc,GAAK,mBAAmB,OAAO,SAAsBwB,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,SAAS,CAAc1C,EAAKoD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,gBAAgB,gBAAgB,GAAG,eAAe,GAAG,IAAI;AAAA;AAAA;AAAA,EAA4Q,mBAAmB,EAAI,CAAC,EAAepD,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,0BAA0B,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,iBAAiB,0BAA0B,WAAW,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,qBAAqB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWgD,EAAS,CAAC,SAAsBhD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,OAAO,sBAAsB,iBAAiB,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mJAAmJ,MAAM,CAAC,kBAAkB,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK6C,EAA0B,CAAC,OAAO,GAAG,MAAM3B,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBlB,EAAK8C,EAAU,CAAC,UAAU,0BAA0B,aAAa,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsB9C,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKX,GAAgC,CAAC,sBAAsB,GAAM,oBAAoB,GAAG,qCAAqC,GAAK,OAAO,OAAO,GAAG,YAAY,UAAU,YAAY,SAAS,YAAY,UAAU,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeW,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAsBA,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGX,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAK6C,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAO3B,GAAmB,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,EAAE,SAAsBlB,EAAK8C,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsB9C,EAAK+C,EAAkB,CAAC,WAAWlB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKR,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqD,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,uXAAuX,gLAAgL,qYAAqY,wNAAwN,uNAAuN,mMAAmM,iMAAiM,iWAAiW,0IAA0I,+WAA+W,wIAAwI,gXAAgX,0hBAA0hB,iSAAiS,gUAAgU,wMAAwM,wHAAwH,iSAAiS,0fAA0f,kSAAkS,uMAAuM,iJAAiJ,4RAA4R,yTAAyT,qkBAAqkB,ueAAue,0XAA0X,2JAA2J,oSAAoS,mkBAAmkB,kHAAkH,gbAAgb,6SAA6S,qIAAqI,6VAA6V,4HAA4H,6nJAA6nJ,gcAAgc,4ZAA4Z,qwDAAqwD,EAWlo8DC,EAAgBC,GAAQhD,GAAU8C,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,OAAOA,EAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,kGAAkG,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG5E,GAAe,GAAGG,GAAgB,GAAGE,GAAqB,GAAGE,GAAW,GAAGE,GAAc,GAAGI,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACl1B,IAAMmE,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,SAAS,yBAA2B,OAAO,oCAAsC,4JAA0L,qBAAuB,OAAO,qBAAuB,uDAAiE,sBAAwB,IAAI,4BAA8B,OAAO,6BAA+B,OAAO,uBAAyB,GAAG,yBAA2B,OAAO,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["IconPause", "size", "p", "IconPlay", "u", "IconChevronsLeftRight", "CustomScrollbar", "containerRef", "scrollTrackStyles", "scrollThumbStyles", "scrollTrackBgStyles", "trackRef", "pe", "thumbRef", "ue", "container", "updateThumbPosition", "thumb", "trackWidth", "thumbWidth", "maxLeft", "scrollPercent", "maxPercent", "constrainedPercent", "e", "startX", "startLeft", "handleMouseMove", "deltaX", "newLeft", "scrollWidth", "handleMouseUp", "handleTouchMove", "handleTouchEnd", "VideoCarouselV3", "props", "isMobile", "useContainerQuery", "width", "isTablet", "isLargeDesktop", "videoRef", "videoContainerRef", "carouselItemsContainerRef", "activeItemTitle", "setActiveItemTitle", "ye", "isPaused", "setIsPaused", "isInView", "setIsInView", "progress", "setProgress", "progressTimeoutRef", "pad", "num", "togglePause", "jumpTo", "time", "onTimeUpdate", "currentTime", "closestItem", "item", "scrollToActiveItem", "title", "items", "activeItem", "containerWidth", "itemLeft", "itemWidth", "newScrollPosition", "observer", "entry", "updateProgress", "nextItem", "duration", "updateInterval", "incrementPerStep", "updateStep", "prevProgress", "newProgress", "currentItem", "currentIndex", "handleVideoEnded", "carouselLayoutStyles", "sectionHeaderStyles", "sectionSubtitleStyles", "sectionTitleStack", "sectionTitleStyles", "sectionChipStyles", "carouselItemsContainerStyles", "carouselItemStyles", "carouselItemStylesActive", "carouselItemStylesHover", "carouselItemNumberContainerStyles", "carouselItemNumberStyles", "carouselItemNumberStylesActive", "carouselItemNumberStylesHover", "carouselItemBodyStyles", "carouselItemTitleStyles", "carouselItemSummaryStyles", "progressBarContainerStyles", "progressBarFillStyles", "carouselVideoContainerStyles", "carouselVideoStyles", "carouselPlaybackStyles", "carouselPlaybackIconStyles", "idx", "addPropertyControls", "ControlType", "SlideshowFonts", "getFonts", "Mt5BFR8dy_default", "Slideshow1Fonts", "Slideshow", "VideoCarouselV3Fonts", "VideoCarouselV3", "VideoFonts", "Video", "NavBarV2Fonts", "hLLCCdk8F_default", "NavBarV2WithVariantAppearEffect", "withVariantAppearEffect", "FooterFonts", "duRMmzcft_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "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", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "css", "FramercGsQbfefm", "withCSS", "cGsQbfefm_default", "addFonts", "__FramerMetadata__"]
}
