{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/NkuDQ5CVcgcRFhOG6sck/SlideShow.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/tMgLW02JctHcv25gtiqf/SlideShow.js", "ssg:https://framerusercontent.com/modules/z6PrUgUWmVgZPbKxuDu5/c7YCJqpPD7IwkW75zrJ4/luAuXNNti.js", "ssg:https://framerusercontent.com/modules/eFZBtF9gdqEm7DKN3I4d/GB2N1o0jMosm9UDbHqRk/RJbodLWdn.js", "ssg:https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js", "ssg:https://framerusercontent.com/modules/vqXJ7CswbnPNlBf6Tavr/r5bHfVUOyEoKM9nlWWgB/pVdd_b4Dp.js", "ssg:https://framerusercontent.com/modules/lWtdySD5mL6ENydqmcDj/0HQv56bqp3twWNMcKuFc/dwhF5uvGf.js", "ssg:https://framerusercontent.com/modules/9BbkYyppYqJeVn3KLvEZ/d6Ozs1load7kXM1Ol2e5/fGig8vtB4.js", "ssg:https://framerusercontent.com/modules/fIFSa5SzJKnF57iFXKnm/AQSal0Ry8uAgbh7uqVOw/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}},[hasChildren]);/**\n     * Add refs to all children\n     */ useLayoutEffect(()=>{if(!hasChildren)return;measure();},[hasChildren]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),intervalControl*1e3);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>wrap(-childrenSize,-childrenSize*2,value)):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ if(initialResize.current){xOrY.set((childrenSize+itemOffset)*factor);}/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(factor*currentItem*itemWithGap);}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent)return;const controls=animate(xOrY,newPosition(),transitionControl);if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>()=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);setCurrentItem(setDelta(isInverted?gotoInverted:goto));};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0},onMouseEnter:()=>!effectsHover&&setShouldPlayOnHover(false),onMouseLeave:()=>!effectsHover&&setShouldPlayOnHover(true),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:0,position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",perspective:effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&\"preserve-3d\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\"},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{key,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:key+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity:unselectedOpacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:unselectedOpacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{wrap}from\"popmotion\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Slideshow(props){/**\n     * Properties\n     */ const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=Children.count(slots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return slots.map(index=>/*#__PURE__*/ createRef());},[slots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null});/* For pausing on hover */ const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */ const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */ const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */ const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */ const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=slots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight});}},[hasChildren]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */ useLayoutEffect(()=>{if(!hasChildren)return;measure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */ let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */ const totalItems=slots===null||slots===void 0?void 0:slots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility */ /* Otherwise, it will re-play all the item increments */ const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */ const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */ const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */ const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping */ /* Instead of 0 to a negative full duplicated row, we start with an offset */ const wrappedValue=!isCanvas?useTransform(xOrY,value=>wrap(-childrenSize,-childrenSize*2,value)):0;/* Convert the current item to a wrapping index for dots */ const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point */ /* The subtraction of a full row of children is for overflow */ useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */ // if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */ if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing,]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     */ /* Next and previous function, animates the X */ const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */ const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */ const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200 // Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */ const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch */ /* For velocity use only */ const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */ if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */ if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */ useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */ let childCounter=0;/**\n     * Sizing\n     * */ let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */ for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(slots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===slots.length-1){ref=childrenRef[1];}return /*#__PURE__*/ _jsx(Slide,{ref:childrenRef[childIndex],index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:slots===null||slots===void 0?void 0:slots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */ const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(slots===null||slots===void 0?void 0:slots.length);i++){dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted}));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/ _jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:effectsPerspective},children:/*#__PURE__*/ _jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&\"preserve-3d\",cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/ _jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:0},transition:transitionControl,children:[/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/ _jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/ _jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});};/* Default Properties */ Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */ addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\",],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\",],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\",],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */ const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */ const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */ const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */ const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */ const Slide=/*#__PURE__*/ forwardRef(function Component(props,ref){var ref1,ref2;const{key,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */ const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent,].map(val=>val-childOffset);/**\n     * Effects\n     */ const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate,]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate,]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity,]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale,]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{ref.current.setAttribute(\"aria-hidden\",!newValue);});},[]);return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/ cloneElement(child,{ref:ref,key:key+\"child\",style:{...(ref1=child.props)===null||ref1===void 0?void 0:ref1.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0}},(ref2=child.props)===null||ref2===void 0?void 0:ref2.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item */ /* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */ let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */ if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (f1edf09)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/0tXxO940zb9KZZKCyRnW/0Zx44vSPCIO0ud0T08f6/tYd9HHvuM.js\";const enabledGestures={pz2MQsVNp:{hover:true}};const cycleOrder=[\"pz2MQsVNp\",\"emYAZid7O\",\"fcKUlYrl3\",\"kfUUoYygi\",\"hQt_HpfLh\",\"sryS_Fq3l\"];const variantClassNames={emYAZid7O:\"framer-v-ik85uo\",fcKUlYrl3:\"framer-v-n7dhv7\",hQt_HpfLh:\"framer-v-xllf2c\",kfUUoYygi:\"framer-v-62vq4e\",pz2MQsVNp:\"framer-v-71g0fb\",sryS_Fq3l:\"framer-v-14ez51n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"slide button - primary\":\"pz2MQsVNp\",blue:\"fcKUlYrl3\",orange:\"kfUUoYygi\",purple:\"emYAZid7O\",red:\"hQt_HpfLh\",teal:\"sryS_Fq3l\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"pz2MQsVNp\",title:xqPgo_coA=\"Aviation Incident\",tap:KFAWci_6S,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"pz2MQsVNp\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap13nt36a=activeVariantCallback(async(...args)=>{if(KFAWci_6S){const res=await KFAWci_6S(...args);if(res===false)return false;}});const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Ia8Tc\",sharedStyle.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(motion.div,{...restProps,className:cx(\"framer-71g0fb\",className),\"data-border\":true,\"data-framer-name\":\"slide button - primary\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"pz2MQsVNp\",onTap:onTap13nt36a,ref:ref,style:{\"--border-bottom-width\":\"6px\",\"--border-color\":\"rgb(230, 230, 230)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},transition:transition,variants:{\"pz2MQsVNp-hover\":{\"--border-color\":\"rgb(196, 196, 196)\"},emYAZid7O:{\"--border-color\":\"rgb(155, 81, 224)\"},fcKUlYrl3:{\"--border-color\":\"rgb(34, 115, 224)\"},hQt_HpfLh:{\"--border-color\":\"rgb(235, 87, 87)\"},kfUUoYygi:{\"--border-color\":\"rgb(242, 153, 74)\"},sryS_Fq3l:{\"--border-color\":\"rgb(104, 186, 191)\"}},...addPropertyOverrides({\"pz2MQsVNp-hover\":{\"data-framer-name\":undefined},emYAZid7O:{\"data-framer-name\":\"purple\"},fcKUlYrl3:{\"data-framer-name\":\"blue\"},hQt_HpfLh:{\"data-framer-name\":\"red\"},kfUUoYygi:{\"data-framer-name\":\"orange\"},sryS_Fq3l:{\"data-framer-name\":\"teal\"}},baseVariant,gestureVariant),children:/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Aviation Incident\"})}),className:\"framer-1ymuf15\",layoutDependency:layoutDependency,layoutId:\"Qh19ZUw9N\",style:{\"--extracted-r6o4lv\":\"rgb(89, 89, 89)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:xqPgo_coA,transition:transition,variants:{\"pz2MQsVNp-hover\":{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},emYAZid7O:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},fcKUlYrl3:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},hQt_HpfLh:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},kfUUoYygi:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},sryS_Fq3l:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true})})})});});const css=['.framer-Ia8Tc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ia8Tc * { box-sizing: border-box; }\",\".framer-Ia8Tc .framer-1cuksi { display: block; }\",\".framer-Ia8Tc .framer-71g0fb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 65px; justify-content: center; overflow: hidden; padding: 6px 18px 6px 18px; position: relative; width: min-content; }\",\".framer-Ia8Tc .framer-1ymuf15 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ia8Tc .framer-v-71g0fb .framer-71g0fb { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ia8Tc .framer-71g0fb { gap: 0px; } .framer-Ia8Tc .framer-71g0fb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Ia8Tc .framer-71g0fb > :first-child { margin-left: 0px; } .framer-Ia8Tc .framer-71g0fb > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 65\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"emYAZid7O\":{\"layout\":[\"auto\",\"fixed\"]},\"fcKUlYrl3\":{\"layout\":[\"auto\",\"fixed\"]},\"kfUUoYygi\":{\"layout\":[\"auto\",\"fixed\"]},\"hQt_HpfLh\":{\"layout\":[\"auto\",\"fixed\"]},\"sryS_Fq3l\":{\"layout\":[\"auto\",\"fixed\"]},\"fLMhfU1Qb\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"xqPgo_coA\":\"title\",\"KFAWci_6S\":\"tap\"}\n */ const FramerluAuXNNti=withCSS(Component,css,\"framer-Ia8Tc\");export default FramerluAuXNNti;FramerluAuXNNti.displayName=\"slide button\";FramerluAuXNNti.defaultProps={height:65,width:180};addPropertyControls(FramerluAuXNNti,{variant:{options:[\"pz2MQsVNp\",\"emYAZid7O\",\"fcKUlYrl3\",\"kfUUoYygi\",\"hQt_HpfLh\",\"sryS_Fq3l\"],optionTitles:[\"slide button - primary\",\"purple\",\"blue\",\"orange\",\"red\",\"teal\"],title:\"Variant\",type:ControlType.Enum},xqPgo_coA:{defaultValue:\"Aviation Incident\",displayTextArea:false,title:\"Title\",type:ControlType.String},KFAWci_6S:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerluAuXNNti,[...sharedStyle.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerluAuXNNti\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"emYAZid7O\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fcKUlYrl3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kfUUoYygi\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"hQt_HpfLh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"sryS_Fq3l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"fLMhfU1Qb\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"180\",\"framerIntrinsicHeight\":\"65\",\"framerVariables\":\"{\\\"xqPgo_coA\\\":\\\"title\\\",\\\"KFAWci_6S\\\":\\\"tap\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (667f196)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6YEoAEhQs5MLJAh29v0J/fH47011e4XUN9iyeYQxd/Bnf_zJFSO.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/eQYsWlqsQOOKT5P3syDD/p2QdDtLran4eECKXRznn/kmzfIKVsR.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/09hoE6diSqpU0K1Ejp2W/ZJzDrgZkHuHOQv7kOJcH/rjCAMPSoJ.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/0tXxO940zb9KZZKCyRnW/0Zx44vSPCIO0ud0T08f6/tYd9HHvuM.js\";import Spacer from\"https://framerusercontent.com/modules/L0bAz157bclZ8tsGKIb9/Uzlb8Ka8znO6QXbnoKuO/otw1uWwIn.js\";const SpacerFonts=getFonts(Spacer);const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"UCGYdKOdj\",\"ZniDkQyHU\",\"Jvd362E2u\",\"Lh0wYKZOC\",\"KzQWvNbsI\",\"uALECq5M3\",\"Nf7R5hSiW\",\"fXBrFmjXy\",\"kswGP0Pta\",\"YhMr26FuT\",\"ZolcY4mvK\",\"f3PM47e_z\",\"yno4UlJMc\"];const variantClassNames={f3PM47e_z:\"framer-v-1rogncj\",fXBrFmjXy:\"framer-v-10v1or\",Jvd362E2u:\"framer-v-xvgscm\",kswGP0Pta:\"framer-v-wqdfms\",KzQWvNbsI:\"framer-v-1bm8za6\",Lh0wYKZOC:\"framer-v-1hrzhjr\",Nf7R5hSiW:\"framer-v-146nik4\",uALECq5M3:\"framer-v-6qj6ox\",UCGYdKOdj:\"framer-v-1hzgrsm\",YhMr26FuT:\"framer-v-1izjuw8\",yno4UlJMc:\"framer-v-1j8t1h8\",ZniDkQyHU:\"framer-v-frm1l0\",ZolcY4mvK:\"framer-v-1r580er\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"use case - active shooter\":\"Jvd362E2u\",\"use case - aviation - mobile\":\"uALECq5M3\",\"use case - aviation incident\":\"ZniDkQyHU\",\"use case - hurricane\":\"Lh0wYKZOC\",\"use case - military action\":\"YhMr26FuT\",\"use case - network outage\":\"KzQWvNbsI\",\"use case - outbreak\":\"ZolcY4mvK\",\"use case - primary\":\"UCGYdKOdj\",\"use case active shooter mobile\":\"fXBrFmjXy\",\"use case aviation hurricane\":\"Nf7R5hSiW\",\"use case military action mobile\":\"f3PM47e_z\",\"use case network outage mobile\":\"kswGP0Pta\",\"use case outbreak mobile\":\"yno4UlJMc\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const transformTemplate=(_,t)=>`translateY(-50%) ${t}`;const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"UCGYdKOdj\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"UCGYdKOdj\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const isDisplayed=()=>{if(baseVariant===\"Nf7R5hSiW\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"fXBrFmjXy\")return true;return false;};const isDisplayed2=()=>{if([\"Nf7R5hSiW\",\"fXBrFmjXy\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"kswGP0Pta\",\"f3PM47e_z\",\"yno4UlJMc\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"KzQWvNbsI\",\"YhMr26FuT\",\"ZolcY4mvK\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"Lh0wYKZOC\")return true;return false;};const isDisplayed6=()=>{if([\"ZniDkQyHU\",\"uALECq5M3\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if([\"kswGP0Pta\",\"ZolcY4mvK\",\"f3PM47e_z\",\"yno4UlJMc\"].includes(baseVariant))return false;return true;};const isDisplayed8=()=>{if([\"kswGP0Pta\",\"f3PM47e_z\",\"yno4UlJMc\"].includes(baseVariant))return true;return false;};const isDisplayed9=()=>{if(baseVariant===\"f3PM47e_z\")return true;return false;};const isDisplayed10=()=>{if(baseVariant===\"yno4UlJMc\")return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"uALECq5M3\")return true;return false;};const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-GnBh1\",sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-1hzgrsm\",className),\"data-framer-name\":\"use case - primary\",layoutDependency:layoutDependency,layoutId:\"UCGYdKOdj\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({f3PM47e_z:{\"data-framer-name\":\"use case military action mobile\"},fXBrFmjXy:{\"data-framer-name\":\"use case active shooter mobile\"},Jvd362E2u:{\"data-framer-name\":\"use case - active shooter\"},kswGP0Pta:{\"data-framer-name\":\"use case network outage mobile\"},KzQWvNbsI:{\"data-framer-name\":\"use case - network outage\"},Lh0wYKZOC:{\"data-framer-name\":\"use case - hurricane\"},Nf7R5hSiW:{\"data-framer-name\":\"use case aviation hurricane\"},uALECq5M3:{\"data-framer-name\":\"use case - aviation - mobile\"},YhMr26FuT:{\"data-framer-name\":\"use case - military action\"},yno4UlJMc:{\"data-framer-name\":\"use case outbreak mobile\"},ZniDkQyHU:{\"data-framer-name\":\"use case - aviation incident\"},ZolcY4mvK:{\"data-framer-name\":\"use case - outbreak\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mfjcza\",layoutDependency:layoutDependency,layoutId:\"HVQ6JKcBH\",transition:transition,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"FAA system outage halts air traffic\"})}),className:\"framer-39r5yd\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"yxQNSHtyd\",style:{\"--extracted-a0htzi\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Missile attacks targeting energy infrastructure and trade routes\"})})},fXBrFmjXy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Multiple injuries and casualties from shooting at mall\"})})},Jvd362E2u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Multiple injuries and casualties from shooting at mall\"})})},kswGP0Pta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"FAA system outage causes grounds flights across the U.S.\"})})},KzQWvNbsI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"FAA system outage grounds flights across the U.S.\"})})},Lh0wYKZOC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Hurricane unexpectedly changes path and hits town\"})})},Nf7R5hSiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Hurricane unexpectedly hits inland town\"})})},uALECq5M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Plane crash results in lengthy traffic delays\"})})},YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Missile attacks targeting energy infrastructure and trade routes\"})})},yno4UlJMc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Bird flu cases escalate in port town\"})})},ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Plane crash results in lengthy traffic delays\"})})},ZolcY4mvK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Bird flu cases escalate in port town\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gzwkph-container\",layoutDependency:layoutDependency,layoutId:\"gZxpnStUS-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"gZxpnStUS\",layoutId:\"gZxpnStUS\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\",...addPropertyOverrides({f3PM47e_z:{variant:\"i9Jn_Ciar\"},fXBrFmjXy:{variant:\"i9Jn_Ciar\"},kswGP0Pta:{variant:\"i9Jn_Ciar\"},Nf7R5hSiW:{variant:\"i9Jn_Ciar\"},uALECq5M3:{variant:\"i9Jn_Ciar\"},yno4UlJMc:{variant:\"i9Jn_Ciar\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected in California, United States\"})}),className:\"framer-fy07zx\",\"data-framer-name\":\"Detected in Seattle, Washington, United States\",layoutDependency:layoutDependency,layoutId:\"Sv9QbKuvc\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"bottom\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Detected Along Border\"})})},fXBrFmjXy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Detected at Shopping Centre\"})})},Jvd362E2u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected at Shopping Center\"})})},kswGP0Pta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Detected at International Airport\"})})},KzQWvNbsI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected International Airport\"})})},Lh0wYKZOC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected in Gulf Coast\"})})},Nf7R5hSiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Detected in Gulf Coast\"})})},uALECq5M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Detected at Municipal Airport\"})})},YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected Along Border\"})})},yno4UlJMc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Detected in Local Hospital\"})})},ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected at Municipal Airport\"})})},ZolcY4mvK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Detected in Local Hospital\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-70r7rg-container\",layoutDependency:layoutDependency,layoutId:\"jiK3SvrNo-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"jiK3SvrNo\",layoutId:\"jiK3SvrNo\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\",...addPropertyOverrides({f3PM47e_z:{variant:\"i9Jn_Ciar\"},fXBrFmjXy:{variant:\"i9Jn_Ciar\"},kswGP0Pta:{variant:\"i9Jn_Ciar\"},Nf7R5hSiW:{variant:\"i9Jn_Ciar\"},uALECq5M3:{variant:\"i9Jn_Ciar\"},yno4UlJMc:{variant:\"i9Jn_Ciar\"}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bcun4c\",layoutDependency:layoutDependency,layoutId:\"gX492043U\",transition:transition,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-gosku3\",layoutDependency:layoutDependency,layoutId:\"xtnQ5virf\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Climate\"})}),className:\"framer-4l7pga\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"sJv2iW7Ev\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7dvyn2\",layoutDependency:layoutDependency,layoutId:\"xC2ZiQC8E\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Strong Winds\"})}),className:\"framer-1gqi973\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"xWDP9pp9E\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-g216hu\",layoutDependency:layoutDependency,layoutId:\"FAceAKDyx\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Hurricane\"})}),className:\"framer-1knd3s7\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"izq4M6C1m\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qxwdzs\",layoutDependency:layoutDependency,layoutId:\"VDi6nIRZW\",transition:transition,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3p3jce\",layoutDependency:layoutDependency,layoutId:\"ztWYpCMHw\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Emergency and Safety\"})}),className:\"framer-qxxo8t\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"ac5J6YGvT\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fkkgbt\",layoutDependency:layoutDependency,layoutId:\"otJGUnc_p\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Active Shooter\"})}),className:\"framer-1gk53q7\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"MsPIJAaKj\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-149o5tm\",layoutDependency:layoutDependency,layoutId:\"Br21gfoSL\",transition:transition,children:[isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rvjg5u\",layoutDependency:layoutDependency,layoutId:\"O8eTDT3w0\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Delays\"})}),className:\"framer-1buo2nb\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"dQlgh8zpw\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Jvd362E2u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Emergency and Safety\"})})},KzQWvNbsI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Infrastructure\"})})},Lh0wYKZOC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Climate\"})})},uALECq5M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Infrastructure\"})})},YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Air Raid Sirens\"})})},ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Infrastructure\"})})},ZolcY4mvK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Disease\"})})}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jvvs9x\",layoutDependency:layoutDependency,layoutId:\"Q53VoPfOz\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Air Traffic\"})}),className:\"framer-6jfhon\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"GhBN1rgp6\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Border Closure\"})})},ZolcY4mvK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Flu\"})})}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-c6ig0z\",layoutDependency:layoutDependency,layoutId:\"DuDhLCI35\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Strong Winds\"})}),className:\"framer-14cs75n\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"ovM2gjlPI\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1bilt\",layoutDependency:layoutDependency,layoutId:\"PeACwsMGj\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Closures\"})}),className:\"framer-1has20q\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"xqmfh1aBj\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,variants:{ZniDkQyHU:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Closures\"})})}},baseVariant,gestureVariant)})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bcpmj9\",layoutDependency:layoutDependency,layoutId:\"nsbgXr4jq\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Closures\"})}),className:\"framer-1men63u\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"ON7RAUP8v\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({Jvd362E2u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Active Shooter\"})})},KzQWvNbsI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Delays\"})})},Lh0wYKZOC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Hurricane\"})})},uALECq5M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Traffic\"})})},YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"State of Emergency\"})})},ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Traffic\"})})}},baseVariant,gestureVariant)})}),isDisplayed8()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jhco36\",layoutDependency:layoutDependency,layoutId:\"BJbeojjqa\",transition:transition,children:[isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y3ekbe\",layoutDependency:layoutDependency,layoutId:\"fkj8ehma1\",transition:transition,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-a0xof3\",layoutDependency:layoutDependency,layoutId:\"hZiv7l_Ho\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,...addPropertyOverrides({f3PM47e_z:{transformTemplate}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Infrastructure\"})}),className:\"framer-1fepvlu\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"GDNQzzng7\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Air Raid Sirens\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19q1or3\",layoutDependency:layoutDependency,layoutId:\"BGdfFYNKh\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,...addPropertyOverrides({f3PM47e_z:{transformTemplate}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Air Traffic\"})}),className:\"framer-1x60rga\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"CTCEhlWYV\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Border Closure\"})})}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sftng0\",layoutDependency:layoutDependency,layoutId:\"xuyB_MlN8\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Delays\"})}),className:\"framer-15f2s2p\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"k252C6NYi\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"State of Emergency\"})})},yno4UlJMc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Disease\"})})}},baseVariant,gestureVariant)})}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-g62q3z\",layoutDependency:layoutDependency,layoutId:\"xiDyvUnef\",style:{backgroundColor:\"rgb(230, 230, 230)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},transition:transition,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",children:\"Flu\"})}),className:\"framer-o6402w\",\"data-framer-name\":\"Reports of a plane crash near country road elementary school\",layoutDependency:layoutDependency,layoutId:\"AOuq42L9v\",style:{\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17bk25s-container\",layoutDependency:layoutDependency,layoutId:\"gDRGfcNJa-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"gDRGfcNJa\",layoutId:\"gDRGfcNJa\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-83c2vc\",layoutDependency:layoutDependency,layoutId:\"xwIxLvgW9\",transition:transition,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tkc6rd\",layoutDependency:layoutDependency,layoutId:\"tw2l86zIf\",transition:transition,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zbw7wg-container\",layoutDependency:layoutDependency,layoutId:\"o3MRwIYF8-container\",transition:transition,children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34)) /* {\"name\":\"Black\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"XCircle\",id:\"o3MRwIYF8\",layoutId:\"o3MRwIYF8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ficqw2\",layoutDependency:layoutDependency,layoutId:\"rUIQdEy6l\",transition:transition,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-18xlc1u\",\"data-styles-preset\":\"rjCAMPSoJ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"Without samdesk\"})}),className:\"framer-1ixh3x4\",\"data-framer-name\":\"Step One. This happened.\",layoutDependency:layoutDependency,layoutId:\"f8rpLYUqZ\",style:{\"--extracted-a0htzi\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You hear rumblings from collegues that something is happening with their flight. You are not aware of the widespread scale until much later.\"})}),className:\"framer-jcv2l1\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Elit dolor ullamcorper purus molestie lorem leo cras ornare tincidunt. Purus ac et enim scelerisque.\",layoutDependency:layoutDependency,layoutId:\"ds7BA1BR5\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get several panicked messages from your HR counterpart asking how to evacuate employees in a country under attack. You start researching where all the attacks are taking place, trying to verify information you find and it takes several days before you have a concrete plan.\"})})},fXBrFmjXy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get a text from your CEO asking if you've seen the news about a shooting at the mall where one of your stores is located. You search online and find several casualties were reported an hour ago, so you frantically try to reach all your co-workers\"})})},Jvd362E2u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get a text from your CEO asking if you've seen the news about a shooting at the mall where one of your stores is located. You search online and find several casualties were reported an hour ago, so you frantically try to reach all your co-workers\"})})},kswGP0Pta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You hear rumblings from colleagues that flights are being delayed and cancelled. You are not aware of the widespread scale until much later and are scrambling to account for everyone who might be impacted.\"})})},KzQWvNbsI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You hear rumblings from colleagues that flights are being delayed and cancelled. You are not aware of the widespread scale until much later and are scrambling to account for everyone who might be impacted.\"})})},Lh0wYKZOC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You check the news in the morning and see that overnight a hurricane hit a town where your organization has a factory. You contact the factory managers, but get no response. It takes you several hours of scouring multiple news sites and social platforms before you realize that your factory is destroyed.\"})})},Nf7R5hSiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You check the news in the morning and see that overnight a hurricane hit a town where your organization has a factory. You contact the factory managers, but get no response. It takes you several hours of scouring multiple news sites and social platforms before you realize that your factory is destroyed.\"})})},uALECq5M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You start seeing posts on social media about children in your school district not arriving home. The number of posts rapidly grows and get increasingly negative as parents vent about a lack of communication.\"})})},YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get several panicked messages from your HR counterpart asking how to evacuate employees in a country under attack. You start researching where all the attacks are taking place, trying to verify information you find and it takes several days before you have a concrete plan.\"})})},yno4UlJMc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You hear that a growing number of workers at a manufacturing facility have been out sick for several days and production stopped due to staffing shortages. Your HR, finance and operations colleagues are now frantically playing catch up.\"})})},ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You start seeing posts on social media about children in your school district not arriving home. The number of posts rapidly grows and get increasingly negative as parents vent about a lack of communication.\"})})},ZolcY4mvK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You hear that a growing number of workers at a manufacturing facility have been out sick for several days and production stopped due to staffing shortages. Your HR, finance and operations colleagues are now frantically playing catch up.\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i9h3hp-container\",layoutDependency:layoutDependency,layoutId:\"qYDv7bl5B-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"qYDv7bl5B\",layoutId:\"qYDv7bl5B\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\",...addPropertyOverrides({f3PM47e_z:{variant:\"q253cR7vY\"},fXBrFmjXy:{variant:\"q253cR7vY\"},kswGP0Pta:{variant:\"q253cR7vY\"},Nf7R5hSiW:{variant:\"q253cR7vY\"},uALECq5M3:{variant:\"q253cR7vY\"},yno4UlJMc:{variant:\"q253cR7vY\"}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fjtp97\",layoutDependency:layoutDependency,layoutId:\"mX0WYVMyZ\",transition:transition,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-r1t0wq-container\",layoutDependency:layoutDependency,layoutId:\"WZDRQ_ku5-container\",transition:transition,children:/*#__PURE__*/_jsx(Phosphor,{color:'var(--token-940d61a0-6a2e-406a-a286-2a47cfa15622, rgb(33, 150, 83)) /* {\"name\":\"Green - Primary\"} */',height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"WZDRQ_ku5\",layoutId:\"WZDRQ_ku5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cklmpt\",layoutDependency:layoutDependency,layoutId:\"FASSv6JW5\",transition:transition,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-18xlc1u\",\"data-styles-preset\":\"rjCAMPSoJ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi)\"},children:\"With samdesk\"})}),className:\"framer-1fcysbc\",\"data-framer-name\":\"Step One. This happened.\",layoutDependency:layoutDependency,layoutId:\"kwQKNt_CS\",style:{\"--extracted-a0htzi\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get notified instantly of a FAA network issue that is impacting nearly every domestic flight. You are informed it will impact 15 travellers within your firm and might delay shipments expected tomorrow. You spring into action getting ahead of escalations.\"})}),className:\"framer-144tq4u\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Elit dolor ullamcorper purus molestie lorem leo cras ornare tincidunt. Purus ac et enim scelerisque.\",layoutDependency:layoutDependency,layoutId:\"YhU2nLRYw\",style:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\",\"--framer-paragraph-spacing\":\"0px\"},transition:transition,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({f3PM47e_z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You are alerted to soldiers and artillery amassing at the border of a country where you have hundreds of employees, and you share the intel with local management and HR. They request continuous updates on the situation as they start planning to halt operations and move everyone to safety.\"})})},fXBrFmjXy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get alerted about a potential active shooter at a mall where one of your stores is located. You contact the store to initiate lockdown procedures and confirm everyone is safe. You send continuous updates to the team until the situation is clear, and notify your CEO before they ask you for details.\"})})},Jvd362E2u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get alerted about a potential active shooter at a mall where one of your stores is located. You contact the store to initiate lockdown procedures and confirm everyone is safe. You send continuous updates to the team until the situation is clear, and notify your CEO before they ask you for details.\"})})},kswGP0Pta:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get notified instantly of a FAA network issue that is impacting nearly every domestic flight. You are informed it will impact 15 travellers within your organization and might delay shipments expected tomorrow. You notify every person and department impacted, and start working through contingency plans.\"})})},KzQWvNbsI:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You get notified instantly of a FAA network issue that is impacting nearly every domestic flight. You are informed it will impact 15 travellers within your organization and might delay shipments expected tomorrow. You notify every person and department impacted, and start working through contingency plans.\"})})},Lh0wYKZOC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You are notified that a hurricane has changed direction and is heading toward a town where your organization has a factory. You alert factory managers, supervisors and employees. They immediately enact the emergency action plan, getting everyone to safety and minimizing damage as much as possible when the hurricane hits.\"})})},Nf7R5hSiW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You are notified that a hurricane has changed direction and is heading toward a town where your organization has a factory. You alert factory managers, supervisors and employees. They immediately enact the emergency action plan, getting everyone to safety and minimizing damage as much as possible when the hurricane hits.\"})})},uALECq5M3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You see an alert about a plane crash at the local airport and quickly determine that traffic delays could impact children at dismissal time. You make sure schools, bus companies and parents are notified of the plan to send children home early and avoid the traffic.\"})})},YhMr26FuT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You are alerted to soldiers and artillery amassing at the border of a country where you have hundreds of employees, and you share the intel with local management and HR. They request continuous updates on the situation as they start planning to halt operations and move everyone to safety.\"})})},yno4UlJMc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You're notified of initial bird flu cases reported in a town where your organization has a manufacturing facility. You alert local management, HR and operations so they can implement preventative measures, secure PPE and help employees monitor their health.\"})})},ZniDkQyHU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You see an alert about a plane crash at the local airport and quickly determine that traffic delays could impact children at dismissal time. You make sure schools, bus companies and parents are notified of the plan to send children home early and avoid the traffic.\"})})},ZolcY4mvK:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"You're notified of initial bird flu cases reported in a town where your organization has a manufacturing facility. You alert local management, HR and operations so they can implement preventative measures, secure PPE and help employees monitor their health.\"})})}},baseVariant,gestureVariant)})]})]}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zfxh7i-container\",layoutDependency:layoutDependency,layoutId:\"OT6azAsTT-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"OT6azAsTT\",layoutId:\"OT6azAsTT\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3950ar-container\",layoutDependency:layoutDependency,layoutId:\"qclKQRH7W-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"qclKQRH7W\",layoutId:\"qclKQRH7W\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ox0tjw-container\",layoutDependency:layoutDependency,layoutId:\"L5l_YsQNK-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"L5l_YsQNK\",layoutId:\"L5l_YsQNK\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})}),isDisplayed11()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-4wb93p-container\",layoutDependency:layoutDependency,layoutId:\"CjWCAwuxY-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"CjWCAwuxY\",layoutId:\"CjWCAwuxY\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})]})]})})});});const css=['.framer-GnBh1 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-GnBh1 * { box-sizing: border-box; }\",\".framer-GnBh1 .framer-kb7f0l { display: block; }\",\".framer-GnBh1 .framer-1hzgrsm { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 576px; }\",\".framer-GnBh1 .framer-mfjcza { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 29px; position: relative; width: 100%; }\",\".framer-GnBh1 .framer-39r5yd, .framer-GnBh1 .framer-jcv2l1, .framer-GnBh1 .framer-144tq4u { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GnBh1 .framer-gzwkph-container, .framer-GnBh1 .framer-70r7rg-container, .framer-GnBh1 .framer-1i9h3hp-container, .framer-GnBh1 .framer-zfxh7i-container, .framer-GnBh1 .framer-3950ar-container, .framer-GnBh1 .framer-1ox0tjw-container, .framer-GnBh1 .framer-4wb93p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-GnBh1 .framer-fy07zx { flex: none; height: 16px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-GnBh1 .framer-1bcun4c, .framer-GnBh1 .framer-14v5na, .framer-GnBh1 .framer-qxwdzs, .framer-GnBh1 .framer-gl6bov, .framer-GnBh1 .framer-149o5tm, .framer-GnBh1 .framer-jhco36 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-GnBh1 .framer-1rwlb8k, .framer-GnBh1 .framer-zmc2ct, .framer-GnBh1 .framer-gosku3, .framer-GnBh1 .framer-fqc5vg, .framer-GnBh1 .framer-7dvyn2, .framer-GnBh1 .framer-8mamm8, .framer-GnBh1 .framer-g216hu, .framer-GnBh1 .framer-15qnzaf, .framer-GnBh1 .framer-1v8w1ty, .framer-GnBh1 .framer-3p3jce, .framer-GnBh1 .framer-lftud4, .framer-GnBh1 .framer-1sqoiah, .framer-GnBh1 .framer-1468fu6, .framer-GnBh1 .framer-fkkgbt, .framer-GnBh1 .framer-1adpvoy, .framer-GnBh1 .framer-c0krj2, .framer-GnBh1 .framer-1rvjg5u, .framer-GnBh1 .framer-1jvvs9x, .framer-GnBh1 .framer-c6ig0z, .framer-GnBh1 .framer-s1bilt, .framer-GnBh1 .framer-1bcpmj9, .framer-GnBh1 .framer-tk4d14, .framer-GnBh1 .framer-1pprut, .framer-GnBh1 .framer-dfc6co, .framer-GnBh1 .framer-wtvwdc, .framer-GnBh1 .framer-1sftng0, .framer-GnBh1 .framer-g62q3z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-GnBh1 .framer-4l7pga, .framer-GnBh1 .framer-1gqi973, .framer-GnBh1 .framer-1knd3s7, .framer-GnBh1 .framer-qxxo8t, .framer-GnBh1 .framer-1gk53q7, .framer-GnBh1 .framer-1buo2nb, .framer-GnBh1 .framer-6jfhon, .framer-GnBh1 .framer-14cs75n, .framer-GnBh1 .framer-1has20q, .framer-GnBh1 .framer-1men63u, .framer-GnBh1 .framer-1fepvlu, .framer-GnBh1 .framer-1x60rga, .framer-GnBh1 .framer-15f2s2p, .framer-GnBh1 .framer-o6402w { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-GnBh1 .framer-1y3ekbe { flex: none; height: 201px; overflow: visible; position: relative; width: 201px; }\",\".framer-GnBh1 .framer-a0xof3, .framer-GnBh1 .framer-19q1or3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: absolute; right: -94px; top: -146px; width: min-content; }\",\".framer-GnBh1 .framer-17bk25s-container { flex: none; height: auto; position: relative; width: 480px; }\",\".framer-GnBh1 .framer-83c2vc { 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 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GnBh1 .framer-dwcvve, .framer-GnBh1 .framer-1gkhc3o, .framer-GnBh1 .framer-1cqis7o, .framer-GnBh1 .framer-42q5o9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GnBh1 .framer-1tkc6rd, .framer-GnBh1 .framer-fjtp97 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-GnBh1 .framer-zbw7wg-container, .framer-GnBh1 .framer-r1t0wq-container { flex: none; height: 30px; position: relative; width: 22px; }\",\".framer-GnBh1 .framer-1ficqw2, .framer-GnBh1 .framer-cklmpt { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-GnBh1 .framer-1ixh3x4, .framer-GnBh1 .framer-1fcysbc { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GnBh1 .framer-1hzgrsm, .framer-GnBh1 .framer-mfjcza, .framer-GnBh1 .framer-1bcun4c, .framer-GnBh1 .framer-1rwlb8k, .framer-GnBh1 .framer-zmc2ct, .framer-GnBh1 .framer-gosku3, .framer-GnBh1 .framer-fqc5vg, .framer-GnBh1 .framer-7dvyn2, .framer-GnBh1 .framer-8mamm8, .framer-GnBh1 .framer-g216hu, .framer-GnBh1 .framer-14v5na, .framer-GnBh1 .framer-qxwdzs, .framer-GnBh1 .framer-15qnzaf, .framer-GnBh1 .framer-1v8w1ty, .framer-GnBh1 .framer-3p3jce, .framer-GnBh1 .framer-lftud4, .framer-GnBh1 .framer-1sqoiah, .framer-GnBh1 .framer-1468fu6, .framer-GnBh1 .framer-fkkgbt, .framer-GnBh1 .framer-gl6bov, .framer-GnBh1 .framer-149o5tm, .framer-GnBh1 .framer-1adpvoy, .framer-GnBh1 .framer-c0krj2, .framer-GnBh1 .framer-1rvjg5u, .framer-GnBh1 .framer-1jvvs9x, .framer-GnBh1 .framer-c6ig0z, .framer-GnBh1 .framer-s1bilt, .framer-GnBh1 .framer-1bcpmj9, .framer-GnBh1 .framer-jhco36, .framer-GnBh1 .framer-tk4d14, .framer-GnBh1 .framer-1pprut, .framer-GnBh1 .framer-a0xof3, .framer-GnBh1 .framer-19q1or3, .framer-GnBh1 .framer-dfc6co, .framer-GnBh1 .framer-wtvwdc, .framer-GnBh1 .framer-1sftng0, .framer-GnBh1 .framer-g62q3z, .framer-GnBh1 .framer-83c2vc, .framer-GnBh1 .framer-dwcvve, .framer-GnBh1 .framer-1gkhc3o, .framer-GnBh1 .framer-1cqis7o, .framer-GnBh1 .framer-42q5o9, .framer-GnBh1 .framer-1tkc6rd, .framer-GnBh1 .framer-1ficqw2, .framer-GnBh1 .framer-fjtp97, .framer-GnBh1 .framer-cklmpt { gap: 0px; } .framer-GnBh1 .framer-1hzgrsm > *, .framer-GnBh1 .framer-mfjcza > *, .framer-GnBh1 .framer-83c2vc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-GnBh1 .framer-1hzgrsm > :first-child, .framer-GnBh1 .framer-mfjcza > :first-child, .framer-GnBh1 .framer-83c2vc > :first-child, .framer-GnBh1 .framer-1ficqw2 > :first-child, .framer-GnBh1 .framer-cklmpt > :first-child { margin-top: 0px; } .framer-GnBh1 .framer-1hzgrsm > :last-child, .framer-GnBh1 .framer-mfjcza > :last-child, .framer-GnBh1 .framer-83c2vc > :last-child, .framer-GnBh1 .framer-1ficqw2 > :last-child, .framer-GnBh1 .framer-cklmpt > :last-child { margin-bottom: 0px; } .framer-GnBh1 .framer-1bcun4c > *, .framer-GnBh1 .framer-1rwlb8k > *, .framer-GnBh1 .framer-zmc2ct > *, .framer-GnBh1 .framer-gosku3 > *, .framer-GnBh1 .framer-fqc5vg > *, .framer-GnBh1 .framer-7dvyn2 > *, .framer-GnBh1 .framer-8mamm8 > *, .framer-GnBh1 .framer-g216hu > *, .framer-GnBh1 .framer-14v5na > *, .framer-GnBh1 .framer-qxwdzs > *, .framer-GnBh1 .framer-15qnzaf > *, .framer-GnBh1 .framer-1v8w1ty > *, .framer-GnBh1 .framer-3p3jce > *, .framer-GnBh1 .framer-lftud4 > *, .framer-GnBh1 .framer-1sqoiah > *, .framer-GnBh1 .framer-1468fu6 > *, .framer-GnBh1 .framer-fkkgbt > *, .framer-GnBh1 .framer-gl6bov > *, .framer-GnBh1 .framer-149o5tm > *, .framer-GnBh1 .framer-1adpvoy > *, .framer-GnBh1 .framer-c0krj2 > *, .framer-GnBh1 .framer-1rvjg5u > *, .framer-GnBh1 .framer-1jvvs9x > *, .framer-GnBh1 .framer-c6ig0z > *, .framer-GnBh1 .framer-s1bilt > *, .framer-GnBh1 .framer-1bcpmj9 > *, .framer-GnBh1 .framer-jhco36 > *, .framer-GnBh1 .framer-tk4d14 > *, .framer-GnBh1 .framer-1pprut > *, .framer-GnBh1 .framer-a0xof3 > *, .framer-GnBh1 .framer-19q1or3 > *, .framer-GnBh1 .framer-dfc6co > *, .framer-GnBh1 .framer-wtvwdc > *, .framer-GnBh1 .framer-1sftng0 > *, .framer-GnBh1 .framer-g62q3z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-GnBh1 .framer-1bcun4c > :first-child, .framer-GnBh1 .framer-1rwlb8k > :first-child, .framer-GnBh1 .framer-zmc2ct > :first-child, .framer-GnBh1 .framer-gosku3 > :first-child, .framer-GnBh1 .framer-fqc5vg > :first-child, .framer-GnBh1 .framer-7dvyn2 > :first-child, .framer-GnBh1 .framer-8mamm8 > :first-child, .framer-GnBh1 .framer-g216hu > :first-child, .framer-GnBh1 .framer-14v5na > :first-child, .framer-GnBh1 .framer-qxwdzs > :first-child, .framer-GnBh1 .framer-15qnzaf > :first-child, .framer-GnBh1 .framer-1v8w1ty > :first-child, .framer-GnBh1 .framer-3p3jce > :first-child, .framer-GnBh1 .framer-lftud4 > :first-child, .framer-GnBh1 .framer-1sqoiah > :first-child, .framer-GnBh1 .framer-1468fu6 > :first-child, .framer-GnBh1 .framer-fkkgbt > :first-child, .framer-GnBh1 .framer-gl6bov > :first-child, .framer-GnBh1 .framer-149o5tm > :first-child, .framer-GnBh1 .framer-1adpvoy > :first-child, .framer-GnBh1 .framer-c0krj2 > :first-child, .framer-GnBh1 .framer-1rvjg5u > :first-child, .framer-GnBh1 .framer-1jvvs9x > :first-child, .framer-GnBh1 .framer-c6ig0z > :first-child, .framer-GnBh1 .framer-s1bilt > :first-child, .framer-GnBh1 .framer-1bcpmj9 > :first-child, .framer-GnBh1 .framer-jhco36 > :first-child, .framer-GnBh1 .framer-tk4d14 > :first-child, .framer-GnBh1 .framer-1pprut > :first-child, .framer-GnBh1 .framer-a0xof3 > :first-child, .framer-GnBh1 .framer-19q1or3 > :first-child, .framer-GnBh1 .framer-dfc6co > :first-child, .framer-GnBh1 .framer-wtvwdc > :first-child, .framer-GnBh1 .framer-1sftng0 > :first-child, .framer-GnBh1 .framer-g62q3z > :first-child, .framer-GnBh1 .framer-dwcvve > :first-child, .framer-GnBh1 .framer-1gkhc3o > :first-child, .framer-GnBh1 .framer-1cqis7o > :first-child, .framer-GnBh1 .framer-42q5o9 > :first-child, .framer-GnBh1 .framer-1tkc6rd > :first-child, .framer-GnBh1 .framer-fjtp97 > :first-child { margin-left: 0px; } .framer-GnBh1 .framer-1bcun4c > :last-child, .framer-GnBh1 .framer-1rwlb8k > :last-child, .framer-GnBh1 .framer-zmc2ct > :last-child, .framer-GnBh1 .framer-gosku3 > :last-child, .framer-GnBh1 .framer-fqc5vg > :last-child, .framer-GnBh1 .framer-7dvyn2 > :last-child, .framer-GnBh1 .framer-8mamm8 > :last-child, .framer-GnBh1 .framer-g216hu > :last-child, .framer-GnBh1 .framer-14v5na > :last-child, .framer-GnBh1 .framer-qxwdzs > :last-child, .framer-GnBh1 .framer-15qnzaf > :last-child, .framer-GnBh1 .framer-1v8w1ty > :last-child, .framer-GnBh1 .framer-3p3jce > :last-child, .framer-GnBh1 .framer-lftud4 > :last-child, .framer-GnBh1 .framer-1sqoiah > :last-child, .framer-GnBh1 .framer-1468fu6 > :last-child, .framer-GnBh1 .framer-fkkgbt > :last-child, .framer-GnBh1 .framer-gl6bov > :last-child, .framer-GnBh1 .framer-149o5tm > :last-child, .framer-GnBh1 .framer-1adpvoy > :last-child, .framer-GnBh1 .framer-c0krj2 > :last-child, .framer-GnBh1 .framer-1rvjg5u > :last-child, .framer-GnBh1 .framer-1jvvs9x > :last-child, .framer-GnBh1 .framer-c6ig0z > :last-child, .framer-GnBh1 .framer-s1bilt > :last-child, .framer-GnBh1 .framer-1bcpmj9 > :last-child, .framer-GnBh1 .framer-jhco36 > :last-child, .framer-GnBh1 .framer-tk4d14 > :last-child, .framer-GnBh1 .framer-1pprut > :last-child, .framer-GnBh1 .framer-a0xof3 > :last-child, .framer-GnBh1 .framer-19q1or3 > :last-child, .framer-GnBh1 .framer-dfc6co > :last-child, .framer-GnBh1 .framer-wtvwdc > :last-child, .framer-GnBh1 .framer-1sftng0 > :last-child, .framer-GnBh1 .framer-g62q3z > :last-child, .framer-GnBh1 .framer-dwcvve > :last-child, .framer-GnBh1 .framer-1gkhc3o > :last-child, .framer-GnBh1 .framer-1cqis7o > :last-child, .framer-GnBh1 .framer-42q5o9 > :last-child, .framer-GnBh1 .framer-1tkc6rd > :last-child, .framer-GnBh1 .framer-fjtp97 > :last-child { margin-right: 0px; } .framer-GnBh1 .framer-dwcvve > *, .framer-GnBh1 .framer-1gkhc3o > *, .framer-GnBh1 .framer-1cqis7o > *, .framer-GnBh1 .framer-42q5o9 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-GnBh1 .framer-1tkc6rd > *, .framer-GnBh1 .framer-fjtp97 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-GnBh1 .framer-1ficqw2 > *, .framer-GnBh1 .framer-cklmpt > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-GnBh1.framer-v-frm1l0 .framer-149o5tm, .framer-GnBh1.framer-v-frm1l0 .framer-17bk25s-container, .framer-GnBh1.framer-v-6qj6ox .framer-17bk25s-container, .framer-GnBh1.framer-v-146nik4 .framer-17bk25s-container, .framer-GnBh1.framer-v-10v1or .framer-17bk25s-container, .framer-GnBh1.framer-v-wqdfms .framer-17bk25s-container, .framer-GnBh1.framer-v-1rogncj .framer-17bk25s-container, .framer-GnBh1.framer-v-1j8t1h8 .framer-17bk25s-container { width: 100%; }\",\".framer-GnBh1.framer-v-6qj6ox .framer-1hzgrsm, .framer-GnBh1.framer-v-146nik4 .framer-1hzgrsm, .framer-GnBh1.framer-v-10v1or .framer-1hzgrsm, .framer-GnBh1.framer-v-wqdfms .framer-1hzgrsm, .framer-GnBh1.framer-v-1rogncj .framer-1hzgrsm, .framer-GnBh1.framer-v-1j8t1h8 .framer-1hzgrsm { width: 339px; }\",\".framer-GnBh1.framer-v-6qj6ox .framer-mfjcza, .framer-GnBh1.framer-v-6qj6ox .framer-83c2vc, .framer-GnBh1.framer-v-6qj6ox .framer-1tkc6rd, .framer-GnBh1.framer-v-146nik4 .framer-mfjcza, .framer-GnBh1.framer-v-146nik4 .framer-83c2vc, .framer-GnBh1.framer-v-146nik4 .framer-1tkc6rd, .framer-GnBh1.framer-v-10v1or .framer-mfjcza, .framer-GnBh1.framer-v-10v1or .framer-83c2vc, .framer-GnBh1.framer-v-10v1or .framer-1tkc6rd, .framer-GnBh1.framer-v-wqdfms .framer-mfjcza, .framer-GnBh1.framer-v-wqdfms .framer-83c2vc, .framer-GnBh1.framer-v-wqdfms .framer-1tkc6rd, .framer-GnBh1.framer-v-1rogncj .framer-mfjcza, .framer-GnBh1.framer-v-1rogncj .framer-83c2vc, .framer-GnBh1.framer-v-1rogncj .framer-1tkc6rd, .framer-GnBh1.framer-v-1j8t1h8 .framer-mfjcza, .framer-GnBh1.framer-v-1j8t1h8 .framer-83c2vc, .framer-GnBh1.framer-v-1j8t1h8 .framer-1tkc6rd { width: 340px; }\",\".framer-GnBh1.framer-v-6qj6ox .framer-jcv2l1, .framer-GnBh1.framer-v-146nik4 .framer-jcv2l1, .framer-GnBh1.framer-v-10v1or .framer-jcv2l1, .framer-GnBh1.framer-v-wqdfms .framer-jcv2l1, .framer-GnBh1.framer-v-1rogncj .framer-jcv2l1, .framer-GnBh1.framer-v-1j8t1h8 .framer-jcv2l1 { width: 264px; }\",\".framer-GnBh1.framer-v-1rogncj .framer-jhco36 { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-GnBh1.framer-v-1rogncj .framer-1y3ekbe { height: 22px; width: 258px; }\",\".framer-GnBh1.framer-v-1rogncj .framer-a0xof3 { left: 0px; right: unset; top: 50%; }\",\".framer-GnBh1.framer-v-1rogncj .framer-19q1or3 { right: 0px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-GnBh1.framer-v-1rogncj .framer-jhco36 { gap: 0px; } .framer-GnBh1.framer-v-1rogncj .framer-jhco36 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-GnBh1.framer-v-1rogncj .framer-jhco36 > :first-child { margin-top: 0px; } .framer-GnBh1.framer-v-1rogncj .framer-jhco36 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 493\n * @framerIntrinsicWidth 576\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZniDkQyHU\":{\"layout\":[\"fixed\",\"auto\"]},\"Jvd362E2u\":{\"layout\":[\"fixed\",\"auto\"]},\"Lh0wYKZOC\":{\"layout\":[\"fixed\",\"auto\"]},\"KzQWvNbsI\":{\"layout\":[\"fixed\",\"auto\"]},\"uALECq5M3\":{\"layout\":[\"fixed\",\"auto\"]},\"Nf7R5hSiW\":{\"layout\":[\"fixed\",\"auto\"]},\"fXBrFmjXy\":{\"layout\":[\"fixed\",\"auto\"]},\"kswGP0Pta\":{\"layout\":[\"fixed\",\"auto\"]},\"YhMr26FuT\":{\"layout\":[\"fixed\",\"auto\"]},\"ZolcY4mvK\":{\"layout\":[\"fixed\",\"auto\"]},\"f3PM47e_z\":{\"layout\":[\"fixed\",\"auto\"]},\"yno4UlJMc\":{\"layout\":[\"fixed\",\"auto\"]}}}\n */const FramerRJbodLWdn=withCSS(Component,css,\"framer-GnBh1\");export default FramerRJbodLWdn;FramerRJbodLWdn.displayName=\"stories-1-col\";FramerRJbodLWdn.defaultProps={height:493,width:576};addPropertyControls(FramerRJbodLWdn,{variant:{options:[\"UCGYdKOdj\",\"ZniDkQyHU\",\"Jvd362E2u\",\"Lh0wYKZOC\",\"KzQWvNbsI\",\"uALECq5M3\",\"Nf7R5hSiW\",\"fXBrFmjXy\",\"kswGP0Pta\",\"YhMr26FuT\",\"ZolcY4mvK\",\"f3PM47e_z\",\"yno4UlJMc\"],optionTitles:[\"use case - primary\",\"use case - aviation incident\",\"use case - active shooter\",\"use case - hurricane\",\"use case - network outage\",\"use case - aviation - mobile\",\"use case aviation hurricane\",\"use case active shooter mobile\",\"use case network outage mobile\",\"use case - military action\",\"use case - outbreak\",\"use case military action mobile\",\"use case outbreak mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRJbodLWdn,[...SpacerFonts,...PhosphorFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRJbodLWdn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"493\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZniDkQyHU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jvd362E2u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lh0wYKZOC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KzQWvNbsI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uALECq5M3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Nf7R5hSiW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fXBrFmjXy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kswGP0Pta\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YhMr26FuT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZolcY4mvK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f3PM47e_z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yno4UlJMc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"576\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f1edf09)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,useActiveVariantCallback,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import SlideButton from\"https://framerusercontent.com/modules/z6PrUgUWmVgZPbKxuDu5/c7YCJqpPD7IwkW75zrJ4/luAuXNNti.js\";import Spacer from\"https://framerusercontent.com/modules/L0bAz157bclZ8tsGKIb9/Uzlb8Ka8znO6QXbnoKuO/otw1uWwIn.js\";import Stories1Col from\"https://framerusercontent.com/modules/eFZBtF9gdqEm7DKN3I4d/GB2N1o0jMosm9UDbHqRk/RJbodLWdn.js\";const SlideButtonFonts=getFonts(SlideButton);const SpacerFonts=getFonts(Spacer);const Stories1ColFonts=getFonts(Stories1Col);const cycleOrder=[\"neQ7bmNXB\",\"QexUiquvo\",\"z5JWBVece\",\"uGkIubDM7\",\"sV01wiHcR\",\"BIpsdnaLf\",\"x9tE3wW3j\",\"F73PuGvw6\",\"gves_9_UU\",\"W3YjeZccn\",\"AUWHpK7xz\",\"dTeUtJRm5\",\"iiWVZ0Mdw\",\"h7_0Z_5Tm\",\"CwbNmyLQU\",\"UmIoIlWcm\",\"h3v6Oqi_N\",\"DzPHrwUpw\",\"Cj6rp5x1L\"];const variantClassNames={AUWHpK7xz:\"framer-v-1vzmnvo\",BIpsdnaLf:\"framer-v-lrp5sv\",Cj6rp5x1L:\"framer-v-1o6iztl\",CwbNmyLQU:\"framer-v-vfz9qa\",dTeUtJRm5:\"framer-v-vl84b2\",DzPHrwUpw:\"framer-v-1966jht\",F73PuGvw6:\"framer-v-158bvrs\",gves_9_UU:\"framer-v-x1m176\",h3v6Oqi_N:\"framer-v-tjnnwm\",h7_0Z_5Tm:\"framer-v-1g6zxq7\",iiWVZ0Mdw:\"framer-v-z4c3ag\",neQ7bmNXB:\"framer-v-nyfmjz\",QexUiquvo:\"framer-v-hn250w\",sV01wiHcR:\"framer-v-89ffo\",uGkIubDM7:\"framer-v-jh586p\",UmIoIlWcm:\"framer-v-fle2rc\",W3YjeZccn:\"framer-v-1ucjpm5\",x9tE3wW3j:\"framer-v-khqgqm\",z5JWBVece:\"framer-v-daito7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"desktop 1\":\"QexUiquvo\",\"desktop 2\":\"z5JWBVece\",\"desktop 3\":\"uGkIubDM7\",\"desktop 4\":\"sV01wiHcR\",\"desktop 5\":\"h7_0Z_5Tm\",\"desktop 6\":\"CwbNmyLQU\",\"mobile 1\":\"W3YjeZccn\",\"mobile 2\":\"dTeUtJRm5\",\"mobile 3\":\"AUWHpK7xz\",\"mobile 4\":\"iiWVZ0Mdw\",\"mobile 5\":\"UmIoIlWcm\",\"mobile 6\":\"h3v6Oqi_N\",\"tablet 1\":\"BIpsdnaLf\",\"tablet 2\":\"x9tE3wW3j\",\"tablet 3\":\"F73PuGvw6\",\"tablet 4\":\"gves_9_UU\",\"tablet 5\":\"DzPHrwUpw\",\"tablet 6\":\"Cj6rp5x1L\",primary:\"neQ7bmNXB\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"neQ7bmNXB\",...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"neQ7bmNXB\",transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const tap10u5i56=activeVariantCallback(async(...args)=>{setVariant(\"QexUiquvo\");});const tapu0agq9=activeVariantCallback(async(...args)=>{setVariant(\"z5JWBVece\");});const tap14lbgmw=activeVariantCallback(async(...args)=>{setVariant(\"uGkIubDM7\");});const tapyoxp2d=activeVariantCallback(async(...args)=>{setVariant(\"sV01wiHcR\");});const taprpt1vf=activeVariantCallback(async(...args)=>{setVariant(\"h7_0Z_5Tm\");});const tap1ntdhbi=activeVariantCallback(async(...args)=>{setVariant(\"CwbNmyLQU\");});const isDisplayed=()=>{if([\"AUWHpK7xz\",\"dTeUtJRm5\",\"iiWVZ0Mdw\",\"UmIoIlWcm\",\"h3v6Oqi_N\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"x9tE3wW3j\",\"F73PuGvw6\",\"gves_9_UU\",\"DzPHrwUpw\",\"Cj6rp5x1L\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"BIpsdnaLf\",\"F73PuGvw6\",\"gves_9_UU\",\"W3YjeZccn\",\"DzPHrwUpw\",\"Cj6rp5x1L\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"BIpsdnaLf\",\"x9tE3wW3j\",\"gves_9_UU\",\"W3YjeZccn\",\"DzPHrwUpw\",\"Cj6rp5x1L\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"BIpsdnaLf\",\"x9tE3wW3j\",\"F73PuGvw6\",\"W3YjeZccn\",\"DzPHrwUpw\",\"Cj6rp5x1L\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if([\"BIpsdnaLf\",\"x9tE3wW3j\",\"F73PuGvw6\",\"gves_9_UU\",\"W3YjeZccn\",\"Cj6rp5x1L\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if([\"BIpsdnaLf\",\"x9tE3wW3j\",\"F73PuGvw6\",\"gves_9_UU\",\"W3YjeZccn\",\"DzPHrwUpw\"].includes(baseVariant))return false;return true;};const isDisplayed7=()=>{if(baseVariant===\"dTeUtJRm5\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"AUWHpK7xz\")return true;return false;};const isDisplayed9=()=>{if([\"iiWVZ0Mdw\",\"UmIoIlWcm\",\"h3v6Oqi_N\"].includes(baseVariant))return true;return false;};const isDisplayed10=()=>{if([\"W3YjeZccn\",\"AUWHpK7xz\",\"dTeUtJRm5\",\"iiWVZ0Mdw\",\"UmIoIlWcm\",\"h3v6Oqi_N\"].includes(baseVariant))return true;return false;};const isDisplayed11=()=>{if(baseVariant===\"h3v6Oqi_N\")return true;return false;};const isDisplayed12=()=>{if(baseVariant===\"UmIoIlWcm\")return true;return false;};const isDisplayed13=()=>{if(baseVariant===\"iiWVZ0Mdw\")return true;return false;};const isDisplayed14=()=>{if(baseVariant===\"W3YjeZccn\")return true;return false;};const isDisplayed15=()=>{if([\"W3YjeZccn\",\"AUWHpK7xz\",\"dTeUtJRm5\",\"iiWVZ0Mdw\",\"UmIoIlWcm\",\"h3v6Oqi_N\"].includes(baseVariant))return false;return true;};const isDisplayed16=()=>{if(baseVariant===\"Cj6rp5x1L\")return true;return false;};const isDisplayed17=()=>{if(baseVariant===\"DzPHrwUpw\")return true;return false;};const isDisplayed18=()=>{if(baseVariant===\"gves_9_UU\")return true;return false;};const isDisplayed19=()=>{if(baseVariant===\"F73PuGvw6\")return true;return false;};const isDisplayed20=()=>{if(baseVariant===\"x9tE3wW3j\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"BIpsdnaLf\")return true;return false;};const isDisplayed22=()=>{if([\"BIpsdnaLf\",\"x9tE3wW3j\",\"F73PuGvw6\",\"gves_9_UU\",\"DzPHrwUpw\",\"Cj6rp5x1L\"].includes(baseVariant))return false;return true;};const isDisplayed23=()=>{if(baseVariant===\"h7_0Z_5Tm\")return true;return false;};const isDisplayed24=()=>{if(baseVariant===\"CwbNmyLQU\")return true;return false;};const isDisplayed25=()=>{if(baseVariant===\"sV01wiHcR\")return true;return false;};const isDisplayed26=()=>{if(baseVariant===\"uGkIubDM7\")return true;return false;};const isDisplayed27=()=>{if(baseVariant===\"z5JWBVece\")return true;return false;};const isDisplayed28=()=>{if(baseVariant===\"QexUiquvo\")return true;return false;};const isDisplayed29=()=>{if([\"QexUiquvo\",\"z5JWBVece\",\"uGkIubDM7\",\"sV01wiHcR\",\"h7_0Z_5Tm\",\"CwbNmyLQU\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-mvtqp\",classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(\"framer-nyfmjz\",className),\"data-framer-name\":\"primary\",layoutDependency:layoutDependency,layoutId:\"neQ7bmNXB\",ref:ref,style:{backgroundColor:\"rgb(246, 246, 246)\",...style},transition:transition,...addPropertyOverrides({AUWHpK7xz:{\"data-framer-name\":\"mobile 3\"},BIpsdnaLf:{\"data-framer-name\":\"tablet 1\"},Cj6rp5x1L:{\"data-framer-name\":\"tablet 6\"},CwbNmyLQU:{\"data-framer-name\":\"desktop 6\"},dTeUtJRm5:{\"data-framer-name\":\"mobile 2\"},DzPHrwUpw:{\"data-framer-name\":\"tablet 5\"},F73PuGvw6:{\"data-framer-name\":\"tablet 3\"},gves_9_UU:{\"data-framer-name\":\"tablet 4\"},h3v6Oqi_N:{\"data-framer-name\":\"mobile 6\"},h7_0Z_5Tm:{\"data-framer-name\":\"desktop 5\"},iiWVZ0Mdw:{\"data-framer-name\":\"mobile 4\"},QexUiquvo:{\"data-framer-name\":\"desktop 1\"},sV01wiHcR:{\"data-framer-name\":\"desktop 4\"},uGkIubDM7:{\"data-framer-name\":\"desktop 3\"},UmIoIlWcm:{\"data-framer-name\":\"mobile 5\"},W3YjeZccn:{\"data-framer-name\":\"mobile 1\"},x9tE3wW3j:{\"data-framer-name\":\"tablet 2\"},z5JWBVece:{\"data-framer-name\":\"desktop 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qb5o51\",layoutDependency:layoutDependency,layoutId:\"aXrxEmOIb\",transition:transition,children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-oij4bt-container\",layoutDependency:layoutDependency,layoutId:\"IjTLwKcGB-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"IjTLwKcGB\",layoutId:\"IjTLwKcGB\",style:{height:\"100%\",width:\"100%\"},tap:tap10u5i56,title:\"Aviation Incident\",variant:\"emYAZid7O\",width:\"100%\",...addPropertyOverrides({CwbNmyLQU:{variant:\"pz2MQsVNp\"},h7_0Z_5Tm:{variant:\"pz2MQsVNp\"},sV01wiHcR:{variant:\"pz2MQsVNp\"},uGkIubDM7:{variant:\"pz2MQsVNp\"},z5JWBVece:{variant:\"pz2MQsVNp\"}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ydai8u-container\",layoutDependency:layoutDependency,layoutId:\"Fdy2hxS0z-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"Fdy2hxS0z\",layoutId:\"Fdy2hxS0z\",style:{height:\"100%\",width:\"100%\"},tap:tapu0agq9,title:\"Active Shooter\",variant:\"pz2MQsVNp\",width:\"100%\",...addPropertyOverrides({x9tE3wW3j:{variant:\"hQt_HpfLh\"},z5JWBVece:{variant:\"hQt_HpfLh\"}},baseVariant,gestureVariant)})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15b03xs-container\",layoutDependency:layoutDependency,layoutId:\"pV9xmJSWU-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"pV9xmJSWU\",layoutId:\"pV9xmJSWU\",style:{height:\"100%\",width:\"100%\"},tap:tap14lbgmw,title:\"Hurricane\",variant:\"pz2MQsVNp\",width:\"100%\",...addPropertyOverrides({F73PuGvw6:{variant:\"fcKUlYrl3\"},uGkIubDM7:{variant:\"fcKUlYrl3\"}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k1at5b-container\",layoutDependency:layoutDependency,layoutId:\"YDgsYRrVB-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"YDgsYRrVB\",layoutId:\"YDgsYRrVB\",style:{height:\"100%\",width:\"100%\"},tap:tapyoxp2d,title:\"Network Outage\",variant:\"pz2MQsVNp\",width:\"100%\",...addPropertyOverrides({gves_9_UU:{variant:\"emYAZid7O\"},sV01wiHcR:{variant:\"emYAZid7O\"}},baseVariant,gestureVariant)})}),isDisplayed5()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1di9wwx-container\",layoutDependency:layoutDependency,layoutId:\"nwj2Dy3wt-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"nwj2Dy3wt\",layoutId:\"nwj2Dy3wt\",style:{height:\"100%\",width:\"100%\"},tap:taprpt1vf,title:\"Military Action\",variant:\"pz2MQsVNp\",width:\"100%\",...addPropertyOverrides({DzPHrwUpw:{variant:\"kfUUoYygi\"},h7_0Z_5Tm:{variant:\"kfUUoYygi\"}},baseVariant,gestureVariant)})}),isDisplayed6()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7iy10f-container\",layoutDependency:layoutDependency,layoutId:\"heUVMmgPW-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"heUVMmgPW\",layoutId:\"heUVMmgPW\",style:{height:\"100%\",width:\"100%\"},tap:tap1ntdhbi,title:\"Outbreak\",variant:\"pz2MQsVNp\",width:\"100%\",...addPropertyOverrides({Cj6rp5x1L:{variant:\"sryS_Fq3l\"},CwbNmyLQU:{variant:\"sryS_Fq3l\"}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17pn01a-container\",layoutDependency:layoutDependency,layoutId:\"tBxS8FBak-container\",transition:transition,children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"tBxS8FBak\",layoutId:\"tBxS8FBak\",style:{height:\"100%\",width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})}),isDisplayed7()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yo1zsq-container\",layoutDependency:layoutDependency,layoutId:\"tt2NUXYHk-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"tt2NUXYHk\",layoutId:\"tt2NUXYHk\",style:{height:\"100%\",width:\"100%\"},title:\"Active Shooter\",variant:\"hQt_HpfLh\",width:\"100%\"})}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-16azyw-container\",layoutDependency:layoutDependency,layoutId:\"dZGOIbiDE-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"dZGOIbiDE\",layoutId:\"dZGOIbiDE\",style:{height:\"100%\",width:\"100%\"},title:\"Hurricane\",variant:\"fcKUlYrl3\",width:\"100%\"})}),isDisplayed9()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pt2vv4-container\",layoutDependency:layoutDependency,layoutId:\"n83NOf1IR-container\",transition:transition,children:/*#__PURE__*/_jsx(SlideButton,{height:\"100%\",id:\"n83NOf1IR\",layoutId:\"n83NOf1IR\",style:{height:\"100%\",width:\"100%\"},title:\"Network Outage\",variant:\"emYAZid7O\",width:\"100%\",...addPropertyOverrides({h3v6Oqi_N:{title:\"Outbreak\",variant:\"sryS_Fq3l\"},UmIoIlWcm:{title:\"Military Action\",variant:\"kfUUoYygi\"}},baseVariant,gestureVariant)})}),isDisplayed10()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yf6hgb-container\",layoutDependency:layoutDependency,layoutId:\"OqPGtY9wO-container\",transition:transition,children:/*#__PURE__*/_jsx(Stories1Col,{height:\"100%\",id:\"OqPGtY9wO\",layoutId:\"OqPGtY9wO\",style:{width:\"100%\"},variant:\"uALECq5M3\",width:\"100%\",...addPropertyOverrides({AUWHpK7xz:{variant:\"Nf7R5hSiW\"},dTeUtJRm5:{variant:\"fXBrFmjXy\"},h3v6Oqi_N:{variant:\"yno4UlJMc\"},iiWVZ0Mdw:{variant:\"kswGP0Pta\"},UmIoIlWcm:{variant:\"f3PM47e_z\"}},baseVariant,gestureVariant)})}),isDisplayed11()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-byf5ft\",\"data-framer-name\":\"outbreak\",layoutDependency:layoutDependency,layoutId:\"VYQkSbgIy\",transition:transition}),isDisplayed12()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1mdifc8\",\"data-framer-name\":\"military_action\",layoutDependency:layoutDependency,layoutId:\"NLKDsSnhD\",transition:transition}),isDisplayed13()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-e9z39\",\"data-framer-name\":\"system_outage\",layoutDependency:layoutDependency,layoutId:\"bgAzmHO_Z\",transition:transition}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1j0zs2z\",\"data-framer-name\":\"hurricane\",layoutDependency:layoutDependency,layoutId:\"V3eMZWWb6\",transition:transition}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1ca01hj\",\"data-framer-name\":\"active_shooter\",layoutDependency:layoutDependency,layoutId:\"rxDuyb8R0\",transition:transition}),isDisplayed14()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-3rf6y2\",\"data-framer-name\":\"aviation\",layoutDependency:layoutDependency,layoutId:\"wkjMZkLsO\",transition:transition}),isDisplayed15()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4usz10\",layoutDependency:layoutDependency,layoutId:\"LRF2SNaQx\",transition:transition,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-148j0g4-container\",layoutDependency:layoutDependency,layoutId:\"ViqN2PMu6-container\",transition:transition,children:/*#__PURE__*/_jsx(Stories1Col,{height:\"100%\",id:\"ViqN2PMu6\",layoutId:\"ViqN2PMu6\",style:{width:\"100%\"},variant:\"Lh0wYKZOC\",width:\"100%\",...addPropertyOverrides({BIpsdnaLf:{variant:\"ZniDkQyHU\"},Cj6rp5x1L:{variant:\"ZolcY4mvK\"},CwbNmyLQU:{variant:\"ZolcY4mvK\"},DzPHrwUpw:{variant:\"YhMr26FuT\"},gves_9_UU:{variant:\"KzQWvNbsI\"},h7_0Z_5Tm:{variant:\"YhMr26FuT\"},QexUiquvo:{variant:\"ZniDkQyHU\"},sV01wiHcR:{variant:\"KzQWvNbsI\"},x9tE3wW3j:{variant:\"Jvd362E2u\"},z5JWBVece:{variant:\"Jvd362E2u\"}},baseVariant,gestureVariant)})}),isDisplayed16()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-190sbbj\",\"data-framer-name\":\"outbreak\",layoutDependency:layoutDependency,layoutId:\"kfPkkit_N\",transition:transition}),isDisplayed17()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1tv5yn3\",\"data-framer-name\":\"military_action\",layoutDependency:layoutDependency,layoutId:\"MciWveP0W\",transition:transition}),isDisplayed18()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1f541m5\",\"data-framer-name\":\"system_outage\",layoutDependency:layoutDependency,layoutId:\"xi1SQEwcW\",transition:transition}),isDisplayed19()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1r18ugf\",\"data-framer-name\":\"hurricane\",layoutDependency:layoutDependency,layoutId:\"dlKRXDqDb\",transition:transition}),isDisplayed20()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1nq8xcs\",\"data-framer-name\":\"active_shooter\",layoutDependency:layoutDependency,layoutId:\"FzUJv6VAv\",transition:transition}),isDisplayed21()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,src:new URL(\"assets/1024/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-gj16z2\",\"data-framer-name\":\"aviation\",layoutDependency:layoutDependency,layoutId:\"c9qP_RCMt\",transition:transition}),isDisplayed22()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ieewqz\",layoutDependency:layoutDependency,layoutId:\"cz3lgQKIu\",transition:transition,children:[isDisplayed23()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,sizes:\"580px\",src:new URL(\"assets/1024/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/XeupFceUvtQv23iLrJ38Wk0ikj8.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1vv5iwt\",\"data-framer-name\":\"military_action\",layoutDependency:layoutDependency,layoutId:\"B5Clckk_5\",transition:transition}),isDisplayed24()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,sizes:\"580px\",src:new URL(\"assets/1024/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/71eejTEPxlGFPBhXelLprC0JvpA.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-r4rmga\",\"data-framer-name\":\"outbreak\",layoutDependency:layoutDependency,layoutId:\"R5r2nFg5M\",transition:transition}),isDisplayed25()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,sizes:\"580px\",src:new URL(\"assets/1024/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/XaMYNubQsuHXJSkCrQXdpUtofEo.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1absbzc\",\"data-framer-name\":\"system_outage\",layoutDependency:layoutDependency,layoutId:\"MES5Tm7R3\",transition:transition}),isDisplayed26()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,sizes:\"580px\",src:new URL(\"assets/1024/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/RHRlXTMhP7JCerxJfr6unuwKs4.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-1awyv4u\",\"data-framer-name\":\"hurricane\",layoutDependency:layoutDependency,layoutId:\"YkbXuGkX2\",transition:transition}),isDisplayed27()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,sizes:\"580px\",src:new URL(\"assets/1024/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/gOT1aTZCnDVZC1bW3a5OMpkcbl0.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-ipdkk3\",\"data-framer-name\":\"active_shooter\",layoutDependency:layoutDependency,layoutId:\"x082Ddkta\",transition:transition}),isDisplayed28()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:773.3333333333334,intrinsicWidth:773.3333333333334,pixelHeight:1160,pixelWidth:1160,sizes:\"580px\",src:new URL(\"assets/1024/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href,srcSet:`${new URL(\"assets/512/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 512w, ${new URL(\"assets/1024/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1024w, ${new URL(\"assets/eIfNxyCcG4DrYoyvzXOaGrsSg.png\",\"https://framerusercontent.com/modules/deCdM7AwhWxOoyjQePPZ/oRFpxyliivi3sgInPupX/D15gAsfSQ.js\").href} 1160w`},className:\"framer-dgha97\",\"data-framer-name\":\"aviation\",layoutDependency:layoutDependency,layoutId:\"DDzZz8Ryw\",transition:transition}),isDisplayed29()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-vjtxkq\",layoutDependency:layoutDependency,layoutId:\"tSUMgamyo\",style:{backgroundColor:\"rgb(158, 158, 158)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},transition:transition})]})]})]})})});});const css=['.framer-mvtqp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mvtqp * { box-sizing: border-box; }\",\".framer-mvtqp .framer-1ur7mb2 { display: block; }\",\".framer-mvtqp .framer-nyfmjz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1132px; }\",\".framer-mvtqp .framer-qb5o51 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-mvtqp .framer-oij4bt-container { flex: none; height: 65px; position: relative; width: 236px; }\",\".framer-mvtqp .framer-ydai8u-container { flex: none; height: 65px; position: relative; width: 215px; }\",\".framer-mvtqp .framer-15b03xs-container, .framer-mvtqp .framer-1di9wwx-container, .framer-mvtqp .framer-7iy10f-container { flex: none; height: 65px; position: relative; width: 156px; }\",\".framer-mvtqp .framer-1k1at5b-container { flex: none; height: 65px; position: relative; width: 234px; }\",\".framer-mvtqp .framer-17pn01a-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-mvtqp .framer-1yo1zsq-container, .framer-mvtqp .framer-16azyw-container, .framer-mvtqp .framer-1pt2vv4-container { flex: none; height: 65px; position: relative; width: 340px; }\",\".framer-mvtqp .framer-1yf6hgb-container { flex: none; height: auto; position: relative; width: 344px; }\",\".framer-mvtqp .framer-byf5ft, .framer-mvtqp .framer-1mdifc8, .framer-mvtqp .framer-e9z39, .framer-mvtqp .framer-1j0zs2z, .framer-mvtqp .framer-1ca01hj, .framer-mvtqp .framer-3rf6y2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 100%; }\",\".framer-mvtqp .framer-4usz10 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-mvtqp .framer-148j0g4-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-mvtqp .framer-190sbbj, .framer-mvtqp .framer-1tv5yn3, .framer-mvtqp .framer-1f541m5, .framer-mvtqp .framer-1r18ugf, .framer-mvtqp .framer-1nq8xcs, .framer-mvtqp .framer-gj16z2 { aspect-ratio: 1 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 200px); overflow: visible; position: relative; width: 1px; }\",\".framer-mvtqp .framer-1ieewqz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-mvtqp .framer-1vv5iwt, .framer-mvtqp .framer-r4rmga, .framer-mvtqp .framer-1absbzc, .framer-mvtqp .framer-1awyv4u, .framer-mvtqp .framer-ipdkk3, .framer-mvtqp .framer-dgha97 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 580px); overflow: visible; position: relative; width: 580px; }\",\".framer-mvtqp .framer-vjtxkq { flex: none; height: 475px; overflow: hidden; position: relative; width: 585px; will-change: transform; }\",\".framer-mvtqp .framer-1i5bb4p { aspect-ratio: 1.7734375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 381px); overflow: visible; position: relative; width: 675px; }\",\".framer-mvtqp .framer-d4qsqy { aspect-ratio: 1.7734375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 380px); overflow: visible; position: relative; width: 675px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp .framer-nyfmjz, .framer-mvtqp .framer-qb5o51, .framer-mvtqp .framer-4usz10, .framer-mvtqp .framer-1ieewqz { gap: 0px; } .framer-mvtqp .framer-nyfmjz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mvtqp .framer-nyfmjz > :first-child, .framer-mvtqp .framer-1ieewqz > :first-child { margin-top: 0px; } .framer-mvtqp .framer-nyfmjz > :last-child, .framer-mvtqp .framer-1ieewqz > :last-child { margin-bottom: 0px; } .framer-mvtqp .framer-qb5o51 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mvtqp .framer-qb5o51 > :first-child, .framer-mvtqp .framer-4usz10 > :first-child { margin-left: 0px; } .framer-mvtqp .framer-qb5o51 > :last-child, .framer-mvtqp .framer-4usz10 > :last-child { margin-right: 0px; } .framer-mvtqp .framer-4usz10 > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-mvtqp .framer-1ieewqz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-mvtqp.framer-v-hn250w .framer-nyfmjz, .framer-mvtqp.framer-v-daito7 .framer-nyfmjz, .framer-mvtqp.framer-v-jh586p .framer-nyfmjz, .framer-mvtqp.framer-v-89ffo .framer-nyfmjz, .framer-mvtqp.framer-v-1g6zxq7 .framer-nyfmjz, .framer-mvtqp.framer-v-vfz9qa .framer-nyfmjz { width: 1152px; }\",\".framer-mvtqp.framer-v-hn250w .framer-oij4bt-container { order: 0; }\",\".framer-mvtqp.framer-v-hn250w .framer-ydai8u-container, .framer-mvtqp.framer-v-vl84b2 .framer-1yo1zsq-container { order: 1; }\",\".framer-mvtqp.framer-v-hn250w .framer-15b03xs-container, .framer-mvtqp.framer-v-1vzmnvo .framer-16azyw-container { order: 2; }\",\".framer-mvtqp.framer-v-hn250w .framer-1k1at5b-container, .framer-mvtqp.framer-v-z4c3ag .framer-1pt2vv4-container, .framer-mvtqp.framer-v-fle2rc .framer-1pt2vv4-container, .framer-mvtqp.framer-v-tjnnwm .framer-1pt2vv4-container { order: 3; }\",\".framer-mvtqp.framer-v-hn250w .framer-1di9wwx-container { order: 4; }\",\".framer-mvtqp.framer-v-hn250w .framer-7iy10f-container, .framer-mvtqp.framer-v-1vzmnvo .framer-1yf6hgb-container, .framer-mvtqp.framer-v-vl84b2 .framer-1yf6hgb-container, .framer-mvtqp.framer-v-z4c3ag .framer-1yf6hgb-container, .framer-mvtqp.framer-v-fle2rc .framer-1yf6hgb-container, .framer-mvtqp.framer-v-tjnnwm .framer-1yf6hgb-container { order: 5; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-nyfmjz, .framer-mvtqp.framer-v-khqgqm .framer-nyfmjz, .framer-mvtqp.framer-v-158bvrs .framer-nyfmjz, .framer-mvtqp.framer-v-x1m176 .framer-nyfmjz, .framer-mvtqp.framer-v-1ucjpm5 .framer-nyfmjz, .framer-mvtqp.framer-v-1vzmnvo .framer-nyfmjz, .framer-mvtqp.framer-v-vl84b2 .framer-nyfmjz, .framer-mvtqp.framer-v-z4c3ag .framer-nyfmjz, .framer-mvtqp.framer-v-fle2rc .framer-nyfmjz, .framer-mvtqp.framer-v-tjnnwm .framer-nyfmjz, .framer-mvtqp.framer-v-1966jht .framer-nyfmjz, .framer-mvtqp.framer-v-1o6iztl .framer-nyfmjz { width: min-content; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-qb5o51, .framer-mvtqp.framer-v-khqgqm .framer-qb5o51, .framer-mvtqp.framer-v-158bvrs .framer-qb5o51, .framer-mvtqp.framer-v-x1m176 .framer-qb5o51, .framer-mvtqp.framer-v-1966jht .framer-qb5o51, .framer-mvtqp.framer-v-1o6iztl .framer-qb5o51 { width: 762px; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-oij4bt-container, .framer-mvtqp.framer-v-khqgqm .framer-ydai8u-container, .framer-mvtqp.framer-v-158bvrs .framer-15b03xs-container, .framer-mvtqp.framer-v-x1m176 .framer-1k1at5b-container, .framer-mvtqp.framer-v-1ucjpm5 .framer-oij4bt-container, .framer-mvtqp.framer-v-1966jht .framer-1di9wwx-container, .framer-mvtqp.framer-v-1o6iztl .framer-7iy10f-container { flex: 1 0 0px; width: 1px; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-17pn01a-container, .framer-mvtqp.framer-v-khqgqm .framer-17pn01a-container, .framer-mvtqp.framer-v-158bvrs .framer-17pn01a-container, .framer-mvtqp.framer-v-x1m176 .framer-17pn01a-container, .framer-mvtqp.framer-v-1ucjpm5 .framer-17pn01a-container, .framer-mvtqp.framer-v-1ucjpm5 .framer-3rf6y2, .framer-mvtqp.framer-v-1966jht .framer-17pn01a-container, .framer-mvtqp.framer-v-1o6iztl .framer-17pn01a-container { align-self: stretch; width: auto; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-4usz10, .framer-mvtqp.framer-v-khqgqm .framer-4usz10, .framer-mvtqp.framer-v-158bvrs .framer-4usz10, .framer-mvtqp.framer-v-x1m176 .framer-4usz10, .framer-mvtqp.framer-v-1966jht .framer-4usz10, .framer-mvtqp.framer-v-1o6iztl .framer-4usz10 { align-self: stretch; flex-direction: column; width: auto; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-148j0g4-container, .framer-mvtqp.framer-v-khqgqm .framer-148j0g4-container, .framer-mvtqp.framer-v-x1m176 .framer-148j0g4-container, .framer-mvtqp.framer-v-1966jht .framer-148j0g4-container, .framer-mvtqp.framer-v-1o6iztl .framer-148j0g4-container { flex: none; width: 100%; }\",\".framer-mvtqp.framer-v-lrp5sv .framer-gj16z2, .framer-mvtqp.framer-v-khqgqm .framer-1nq8xcs, .framer-mvtqp.framer-v-x1m176 .framer-1f541m5, .framer-mvtqp.framer-v-1966jht .framer-1tv5yn3, .framer-mvtqp.framer-v-1o6iztl .framer-190sbbj { flex: none; height: var(--framer-aspect-ratio-supported, 762px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp.framer-v-lrp5sv .framer-4usz10 { gap: 0px; } .framer-mvtqp.framer-v-lrp5sv .framer-4usz10 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mvtqp.framer-v-lrp5sv .framer-4usz10 > :first-child { margin-top: 0px; } .framer-mvtqp.framer-v-lrp5sv .framer-4usz10 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp.framer-v-khqgqm .framer-4usz10 { gap: 0px; } .framer-mvtqp.framer-v-khqgqm .framer-4usz10 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mvtqp.framer-v-khqgqm .framer-4usz10 > :first-child { margin-top: 0px; } .framer-mvtqp.framer-v-khqgqm .framer-4usz10 > :last-child { margin-bottom: 0px; } }\",\".framer-mvtqp.framer-v-158bvrs .framer-148j0g4-container { flex: none; order: 0; width: 100%; }\",\".framer-mvtqp.framer-v-158bvrs .framer-1r18ugf { flex: none; height: var(--framer-aspect-ratio-supported, 762px); order: 4; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp.framer-v-158bvrs .framer-4usz10 { gap: 0px; } .framer-mvtqp.framer-v-158bvrs .framer-4usz10 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mvtqp.framer-v-158bvrs .framer-4usz10 > :first-child { margin-top: 0px; } .framer-mvtqp.framer-v-158bvrs .framer-4usz10 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp.framer-v-x1m176 .framer-4usz10 { gap: 0px; } .framer-mvtqp.framer-v-x1m176 .framer-4usz10 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mvtqp.framer-v-x1m176 .framer-4usz10 > :first-child { margin-top: 0px; } .framer-mvtqp.framer-v-x1m176 .framer-4usz10 > :last-child { margin-bottom: 0px; } }\",\".framer-mvtqp.framer-v-1ucjpm5 .framer-qb5o51 { width: 354px; }\",\".framer-mvtqp.framer-v-1vzmnvo .framer-17pn01a-container { align-self: stretch; order: 3; width: auto; }\",\".framer-mvtqp.framer-v-1vzmnvo .framer-1j0zs2z { align-self: stretch; order: 9; width: auto; }\",\".framer-mvtqp.framer-v-vl84b2 .framer-17pn01a-container { align-self: stretch; order: 2; width: auto; }\",\".framer-mvtqp.framer-v-vl84b2 .framer-1ca01hj { align-self: stretch; order: 10; width: auto; }\",\".framer-mvtqp.framer-v-z4c3ag .framer-17pn01a-container, .framer-mvtqp.framer-v-fle2rc .framer-17pn01a-container, .framer-mvtqp.framer-v-tjnnwm .framer-17pn01a-container { align-self: stretch; order: 4; width: auto; }\",\".framer-mvtqp.framer-v-z4c3ag .framer-e9z39 { align-self: stretch; order: 8; width: auto; }\",\".framer-mvtqp.framer-v-fle2rc .framer-1mdifc8 { align-self: stretch; order: 7; width: auto; }\",\".framer-mvtqp.framer-v-tjnnwm .framer-byf5ft { align-self: stretch; order: 6; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp.framer-v-1966jht .framer-4usz10 { gap: 0px; } .framer-mvtqp.framer-v-1966jht .framer-4usz10 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mvtqp.framer-v-1966jht .framer-4usz10 > :first-child { margin-top: 0px; } .framer-mvtqp.framer-v-1966jht .framer-4usz10 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mvtqp.framer-v-1o6iztl .framer-4usz10 { gap: 0px; } .framer-mvtqp.framer-v-1o6iztl .framer-4usz10 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-mvtqp.framer-v-1o6iztl .framer-4usz10 > :first-child { margin-top: 0px; } .framer-mvtqp.framer-v-1o6iztl .framer-4usz10 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 799\n * @framerIntrinsicWidth 1132\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QexUiquvo\":{\"layout\":[\"fixed\",\"auto\"]},\"z5JWBVece\":{\"layout\":[\"fixed\",\"auto\"]},\"uGkIubDM7\":{\"layout\":[\"fixed\",\"auto\"]},\"sV01wiHcR\":{\"layout\":[\"fixed\",\"auto\"]},\"BIpsdnaLf\":{\"layout\":[\"auto\",\"auto\"]},\"x9tE3wW3j\":{\"layout\":[\"auto\",\"auto\"]},\"F73PuGvw6\":{\"layout\":[\"auto\",\"auto\"]},\"gves_9_UU\":{\"layout\":[\"auto\",\"auto\"]},\"W3YjeZccn\":{\"layout\":[\"auto\",\"auto\"]},\"AUWHpK7xz\":{\"layout\":[\"auto\",\"auto\"]},\"dTeUtJRm5\":{\"layout\":[\"auto\",\"auto\"]},\"iiWVZ0Mdw\":{\"layout\":[\"auto\",\"auto\"]},\"h7_0Z_5Tm\":{\"layout\":[\"fixed\",\"auto\"]},\"CwbNmyLQU\":{\"layout\":[\"fixed\",\"auto\"]},\"UmIoIlWcm\":{\"layout\":[\"auto\",\"auto\"]},\"h3v6Oqi_N\":{\"layout\":[\"auto\",\"auto\"]},\"DzPHrwUpw\":{\"layout\":[\"auto\",\"auto\"]},\"Cj6rp5x1L\":{\"layout\":[\"auto\",\"auto\"]}}}\n */const FramerD15gAsfSQ=withCSS(Component,css,\"framer-mvtqp\");export default FramerD15gAsfSQ;FramerD15gAsfSQ.displayName=\"Horizontal\";FramerD15gAsfSQ.defaultProps={height:799,width:1132};addPropertyControls(FramerD15gAsfSQ,{variant:{options:[\"neQ7bmNXB\",\"QexUiquvo\",\"z5JWBVece\",\"uGkIubDM7\",\"sV01wiHcR\",\"BIpsdnaLf\",\"x9tE3wW3j\",\"F73PuGvw6\",\"gves_9_UU\",\"W3YjeZccn\",\"AUWHpK7xz\",\"dTeUtJRm5\",\"iiWVZ0Mdw\",\"h7_0Z_5Tm\",\"CwbNmyLQU\",\"UmIoIlWcm\",\"h3v6Oqi_N\",\"DzPHrwUpw\",\"Cj6rp5x1L\"],optionTitles:[\"primary\",\"desktop 1\",\"desktop 2\",\"desktop 3\",\"desktop 4\",\"tablet 1\",\"tablet 2\",\"tablet 3\",\"tablet 4\",\"mobile 1\",\"mobile 3\",\"mobile 2\",\"mobile 4\",\"desktop 5\",\"desktop 6\",\"mobile 5\",\"mobile 6\",\"tablet 5\",\"tablet 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerD15gAsfSQ,[...SlideButtonFonts,...SpacerFonts,...Stories1ColFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD15gAsfSQ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QexUiquvo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z5JWBVece\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uGkIubDM7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sV01wiHcR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BIpsdnaLf\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"x9tE3wW3j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"F73PuGvw6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gves_9_UU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"W3YjeZccn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AUWHpK7xz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dTeUtJRm5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iiWVZ0Mdw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h7_0Z_5Tm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CwbNmyLQU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UmIoIlWcm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h3v6Oqi_N\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DzPHrwUpw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Cj6rp5x1L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1132\",\"framerIntrinsicHeight\":\"799\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadWebFontsFromSelectors([\"GF;Inter-600\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/pVdd_b4Dp:default\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v12/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf\",weight:\"600\"}];export const css=['.framer-N29Q0 .framer-styles-preset-x5oq6w:not(.rich-text-wrapper), .framer-N29Q0 .framer-styles-preset-x5oq6w.rich-text-wrapper p, .framer-N29Q0 .framer-styles-preset-x5oq6w.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0.2px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-N29Q0 .framer-styles-preset-x5oq6w:not(.rich-text-wrapper), .framer-N29Q0 .framer-styles-preset-x5oq6w.rich-text-wrapper p, .framer-N29Q0 .framer-styles-preset-x5oq6w.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0.2px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-N29Q0 .framer-styles-preset-x5oq6w:not(.rich-text-wrapper), .framer-N29Q0 .framer-styles-preset-x5oq6w.rich-text-wrapper p, .framer-N29Q0 .framer-styles-preset-x5oq6w.rich-text-wrapper [data-preset-tag=\"p\"] { --framer-font-family: \"Inter\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-weight: 600; --framer-letter-spacing: 0.2px; --framer-line-height: 150%; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-N29Q0\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ec0e0b7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Link,RichText,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/2NIJFO92hF4roZEEK8Tx/Iconoir.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/6YEoAEhQs5MLJAh29v0J/fH47011e4XUN9iyeYQxd/Bnf_zJFSO.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/vqXJ7CswbnPNlBf6Tavr/r5bHfVUOyEoKM9nlWWgB/pVdd_b4Dp.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/0tXxO940zb9KZZKCyRnW/0Zx44vSPCIO0ud0T08f6/tYd9HHvuM.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={gJECD6GoN:{hover:true},GQZ7OSAq_:{hover:true},Jz_fDgJu6:{hover:true}};const cycleOrder=[\"GQZ7OSAq_\",\"gJECD6GoN\",\"Jz_fDgJu6\"];const variantClassNames={gJECD6GoN:\"framer-v-z9khyk\",GQZ7OSAq_:\"framer-v-gln8z8\",Jz_fDgJu6:\"framer-v-1a187wf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const humanReadableVariantMap={\"Variant 1\":\"GQZ7OSAq_\",\"Variant 2\":\"gJECD6GoN\",\"Variant 3\":\"Jz_fDgJu6\"};const transitions={default:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"}};const Component=/*#__PURE__*/ React.forwardRef(function({id,style,className,width,height,layoutId,variant:outerVariant=\"GQZ7OSAq_\",title:RH9wDUpgE=\"Contact Sales\",link:DxZ_ooeaW,...restProps},ref){const outerVariantId=humanReadableVariantMap[outerVariant];const variant=outerVariantId||outerVariant;const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"GQZ7OSAq_\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=variants.join(\"-\")+restProps.layoutDependency;const defaultLayoutId=React.useId();return /*#__PURE__*/ _jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/ _jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-Ywntg\",sharedStyle.className,sharedStyle1.className,sharedStyle2.className,classNames),style:{display:\"contents\"},children:/*#__PURE__*/ _jsx(Link,{href:DxZ_ooeaW,openInNewTab:false,children:/*#__PURE__*/ _jsxs(motion.a,{...restProps,className:`${cx(\"framer-gln8z8\",className)} framer-1fxo8hh`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"GQZ7OSAq_\",ref:ref,style:{...style},transition:transition,...addPropertyOverrides({\"gJECD6GoN-hover\":{\"data-framer-name\":undefined},\"GQZ7OSAq_-hover\":{\"data-framer-name\":undefined},\"Jz_fDgJu6-hover\":{\"data-framer-name\":undefined},gJECD6GoN:{\"data-framer-name\":\"Variant 2\"},Jz_fDgJu6:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/ _jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Contact Sales\"})}),className:\"framer-10xy6h2\",layoutDependency:layoutDependency,layoutId:\"P7i440zQh\",style:{\"--extracted-r6o4lv\":\"var(--token-f697fed7-66c9-4f07-9a52-b6ee4d2a8aed, rgba(242, 242, 242, 0.8))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:RH9wDUpgE,transition:transition,variants:{\"gJECD6GoN-hover\":{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},\"GQZ7OSAq_-hover\":{\"--extracted-r6o4lv\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},\"Jz_fDgJu6-hover\":{\"--extracted-r6o4lv\":\"var(--token-70fa4031-5cb7-4777-8576-b74f3c65bd52, rgba(34, 34, 34, 0.7))\"},gJECD6GoN:{\"--extracted-r6o4lv\":\"var(--token-70fa4031-5cb7-4777-8576-b74f3c65bd52, rgb(34, 34, 34))\"},Jz_fDgJu6:{\"--extracted-r6o4lv\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({gJECD6GoN:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Contact Sales\"})})},Jz_fDgJu6:{children:/*#__PURE__*/ _jsx(React.Fragment,{children:/*#__PURE__*/ _jsx(motion.p,{className:\"framer-styles-preset-x5oq6w\",\"data-styles-preset\":\"pVdd_b4Dp\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv)\"},children:\"Contact Sales\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/ _jsx(motion.div,{className:\"framer-1p409ve-container\",layoutDependency:layoutDependency,layoutId:\"YWQgFesDj-container\",style:{rotate:0},transition:transition,variants:{gJECD6GoN:{rotate:180}},children:/*#__PURE__*/ _jsx(Iconoir,{color:'var(--token-f697fed7-66c9-4f07-9a52-b6ee4d2a8aed, rgba(242, 242, 242, 0.8)) /* {\"name\":\"White 80\"} */',height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"YWQgFesDj\",layoutId:\"YWQgFesDj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"gJECD6GoN-hover\":{color:'var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34)) /* {\"name\":\"Black\"} */'},\"GQZ7OSAq_-hover\":{color:'var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242)) /* {\"name\":\"White\"} */'},\"Jz_fDgJu6-hover\":{color:'var(--token-70fa4031-5cb7-4777-8576-b74f3c65bd52, rgba(34, 34, 34, 0.7)) /* {\"name\":\"Black 70\"} */'},gJECD6GoN:{color:'var(--token-70fa4031-5cb7-4777-8576-b74f3c65bd52, rgba(34, 34, 34, 0.7)) /* {\"name\":\"Black 70\"} */'},Jz_fDgJu6:{color:'var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34)) /* {\"name\":\"Black\"} */'}},baseVariant,gestureVariant)})})]})})})});});const css=['.framer-Ywntg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ywntg * { box-sizing: border-box; }\",\".framer-Ywntg .framer-1fxo8hh { display: block; }\",\".framer-Ywntg .framer-gln8z8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 33px; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Ywntg .framer-10xy6h2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ywntg .framer-1p409ve-container { flex: none; height: 33px; position: relative; width: 33px; }\",\".framer-Ywntg .framer-v-gln8z8 .framer-gln8z8, .framer-Ywntg .framer-v-z9khyk .framer-gln8z8, .framer-Ywntg .framer-v-1a187wf .framer-gln8z8 { cursor: pointer; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ywntg .framer-gln8z8 { gap: 0px; } .framer-Ywntg .framer-gln8z8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ywntg .framer-gln8z8 > :first-child { margin-left: 0px; } .framer-Ywntg .framer-gln8z8 > :last-child { margin-right: 0px; } }\",\".framer-Ywntg.framer-v-z9khyk .framer-gln8z8 { justify-content: flex-end; }\",\".framer-Ywntg.framer-v-z9khyk .framer-10xy6h2 { order: 1; }\",\".framer-Ywntg.framer-v-z9khyk .framer-1p409ve-container { height: 19px; order: 0; width: 19px; }\",\".framer-Ywntg.framer-v-gln8z8.hover .framer-gln8z8, .framer-Ywntg.framer-v-1a187wf.hover .framer-gln8z8 { gap: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ywntg.framer-v-gln8z8.hover .framer-gln8z8 { gap: 0px; } .framer-Ywntg.framer-v-gln8z8.hover .framer-gln8z8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Ywntg.framer-v-gln8z8.hover .framer-gln8z8 > :first-child { margin-left: 0px; } .framer-Ywntg.framer-v-gln8z8.hover .framer-gln8z8 > :last-child { margin-right: 0px; } }\",\".framer-Ywntg.framer-v-z9khyk.hover .framer-gln8z8 { gap: 19px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ywntg.framer-v-z9khyk.hover .framer-gln8z8 { gap: 0px; } .framer-Ywntg.framer-v-z9khyk.hover .framer-gln8z8 > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-Ywntg.framer-v-z9khyk.hover .framer-gln8z8 > :first-child { margin-left: 0px; } .framer-Ywntg.framer-v-z9khyk.hover .framer-gln8z8 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ywntg.framer-v-1a187wf.hover .framer-gln8z8 { gap: 0px; } .framer-Ywntg.framer-v-1a187wf.hover .framer-gln8z8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Ywntg.framer-v-1a187wf.hover .framer-gln8z8 > :first-child { margin-left: 0px; } .framer-Ywntg.framer-v-1a187wf.hover .framer-gln8z8 > :last-child { margin-right: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 33\n * @framerIntrinsicWidth 164\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"gJECD6GoN\":{\"layout\":[\"auto\",\"fixed\"]},\"Jz_fDgJu6\":{\"layout\":[\"auto\",\"fixed\"]},\"Q4DqH7TmI\":{\"layout\":[\"auto\",\"fixed\"]},\"OA05jelBu\":{\"layout\":[\"auto\",\"fixed\"]},\"mSQjdFd5l\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"RH9wDUpgE\":\"title\",\"DxZ_ooeaW\":\"link\"}\n */ const FramerdwhF5uvGf=withCSS(Component,css,\"framer-Ywntg\");export default FramerdwhF5uvGf;FramerdwhF5uvGf.displayName=\"button-tertiary\";FramerdwhF5uvGf.defaultProps={height:33,width:164};addPropertyControls(FramerdwhF5uvGf,{variant:{options:[\"GQZ7OSAq_\",\"gJECD6GoN\",\"Jz_fDgJu6\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum},RH9wDUpgE:{defaultValue:\"Contact Sales\",displayTextArea:false,title:\"Title\",type:ControlType.String},DxZ_ooeaW:{title:\"Link\",type:ControlType.Link}});addFonts(FramerdwhF5uvGf,[...IconoirFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdwhF5uvGf\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"33\",\"framerVariables\":\"{\\\"RH9wDUpgE\\\":\\\"title\\\",\\\"DxZ_ooeaW\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"gJECD6GoN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Jz_fDgJu6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Q4DqH7TmI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"OA05jelBu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"mSQjdFd5l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"164\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/2NIJFO92hF4roZEEK8Tx/Iconoir.js\";const IconoirFonts=getFonts(Iconoir);const enabledGestures={xqg3aogNM:{hover:true}};const cycleOrder=[\"xqg3aogNM\",\"zpV8hXF3M\",\"WwDATLuMh\"];const serializationHash=\"framer-pyiil\";const variantClassNames={WwDATLuMh:\"framer-v-1e3kwix\",xqg3aogNM:\"framer-v-1st3dx7\",zpV8hXF3M:\"framer-v-1eciq9o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"xqg3aogNM\",Mobile:\"WwDATLuMh\",Tablet:\"zpV8hXF3M\"};const getProps=({height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,AHTr0OpJg:(_ref=text!==null&&text!==void 0?text:props.AHTr0OpJg)!==null&&_ref!==void 0?_ref:\"See the new TRM feature sets in samdesk at booth 2043\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"xqg3aogNM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,AHTr0OpJg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xqg3aogNM\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zpV8hXF3M\")return true;return false;};const isDisplayed1=()=>{if([\"zpV8hXF3M\",\"WwDATLuMh\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Ck4O9ya7C\"},nodeId:\"xqg3aogNM\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1st3dx7\",className,classNames)} framer-9e5jhn`,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xqg3aogNM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-940d61a0-6a2e-406a-a286-2a47cfa15622, rgb(33, 150, 83))\",...style},variants:{\"xqg3aogNM-hover\":{backgroundColor:\"var(--token-310ba7e9-a57a-4f4f-aa44-4d6c8c860251, rgb(23, 104, 57))\"}},...addPropertyOverrides({\"xqg3aogNM-hover\":{\"data-framer-name\":undefined},WwDATLuMh:{\"data-framer-name\":\"Mobile\"},zpV8hXF3M:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9o8swe\",layoutDependency:layoutDependency,layoutId:\"gr1_RcRoG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e51744d1-ab6d-4589-b350-f9994f797a58, rgb(242, 242, 242)))\"},children:\"HORIZON\"})}),className:\"framer-1uptypt\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"M1RSjxg6p\",style:{\"--extracted-r6o4lv\":\"var(--token-e51744d1-ab6d-4589-b350-f9994f797a58, rgb(242, 242, 242))\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpV8hXF3M:{transformTemplate:undefined}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"1.5px\",\"--framer-line-height\":\"110%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242)))\"},children:\"June 12 2025\"})}),className:\"framer-hlsr6l\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"VXZH5L_nU\",style:{\"--extracted-r6o4lv\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpV8hXF3M:{transformTemplate:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(222, 255, 236))\"},children:\"See the new TRM feature sets in samdesk at booth 2043\"})}),className:\"framer-1symota\",fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"eH6GMKt9E\",style:{\"--extracted-r6o4lv\":\"rgb(222, 255, 236)\"},text:AHTr0OpJg,transformTemplate:transformTemplate2,variants:{\"xqg3aogNM-hover\":{\"--extracted-r6o4lv\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xqg3aogNM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242)))\"},children:\"See the new TRM feature sets in samdesk at booth 2043\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1js2lav\",layoutDependency:layoutDependency,layoutId:\"jST0QGuGA\",...addPropertyOverrides({WwDATLuMh:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(198, 235, 214))\"},children:\"Find out more\"})}),className:\"framer-p41ue3\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"HTu7TFGyu\",style:{\"--extracted-r6o4lv\":\"rgb(198, 235, 214)\"},variants:{\"xqg3aogNM-hover\":{\"--extracted-r6o4lv\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"xqg3aogNM-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242)))\"},children:\"Find out more\"})})},WwDATLuMh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(198, 235, 214))\"},children:\"Find out more\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lo4e75-container\",layoutDependency:layoutDependency,layoutId:\"pJeHxFZrd-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(198, 235, 214)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"ArrowRight\",id:\"pJeHxFZrd\",layoutId:\"pJeHxFZrd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"xqg3aogNM-hover\":{color:\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"}},baseVariant,gestureVariant)})})})]})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pyiil.framer-9e5jhn, .framer-pyiil .framer-9e5jhn { display: block; }\",\".framer-pyiil.framer-1st3dx7 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 53px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 1200px; }\",\".framer-pyiil .framer-9o8swe { flex: none; height: 48px; overflow: visible; position: relative; width: 1200px; }\",\".framer-pyiil .framer-1uptypt { flex: none; height: auto; left: 24px; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-pyiil .framer-hlsr6l { flex: none; height: auto; left: 24%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-pyiil .framer-1symota { flex: none; height: auto; left: 47%; position: absolute; top: 50%; white-space: pre; width: auto; }\",\".framer-pyiil .framer-1js2lav { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 33px; justify-content: flex-start; overflow: visible; padding: 0px; position: absolute; right: 24px; top: calc(50.00000000000002% - 33px / 2); width: 176px; }\",\".framer-pyiil .framer-p41ue3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pyiil .framer-lo4e75-container { flex: none; height: 25px; position: relative; width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pyiil.framer-1st3dx7, .framer-pyiil .framer-1js2lav { gap: 0px; } .framer-pyiil.framer-1st3dx7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-pyiil.framer-1st3dx7 > :first-child { margin-top: 0px; } .framer-pyiil.framer-1st3dx7 > :last-child { margin-bottom: 0px; } .framer-pyiil .framer-1js2lav > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-pyiil .framer-1js2lav > :first-child { margin-left: 0px; } .framer-pyiil .framer-1js2lav > :last-child { margin-right: 0px; } }\",\".framer-pyiil.framer-v-1eciq9o.framer-1st3dx7 { cursor: unset; gap: unset; justify-content: space-between; width: 810px; }\",\".framer-pyiil.framer-v-1eciq9o .framer-9o8swe { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 54px; justify-content: space-between; padding: 0px 24px 0px 24px; width: 100%; }\",\".framer-pyiil.framer-v-1eciq9o .framer-1uptypt, .framer-pyiil.framer-v-1eciq9o .framer-hlsr6l { left: unset; position: relative; top: unset; }\",\".framer-pyiil.framer-v-1eciq9o .framer-1js2lav { position: relative; right: unset; top: unset; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pyiil.framer-v-1eciq9o.framer-1st3dx7, .framer-pyiil.framer-v-1eciq9o .framer-9o8swe { gap: 0px; } .framer-pyiil.framer-v-1eciq9o.framer-1st3dx7 > *, .framer-pyiil.framer-v-1eciq9o.framer-1st3dx7 > :first-child, .framer-pyiil.framer-v-1eciq9o.framer-1st3dx7 > :last-child, .framer-pyiil.framer-v-1eciq9o .framer-9o8swe > *, .framer-pyiil.framer-v-1eciq9o .framer-9o8swe > :first-child, .framer-pyiil.framer-v-1eciq9o .framer-9o8swe > :last-child { margin: 0px; } }\",\".framer-pyiil.framer-v-1e3kwix.framer-1st3dx7 { cursor: unset; width: 390px; }\",\".framer-pyiil.framer-v-1e3kwix .framer-9o8swe { width: 100%; }\",\".framer-pyiil.framer-v-1e3kwix .framer-1js2lav { top: 50%; width: min-content; }\",\".framer-pyiil.framer-v-1st3dx7.hover .framer-1js2lav { gap: 10px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pyiil.framer-v-1st3dx7.hover .framer-1js2lav { gap: 0px; } .framer-pyiil.framer-v-1st3dx7.hover .framer-1js2lav > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-pyiil.framer-v-1st3dx7.hover .framer-1js2lav > :first-child { margin-left: 0px; } .framer-pyiil.framer-v-1st3dx7.hover .framer-1js2lav > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zpV8hXF3M\":{\"layout\":[\"fixed\",\"fixed\"]},\"WwDATLuMh\":{\"layout\":[\"fixed\",\"fixed\"]},\"AhZr2QS_W\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"AHTr0OpJg\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfGig8vtB4=withCSS(Component,css,\"framer-pyiil\");export default FramerfGig8vtB4;FramerfGig8vtB4.displayName=\"top-banner\";FramerfGig8vtB4.defaultProps={height:53,width:1200};addPropertyControls(FramerfGig8vtB4,{variant:{options:[\"xqg3aogNM\",\"zpV8hXF3M\",\"WwDATLuMh\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},AHTr0OpJg:{defaultValue:\"See the new TRM feature sets in samdesk at booth 2043\",displayTextArea:false,title:\"Text\",type:ControlType.String}});addFonts(FramerfGig8vtB4,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...IconoirFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfGig8vtB4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"AHTr0OpJg\\\":\\\"text\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"53\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zpV8hXF3M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"WwDATLuMh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AhZr2QS_W\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fGig8vtB4.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/zzGLuFF4YkasKl1lrsW9/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/H4OHcdXxZyPVKySUy1y2/Phosphor.js\";import Slideshow1 from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/NkuDQ5CVcgcRFhOG6sck/SlideShow.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/tMgLW02JctHcv25gtiqf/SlideShow.js\";import Horizontal from\"#framer/local/canvasComponent/D15gAsfSQ/D15gAsfSQ.js\";import ButtonTertiary from\"#framer/local/canvasComponent/dwhF5uvGf/dwhF5uvGf.js\";import ButtonPrimary from\"#framer/local/canvasComponent/E66MWOkP1/E66MWOkP1.js\";import Footer from\"#framer/local/canvasComponent/faAGyiavt/faAGyiavt.js\";import TopBanner from\"#framer/local/canvasComponent/fGig8vtB4/fGig8vtB4.js\";import NavbarNEW from\"#framer/local/canvasComponent/k7U2WCbFz/k7U2WCbFz.js\";import Spacer from\"#framer/local/canvasComponent/otw1uWwIn/otw1uWwIn.js\";import CustomerTicker from\"#framer/local/canvasComponent/UGkozodWM/UGkozodWM.js\";import Quote from\"#framer/local/canvasComponent/xavyXgXQ3/xavyXgXQ3.js\";import*as sharedStyle5 from\"#framer/local/css/Bnf_zJFSO/Bnf_zJFSO.js\";import*as sharedStyle1 from\"#framer/local/css/hJzY6fuhy/hJzY6fuhy.js\";import*as sharedStyle4 from\"#framer/local/css/kmzfIKVsR/kmzfIKVsR.js\";import*as sharedStyle from\"#framer/local/css/NWLcJmLpm/NWLcJmLpm.js\";import*as sharedStyle2 from\"#framer/local/css/nzOVvzJVP/nzOVvzJVP.js\";import*as sharedStyle3 from\"#framer/local/css/tYd9HHvuM/tYd9HHvuM.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopBannerFonts=getFonts(TopBanner);const NavbarNEWFonts=getFonts(NavbarNEW);const SpacerFonts=getFonts(Spacer);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const ImageWithFX=withFX(Image);const QuoteFonts=getFonts(Quote);const PhosphorFonts=getFonts(Phosphor);const YouTubeFonts=getFonts(YouTube);const ButtonTertiaryFonts=getFonts(ButtonTertiary);const HorizontalFonts=getFonts(Horizontal);const SlideshowFonts=getFonts(Slideshow);const Slideshow1Fonts=getFonts(Slideshow1);const CustomerTickerFonts=getFonts(CustomerTicker);const FooterFonts=getFonts(Footer);const breakpoints={Q8FhP5c6Z:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",x3woydfc9:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-eAIuB\";const variantClassNames={Q8FhP5c6Z:\"framer-v-19cj765\",WQLkyLRf1:\"framer-v-72rtr7\",x3woydfc9:\"framer-v-1gpbr9h\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Q8FhP5c6Z\",Tablet:\"x3woydfc9\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"MRKqq5FDW\");const ref1=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Q8FhP5c6Z\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"x3woydfc9\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"x3woydfc9\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Q8FhP5c6Z\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"x3woydfc9\",\"Q8FhP5c6Z\"].includes(baseVariant))return false;return true;};const elementId1=useRouteElementId(\"szFKBONCK\");const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",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-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v4usgx-container\",nodeId:\"kFCTavd44\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"WwDATLuMh\"},x3woydfc9:{variant:\"zpV8hXF3M\"}},children:/*#__PURE__*/_jsx(TopBanner,{AHTr0OpJg:\"Horizon 2025: Insights, networking, and what\u2019s next for samdesk\u2014June 12!\",height:\"100%\",id:\"kFCTavd44\",layoutId:\"kFCTavd44\",style:{height:\"100%\",width:\"100%\"},variant:\"xqg3aogNM\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+53,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4yoij9-container\",nodeId:\"LOjiJytYe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BsxaRS2q5\"},x3woydfc9:{variant:\"R6RGhL3aj\"}},children:/*#__PURE__*/_jsx(NavbarNEW,{height:\"100%\",id:\"LOjiJytYe\",layoutId:\"LOjiJytYe\",style:{width:\"100%\"},variant:\"M5upVhiIB\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdovvf\",\"data-framer-name\":\"hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cpq5ki-container\",nodeId:\"ekUwmibi3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"d0tDhyx8X\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ekUwmibi3\",layoutId:\"ekUwmibi3\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pw8srp\",\"data-framer-name\":\"hero-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-trjg40\",\"data-framer-name\":\"hero-content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ey7i5t\",\"data-framer-name\":\"hero-text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\"},children:\"Crisis Detection + Monitoring\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\"},children:\"Crisis Detection + Monitoring\"})}),className:\"framer-1k43app\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12grs0p-container\",nodeId:\"i5FX9qQRw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"i5FX9qQRw\",layoutId:\"i5FX9qQRw\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xyfo9x\",\"data-styles-preset\":\"hJzY6fuhy\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(214, 232, 255) 0%, rgb(255, 255, 255) 100%)\"},children:\"Avoid disruption with proactive crisis alerts\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xyfo9x\",\"data-styles-preset\":\"hJzY6fuhy\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(214, 232, 255) 0%, rgb(255, 255, 255) 100%)\"},children:\"Avoid disruption with proactive crisis alerts\"})})}),className:\"framer-1wcouwc\",\"data-framer-name\":\"Are you tired of reacting?\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-owe2gv-container\",nodeId:\"ob60q0qir\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ob60q0qir\",layoutId:\"ob60q0qir\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.9))\"},children:[\"You cannot spot every disruption the moment it happens - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\"},children:\"samdesk can\"}),\". Our AI engine proactively scans the world for anomalies that impact you. Stop reacting. Take action.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0.2px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.9))\"},children:[\"You cannot spot every disruption the moment it happens - \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-weight\":\"700\"},children:\"samdesk can\"}),\". Our AI engine proactively scans the world for anomalies that impact you. Stop reacting. Take action.\"]})}),className:\"framer-1s1ksch\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"GF;Inter-regular\",\"GF;Inter-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-49bdi9-container\",nodeId:\"zT3UjGJxc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"zT3UjGJxc\",layoutId:\"zT3UjGJxc\",style:{height:\"100%\",width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EGxmUFrd9\"},implicitPathVariables:undefined},{href:{webPageId:\"EGxmUFrd9\"},implicitPathVariables:undefined},{href:{webPageId:\"EGxmUFrd9\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gaunxl-container\",nodeId:\"E4UnH4ciH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{eXyvj2gbb:resolvedLinks[2]},x3woydfc9:{eXyvj2gbb:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonPrimary,{eXyvj2gbb:resolvedLinks[0],height:\"100%\",id:\"E4UnH4ciH\",layoutId:\"E4UnH4ciH\",NnpddhFt6:false,variant:\"Zi6WA5ino\",width:\"100%\",X8sqOln1f:\"Book a demo\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1msdzlx-container hidden-19cj765\",nodeId:\"mQJZ8SDT2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"mQJZ8SDT2\",layoutId:\"mQJZ8SDT2\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eu8xb4 hidden-19cj765\",\"data-framer-name\":\"hero-graphic-2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c3rbds\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-amoybx\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:892,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+416-294+223-93+0+0),pixelHeight:280,pixelWidth:892,sizes:\"270.7857px\",src:\"https://framerusercontent.com/images/qT0PnO5D6oLl7TtPkWqcVds4M.png\",srcSet:\"https://framerusercontent.com/images/qT0PnO5D6oLl7TtPkWqcVds4M.png?scale-down-to=512 512w,https://framerusercontent.com/images/qT0PnO5D6oLl7TtPkWqcVds4M.png 892w\"},className:\"framer-9ymk6d hidden-1gpbr9h\",\"data-framer-name\":\"military_action\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9d2l16\",children:isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:892,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+416-294+-3.5+0+0),pixelHeight:280,pixelWidth:892,sizes:\"323px\",src:\"https://framerusercontent.com/images/IS1iAGnv40EjCWiQnRshgD1vtE.png\",srcSet:\"https://framerusercontent.com/images/IS1iAGnv40EjCWiQnRshgD1vtE.png?scale-down-to=512 512w,https://framerusercontent.com/images/IS1iAGnv40EjCWiQnRshgD1vtE.png 892w\"},className:\"framer-1g7hvov hidden-1gpbr9h\",\"data-framer-name\":\"Blockade\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pwzok6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:823,intrinsicWidth:1330,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+416-369+0),pixelHeight:823,pixelWidth:1330,sizes:\"665px\",src:\"https://framerusercontent.com/images/bw5fN6WP5RFrfuB9nYfUWwZTA.png\",srcSet:\"https://framerusercontent.com/images/bw5fN6WP5RFrfuB9nYfUWwZTA.png?scale-down-to=512 512w,https://framerusercontent.com/images/bw5fN6WP5RFrfuB9nYfUWwZTA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bw5fN6WP5RFrfuB9nYfUWwZTA.png 1330w\"},className:\"framer-6twgvo\",\"data-framer-name\":\"dashboard_simple2x\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:115,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:280,intrinsicWidth:892,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+416-254.5),pixelHeight:280,pixelWidth:892,sizes:\"457px\",src:\"https://framerusercontent.com/images/mQ17WNrvO1ahslkgetuB51Dr4.png\",srcSet:\"https://framerusercontent.com/images/mQ17WNrvO1ahslkgetuB51Dr4.png?scale-down-to=512 512w,https://framerusercontent.com/images/mQ17WNrvO1ahslkgetuB51Dr4.png 892w\"},className:\"framer-1hg5ank hidden-1gpbr9h\",\"data-framer-name\":\"flood\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:115,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:446,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+416-252),pixelHeight:552,pixelWidth:892,sizes:\"338px\",src:\"https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png 892w\"},className:\"framer-4lauph hidden-1gpbr9h\",\"data-framer-name\":\"assets\"}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:446,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+122),pixelHeight:280,pixelWidth:892,sizes:\"325px\",src:\"https://framerusercontent.com/images/9RbutZFUdYokFK9h2krM9roo8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9RbutZFUdYokFK9h2krM9roo8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9RbutZFUdYokFK9h2krM9roo8.png 892w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:115,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:140,intrinsicWidth:446,pixelHeight:280,pixelWidth:892,src:\"https://framerusercontent.com/images/9RbutZFUdYokFK9h2krM9roo8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9RbutZFUdYokFK9h2krM9roo8.png?scale-down-to=512 512w,https://framerusercontent.com/images/9RbutZFUdYokFK9h2krM9roo8.png 892w\"},className:\"framer-6kpa1l hidden-72rtr7\",\"data-framer-name\":\"flood\"})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:446,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+118.25),pixelHeight:552,pixelWidth:892,sizes:\"221px\",src:\"https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png 892w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:115,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:276,intrinsicWidth:446,pixelHeight:552,pixelWidth:892,src:\"https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ygTJyqUFnyjoQhXE112L1gzvg.png 892w\"},className:\"framer-mjxdof hidden-72rtr7\",\"data-framer-name\":\"assets\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:115,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:112.5,intrinsicWidth:203.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+133+0+50+0+0+0+410+-31),pixelHeight:225,pixelWidth:407,src:\"https://framerusercontent.com/images/gEM96XPeAy1ZKqYvHwpjDiq9iLg.svg\"},className:\"framer-109cnd6 hidden-1gpbr9h\",\"data-framer-name\":\"chatnado\"})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gfr2fb-container hidden-72rtr7 hidden-1gpbr9h\",nodeId:\"A9C0dHY5w\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"A9C0dHY5w\",layoutId:\"A9C0dHY5w\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19a3qti\",\"data-framer-name\":\"quote-one\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ea7so2-container\",nodeId:\"zhwkwjDRc\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"zhwkwjDRc\",layoutId:\"zhwkwjDRc\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jsjy4p\",\"data-framer-name\":\"quote-one container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{width:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,y:(componentViewport?.y||0)+0+716+0+40+0},x3woydfc9:{width:\"762px\",y:(componentViewport?.y||0)+0+907+0+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:\"1152px\",y:(componentViewport?.y||0)+0+1099+0+40+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kvlggz-container\",nodeId:\"nTaGcoXhG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{height:\"100%\",id:\"nTaGcoXhG\",layoutId:\"nTaGcoXhG\",style:{width:\"100%\"},variant:\"P7IsC70SR\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18mz17k-container\",nodeId:\"Q2uglOUvw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Q2uglOUvw\",layoutId:\"Q2uglOUvw\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aus5he\",\"data-framer-name\":\"product-features\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-130kr0w-container\",nodeId:\"PMFmo56ir\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"PMFmo56ir\",layoutId:\"PMFmo56ir\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ug05w3\",\"data-framer-name\":\"product-features-content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8xwziw\",\"data-framer-name\":\"product-text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m0gd0e\",\"data-framer-name\":\"body-text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\"},children:\"Real-time crisis alerts\"})}),className:\"framer-1myrh40\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s4ack7-container\",nodeId:\"OZg5xf8nv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"OZg5xf8nv\",layoutId:\"OZg5xf8nv\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-176s7mf\",\"data-styles-preset\":\"nzOVvzJVP\",style:{\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"Stop scrambling.\"}),/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-176s7mf\",\"data-styles-preset\":\"nzOVvzJVP\",style:{\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"Get samdesk alerts.\"})]}),className:\"framer-1d3vem2\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ft6l5k-container\",nodeId:\"ChGFvPEmD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ChGFvPEmD\",layoutId:\"ChGFvPEmD\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-46w9jh\",\"data-framer-name\":\"Frame 6345\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Our AI performs billions of computations on public data sets to spot disruptive events. We send you early warning alerts and insights, well ahead of traditional news and crisis monitoring tools.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Plug samdesk into your operational systems to get even deeper insights into your travel management, employee wellness, supply chain, entry to new markets, operational safety and beyond.\"})]}),className:\"framer-l1hgeu\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vd055u-container\",nodeId:\"eU_tqlcvW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"eU_tqlcvW\",layoutId:\"eU_tqlcvW\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-61294p\",\"data-framer-name\":\"point 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-181uo6t-container\",isModuleExternal:true,nodeId:\"FYupPkttD\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"FYupPkttD\",layoutId:\"FYupPkttD\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Instant real-time alerts so you\u2019re the first to know\"})}),className:\"framer-157bxyn\",\"data-framer-name\":\"Lorem ipsum dolor sit amet conse. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus.sdfds\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-167pymx-container\",nodeId:\"MTJb334xR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"MTJb334xR\",layoutId:\"MTJb334xR\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vv6oxt\",\"data-framer-name\":\"point 2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3wxb8y-container\",isModuleExternal:true,nodeId:\"fJ9sHFDps\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"fJ9sHFDps\",layoutId:\"fJ9sHFDps\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Visuals for complete situational awareness\\xa0\"})}),className:\"framer-1d7erfw\",\"data-framer-name\":\"Lorem ipsum dolor sit amet conse. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus.sdfds\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wpzxkg-container\",nodeId:\"rwp9b5nB2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"rwp9b5nB2\",layoutId:\"rwp9b5nB2\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oa0ojw\",\"data-framer-name\":\"point 3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fa5flj-container\",isModuleExternal:true,nodeId:\"rC2KBXRxZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"rC2KBXRxZ\",layoutId:\"rC2KBXRxZ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Highly accurate street level geolocation\"})}),className:\"framer-18hhdfs\",\"data-framer-name\":\"Lorem ipsum dolor sit amet conse. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus.sdfds\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x5e59i-container\",nodeId:\"Av5FRakar\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Av5FRakar\",layoutId:\"Av5FRakar\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ihvhr\",\"data-framer-name\":\"point 4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b902nt-container\",isModuleExternal:true,nodeId:\"v6yu8gY2E\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"v6yu8gY2E\",layoutId:\"v6yu8gY2E\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Get updates as events develop\\xa0\"})}),className:\"framer-122u2aw\",\"data-framer-name\":\"Lorem ipsum dolor sit amet conse. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus.sdfds\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vqn6f6-container\",nodeId:\"Oew_dWvdi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Oew_dWvdi\",layoutId:\"Oew_dWvdi\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tnh8t1\",\"data-framer-name\":\"point 5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vgx2zo-container\",isModuleExternal:true,nodeId:\"GbCgZ4e5W\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"GbCgZ4e5W\",layoutId:\"GbCgZ4e5W\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Customize your alert streams and dashboards\"})}),className:\"framer-ur28gf\",\"data-framer-name\":\"Lorem ipsum dolor sit amet conse. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus.sdfds\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cgpiw3-container\",nodeId:\"d43jyRhZK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"d43jyRhZK\",layoutId:\"d43jyRhZK\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fpsika\",\"data-framer-name\":\"point 6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v7o0gg-container\",isModuleExternal:true,nodeId:\"ygKpljk4Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-62c21fca-c897-4b56-9276-f361afaaef70, rgb(122, 192, 152))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"ygKpljk4Z\",layoutId:\"ygKpljk4Z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.8))\"},children:\"Plug-ins for HR, travel, and supply chain systems\"})}),className:\"framer-j94fmx\",\"data-framer-name\":\"Lorem ipsum dolor sit amet conse. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus.sdfds\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14q4dh6\",\"data-framer-name\":\"product-graphics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3zv2xr\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196,intrinsicWidth:542,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+997+0+40+0+1688.2+0+0+0+47),pixelHeight:392,pixelWidth:1084,sizes:\"172px\",src:\"https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png 1084w\"}},x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196,intrinsicWidth:542,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+40+0+1688.2+0+0+0+117),pixelHeight:392,pixelWidth:1084,sizes:\"404px\",src:\"https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png 1084w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:196,intrinsicWidth:542,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1380+0+40+0+0+0+0+55),pixelHeight:392,pixelWidth:1084,sizes:\"331px\",src:\"https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=512 512w,https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/H5ARSj4DyYES68k8Ux0IweVs6g.png 1084w\"},className:\"framer-zgsftb\",\"data-framer-name\":\"alert_card\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:342,intrinsicWidth:459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+997+0+40+0+1688.2+0+0+0+0),pixelHeight:684,pixelWidth:918,sizes:\"146px\",src:\"https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png 918w\"}},x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:342,intrinsicWidth:459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+40+0+1688.2+0+0+0+0),pixelHeight:684,pixelWidth:918,sizes:\"318px\",src:\"https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png 918w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:342,intrinsicWidth:459,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1380+0+40+0+0+0+0+0),pixelHeight:684,pixelWidth:918,sizes:\"235px\",src:\"https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/nWc6zBvsfk8AhFtZKahYedJxm0.png 918w\"},className:\"framer-vjn1ip\",\"data-framer-name\":\"nearby_people\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:822,intrinsicWidth:1314,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+997+0+40+0+1688.2+0+129),pixelHeight:822,pixelWidth:1314,sizes:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,src:\"https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png\",srcSet:\"https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png 1314w\"}},x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:822,intrinsicWidth:1314,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+40+0+1688.2+0+277),pixelHeight:822,pixelWidth:1314,sizes:\"762px\",src:\"https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png\",srcSet:\"https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png 1314w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:822,intrinsicWidth:1314,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1380+0+40+0+0+215),pixelHeight:822,pixelWidth:1314,sizes:\"657px\",src:\"https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png\",srcSet:\"https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Wfed0KpXcSbErIgQWGxpqVppHk.png 1314w\"},className:\"framer-ted5k9\",\"data-framer-name\":\"dashboard_red\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12rs1o7\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:251.5,intrinsicWidth:347,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+997+0+40+0+1688.2+0+559.9868+0),pixelHeight:503,pixelWidth:694,sizes:\"187px\",src:\"https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png 694w\"}},x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:251.5,intrinsicWidth:347,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+40+0+1688.2+0+727.9868+0),pixelHeight:503,pixelWidth:694,sizes:\"404px\",src:\"https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png 694w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:251.5,intrinsicWidth:347,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1380+0+40+0+0+665.9868+0),pixelHeight:503,pixelWidth:694,sizes:\"291px\",src:\"https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/U1c7VBQWWGRDi8Ceup94i7VY2Y.png 694w\"},className:\"framer-127j42q\",\"data-framer-name\":\"update\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:287,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+997+0+40+0+1688.2+0+559.9868+0),pixelHeight:402,pixelWidth:574,sizes:\"131.3632px\",src:\"https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png 574w\"}},x3woydfc9:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:287,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1188+0+40+0+1688.2+0+727.9868+0),pixelHeight:402,pixelWidth:574,sizes:\"318.4129px\",src:\"https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png 574w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:201,intrinsicWidth:287,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1380+0+40+0+0+665.9868+0),pixelHeight:402,pixelWidth:574,sizes:\"274.1493px\",src:\"https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png?scale-down-to=512 512w,https://framerusercontent.com/images/dIR9qgHaA0JQmGHJt673C30wkE.png 574w\"},className:\"framer-fzcry3\",\"data-framer-name\":\"nearby_alerts2\"})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17xnhba-container hidden-72rtr7 hidden-1gpbr9h\",nodeId:\"KD1glfOfg\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"KD1glfOfg\",layoutId:\"KD1glfOfg\",style:{height:\"100%\",width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j9ipn5-container hidden-72rtr7 hidden-19cj765\",nodeId:\"ae70GWRlV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ae70GWRlV\",layoutId:\"ae70GWRlV\",style:{width:\"100%\"},variant:\"lsP19_hYc\",width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bg9ghp-container hidden-1gpbr9h hidden-19cj765\",nodeId:\"Zu2hAesPu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Zu2hAesPu\",layoutId:\"Zu2hAesPu\",style:{width:\"100%\"},variant:\"lsP19_hYc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gijbgm\",\"data-framer-name\":\"customer-stories\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iqxuxr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d43h53-container\",nodeId:\"kBr2qhRnb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"kBr2qhRnb\",layoutId:\"kBr2qhRnb\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6qptw0\",\"data-framer-name\":\"header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-4da65b45-5bfa-44b5-a0a3-469b82619b37, rgb(184, 217, 255))\"},children:\"Customer Stories\"})}),className:\"framer-sqhkya\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fnf449-container\",nodeId:\"lOSDuZq4Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"lOSDuZq4Y\",layoutId:\"lOSDuZq4Y\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1xyfo9x\",\"data-styles-preset\":\"hJzY6fuhy\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"Samdesk users are one step ahead\"})}),className:\"framer-1q5g1d5\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1odv2ds-container\",nodeId:\"PFethwSKi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"BEChXgoJ6\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"PFethwSKi\",layoutId:\"PFethwSKi\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-129usyl\",\"data-framer-name\":\"video-two\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0vl84\",\"data-framer-name\":\"video-two-text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-4da65b45-5bfa-44b5-a0a3-469b82619b37, rgb(184, 217, 255))\"},children:\"Video\"})}),className:\"framer-1dyzzkc\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lmogt1-container\",nodeId:\"zox__4Fpz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"zox__4Fpz\",layoutId:\"zox__4Fpz\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"DoorDash\"})}),className:\"framer-khm9nf\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ep7cdb-container\",nodeId:\"y2Gy5Tt34\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"y2Gy5Tt34\",layoutId:\"y2Gy5Tt34\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h8iosi hidden-19cj765\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k61r0j\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Trust and Safety\"})}),className:\"framer-x3q781\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c8r4bu\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Real-Time Alerts\"})}),className:\"framer-1inyjz7\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14733n1-container\",nodeId:\"tgXpAdhSS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"tgXpAdhSS\",layoutId:\"tgXpAdhSS\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.9))\"},children:\"DoorDash uses samdesk to monitor for disruptions 24/7 and help keep Dashers safe before, during and after every delivery.   \"})}),className:\"framer-8dvgc8\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q66kxm-container\",nodeId:\"tFYdhrSMo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"tFYdhrSMo\",layoutId:\"tFYdhrSMo\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egimwh\",\"data-framer-name\":\"video-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m7qrql-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zthaQ7GQY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"zthaQ7GQY\",isMixedBorderRadius:false,isRed:true,layoutId:\"zthaQ7GQY\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/UYp6KnZ64Uc\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fjb3zq-container\",nodeId:\"ekfFNT00Z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"BEChXgoJ6\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ekfFNT00Z\",layoutId:\"ekfFNT00Z\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1spa947\",\"data-framer-name\":\"video-two\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4hily3\",\"data-framer-name\":\"video-two-text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-4da65b45-5bfa-44b5-a0a3-469b82619b37, rgb(184, 217, 255))\"},children:\"Video\"})}),className:\"framer-17nunfp\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8l4isa-container\",nodeId:\"WYe8JS_hS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"WYe8JS_hS\",layoutId:\"WYe8JS_hS\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"Cruise\"})}),className:\"framer-15dov99\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-183m83s-container\",nodeId:\"Tvie7jf_X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Tvie7jf_X\",layoutId:\"Tvie7jf_X\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a1vzv3 hidden-19cj765\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-b56jw8\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Corporate Security\"})}),className:\"framer-1ng3d5b\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1appyrc\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Business Enablement\"})}),className:\"framer-17p599g\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-134aoi4-container\",nodeId:\"wRQMDcqk1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"wRQMDcqk1\",layoutId:\"wRQMDcqk1\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.9))\"},children:\"U.S. autonomous car company Cruise uses samdesk to help stay ahead of hyperlocal microdisruptions and support operations as a business enabler.\"})}),className:\"framer-uajgox\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-v883qc-container\",nodeId:\"ZSYUi81SF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ZSYUi81SF\",layoutId:\"ZSYUi81SF\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1msou7v\",\"data-framer-name\":\"video-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b97r9t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UokbOSzVY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"UokbOSzVY\",isMixedBorderRadius:false,isRed:true,layoutId:\"UokbOSzVY\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/Eyp2QRkW09c\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rwgqs6-container\",nodeId:\"v39sfviWk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"BEChXgoJ6\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"v39sfviWk\",layoutId:\"v39sfviWk\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rw1gxp\",\"data-framer-name\":\"video-two\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o53tku\",\"data-framer-name\":\"video-two-text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-4da65b45-5bfa-44b5-a0a3-469b82619b37, rgb(184, 217, 255))\"},children:\"Video\"})}),className:\"framer-1lf2sp0\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vvcggz-container\",nodeId:\"ZiGPygzF1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ZiGPygzF1\",layoutId:\"ZiGPygzF1\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"Canada Goose\"})}),className:\"framer-4emp4w\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-124dat4-container\",nodeId:\"F6CJPPgKS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"F6CJPPgKS\",layoutId:\"F6CJPPgKS\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vtdz7i hidden-19cj765\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t7f076\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Corporate Security\"})}),className:\"framer-1q2dxtu\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18f7rrq\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Employee Safety\"})}),className:\"framer-13mn4oe\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kn6nch-container\",nodeId:\"zyp1fiLOW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"zyp1fiLOW\",layoutId:\"zyp1fiLOW\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.9))\"},children:\"Canadian retailer and manufacturer Canada Goose uses samdesk to know when its people and operations might be at risk\"})}),className:\"framer-abxpq\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9at562-container\",nodeId:\"yWJW6w4B5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"yWJW6w4B5\",layoutId:\"yWJW6w4B5\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a0am5\",\"data-framer-name\":\"video-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ta3ee1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jrTP_jO_x\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"jrTP_jO_x\",isMixedBorderRadius:false,isRed:true,layoutId:\"jrTP_jO_x\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/gG7TRrIcjdg\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c26kjk-container\",nodeId:\"HTKTSaMwS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"BEChXgoJ6\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"HTKTSaMwS\",layoutId:\"HTKTSaMwS\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6xsvj\",\"data-framer-name\":\"video-two\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1473yx3\",\"data-framer-name\":\"video-two-text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-4da65b45-5bfa-44b5-a0a3-469b82619b37, rgb(184, 217, 255))\"},children:\"Video\"})}),className:\"framer-7daiol\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1da3di6-container\",nodeId:\"hAgtGipHL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"hAgtGipHL\",layoutId:\"hAgtGipHL\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1pueqmo\",\"data-styles-preset\":\"kmzfIKVsR\",style:{\"--framer-text-color\":\"var(--token-7acb9f36-fe3c-4f78-adcb-f0ee2e722783, rgb(242, 242, 242))\"},children:\"Aerial Recovery\"})}),className:\"framer-7811dv\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-108ke1v-container\",nodeId:\"ZeM3SNmCZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"ZeM3SNmCZ\",layoutId:\"ZeM3SNmCZ\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tk6bd4 hidden-19cj765\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jz70dr\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"NGO\"})}),className:\"framer-x3kc6o\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1baxono\",\"data-framer-name\":\"video tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vlfifz\",\"data-styles-preset\":\"Bnf_zJFSO\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Rescue and Response\"})}),className:\"framer-1pxlupi\",\"data-framer-name\":\"Request a demo\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-badnk2-container\",nodeId:\"esyMc4_7D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"i9Jn_Ciar\"},x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"esyMc4_7D\",layoutId:\"esyMc4_7D\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(242, 242, 242, 0.9))\"},children:\"Non-profit Aerial Recovery uses samdesk to gather actionable intelligence to support rescue and response missions during disasters\"})}),className:\"framer-8y6ljv\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hpynik-container\",nodeId:\"u4kTD2Z8q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"i9Jn_Ciar\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"u4kTD2Z8q\",layoutId:\"u4kTD2Z8q\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-tp3w6i\",\"data-framer-name\":\"video-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ovp10d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"rlBsqg2FO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:8,bottomLeftRadius:8,bottomRightRadius:8,height:\"100%\",id:\"rlBsqg2FO\",isMixedBorderRadius:false,isRed:true,layoutId:\"rlBsqg2FO\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"High Quality\",topLeftRadius:8,topRightRadius:8,url:\"https://youtu.be/yWQ1B2mOkwo\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k8a97e-container\",nodeId:\"G0P9CX9yY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"BEChXgoJ6\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"G0P9CX9yY\",layoutId:\"G0P9CX9yY\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-t8koz3\",\"data-framer-name\":\"see-more\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l87C6yONN\"},implicitPathVariables:undefined},{href:{webPageId:\"l87C6yONN\"},implicitPathVariables:undefined},{href:{webPageId:\"l87C6yONN\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lq183n-container\",nodeId:\"bpmNLUfKb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{link:resolvedLinks1[2]},x3woydfc9:{link:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonTertiary,{height:\"100%\",id:\"bpmNLUfKb\",layoutId:\"bpmNLUfKb\",link:resolvedLinks1[0],title:\"See more customer stories\",variant:\"GQZ7OSAq_\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tr10f-container\",nodeId:\"wfCYBTzGq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"BEChXgoJ6\"},x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"wfCYBTzGq\",layoutId:\"wfCYBTzGq\",style:{width:\"100%\"},variant:\"d0tDhyx8X\",width:\"100%\"})})})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m3849h hidden-72rtr7 hidden-1gpbr9h\",\"data-framer-name\":\"use-cases-mobile\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kvjvja-container\",nodeId:\"Q3ltzeLci\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Q3ltzeLci\",layoutId:\"Q3ltzeLci\",style:{width:\"100%\"},variant:\"lsP19_hYc\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4o6c2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3nvb8n\",\"data-framer-name\":\"intro-container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rolc8n-container\",nodeId:\"yhOyIxuCb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"yhOyIxuCb\",layoutId:\"yhOyIxuCb\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-alignment\":\"center\"},children:\"Use Cases\"})}),className:\"framer-1pbq0w5\",\"data-framer-name\":\"Customer stories\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jg0l8a-container\",nodeId:\"J1qBzOw4k\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"J1qBzOw4k\",layoutId:\"J1qBzOw4k\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-176s7mf\",\"data-styles-preset\":\"nzOVvzJVP\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Stop reacting. \",/*#__PURE__*/_jsx(\"br\",{}),\"Take action.\"]})}),className:\"framer-qn5igv\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aw9sxx-container\",nodeId:\"C7scjhYyq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"C7scjhYyq\",layoutId:\"C7scjhYyq\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Disruptions and anomalies come in a wide range of events. With samdesk early warning alerts, you\u2019re the first to know and can take action that mitigates negative consequences and achieves positive outcomes.\"})}),className:\"framer-bwmmt8\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-156a80h-container\",nodeId:\"Fsu4BPfIC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"Fsu4BPfIC\",layoutId:\"Fsu4BPfIC\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-smprbs-container\",isModuleExternal:true,nodeId:\"kWb_HA_4Y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.15)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"kWb_HA_4Y\",intervalControl:5,itemAmount:1,layoutId:\"kWb_HA_4Y\",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:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gaj7x0-container\",\"data-framer-name\":\"mobile - aviation\",inComponentSlot:true,name:\"mobile - aviation\",nodeId:\"CfcVMd54W\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"CfcVMd54W\",layoutId:\"CfcVMd54W\",name:\"mobile - aviation\",variant:\"W3YjeZccn\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n4y98s-container\",\"data-framer-name\":\"mobile - active shooter\",inComponentSlot:true,name:\"mobile - active shooter\",nodeId:\"Btuh6Zxyk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"Btuh6Zxyk\",layoutId:\"Btuh6Zxyk\",name:\"mobile - active shooter\",variant:\"dTeUtJRm5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g7776j-container\",\"data-framer-name\":\"mobile - hurricane\",inComponentSlot:true,name:\"mobile - hurricane\",nodeId:\"WT6nV1OVW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"WT6nV1OVW\",layoutId:\"WT6nV1OVW\",name:\"mobile - hurricane\",variant:\"AUWHpK7xz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cjjbqp-container\",\"data-framer-name\":\"mobile - system outage\",inComponentSlot:true,name:\"mobile - system outage\",nodeId:\"UnDG7_L90\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"UnDG7_L90\",layoutId:\"UnDG7_L90\",name:\"mobile - system outage\",variant:\"iiWVZ0Mdw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zmbmjk-container\",\"data-framer-name\":\"mobile - military action\",inComponentSlot:true,name:\"mobile - military action\",nodeId:\"W9qiOb4xh\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"W9qiOb4xh\",layoutId:\"W9qiOb4xh\",name:\"mobile - military action\",variant:\"UmIoIlWcm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-eylpi2-container\",\"data-framer-name\":\"mobile - outbreak\",inComponentSlot:true,name:\"mobile - outbreak\",nodeId:\"TmKZyBvoO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"TmKZyBvoO\",layoutId:\"TmKZyBvoO\",name:\"mobile - outbreak\",variant:\"h3v6Oqi_N\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u9wk4g\",\"data-framer-name\":\"strap-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ig2f6t-container\",nodeId:\"m6b2Ucffm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"m6b2Ucffm\",layoutId:\"m6b2Ucffm\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-19jfdwt hidden-19cj765\",\"data-framer-name\":\"Use Cases\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-157v4vt\",\"data-framer-name\":\"strap-container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18u164e\",\"data-framer-name\":\"body-text\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14551y3-container\",nodeId:\"T08KKp5d6\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"T08KKp5d6\",layoutId:\"T08KKp5d6\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-743esb\",\"data-styles-preset\":\"NWLcJmLpm\",style:{\"--framer-text-color\":\"var(--token-940d61a0-6a2e-406a-a286-2a47cfa15622, rgb(33, 150, 83))\"},children:\"Use Cases\"})}),className:\"framer-1kdea74\",\"data-framer-name\":\"Real-time crisis alerts\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ws76eg-container\",nodeId:\"iXjxNt2E3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"iXjxNt2E3\",layoutId:\"iXjxNt2E3\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-176s7mf\",\"data-styles-preset\":\"nzOVvzJVP\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Stop reacting. Take action.\"})}),className:\"framer-1rwyd48\",\"data-framer-name\":\"In times of crisis every second counts towards a win\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7c272x-container\",nodeId:\"st6An6Gd_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"st6An6Gd_\",layoutId:\"st6An6Gd_\",style:{width:\"100%\"},variant:\"q253cR7vY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1lulocw\",\"data-styles-preset\":\"tYd9HHvuM\",style:{\"--framer-text-color\":\"var(--token-7c35a32e-cab5-4917-a970-49a474cf0a52, rgb(34, 34, 34))\"},children:\"Disruptions and anomalies come in a wide range of events. With samdesk early warning alerts, you\u2019re the first to know and can take action that mitigates negative consequences and achieves positive outcomes.\"})}),className:\"framer-a0c77p\",\"data-framer-name\":\"Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla. Lorem ipsum dolor sit amet consectetur. Dui varius pharetra ornare feugiat egestas semper malesuada at. Eget ipsum neque quis lacus faucibus nulla.\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-qty3o7-container\",nodeId:\"zS2Czc10y\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"zS2Czc10y\",layoutId:\"zS2Czc10y\",style:{width:\"100%\"},variant:\"BEChXgoJ6\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o4gbx hidden-72rtr7\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17tmvo6-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ShfQB6n4M\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:.35,fadeContent:false,fadeInset:32,fadeWidth:0,overflow:false},gap:0,height:\"100%\",id:\"ShfQB6n4M\",intervalControl:5,itemAmount:1,layoutId:\"ShfQB6n4M\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qb85ew-container\",\"data-framer-name\":\"tablet - aviation\",inComponentSlot:true,name:\"tablet - aviation\",nodeId:\"FOlmzujHS\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"FOlmzujHS\",layoutId:\"FOlmzujHS\",name:\"tablet - aviation\",variant:\"BIpsdnaLf\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t0nap3-container\",\"data-framer-name\":\"tablet - active shooter\",inComponentSlot:true,name:\"tablet - active shooter\",nodeId:\"UOZRArACb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"UOZRArACb\",layoutId:\"UOZRArACb\",name:\"tablet - active shooter\",variant:\"x9tE3wW3j\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-55t0j1-container\",\"data-framer-name\":\"tablet hurricane\",inComponentSlot:true,name:\"tablet hurricane\",nodeId:\"v4G9YxPYu\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"v4G9YxPYu\",layoutId:\"v4G9YxPYu\",name:\"tablet hurricane\",variant:\"F73PuGvw6\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g5uf1a-container\",\"data-framer-name\":\"tablet system outage\",inComponentSlot:true,name:\"tablet system outage\",nodeId:\"Rxw7f9ZXT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"Rxw7f9ZXT\",layoutId:\"Rxw7f9ZXT\",name:\"tablet system outage\",variant:\"gves_9_UU\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1eyebx9-container\",\"data-framer-name\":\"tablet military action\",inComponentSlot:true,name:\"tablet military action\",nodeId:\"PLel6lspC\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"PLel6lspC\",layoutId:\"PLel6lspC\",name:\"tablet military action\",variant:\"DzPHrwUpw\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ikmb8z-container\",\"data-framer-name\":\"tablet outbreak\",inComponentSlot:true,name:\"tablet outbreak\",nodeId:\"KXYlWBICb\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"KXYlWBICb\",layoutId:\"KXYlWBICb\",name:\"tablet outbreak\",variant:\"Cj6rp5x1L\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-m33916 hidden-1gpbr9h\",\"data-framer-name\":\"slideshow-container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19wewr8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"S5e5XXC5D\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow1,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:.35,fadeContent:false,fadeInset:32,fadeWidth:0,overflow:false},gap:0,height:\"100%\",id:\"S5e5XXC5D\",intervalControl:5,itemAmount:1,layoutId:\"S5e5XXC5D\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qfi73b-container\",\"data-framer-name\":\"Aviation\",inComponentSlot:true,name:\"Aviation\",nodeId:\"a7HpAqCpf\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"a7HpAqCpf\",layoutId:\"a7HpAqCpf\",name:\"Aviation\",variant:\"QexUiquvo\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pi46qn-container\",\"data-framer-name\":\"active shooter\",inComponentSlot:true,name:\"active shooter\",nodeId:\"UneO8xU5K\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"UneO8xU5K\",layoutId:\"UneO8xU5K\",name:\"active shooter\",variant:\"z5JWBVece\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kqbaug-container\",\"data-framer-name\":\"hurricane\",inComponentSlot:true,name:\"hurricane\",nodeId:\"IccDzIEOr\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"IccDzIEOr\",layoutId:\"IccDzIEOr\",name:\"hurricane\",variant:\"uGkIubDM7\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cm7b5k-container\",\"data-framer-name\":\"system outage\",inComponentSlot:true,name:\"system outage\",nodeId:\"dcXI4lRmP\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"dcXI4lRmP\",layoutId:\"dcXI4lRmP\",name:\"system outage\",variant:\"sV01wiHcR\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11d3b2o-container\",\"data-framer-name\":\"military action\",inComponentSlot:true,name:\"military action\",nodeId:\"woVnDjyLR\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"woVnDjyLR\",layoutId:\"woVnDjyLR\",name:\"military action\",variant:\"h7_0Z_5Tm\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ejnodc-container\",\"data-framer-name\":\"Outbreak\",inComponentSlot:true,name:\"Outbreak\",nodeId:\"UqH2RjOVA\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Horizontal,{height:\"100%\",id:\"UqH2RjOVA\",layoutId:\"UqH2RjOVA\",name:\"Outbreak\",variant:\"CwbNmyLQU\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{delay:0,duration:0,ease:[0,0,1,1],type:\"tween\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e5h8y2\",\"data-framer-name\":\"quote-two\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v1cx4-container hidden-1gpbr9h hidden-19cj765\",nodeId:\"AL1Ewh6YM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"AL1Ewh6YM\",layoutId:\"AL1Ewh6YM\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14bymy6-container hidden-72rtr7 hidden-1gpbr9h\",nodeId:\"or6G7rwtb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"or6G7rwtb\",layoutId:\"or6G7rwtb\",style:{width:\"100%\"},variant:\"lsP19_hYc\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-oywum-container hidden-72rtr7 hidden-19cj765\",nodeId:\"prpdiOWeN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"prpdiOWeN\",layoutId:\"prpdiOWeN\",variant:\"lsP19_hYc\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+7880.3868+0+40},x3woydfc9:{width:\"762px\",y:(componentViewport?.y||0)+0+9367.3868+0+40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:201,width:\"1152px\",y:(componentViewport?.y||0)+0+6275.4+0+40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tzwi5q-container\",nodeId:\"xQUoS4l9F\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Quote,{height:\"100%\",id:\"xQUoS4l9F\",layoutId:\"xQUoS4l9F\",style:{width:\"100%\"},variant:\"jGzEbEuwR\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zje0bl-container hidden-1gpbr9h\",nodeId:\"y1T6rD3Y4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"y1T6rD3Y4\",layoutId:\"y1T6rD3Y4\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nnezsz-container hidden-72rtr7 hidden-19cj765\",nodeId:\"nRW8peyy0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"nRW8peyy0\",layoutId:\"nRW8peyy0\",variant:\"lsP19_hYc\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1da67xv\",\"data-framer-name\":\"Client Ticker\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{width:`calc(${componentViewport?.width||\"100vw\"} - 48px)`,y:(componentViewport?.y||0)+0+8161.3868+0+0},x3woydfc9:{y:(componentViewport?.y||0)+0+9648.3868+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:479,width:`calc((${componentViewport?.width||\"100vw\"} - 48px) * 0.96)`,y:(componentViewport?.y||0)+0+6556.4+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i6p3wd-container\",nodeId:\"sR4LmgyGB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CustomerTicker,{height:\"100%\",id:\"sR4LmgyGB\",layoutId:\"sR4LmgyGB\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xprc3f-container\",nodeId:\"sNyskU8Kn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"lsP19_hYc\"}},children:/*#__PURE__*/_jsx(Spacer,{height:\"100%\",id:\"sNyskU8Kn\",layoutId:\"sNyskU8Kn\",style:{width:\"100%\"},variant:\"nWV1T3H0I\",width:\"100%\"})})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Q8FhP5c6Z:{height:600,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8680.3868}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10mg0w0-container hidden-72rtr7 hidden-1gpbr9h\",nodeId:\"qC5dWIAH0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"qC5dWIAH0\",layoutId:\"qC5dWIAH0\",style:{width:\"100%\"},variant:\"JRY4IvVCA\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-176iy10 hidden-19cj765\",\"data-framer-name\":\"footer-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+10167.3868+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+7075.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5fiwgu-container\",nodeId:\"cYnhZrjaW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{x3woydfc9:{variant:\"aVmEWdKdi\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"cYnhZrjaW\",layoutId:\"cYnhZrjaW\",style:{width:\"100%\"},variant:\"yfnVm7szn\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-eAIuB.framer-lux5qc, .framer-eAIuB .framer-lux5qc { display: block; }\",\".framer-eAIuB.framer-72rtr7 { 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: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-eAIuB .framer-1v4usgx-container { flex: none; height: 53px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-4yoij9-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-eAIuB .framer-1rdovvf { align-content: center; align-items: center; background: radial-gradient(50% 55.1% at 49.5% 95.8%, #002e5c 0%, hsl(211, 54%, 7%) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 966px; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1cpq5ki-container, .framer-eAIuB .framer-12grs0p-container, .framer-eAIuB .framer-owe2gv-container, .framer-eAIuB .framer-1gfr2fb-container, .framer-eAIuB .framer-ea7so2-container, .framer-eAIuB .framer-18mz17k-container, .framer-eAIuB .framer-130kr0w-container, .framer-eAIuB .framer-1s4ack7-container, .framer-eAIuB .framer-ft6l5k-container, .framer-eAIuB .framer-1vd055u-container, .framer-eAIuB .framer-167pymx-container, .framer-eAIuB .framer-1wpzxkg-container, .framer-eAIuB .framer-x5e59i-container, .framer-eAIuB .framer-vqn6f6-container, .framer-eAIuB .framer-1cgpiw3-container, .framer-eAIuB .framer-1j9ipn5-container, .framer-eAIuB .framer-1bg9ghp-container, .framer-eAIuB .framer-1d43h53-container, .framer-eAIuB .framer-1fnf449-container, .framer-eAIuB .framer-1odv2ds-container, .framer-eAIuB .framer-1lmogt1-container, .framer-eAIuB .framer-ep7cdb-container, .framer-eAIuB .framer-14733n1-container, .framer-eAIuB .framer-1q66kxm-container, .framer-eAIuB .framer-fjb3zq-container, .framer-eAIuB .framer-8l4isa-container, .framer-eAIuB .framer-183m83s-container, .framer-eAIuB .framer-134aoi4-container, .framer-eAIuB .framer-v883qc-container, .framer-eAIuB .framer-1rwgqs6-container, .framer-eAIuB .framer-vvcggz-container, .framer-eAIuB .framer-124dat4-container, .framer-eAIuB .framer-kn6nch-container, .framer-eAIuB .framer-9at562-container, .framer-eAIuB .framer-c26kjk-container, .framer-eAIuB .framer-1da3di6-container, .framer-eAIuB .framer-108ke1v-container, .framer-eAIuB .framer-badnk2-container, .framer-eAIuB .framer-hpynik-container, .framer-eAIuB .framer-1k8a97e-container, .framer-eAIuB .framer-tr10f-container, .framer-eAIuB .framer-1kvjvja-container, .framer-eAIuB .framer-ig2f6t-container, .framer-eAIuB .framer-ws76eg-container, .framer-eAIuB .framer-7c272x-container, .framer-eAIuB .framer-qty3o7-container, .framer-eAIuB .framer-14bymy6-container, .framer-eAIuB .framer-1xprc3f-container, .framer-eAIuB .framer-10mg0w0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-eAIuB .framer-pw8srp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-trjg40 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1ey7i5t { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1k43app { flex: none; height: 22px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1wcouwc { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 991px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1s1ksch { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 664px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-49bdi9-container { flex: none; height: 30px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1gaunxl-container, .framer-eAIuB .framer-lq183n-container, .framer-eAIuB .framer-oywum-container, .framer-eAIuB .framer-1nnezsz-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-eAIuB .framer-1msdzlx-container, .framer-eAIuB .framer-1kvlggz-container, .framer-eAIuB .framer-14551y3-container, .framer-eAIuB .framer-1v1cx4-container, .framer-eAIuB .framer-tzwi5q-container, .framer-eAIuB .framer-zje0bl-container { flex: none; height: auto; position: relative; width: 1152px; }\",\".framer-eAIuB .framer-eu8xb4 { flex: none; height: 416px; overflow: visible; position: relative; width: 1202px; }\",\".framer-eAIuB .framer-1c3rbds { bottom: 71px; flex: none; height: 223px; left: -43px; overflow: visible; position: absolute; width: 311px; }\",\".framer-eAIuB .framer-amoybx { align-content: center; align-items: center; bottom: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.45; overflow: visible; padding: 0px; position: absolute; right: -33px; width: min-content; }\",\".framer-eAIuB .framer-9ymk6d { aspect-ratio: 3.1857142857142855 / 1; flex: none; height: 85px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 271px); }\",\".framer-eAIuB .framer-9d2l16 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.65; overflow: visible; padding: 0px; position: absolute; right: -29px; top: -3px; width: min-content; }\",\".framer-eAIuB .framer-1g7hvov { aspect-ratio: 3.1857142857142855 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 101px); overflow: visible; position: relative; width: 323px; }\",\".framer-eAIuB .framer-pwzok6 { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; bottom: -42px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 49%; overflow: hidden; padding: 0px; position: absolute; transform: translateX(-50%); width: 666px; will-change: var(--framer-will-change-override, transform); }\",\".framer-eAIuB .framer-6twgvo { aspect-ratio: 1.6199756394640683 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 410px); overflow: visible; position: relative; width: 665px; }\",\".framer-eAIuB .framer-1hg5ank { aspect-ratio: 3.1857142857142855 / 1; bottom: 112px; flex: none; height: var(--framer-aspect-ratio-supported, 144px); left: 88px; overflow: visible; position: absolute; width: 457px; }\",\".framer-eAIuB .framer-4lauph { aspect-ratio: 1.6159420289855073 / 1; bottom: 43px; flex: none; height: var(--framer-aspect-ratio-supported, 209px); left: 811px; overflow: visible; position: absolute; width: 338px; }\",\".framer-eAIuB .framer-6kpa1l { aspect-ratio: 3.1857142857142855 / 1; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.8333333333333333px rgba(0, 0, 0, 0.13), 0px 2.288533303243457px 2.288533303243457px -1.6666666666666665px rgba(0, 0, 0, 0.125), 0px 10px 10px -2.5px rgba(0, 0, 0, 0.125); flex: none; height: var(--framer-aspect-ratio-supported, 102px); left: 3px; overflow: visible; position: absolute; top: 122px; width: 325px; }\",\".framer-eAIuB .framer-mjxdof { aspect-ratio: 1.6159420289855073 / 1; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -0.8333333333333333px rgba(0, 0, 0, 0.13), 0px 2.288533303243457px 2.288533303243457px -1.6666666666666665px rgba(0, 0, 0, 0.125), 0px 10px 10px -2.5px rgba(0, 0, 0, 0.125); flex: none; height: var(--framer-aspect-ratio-supported, 137px); left: 525px; overflow: visible; position: absolute; top: 118px; width: 221px; }\",\".framer-eAIuB .framer-109cnd6 { aspect-ratio: 1.808888888888889 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 177px); left: 836px; overflow: visible; position: absolute; top: -31px; width: 320px; }\",\".framer-eAIuB .framer-19a3qti { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-jsjy4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1aus5he { align-content: center; align-items: center; background: radial-gradient(50% 21.059431524547804% at 28.299999999999997% -13.900000000000002%, #297fd6 0%, hsl(211, 40%, 11%) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1ug05w3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1152px; }\",\".framer-eAIuB .framer-8xwziw { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-eAIuB .framer-m0gd0e, .framer-eAIuB .framer-18u164e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1myrh40, .framer-eAIuB .framer-1dyzzkc, .framer-eAIuB .framer-17nunfp, .framer-eAIuB .framer-1lf2sp0, .framer-eAIuB .framer-7daiol, .framer-eAIuB .framer-1kdea74 { flex: none; height: 22px; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1d3vem2, .framer-eAIuB .framer-1rwyd48 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-46w9jh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-l1hgeu { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-61294p, .framer-eAIuB .framer-1vv6oxt, .framer-eAIuB .framer-oa0ojw, .framer-eAIuB .framer-12ihvhr, .framer-eAIuB .framer-tnh8t1, .framer-eAIuB .framer-1fpsika { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-181uo6t-container, .framer-eAIuB .framer-3wxb8y-container, .framer-eAIuB .framer-1fa5flj-container, .framer-eAIuB .framer-1b902nt-container, .framer-eAIuB .framer-1vgx2zo-container, .framer-eAIuB .framer-v7o0gg-container { flex: none; height: 36px; position: relative; width: 36px; }\",\".framer-eAIuB .framer-157bxyn, .framer-eAIuB .framer-18hhdfs, .framer-eAIuB .framer-122u2aw, .framer-eAIuB .framer-ur28gf, .framer-eAIuB .framer-j94fmx { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1d7erfw { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 521px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-14q4dh6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 548px; }\",\".framer-eAIuB .framer-3zv2xr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 606px; }\",\".framer-eAIuB .framer-zgsftb { aspect-ratio: 2.7653061224489797 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); overflow: visible; position: relative; width: 331px; }\",\".framer-eAIuB .framer-vjn1ip { aspect-ratio: 1.3421052631578947 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 175px); overflow: visible; position: relative; width: 235px; }\",\".framer-eAIuB .framer-ted5k9 { aspect-ratio: 1.5985915492957747 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 411px); overflow: visible; position: relative; width: 657px; }\",\".framer-eAIuB .framer-12rs1o7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 900px; }\",\".framer-eAIuB .framer-127j42q { aspect-ratio: 1.3797216699801194 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 211px); overflow: visible; position: relative; width: 291px; }\",\".framer-eAIuB .framer-fzcry3 { aspect-ratio: 1.427860696517413 / 1; flex: none; height: 192px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 274px); }\",\".framer-eAIuB .framer-17xnhba-container { flex: none; height: 40px; position: relative; width: 342px; }\",\".framer-eAIuB .framer-1gijbgm { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(41, 144, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 96%; will-change: var(--framer-will-change-override, transform); }\",\".framer-eAIuB .framer-iqxuxr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1014px; }\",\".framer-eAIuB .framer-6qptw0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-sqhkya { flex: none; height: 22px; overflow: hidden; position: relative; white-space: pre-wrap; width: 560px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1q5g1d5 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-129usyl, .framer-eAIuB .framer-1spa947, .framer-eAIuB .framer-rw1gxp, .framer-eAIuB .framer-1e6xsvj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-z0vl84, .framer-eAIuB .framer-4hily3, .framer-eAIuB .framer-o53tku, .framer-eAIuB .framer-1473yx3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eAIuB .framer-khm9nf, .framer-eAIuB .framer-8dvgc8, .framer-eAIuB .framer-15dov99, .framer-eAIuB .framer-uajgox, .framer-eAIuB .framer-4emp4w, .framer-eAIuB .framer-abxpq, .framer-eAIuB .framer-7811dv, .framer-eAIuB .framer-8y6ljv { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1h8iosi, .framer-eAIuB .framer-a1vzv3, .framer-eAIuB .framer-1vtdz7i, .framer-eAIuB .framer-1tk6bd4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-eAIuB .framer-k61r0j, .framer-eAIuB .framer-c8r4bu, .framer-eAIuB .framer-b56jw8, .framer-eAIuB .framer-1appyrc, .framer-eAIuB .framer-t7f076, .framer-eAIuB .framer-18f7rrq, .framer-eAIuB .framer-1jz70dr, .framer-eAIuB .framer-1baxono { align-content: center; align-items: center; background-color: var(--token-880d7a78-66fd-4ab2-99d9-27d51eec2aec, rgba(217, 223, 237, 0.9)); border-bottom-left-radius: 449px; border-bottom-right-radius: 449px; border-top-left-radius: 449px; border-top-right-radius: 449px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: 36px; justify-content: center; overflow: visible; padding: 6px 16px 6px 16px; position: relative; width: min-content; }\",\".framer-eAIuB .framer-x3q781, .framer-eAIuB .framer-1inyjz7, .framer-eAIuB .framer-1ng3d5b, .framer-eAIuB .framer-17p599g, .framer-eAIuB .framer-1q2dxtu, .framer-eAIuB .framer-13mn4oe, .framer-eAIuB .framer-x3kc6o, .framer-eAIuB .framer-1pxlupi { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-eAIuB .framer-1egimwh, .framer-eAIuB .framer-1msou7v, .framer-eAIuB .framer-a0am5, .framer-eAIuB .framer-tp3w6i { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-eAIuB .framer-m7qrql-container, .framer-eAIuB .framer-b97r9t-container, .framer-eAIuB .framer-ta3ee1-container, .framer-eAIuB .framer-ovp10d-container { flex: none; height: 270px; position: relative; width: 480px; }\",\".framer-eAIuB .framer-t8koz3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-m3849h, .framer-eAIuB .framer-19jfdwt, .framer-eAIuB .framer-1da67xv { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-t4o6c2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-3nvb8n { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-eAIuB .framer-1rolc8n-container, .framer-eAIuB .framer-jg0l8a-container, .framer-eAIuB .framer-aw9sxx-container, .framer-eAIuB .framer-156a80h-container { flex: none; height: auto; position: relative; width: 294px; }\",\".framer-eAIuB .framer-1pbq0w5, .framer-eAIuB .framer-bwmmt8 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-qn5igv { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 294px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-smprbs-container { flex: none; height: 1196px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-1gaj7x0-container, .framer-eAIuB .framer-1n4y98s-container, .framer-eAIuB .framer-1g7776j-container, .framer-eAIuB .framer-cjjbqp-container, .framer-eAIuB .framer-zmbmjk-container, .framer-eAIuB .framer-eylpi2-container, .framer-eAIuB .framer-1qb85ew-container, .framer-eAIuB .framer-t0nap3-container, .framer-eAIuB .framer-55t0j1-container, .framer-eAIuB .framer-1g5uf1a-container, .framer-eAIuB .framer-1eyebx9-container, .framer-eAIuB .framer-ikmb8z-container, .framer-eAIuB .framer-1qfi73b-container, .framer-eAIuB .framer-1pi46qn-container, .framer-eAIuB .framer-1kqbaug-container, .framer-eAIuB .framer-cm7b5k-container, .framer-eAIuB .framer-11d3b2o-container, .framer-eAIuB .framer-1ejnodc-container { height: auto; position: relative; width: auto; }\",\".framer-eAIuB .framer-1u9wk4g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 390px; }\",\".framer-eAIuB .framer-157v4vt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1152px; }\",\".framer-eAIuB .framer-a0c77p { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 576px; word-break: break-word; word-wrap: break-word; }\",\".framer-eAIuB .framer-1o4gbx { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 106%; }\",\".framer-eAIuB .framer-17tmvo6-container { flex: none; height: 1474px; position: relative; width: 762px; }\",\".framer-eAIuB .framer-m33916 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-eAIuB .framer-19wewr8-container { flex: none; height: 817px; position: relative; width: 1135px; }\",\".framer-eAIuB .framer-e5h8y2 { align-content: center; align-items: center; background-color: #f6f6f6; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-i6p3wd-container { flex: none; height: auto; position: relative; width: 96%; }\",\".framer-eAIuB .framer-176iy10 { align-content: center; align-items: center; background-color: #08111b; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-eAIuB .framer-5fiwgu-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eAIuB.framer-72rtr7, .framer-eAIuB .framer-1rdovvf, .framer-eAIuB .framer-pw8srp, .framer-eAIuB .framer-trjg40, .framer-eAIuB .framer-1ey7i5t, .framer-eAIuB .framer-amoybx, .framer-eAIuB .framer-9d2l16, .framer-eAIuB .framer-pwzok6, .framer-eAIuB .framer-19a3qti, .framer-eAIuB .framer-jsjy4p, .framer-eAIuB .framer-1aus5he, .framer-eAIuB .framer-1ug05w3, .framer-eAIuB .framer-8xwziw, .framer-eAIuB .framer-m0gd0e, .framer-eAIuB .framer-46w9jh, .framer-eAIuB .framer-61294p, .framer-eAIuB .framer-1vv6oxt, .framer-eAIuB .framer-oa0ojw, .framer-eAIuB .framer-12ihvhr, .framer-eAIuB .framer-tnh8t1, .framer-eAIuB .framer-1fpsika, .framer-eAIuB .framer-14q4dh6, .framer-eAIuB .framer-3zv2xr, .framer-eAIuB .framer-12rs1o7, .framer-eAIuB .framer-1gijbgm, .framer-eAIuB .framer-iqxuxr, .framer-eAIuB .framer-6qptw0, .framer-eAIuB .framer-129usyl, .framer-eAIuB .framer-z0vl84, .framer-eAIuB .framer-1h8iosi, .framer-eAIuB .framer-k61r0j, .framer-eAIuB .framer-c8r4bu, .framer-eAIuB .framer-1egimwh, .framer-eAIuB .framer-1spa947, .framer-eAIuB .framer-4hily3, .framer-eAIuB .framer-a1vzv3, .framer-eAIuB .framer-b56jw8, .framer-eAIuB .framer-1appyrc, .framer-eAIuB .framer-1msou7v, .framer-eAIuB .framer-rw1gxp, .framer-eAIuB .framer-o53tku, .framer-eAIuB .framer-1vtdz7i, .framer-eAIuB .framer-t7f076, .framer-eAIuB .framer-18f7rrq, .framer-eAIuB .framer-a0am5, .framer-eAIuB .framer-1e6xsvj, .framer-eAIuB .framer-1473yx3, .framer-eAIuB .framer-1tk6bd4, .framer-eAIuB .framer-1jz70dr, .framer-eAIuB .framer-1baxono, .framer-eAIuB .framer-tp3w6i, .framer-eAIuB .framer-t8koz3, .framer-eAIuB .framer-m3849h, .framer-eAIuB .framer-t4o6c2, .framer-eAIuB .framer-3nvb8n, .framer-eAIuB .framer-1u9wk4g, .framer-eAIuB .framer-19jfdwt, .framer-eAIuB .framer-157v4vt, .framer-eAIuB .framer-18u164e, .framer-eAIuB .framer-1o4gbx, .framer-eAIuB .framer-m33916, .framer-eAIuB .framer-e5h8y2, .framer-eAIuB .framer-1da67xv, .framer-eAIuB .framer-176iy10 { gap: 0px; } .framer-eAIuB.framer-72rtr7 > *, .framer-eAIuB .framer-trjg40 > *, .framer-eAIuB .framer-1ey7i5t > *, .framer-eAIuB .framer-19a3qti > *, .framer-eAIuB .framer-1aus5he > *, .framer-eAIuB .framer-8xwziw > *, .framer-eAIuB .framer-m0gd0e > *, .framer-eAIuB .framer-1gijbgm > *, .framer-eAIuB .framer-iqxuxr > *, .framer-eAIuB .framer-6qptw0 > *, .framer-eAIuB .framer-z0vl84 > *, .framer-eAIuB .framer-4hily3 > *, .framer-eAIuB .framer-o53tku > *, .framer-eAIuB .framer-1473yx3 > *, .framer-eAIuB .framer-m3849h > *, .framer-eAIuB .framer-3nvb8n > *, .framer-eAIuB .framer-1u9wk4g > *, .framer-eAIuB .framer-19jfdwt > *, .framer-eAIuB .framer-157v4vt > *, .framer-eAIuB .framer-18u164e > *, .framer-eAIuB .framer-1o4gbx > *, .framer-eAIuB .framer-e5h8y2 > *, .framer-eAIuB .framer-1da67xv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-eAIuB.framer-72rtr7 > :first-child, .framer-eAIuB .framer-1rdovvf > :first-child, .framer-eAIuB .framer-pw8srp > :first-child, .framer-eAIuB .framer-trjg40 > :first-child, .framer-eAIuB .framer-1ey7i5t > :first-child, .framer-eAIuB .framer-amoybx > :first-child, .framer-eAIuB .framer-9d2l16 > :first-child, .framer-eAIuB .framer-19a3qti > :first-child, .framer-eAIuB .framer-1aus5he > :first-child, .framer-eAIuB .framer-8xwziw > :first-child, .framer-eAIuB .framer-m0gd0e > :first-child, .framer-eAIuB .framer-14q4dh6 > :first-child, .framer-eAIuB .framer-1gijbgm > :first-child, .framer-eAIuB .framer-iqxuxr > :first-child, .framer-eAIuB .framer-6qptw0 > :first-child, .framer-eAIuB .framer-z0vl84 > :first-child, .framer-eAIuB .framer-k61r0j > :first-child, .framer-eAIuB .framer-c8r4bu > :first-child, .framer-eAIuB .framer-1egimwh > :first-child, .framer-eAIuB .framer-4hily3 > :first-child, .framer-eAIuB .framer-b56jw8 > :first-child, .framer-eAIuB .framer-1appyrc > :first-child, .framer-eAIuB .framer-1msou7v > :first-child, .framer-eAIuB .framer-o53tku > :first-child, .framer-eAIuB .framer-t7f076 > :first-child, .framer-eAIuB .framer-18f7rrq > :first-child, .framer-eAIuB .framer-a0am5 > :first-child, .framer-eAIuB .framer-1473yx3 > :first-child, .framer-eAIuB .framer-1jz70dr > :first-child, .framer-eAIuB .framer-1baxono > :first-child, .framer-eAIuB .framer-tp3w6i > :first-child, .framer-eAIuB .framer-m3849h > :first-child, .framer-eAIuB .framer-t4o6c2 > :first-child, .framer-eAIuB .framer-3nvb8n > :first-child, .framer-eAIuB .framer-1u9wk4g > :first-child, .framer-eAIuB .framer-19jfdwt > :first-child, .framer-eAIuB .framer-157v4vt > :first-child, .framer-eAIuB .framer-18u164e > :first-child, .framer-eAIuB .framer-1o4gbx > :first-child, .framer-eAIuB .framer-e5h8y2 > :first-child, .framer-eAIuB .framer-1da67xv > :first-child { margin-top: 0px; } .framer-eAIuB.framer-72rtr7 > :last-child, .framer-eAIuB .framer-1rdovvf > :last-child, .framer-eAIuB .framer-pw8srp > :last-child, .framer-eAIuB .framer-trjg40 > :last-child, .framer-eAIuB .framer-1ey7i5t > :last-child, .framer-eAIuB .framer-amoybx > :last-child, .framer-eAIuB .framer-9d2l16 > :last-child, .framer-eAIuB .framer-19a3qti > :last-child, .framer-eAIuB .framer-1aus5he > :last-child, .framer-eAIuB .framer-8xwziw > :last-child, .framer-eAIuB .framer-m0gd0e > :last-child, .framer-eAIuB .framer-14q4dh6 > :last-child, .framer-eAIuB .framer-1gijbgm > :last-child, .framer-eAIuB .framer-iqxuxr > :last-child, .framer-eAIuB .framer-6qptw0 > :last-child, .framer-eAIuB .framer-z0vl84 > :last-child, .framer-eAIuB .framer-k61r0j > :last-child, .framer-eAIuB .framer-c8r4bu > :last-child, .framer-eAIuB .framer-1egimwh > :last-child, .framer-eAIuB .framer-4hily3 > :last-child, .framer-eAIuB .framer-b56jw8 > :last-child, .framer-eAIuB .framer-1appyrc > :last-child, .framer-eAIuB .framer-1msou7v > :last-child, .framer-eAIuB .framer-o53tku > :last-child, .framer-eAIuB .framer-t7f076 > :last-child, .framer-eAIuB .framer-18f7rrq > :last-child, .framer-eAIuB .framer-a0am5 > :last-child, .framer-eAIuB .framer-1473yx3 > :last-child, .framer-eAIuB .framer-1jz70dr > :last-child, .framer-eAIuB .framer-1baxono > :last-child, .framer-eAIuB .framer-tp3w6i > :last-child, .framer-eAIuB .framer-m3849h > :last-child, .framer-eAIuB .framer-t4o6c2 > :last-child, .framer-eAIuB .framer-3nvb8n > :last-child, .framer-eAIuB .framer-1u9wk4g > :last-child, .framer-eAIuB .framer-19jfdwt > :last-child, .framer-eAIuB .framer-157v4vt > :last-child, .framer-eAIuB .framer-18u164e > :last-child, .framer-eAIuB .framer-1o4gbx > :last-child, .framer-eAIuB .framer-e5h8y2 > :last-child, .framer-eAIuB .framer-1da67xv > :last-child { margin-bottom: 0px; } .framer-eAIuB .framer-1rdovvf > *, .framer-eAIuB .framer-pw8srp > *, .framer-eAIuB .framer-amoybx > *, .framer-eAIuB .framer-9d2l16 > *, .framer-eAIuB .framer-1egimwh > *, .framer-eAIuB .framer-1msou7v > *, .framer-eAIuB .framer-a0am5 > *, .framer-eAIuB .framer-tp3w6i > *, .framer-eAIuB .framer-t4o6c2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-eAIuB .framer-pwzok6 > *, .framer-eAIuB .framer-jsjy4p > *, .framer-eAIuB .framer-1h8iosi > *, .framer-eAIuB .framer-a1vzv3 > *, .framer-eAIuB .framer-1vtdz7i > *, .framer-eAIuB .framer-1tk6bd4 > *, .framer-eAIuB .framer-m33916 > *, .framer-eAIuB .framer-176iy10 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-eAIuB .framer-pwzok6 > :first-child, .framer-eAIuB .framer-jsjy4p > :first-child, .framer-eAIuB .framer-1ug05w3 > :first-child, .framer-eAIuB .framer-46w9jh > :first-child, .framer-eAIuB .framer-61294p > :first-child, .framer-eAIuB .framer-1vv6oxt > :first-child, .framer-eAIuB .framer-oa0ojw > :first-child, .framer-eAIuB .framer-12ihvhr > :first-child, .framer-eAIuB .framer-tnh8t1 > :first-child, .framer-eAIuB .framer-1fpsika > :first-child, .framer-eAIuB .framer-3zv2xr > :first-child, .framer-eAIuB .framer-12rs1o7 > :first-child, .framer-eAIuB .framer-129usyl > :first-child, .framer-eAIuB .framer-1h8iosi > :first-child, .framer-eAIuB .framer-1spa947 > :first-child, .framer-eAIuB .framer-a1vzv3 > :first-child, .framer-eAIuB .framer-rw1gxp > :first-child, .framer-eAIuB .framer-1vtdz7i > :first-child, .framer-eAIuB .framer-1e6xsvj > :first-child, .framer-eAIuB .framer-1tk6bd4 > :first-child, .framer-eAIuB .framer-t8koz3 > :first-child, .framer-eAIuB .framer-m33916 > :first-child, .framer-eAIuB .framer-176iy10 > :first-child { margin-left: 0px; } .framer-eAIuB .framer-pwzok6 > :last-child, .framer-eAIuB .framer-jsjy4p > :last-child, .framer-eAIuB .framer-1ug05w3 > :last-child, .framer-eAIuB .framer-46w9jh > :last-child, .framer-eAIuB .framer-61294p > :last-child, .framer-eAIuB .framer-1vv6oxt > :last-child, .framer-eAIuB .framer-oa0ojw > :last-child, .framer-eAIuB .framer-12ihvhr > :last-child, .framer-eAIuB .framer-tnh8t1 > :last-child, .framer-eAIuB .framer-1fpsika > :last-child, .framer-eAIuB .framer-3zv2xr > :last-child, .framer-eAIuB .framer-12rs1o7 > :last-child, .framer-eAIuB .framer-129usyl > :last-child, .framer-eAIuB .framer-1h8iosi > :last-child, .framer-eAIuB .framer-1spa947 > :last-child, .framer-eAIuB .framer-a1vzv3 > :last-child, .framer-eAIuB .framer-rw1gxp > :last-child, .framer-eAIuB .framer-1vtdz7i > :last-child, .framer-eAIuB .framer-1e6xsvj > :last-child, .framer-eAIuB .framer-1tk6bd4 > :last-child, .framer-eAIuB .framer-t8koz3 > :last-child, .framer-eAIuB .framer-m33916 > :last-child, .framer-eAIuB .framer-176iy10 > :last-child { margin-right: 0px; } .framer-eAIuB .framer-1ug05w3 > *, .framer-eAIuB .framer-129usyl > *, .framer-eAIuB .framer-1spa947 > *, .framer-eAIuB .framer-rw1gxp > *, .framer-eAIuB .framer-1e6xsvj > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-eAIuB .framer-46w9jh > *, .framer-eAIuB .framer-t8koz3 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-eAIuB .framer-61294p > *, .framer-eAIuB .framer-1vv6oxt > *, .framer-eAIuB .framer-oa0ojw > *, .framer-eAIuB .framer-12ihvhr > *, .framer-eAIuB .framer-tnh8t1 > *, .framer-eAIuB .framer-1fpsika > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-eAIuB .framer-14q4dh6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-eAIuB .framer-3zv2xr > *, .framer-eAIuB .framer-12rs1o7 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-eAIuB .framer-k61r0j > *, .framer-eAIuB .framer-c8r4bu > *, .framer-eAIuB .framer-b56jw8 > *, .framer-eAIuB .framer-1appyrc > *, .framer-eAIuB .framer-t7f076 > *, .framer-eAIuB .framer-18f7rrq > *, .framer-eAIuB .framer-1jz70dr > *, .framer-eAIuB .framer-1baxono > * { margin: 0px; margin-bottom: calc(10.633727073669434px / 2); margin-top: calc(10.633727073669434px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-eAIuB.framer-72rtr7 { width: 810px; } .framer-eAIuB .framer-1v4usgx-container { order: 0; } .framer-eAIuB .framer-4yoij9-container { order: 1; } .framer-eAIuB .framer-1rdovvf { height: 774px; order: 2; } .framer-eAIuB .framer-pw8srp, .framer-eAIuB .framer-1kvlggz-container, .framer-eAIuB .framer-14q4dh6, .framer-eAIuB .framer-tzwi5q-container { width: 762px; } .framer-eAIuB .framer-1wcouwc { width: 648px; } .framer-eAIuB .framer-1s1ksch { width: 598px; } .framer-eAIuB .framer-eu8xb4, .framer-eAIuB .framer-3zv2xr, .framer-eAIuB .framer-12rs1o7, .framer-eAIuB .framer-iqxuxr, .framer-eAIuB .framer-157v4vt, .framer-eAIuB .framer-14551y3-container, .framer-eAIuB .framer-a0c77p { width: 100%; } .framer-eAIuB .framer-amoybx { min-height: 85px; min-width: 271px; } .framer-eAIuB .framer-9d2l16 { min-height: 102px; min-width: 323px; } .framer-eAIuB .framer-19a3qti { order: 3; } .framer-eAIuB .framer-1aus5he { order: 4; } .framer-eAIuB .framer-1ug05w3 { flex-direction: column; gap: 40px; width: 762px; } .framer-eAIuB .framer-8xwziw { flex: none; width: 762px; } .framer-eAIuB .framer-zgsftb { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 147px); width: 1px; } .framer-eAIuB .framer-vjn1ip { height: var(--framer-aspect-ratio-supported, 237px); width: 318px; } .framer-eAIuB .framer-ted5k9 { height: var(--framer-aspect-ratio-supported, 476px); width: 100%; } .framer-eAIuB .framer-127j42q { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 293px); width: 1px; } .framer-eAIuB .framer-fzcry3 { height: 223px; width: var(--framer-aspect-ratio-supported, 318px); } .framer-eAIuB .framer-1gijbgm { align-content: flex-start; align-items: flex-start; justify-content: center; } .framer-eAIuB .framer-1q5g1d5 { width: 70%; } .framer-eAIuB .framer-129usyl, .framer-eAIuB .framer-1spa947, .framer-eAIuB .framer-rw1gxp, .framer-eAIuB .framer-1e6xsvj { flex-direction: column; gap: 24px; } .framer-eAIuB .framer-z0vl84, .framer-eAIuB .framer-4hily3, .framer-eAIuB .framer-o53tku, .framer-eAIuB .framer-1473yx3, .framer-eAIuB .framer-5fiwgu-container { flex: none; width: 100%; } .framer-eAIuB .framer-1egimwh, .framer-eAIuB .framer-1msou7v, .framer-eAIuB .framer-a0am5, .framer-eAIuB .framer-tp3w6i { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-eAIuB .framer-m7qrql-container, .framer-eAIuB .framer-b97r9t-container, .framer-eAIuB .framer-ta3ee1-container, .framer-eAIuB .framer-ovp10d-container { height: 385px; width: 100%; } .framer-eAIuB .framer-19jfdwt { order: 6; } .framer-eAIuB .framer-e5h8y2 { order: 7; } .framer-eAIuB .framer-1da67xv { order: 8; } .framer-eAIuB .framer-176iy10 { order: 10; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eAIuB .framer-1ug05w3, .framer-eAIuB .framer-129usyl, .framer-eAIuB .framer-1spa947, .framer-eAIuB .framer-rw1gxp, .framer-eAIuB .framer-1e6xsvj { gap: 0px; } .framer-eAIuB .framer-1ug05w3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-eAIuB .framer-1ug05w3 > :first-child, .framer-eAIuB .framer-129usyl > :first-child, .framer-eAIuB .framer-1spa947 > :first-child, .framer-eAIuB .framer-rw1gxp > :first-child, .framer-eAIuB .framer-1e6xsvj > :first-child { margin-top: 0px; } .framer-eAIuB .framer-1ug05w3 > :last-child, .framer-eAIuB .framer-129usyl > :last-child, .framer-eAIuB .framer-1spa947 > :last-child, .framer-eAIuB .framer-rw1gxp > :last-child, .framer-eAIuB .framer-1e6xsvj > :last-child { margin-bottom: 0px; } .framer-eAIuB .framer-129usyl > *, .framer-eAIuB .framer-1spa947 > *, .framer-eAIuB .framer-rw1gxp > *, .framer-eAIuB .framer-1e6xsvj > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-eAIuB.framer-72rtr7 { overflow: auto; width: 390px; } .framer-eAIuB .framer-1rdovvf { height: min-content; } .framer-eAIuB .framer-1ey7i5t, .framer-eAIuB .framer-1gijbgm { align-content: flex-start; align-items: flex-start; justify-content: center; } .framer-eAIuB .framer-1k43app { height: auto; } .framer-eAIuB .framer-12grs0p-container, .framer-eAIuB .framer-owe2gv-container, .framer-eAIuB .framer-49bdi9-container { width: 342px; } .framer-eAIuB .framer-1wcouwc, .framer-eAIuB .framer-1s1ksch, .framer-eAIuB .framer-iqxuxr, .framer-eAIuB .framer-sqhkya, .framer-eAIuB .framer-1q5g1d5, .framer-eAIuB .framer-tzwi5q-container, .framer-eAIuB .framer-zje0bl-container, .framer-eAIuB .framer-i6p3wd-container { width: 100%; } .framer-eAIuB .framer-19a3qti, .framer-eAIuB .framer-e5h8y2 { align-content: flex-start; align-items: flex-start; } .framer-eAIuB .framer-1kvlggz-container, .framer-eAIuB .framer-1d7erfw { flex: 1 0 0px; width: 1px; } .framer-eAIuB .framer-1aus5he { justify-content: center; } .framer-eAIuB .framer-1ug05w3 { flex-direction: column; gap: 40px; width: 100%; } .framer-eAIuB .framer-8xwziw, .framer-eAIuB .framer-z0vl84 { flex: none; width: 100%; } .framer-eAIuB .framer-14q4dh6 { gap: 20px; justify-content: center; width: 100%; } .framer-eAIuB .framer-3zv2xr, .framer-eAIuB .framer-12rs1o7 { gap: 20px; width: 100%; } .framer-eAIuB .framer-zgsftb { height: var(--framer-aspect-ratio-supported, 62px); width: 172px; } .framer-eAIuB .framer-vjn1ip { height: var(--framer-aspect-ratio-supported, 109px); width: 146px; } .framer-eAIuB .framer-ted5k9 { height: var(--framer-aspect-ratio-supported, 214px); width: 100%; } .framer-eAIuB .framer-127j42q { height: var(--framer-aspect-ratio-supported, 135px); width: 187px; } .framer-eAIuB .framer-fzcry3 { height: 92px; width: var(--framer-aspect-ratio-supported, 131px); } .framer-eAIuB .framer-129usyl, .framer-eAIuB .framer-1spa947, .framer-eAIuB .framer-rw1gxp, .framer-eAIuB .framer-1e6xsvj { flex-direction: column; gap: 16px; } .framer-eAIuB .framer-1egimwh { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-eAIuB .framer-m7qrql-container, .framer-eAIuB .framer-b97r9t-container, .framer-eAIuB .framer-ta3ee1-container { height: 160px; width: 100%; } .framer-eAIuB .framer-4hily3, .framer-eAIuB .framer-o53tku, .framer-eAIuB .framer-1473yx3 { flex: none; order: 0; width: 100%; } .framer-eAIuB .framer-1msou7v, .framer-eAIuB .framer-a0am5, .framer-eAIuB .framer-tp3w6i { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-eAIuB .framer-ovp10d-container { height: 160px; width: 280px; } .framer-eAIuB .framer-1kvjvja-container { order: 0; } .framer-eAIuB .framer-t4o6c2 { order: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-eAIuB .framer-1ug05w3, .framer-eAIuB .framer-14q4dh6, .framer-eAIuB .framer-3zv2xr, .framer-eAIuB .framer-12rs1o7, .framer-eAIuB .framer-129usyl, .framer-eAIuB .framer-1spa947, .framer-eAIuB .framer-rw1gxp, .framer-eAIuB .framer-1e6xsvj { gap: 0px; } .framer-eAIuB .framer-1ug05w3 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-eAIuB .framer-1ug05w3 > :first-child, .framer-eAIuB .framer-14q4dh6 > :first-child, .framer-eAIuB .framer-129usyl > :first-child, .framer-eAIuB .framer-1spa947 > :first-child, .framer-eAIuB .framer-rw1gxp > :first-child, .framer-eAIuB .framer-1e6xsvj > :first-child { margin-top: 0px; } .framer-eAIuB .framer-1ug05w3 > :last-child, .framer-eAIuB .framer-14q4dh6 > :last-child, .framer-eAIuB .framer-129usyl > :last-child, .framer-eAIuB .framer-1spa947 > :last-child, .framer-eAIuB .framer-rw1gxp > :last-child, .framer-eAIuB .framer-1e6xsvj > :last-child { margin-bottom: 0px; } .framer-eAIuB .framer-14q4dh6 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-eAIuB .framer-3zv2xr > *, .framer-eAIuB .framer-12rs1o7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-eAIuB .framer-3zv2xr > :first-child, .framer-eAIuB .framer-12rs1o7 > :first-child { margin-left: 0px; } .framer-eAIuB .framer-3zv2xr > :last-child, .framer-eAIuB .framer-12rs1o7 > :last-child { margin-right: 0px; } .framer-eAIuB .framer-129usyl > *, .framer-eAIuB .framer-1spa947 > *, .framer-eAIuB .framer-rw1gxp > *, .framer-eAIuB .framer-1e6xsvj > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7941\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"x3woydfc9\":{\"layout\":[\"fixed\",\"auto\"]},\"Q8FhP5c6Z\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"MRKqq5FDW\":{\"pattern\":\":MRKqq5FDW\",\"name\":\"hero\"},\"szFKBONCK\":{\"pattern\":\":szFKBONCK\",\"name\":\"videos\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-eAIuB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7941,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}]},...TopBannerFonts,...NavbarNEWFonts,...SpacerFonts,...ButtonPrimaryFonts,...QuoteFonts,...PhosphorFonts,...YouTubeFonts,...ButtonTertiaryFonts,...HorizontalFonts,...SlideshowFonts,...Slideshow1Fonts,...CustomerTickerFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"MRKqq5FDW\\\":{\\\"pattern\\\":\\\":MRKqq5FDW\\\",\\\"name\\\":\\\"hero\\\"},\\\"szFKBONCK\\\":{\\\"pattern\\\":\\\":szFKBONCK\\\",\\\"name\\\":\\\"videos\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x3woydfc9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q8FhP5c6Z\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7941\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "ohDAYmB,SAARA,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,EAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAErB,EAAW,CAAC,eAAAsB,EAAe,aAAAC,EAAa,cAAAC,EAAc,mBAAAC,EAAmB,aAAAC,EAAY,EAAEtB,EAAoB,CAAC,YAAAuB,GAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAEpB,EAAkB,CAAC,iBAAAqB,GAAiB,QAAAC,GAAQ,UAAAC,EAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAE7B,EAAsB8B,GAAazC,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAE1xB2C,GAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAMrD,CAAK,EAAE,EAAQsD,EAAapD,IAAY,QAAQA,IAAY,QAAcqD,GAAWrD,IAAY,SAASA,IAAY,SAEnN,GAAG,CAACkD,GAAa,OAAqBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAeC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAgBD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAgBF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAE7V,IAAMC,GAAUC,GAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAYjE,EAAM,IAAIkE,GAAqBC,GAAU,CAAC,EAAI,CAACnE,CAAK,CAAC,EAAQoE,GAAWL,GAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,IAAI,CAAC,EAAkC,CAACC,GAAkBC,EAAoB,EAAEF,GAASnE,CAAe,EAA+B,CAACsE,EAAWC,EAAa,EAAEJ,GAAS,EAAK,EAEnaK,GAAc,CAAC,EAAMC,EAAY,EAAK3B,KAAU2B,EAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG3B,IAAaU,GAAU,QAAQ,CAAC,IAAMkB,EAAMhF,EAAM,OAAO,EAAQiF,GAAa3B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBoB,GAAMlB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNmB,IAA1MnB,EAAYgB,CAAK,EAAE,QAAQ1B,EAAaU,EAAYgB,CAAK,EAAE,QAAQ,WAAWhB,EAAYgB,CAAK,EAAE,QAAQ,YAAYhB,EAAYgB,CAAK,EAAE,QAAQ,UAAUhB,EAAYgB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,GAAM5E,EAAU8E,GAASpB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQqB,GAAUrB,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQsB,GAAWtB,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAEM,GAAQ,CAAC,OAAOW,GAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,EAAU,CAAC,CAAE,CAAC,EAAE,CAAClC,EAAW,CAAC,EAEh6BmC,GAAgB,IAAI,CAAKnC,IAAmB0B,GAAQ,CAAE,EAAE,CAAC1B,EAAW,CAAC,EAGrE,IAAIoC,EAAczB,GAAO,EAAI,EAAE0B,GAAU,IAAYC,GAAO5B,GAAU,QAAQ,CAAC,CAAC,YAAA6B,CAAW,IAAI,CAAI,CAACH,EAAc,UAAUG,EAAY,OAAOA,EAAY,UAASb,GAAQ,EAAEH,GAAc,EAAI,GAAGa,EAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGf,EAAW,CAAC,IAAMkB,EAAM,WAAW,IAAIjB,GAAc,EAAK,EAAE5D,EAAgB,GAAG,EAAE,MAAM,IAAI,aAAa6E,CAAK,CAAE,CAAC,EAAE,CAAClB,CAAU,CAAC,EAExX,IAAMmB,GAA+C7F,GAAM,OAAa8F,GAAa5C,GAAS,EAAoCmB,GAAK,SAAe0B,GAA+C1B,GAAK,KAAM/D,EAAU0F,GAAW/F,EAAU8F,GAAiB,CAACE,GAAYC,EAAc,EAAE3B,GAAStE,EAAU4F,EAAU,EAA2GM,GAAUC,GAAkB,EAAQC,GAAO9C,GAAW,EAAE,GAAgD+C,GAAKC,GAAeT,EAAY,EAAwEU,GAAelD,EAAa,CAACrD,GAA8CoE,GAAK,UAAW/D,GAAK,CAACL,GAA8CoE,GAAK,WAAY/D,GAAuDmG,GAAY,IAAIJ,GAAOJ,GAAYF,GAA0IW,GAAcxD,GAA6E,EAApEyD,GAAaL,GAAKM,GAAOC,GAAK,CAACf,GAAa,CAACA,GAAa,EAAEc,CAAK,CAAC,EAAsEE,GAAaD,GAAK,EAAEhB,GAAWI,EAAW,EAAQc,GAAqBF,GAAK,EAAE,CAAChB,GAAWI,EAAW,EAAuHV,GAAgB,IAAI,CAAuClB,GAAK,WAAY,OAAqCmB,EAAc,SAASc,GAAK,KAAKR,GAAaE,IAAYK,EAAM,EAA+B,CAACb,EAAc,SAASd,GAAY4B,GAAK,IAAID,GAAOJ,GAAYF,EAAW,EAAG,EAAE,CAAC1B,EAAKyB,GAAaO,GAAOL,GAAWC,GAAYF,GAAYrB,CAAW,CAAC,EAG5qD,IAAMsC,GAAY,IAAI,CAAC,GAAG9D,IAAU,CAACE,IAAa,CAACiB,EAAK,OAAO,OAAO,IAAM4C,EAASC,GAAQZ,GAAKG,GAAY,EAAEzF,CAAiB,EAAKsF,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAEzF,CAAiB,EAAMZ,GAAiBoE,KAAmBJ,GAAW,QAAQ,WAAW,IAAI,CAAC8B,GAAeD,GAAY,CAAC,EAAEe,GAAY,CAAE,EAAEjG,EAAgB,GAAG,EAAG,EAAwCoG,GAASC,GAAO,IAAI,CAAyDlB,GAApD3C,GAAmE0C,GAAYmB,EAApDnB,GAAYmB,CAA6C,CAAG,EAAQC,GAAQnD,GAAO,CAAC,IAAMoD,GAAmBT,GAAK,EAAEhB,GAAWI,EAAW,EAAQsB,GAAyBV,GAAK,EAAE,CAAChB,GAAWI,EAAW,EAAQuB,GAAKtD,EAAMoD,GAAyBG,GAAavD,EAAM,KAAK,IAAIqD,EAAwB,EAAErB,GAAeiB,GAAS5D,GAAWkE,GAAaD,EAAI,CAAC,CAAE,EAAiE/B,GAAU,IAAI,CAAC,GAAG,GAACU,IAAWzB,GAAkB,OAAAsC,GAAY,EAAQ,IAAI5C,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACQ,GAAcuB,GAAUzB,CAAU,CAAC,EAA+D,IAAIgD,GAAa,EAE5nCC,GAAiB,QAAQ,IAAI9G,CAAU,OAAOP,CAAG,QAAQA,EAAIO,CAAU,MAI7E,QAAQqD,EAAM,EAAEA,EAAMW,EAAYX,IAASU,GAAc,KAAK,GAAGvB,GAAS,IAAIrD,EAAM,CAAC4H,GAAMC,KAAa,CAAC,IAAIC,GAAI,OAAGD,KAAa,IAAGC,GAAI9D,EAAY,CAAC,GAAM6D,KAAa7H,EAAM,OAAO,IAAG8H,GAAI9D,EAAY,CAAC,GAAwBN,EAAKqE,GAAM,CAAC,IAAI/D,EAAY6D,EAAU,EAAE,MAAMvE,GAAazC,EAAW,EAAE8G,GAAwB,OAAO,OAAQrE,EAAkD,OAArCzC,EAAW,EAAE8G,GAAiB,OAAc,KAAKtD,EAAK,MAAMuD,GAAM,YAAgD5H,GAAM,OAAO,aAAa0G,GAAa,aAAagB,KAAe,IAAIpH,EAAI,SAAS4C,GAAS,aAAaI,EAAa,eAAejC,EAAe,aAAaC,EAAa,cAAcC,CAAa,EAAE2C,EAAM2D,GAAW,IAAI,CAAE,CAAC,CAAC,EAEprB,IAAMG,GAAc1E,EAAa,WAAW,YAAkB2E,GAAerG,EAAU,EAAQsG,GAAa,IAAItG,EAAU,EAAQuG,GAAeC,GAAMvG,EAAU,EAAEoG,EAAc,EAAQI,GAAa,IAAIxG,EAAgByG,GAAS,mBAAmBN,EAAa,mBAAmBlG,EAAS,KAAKqG,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBpG,EAAS,KAAKuG,EAAY,KAElaE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGlG,GAAiB,CAAC,QAAQmG,EAAE,EAAEA,EAAuCzI,GAAM,OAAQyI,IAAKF,GAAK,KAAmB7E,EAAKgF,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMpG,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAYgG,GAAiB,gBAAgB9F,GAAkB,QAAQC,GAAY,QAAQ,IAAIsE,GAAQoB,CAAC,EAAE,aAAa3B,GAAa,qBAAqBC,GAAqB,MAAMlB,GAAW,MAAM4C,EAAE,IAAI9F,GAAQ,QAAQD,GAAY,aAAaY,EAAa,WAAWC,EAAU,CAAC,CAAC,EAAMP,KAAUwF,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQxF,EAAQ,MAAO,CAAC,OAAqBQ,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGqF,GAAe,QAAQ5F,GAAa,gBAAgBvB,GAAY4G,GAAS,OAAU,aAAa5G,GAAY4G,GAAS,OAAU,UAAU5G,GAAY4G,GAAS,OAAU,SAAS3G,EAAS,UAAU,SAAS,aAAaT,EAAa,QAA2CmD,GAAK,OAAQ,KAAK,EAAE,CAAC,EAAE,aAAa,IAAI,CAAC5C,IAAcgD,GAAqB,EAAK,EAAE,aAAa,IAAI,CAAChD,IAAcgD,GAAqB,EAAI,EAAE,SAAS,CAAef,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,EAAE,SAAS,WAAW,MAAM,EAAE,SAAS/B,EAAS,UAAU,SAAS,YAAYH,CAAkB,EAAE,SAAuBkC,EAAKoF,EAAO,GAAG,CAAC,IAAIhF,GAAU,MAAM,CAAC,GAAG+E,GAAe,IAAIvI,EAAI,WAAWD,EAAU,EAAEiD,EAAaJ,GAASsD,GAAeE,GAAa,EAAE,EAAGpD,EAAkD,EAArCJ,GAASsD,GAAeE,GAAe,cAAcpD,EAAa,MAAM,SAAS,eAAe/B,IAAgB,GAAG,cAAc,GAAGH,CAAK,EAAE,SAASwD,EAAa,CAAC,CAAC,CAAC,EAAgBpB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGuF,GAAe,QAAQ1G,GAAa,QAAQ,OAAO,cAAciB,EAAa,MAAM,QAAQ,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAeI,EAAKoF,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGF,GAAiB,gBAAgB1G,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQqB,EAAgB,EAAH,GAAK,QAAQvB,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQoF,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuBzD,EAAK,MAAM,CAAC,MAAM1B,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAgBuB,EAAKoF,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGF,GAAiB,gBAAgB1G,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQqB,EAAgB,EAAH,GAAK,QAAQvB,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQoF,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuBzD,EAAK,MAAM,CAAC,MAAM1B,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAEmG,GAAK,OAAO,EAAgB7E,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGsF,GAAmB,KAAK1F,EAAa,MAAMd,EAAU,IAAKc,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAad,EAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAG2F,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAA2BzI,EAAU,aAAa,CAAC,UAAU,OAAO,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAA0BmJ,GAAoBnJ,EAAU,CAAC,MAAM,CAAC,KAAKoJ,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAapJ,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAKoJ,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAOnJ,GAAO,CAACA,EAAM,eAAe,EAAE,UAAU,CAAC,KAAKmJ,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAapJ,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAKoJ,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAapJ,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAKoJ,EAAY,OAAO,MAAM,QAAQ,aAAapJ,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAKoJ,EAAY,OAAO,MAAM,cAAc,aAAapJ,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKoJ,EAAY,OAAO,MAAM,SAAS,aAAapJ,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAKoJ,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAapJ,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKoJ,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAapJ,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAKoJ,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAapJ,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAKoJ,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOnJ,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKmJ,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOnJ,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKmJ,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOnJ,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKmJ,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOnJ,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKmJ,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAapJ,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAKoJ,EAAY,MAAM,MAAM,OAAO,OAAOnJ,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKoJ,EAAY,MAAM,MAAM,WAAW,OAAOnJ,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKmJ,EAAY,MAAM,MAAM,OAAO,OAAOnJ,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKmJ,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAapJ,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKmJ,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOnJ,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAKmJ,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAKmJ,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKmJ,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKmJ,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKmJ,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKmJ,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKmJ,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKmJ,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKmJ,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKmJ,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKmJ,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOnJ,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA2B,IAAM8I,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA+BpF,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAA6B+E,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQG,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAiDX,GAAM,CAACe,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA8BtB,GAAoBuB,GAAW,SAAmBvJ,EAAM+H,EAAI,CAAC,IAAIyB,EAAKC,EAAK,GAAK,CAAC,IAAAC,EAAI,MAAAC,EAAM,OAAAC,EAAO,MAAA/B,EAAM,KAAAvD,EAAK,IAAA/D,EAAI,aAAAoG,EAAa,YAAAkD,EAAY,aAAAlC,EAAa,SAAAxE,EAAS,QAAA2G,EAAQ,eAAAxI,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAA+B,EAAa,OAAAwG,EAAO,MAAA5F,CAAK,EAAEnE,EAExgWgK,GAAgD1F,GAAK,KAAM/D,GAAKoH,EAAmBsC,EAAY,CAAC,CAAoC3F,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAM/D,EAAsC+D,GAAK,MAAO,EAAE,IAAI4F,GAAKA,EAAIF,CAAW,EAE3TG,EAAQ,CAAChH,GAAUyD,GAAaD,EAAasD,EAAY,CAAC,CAACzI,EAAc,EAAE,EAAEA,CAAc,CAAC,EAAQ4I,EAAQ,CAACjH,GAAUyD,GAAaD,EAAasD,EAAY,CAACzI,EAAc,EAAE,EAAE,CAACA,CAAc,CAAC,EAAQ6I,GAAQ,CAAClH,GAAUyD,GAAaD,EAAasD,EAAY,CAAC3I,EAAe,EAAE,EAAEA,CAAe,CAAC,EAAQgJ,GAAM,CAACnH,GAAUyD,GAAaD,EAAasD,EAAY,CAAC1I,EAAa,EAAE,EAAEA,CAAa,CAAC,EAAQgJ,EAAW,CAACpH,GAAUyD,GAAaD,EAAasD,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQ7D,EAAU,CAACjD,GAAUyD,GAAaD,EAAa6D,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE,OAAAvE,GAAU,IAAI,CAAC,GAAIU,EAAiB,OAAOA,EAAU,SAASqE,GAAU,CAAC1C,EAAI,QAAQ,aAAa,cAAc,CAAC0C,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAuB9G,EAAK+G,GAAY,CAAC,QAAQ,KAAK,SAAuB/G,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBgH,GAAa9C,EAAM,CAAC,IAAIE,EAAI,IAAI2B,EAAI,QAAQ,MAAM,CAAC,IAAIF,EAAK3B,EAAM,SAAS,MAAM2B,IAAO,OAAO,OAAOA,EAAK,MAAM,WAAW,EAAE,MAAAG,EAAM,OAAAC,EAAO,QAAQS,GAAQ,MAAMC,GAAM,QAAQ/G,EAAagH,EAAW,GAAG,QAAShH,EAAwB,GAAXgH,EAAc,QAAQhH,EAAa4G,EAAQ,EAAE,QAAS5G,EAAqB,EAAR6G,CAAS,CAAC,GAAGX,EAAK5B,EAAM,SAAS,MAAM4B,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASd,GAAI,CAAC,gBAAAiC,EAAgB,QAAQC,EAAkB,MAAA5F,EAAM,MAAAd,EAAM,aAAA4C,EAAa,qBAAAC,EAAqB,SAAA4B,EAAS,YAAAkC,EAAY,IAAAvK,EAAI,QAAAC,EAAQ,aAAA+C,EAAa,WAAAC,EAAW,GAAGxD,CAAK,EAAE,CAAgD,IAAI+K,EAAWhE,IAAe5C,EAAwDX,IAAYuH,EAAW,KAAK,IAAI/D,CAAoB,IAAI7C,GAAO,IAAM6G,EAAczK,EAAI,EAAM0K,EAAI,CAAC1H,GAAcY,EAAM,EAAE6G,EAAcxK,EAAY0K,EAAO,CAAC3H,GAAcY,IAAQc,EAAM,EAAE+F,EAAcxK,EAAY2K,EAAM5H,GAAcY,IAAQc,EAAM,EAAE+F,EAAcxK,EAAY4K,EAAK7H,GAAcY,EAAM,EAAE6G,EAAcxK,EAAQ,OAAqBmD,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,CAAC,GAAG,KAAK,SAAS,GAAGnE,EAAM,MAAM,CAAC,GAAG8K,EAAY,QAAQ,GAAGG,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAuBzH,EAAKoF,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGH,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQmC,EAAWH,EAAgBC,CAAiB,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAkB,IAAM5B,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQL,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECnC16E,SAARyC,EAA2BC,EAAM,CAEpC,GAAK,CAAC,MAAAC,EAAM,UAAAC,EAAU,UAAAC,EAAU,eAAAC,EAAe,gBAAAC,EAAgB,YAAAC,EAAY,UAAAC,EAAU,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,EAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,EAAa,gBAAAC,EAAgB,MAAAC,CAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,EAAa,cAAAC,EAAc,mBAAAC,GAAmB,aAAAC,EAAY,EAAEvB,EAAoB,CAAC,YAAAwB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,GAAU,UAAAC,EAAS,EAAEhB,EAAiB,CAAC,kBAAAiB,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,iBAAAC,GAAiB,GAAK,kBAAAC,GAAkB,GAAM,cAAAC,EAAc,aAAAC,GAAa,SAAAC,GAAS,gBAAAC,GAAgB,kBAAAC,GAAkB,mBAAAC,GAAmB,iBAAAC,EAAgB,EAAE5B,EAAkB,CAAC,iBAAA6B,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,GAAY,QAAAC,EAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,EAAkB,YAAAC,GAAY,SAAAC,CAAQ,EAAErC,EAAsBsC,GAAajD,EAAe,GAAGC,CAAU,MAAMC,CAAY,MAAMC,CAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAEj7BmD,GAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,GAAYC,GAAS,MAAM9D,CAAK,EAAE,EAAQ+D,EAAa7D,IAAY,QAAQA,IAAY,QAAc8D,GAAW9D,IAAY,SAASA,IAAY,SAEnN,GAAG,CAAC2D,GAAa,OAAqBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAeC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAgBD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAgBF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAE7V,IAAMC,GAAUC,GAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAY1E,EAAM,IAAI2E,GAAqBC,GAAU,CAAC,EAAI,CAAC5E,CAAK,CAAC,EAAQ6E,GAAWL,GAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,IAAI,CAAC,EAAkC,CAACC,GAAWC,EAAa,EAAEF,GAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,GAAS5E,CAAe,EAAgC,CAACiF,GAAYC,EAAc,EAAEN,GAAS,EAAK,EAA+B,CAACO,GAAWC,EAAa,EAAER,GAAS,EAAK,EAE9hBS,GAAc,CAAC,EAAMC,GAAY,EAAK/B,KAAU+B,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG/B,IAAaU,GAAU,QAAQ,CAAC,IAAMsB,EAAM7F,EAAM,OAAO,EAAQ8F,GAAa/B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBwB,GAAMtB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAsNuB,IAA1MvB,EAAYoB,CAAK,EAAE,QAAQ9B,EAAaU,EAAYoB,CAAK,EAAE,QAAQ,WAAWpB,EAAYoB,CAAK,EAAE,QAAQ,YAAYpB,EAAYoB,CAAK,EAAE,QAAQ,UAAUpB,EAAYoB,CAAK,EAAE,QAAQ,aAAa,GAA2BE,GAAMxF,EAAU0F,GAASxB,EAAY,CAAC,EAAE,QAAQV,EAAaU,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAQyB,GAAUzB,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,YAAY,EAAQ0B,GAAW1B,EAAY,CAAC,EAAE,QAAQA,EAAY,CAAC,EAAE,QAAQ,aAAa,EAAEM,GAAQ,CAAC,OAAOe,GAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,EAAU,CAAC,CAAE,CAAC,EAAE,CAACtC,EAAW,CAAC,EAGh6BuC,GAAgB,IAAI,CAAKvC,IAAmB8B,GAAQ,CAAE,EAAE,CAAC9B,GAAY/C,CAAU,CAAC,EAGhF,IAAIuF,GAAc7B,GAAO,EAAI,EAAE8B,GAAU,IAAYC,GAAOhC,GAAU,QAAQ,CAAC,CAAC,YAAAiC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASb,GAAQ,EAAEH,GAAc,EAAI,GAAGa,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,GAAU,IAAI,CAAC,GAAGf,GAAW,CAAC,IAAMkB,EAAM,WAAW,IAAIjB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAaiB,CAAK,CAAE,CAAC,EAAE,CAAClB,EAAU,CAAC,EAExW,IAAMmB,GAA+C1G,GAAM,OAAa2G,GAAahD,GAAS,EAAoCmB,GAAK,SAAe8B,GAA+C9B,GAAK,KAAMvE,EAAUsG,GAAW5G,EAAU2G,GAAiB,CAACE,GAAYC,EAAc,EAAE/B,GAAS/E,EAAUyG,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAEjC,GAAS,EAAK,EAA2GkC,GAAUC,GAAkB,EAAQC,GAAOpD,GAAW,EAAE,GAAgDqD,GAAKC,GAAeX,EAAY,EAAwEY,GAAexD,EAAa,CAAC9D,GAA8C6E,GAAK,UAAWvE,GAAK,CAACN,GAA8C6E,GAAK,WAAYvE,GAAuDiH,GAAY,IAAIJ,GAAON,GAAYF,GAA0Ia,GAAc9D,GAA6E,EAApE+D,GAAaL,GAAKM,GAAOC,GAAK,CAACjB,GAAa,CAACA,GAAa,EAAEgB,CAAK,CAAC,EAAsEE,EAAaD,GAAK,EAAElB,GAAWI,EAAW,EAAQgB,GAAqBF,GAAK,EAAE,CAAClB,GAAWI,EAAW,EAAuHV,GAAgB,IAAI,CAAuCtB,GAAK,WAAY,MAG59C,CAACuB,GAAc,SAASd,IAAY8B,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAAC1C,EAAK6B,GAAaS,GAAOP,GAAWC,GAAYF,GAAYrB,EAAW,CAAC,EAG3G,IAAMwC,GAAY,IAAI,CAAIpE,IAAU,CAACE,IAAa,CAACiB,EAAK,QAAQkC,KAAqBK,GAAK,IAAI,IAAIG,GAAY,GAAGQ,GAAQX,GAAKG,GAAY,EAAEvG,CAAiB,EAAMb,GAAiB+E,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACkC,GAAeD,GAAY,CAAC,EAAEiB,GAAY,CAAE,EAAE/G,EAAgB,GAAG,GAAG,EAAwCiH,GAASC,GAAO,CAAyDnB,GAApD/C,GAAmE8C,GAAYoB,EAApDpB,GAAYoB,CAA6C,CAAG,EAAQC,GAAQxD,GAAO,CAAC,IAAMyD,GAAmBR,GAAK,EAAElB,GAAWI,EAAW,EAAQuB,GAAyBT,GAAK,EAAE,CAAClB,GAAWI,EAAW,EAAQwB,GAAK3D,EAAMyD,GAAyBG,GAAa5D,EAAM,KAAK,IAAI0D,EAAwB,EAAyDtB,GAAnD/C,GAAkE8C,GAAYyB,GAAnDzB,GAAYwB,EAAmD,CAAG,EAE7zBE,GAAgB,IAAI,CAACvB,GAAc,EAAI,CAAE,EAAQwB,GAAc,CAACC,EAAM,CAAC,OAAAC,GAAO,SAAAC,EAAQ,IAAI,CAAC3B,GAAc,EAAK,EAAE,IAAM4B,GAAW9E,EAAa4E,GAAO,EAAEA,GAAO,EAAQG,GAAkB,IAC/LC,GAAahF,EAAa6E,GAAS,EAAEA,GAAS,EAAQI,GAAaH,GAAW,CAAC/D,EAAK,KAAK,EAAQmE,GAAaJ,GAAW/D,EAAK,KAAK,EAA8DoE,GAAiB,KAAK,IAAIL,EAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiBpE,EAAK,IAAI,EAAuFsE,GAAiBD,KAAY,EAAE,EAAEA,GAA2DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA4EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAiE7C,GAAU,IAAI,CAAC,GAAG,GAACY,IAAW3B,IAAkB,OAAAwC,GAAY,EAAQ,IAAIlD,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAcyB,GAAU3B,EAAU,CAAC,EAA+D,IAAI8D,GAAa,EAElhCC,GAAiB,QAAQ,IAAIxI,CAAU,OAAOP,CAAG,QAAQA,EAAIO,CAAU,MAI7E,QAAQ6D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAI9D,EAAM,CAACuJ,GAAMC,KAAa,CAAC,IAAIC,GAAI,OAAGD,KAAa,IAAGC,GAAIhF,EAAY,CAAC,GAAM+E,KAAaxJ,EAAM,OAAO,IAAGyJ,GAAIhF,EAAY,CAAC,GAAwBN,EAAKuF,GAAM,CAAC,IAAIjF,EAAY+E,EAAU,EAAE,MAAM7E,EAAM,MAAMZ,GAAajD,EAAW,EAAEwI,GAAwB,OAAO,OAAQvF,EAAkD,OAArCjD,EAAW,EAAEwI,GAAiB,OAAc,KAAKxE,EAAK,MAAMyE,GAAM,YAAgDvJ,GAAM,OAAO,aAAayH,GAAa,aAAa4B,KAAe,IAAI9I,EAAI,SAASoD,GAAS,aAAaI,EAAa,eAAezC,EAAe,aAAaC,EAAa,cAAcC,EAAc,SAASmD,EAAM6E,EAAU,EAAE7E,EAAM6E,GAAW,IAAI,CAAE,CAAC,CAAC,EAE1tB,IAAMG,GAAc5F,EAAa,WAAW,YAAkB6F,GAAe/H,EAAU,EAAQgI,GAAa,IAAIhI,EAAU,EAAQiI,GAAeC,GAAMjI,GAAU,EAAE8H,EAAc,EAAQI,GAAa,IAAIlI,GAAgBmI,GAAS,mBAAmBN,EAAa,mBAAmB5H,EAAS,KAAK+H,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoB9H,EAAS,KAAKiI,EAAY,KAElaE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAGpH,GAAiB,CAAC,QAAQqH,EAAE,EAAEA,EAAuCpK,GAAM,OAAQoK,IAAKF,GAAK,KAAmB/F,EAAKkG,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAMtH,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAYkH,GAAiB,gBAAgBhH,EAAkB,QAAQC,GAAY,QAAQ,IAAI2E,GAAQiC,CAAC,EAAE,aAAavC,EAAa,qBAAqBC,GAAqB,MAAMpB,GAAW,MAAM0D,EAAE,IAAIhH,EAAQ,QAAQD,GAAY,aAAaY,EAAa,WAAWC,EAAU,CAAC,CAAC,EAAMP,EAAS,IAAG0G,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQ1G,CAAQ,MAAO,CAAC,IAAM+G,GAAUnK,EAAY,CAAC,KAAK0D,EAAa,IAAI,IAAI,YAAYyE,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAEpB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQoD,GAAYjI,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkBkI,GAAelI,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqBmI,GAAanI,IAAgB,YAAYA,IAAgB,cAAoBoI,GAAcpI,IAAgB,aAAaA,IAAgB,eAAqBqI,GAAYrI,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAqByB,EAAM,UAAU,CAAC,MAAM,CAAC,GAAG6G,GAAe,QAAQpH,GAAa,gBAAgB/B,EAAYsI,GAAS,OAAU,aAAatI,EAAYsI,GAAS,OAAU,UAAUtI,EAAYsI,GAAS,OAAU,QAA2CnF,GAAK,OAAQ,KAAK,EAAE,EAAE,WAAW,MAAM,EAAE,aAAa,IAAI,CAACI,GAAc,EAAI,EAAMxD,IAAa0D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMxD,IAAa0D,GAAqB,EAAI,CAAE,EAAE,YAAYsD,GAAO,CACvwDA,EAAM,eAAe,EAAEpD,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,SAAS,CAAenB,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASvC,EAAS,UAAU,SAAS,aAAaT,EAAa,WAAW,OAAO,YAAYM,EAAkB,EAAE,SAAuB0C,EAAK4G,EAAO,GAAG,CAAC,IAAIxG,GAAU,GAAGiG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAIvK,EAAI,WAAWD,EAAU,EAAEyD,EAAaJ,GAAS4D,GAAeE,GAAa,EAAE,EAAG1D,EAAkD,EAArCJ,GAAS4D,GAAeE,GAAe,cAAc1D,EAAa,MAAM,SAAS,eAAevC,IAAgB,GAAG,cAAc,OAAOnB,EAAYgF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGhE,CAAK,EAAE,SAASoE,EAAa,CAAC,CAAC,CAAC,EAAgBxB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAG+G,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAe/G,EAAM8G,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAchH,EAAa,MAAM,SAAS,eAAezB,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB,EAAE,EAAE,WAAW,SAAS,MAAME,GAAa,IAAIH,GAAiBG,GAAagI,GAAY9H,GAAgB,QAAQ,KAAKL,GAAiBG,GAAakI,GAAa7H,GAAiB+H,GAAY,EAAE,QAAQ,MAAMvI,GAAiBG,GAAamI,GAAchI,GAAkBiI,GAAY,EAAE,QAAQ,OAAOvI,GAAiBG,GAAaiI,GAAe7H,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ0C,GAAW,EAAE,CAAC,EAAE,WAAWhE,EAAkB,SAAS,CAAekD,EAAK4G,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBpI,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ6B,EAAgB,EAAH,GAAK,QAAQ/B,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAIiG,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuB9D,EAAK,MAAM,CAAC,MAAMlC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAgB+B,EAAK4G,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgBpI,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ6B,EAAgB,EAAH,GAAK,QAAQ/B,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAIiG,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuB9D,EAAK,MAAM,CAAC,MAAMlC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6H,GAAK,OAAO,EAAgB/F,EAAK,MAAM,CAAC,MAAM,CAAC,GAAG8G,GAAmB,KAAKlH,EAAa,MAAMd,GAAU,IAAKc,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAad,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAG6G,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAA2BpK,EAAU,aAAa,CAAC,UAAU,OAAO,YAAY,GAAM,UAAU,EAAE,WAAW,EAAE,SAAS,GAAK,IAAI,GAAG,QAAQ,GAAG,gBAAgB,GAAK,eAAe,CAAC,eAAe,EAAE,aAAa,EAAE,cAAc,EAAE,mBAAmB,KAAK,aAAa,EAAI,EAAE,kBAAkB,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,EAAE,YAAY,CAAC,YAAY,GAAM,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,aAAa,CAAC,kBAAkB,GAAK,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,kBAAkB,UAAU,EAAE,EAAE,gBAAgB,CAAC,iBAAiB,EAAI,CAAC,EAA0BoL,GAAoBpL,EAAU,CAAC,MAAM,CAAC,KAAKqL,EAAY,MAAM,MAAM,UAAU,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAiB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAarL,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAKqL,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAI,EAAE,gBAAgB,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,aAAa,IAAI,IAAI,GAAG,IAAI,GAAG,KAAK,GAAG,eAAe,GAAK,KAAK,IAAI,OAAOpL,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAKoL,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAarL,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAKqL,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAarL,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAKqL,EAAY,OAAO,MAAM,QAAQ,aAAarL,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAKqL,EAAY,OAAO,MAAM,cAAc,aAAarL,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAKqL,EAAY,OAAO,MAAM,SAAS,aAAarL,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAKqL,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAarL,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKqL,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAarL,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAKqL,EAAY,OAAO,MAAM,MAAM,IAAI,CAAC,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,EAAE,kBAAkB,CAAC,KAAKA,EAAY,WAAW,aAAarL,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAKqL,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOpL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKoL,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoL,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOpL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKoL,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOpL,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKoL,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAarL,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAKqL,EAAY,MAAM,MAAM,OAAO,OAAOpL,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAKqL,EAAY,MAAM,MAAM,WAAW,OAAOpL,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAKoL,EAAY,MAAM,MAAM,OAAO,OAAOpL,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAKoL,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAarL,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAKoL,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOpL,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAKoL,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAOpL,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAKoL,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAarL,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAKoL,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAe,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAe,EAAE,OAAOpL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAKoL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAKoL,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAKoL,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAKoL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAKoL,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAKoL,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAKoL,EAAY,OAAO,MAAM,OAAO,SAAS,CAAC,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAK,EAAE,QAAQ,CAAC,KAAKA,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAKoL,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAKoL,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKoL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKoL,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAKoL,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAKoL,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAKoL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAKoL,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAKoL,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAOpL,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA2B,IAAM+K,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA+B5G,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQE,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAA6BiG,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQS,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,cAAc,OAAO,WAAW,OAAO,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAAiDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA8B5B,GAAoB6B,GAAW,SAAmBxL,EAAM0J,EAAI,CAAC,IAAI+B,EAAKC,EAAK,GAAK,CAAC,IAAAC,EAAI,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAAzE,EAAK,IAAAvE,EAAI,aAAAkH,EAAa,YAAAoE,EAAY,aAAAxC,EAAa,SAAA1F,EAAS,QAAAmI,EAAQ,eAAAxK,EAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAuC,EAAa,OAAAgI,EAAO,MAAApH,CAAK,EAAE5E,EAEhgaiM,GAAgDlH,GAAK,KAAMvE,GAAK8I,EAAmB4C,EAAY,CAAC,CAAoCnH,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMvE,EAAsCuE,GAAK,MAAO,EAAE,IAAIoH,GAAKA,EAAIF,CAAW,EAE3TG,EAAQ,CAACxI,GAAU+D,GAAaD,EAAawE,EAAY,CAAC,CAACzK,EAAc,EAAE,EAAEA,CAAc,CAAC,EAAQ4K,EAAQ,CAACzI,GAAU+D,GAAaD,EAAawE,EAAY,CAACzK,EAAc,EAAE,EAAE,CAACA,CAAc,CAAC,EAAQ6K,GAAQ,CAAC1I,GAAU+D,GAAaD,EAAawE,EAAY,CAAC3K,EAAe,EAAE,EAAEA,CAAe,CAAC,EAAQgL,GAAM,CAAC3I,GAAU+D,GAAaD,EAAawE,EAAY,CAAC1K,EAAa,EAAE,EAAEA,CAAa,CAAC,EAAQgL,EAAW,CAAC5I,GAAU+D,GAAaD,EAAawE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQ/E,EAAU,CAACvD,GAAU+D,GAAaD,EAAa+E,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE,OAAA3F,GAAU,IAAI,CAAC,GAAIY,EAAiB,OAAOA,EAAU,SAASuF,GAAU,CAAChD,EAAI,QAAQ,aAAa,cAAc,CAACgD,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAuBtI,EAAKuI,GAAY,CAAC,QAAQ,KAAK,SAAuBvI,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,IAAQ,EAAa,SAAuBgI,GAAapD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAI,QAAQ,MAAM,CAAC,IAAIF,EAAKjC,EAAM,SAAS,MAAMiC,IAAO,OAAO,OAAOA,EAAK,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,GAAQ,MAAMC,GAAM,QAAQvI,EAAawI,EAAW,GAAG,QAASxI,EAAwB,GAAXwI,EAAc,QAAQxI,EAAaoI,EAAQ,EAAE,QAASpI,EAAqB,EAARqI,CAAS,CAAC,GAAGX,EAAKlC,EAAM,SAAS,MAAMkC,IAAO,OAAO,OAAOA,EAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAAuC,EAAgB,QAAAP,EAAQ,MAAAxG,EAAM,MAAAlB,EAAM,aAAAkD,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAAuC,EAAY,IAAAtM,EAAI,QAAAC,EAAQ,aAAAuD,EAAa,WAAAC,EAAW,GAAGjE,CAAK,EAAE,CAAgD,IAAI+M,EAAWjF,IAAelD,EAAwDX,IAAY8I,EAAW,KAAK,IAAIhF,CAAoB,IAAInD,GAAO,IAAMoI,EAAcxM,EAAI,EAAMyM,EAAI,CAACjJ,GAAcY,EAAM,EAAEoI,EAAcvM,EAAYyM,EAAO,CAAClJ,GAAcY,IAAQkB,EAAM,EAAEkH,EAAcvM,EAAY0M,EAAMnJ,GAAcY,IAAQkB,EAAM,EAAEkH,EAAcvM,EAAY2M,EAAKpJ,GAAcY,EAAM,EAAEoI,EAAcvM,EAAQ,OAAqB2D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,CAAC,GAAG,KAAK,SAAS,GAAG5E,EAAM,MAAM,CAAC,GAAG8M,EAAY,QAAQ,GAAGG,CAAG,MAAME,CAAK,MAAMD,CAAM,MAAME,CAAI,IAAI,EAAE,SAAuBhJ,EAAK4G,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQwC,EAAWF,EAAgBP,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAkB,IAAMpB,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQX,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECxD9mE,IAAM8C,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAwB,CAAC,yBAAyB,YAAY,KAAK,YAAY,OAAO,YAAY,OAAO,YAAY,IAAI,YAAY,KAAK,WAAW,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,GAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,MAAMC,EAAU,oBAAoB,IAAIC,EAAU,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMf,EAA5CC,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAK,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAvB,CAAQ,EAAEwB,GAAgB,CAAC,WAAA5B,GAAW,eAAe,YAAY,gBAAAD,GAAgB,YAAAS,GAAY,QAAAF,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ4B,EAAiBzB,EAAS,KAAK,GAAG,EAAEgB,EAAU,iBAAsB,CAAC,sBAAAU,EAAsB,MAAAC,CAAK,EAAEC,GAAyBV,CAAW,EAAQW,EAAaH,EAAsB,SAASI,IAAO,CAAC,GAAGf,GAAqB,MAAMA,EAAU,GAAGe,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAsBC,GAAM,EAAE,OAAqBC,EAAKC,GAAY,CAAC,GAAGtB,GAA4CmB,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQjC,EAAQ,QAAQF,EAAS,aAAa,IAAIqB,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUe,GAAG,eAA2B3B,GAAUU,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBc,EAAKE,EAAO,IAAI,CAAC,GAAGnB,EAAU,UAAUoB,GAAG,gBAAgB3B,CAAS,EAAE,cAAc,GAAK,mBAAmB,yBAAyB,iBAAiB,GAAK,iBAAiBgB,EAAiB,SAAS,YAAY,MAAMI,EAAa,IAAIZ,EAAI,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,qBAAqB,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,GAAGT,CAAK,EAAE,WAAWe,EAAW,SAAS,CAAC,kBAAkB,CAAC,iBAAiB,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,mBAAmB,EAAE,UAAU,CAAC,iBAAiB,mBAAmB,EAAE,UAAU,CAAC,iBAAiB,kBAAkB,EAAE,UAAU,CAAC,iBAAiB,mBAAmB,EAAE,UAAU,CAAC,iBAAiB,oBAAoB,CAAC,EAAE,GAAGzB,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,MAAM,EAAE,UAAU,CAAC,mBAAmB,KAAK,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,MAAM,CAAC,EAAEoB,EAAYE,CAAc,EAAE,SAAuBa,EAAKI,EAAS,CAAC,sBAAsB,GAAK,SAAuBJ,EAAWK,EAAS,CAAC,SAAuBL,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,iBAAiBV,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,kBAAkB,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKX,EAAU,WAAWS,EAAW,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,sZAAsZ,kFAAkF,8CAA8C,mDAAmD,8RAA8R,iHAAiH,qEAAqE,6WAA6W,GAAeA,EAAG,EAM/rMC,GAAgBC,GAAQpC,GAAUkC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,eAAeA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,yBAAyB,SAAS,OAAO,SAAS,MAAM,MAAM,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,oBAAoB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,MAAM,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAeM,EAAK,CAAC,ECN6T,IAAMC,GAAYC,EAASC,CAAM,EAAQC,GAAcF,EAASG,EAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAwB,CAAC,4BAA4B,YAAY,+BAA+B,YAAY,+BAA+B,YAAY,uBAAuB,YAAY,6BAA6B,YAAY,4BAA4B,YAAY,sBAAsB,YAAY,qBAAqB,YAAY,iCAAiC,YAAY,8BAA8B,YAAY,kCAAkC,YAAY,iCAAiC,YAAY,2BAA2B,WAAW,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAAkB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAA6BC,GAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMhB,EAA5CC,GAAwBa,CAAY,GAAgCA,EAAkB,CAAC,YAAAG,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAxB,CAAQ,EAAEyB,GAAgB,CAAC,WAAA7B,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAF,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6B,EAAiB1B,EAAS,KAAK,GAAG,EAAEiB,EAAU,iBAAuBU,EAAY,IAAQR,IAAc,YAA6CS,EAAa,IAAQT,IAAc,YAA6CU,EAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASV,CAAW,EAAmCW,EAAa,IAAQ,EAAC,YAAY,YAAY,WAAW,EAAE,SAASX,CAAW,EAAmCY,EAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAASZ,CAAW,EAAmCa,EAAa,IAAQb,IAAc,YAA6Cc,EAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAASd,CAAW,EAAmCe,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,WAAW,EAAE,SAASf,CAAW,EAAmCgB,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAShB,CAAW,EAAmCiB,EAAa,IAAQjB,IAAc,YAA6CkB,EAAc,IAAQlB,IAAc,YAA6CmB,EAAc,IAAQnB,IAAc,YAA6CoB,GAAsBC,GAAM,EAAE,OAAoBC,EAAKC,GAAY,CAAC,GAAG3B,GAA4CwB,GAAgB,SAAsBE,EAAKE,EAAO,IAAI,CAAC,QAAQzC,EAAQ,QAAQF,EAAS,aAAa,IAAIsB,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUsB,GAAG,eAA2BhC,GAAuBA,GAAuBA,GAAuBA,GAAUQ,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsByB,EAAMF,EAAO,IAAI,CAAC,GAAG1B,EAAU,UAAU2B,GAAG,iBAAiBhC,CAAS,EAAE,mBAAmB,qBAAqB,iBAAiBc,EAAiB,SAAS,YAAY,IAAIR,EAAI,MAAM,CAAC,GAAGP,CAAK,EAAE,WAAWa,EAAW,GAAG1B,GAAqB,CAAC,UAAU,CAAC,mBAAmB,iCAAiC,EAAE,UAAU,CAAC,mBAAmB,gCAAgC,EAAE,UAAU,CAAC,mBAAmB,2BAA2B,EAAE,UAAU,CAAC,mBAAmB,gCAAgC,EAAE,UAAU,CAAC,mBAAmB,2BAA2B,EAAE,UAAU,CAAC,mBAAmB,sBAAsB,EAAE,UAAU,CAAC,mBAAmB,6BAA6B,EAAE,UAAU,CAAC,mBAAmB,8BAA8B,EAAE,UAAU,CAAC,mBAAmB,4BAA4B,EAAE,UAAU,CAAC,mBAAmB,0BAA0B,EAAE,UAAU,CAAC,mBAAmB,8BAA8B,EAAE,UAAU,CAAC,mBAAmB,qBAAqB,CAAC,EAAEqB,EAAYE,CAAc,EAAE,SAAS,CAAcwB,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,qCAAqC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,wDAAwD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,wDAAwD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,0DAA0D,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,yCAAyC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,sCAAsC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,EAAeoB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGK,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iDAAiD,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mCAAmC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gCAAgC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,4BAA4B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,EAAeoB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGK,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEM,EAAY,GAAgBkB,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAa,GAAgBiB,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeiB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEK,EAAa,GAAgBgB,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAACM,EAAa,GAAgBW,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEU,EAAa,GAAgBU,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEW,EAAa,GAAgBS,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAES,EAAa,GAAgBQ,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,SAAS,CAAC,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEa,GAAa,GAAgBO,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEc,GAAa,GAAgBU,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAACY,EAAa,GAAgBS,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,GAAG1B,GAAqB,CAAC,UAAU,CAAC,kBAAAO,EAAiB,CAAC,EAAEc,EAAYE,CAAc,EAAE,SAAsBoB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,GAAG1B,GAAqB,CAAC,UAAU,CAAC,kBAAAO,EAAiB,CAAC,EAAEc,EAAYE,CAAc,EAAE,SAAsBoB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEgB,EAAc,GAAgBI,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,IAAI,wBAAwB,IAAI,oBAAoB,IAAI,qBAAqB,GAAG,EAAE,WAAWF,EAAW,SAAsBiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+DAA+D,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoD,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAcqB,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAK9C,GAAS,CAAC,MAAM,4FAA4F,OAAO,OAAO,WAAW,QAAQ,cAAc,UAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,EAAekD,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAA2B,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,8IAA8I,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+IAA+I,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,MAAM,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,uRAAuR,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,4PAA4P,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,4PAA4P,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,+MAA+M,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,+MAA+M,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,kTAAkT,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,kTAAkT,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,iNAAiN,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,uRAAuR,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,8OAA8O,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,iNAAiN,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,8OAA8O,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeoB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGK,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEqB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAewB,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAK9C,GAAS,CAAC,MAAM,uGAAuG,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,EAAekD,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBjB,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAciB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,GAAG,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,2BAA2B,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeiB,EAAKK,EAAS,CAAC,sBAAsB,GAAK,SAAsBL,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,oQAAoQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+IAA+I,iBAAiBjB,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,6BAA6B,KAAK,EAAE,WAAWF,EAAW,kBAAkB,MAAM,mBAAmB,GAAK,GAAG1B,GAAqB,CAAC,UAAU,CAAC,SAAsB2C,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mSAAmS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gTAAgT,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,gTAAgT,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,qTAAqT,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,qTAAqT,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,oUAAoU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,oUAAoU,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,2QAA2Q,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mSAAmS,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mQAAmQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,2QAA2Q,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWM,EAAS,CAAC,SAAsBN,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,mQAAmQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAExB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEc,GAAa,GAAgBM,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEmC,EAAa,GAAgBa,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEkC,EAAY,GAAgBc,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAE6C,EAAc,GAAgBG,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBjB,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsBiB,EAAKhD,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuD,GAAI,CAAC,sZAAsZ,kFAAkF,8CAA8C,mDAAmD,6RAA6R,oSAAoS,oPAAoP,0VAA0V,uLAAuL,qbAAqb,wjCAAwjC,mhBAAmhB,oHAAoH,4VAA4V,0GAA0G,+RAA+R,gYAAgY,kUAAkU,gJAAgJ,uUAAuU,sNAAsN,6+OAA6+O,mdAAmd,gTAAgT,81BAA81B,0SAA0S,gIAAgI,iFAAiF,uFAAuF,2EAA2E,mbAAmb,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAKvvmEC,GAAgBC,GAAQ1C,GAAUwC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,qBAAqB,+BAA+B,4BAA4B,uBAAuB,4BAA4B,+BAA+B,8BAA8B,iCAAiC,iCAAiC,6BAA6B,sBAAsB,kCAAkC,0BAA0B,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAG1D,GAAY,GAAGG,GAAc,GAAe6D,GAAM,GAAgBA,GAAM,GAAgBA,GAAM,GAAgBA,EAAK,CAAC,ECL7W,IAAMC,GAAiBC,EAASC,EAAW,EAAQC,GAAYF,EAASG,CAAM,EAAQC,GAAiBJ,EAASK,EAAW,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,WAAW,YAAY,QAAQ,WAAW,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA6BC,GAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMb,EAA5CC,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAG,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAArB,CAAQ,EAAEsB,GAAgB,CAAC,WAAA1B,GAAW,eAAe,YAAY,YAAAQ,GAAY,QAAAF,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0B,EAAiBvB,EAAS,KAAK,GAAG,EAAEc,EAAU,iBAAsB,CAAC,sBAAAU,EAAsB,MAAAC,CAAK,EAAEC,GAAyBV,CAAW,EAAQW,EAAWH,EAAsB,SAASI,IAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAUL,EAAsB,SAASI,IAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQU,EAAWN,EAAsB,SAASI,IAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQW,EAAUP,EAAsB,SAASI,IAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQY,EAAUR,EAAsB,SAASI,IAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAWT,EAAsB,SAASI,IAAO,CAACR,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASlB,CAAW,EAAmCmB,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASnB,CAAW,EAAmCoB,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASpB,CAAW,EAAmCqB,EAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASrB,CAAW,EAAmCsB,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASvB,CAAW,EAAmCwB,GAAa,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASxB,CAAW,EAAmCyB,GAAa,IAAQzB,IAAc,YAA6C0B,GAAa,IAAQ1B,IAAc,YAA6C2B,GAAa,IAAQ,GAAC,YAAY,YAAY,WAAW,EAAE,SAAS3B,CAAW,EAAmC4B,GAAc,IAAQ,GAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS5B,CAAW,EAAmC6B,GAAc,IAAQ7B,IAAc,YAA6C8B,GAAc,IAAQ9B,IAAc,YAA6C+B,GAAc,IAAQ/B,IAAc,YAA6CgC,EAAc,IAAQhC,IAAc,YAA6CiC,GAAc,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASjC,CAAW,EAAmCkC,GAAc,IAAQlC,IAAc,YAA6CmC,GAAc,IAAQnC,IAAc,YAA6CoC,GAAc,IAAQpC,IAAc,YAA6CqC,GAAc,IAAQrC,IAAc,YAA6CsC,GAAc,IAAQtC,IAAc,YAA6CuC,GAAc,IAAQvC,IAAc,YAA6CwC,GAAc,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASxC,CAAW,EAAmCyC,GAAc,IAAQzC,IAAc,YAA6C0C,GAAc,IAAQ1C,IAAc,YAA6C2C,GAAc,IAAQ3C,IAAc,YAA6C4C,EAAc,IAAQ5C,IAAc,YAA6C6C,GAAc,IAAQ7C,IAAc,YAA6C8C,GAAc,IAAQ9C,IAAc,YAA6C+C,EAAc,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS/C,CAAW,EAAmCgD,GAAsBC,GAAM,EAAE,OAAoBC,EAAKC,GAAY,CAAC,GAAGvD,GAA4CoD,GAAgB,SAAsBE,EAAKE,EAAO,IAAI,CAAC,QAAQlE,EAAQ,QAAQF,EAAS,aAAa,IAAImB,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUkD,GAAG,eAAepD,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAsBqD,EAAMF,EAAO,IAAI,CAAC,GAAGtD,EAAU,UAAUuD,GAAG,gBAAgB5D,CAAS,EAAE,mBAAmB,UAAU,iBAAiBc,EAAiB,SAAS,YAAY,IAAIR,EAAI,MAAM,CAAC,gBAAgB,qBAAqB,GAAGP,CAAK,EAAE,WAAWa,EAAW,GAAGvB,GAAqB,CAAC,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEkB,EAAYE,CAAc,EAAE,SAAS,CAACgB,GAAY,GAAgBoC,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB7C,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAACc,EAAa,GAAgB+B,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,IAAIoC,EAAW,MAAM,oBAAoB,QAAQ,YAAY,MAAM,OAAO,GAAG7B,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEkB,EAAa,GAAgB8B,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,IAAIsC,EAAU,MAAM,iBAAiB,QAAQ,YAAY,MAAM,OAAO,GAAG/B,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEmB,EAAa,GAAgB6B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,IAAIuC,EAAW,MAAM,YAAY,QAAQ,YAAY,MAAM,OAAO,GAAGhC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEoB,GAAa,GAAgB4B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,IAAIwC,EAAU,MAAM,iBAAiB,QAAQ,YAAY,MAAM,OAAO,GAAGjC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEqB,GAAa,GAAgB2B,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,IAAIyC,EAAU,MAAM,kBAAkB,QAAQ,YAAY,MAAM,OAAO,GAAGlC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAa,GAAgB0B,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,IAAI0C,GAAW,MAAM,WAAW,QAAQ,YAAY,MAAM,OAAO,GAAGnC,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegD,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAKzE,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEgD,GAAa,GAAgByB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,iBAAiB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEmD,GAAa,GAAgBwB,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAEoD,GAAa,GAAgBuB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAK3E,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,iBAAiB,QAAQ,YAAY,MAAM,OAAO,GAAGO,GAAqB,CAAC,UAAU,CAAC,MAAM,WAAW,QAAQ,WAAW,EAAE,UAAU,CAAC,MAAM,kBAAkB,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAE0B,GAAc,GAAgBsB,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAKvE,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGG,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAE2B,GAAc,GAAgBqB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEyB,GAAc,GAAgBoB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAE0B,GAAc,GAAgBmB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,eAAe,mBAAmB,gBAAgB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEqB,GAAa,GAAgBwB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,wCAAwC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEoB,GAAa,GAAgByB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAE2B,EAAc,GAAgBkB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,2CAA2C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,uCAAuC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAE4B,GAAc,GAAgBqB,EAAMF,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB7C,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAAc6C,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB7C,EAAiB,SAAS,sBAAsB,WAAWF,EAAW,SAAsB6C,EAAKvE,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGG,GAAqB,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAEkB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,EAAEgC,GAAc,GAAgBgB,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAE8B,GAAc,GAAgBe,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAE+B,GAAc,GAAgBc,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEgC,GAAc,GAAgBa,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,wCAAwC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEiC,GAAc,GAAgBY,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEkC,GAAc,GAAgBW,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,IAAI,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,2CAA2C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,uCAAuC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEmC,GAAc,GAAgBc,EAAMF,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB7C,EAAiB,SAAS,YAAY,WAAWF,EAAW,SAAS,CAACoC,GAAc,GAAgBS,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEqC,GAAc,GAAgBQ,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEsC,GAAc,GAAgBO,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEuC,EAAc,GAAgBM,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,wCAAwC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEwC,GAAc,GAAgBK,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,6CAA6C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,8CAA8C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,yCAAyC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAEyC,GAAc,GAAgBI,EAAKK,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,KAAK,OAAO,GAAG,IAAI,IAAI,2CAA2C,8FAA8F,EAAE,IAAI,UAAU,IAAI,IAAI,4CAA4C,8FAA8F,EAAE,IAAI,WAAW,IAAI,IAAI,uCAAuC,8FAA8F,EAAE,IAAI,QAAQ,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBhD,EAAiB,SAAS,YAAY,WAAWF,CAAU,CAAC,EAAE0C,EAAc,GAAgBG,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB7C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,WAAWF,CAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQmD,GAAI,CAAC,sZAAsZ,kFAAkF,8CAA8C,oDAAoD,qRAAqR,uRAAuR,yGAAyG,yGAAyG,2LAA2L,0GAA0G,yGAAyG,2LAA2L,0GAA0G,qUAAqU,iSAAiS,2GAA2G,0UAA0U,4SAA4S,uUAAuU,0IAA0I,uLAAuL,sLAAsL,skCAAskC,wSAAwS,uEAAuE,gIAAgI,iIAAiI,mPAAmP,wEAAwE,qWAAqW,skBAAskB,0SAA0S,+aAA+a,yeAAye,sVAAsV,6TAA6T,+TAA+T,+aAA+a,+aAA+a,kGAAkG,6IAA6I,mbAAmb,+aAA+a,kEAAkE,2GAA2G,iGAAiG,0GAA0G,iGAAiG,4NAA4N,8FAA8F,gGAAgG,+FAA+F,mbAAmb,kbAAkb,EAK334CC,GAAgBC,GAAQrE,GAAUmE,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,YAAY,YAAY,YAAY,YAAY,WAAW,WAAW,WAAW,WAAW,WAAW,WAAW,WAAW,WAAW,YAAY,YAAY,WAAW,WAAW,WAAW,UAAU,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAGpF,GAAiB,GAAGG,GAAY,GAAGE,EAAgB,CAAC,ECNzxBqF,GAAU,0BAA0B,CAAC,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,QAAQ,YAAY,CAAC,sBAAsB,qCAAqC,IAAI,uGAAuG,EAAE,MAAM,SAAS,IAAI,wGAAwG,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,mjBAAmjB,ymBAAymB,qmBAAqmB,EAAeC,GAAU,eCC5gD,IAAMC,GAAaC,EAASC,EAAO,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAY,CAAC,QAAQ,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,CAAC,EAAQC,GAA8BC,GAAW,SAAS,CAAC,GAAAC,EAAG,MAAAC,EAAM,UAAAC,EAAU,MAAAC,EAAM,OAAAC,EAAO,SAAAC,EAAS,QAAQC,EAAa,YAAY,MAAMC,EAAU,gBAAgB,KAAKC,EAAU,GAAGC,CAAS,EAAEC,EAAI,CAA4D,IAAMf,EAA5CC,GAAwBU,CAAY,GAAgCA,EAAkB,CAAC,YAAAK,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,WAAAC,EAAW,SAAAvB,CAAQ,EAAEwB,GAAgB,CAAC,WAAA5B,GAAW,eAAe,YAAY,gBAAAD,GAAgB,YAAAS,GAAY,QAAAF,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ4B,EAAiBzB,EAAS,KAAK,GAAG,EAAEgB,EAAU,iBAAuBU,EAAsBC,GAAM,EAAE,OAAqBC,EAAKC,GAAY,CAAC,GAAGjB,GAA4Cc,EAAgB,SAAuBE,EAAKE,EAAO,IAAI,CAAC,QAAQ5B,EAAQ,QAAQF,EAAS,aAAa,IAAIqB,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,UAAUU,GAAG,eAA2BtB,GAAuBA,GAAuBA,GAAUU,CAAU,EAAE,MAAM,CAAC,QAAQ,UAAU,EAAE,SAAuBS,EAAKI,GAAK,CAAC,KAAKjB,EAAU,aAAa,GAAM,SAAuBkB,EAAMH,EAAO,EAAE,CAAC,GAAGd,EAAU,UAAU,GAAGe,GAAG,gBAAgBtB,CAAS,CAAC,kBAAkB,mBAAmB,YAAY,iBAAiBgB,EAAiB,SAAS,YAAY,IAAIR,EAAI,MAAM,CAAC,GAAGT,CAAK,EAAE,WAAWe,EAAW,GAAGzB,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEoB,EAAYE,CAAc,EAAE,SAAS,CAAeQ,EAAKM,EAAS,CAAC,sBAAsB,GAAK,SAAuBN,EAAWO,EAAS,CAAC,SAAuBP,EAAKE,EAAO,EAAE,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,iBAAiBL,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,8EAA8E,2BAA2B,mBAAmB,gCAAgC,YAAY,6BAA6B,KAAK,EAAE,KAAKX,EAAU,WAAWS,EAAW,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,oEAAoE,EAAE,kBAAkB,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB,CAAC,qBAAqB,0EAA0E,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,EAAE,UAAU,CAAC,qBAAqB,oEAAoE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzB,GAAqB,CAAC,UAAU,CAAC,SAAuB8B,EAAWO,EAAS,CAAC,SAAuBP,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAuBF,EAAWO,EAAS,CAAC,SAAuBP,EAAKE,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,yBAAyB,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEZ,EAAYE,CAAc,CAAC,CAAC,EAAgBQ,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBL,EAAiB,SAAS,sBAAsB,MAAM,CAAC,OAAO,CAAC,EAAE,WAAWF,EAAW,SAAS,CAAC,UAAU,CAAC,OAAO,GAAG,CAAC,EAAE,SAAuBK,EAAKlC,GAAQ,CAAC,MAAM,wGAAwG,OAAO,OAAO,WAAW,OAAO,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGI,GAAqB,CAAC,kBAAkB,CAAC,MAAM,2FAA2F,EAAE,kBAAkB,CAAC,MAAM,8FAA8F,EAAE,kBAAkB,CAAC,MAAM,oGAAoG,EAAE,UAAU,CAAC,MAAM,oGAAoG,EAAE,UAAU,CAAC,MAAM,2FAA2F,CAAC,EAAEoB,EAAYE,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,sZAAsZ,kFAAkF,8CAA8C,oDAAoD,uSAAuS,iHAAiH,yGAAyG,oKAAoK,+WAA+W,8EAA8E,8DAA8D,mGAAmG,yHAAyH,ucAAuc,oEAAoE,ucAAuc,2cAA2c,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAMjgTC,GAAgBC,GAAQjC,GAAU+B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,kBAAkBA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,gBAAgB,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,GAAG7C,GAAa,GAAemD,GAAM,GAAgBA,GAAM,GAAgBA,EAAK,CAAC,ECN5L,IAAMC,GAAaC,EAASC,EAAO,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,CAAC,GAASC,GAAmB,CAACF,EAAEC,IAAI,yBAAyBA,CAAC,GAASE,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAgCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,wDAAwD,SAASE,GAAOD,EAAuCR,GAAwBM,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAM3B,IAAe2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAE2B,EAAM,iBAAwB3B,EAAS,KAAK,GAAG,EAAUgC,GAA6BC,GAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,GAAGC,CAAS,EAAEpB,GAASK,CAAK,EAAO,CAAC,YAAAgB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiBrB,GAAuBJ,EAAM3B,CAAQ,EAAQqD,EAAWC,GAAO,IAAI,EAAQC,EAAY,IAAQZ,IAAc,YAA6Ca,EAAa,IAAQ,EAAC,YAAY,WAAW,EAAE,SAASb,CAAW,EAAmCc,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoB5C,EAAK6C,GAAY,CAAC,GAAGtB,GAA4CiB,EAAgB,SAAsBxC,EAAKC,GAAS,CAAC,QAAQlB,EAAS,QAAQ,GAAM,SAAsBiB,EAAKT,GAAW,CAAC,MAAML,GAAY,SAAsBc,EAAK8C,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAK,SAAsB9C,EAAKE,EAAO,EAAE,CAAC,GAAGuB,EAAU,GAAGI,EAAgB,UAAU,GAAGkB,GAAGpE,GAAkB,GAAG+D,EAAsB,iBAAiBpB,EAAUK,CAAU,CAAC,iBAAiB,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIlB,GAA6BmB,EAAK,MAAM,CAAC,gBAAgB,sEAAsE,GAAGf,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,qEAAqE,CAAC,EAAE,GAAGxC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAsBkB,EAAM9C,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBiC,EAAiB,SAAS,YAAY,SAAS,CAAcnC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkBhD,GAAmB,kBAAkB,MAAM,mBAAmB,GAAK,GAAGN,GAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,EAAEQ,EAAY,GAAgBtC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,EAAE,kBAAkB7C,GAAmB,kBAAkB,MAAM,mBAAmB,GAAK,GAAGT,GAAqB,CAAC,UAAU,CAAC,kBAAkB,MAAS,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,EAAES,EAAa,GAAgBvC,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,kBAAkB,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,KAAKX,EAAU,kBAAkBlC,GAAmB,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGT,GAAqB,CAAC,kBAAkB,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,uDAAuD,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYI,CAAc,CAAC,CAAC,EAAekB,EAAM9C,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBiC,EAAiB,SAAS,YAAY,GAAGtD,GAAqB,CAAC,UAAU,CAAC,kBAAkBM,EAAkB,CAAC,EAAEuC,EAAYI,CAAc,EAAE,SAAS,CAAc9B,EAAKiD,EAAS,CAAC,sBAAsB,GAAK,SAAsBjD,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,cAAc,EAAE,iBAAiBiC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,EAAE,SAAS,CAAC,kBAAkB,CAAC,qBAAqB,uEAAuE,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGtD,GAAqB,CAAC,kBAAkB,CAAC,SAAsBmB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,gGAAgG,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwB,EAAYI,CAAc,CAAC,CAAC,EAAe9B,EAAKkD,EAA0B,CAAC,SAAsBlD,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBiC,EAAiB,SAAS,sBAAsB,SAAsBnC,EAAKxB,GAAQ,CAAC,MAAM,qBAAqB,OAAO,OAAO,WAAW,OAAO,cAAc,aAAa,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,OAAO,GAAGK,GAAqB,CAAC,kBAAkB,CAAC,MAAM,uEAAuE,CAAC,EAAE6C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQqB,GAAI,CAAC,kFAAkF,gFAAgF,sSAAsS,mHAAmH,uIAAuI,qIAAqI,sIAAsI,kUAAkU,gHAAgH,wGAAwG,goBAAgoB,6HAA6H,8OAA8O,iJAAiJ,uHAAuH,0iBAA0iB,iFAAiF,iEAAiE,mFAAmF,sEAAsE,8cAA8c,EASlicC,GAAgBC,GAAQtC,GAAUoC,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,wDAAwD,gBAAgB,GAAM,MAAM,OAAO,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,gFAAgF,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG9E,EAAY,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECT+iC,IAAMoF,GAAeC,EAASC,EAAS,EAAQC,GAAeF,EAASG,EAAS,EAAQC,GAAYJ,EAASK,CAAM,EAAQC,GAAmBN,EAASO,EAAa,EAAQC,GAAYC,GAAOC,CAAK,EAAQC,GAAWX,EAASY,EAAK,EAAQC,GAAcb,EAASc,EAAQ,EAAQC,GAAaf,EAASgB,EAAO,EAAQC,GAAoBjB,EAASkB,EAAc,EAAQC,GAAgBnB,EAASoB,CAAU,EAAQC,GAAerB,EAASsB,CAAS,EAAQC,GAAgBvB,EAASsB,CAAU,EAAQE,GAAoBxB,EAASyB,EAAc,EAAQC,GAAY1B,EAAS2B,EAAM,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,sBAAsB,UAAU,4CAA4C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAO,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,GAAU,IAAI,CAAC,IAAMC,EAASA,GAAiB,OAAUX,CAAY,EAAE,GAAGW,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC,OAAUZ,CAAY,CAAC,EAAQa,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiB,OAAUX,CAAY,EAAE,SAAS,MAAMW,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAAC,OAAUX,CAAY,CAAC,EAAE,GAAK,CAACc,EAAYC,CAAmB,EAAEC,GAA8BR,EAAQ9B,GAAY,EAAK,EAAQuC,EAAe,OAAuLC,EAAkBC,GAAGvC,GAAkB,GAAxL,CAAa0B,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQc,EAAUC,GAAkB,WAAW,EAAQC,EAAW1B,GAAO,IAAI,EAAQ2B,EAAOC,GAAU,EAAQC,EAAY,IAAS9C,GAAU,EAAiBmC,IAAc,YAAtB,GAAmEY,EAAa,IAAS/C,GAAU,EAAiBmC,IAAc,YAAtB,GAAmEa,EAAa,IAAQ,CAAChD,GAAU,GAAiBmC,IAAc,YAA6Cc,EAAa,IAAQ,CAACjD,GAAU,GAAiBmC,IAAc,YAA6Ce,EAAa,IAASlD,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASmC,CAAW,EAAtD,GAAyFgB,GAAWT,GAAkB,WAAW,EAAQU,GAAWnC,GAAO,IAAI,EAAE,OAAAoC,GAAiB,CAAC,CAAC,EAAsB/C,EAAKgD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAApD,EAAiB,EAAE,SAAsBqD,EAAMC,GAAY,CAAC,GAAG5B,GAAUT,EAAgB,SAAS,CAAcb,EAAKH,GAAU,CAAC,MAAM,+CAA+C,CAAC,EAAeoD,EAAME,EAAO,IAAI,CAAC,GAAG3B,EAAU,UAAUU,GAAGD,EAAkB,gBAAgBZ,CAAS,EAAE,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcpB,EAAKoD,EAA0B,CAAC,OAAO,GAAG,MAAMlC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,SAAsBlB,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKlC,GAAU,CAAC,UAAU,qFAA2E,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekC,EAAKoD,EAA0B,CAAC,OAAO,GAAG,MAAMlC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,GAAG,SAAsBlB,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKhC,GAAU,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiF,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,GAAGd,EAAU,IAAIE,EAAK,SAAS,CAAcrC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAsBiD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcjD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,uEAAuE,EAAE,SAAS,+BAA+B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,uEAAuE,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAsBA,EAAK,OAAO,CAAC,iBAAiB,OAAO,MAAM,CAAC,gBAAgB,uEAAuE,EAAE,SAAS,+CAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,6BAA6B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB7B,EAAWuD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAS,CAAC,4DAAyEjD,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,KAAK,EAAE,SAAS,aAAa,CAAC,EAAE,wGAAwG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBN,EAAM,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,2CAA2C,qBAAqB,OAAO,0BAA0B,QAAQ,uBAAuB,OAAO,0BAA0B,SAAS,sBAAsB,6EAA6E,EAAE,SAAS,CAAC,4DAAyEjD,EAAK,OAAO,CAAC,MAAM,CAAC,kBAAkB,mBAAmB,uBAAuB,KAAK,EAAE,SAAS,aAAa,CAAC,EAAE,wGAAwG,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,sJAAsJ,MAAM,CAAC,mBAAmB,cAAc,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKyD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B1D,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB1D,EAAK5B,GAAc,CAAC,UAAUsF,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAM,QAAQ,YAAY,MAAM,OAAO,UAAU,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAElB,EAAY,GAAgBxC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0CAA0C,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAY,GAAgBS,EAAM,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAASyC,EAAa,GAAgBzC,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,IAAI,GAAG,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,+BAA+B,mBAAmB,iBAAiB,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAASyC,EAAa,GAAgBzC,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,KAAK,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,UAAU,gCAAgC,mBAAmB,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQoF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,IAAI,CAAC,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,gBAAgB,mBAAmB,oBAAoB,CAAC,CAAC,CAAC,EAAEuB,EAAa,GAAgBzC,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,KAAK,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,mKAAmK,EAAE,UAAU,gCAAgC,mBAAmB,OAAO,CAAC,EAAEuB,EAAa,GAAgBzC,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQsF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,+BAA+B,mBAAmB,QAAQ,CAAC,EAAEwB,EAAa,GAAgB1C,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,mKAAmK,CAAC,CAAC,EAAE,SAAsBlB,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,8BAA8B,mBAAmB,OAAO,CAAC,CAAC,CAAC,EAAEqE,EAAa,GAAgB1C,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uFAAuF,OAAO,mKAAmK,CAAC,CAAC,EAAE,SAAsBlB,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,uFAAuF,OAAO,mKAAmK,EAAE,UAAU,8BAA8B,mBAAmB,QAAQ,CAAC,CAAC,CAAC,EAAEoE,EAAa,GAAgBzC,EAAK3B,GAAY,CAAC,yBAAyB,GAAM,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,IAAI,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,MAAM,QAAQsF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,EAAE,EAAE,IAAI,GAAG,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gCAAgC,mBAAmB,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,EAAa,GAAgB3C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,SAAsBA,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOX,GAAmB,OAAO,OAAO,gBAAgB,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,CAAC,CAAC,EAAE,SAAsBlB,EAAKoD,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,GAAGlC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,SAAsBlB,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKvB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuB,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcjD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBP,EAAYM,EAAS,CAAC,SAAS,CAAcvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBP,EAAYM,EAAS,CAAC,SAAS,CAAcvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,oMAAoM,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKrB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,2DAAsD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+IAA+I,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKrB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,gDAAgD,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+IAA+I,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKrB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,0CAA0C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+IAA+I,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKrB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,mCAAmC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,+IAA+I,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKrB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,6CAA6C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+IAA+I,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKrB,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeqB,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,mDAAmD,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+IAA+I,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyC,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyC,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBlB,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQyC,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,CAAC,CAAC,EAAE,SAAsBlB,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,QAAQoF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,GAAG,EAAE,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,CAAC,CAAC,CAAC,EAAe+B,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcjD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQyC,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBlB,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,QAAQoF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,SAAS,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,CAAC,CAAC,CAAC,EAAelB,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQ8B,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQyC,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,OAAO,EAAE,SAAS,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,qKAAqK,CAAC,CAAC,EAAE,SAAsBlB,EAAKzB,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,QAAQoF,GAA2BzC,GAAmB,GAAG,GAAG,EAAE,KAAK,EAAE,GAAG,EAAE,EAAE,SAAS,CAAC,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,wFAAwF,OAAO,qKAAqK,EAAE,UAAU,gBAAgB,mBAAmB,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyB,EAAa,GAAgB3C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwE,EAAa,GAAgB1C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0E,EAAa,GAAgB5C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,yDAAyD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,mBAAmB,GAAG6C,GAAW,IAAIC,GAAK,SAAsBG,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,SAAS,CAAcjD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,uEAAuE,EAAE,SAAS,kCAAkC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAcjD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAY,GAAgBS,EAAM,MAAM,CAAC,UAAU,gCAAgC,SAAS,CAAcjD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,8HAA8H,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKnB,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAcjD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAY,GAAgBS,EAAM,MAAM,CAAC,UAAU,+BAA+B,SAAS,CAAcjD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,iJAAiJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKnB,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,SAAS,CAAcjD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAY,GAAgBS,EAAM,MAAM,CAAC,UAAU,gCAAgC,SAAS,CAAcjD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,sHAAsH,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,kBAAkB,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKnB,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,SAAS,CAAcjD,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAY,GAAgBS,EAAM,MAAM,CAAC,UAAU,gCAAgC,SAAS,CAAcjD,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAsBA,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,6EAA6E,EAAE,SAAS,oIAAoI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKnB,GAAQ,CAAC,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,MAAM,GAAK,SAAS,YAAY,KAAK,MAAM,WAAW,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAU,eAAe,cAAc,EAAE,eAAe,EAAE,IAAI,+BAA+B,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemB,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBA,EAAKyD,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6B5D,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,KAAK+B,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB5D,EAAKjB,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK6E,EAAe,CAAC,EAAE,MAAM,4BAA4B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5D,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,yBAAyB,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyE,EAAa,GAAgBM,EAAM,MAAM,CAAC,UAAU,6CAA6C,mBAAmB,mBAAmB,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,mBAAmB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBN,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,CAAC,kBAA+BjD,EAAK,KAAK,CAAC,CAAC,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qNAAgN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKb,EAAU,CAAC,UAAU,aAAa,aAAa,CAAC,UAAU,sBAAsB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAI,EAAE,MAAM,CAAca,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,oBAAoB,gBAAgB,GAAK,KAAK,oBAAoB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,0BAA0B,gBAAgB,GAAK,KAAK,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,qBAAqB,gBAAgB,GAAK,KAAK,qBAAqB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,qBAAqB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,yBAAyB,gBAAgB,GAAK,KAAK,yBAAyB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,yBAAyB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,2BAA2B,gBAAgB,GAAK,KAAK,2BAA2B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,2BAA2B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,oBAAoB,gBAAgB,GAAK,KAAK,oBAAoB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsE,EAAY,GAAgBxC,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,YAAY,SAAsBiD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcjD,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,0BAA0B,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uDAAuD,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKwD,EAAS,CAAC,sBAAsB,GAAK,SAAsBxD,EAAWuD,EAAS,CAAC,SAAsBvD,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,qNAAgN,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,0SAA0S,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwE,EAAa,GAAgB1C,EAAK,MAAM,CAAC,UAAU,8BAA8B,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKb,EAAW,CAAC,UAAU,aAAa,aAAa,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,IAAI,YAAY,GAAM,UAAU,GAAG,UAAU,EAAE,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,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAca,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,oBAAoB,gBAAgB,GAAK,KAAK,oBAAoB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,oBAAoB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,0BAA0B,gBAAgB,GAAK,KAAK,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,0BAA0B,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,gBAAgB,GAAK,KAAK,mBAAmB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,uBAAuB,gBAAgB,GAAK,KAAK,uBAAuB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,uBAAuB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,yBAAyB,gBAAgB,GAAK,KAAK,yBAAyB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,yBAAyB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,kBAAkB,gBAAgB,GAAK,KAAK,kBAAkB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwD,EAAa,GAAgBzC,EAAK,MAAM,CAAC,UAAU,+BAA+B,mBAAmB,sBAAsB,SAAsBA,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKb,EAAW,CAAC,UAAU,aAAa,aAAa,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAK,EAAE,gBAAgB,GAAK,aAAa,EAAE,UAAU,OAAO,eAAe,CAAC,aAAa,GAAM,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,IAAI,YAAY,GAAM,UAAU,GAAG,UAAU,EAAE,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,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAca,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,gBAAgB,GAAK,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,iBAAiB,gBAAgB,GAAK,KAAK,iBAAiB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,YAAY,gBAAgB,GAAK,KAAK,YAAY,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,gBAAgB,gBAAgB,GAAK,KAAK,gBAAgB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,gBAAgB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,kBAAkB,gBAAgB,GAAK,KAAK,kBAAkB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAee,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,gBAAgB,GAAK,KAAK,WAAW,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBrD,EAAKf,EAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAACL,EAAa,GAAgB5C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyE,EAAa,GAAgB3C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwE,EAAa,GAAgB1C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,sDAAsD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8B,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,UAAU,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,UAAU,EAAE,EAAE,CAAC,EAAE,SAAsBlB,EAAKoD,EAA0B,CAAC,OAAO,IAAI,MAAM,SAAS,GAAGlC,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,GAAG,SAAsBlB,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKvB,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgE,EAAa,GAAgBzC,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,yCAAyC,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwE,EAAa,GAAgB1C,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe+E,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,SAAS,CAAcjD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,QAAQX,GAAmB,OAAO,OAAO,WAAW,GAAGA,GAAmB,GAAG,GAAG,EAAE,UAAU,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,UAAU,EAAE,CAAC,CAAC,EAAE,SAAsBlB,EAAKoD,EAA0B,CAAC,OAAO,IAAI,MAAM,SAASlC,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,EAAE,SAAsBlB,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKV,GAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeU,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAK9B,EAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyE,EAAa,GAAgB3C,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAMX,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,SAAS,CAAC,EAAE,SAAsBlB,EAAKoD,EAA0B,CAAC,SAAsBpD,EAAKqD,EAAU,CAAC,UAAU,wDAAwD,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKR,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgD,EAAY,GAAgBxC,EAAK,MAAM,CAAC,UAAU,gCAAgC,mBAAmB,mBAAmB,SAAsBA,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAMX,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,WAAW,CAAC,CAAC,EAAE,SAAsBlB,EAAKoD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,SAAS,GAAGA,GAAmB,GAAG,GAAG,EAAE,OAAO,EAAE,SAAsBlB,EAAKqD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBrD,EAAKsD,EAAkB,CAAC,WAAWzB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB7B,EAAKR,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeQ,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6D,GAAI,CAAC,kFAAkF,gFAAgF,mSAAmS,yGAAyG,4HAA4H,wXAAwX,ogEAAogE,gRAAgR,+QAA+Q,mRAAmR,wLAAwL,yLAAyL,yLAAyL,wGAAwG,iOAAiO,qTAAqT,oHAAoH,+IAA+I,iUAAiU,8LAA8L,+TAA+T,gMAAgM,4fAA4f,+LAA+L,2NAA2N,0NAA0N,8bAA8b,gcAAgc,wNAAwN,4TAA4T,6QAA6Q,waAAwa,wRAAwR,4RAA4R,0TAA0T,iVAAiV,uNAAuN,wRAAwR,wLAAwL,yaAAya,oTAAoT,oTAAoT,yLAAyL,8RAA8R,sRAAsR,+LAA+L,+LAA+L,+LAA+L,0RAA0R,gMAAgM,8LAA8L,0GAA0G,ujBAAujB,yRAAyR,uRAAuR,uLAAuL,uLAAuL,sXAAsX,oXAAoX,wYAAwY,oXAAoX,utBAAutB,2VAA2V,mYAAmY,kOAAkO,+QAA+Q,qXAAqX,+QAA+Q,wfAAwf,mOAAmO,sNAAsN,wLAAwL,0GAA0G,+wBAA+wB,+RAA+R,iRAAiR,uLAAuL,ySAAyS,4GAA4G,mRAAmR,4GAA4G,4TAA4T,uGAAuG,wSAAwS,0GAA0G,yhVAAyhV,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,isHAAisH,23IAA23I,EAWj22IC,GAAgBC,GAAQxD,GAAUsD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGlG,GAAe,GAAGG,GAAe,GAAGE,GAAY,GAAGE,GAAmB,GAAGK,GAAW,GAAGE,GAAc,GAAGE,GAAa,GAAGE,GAAoB,GAAGE,GAAgB,GAAGE,GAAe,GAAGE,GAAgB,GAAGC,GAAoB,GAAGE,GAAY,GAAG2E,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACvoF,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,qBAAuB,4GAAgI,sBAAwB,IAAI,qBAAuB,OAAO,uBAAyB,GAAG,oCAAsC,4JAA0L,6BAA+B,OAAO,yBAA2B,QAAQ,sBAAwB,OAAO,4BAA8B,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "shouldPlayOnHover", "setShouldPlayOnHover", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "controls", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "key", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "unselectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "ref1", "ref2", "key", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "xqPgo_coA", "KFAWci_6S", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap13nt36a", "args", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "RichText2", "x", "css", "FramerluAuXNNti", "withCSS", "luAuXNNti_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "SpacerFonts", "getFonts", "otw1uWwIn_default", "PhosphorFonts", "Icon", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "transformTemplate", "_", "t", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "RichText2", "x", "css", "FramerRJbodLWdn", "withCSS", "RJbodLWdn_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "SlideButtonFonts", "getFonts", "luAuXNNti_default", "SpacerFonts", "otw1uWwIn_default", "Stories1ColFonts", "RJbodLWdn_default", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "tap10u5i56", "args", "tapu0agq9", "tap14lbgmw", "tapyoxp2d", "taprpt1vf", "tap1ntdhbi", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "isDisplayed23", "isDisplayed24", "isDisplayed25", "isDisplayed26", "isDisplayed27", "isDisplayed28", "isDisplayed29", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "u", "Image2", "css", "FramerD15gAsfSQ", "withCSS", "D15gAsfSQ_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "IconoirFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "humanReadableVariantMap", "transitions", "Component", "Y", "id", "style", "className", "width", "height", "layoutId", "outerVariant", "RH9wDUpgE", "DxZ_ooeaW", "restProps", "ref", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "transition", "useVariantState", "layoutDependency", "defaultLayoutId", "ae", "p", "LayoutGroup", "motion", "cx", "Link", "u", "RichText2", "x", "css", "FramerdwhF5uvGf", "withCSS", "dwhF5uvGf_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "IconoirFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "AHTr0OpJg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "u", "RichText2", "ComponentViewportProvider", "css", "FramerfGig8vtB4", "withCSS", "fGig8vtB4_default", "addPropertyControls", "ControlType", "addFonts", "TopBannerFonts", "getFonts", "fGig8vtB4_default", "NavbarNEWFonts", "k7U2WCbFz_default", "SpacerFonts", "otw1uWwIn_default", "ButtonPrimaryFonts", "E66MWOkP1_default", "ImageWithFX", "withFX", "Image2", "QuoteFonts", "xavyXgXQ3_default", "PhosphorFonts", "Icon", "YouTubeFonts", "Youtube", "ButtonTertiaryFonts", "dwhF5uvGf_default", "HorizontalFonts", "D15gAsfSQ_default", "SlideshowFonts", "Slideshow", "Slideshow1Fonts", "CustomerTickerFonts", "UGkozodWM_default", "FooterFonts", "faAGyiavt_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", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId1", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "ResolveLinks", "resolvedLinks", "getLoadingLazyAtYPosition", "resolvedLinks1", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
