{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js", "ssg:https://framerusercontent.com/modules/vAXXN6b001eDJHwqmRcO/yQUeW1hqIovLLFNfp9Yj/HhXN31SUw.js", "ssg:https://framerusercontent.com/modules/xD9IAF8RKLiP8bhwk0cs/GastYzcRpkWFygWd73oC/in25gp_8k.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.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,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>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 filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength: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=filteredSlots.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;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[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)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.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=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):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(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.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<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.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},i));}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:OPACITY_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:isCanvas?\"none\":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&&!isCanvas?\"preserve-3d\":undefined,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?OPACITY_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:OPACITY_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 _child_props,_child_props1;const{slideKey,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=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);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:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.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,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/58hEViThWwbrWFjC9kFa/s8eNnLI52HQR6XegnR1G/jeIIip8Yb.js\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={bKugLnrje:{hover:true,pressed:true}};const cycleOrder=[\"bKugLnrje\",\"VHVf25YPc\",\"nUbRecOdE\",\"MG69_9ogp\",\"qY2JUq5JZ\"];const serializationHash=\"framer-2Wup0\";const variantClassNames={bKugLnrje:\"framer-v-1f8mrbh\",MG69_9ogp:\"framer-v-3768og\",nUbRecOdE:\"framer-v-trh01w\",qY2JUq5JZ:\"framer-v-dl06j2\",VHVf25YPc:\"framer-v-o6lum9\"};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={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-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(React.Fragment);const humanReadableVariantMap={Default:\"bKugLnrje\",Disabled:\"nUbRecOdE\",Error:\"qY2JUq5JZ\",Loading:\"VHVf25YPc\",Success:\"MG69_9ogp\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"bKugLnrje\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bKugLnrje\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"VHVf25YPc\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"VHVf25YPc\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];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__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1f8mrbh\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"bKugLnrje\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-dca875b7-f855-43c1-bf73-97596e452266, rgb(238, 235, 222))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,...style},variants:{\"bKugLnrje-hover\":{backgroundColor:\"var(--token-c18e5c55-e670-494b-9afe-b018358f3867, rgba(238, 235, 222, 0.1))\"},\"bKugLnrje-pressed\":{backgroundColor:\"var(--token-c18e5c55-e670-494b-9afe-b018358f3867, rgba(238, 235, 222, 0.1))\"},nUbRecOdE:{opacity:.5},qY2JUq5JZ:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"}},...addPropertyOverrides({\"bKugLnrje-hover\":{\"data-framer-name\":undefined},\"bKugLnrje-pressed\":{\"data-framer-name\":undefined},MG69_9ogp:{\"data-framer-name\":\"Success\"},nUbRecOdE:{\"data-framer-name\":\"Disabled\"},qY2JUq5JZ:{\"data-framer-name\":\"Error\"},VHVf25YPc:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-swuwne\",\"data-styles-preset\":\"jeIIip8Yb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(3, 17, 28)))\"},children:\"Get Pricing\"})}),className:\"framer-1sk2ryx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mUyYdnVV1\",style:{\"--extracted-r6o4lv\":\"var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(3, 17, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{qY2JUq5JZ:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({MG69_9ogp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-swuwne\",\"data-styles-preset\":\"jeIIip8Yb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c5446a54-80de-4f79-b24b-55997bf1fe5e, rgb(3, 17, 28)))\"},children:\"Thank you\"})})},qY2JUq5JZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n40nzx\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"J2a7HwE8y\",style:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(238, 235, 222)) /* {\"name\":\"text/default\"} */ 7.208614864864882deg, rgb(255, 255, 255) 342deg)',mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1vsmhh4\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"IRTvuEpQ5\",style:{background:'conic-gradient(from 0deg at 50% 50%, var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5)) /* {\"name\":\"text/muted\"} */ 7.208614864864882deg, rgb(255, 255, 255) 342deg)',mask:\"none\",WebkitMask:\"none\"},variants:{VHVf25YPc:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lpihuz\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"JU2kOrXwq\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2Wup0.framer-14yefjz, .framer-2Wup0 .framer-14yefjz { display: block; }\",\".framer-2Wup0.framer-1f8mrbh { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-2Wup0 .framer-1sk2ryx { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-2Wup0 .framer-1n40nzx { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-2Wup0 .framer-1vsmhh4 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-2Wup0 .framer-lpihuz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2Wup0.framer-1f8mrbh { gap: 0px; } .framer-2Wup0.framer-1f8mrbh > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2Wup0.framer-1f8mrbh > :first-child { margin-left: 0px; } .framer-2Wup0.framer-1f8mrbh > :last-child { margin-right: 0px; } }\",\".framer-2Wup0.framer-v-o6lum9.framer-1f8mrbh, .framer-2Wup0.framer-v-trh01w.framer-1f8mrbh, .framer-2Wup0.framer-v-3768og.framer-1f8mrbh, .framer-2Wup0.framer-v-dl06j2.framer-1f8mrbh { cursor: unset; }\",\".framer-2Wup0.framer-v-o6lum9 .framer-1vsmhh4 { overflow: hidden; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"VHVf25YPc\":{\"layout\":[\"fixed\",\"fixed\"]},\"nUbRecOdE\":{\"layout\":[\"fixed\",\"fixed\"]},\"MG69_9ogp\":{\"layout\":[\"fixed\",\"fixed\"]},\"qY2JUq5JZ\":{\"layout\":[\"fixed\",\"fixed\"]},\"u9UUqF5j1\":{\"layout\":[\"fixed\",\"fixed\"]},\"c9FA37xH3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHhXN31SUw=withCSS(Component,css,\"framer-2Wup0\");export default FramerHhXN31SUw;FramerHhXN31SUw.displayName=\"Button Forms\";FramerHhXN31SUw.defaultProps={height:40,width:240};addPropertyControls(FramerHhXN31SUw,{variant:{options:[\"bKugLnrje\",\"VHVf25YPc\",\"nUbRecOdE\",\"MG69_9ogp\",\"qY2JUq5JZ\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerHhXN31SUw,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHhXN31SUw\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"240\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"VHVf25YPc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nUbRecOdE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MG69_9ogp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qY2JUq5JZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"u9UUqF5j1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"c9FA37xH3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HhXN31SUw.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Noise from\"https://framerusercontent.com/modules/bamMgJhjMszHbcnxCtZj/20nHFbpxFqdlchR1dDZF/Noise.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/Z4QJ2YpzpVnWRfR6Ccgg/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js\";import ButtonForms from\"#framer/local/canvasComponent/HhXN31SUw/HhXN31SUw.js\";import Header from\"#framer/local/canvasComponent/lAx3n195J/lAx3n195J.js\";import Button from\"#framer/local/canvasComponent/nEDMPIJV1/nEDMPIJV1.js\";import Footer from\"#framer/local/canvasComponent/RwxZLcIgs/RwxZLcIgs.js\";import Menu from\"#framer/local/canvasComponent/xwU_tGGW2/xwU_tGGW2.js\";import Accordion from\"#framer/local/canvasComponent/yrbCq6tCB/yrbCq6tCB.js\";import*as sharedStyle1 from\"#framer/local/css/bK5YQqvLX/bK5YQqvLX.js\";import*as sharedStyle8 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle7 from\"#framer/local/css/h4jVEYDkM/h4jVEYDkM.js\";import*as sharedStyle4 from\"#framer/local/css/i6r0kI2sg/i6r0kI2sg.js\";import*as sharedStyle2 from\"#framer/local/css/mvXlq_92F/mvXlq_92F.js\";import*as sharedStyle6 from\"#framer/local/css/szJtSwdtx/szJtSwdtx.js\";import*as sharedStyle5 from\"#framer/local/css/xZndidUCt/xZndidUCt.js\";import*as sharedStyle3 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import*as sharedStyle from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/in25gp_8k/in25gp_8k.js\";const HeaderFonts=getFonts(Header);const MenuFonts=getFonts(Menu);const VideoFonts=getFonts(Video);const NoiseFonts=getFonts(Noise);const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const TickerFonts=getFonts(Ticker);const SlideshowFonts=getFonts(Slideshow);const ContainerWithFX=withFX(Container);const MotionSectionWithFX=withFX(motion.section);const AccordionFonts=getFonts(Accordion);const ButtonFormsFonts=getFonts(ButtonForms);const FooterFonts=getFonts(Footer);const breakpoints={HgtABIQNl:\"(min-width: 1200px) and (max-width: 1599px)\",O5HHoDMOp:\"(max-width: 809px)\",omjb777E0:\"(min-width: 810px) and (max-width: 1199px)\",oSc1nZDP2:\"(min-width: 1600px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-NOpEn\";const variantClassNames={HgtABIQNl:\"framer-v-15nfucz\",O5HHoDMOp:\"framer-v-1jhgymq\",omjb777E0:\"framer-v-1rcrxlw\",oSc1nZDP2:\"framer-v-fx1bpt\"};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:150,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:150};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop Large\":\"oSc1nZDP2\",Desktop:\"HgtABIQNl\",Phone:\"O5HHoDMOp\",Tablet:\"omjb777E0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"HgtABIQNl\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-NOpEn`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-NOpEn`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const qO4N_Q_Fiwelu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"OBHKieU9l\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"O5HHoDMOp\")return false;return true;};const elementId1=useRouteElementId(\"iGwxEYVbM\");const ref3=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"omjb777E0\")return true;return false;};const elementId2=useRouteElementId(\"fslnQN3vo\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"JhkFdSX11\");const ref5=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"HgtABIQNl\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15nfucz\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 64px)\",y:24},omjb777E0:{width:\"calc(100vw - 96px)\",y:32},oSc1nZDP2:{width:\"calc(100vw - 192px)\",y:48}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"1072px\",y:40,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1j7zs3f-container\",id:\"1j7zs3f\",layoutScroll:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{variant:\"onAJmyJLj\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"M181ZxEQR\",layoutId:\"M181ZxEQR\",qO4N_Q_Fi:qO4N_Q_Fiwelu7j({overlay}),style:{width:\"100%\"},variant:\"AeTkjxauL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1kle378\",\"data-framer-portal-id\":\"1j7zs3f\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"e4BTQ6IIN\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pyjg4e-container\",\"data-framer-portal-id\":\"1j7zs3f\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{variant:\"Cv3CHFpRY\"},omjb777E0:{variant:\"bsCvT6wqS\"},oSc1nZDP2:{variant:\"nOG67Tiem\"}},children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",id:\"Q1JN75mTC\",layoutId:\"Q1JN75mTC\",style:{height:\"100%\",width:\"100%\"},variant:\"NtV0XAti8\",width:\"100%\"})})})})]}),document.querySelector(\"#overlay\"))})})]})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-bm1cz1\",\"data-framer-name\":\"Main Wrapper\",name:\"Main Wrapper\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-19qbztq\",\"data-framer-name\":\"Section Hero\",name:\"Section Hero\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:true,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:40,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1eo9epe\",\"data-framer-name\":\"Video Wrapper\",name:\"Video Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iy90cn-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Q5Qa6eVkl\",isMixedBorderRadius:false,layoutId:\"Q5Qa6eVkl\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/CbZgEgeTRasaG6MA6SiqPQZJtg.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:.2,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:0,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mb8vop-container\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"p8KlI0Tjz\",layoutId:\"p8KlI0Tjz\",opacity:.1,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bzbpvq\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(130.20000000000016),pixelHeight:854,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"70vw\",src:\"https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png\",srcSet:\"https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png 1920w\"}},omjb777E0:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(158.70000000000016),pixelHeight:854,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"60vw\",src:\"https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png\",srcSet:\"https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(283.7000000000002),pixelHeight:854,pixelWidth:1920,positionX:\"center\",positionY:\"center\",sizes:\"60vw\",src:\"https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png\",srcSet:\"https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png?scale-down-to=512 512w,https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N8mjAEYueqBAzQf0P2ZUolD8x0U.png 1920w\"},className:\"framer-14iham3\",\"data-framer-name\":\"Image\",name:\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8p1btr\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"videos made simple\"})}),className:\"framer-u0yld4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ok8rf1\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined},{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined},{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined},{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{y:515.8000000000002},omjb777E0:{y:544.3000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:669.3000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v64eij-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{QkE8o0HIe:resolvedLinks[3]},omjb777E0:{QkE8o0HIe:resolvedLinks[2]},oSc1nZDP2:{QkE8o0HIe:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"Get Pricing\",height:\"100%\",id:\"yoa9uJb1E\",layoutId:\"yoa9uJb1E\",QkE8o0HIe:resolvedLinks[0],variant:\"MblpBuNJI\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{y:572.8000000000002},omjb777E0:{y:544.3000000000002}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:669.3000000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b3c086-container\",children:/*#__PURE__*/_jsx(Button,{amWyVdppW:true,ApxukoHYo:\"Book a Call\",height:\"100%\",id:\"Vyr3gU2uF\",layoutId:\"Vyr3gU2uF\",QkE8o0HIe:\"https://calendar.app.google/wGRGEFPVTX9wSvgf8\",variant:\"MblpBuNJI\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1euqkab\",\"data-framer-name\":\"Introduction\",name:\"Introduction\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7venmo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4oywgx\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",children:\"videos made simple\"})}),className:\"framer-1csk39n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a0e2vm\",\"data-framer-name\":\"Description\",name:\"Description\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",children:\"Gravity Films' Video Production is the simple way to get bang for your buck when you need to get videos made. We like to make making videos simple for you. Simple process. Simple pricing. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",children:\"Brief us with what you need, and we'll assemble the creatives to bring it together. We'll manage your production all the way through to delivery, and at the end, you'll just pay for the services you used. No retainers or management fees. \"})]}),className:\"framer-1juwd17\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ty6qoi\",\"data-framer-name\":\"Image Ticker\",name:\"Image Ticker\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1439),positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},omjb777E0:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1558),positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1736),positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(1688),positionX:\"center\",positionY:\"center\",sizes:\"100vw\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"},className:\"framer-1jvl45f\",\"data-framer-name\":\"Noise\",name:\"Noise\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16iyjgu-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:.2,fadeContent:false,fadeInset:0,fadeWidth:26,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"fdV5OFnJd\",layoutId:\"fdV5OFnJd\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/Lpw4pUbD6ZHnPqOWt7fdxXaxSzI.png\"},className:\"framer-1oxylr1\",\"data-framer-name\":\"$8\",name:\"$8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/qjJqDq8pKTgSho3re89Lm6mxfo.png\"},className:\"framer-ewsgxv\",\"data-framer-name\":\"$2\",name:\"$2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/N1TedmiSdF0y0GNIzonZOZ5tY.png\"},className:\"framer-p7wp1l\",\"data-framer-name\":\"$1\",name:\"$1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/6TnEGRWTjxh1UxbelowGY54D5Fk.png\"},className:\"framer-1k0y0mh\",\"data-framer-name\":\"$3\",name:\"$3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/ymfwx3KjUVS52k56SPdbjDeoQs.png\"},className:\"framer-1eoel85\",\"data-framer-name\":\"$5\",name:\"$5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/rCENoxKR8rRImZb7JquzwviQHM.png\"},className:\"framer-v8pdbh\",\"data-framer-name\":\"$6\",name:\"$6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/093G9USK3OwxFMuRNyaDwM0e17A.png\"},className:\"framer-1yizzom\",\"data-framer-name\":\"$7\",name:\"$7\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dvhgsn\",\"data-framer-name\":\"What Can We Make?\",name:\"What Can We Make?\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tt61of\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"What CAN we make?\"})})},oSc1nZDP2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",children:\"What CAN we do for you?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",children:\"What CAN we make?\"})}),className:\"framer-1dk67lk\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lbo2h\",\"data-framer-name\":\"Products/Services\",name:\"Products/Services\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vlic4\",\"data-framer-name\":\"Live Action\",name:\"Live Action\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6svhj\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"live action\"})}),className:\"framer-qkjavq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tde6wz\",\"data-styles-preset\":\"i6r0kI2sg\",children:\"need something filmed?\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodCBpdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\",\"--framer-text-transform\":\"uppercase\"},children:\"need something filmed?\"})}),className:\"framer-1pzw1hq\",fonts:[\"FS;Satoshi-light italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14u17fj\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"/ Solo Videographer\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Camera Crew\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Studio Space\"]})}),fonts:[\"Inter\"]},omjb777E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"24px\"},children:\"/ Solo VideoGrapher\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ camera crews\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ studio space\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ Solo VideoGrapher\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ camera crews\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ studio space\"]})}),className:\"framer-1cp628s\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"/ Additional Camera\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Drone & Operator\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Stills Photography\"]})}),fonts:[\"Inter\"]},omjb777E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ Additional camera\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ drone & Operator\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Stills Photography\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ Additional camera\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ drone & Operator\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Stills Photography\"]})}),className:\"framer-60224l\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wmekh6\",\"data-framer-name\":\"Post Production\",name:\"Post Production\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ku2kf\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"POST PRODUCTION\"})}),className:\"framer-19k9039\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tde6wz\",\"data-styles-preset\":\"i6r0kI2sg\",children:\"Bring it all together.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodCBpdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\",\"--framer-text-transform\":\"uppercase\"},children:\"Bring it all together.\"})}),className:\"framer-4117s5\",fonts:[\"FS;Satoshi-light italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4whbf\",\"data-framer-name\":\"Items\",name:\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"/ Editor\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Graphic & Title Set\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Sound Design & Mix\"]})}),fonts:[\"Inter\"]},omjb777E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ editor\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ graphic & Title Set\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ sound design & Mix\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ editor\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ graphic & Title Set\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ sound design & Mix\"]})}),className:\"framer-19vkidt\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"/ Voice Over\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Music Tracks\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Stock Images & Video\"]})}),fonts:[\"Inter\"]},omjb777E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ voice over\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ music tracks\",/*#__PURE__*/_jsx(\"br\",{}),\"/ stock images & video\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ voice over\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ music tracks\",/*#__PURE__*/_jsx(\"br\",{}),\"/ stock images & video\"]})}),className:\"framer-pbx56d\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gu0l41\",\"data-framer-name\":\"Animation\",name:\"Animation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-amp6ys\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"animation\"})}),className:\"framer-186vl6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tde6wz\",\"data-styles-preset\":\"i6r0kI2sg\",children:\"tell your story with motion graphics.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1saWdodCBpdGFsaWM=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\",\"--framer-text-transform\":\"uppercase\"},children:\"tell your story with motion graphics.\"})}),className:\"framer-1dhqwtd\",fonts:[\"FS;Satoshi-light italic\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o522ew\",\"data-framer-name\":\"Items\",name:\"Items\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-21ogod\",\"data-styles-preset\":\"xZndidUCt\",children:[\"/ Solo Animator\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Dynamic Duo (incl Designer)\",/*#__PURE__*/_jsx(\"br\",{}),\"/ Animation Team\"]})}),fonts:[\"Inter\"]},omjb777E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ solo animator (graphics & titles)\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ dynamic duo (scenes & characters)\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ animation team (complex & 3D)\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\",\"--framer-text-transform\":\"uppercase\"},children:[\"/ solo animator (graphics & titles)\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ dynamic duo (scenes & characters)\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, rgb(218, 197, 167))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"/ animation team (complex & 3D)\"]})}),className:\"framer-1k74597\",fonts:[\"FS;Satoshi-medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1vr2i0z\",\"data-framer-name\":\"Images\",id:elementId,name:\"Images\",ref:ref2,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"Like this:\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Like this:\"})}),className:\"framer-b3r148\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-788iq3\",\"data-framer-name\":\"Slideshow Container\",name:\"Slideshow Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.35,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2aqeat-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:50,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:100,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:50,height:\"100%\",id:\"xQqu4GJDe\",intervalControl:5,itemAmount:1,layoutId:\"xQqu4GJDe\",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:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16vog6a-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,controls:false,height:\"100%\",id:\"XhiImSh6j\",isMixedBorderRadius:false,layoutId:\"XhiImSh6j\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/FpD7LIVHZrYuBUxDW1FXHDqpPKI.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17610st-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,controls:false,height:\"100%\",id:\"oeieZew7W\",isMixedBorderRadius:false,layoutId:\"oeieZew7W\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/BLY2HhMJvFspyXSm2ctKxLrploY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-q5k8ob-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,controls:false,height:\"100%\",id:\"WydDXqb9J\",isMixedBorderRadius:false,layoutId:\"WydDXqb9J\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/kwrDiuqbtXU6Doo9P68aqw2lAAc.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1oqo7w8-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,controls:false,height:\"100%\",id:\"PQmSl1Mwv\",isMixedBorderRadius:false,layoutId:\"PQmSl1Mwv\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/zsAwODG5DXijnjCj6a8EdXvSkf0.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12okazc-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:100,bottomLeftRadius:100,bottomRightRadius:100,controls:false,height:\"100%\",id:\"CCxDcEjFY\",isMixedBorderRadius:false,layoutId:\"CCxDcEjFY\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/b8nsQqF0nzUoUeY9UwItdJ2SY.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:100,topRightRadius:100,volume:25,width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionSectionWithFX,{className:\"framer-15w0ia6 hidden-1jhgymq\",\"data-framer-name\":\"Process\",id:elementId1,name:\"Process\",ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q3c2kd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"How do we do it?\"})}),className:\"framer-ozts8e\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10cefmd-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{omjb777E0:{dragControl:true,itemAmount:2,padding:50,paddingBottom:50,paddingLeft:50,paddingRight:50,paddingTop:50,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:false}},oSc1nZDP2:{effectsOptions:{effectsHover:false,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:.2},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:0,overflow:false},gap:100,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(255, 255, 255, 0.2)\",arrowGap:10,arrowPadding:30,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:500,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:50,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:25,height:\"100%\",id:\"hoW2RSbXw\",intervalControl:3,itemAmount:3,layoutId:\"hoW2RSbXw\",padding:80,paddingBottom:80,paddingLeft:80,paddingPerSide:false,paddingRight:80,paddingTop:80,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(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"right\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/M5gTkdfjozalo0IRjVWw51crQU.png\",srcSet:\"https://framerusercontent.com/images/M5gTkdfjozalo0IRjVWw51crQU.png?scale-down-to=512 512w,https://framerusercontent.com/images/M5gTkdfjozalo0IRjVWw51crQU.png 1000w\"},className:\"framer-1kiufkw\",\"data-framer-name\":\"$1\",name:\"$1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\"},children:\"Brief\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9d1pfe\",\"data-styles-preset\":\"szJtSwdtx\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Send us a brief & we'll let you know what you need & estimate cost.\"})})]}),className:\"framer-91ixg2\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"right\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/YDgDNrOOrR4iaDGcDCfE3jyLe1U.png\",srcSet:\"https://framerusercontent.com/images/YDgDNrOOrR4iaDGcDCfE3jyLe1U.png?scale-down-to=512 512w,https://framerusercontent.com/images/YDgDNrOOrR4iaDGcDCfE3jyLe1U.png 1000w\"},className:\"framer-18my4ly\",\"data-framer-name\":\"$2\",name:\"$2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\"},children:\"CREW\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9d1pfe\",\"data-styles-preset\":\"szJtSwdtx\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"greenlight & we'll onboard the creatives you need.\"})}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-fottxr\",\"data-styles-preset\":\"h4jVEYDkM\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})]}),className:\"framer-b11ti7\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"right\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/femHosQIKpxrYoMWsTFDtAQfs.png\",srcSet:\"https://framerusercontent.com/images/femHosQIKpxrYoMWsTFDtAQfs.png?scale-down-to=512 512w,https://framerusercontent.com/images/femHosQIKpxrYoMWsTFDtAQfs.png 1000w\"},className:\"framer-1hmd70m\",\"data-framer-name\":\"$3\",name:\"$3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\"},children:\"PRODUCE\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9d1pfe\",\"data-styles-preset\":\"szJtSwdtx\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"We coordinate  creatives to create (shoot, animate, edit) \"})})]}),className:\"framer-1nu12bz\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"right\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/5RhzcTHCTJUdXSUgQr8j89S73nE.png\",srcSet:\"https://framerusercontent.com/images/5RhzcTHCTJUdXSUgQr8j89S73nE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5RhzcTHCTJUdXSUgQr8j89S73nE.png 1000w\"},className:\"framer-3khdpo\",\"data-framer-name\":\"$4\",name:\"$4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\"},children:\"DIRECT\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9d1pfe\",\"data-styles-preset\":\"szJtSwdtx\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"you review & give notes, we adapt until you're happy.\"})})]}),className:\"framer-1fdtvyj\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,pixelHeight:1e3,pixelWidth:1e3,positionX:\"right\",positionY:\"top\",sizes:\"300px\",src:\"https://framerusercontent.com/images/9WPZaldsGTmXAPJPtbYAREYAdQ.png\",srcSet:\"https://framerusercontent.com/images/9WPZaldsGTmXAPJPtbYAREYAdQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9WPZaldsGTmXAPJPtbYAREYAdQ.png 1000w\"},className:\"framer-3o0p16\",\"data-framer-name\":\"$5\",name:\"$5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"left\"},children:\"DELIVER\"}),/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-9d1pfe\",\"data-styles-preset\":\"szJtSwdtx\",style:{\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"take delivery of your video(s) and pay for what you used.\"})})]}),className:\"framer-65hqrs\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nqpvbq\",\"data-framer-name\":\"Who is It For?\",name:\"Who is It For?\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-vynt0v\",\"data-framer-name\":\"Header\",name:\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"WHO is it for?\"})})},oSc1nZDP2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"what is it Good for?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"WHO is it for?\"})}),className:\"framer-dgsrpq\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1tde6wz\",\"data-styles-preset\":\"i6r0kI2sg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our video Production services work great for\u2026\"})}),className:\"framer-1yh0ygd\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kj7otg\",\"data-framer-name\":\"People\",name:\"People\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3xmm5k\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4426.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:5876},oSc1nZDP2:{y:7401.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6076.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1a46qbe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Create high-quality promotional videos, product demos, and campaign ads quickly and affordably. On-Demand Video offers a streamlined process that meets your marketing needs without the high costs and runaround of working with an external creative agency.\"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"UC_5vyyjj\",layoutId:\"UC_5vyyjj\",LcLdNZglK:\"You know your brand and your campaigns best. With DIY Video, you can create the exact promotional videos, product demos, and ads you envision. Share your brief and example videos, and we'll bring your ideas to life.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Create high-quality promotional videos, product demos, and campaign ads quickly and affordably. Our Video Production offers a streamlined process that meets your marketing needs without the high costs and delays of traditional production.\"})}),nfb5VqKrk:\"Marketing Departments\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4510.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:5960},oSc1nZDP2:{y:7485.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6160.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-j9hm82-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{nfb5VqKrk:\"Internal Comms\"},omjb777E0:{nfb5VqKrk:\"Internal Comms\"},oSc1nZDP2:{LcLdNZglK:\"Engage your team with video, by letting them hear first hand from your leadership. Use video to tell your company story, impart your culture and values, and keep people up to date with your progress & initiatives. \"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"PaWrJkH9f\",layoutId:\"PaWrJkH9f\",LcLdNZglK:\"You understand your team's needs and how to communicate with them effectively. Whether it's training modules, updates, or onboarding videos, provide your vision and examples, and we'll handle the production.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Use video to allow your staff and stakeholders to hear directly from your leadership, announcing new initiatives, and imparting your organisation's culture and values. \"})}),nfb5VqKrk:\"Internal Communications\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4594.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:6044},oSc1nZDP2:{y:7569.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6244.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-lpul67-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Not all video production needs to be award-winning. Sometimes you just need video content made that hits the spot for socials. We can help make video that's on-message, and fit-for-platform. \"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"p8usf78ov\",layoutId:\"p8usf78ov\",LcLdNZglK:\"You know what content resonates with your audience. Direct your social media ads, stories, and tutorials with DIY Video. Share your brief and examples, and we'll produce high-quality content quickly and affordably.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Socials' appetite for ever-increasing amounts of content, make Gravity Films' Video Production a must for getting more bang for your buck. Not every piece needs to be produced to the scale of your TVC Campaigns. We'll help you unlock video volume. \"})}),nfb5VqKrk:\"Social Media Managers\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4678.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:6128},oSc1nZDP2:{y:7653.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6328.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1qrbt60-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Showcase your app with stunning video content. Create app previews, feature highlights, and tutorials effortlessly. On-Demand Video provides cost-effective solutions to help your app stand out.\"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"WQdqauyHG\",layoutId:\"WQdqauyHG\",LcLdNZglK:\"You know the best way to showcase your app. Create app previews, feature highlights, and tutorials that accurately represent your app. Provide your brief and example videos, and we'll make it happen.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Showcase your app with stunning video content. Create app previews, feature highlights, and tutorials effortlessly. Gravity Films' Video Production provides cost-effective solutions to help your app stand out.\"})}),nfb5VqKrk:\"App Developers\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xkynfe\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4756.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:5876},oSc1nZDP2:{y:7401.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6076.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1jiivz1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Produce affordable, high-quality videos to promote your business. From product showcases to customer testimonials, On-Demand Video helps you connect with your audience without the fuss and expense of traditional production.\"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"bk1xbqCAL\",layoutId:\"bk1xbqCAL\",LcLdNZglK:\"You know how to connect with your customers. Direct your promotional videos, customer testimonials, and product showcases with DIY Video. Share your vision and examples, and we'll deliver professional content at an affordable price.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Produce affordable, high-quality videos to promote your business. From product showcases to customer testimonials, our Video Production helps you connect with your audience without the fuss and expense of traditional production.\"})}),nfb5VqKrk:\"Small Business Owners\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4840.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:5960},oSc1nZDP2:{y:7485.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6160.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-z5t4wb-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Create engaging and effective educational videos, tutorials, and training modules. Our streamlined process ensures you get professional content that enhances learning experiences, all at a cost-effective price.\"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"U5UGlCnUh\",layoutId:\"U5UGlCnUh\",LcLdNZglK:\"You know the learning objectives and how to engage your audience. Create educational videos, tutorials, and training modules with DIY Video. Provide your brief and example videos, and we'll produce the content you need.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Create engaging and effective educational videos, tutorials, and training modules. Our streamlined process ensures you get professional content that enhances learning experiences, all at a cost-effective price.\"})}),nfb5VqKrk:\"Learning Designers\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:4924.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:6044},oSc1nZDP2:{y:7569.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6244.2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsx(ContainerWithFX,{className:\"framer-1msnx50-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Expand your service offerings with professional video content without managing in-house production. You're welcome to white-label our Video production to provide a simple and affordable way to add high-quality video elements to your broader campaigns.\"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"ojqtOyBq6\",layoutId:\"ojqtOyBq6\",LcLdNZglK:\"You know your clients and their campaigns inside out. Enhance your service offerings with professional video content without the hassle of managing production in-house. Provide your brief and example videos, and we'll create the video elements you need to complement your broader campaigns seamlessly.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Expand your service offerings with professional video content without managing in-house production. Creative Agencies can white-label our Video Production services and provide a simple and affordable way to add high-quality video elements to your broader campaigns.\"})}),nfb5VqKrk:\"Marketing Agencies\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{width:\"calc(100vw - 60px)\",y:5008.599999999999},omjb777E0:{width:\"max((100vw - 84px) / 2, 1px)\",y:6128},oSc1nZDP2:{y:7653.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"max((100vw - 132px) / 2, 1px)\",y:6328.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vv36dm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{oSc1nZDP2:{LcLdNZglK:\"Improve your HR communications with professional videos for training, onboarding, and internal announcements. Our Video Production offers a straightforward and budget-friendly solution to meet your department's needs.\"}},children:/*#__PURE__*/_jsx(Accordion,{Fd_BNXLBo:\"p7xzvRnUd\",height:\"100%\",id:\"ByJisswU2\",layoutId:\"ByJisswU2\",LcLdNZglK:\"Improve your HR communications with professional videos for training, onboarding, and internal announcements. On-Demand Video offers a straightforward and budget-friendly solution to meet your department's needs.\",N5W8tNb5c:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Improve your HR communications with professional videos for training, onboarding, and internal announcements. Our Video Production offers a straightforward and budget-friendly solution to meet your department's needs.\"})}),nfb5VqKrk:\"HR Departments\",style:{width:\"100%\"},variant:\"GnaOEVFlr\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dx9xzk\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined},{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined},{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined},{href:{hash:\":JhkFdSX11\",webPageId:\"in25gp_8k\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{y:5114.599999999999},omjb777E0:{y:6222.5},oSc1nZDP2:{y:7767.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:6442.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hw0xdr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{QkE8o0HIe:resolvedLinks1[3]},omjb777E0:{QkE8o0HIe:resolvedLinks1[2]},oSc1nZDP2:{QkE8o0HIe:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"Get Pricing\",height:\"100%\",id:\"OYqzgNlmo\",layoutId:\"OYqzgNlmo\",QkE8o0HIe:resolvedLinks1[0],variant:\"MblpBuNJI\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{y:5171.599999999999},omjb777E0:{y:6222.5},oSc1nZDP2:{y:7767.7}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:6442.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9pq7dp-container\",children:/*#__PURE__*/_jsx(Button,{amWyVdppW:true,ApxukoHYo:\"Book a Call\",height:\"100%\",id:\"tUHp_NvGK\",layoutId:\"tUHp_NvGK\",QkE8o0HIe:\"https://calendar.app.google/wGRGEFPVTX9wSvgf8\",variant:\"MblpBuNJI\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1foomls\",\"data-framer-name\":\"Client Logos\",name:\"Client Logos\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-43umyc-container\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:10,fadeWidth:50,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"NwZdBu_r7\",layoutId:\"NwZdBu_r7\",name:\"Logos\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/Tfvuo59SxVbj0NWLWcAwjyzy2aw.png\"},className:\"framer-3bgfzp\",\"data-framer-name\":\"AWJ\",name:\"AWJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/cG7WgrUoa7RcHH6gzomEGYhINw.png\"},className:\"framer-5ydk8b\",\"data-framer-name\":\"Beyond_Bank\",name:\"Beyond_Bank\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:126,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/zkjrSBEmyzFaMYkJUR8frUEkfCs.png\"},className:\"framer-19epgwk\",\"data-framer-name\":\"C3\",name:\"C3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/xpa0MHQT7ZXWU0GQneHIykIrpM.png\"},className:\"framer-16b9x3m\",\"data-framer-name\":\"Coach_Assist\",name:\"Coach_Assist\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/eknrit6rmw8scelz9xzFy1zzy8.png\"},className:\"framer-1bexrmc\",\"data-framer-name\":\"Dementia_Australia\",name:\"Dementia_Australia\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/4mhsdmjGu2XiekzwrjcF7Cp6QA0.png\"},className:\"framer-e76fqs\",\"data-framer-name\":\"M_L\",name:\"M_L\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/oUYZEgHBTsUQrWbV72zjnKldG8.png\"},className:\"framer-omsezb\",\"data-framer-name\":\"Noon\",name:\"Noon\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/4IEcftzvxTBg1pfifnLZJyWS6c.png\"},className:\"framer-6gxxy8\",\"data-framer-name\":\"Phytech\",name:\"Phytech\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/DdugRuTlp1jPtf2k8JLRcSqR9k.png\"},className:\"framer-yqkzfk\",\"data-framer-name\":\"SEELEY\",name:\"SEELEY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/DYudyQwtIchnXl14u0QfYEVcvjw.png\"},className:\"framer-1ls3v4v\",\"data-framer-name\":\"S_S\",name:\"S_S\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:250,pixelHeight:85,pixelWidth:250,src:\"https://framerusercontent.com/images/sWcjZCgX50783zI6VsEJug7fE.png\"},className:\"framer-kaeche\",\"data-framer-name\":\"StateSwim\",name:\"StateSwim\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ouwxhb\",\"data-framer-name\":\"Images\",name:\"Images\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e095pq\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5380.599999999999),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},omjb777E0:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7059),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6487.8),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6730.200000000001),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"},className:\"framer-hueisl\",\"data-framer-name\":\"Noise\",name:\"Noise\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(5380.599999999999),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/K4lRvWg7L0Lb213YNsqPCrcfb8.jpg\"}},omjb777E0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(7059),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/K4lRvWg7L0Lb213YNsqPCrcfb8.jpg\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(6487.8),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/K4lRvWg7L0Lb213YNsqPCrcfb8.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(6730.200000000001),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/K4lRvWg7L0Lb213YNsqPCrcfb8.jpg\"},className:\"framer-3ghljp\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lb8xx2\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5380.599999999999),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},omjb777E0:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7059),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6487.8),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6730.200000000001),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"},className:\"framer-4pj90c\",\"data-framer-name\":\"Noise\",name:\"Noise\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(5380.599999999999),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/QNDHVmmSBpZ6hWa785bo4fjmbx0.jpg\"}},omjb777E0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(7059),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/QNDHVmmSBpZ6hWa785bo4fjmbx0.jpg\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(6487.8),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/QNDHVmmSBpZ6hWa785bo4fjmbx0.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(6730.200000000001),pixelHeight:333,pixelWidth:500,src:\"https://framerusercontent.com/images/QNDHVmmSBpZ6hWa785bo4fjmbx0.jpg\"},className:\"framer-419hp3\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kgtagc\",\"data-framer-name\":\"Image Wrapper\",name:\"Image Wrapper\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(5380.599999999999),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},omjb777E0:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7059),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6487.8),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6730.200000000001),positionX:\"center\",positionY:\"center\",sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png\",srcSet:\"https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=512 512w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0DK2TVhpUuYXLFbxnAeQTrzZ8M.png 2624w\"},className:\"framer-3fqvje\",\"data-framer-name\":\"Noise\",name:\"Noise\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(5380.599999999999),pixelHeight:750,pixelWidth:500,sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg\",srcSet:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg 500w\"}},omjb777E0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(7059),pixelHeight:750,pixelWidth:500,sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg\",srcSet:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg 500w\"}},oSc1nZDP2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(6487.8),pixelHeight:750,pixelWidth:500,sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg\",srcSet:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg 500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1400,intrinsicWidth:2e3,loading:getLoadingLazyAtYPosition(6730.200000000001),pixelHeight:750,pixelWidth:500,sizes:\"max(33.3333vw, 1px)\",src:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg\",srcSet:\"https://framerusercontent.com/images/UN7Nvucr8C1aztneRXReLrkpNbE.jpg 500w\"},className:\"framer-13eq8xr\",\"data-framer-name\":\"Image\",name:\"Image\"})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"section\",{className:\"framer-90i3pw hidden-15nfucz hidden-fx1bpt hidden-1jhgymq\",\"data-framer-name\":\"Got a Project?\",id:elementId2,name:\"Got a Project?\",ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"Got a project?\"})}),className:\"framer-4kfbyq\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kxbcsb\",\"data-framer-name\":\"Buttons\",name:\"Buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{omjb777E0:{y:6948}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-190xgv8-container\",children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"\",height:\"100%\",id:\"ecFcsTX0h\",layoutId:\"ecFcsTX0h\",QkE8o0HIe:\"https://form.typeform.com/to/zkoLcRWM\",variant:\"GxmQfKNvb\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ajnqGeUly\"},implicitPathVariables:undefined},{href:{webPageId:\"ajnqGeUly\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{omjb777E0:{y:6948}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u3fk4d-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{omjb777E0:{QkE8o0HIe:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{amWyVdppW:false,ApxukoHYo:\"\",height:\"100%\",id:\"f6QWYSwp7\",layoutId:\"f6QWYSwp7\",QkE8o0HIe:resolvedLinks2[0],variant:\"zjE3tCrBJ\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1sk1561\",\"data-framer-name\":\"Pricing\",id:elementId3,name:\"Pricing\",ref:ref5,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",style:{\"--framer-text-alignment\":\"center\"},children:\"What does it cost?\"})})},omjb777E0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"What does it cost?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ptz35s\",\"data-styles-preset\":\"bK5YQqvLX\",style:{\"--framer-text-alignment\":\"center\"},children:\"How much does it cost?\"})}),className:\"framer-zvkiga\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-j0wedo\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fbu7oo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tfti7b\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fill out your details to receive our pricing and a free quote\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",style:{\"--framer-text-alignment\":\"center\"},children:\"Fill out your details to receive our pricing and a free quote\"})}),className:\"framer-cs0sl2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/3daa8385-b6b4-4559-aa21-1f186496628b/submit\",className:\"framer-1ohgfjx\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"label\",{className:\"framer-1yf0ow0\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-qtlv60\",inputName:\"Name\",placeholder:\"Name\",required:true,type:\"text\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1p6pvoh\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-13bun7o\",inputName:\"Email\",placeholder:\"Email\",required:true,type:\"email\"})}),/*#__PURE__*/_jsx(\"label\",{className:\"framer-1ck82wr\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1mfxpam\",inputName:\"Company\",placeholder:\"Company\",type:\"text\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{y:6140},omjb777E0:{y:8205.6},oSc1nZDP2:{y:8870.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,width:\"558px\",y:7845.200000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rv81ox-container\",children:/*#__PURE__*/_jsx(ButtonForms,{height:\"100%\",id:\"cKETjoJ0i\",layoutId:\"cKETjoJ0i\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"VHVf25YPc\",success:\"MG69_9ogp\"},\"bKugLnrje\"),width:\"100%\"})})})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vxzln8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s9bttw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"live action\"})}),className:\"framer-1rgn5gd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Solo Videographer\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Camera Crew\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Additional Camera\"})]}),className:\"framer-g3tje1\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ajglt7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"POST-PRODUCTION\"})}),className:\"framer-19v1v67\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Editor\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Graphic & Title Set\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Sound Designer\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Colourist\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Voice Over\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Licenced Music\"})]}),className:\"framer-1oggtb0\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-358x13\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"ANIMATION\"})}),className:\"framer-1xqb0yy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Solo Animator\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Dynamic Duo\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-171o9fj\",\"data-styles-preset\":\"mvXlq_92F\",style:{\"--framer-text-alignment\":\"center\"},children:\"Animation Team\"})]}),className:\"framer-bx7xc1\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{y:8623.8},omjb777E0:{y:9408.2},oSc1nZDP2:{y:10108.800000000001}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1231,width:\"100vw\",y:9083.800000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jmhk5l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{O5HHoDMOp:{variant:\"N32m2TuiJ\"},omjb777E0:{variant:\"X7nOlkXY9\"},oSc1nZDP2:{variant:\"CUiSDTgwp\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"uN2IduLVe\",layoutId:\"uN2IduLVe\",style:{width:\"100%\"},variant:\"trS9HLZeB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qnbfxl-container\",children:/*#__PURE__*/_jsx(Noise,{backgroundSize:128,borderRadius:0,height:\"100%\",id:\"Zfy06avxK\",layoutId:\"Zfy06avxK\",opacity:.05,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-NOpEn { background: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255)); }`,\".framer-NOpEn.framer-lkknm7, .framer-NOpEn .framer-lkknm7 { display: block; }\",\".framer-NOpEn.framer-15nfucz { align-content: center; align-items: center; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #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-NOpEn .framer-1j7zs3f-container { flex: none; height: auto; left: 50%; mix-blend-mode: difference; position: fixed; top: 40px; transform: translateX(-50%); width: 1072px; z-index: 9; }\",'.framer-NOpEn .framer-1kle378 { background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #03111c) /* {\"name\":\"background/default\"} */; inset: 0px; position: fixed; user-select: none; z-index: 8; }',\".framer-NOpEn .framer-1pyjg4e-container { flex: none; height: 100vh; left: 0px; position: fixed; top: 0px; width: 100%; z-index: 8; }\",\".framer-NOpEn .framer-bm1cz1 { align-content: center; align-items: center; border-bottom-left-radius: 48px; border-bottom-right-radius: 48px; border-top-left-radius: 48px; border-top-right-radius: 48px; 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%; z-index: 2; }\",\".framer-NOpEn .framer-19qbztq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100vh; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-NOpEn .framer-1eo9epe { flex: none; height: 100vh; overflow: hidden; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1iy90cn-container { flex: none; height: 100%; left: 0px; opacity: 0.8; position: absolute; top: 0px; width: 100%; }\",\".framer-NOpEn .framer-mb8vop-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-NOpEn .framer-1bzbpvq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 0px; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-NOpEn .framer-14iham3 { aspect-ratio: 2.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 83px); opacity: 0.7; overflow: visible; position: relative; width: 60%; }\",\".framer-NOpEn .framer-8p1btr { 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: 650px; }\",\".framer-NOpEn .framer-u0yld4, .framer-NOpEn .framer-1csk39n, .framer-NOpEn .framer-1juwd17, .framer-NOpEn .framer-qkjavq, .framer-NOpEn .framer-1pzw1hq, .framer-NOpEn .framer-19k9039, .framer-NOpEn .framer-4117s5, .framer-NOpEn .framer-186vl6, .framer-NOpEn .framer-1dhqwtd, .framer-NOpEn .framer-1rgn5gd, .framer-NOpEn .framer-19v1v67, .framer-NOpEn .framer-1xqb0yy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-ok8rf1, .framer-NOpEn .framer-1kxbcsb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 47px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1v64eij-container, .framer-NOpEn .framer-1b3c086-container, .framer-NOpEn .framer-hw0xdr-container, .framer-NOpEn .framer-9pq7dp-container, .framer-NOpEn .framer-190xgv8-container, .framer-NOpEn .framer-1u3fk4d-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NOpEn .framer-1euqkab { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-7venmo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-4oywgx { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 0.4 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-a0e2vm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-ty6qoi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 200px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1jvl45f { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); opacity: 0.1; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\",\".framer-NOpEn .framer-16iyjgu-container, .framer-NOpEn .framer-10cefmd-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1oxylr1, .framer-NOpEn .framer-ewsgxv, .framer-NOpEn .framer-p7wp1l, .framer-NOpEn .framer-1k0y0mh, .framer-NOpEn .framer-1eoel85, .framer-NOpEn .framer-v8pdbh, .framer-NOpEn .framer-1yizzom, .framer-NOpEn .framer-1kiufkw, .framer-NOpEn .framer-18my4ly, .framer-NOpEn .framer-1hmd70m, .framer-NOpEn .framer-3khdpo, .framer-NOpEn .framer-3o0p16 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 300px); overflow: visible; position: relative; width: 300px; }\",\".framer-NOpEn .framer-dvhgsn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 70px 50px 70px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1tt61of, .framer-NOpEn .framer-1q3c2kd, .framer-NOpEn .framer-1foomls { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1dk67lk, .framer-NOpEn .framer-ozts8e { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-lbo2h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1vlic4, .framer-NOpEn .framer-wmekh6, .framer-NOpEn .framer-gu0l41 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1e6svhj, .framer-NOpEn .framer-5ku2kf, .framer-NOpEn .framer-amp6ys { 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-NOpEn .framer-14u17fj, .framer-NOpEn .framer-l4whbf, .framer-NOpEn .framer-1o522ew { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1cp628s, .framer-NOpEn .framer-60224l, .framer-NOpEn .framer-19vkidt, .framer-NOpEn .framer-pbx56d, .framer-NOpEn .framer-1k74597, .framer-NOpEn .framer-cs0sl2 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-1vr2i0z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: 2000px; justify-content: flex-start; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-b3r148, .framer-NOpEn .framer-dgsrpq, .framer-NOpEn .framer-1yh0ygd, .framer-NOpEn .framer-4kfbyq, .framer-NOpEn .framer-zvkiga, .framer-NOpEn .framer-g3tje1, .framer-NOpEn .framer-1oggtb0, .framer-NOpEn .framer-bx7xc1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-788iq3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-NOpEn .framer-2aqeat-container { aspect-ratio: 1.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); min-width: 110%; position: relative; width: 1920px; }\",\".framer-NOpEn .framer-16vog6a-container, .framer-NOpEn .framer-17610st-container, .framer-NOpEn .framer-q5k8ob-container, .framer-NOpEn .framer-1oqo7w8-container, .framer-NOpEn .framer-12okazc-container { height: 112px; position: relative; width: 200px; }\",\".framer-NOpEn .framer-15w0ia6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-NOpEn .framer-91ixg2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; width: 75%; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-b11ti7, .framer-NOpEn .framer-1nu12bz, .framer-NOpEn .framer-65hqrs { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; width: 60%; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-1fdtvyj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 6px; flex: none; position: absolute; right: 0px; top: 0px; white-space: pre-wrap; width: 57%; word-break: break-word; word-wrap: break-word; }\",\".framer-NOpEn .framer-1nqpvbq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-vynt0v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 50px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-kj7otg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-3xmm5k, .framer-NOpEn .framer-1xkynfe, .framer-NOpEn .framer-1ajglt7, .framer-NOpEn .framer-358x13 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-1a46qbe-container, .framer-NOpEn .framer-j9hm82-container, .framer-NOpEn .framer-lpul67-container, .framer-NOpEn .framer-1qrbt60-container, .framer-NOpEn .framer-1jiivz1-container, .framer-NOpEn .framer-z5t4wb-container, .framer-NOpEn .framer-1msnx50-container, .framer-NOpEn .framer-1vv36dm-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-NOpEn .framer-dx9xzk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 88px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-43umyc-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-3bgfzp, .framer-NOpEn .framer-5ydk8b, .framer-NOpEn .framer-16b9x3m, .framer-NOpEn .framer-1bexrmc, .framer-NOpEn .framer-e76fqs, .framer-NOpEn .framer-omsezb, .framer-NOpEn .framer-6gxxy8, .framer-NOpEn .framer-yqkzfk, .framer-NOpEn .framer-1ls3v4v, .framer-NOpEn .framer-kaeche { aspect-ratio: 2.9411764705882355 / 1; height: var(--framer-aspect-ratio-supported, 85px); overflow: visible; position: relative; width: 250px; }\",\".framer-NOpEn .framer-19epgwk { height: 85px; overflow: visible; position: relative; width: 150px; }\",\".framer-NOpEn .framer-ouwxhb { background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #03111c); display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(1px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1e095pq, .framer-NOpEn .framer-1lb8xx2, .framer-NOpEn .framer-kgtagc { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-hueisl, .framer-NOpEn .framer-4pj90c, .framer-NOpEn .framer-3fqvje { flex: none; height: 100%; left: 0px; opacity: 0.07; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-NOpEn .framer-3ghljp, .framer-NOpEn .framer-419hp3, .framer-NOpEn .framer-13eq8xr { flex: none; height: 100%; opacity: 0.7; overflow: visible; position: relative; width: 100%; }\",\".framer-NOpEn .framer-90i3pw { align-content: flex-start; align-items: flex-start; background-color: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, #03111c); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 70px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1sk1561 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 51px; height: min-content; justify-content: center; overflow: visible; padding: 64px 64px 0px 64px; position: relative; width: 100%; z-index: 2; }\",\".framer-NOpEn .framer-j0wedo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-fbu7oo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-1tfti7b { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 50px 0px 50px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-1ohgfjx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 598px; }\",\".framer-NOpEn .framer-1yf0ow0, .framer-NOpEn .framer-1p6pvoh, .framer-NOpEn .framer-1ck82wr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-NOpEn .framer-qtlv60, .framer-NOpEn .framer-13bun7o, .framer-NOpEn .framer-1mfxpam { --framer-input-background: var(--token-cd2934a7-4e35-4347-a32c-9650fca4db23, rgba(238, 235, 222, 0.05)); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-c5c4fdcb-9482-48bb-aedf-353188472aae, #eeebde); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: var(--token-797a2fb4-2d14-46eb-9fb6-f38c1a9a545e, rgba(238, 235, 222, 0.5)); flex: none; height: 60px; position: relative; width: 100%; }',\".framer-NOpEn .framer-1rv81ox-container { flex: none; height: 60px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-1vxzln8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-NOpEn .framer-s9bttw { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-NOpEn .framer-1jmhk5l-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-NOpEn .framer-1qnbfxl-container { flex: none; height: 104%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(40.504965896852966% - 104.2718678951777% / 2); width: 100%; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NOpEn.framer-15nfucz, .framer-NOpEn .framer-bm1cz1, .framer-NOpEn .framer-19qbztq, .framer-NOpEn .framer-1bzbpvq, .framer-NOpEn .framer-8p1btr, .framer-NOpEn .framer-ok8rf1, .framer-NOpEn .framer-1euqkab, .framer-NOpEn .framer-7venmo, .framer-NOpEn .framer-4oywgx, .framer-NOpEn .framer-a0e2vm, .framer-NOpEn .framer-ty6qoi, .framer-NOpEn .framer-dvhgsn, .framer-NOpEn .framer-1tt61of, .framer-NOpEn .framer-lbo2h, .framer-NOpEn .framer-1vlic4, .framer-NOpEn .framer-1e6svhj, .framer-NOpEn .framer-14u17fj, .framer-NOpEn .framer-wmekh6, .framer-NOpEn .framer-5ku2kf, .framer-NOpEn .framer-l4whbf, .framer-NOpEn .framer-gu0l41, .framer-NOpEn .framer-amp6ys, .framer-NOpEn .framer-1o522ew, .framer-NOpEn .framer-1vr2i0z, .framer-NOpEn .framer-788iq3, .framer-NOpEn .framer-15w0ia6, .framer-NOpEn .framer-1q3c2kd, .framer-NOpEn .framer-1nqpvbq, .framer-NOpEn .framer-vynt0v, .framer-NOpEn .framer-kj7otg, .framer-NOpEn .framer-3xmm5k, .framer-NOpEn .framer-1xkynfe, .framer-NOpEn .framer-dx9xzk, .framer-NOpEn .framer-1foomls, .framer-NOpEn .framer-1e095pq, .framer-NOpEn .framer-1lb8xx2, .framer-NOpEn .framer-kgtagc, .framer-NOpEn .framer-90i3pw, .framer-NOpEn .framer-1kxbcsb, .framer-NOpEn .framer-1sk1561, .framer-NOpEn .framer-j0wedo, .framer-NOpEn .framer-fbu7oo, .framer-NOpEn .framer-1tfti7b, .framer-NOpEn .framer-1ohgfjx, .framer-NOpEn .framer-1yf0ow0, .framer-NOpEn .framer-1p6pvoh, .framer-NOpEn .framer-1ck82wr, .framer-NOpEn .framer-1vxzln8, .framer-NOpEn .framer-s9bttw, .framer-NOpEn .framer-1ajglt7, .framer-NOpEn .framer-358x13 { gap: 0px; } .framer-NOpEn.framer-15nfucz > *, .framer-NOpEn .framer-bm1cz1 > *, .framer-NOpEn .framer-19qbztq > *, .framer-NOpEn .framer-15w0ia6 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NOpEn.framer-15nfucz > :first-child, .framer-NOpEn .framer-bm1cz1 > :first-child, .framer-NOpEn .framer-19qbztq > :first-child, .framer-NOpEn .framer-1bzbpvq > :first-child, .framer-NOpEn .framer-8p1btr > :first-child, .framer-NOpEn .framer-1euqkab > :first-child, .framer-NOpEn .framer-4oywgx > :first-child, .framer-NOpEn .framer-a0e2vm > :first-child, .framer-NOpEn .framer-ty6qoi > :first-child, .framer-NOpEn .framer-dvhgsn > :first-child, .framer-NOpEn .framer-lbo2h > :first-child, .framer-NOpEn .framer-1vlic4 > :first-child, .framer-NOpEn .framer-1e6svhj > :first-child, .framer-NOpEn .framer-wmekh6 > :first-child, .framer-NOpEn .framer-5ku2kf > :first-child, .framer-NOpEn .framer-gu0l41 > :first-child, .framer-NOpEn .framer-amp6ys > :first-child, .framer-NOpEn .framer-1vr2i0z > :first-child, .framer-NOpEn .framer-15w0ia6 > :first-child, .framer-NOpEn .framer-1nqpvbq > :first-child, .framer-NOpEn .framer-vynt0v > :first-child, .framer-NOpEn .framer-3xmm5k > :first-child, .framer-NOpEn .framer-1xkynfe > :first-child, .framer-NOpEn .framer-90i3pw > :first-child, .framer-NOpEn .framer-1sk1561 > :first-child, .framer-NOpEn .framer-1ohgfjx > :first-child, .framer-NOpEn .framer-1yf0ow0 > :first-child, .framer-NOpEn .framer-1p6pvoh > :first-child, .framer-NOpEn .framer-1ck82wr > :first-child, .framer-NOpEn .framer-s9bttw > :first-child, .framer-NOpEn .framer-1ajglt7 > :first-child, .framer-NOpEn .framer-358x13 > :first-child { margin-top: 0px; } .framer-NOpEn.framer-15nfucz > :last-child, .framer-NOpEn .framer-bm1cz1 > :last-child, .framer-NOpEn .framer-19qbztq > :last-child, .framer-NOpEn .framer-1bzbpvq > :last-child, .framer-NOpEn .framer-8p1btr > :last-child, .framer-NOpEn .framer-1euqkab > :last-child, .framer-NOpEn .framer-4oywgx > :last-child, .framer-NOpEn .framer-a0e2vm > :last-child, .framer-NOpEn .framer-ty6qoi > :last-child, .framer-NOpEn .framer-dvhgsn > :last-child, .framer-NOpEn .framer-lbo2h > :last-child, .framer-NOpEn .framer-1vlic4 > :last-child, .framer-NOpEn .framer-1e6svhj > :last-child, .framer-NOpEn .framer-wmekh6 > :last-child, .framer-NOpEn .framer-5ku2kf > :last-child, .framer-NOpEn .framer-gu0l41 > :last-child, .framer-NOpEn .framer-amp6ys > :last-child, .framer-NOpEn .framer-1vr2i0z > :last-child, .framer-NOpEn .framer-15w0ia6 > :last-child, .framer-NOpEn .framer-1nqpvbq > :last-child, .framer-NOpEn .framer-vynt0v > :last-child, .framer-NOpEn .framer-3xmm5k > :last-child, .framer-NOpEn .framer-1xkynfe > :last-child, .framer-NOpEn .framer-90i3pw > :last-child, .framer-NOpEn .framer-1sk1561 > :last-child, .framer-NOpEn .framer-1ohgfjx > :last-child, .framer-NOpEn .framer-1yf0ow0 > :last-child, .framer-NOpEn .framer-1p6pvoh > :last-child, .framer-NOpEn .framer-1ck82wr > :last-child, .framer-NOpEn .framer-s9bttw > :last-child, .framer-NOpEn .framer-1ajglt7 > :last-child, .framer-NOpEn .framer-358x13 > :last-child { margin-bottom: 0px; } .framer-NOpEn .framer-1bzbpvq > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-NOpEn .framer-8p1btr > *, .framer-NOpEn .framer-1vlic4 > *, .framer-NOpEn .framer-1e6svhj > *, .framer-NOpEn .framer-wmekh6 > *, .framer-NOpEn .framer-5ku2kf > *, .framer-NOpEn .framer-gu0l41 > *, .framer-NOpEn .framer-amp6ys > *, .framer-NOpEn .framer-3xmm5k > *, .framer-NOpEn .framer-1xkynfe > *, .framer-NOpEn .framer-1yf0ow0 > *, .framer-NOpEn .framer-1p6pvoh > *, .framer-NOpEn .framer-1ck82wr > *, .framer-NOpEn .framer-s9bttw > *, .framer-NOpEn .framer-1ajglt7 > *, .framer-NOpEn .framer-358x13 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NOpEn .framer-ok8rf1 > *, .framer-NOpEn .framer-1tt61of > *, .framer-NOpEn .framer-788iq3 > *, .framer-NOpEn .framer-1q3c2kd > *, .framer-NOpEn .framer-dx9xzk > *, .framer-NOpEn .framer-1foomls > *, .framer-NOpEn .framer-1e095pq > *, .framer-NOpEn .framer-1lb8xx2 > *, .framer-NOpEn .framer-kgtagc > *, .framer-NOpEn .framer-1kxbcsb > *, .framer-NOpEn .framer-j0wedo > *, .framer-NOpEn .framer-fbu7oo > *, .framer-NOpEn .framer-1tfti7b > *, .framer-NOpEn .framer-1vxzln8 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NOpEn .framer-ok8rf1 > :first-child, .framer-NOpEn .framer-7venmo > :first-child, .framer-NOpEn .framer-1tt61of > :first-child, .framer-NOpEn .framer-14u17fj > :first-child, .framer-NOpEn .framer-l4whbf > :first-child, .framer-NOpEn .framer-1o522ew > :first-child, .framer-NOpEn .framer-788iq3 > :first-child, .framer-NOpEn .framer-1q3c2kd > :first-child, .framer-NOpEn .framer-kj7otg > :first-child, .framer-NOpEn .framer-dx9xzk > :first-child, .framer-NOpEn .framer-1foomls > :first-child, .framer-NOpEn .framer-1e095pq > :first-child, .framer-NOpEn .framer-1lb8xx2 > :first-child, .framer-NOpEn .framer-kgtagc > :first-child, .framer-NOpEn .framer-1kxbcsb > :first-child, .framer-NOpEn .framer-j0wedo > :first-child, .framer-NOpEn .framer-fbu7oo > :first-child, .framer-NOpEn .framer-1tfti7b > :first-child, .framer-NOpEn .framer-1vxzln8 > :first-child { margin-left: 0px; } .framer-NOpEn .framer-ok8rf1 > :last-child, .framer-NOpEn .framer-7venmo > :last-child, .framer-NOpEn .framer-1tt61of > :last-child, .framer-NOpEn .framer-14u17fj > :last-child, .framer-NOpEn .framer-l4whbf > :last-child, .framer-NOpEn .framer-1o522ew > :last-child, .framer-NOpEn .framer-788iq3 > :last-child, .framer-NOpEn .framer-1q3c2kd > :last-child, .framer-NOpEn .framer-kj7otg > :last-child, .framer-NOpEn .framer-dx9xzk > :last-child, .framer-NOpEn .framer-1foomls > :last-child, .framer-NOpEn .framer-1e095pq > :last-child, .framer-NOpEn .framer-1lb8xx2 > :last-child, .framer-NOpEn .framer-kgtagc > :last-child, .framer-NOpEn .framer-1kxbcsb > :last-child, .framer-NOpEn .framer-j0wedo > :last-child, .framer-NOpEn .framer-fbu7oo > :last-child, .framer-NOpEn .framer-1tfti7b > :last-child, .framer-NOpEn .framer-1vxzln8 > :last-child { margin-right: 0px; } .framer-NOpEn .framer-1euqkab > *, .framer-NOpEn .framer-a0e2vm > *, .framer-NOpEn .framer-ty6qoi > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-NOpEn .framer-7venmo > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-NOpEn .framer-4oywgx > *, .framer-NOpEn .framer-vynt0v > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-NOpEn .framer-dvhgsn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-NOpEn .framer-lbo2h > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-NOpEn .framer-14u17fj > *, .framer-NOpEn .framer-l4whbf > *, .framer-NOpEn .framer-1o522ew > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-NOpEn .framer-1vr2i0z > * { margin: 0px; margin-bottom: calc(61px / 2); margin-top: calc(61px / 2); } .framer-NOpEn .framer-1nqpvbq > *, .framer-NOpEn .framer-90i3pw > *, .framer-NOpEn .framer-1ohgfjx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-NOpEn .framer-kj7otg > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-NOpEn .framer-1sk1561 > * { margin: 0px; margin-bottom: calc(51px / 2); margin-top: calc(51px / 2); } }\",`@media (min-width: 1600px) { .${metadata.bodyClassName}-framer-NOpEn { background: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255)); } .framer-NOpEn.framer-15nfucz { width: 1600px; } .framer-NOpEn .framer-1j7zs3f-container { left: 96px; right: 96px; top: 48px; transform: unset; width: unset; } .framer-NOpEn .framer-19qbztq, .framer-NOpEn .framer-1pzw1hq { order: 1; } .framer-NOpEn .framer-1euqkab { order: 2; padding: 128px 96px 80px 96px; } .framer-NOpEn .framer-ty6qoi { order: 3; } .framer-NOpEn .framer-dvhgsn { order: 4; } .framer-NOpEn .framer-qkjavq { order: 0; } .framer-NOpEn .framer-1vr2i0z { height: 2800px; order: 5; } .framer-NOpEn .framer-15w0ia6 { gap: 72px; height: 563px; order: 6; padding: 0px 96px 50px 96px; width: 1564px; } .framer-NOpEn .framer-1nqpvbq { order: 9; padding: 64px 64px 0px 64px; } .framer-NOpEn .framer-vynt0v { padding: 0px 0px 50px 0px; } .framer-NOpEn .framer-3xmm5k, .framer-NOpEn .framer-1xkynfe { align-content: center; align-items: center; } .framer-NOpEn .framer-ouwxhb { order: 8; } .framer-NOpEn .framer-1sk1561 { order: 10; } .framer-NOpEn .framer-1qnbfxl-container { height: 110%; top: calc(43.202448807262% - 109.6474561959046% / 2); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NOpEn .framer-15w0ia6 { gap: 0px; } .framer-NOpEn .framer-15w0ia6 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-NOpEn .framer-15w0ia6 > :first-child { margin-top: 0px; } .framer-NOpEn .framer-15w0ia6 > :last-child { margin-bottom: 0px; } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-NOpEn { background: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255)); } .framer-NOpEn.framer-15nfucz { width: 810px; } .framer-NOpEn .framer-1j7zs3f-container { left: 48px; right: 48px; top: 32px; transform: unset; width: unset; } .framer-NOpEn .framer-bm1cz1 { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; } .framer-NOpEn .framer-19qbztq { height: 75vh; order: 1; } .framer-NOpEn .framer-1euqkab { order: 2; } .framer-NOpEn .framer-7venmo { flex-direction: column; gap: 32px; } .framer-NOpEn .framer-4oywgx { align-self: unset; flex: none; height: min-content; width: 40%; } .framer-NOpEn .framer-1csk39n { white-space: pre; width: auto; } .framer-NOpEn .framer-a0e2vm, .framer-NOpEn .framer-cs0sl2 { flex: none; width: 100%; } .framer-NOpEn .framer-ty6qoi { order: 3; } .framer-NOpEn .framer-dvhgsn { order: 4; } .framer-NOpEn .framer-1vlic4, .framer-NOpEn .framer-wmekh6, .framer-NOpEn .framer-gu0l41 { gap: 32px; } .framer-NOpEn .framer-1vr2i0z { order: 5; } .framer-NOpEn .framer-2aqeat-container { width: 1600px; } .framer-NOpEn .framer-15w0ia6 { height: 364px; order: 6; width: 100%; } .framer-NOpEn .framer-1nqpvbq { gap: 0px; order: 7; padding: 0px 40px 0px 40px; } .framer-NOpEn .framer-vynt0v { padding: 0px 0px 25px 0px; } .framer-NOpEn .framer-ouwxhb { order: 9; } .framer-NOpEn .framer-90i3pw { gap: 18px; order: 8; padding: 0px 48px 64px 48px; } .framer-NOpEn .framer-1sk1561 { gap: 15px; order: 10; } .framer-NOpEn .framer-fbu7oo { flex-direction: column; } .framer-NOpEn .framer-1tfti7b { flex: none; flex-direction: column; width: 100%; } .framer-NOpEn .framer-1qnbfxl-container { height: 112%; top: calc(44.18750000000002% - 111.6125% / 2); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NOpEn .framer-7venmo, .framer-NOpEn .framer-1vlic4, .framer-NOpEn .framer-wmekh6, .framer-NOpEn .framer-gu0l41, .framer-NOpEn .framer-1nqpvbq, .framer-NOpEn .framer-90i3pw, .framer-NOpEn .framer-1sk1561, .framer-NOpEn .framer-fbu7oo, .framer-NOpEn .framer-1tfti7b { gap: 0px; } .framer-NOpEn .framer-7venmo > *, .framer-NOpEn .framer-1vlic4 > *, .framer-NOpEn .framer-wmekh6 > *, .framer-NOpEn .framer-gu0l41 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-NOpEn .framer-7venmo > :first-child, .framer-NOpEn .framer-1vlic4 > :first-child, .framer-NOpEn .framer-wmekh6 > :first-child, .framer-NOpEn .framer-gu0l41 > :first-child, .framer-NOpEn .framer-1nqpvbq > :first-child, .framer-NOpEn .framer-90i3pw > :first-child, .framer-NOpEn .framer-1sk1561 > :first-child, .framer-NOpEn .framer-fbu7oo > :first-child, .framer-NOpEn .framer-1tfti7b > :first-child { margin-top: 0px; } .framer-NOpEn .framer-7venmo > :last-child, .framer-NOpEn .framer-1vlic4 > :last-child, .framer-NOpEn .framer-wmekh6 > :last-child, .framer-NOpEn .framer-gu0l41 > :last-child, .framer-NOpEn .framer-1nqpvbq > :last-child, .framer-NOpEn .framer-90i3pw > :last-child, .framer-NOpEn .framer-1sk1561 > :last-child, .framer-NOpEn .framer-fbu7oo > :last-child, .framer-NOpEn .framer-1tfti7b > :last-child { margin-bottom: 0px; } .framer-NOpEn .framer-1nqpvbq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NOpEn .framer-90i3pw > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-NOpEn .framer-1sk1561 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-NOpEn .framer-fbu7oo > *, .framer-NOpEn .framer-1tfti7b > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-NOpEn { background: var(--token-4321a524-8651-4268-85f9-e884d8cb6223, rgb(255, 255, 255)); } .framer-NOpEn.framer-15nfucz { width: 390px; } .framer-NOpEn .framer-1j7zs3f-container { left: 32px; order: 3; right: 32px; top: 24px; transform: unset; width: unset; } .framer-NOpEn .framer-bm1cz1 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; order: 1; } .framer-NOpEn .framer-19qbztq { height: 75vh; order: 2; } .framer-NOpEn .framer-14iham3 { width: 70%; } .framer-NOpEn .framer-u0yld4 { width: 55%; } .framer-NOpEn .framer-ok8rf1, .framer-NOpEn .framer-dx9xzk { flex-direction: column; height: min-content; } .framer-NOpEn .framer-1euqkab { order: 3; padding: 30px; } .framer-NOpEn .framer-7venmo { flex-direction: column; gap: 100px; } .framer-NOpEn .framer-4oywgx { align-self: unset; flex: none; height: 1px; width: 100%; } .framer-NOpEn .framer-a0e2vm { flex: none; gap: 24px; width: 100%; } .framer-NOpEn .framer-ty6qoi { order: 4; } .framer-NOpEn .framer-dvhgsn { order: 5; padding: 50px 30px 50px 30px; } .framer-NOpEn .framer-1vlic4, .framer-NOpEn .framer-wmekh6, .framer-NOpEn .framer-gu0l41 { gap: 24px; } .framer-NOpEn .framer-14u17fj, .framer-NOpEn .framer-l4whbf, .framer-NOpEn .framer-1o522ew { flex-direction: column; gap: 0px; } .framer-NOpEn .framer-1cp628s, .framer-NOpEn .framer-60224l, .framer-NOpEn .framer-19vkidt, .framer-NOpEn .framer-pbx56d, .framer-NOpEn .framer-1k74597, .framer-NOpEn .framer-3xmm5k, .framer-NOpEn .framer-1xkynfe, .framer-NOpEn .framer-s9bttw, .framer-NOpEn .framer-1ajglt7, .framer-NOpEn .framer-358x13 { flex: none; width: 100%; } .framer-NOpEn .framer-1vr2i0z { gap: 31px; height: 1200px; order: 6; padding: 0px; } .framer-NOpEn .framer-2aqeat-container { width: 800px; } .framer-NOpEn .framer-1nqpvbq { gap: 32px; order: 8; padding: 0px 30px 30px 30px; } .framer-NOpEn .framer-vynt0v { padding: 0px; } .framer-NOpEn .framer-kj7otg, .framer-NOpEn .framer-j0wedo { flex-direction: column; } .framer-NOpEn .framer-1foomls { height: 100px; } .framer-NOpEn .framer-43umyc-container { height: 100%; } .framer-NOpEn .framer-ouwxhb { order: 9; } .framer-NOpEn .framer-1sk1561 { gap: 7px; justify-content: flex-start; order: 10; padding: 64px 64px 44px 64px; } .framer-NOpEn .framer-fbu7oo { flex: none; flex-direction: column; width: 100%; } .framer-NOpEn .framer-1tfti7b { flex: none; padding: 0px; width: 100%; } .framer-NOpEn .framer-1vxzln8 { flex-direction: column; gap: 43px; } .framer-NOpEn .framer-1jmhk5l-container { order: 2; } .framer-NOpEn .framer-1qnbfxl-container { height: 92%; order: 4; top: calc(34.48275862068968% - 92.16671191963074% / 2); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-NOpEn .framer-ok8rf1, .framer-NOpEn .framer-7venmo, .framer-NOpEn .framer-a0e2vm, .framer-NOpEn .framer-1vlic4, .framer-NOpEn .framer-14u17fj, .framer-NOpEn .framer-wmekh6, .framer-NOpEn .framer-l4whbf, .framer-NOpEn .framer-gu0l41, .framer-NOpEn .framer-1o522ew, .framer-NOpEn .framer-1vr2i0z, .framer-NOpEn .framer-1nqpvbq, .framer-NOpEn .framer-kj7otg, .framer-NOpEn .framer-dx9xzk, .framer-NOpEn .framer-1sk1561, .framer-NOpEn .framer-j0wedo, .framer-NOpEn .framer-fbu7oo, .framer-NOpEn .framer-1vxzln8 { gap: 0px; } .framer-NOpEn .framer-ok8rf1 > *, .framer-NOpEn .framer-dx9xzk > *, .framer-NOpEn .framer-j0wedo > *, .framer-NOpEn .framer-fbu7oo > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NOpEn .framer-ok8rf1 > :first-child, .framer-NOpEn .framer-7venmo > :first-child, .framer-NOpEn .framer-a0e2vm > :first-child, .framer-NOpEn .framer-1vlic4 > :first-child, .framer-NOpEn .framer-14u17fj > :first-child, .framer-NOpEn .framer-wmekh6 > :first-child, .framer-NOpEn .framer-l4whbf > :first-child, .framer-NOpEn .framer-gu0l41 > :first-child, .framer-NOpEn .framer-1o522ew > :first-child, .framer-NOpEn .framer-1vr2i0z > :first-child, .framer-NOpEn .framer-1nqpvbq > :first-child, .framer-NOpEn .framer-kj7otg > :first-child, .framer-NOpEn .framer-dx9xzk > :first-child, .framer-NOpEn .framer-1sk1561 > :first-child, .framer-NOpEn .framer-j0wedo > :first-child, .framer-NOpEn .framer-fbu7oo > :first-child, .framer-NOpEn .framer-1vxzln8 > :first-child { margin-top: 0px; } .framer-NOpEn .framer-ok8rf1 > :last-child, .framer-NOpEn .framer-7venmo > :last-child, .framer-NOpEn .framer-a0e2vm > :last-child, .framer-NOpEn .framer-1vlic4 > :last-child, .framer-NOpEn .framer-14u17fj > :last-child, .framer-NOpEn .framer-wmekh6 > :last-child, .framer-NOpEn .framer-l4whbf > :last-child, .framer-NOpEn .framer-gu0l41 > :last-child, .framer-NOpEn .framer-1o522ew > :last-child, .framer-NOpEn .framer-1vr2i0z > :last-child, .framer-NOpEn .framer-1nqpvbq > :last-child, .framer-NOpEn .framer-kj7otg > :last-child, .framer-NOpEn .framer-dx9xzk > :last-child, .framer-NOpEn .framer-1sk1561 > :last-child, .framer-NOpEn .framer-j0wedo > :last-child, .framer-NOpEn .framer-fbu7oo > :last-child, .framer-NOpEn .framer-1vxzln8 > :last-child { margin-bottom: 0px; } .framer-NOpEn .framer-7venmo > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-NOpEn .framer-a0e2vm > *, .framer-NOpEn .framer-1vlic4 > *, .framer-NOpEn .framer-wmekh6 > *, .framer-NOpEn .framer-gu0l41 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-NOpEn .framer-14u17fj > *, .framer-NOpEn .framer-l4whbf > *, .framer-NOpEn .framer-1o522ew > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-NOpEn .framer-1vr2i0z > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-NOpEn .framer-1nqpvbq > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-NOpEn .framer-kj7otg > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-NOpEn .framer-1sk1561 > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-NOpEn .framer-1vxzln8 > * { margin: 0px; margin-bottom: calc(43px / 2); margin-top: calc(43px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8357\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oSc1nZDP2\":{\"layout\":[\"fixed\",\"auto\"]},\"omjb777E0\":{\"layout\":[\"fixed\",\"auto\"]},\"O5HHoDMOp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerin25gp_8k=withCSS(Component,css,\"framer-NOpEn\");export default Framerin25gp_8k;Framerin25gp_8k.displayName=\"Film For Purpose\";Framerin25gp_8k.defaultProps={height:8357,width:1200};addFonts(Framerin25gp_8k,[{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:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BRQAKSEW34X5RMZXKNWSVNXMNXSLSG6X/DOBF42XRXCZ2WDWJNNFFNBHBHYFWLRQD/MVBFGLEMN2LQF4RKXAFO4YZFKXTEZ7FQ.woff2\",weight:\"300\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...HeaderFonts,...MenuFonts,...VideoFonts,...NoiseFonts,...ButtonFonts,...TickerFonts,...SlideshowFonts,...AccordionFonts,...ButtonFormsFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerin25gp_8k\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerIntrinsicHeight\":\"8357\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oSc1nZDP2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"omjb777E0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O5HHoDMOp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "i+CAA6C,IAAMA,GAAU,IAAI,OAAO,UAAW,SAAgB,SAASC,IAA0B,CAAC,GAAID,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAC1L,MAAM,mBAAyB,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,qBAA2B,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,yBAA0B,CAAQ,SAASE,IAA8B,CAAC,GAAIF,GAAU,EAAS,IAAG,OAAO,SAAS,OAAS,IAAa,MAAM,SAAe,GAAG,OAAO,SAAS,SAAW,IAAa,MAAM,WAAiB,GAAG,OAAO,SAAS,aAAe,IAAa,MAAM,eAAgB,CAAQ,SAASG,IAAqB,CAAC,GAAIH,GAAU,EAAS,MAAM,CAAC,SAASE,GAA6B,CAAC,CAAE,CAAQ,SAASE,IAAmB,CAAC,GAAG,CAACJ,GAAU,EAAE,OAAO,GAAK,CAACK,EAAUC,CAAY,EAAEC,EAASJ,GAAoB,CAAC,EAAQK,EAAmB,IAAIF,EAAaH,GAAoB,CAAC,EAAE,OAAAM,EAAU,IAAI,CAAC,IAAMC,EAAiBT,GAAyB,EAAE,gBAAS,iBAAiBS,EAAiBF,EAAmB,EAAK,EAAQ,IAAI,CAAC,SAAS,oBAAoBE,EAAiBF,CAAkB,CAAE,CAAE,CAAC,EAASH,CAAU,CCCx9B,IAAMM,GAAU,KAaE,SAARC,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,GAAa,cAAAC,EAAc,YAAAC,EAAY,WAAAC,EAAW,YAAAC,GAAY,gBAAAC,EAAgB,kBAAAC,EAAkB,aAAAC,EAAa,aAAAC,GAAa,gBAAAC,GAAgB,MAAAC,EAAK,EAAEtB,EAAW,CAAC,eAAAuB,EAAe,aAAAC,GAAa,cAAAC,GAAc,mBAAAC,GAAmB,aAAAC,EAAY,EAAEvB,EAAoB,CAAC,YAAAwB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,CAAS,EAAEhB,GAAiB,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,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,GAAsBsC,GAAajD,EAAe,GAAGC,OAAgBC,QAAkBC,OAAmBC,MAAgB,GAAGL,MAE16BmD,EAASC,GAAa,QAAQ,IAAIA,GAAa,OACtDC,EAAc7D,EAAM,OAAO,OAAO,EAAQ8D,GAAYC,GAAS,MAAMF,CAAa,EAAE,EAAQG,EAAa9D,IAAY,QAAQA,IAAY,QAAc+D,GAAW/D,IAAY,SAASA,IAAY,SAElM,GAAG,CAAC4D,GAAa,OAAoBI,EAAM,UAAU,CAAC,MAAMC,GAAkB,SAAS,CAAcC,EAAK,MAAM,CAAC,MAAMC,GAAY,SAAS,cAAI,CAAC,EAAeD,EAAK,IAAI,CAAC,MAAME,GAAY,SAAS,oBAAoB,CAAC,EAAeF,EAAK,IAAI,CAAC,MAAMG,GAAe,SAAS,oEAAoE,CAAC,CAAC,CAAC,CAAC,EAEzV,IAAMC,GAAUC,EAAO,IAAI,EAAQC,EAAYC,GAAQ,IAAYd,EAAc,IAAIe,GAAoBC,GAAU,CAAC,EAAI,CAAChB,CAAa,CAAC,EAAQiB,GAAWL,EAAO,MAAS,EAAO,CAACM,EAAKC,EAAO,EAAEC,EAAS,CAAC,OAAO,KAAK,SAAS,KAAK,KAAK,KAAK,UAAU,KAAK,WAAW,KAAK,eAAe,IAAI,CAAC,EAAiC,CAACC,GAAWC,EAAa,EAAEF,EAAS,EAAK,EAAO,CAACG,GAAkBC,EAAoB,EAAEJ,EAAS7E,CAAe,EAA+B,CAACkF,GAAYC,EAAc,EAAEN,EAAS,EAAK,EAA8B,CAACO,GAAWC,EAAa,EAAER,EAAS,EAAK,EAE9jBS,GAAc,CAAC,EAAMC,GAAY,EAAKhC,IAAUgC,GAAY,GAElE,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAG/B,IAAaU,GAAU,QAAQ,CAAC,IAAMsB,EAAMjC,EAAc,OAAO,EAAQkC,EAAa/B,EAAaQ,GAAU,QAAQ,YAAYA,GAAU,QAAQ,aAAmBwB,EAAMtB,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,EAAMzF,EAAU2F,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,EAAQ2B,GAAerC,EAAa,KAAK,IAAI,SAAS,gBAAgB,aAAa,EAAEsC,GAAO,YAAY,EAAE9B,GAAU,QAAQ,WAAW,EAAE,KAAK,IAAI,SAAS,gBAAgB,cAAc,EAAE8B,GAAO,aAAa,EAAE9B,GAAU,QAAQ,YAAY,EAAEQ,GAAQ,CAAC,OAAOe,EAAa,SAASE,GAAe,KAAKC,GAAS,UAAAC,GAAU,WAAAC,GAAW,eAAAC,EAAc,CAAC,EAAG,EAAE,CAACvC,EAAW,CAAC,EAAQyC,GAAgBV,GAAY,IAAI,CAACW,GAAK,KAAKZ,EAAO,CAAE,EAAE,CAACA,EAAO,CAAC,EAG7uCa,GAAgB,IAAI,CAAI3C,IAAYyC,GAAgB,CAAE,EAAE,CAACzC,GAAYhD,CAAU,CAAC,EAGhF,IAAI4F,GAAcjC,EAAO,EAAI,EAAEkC,EAAU,IAAYC,GAAOpC,GAAU,QAAQ,CAAC,CAAC,YAAAqC,CAAW,IAAI,CAAI,CAACH,GAAc,UAAUG,EAAY,OAAOA,EAAY,UAASN,GAAgB,EAAEd,GAAc,EAAI,GAAGiB,GAAc,QAAQ,EAAM,CAAC,EAAI,CAAC,CAAC,EAAEC,EAAU,IAAI,CAAC,GAAGnB,GAAW,CAAC,IAAMsB,EAAM,WAAW,IAAIrB,GAAc,EAAK,EAAE,GAAG,EAAE,MAAM,IAAI,aAAaqB,CAAK,EAAG,EAAE,CAACtB,EAAU,CAAC,EAEhX,IAAMuB,GAA+DlD,GAAc,OAAamD,GAAarD,EAAS,EAAoCoB,GAAK,SAAekC,GAA+ClC,GAAK,KAAMxE,EAAU2G,GAAWjH,EAAUgH,GAAiB,CAACE,EAAYC,EAAc,EAAEnC,EAAShF,EAAU8G,EAAU,EAAO,CAACM,GAAWC,EAAa,EAAErC,EAAS,EAAK,EAAyGsC,GAAUC,GAAkB,EAAQC,GAAOxD,GAAW,EAAE,GAA+CyD,GAAKC,GAAeX,EAAY,EAAuEY,GAAe5D,EAAa,CAAC/D,GAA8C8E,GAAK,UAAWxE,GAAK,CAACN,GAA8C8E,GAAK,WAAYxE,GAAsDsH,GAAY,IAAIJ,GAAON,EAAYF,GAAwIa,GAAcnE,EAA8H,EAArHoE,GAAaL,GAAKM,GAAO,CAAC,IAAMC,EAAQC,GAAK,CAAClB,GAAa,CAACA,GAAa,EAAEgB,CAAK,EAAE,OAAO,MAAMC,CAAO,EAAE,EAAEA,CAAQ,CAAC,EAAqEE,GAAaD,GAAK,EAAEnB,GAAWI,CAAW,EAAQiB,GAAqBF,GAAK,EAAE,CAACnB,GAAWI,CAAW,EAAqHV,GAAgB,IAAI,CAAuC1B,GAAK,WAAY,MAG3hD,CAAC2B,GAAc,SAASlB,IAAYkC,GAAK,IAAIG,GAAY,CAAC,CAAG,EAAE,CAAC9C,EAAKiC,GAAaS,GAAOP,GAAWC,EAAYF,GAAYzB,EAAU,CAAC,EAG3G,IAAM6C,GAAY,IAAI,CAAI1E,GAAU,CAACG,IAAa,CAACiB,EAAK,QAAQsC,KAAqBK,GAAK,IAAI,IAAIG,GAAY,GAAGS,GAAQZ,GAAKG,GAAY,EAAE5G,CAAiB,EAAMb,GAAiBgF,KAAmBN,GAAW,QAAQ,WAAW,IAAI,CAACsC,GAAeD,EAAY,CAAC,EAAEkB,GAAY,CAAE,EAAErH,EAAgB,GAAG,GAAG,EAAuCuH,GAASC,GAAO,CAAyDpB,GAApDnD,GAAmEkD,EAAYqB,EAApDrB,EAAYqB,CAA6C,CAAG,EAAQC,GAAQ7D,GAAO,CAAC,IAAM8D,EAAmBR,GAAK,EAAEnB,GAAWI,CAAW,EAAQwB,EAAyBT,GAAK,EAAE,CAACnB,GAAWI,CAAW,EAAQyB,EAAKhE,EAAM8D,EAAyBG,GAAajE,EAAM,KAAK,IAAI+D,CAAwB,EAAyDvB,GAAnDnD,GAAkEkD,EAAY0B,GAAnD1B,EAAYyB,CAAmD,CAAG,EAE3zBE,GAAgB,IAAI,CAACxB,GAAc,EAAI,CAAE,EAAQyB,GAAc,CAACC,EAAM,CAAC,OAAAC,EAAO,SAAAC,CAAQ,IAAI,CAAC5B,GAAc,EAAK,EAAE,IAAM6B,EAAWnF,EAAaiF,EAAO,EAAEA,EAAO,EAAQG,GAAkB,IAC9LC,GAAarF,EAAakF,EAAS,EAAEA,EAAS,EAAQI,GAAaH,EAAW,CAACpE,EAAK,KAAK,EAAQwE,GAAaJ,EAAWpE,EAAK,KAAK,EAA6DyE,GAAiB,KAAK,IAAIL,CAAU,EAAQM,GAAU,KAAK,MAAMD,GAAiBzE,EAAK,IAAI,EAAqF2E,GAAiBD,KAAY,EAAE,EAAEA,GAA0DJ,GAAaD,GAAmBb,GAAS,CAACmB,EAAgB,EAAWL,GAAa,CAACD,GAAmBb,GAASmB,EAAgB,GAA2EJ,IAAcf,GAASkB,EAAS,EAAMF,IAAchB,GAAS,CAACkB,EAAS,EAAI,EAAgE9C,EAAU,IAAI,CAAC,GAAG,GAACY,IAAW/B,IAAkB,OAAA6C,GAAY,EAAQ,IAAIvD,GAAW,SAAS,aAAaA,GAAW,OAAO,CAAE,EAAE,CAACY,GAAc6B,GAAU/B,EAAU,CAAC,EAA8D,IAAImE,GAAa,EAE5gCC,GAAiB,QAAQ,IAAI9I,QAAiBP,SAAWA,EAAIO,OAInE,QAAQ8D,EAAM,EAAEA,EAAMe,GAAYf,IAASc,GAAc,KAAK,GAAG3B,GAAS,IAAIF,EAAc,CAACgG,EAAMC,IAAa,CAAC,IAAIC,EAAI,OAAGD,IAAa,IAAGC,EAAIrF,EAAY,CAAC,GAAMoF,IAAajG,EAAc,OAAO,IAAGkG,EAAIrF,EAAY,CAAC,GAAuBN,EAAK4F,GAAM,CAAC,IAAItF,EAAYoF,CAAU,EAAE,SAASlF,EAAMkF,EAAW,KAAK,MAAMlF,EAAM,MAAMZ,GAAalD,EAAW,EAAE8I,GAAwB,OAAO,OAAQ5F,EAAkD,OAArClD,EAAW,EAAE8I,GAAiB,OAAc,KAAK7E,EAAK,MAAM8E,EAAM,YAAgEhG,GAAc,OAAO,aAAaiE,GAAa,aAAa6B,KAAe,IAAIpJ,EAAI,SAASoD,EAAS,aAAaK,EAAa,eAAe1C,EAAe,aAAaC,GAAa,cAAcC,GAAc,SAASoD,EAAMkF,CAAU,EAAElF,EAAMkF,EAAW,IAAI,CAAE,CAAC,CAAC,EAEhyB,IAAMG,GAAcjG,EAAa,WAAW,YAAkBkG,GAAerI,EAAU,EAAQsI,GAAa,IAAItI,EAAU,EAAQuI,GAAeC,GAAMvI,EAAU,EAAEoI,EAAc,EAAQI,GAAa,IAAIxI,EAAgByI,GAAS,mBAAmBN,qBAAgClI,MAAcqI,yBAAqCF,yBAAqCC,sBAAgCpI,MAAcuI,OAEtZE,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG1H,GAAiB,CAAC,QAAQ2H,EAAE,EAAEA,EAAuD7G,GAAc,OAAQ6G,IAAKF,GAAK,KAAkBpG,EAAKuG,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAM5H,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAYwH,GAAiB,gBAAgBtH,GAAkB,QAAQC,GAAY,QAAQ,IAAIiF,GAAQiC,CAAC,EAAE,aAAavC,GAAa,qBAAqBC,GAAqB,MAAMrB,GAAW,MAAM2D,EAAE,IAAItH,GAAQ,QAAQD,GAAY,aAAaa,EAAa,WAAWC,EAAU,EAAEyG,CAAC,CAAC,EAAMjH,GAAS,IAAGgH,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQhH,SAAgB,IAAMqH,GAAUzK,EAAY,CAAC,KAAK2D,EAAa,IAAI,IAAI,YAAY8E,GAAgB,UAAUC,GAAc,kBAAkB,GAAK,OAAO,CAAC,EAAErB,GAAK,EAAEA,EAAI,EAAE,aAAa,EAAK,EAAE,CAAC,EAAQqD,GAAYvI,IAAgB,YAAYA,IAAgB,WAAWA,IAAgB,YAAkBwI,GAAexI,IAAgB,eAAeA,IAAgB,cAAcA,IAAgB,eAAqByI,GAAazI,IAAgB,YAAYA,IAAgB,cAAoB0I,GAAc1I,IAAgB,aAAaA,IAAgB,eAAqB2I,GAAY3I,IAAgB,WAAWA,IAAgB,cAAcA,IAAgB,OAAO,OAAoB0B,EAAM,UAAU,CAAC,MAAM,CAAC,GAAGkH,GAAe,QAAQ1H,GAAa,gBAAgB/B,EAAY4I,GAAS,OAAU,aAAa5I,EAAY4I,GAAS,OAAU,UAAU5I,EAAY4I,GAAS,OAAU,QAA2CxF,GAAK,OAAQ,KAAK,EAAElF,GAAU,WAAW,MAAM,EAAE,aAAa,IAAI,CAACsF,GAAc,EAAI,EAAMzD,IAAa2D,GAAqB,EAAK,CAAE,EAAE,aAAa,IAAI,CAACF,GAAc,EAAK,EAAMzD,IAAa2D,GAAqB,EAAI,CAAE,EAAE,YAAY2D,GAAO,CACtyDA,EAAM,eAAe,EAAEzD,GAAe,EAAI,CAAE,EAAE,UAAU,IAAIA,GAAe,EAAK,EAAE,SAAS,CAAcnB,EAAK,MAAM,CAAC,MAAM,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,EAAE,QAAQ,UAAU,SAAS,WAAW,MAAM,EAAE,SAASxC,EAAS,UAAU,SAAS,aAAaT,GAAa,WAAW,OAAO,YAAYwC,EAAS,OAAOlC,EAAkB,EAAE,SAAsB2C,EAAKiH,EAAO,GAAG,CAAC,IAAI7G,GAAU,GAAGsG,GAAU,MAAM,CAAC,GAAGM,GAAe,IAAI7K,EAAI,WAAWD,EAAU,EAAE0D,EAAaL,EAASiE,GAAeE,GAAa,EAAE,EAAG9D,EAAkD,EAArCL,EAASiE,GAAeE,GAAe,cAAc9D,EAAa,MAAM,SAAS,eAAexC,KAAgB,GAAG,CAACmC,EAAS,cAAc,OAAU,OAAOtD,EAAYiF,GAAY,WAAW,OAAO,OAAO,WAAW,OAAO,GAAGjE,EAAK,EAAE,SAASqE,EAAa,CAAC,CAAC,CAAC,EAAexB,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGoH,EAAc,EAAE,aAAa,gCAAgC,UAAU,6BAA6B,SAAS,CAAcpH,EAAMmH,EAAO,IAAI,CAAC,MAAM,CAAC,SAAS,WAAW,QAAQ,OAAO,cAAcrH,EAAa,MAAM,SAAS,eAAe1B,GAAiB,gBAAgB,SAAS,IAAIA,GAAiB,QAAQI,GAAS,QAAQH,GAAkB1C,GAAU,EAAE,WAAW,SAAS,MAAM4C,GAAa,IAAIH,GAAiBG,GAAasI,GAAYpI,GAAgB,QAAQ,KAAKL,GAAiBG,GAAawI,GAAanI,GAAiBqI,GAAY,EAAE,QAAQ,MAAM7I,GAAiBG,GAAayI,GAActI,GAAkBuI,GAAY,EAAE,QAAQ,OAAO7I,GAAiBG,GAAauI,GAAenI,GAAmB,OAAO,EAAE,QAAQN,IAAmB,CAAC,QAAQ2C,GAAW,EAAErF,EAAS,EAAE,WAAWoB,EAAkB,SAAS,CAAcmD,EAAKiH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB1I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAIuG,GAAS,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBnE,EAAK,MAAM,CAAC,MAAMnC,GAAU,OAAOA,GAAU,IAAIG,IAAW,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,EAAegC,EAAKiH,EAAO,OAAO,CAAC,KAAK,SAAS,MAAM,CAAC,GAAGR,GAAiB,gBAAgB1I,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ8B,EAAgB,EAAH,GAAK,QAAQhC,GAAkB,QAAQ,OAAO,cAAc,MAAM,EAAE,QAAQ,IAAIuG,GAAS,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAsBnE,EAAK,MAAM,CAAC,MAAMnC,GAAU,OAAOA,GAAU,IAAII,IAAY,sEAAsE,IAAI,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmI,GAAK,OAAO,EAAepG,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGmH,GAAmB,KAAKvH,EAAa,MAAMf,GAAU,IAAKe,EAAmB,QAAN,MAAc,UAAUA,EAAa,mBAAmB,mBAAmB,cAAcA,EAAa,MAAM,SAAS,OAAOA,EAAaf,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,WAAW,OAAO,GAAGmH,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAyB1K,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,EAAyB0L,GAAoB1L,EAAU,CAAC,MAAM,CAAC,KAAK2L,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,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,wBAAwB,GAAK,aAAa3L,EAAU,aAAa,SAAS,EAAE,gBAAgB,CAAC,KAAK2L,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,OAAO1L,GAAO,CAACA,EAAM,eAAe,EAAE,YAAY,CAAC,KAAK0L,EAAY,QAAQ,MAAM,YAAY,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,aAAa3L,EAAU,aAAa,SAAS,EAAE,eAAe,CAAC,KAAK2L,EAAY,OAAO,MAAM,UAAU,SAAS,CAAC,eAAe,CAAC,KAAKA,EAAY,OAAO,MAAM,UAAU,aAAa3L,EAAU,aAAa,eAAe,eAAe,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,aAAa,CAAC,KAAK2L,EAAY,OAAO,MAAM,QAAQ,aAAa3L,EAAU,aAAa,eAAe,aAAa,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,eAAe,EAAI,EAAE,mBAAmB,CAAC,KAAK2L,EAAY,OAAO,MAAM,cAAc,aAAa3L,EAAU,aAAa,eAAe,mBAAmB,IAAI,IAAI,IAAI,IAAI,KAAK,CAAC,EAAE,cAAc,CAAC,KAAK2L,EAAY,OAAO,MAAM,SAAS,aAAa3L,EAAU,aAAa,eAAe,cAAc,IAAI,KAAK,IAAI,IAAI,KAAK,CAAC,EAAE,aAAa,CAAC,KAAK2L,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,QAAQ,aAAa3L,EAAU,aAAa,eAAe,YAAY,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK2L,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,aAAa3L,EAAU,aAAa,UAAU,EAAE,IAAI,CAAC,KAAK2L,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,aAAa,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,aAAa3L,EAAU,aAAa,kBAAkB,MAAM,YAAY,EAAE,YAAY,CAAC,KAAK2L,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,OAAO1L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAK0L,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO1L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK0L,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO1L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAK0L,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAO1L,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAK0L,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa3L,EAAU,aAAa,aAAa,iBAAiB,EAAE,UAAU,CAAC,KAAK2L,EAAY,MAAM,MAAM,OAAO,OAAO1L,GAAO,CAACA,EAAM,kBAAkB,aAAaD,EAAU,aAAa,aAAa,SAAS,EAAE,UAAU,CAAC,KAAK2L,EAAY,MAAM,MAAM,WAAW,OAAO1L,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK0L,EAAY,MAAM,MAAM,OAAO,OAAO1L,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK0L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa3L,EAAU,aAAa,aAAa,UAAU,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK0L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO1L,GAAO,CAACA,EAAM,iBAAiB,EAAE,kBAAkB,CAAC,KAAK0L,EAAY,QAAQ,MAAM,UAAU,aAAa,GAAM,OAAO1L,GAAO,CAACA,EAAM,iBAAiB,EAAE,iBAAiB,CAAC,KAAK0L,EAAY,QAAQ,MAAM,WAAW,aAAa,QAAQ,cAAc,QAAQ,aAAa3L,EAAU,aAAa,aAAa,iBAAiB,OAAOC,GAAO,CAACA,EAAM,iBAAiB,EAAE,cAAc,CAAC,KAAK0L,EAAY,KAAK,MAAM,WAAW,QAAQ,CAAC,OAAO,WAAW,UAAU,YAAY,cAAc,aAAa,cAAc,EAAE,aAAa,CAAC,SAAS,WAAW,aAAa,YAAY,cAAc,gBAAgB,cAAc,EAAE,OAAO1L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,EAAE,aAAa,CAAC,KAAK0L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,mBAAmB,CAACA,EAAM,gBAAgB,EAAE,gBAAgB,CAAC,KAAK0L,EAAY,OAAO,MAAM,MAAM,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,cAAcA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,cAAc,EAAE,mBAAmB,CAAC,KAAK0L,EAAY,OAAO,MAAM,SAAS,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAW,EAAE,kBAAkB,CAAC,KAAK0L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,YAAYA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,eAAeA,EAAM,gBAAgB,YAAY,EAAE,iBAAiB,CAAC,KAAK0L,EAAY,OAAO,MAAM,OAAO,IAAI,KAAK,IAAI,IAAI,aAAa,EAAE,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,kBAAkBA,EAAM,gBAAgB,QAAQA,EAAM,gBAAgB,aAAaA,EAAM,gBAAgB,WAAWA,EAAM,gBAAgB,gBAAgBA,EAAM,gBAAgB,YAAY,EAAE,SAAS,CAAC,KAAK0L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,mBAAmBA,EAAM,gBAAgB,CAAC,CAAC,EAAE,gBAAgB,CAAC,KAAK0L,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,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK0L,EAAY,OAAO,MAAM,QAAQ,IAAI,KAAK,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK0L,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK0L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK0L,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK0L,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK0L,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK0L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK0L,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK0L,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO1L,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,CAAC,CAAC,EAA0B,IAAMqL,GAAe,CAAC,QAAQ,OAAO,cAAc,MAAM,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAA8BjH,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,EAA4BsG,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,EAAgDjB,GAAM,CAACqB,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAA6B5B,GAAmB6B,GAAW,SAAmB9L,EAAMgK,EAAI,CAAC,IAAI+B,EAAaC,EAAc,GAAK,CAAC,SAAAC,EAAS,MAAAC,EAAM,OAAAC,EAAO,MAAArC,EAAM,KAAA9E,EAAK,IAAAxE,EAAI,aAAAuH,EAAa,YAAAqE,GAAY,aAAAxC,EAAa,SAAAhG,EAAS,QAAAyI,EAAQ,eAAA9K,GAAe,aAAAC,EAAa,cAAAC,EAAc,aAAAwC,EAAa,OAAAqI,GAAO,MAAAzH,EAAK,EAAE7E,EAErjauM,IAAgDvH,GAAK,KAAMxE,GAAKoJ,EAAmB4C,EAAY,CAAC,CAAoCxH,GAAK,KAAM,EAAqCA,GAAK,OAA2CA,GAAK,KAAMxE,EAAsCwE,GAAK,MAAM,EAAE,IAAIyH,GAAKA,EAAIF,EAAW,EAE1TG,GAAQ,CAAC9I,GAAUoE,GAAaD,EAAayE,EAAY,CAAC,CAAC/K,EAAc,EAAE,EAAEA,CAAa,CAAC,EAAQkL,GAAQ,CAAC/I,GAAUoE,GAAaD,EAAayE,EAAY,CAAC/K,EAAc,EAAE,EAAE,CAACA,CAAa,CAAC,EAAQmL,GAAQ,CAAChJ,GAAUoE,GAAaD,EAAayE,EAAY,CAACjL,GAAe,EAAE,EAAEA,EAAc,CAAC,EAAQsL,GAAM,CAACjJ,GAAUoE,GAAaD,EAAayE,EAAY,CAAChL,EAAa,EAAE,EAAEA,CAAY,CAAC,EAAQsL,EAAW,CAAClJ,GAAUoE,GAAaD,EAAayE,EAAY,CAAC,EAAE,EAAE,EAAE,CAAC,CAAC,EAAQhF,EAAU,CAAC5D,GAAUoE,GAAaD,EAAagF,GAAQA,GAAQP,EAAY,CAAC,GAAGO,GAAQP,EAAY,CAAC,CAAC,EAAE5F,EAAU,IAAI,CAAC,GAAIY,EAAiB,OAAOA,EAAU,SAASwF,GAAU,CAAC,IAAIC,GAAcA,EAAajD,EAAI,WAAW,MAAMiD,IAAe,QAAcA,EAAa,aAAa,cAAc,CAACD,CAAQ,CAAE,CAAC,CAAE,EAAE,CAAC,CAAC,EAAE,IAAME,EAAWtJ,EAAS,UAAUoE,GAAaD,EAAa,CAACyE,EAAY,CAAC,EAAExH,EAAK,eAAemI,GAAIX,EAAY,CAAC,EAAEA,EAAY,CAAC,EAAE,EAAE,EAAEA,EAAY,CAAC,EAAExH,EAAK,cAAc,EAAE,CAAC,SAAS,UAAU,QAAQ,CAAC,EAAE,OAAoBX,EAAK+I,GAAY,CAAC,QAAQ,KAAK,SAAsB/I,EAAK,KAAK,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,cAAcQ,KAAQ,EAAa,SAAsBwI,GAAavD,EAAM,CAAC,IAAIE,EAAI,IAAIiC,EAAS,QAAQ,MAAM,CAAC,IAAIF,EAAajC,EAAM,SAAS,MAAMiC,IAAe,OAAO,OAAOA,EAAa,MAAM,WAAW,EAAE,WAAW,OAAO,MAAAG,EAAM,OAAAC,EAAO,QAAQS,GAAQ,MAAMC,GAAM,QAAQ5I,EAAa6I,EAAW,GAAG,QAAS7I,EAAwB,GAAX6I,EAAc,QAAQ7I,EAAayI,GAAQ,EAAE,QAASzI,EAAqB,EAAR0I,GAAU,WAAAO,CAAU,EAAE,SAASpD,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAajF,GAAM,MAAS,GAAGmH,EAAclC,EAAM,SAAS,MAAMkC,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAE,SAASpB,GAAI,CAAC,gBAAA0C,EAAgB,QAAAV,EAAQ,MAAA7G,EAAM,MAAAlB,EAAM,aAAAuD,EAAa,qBAAAC,EAAqB,SAAAwC,EAAS,YAAA0C,EAAY,IAAA/M,EAAI,QAAAC,EAAQ,aAAAwD,EAAa,WAAAC,EAAW,GAAGlE,EAAK,EAAE,CAA8C,IAAIwN,EAAWpF,IAAevD,EAAuDX,IAAYsJ,EAAW,KAAK,IAAInF,CAAoB,IAAIxD,GAAO,IAAM4I,EAAcjN,EAAI,EAAMkN,EAAI,CAACzJ,GAAcY,EAAM,EAAE4I,EAAchN,EAAYkN,GAAO,CAAC1J,GAAcY,IAAQkB,EAAM,EAAE0H,EAAchN,EAAYmN,EAAM3J,GAAcY,IAAQkB,EAAM,EAAE0H,EAAchN,EAAYoN,EAAK5J,GAAcY,EAAM,EAAE4I,EAAchN,EAAQ,OAAoB4D,EAAK,SAAS,CAAC,aAAa,kBAAkBQ,EAAM,IAAI,KAAK,SAAS,GAAG7E,GAAM,MAAM,CAAC,GAAGuN,EAAY,QAAQ,GAAGG,OAASE,OAAWD,QAAYE,KAAQ,EAAE,SAAsBxJ,EAAKiH,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGT,CAAQ,EAAE,QAAQ,GAAM,QAAQ,CAAC,QAAQ2C,EAAWF,EAAgBV,CAAO,EAAE,WAAW,CAAC,SAAS,EAAE,CAAC,CAAC,CAAC,CAAC,CAAE,CAAiB,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,EC3Dr8E,IAAMiD,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,GAAK,QAAQ,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,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,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAmB,CAACC,EAAEC,IAAI,oBAAoBA,IAAUC,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,GAAS1B,EAAa2B,CAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,SAAS,YAAY,MAAM,YAAY,QAAQ,YAAY,QAAQ,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAAuB,CAACH,EAAM1B,IAAe0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAE0B,EAAM,iBAAwB1B,EAAS,KAAK,GAAG,EAAU8B,GAA6BC,GAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAApC,EAAQ,GAAGqC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,GAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,GAAW,SAAA/C,CAAQ,EAAEgD,GAAgB,CAAC,WAAArD,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQoD,EAAiBpB,GAAuBH,EAAM1B,CAAQ,EAAQkD,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQZ,IAAc,YAA6Ca,GAAa,IAAQb,IAAc,YAA6Cc,GAAsBC,GAAM,EAAQC,EAAsB,CAAanB,EAAS,EAAQoB,GAAkBC,GAAqB,EAAE,OAAoBxC,EAAKyC,GAAY,CAAC,GAAGrB,GAA4CgB,GAAgB,SAAsBpC,EAAKC,GAAS,CAAC,QAAQnB,EAAS,QAAQ,GAAM,SAAsBkB,EAAKT,GAAW,CAAC,MAAMN,GAAY,SAAsByD,EAAMnE,EAAO,OAAO,CAAC,GAAG8C,EAAU,GAAGI,GAAgB,UAAUkB,GAAGjE,GAAkB,GAAG4D,EAAsB,iBAAiBnB,EAAUI,CAAU,EAAE,mBAAmB,UAAU,aAAa,SAAS,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIjB,GAA6BkB,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,QAAQ,EAAE,GAAGd,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,gBAAgB,6EAA6E,EAAE,oBAAoB,CAAC,gBAAgB,6EAA6E,EAAE,UAAU,CAAC,QAAQ,EAAE,EAAE,UAAU,CAAC,gBAAgB,yBAAyB,CAAC,EAAE,GAAGtC,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,oBAAoB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,EAAE,UAAU,CAAC,mBAAmB,UAAU,EAAE,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,SAAS,CAAC,EAAE0C,EAAYI,CAAc,EAAE,SAAS,CAACQ,GAAY,GAAgBlC,EAAK4C,EAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,4FAA4F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,iBAAiBwD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oEAAoE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,kBAAkB,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnD,GAAqB,CAAC,UAAU,CAAC,SAAsBoB,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,4FAA4F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsByB,EAAWE,EAAS,CAAC,SAAsBF,EAAKzB,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,2CAA2C,qBAAqB,OAAO,uBAAuB,MAAM,sBAAsB,2CAA2C,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC,EAAE+C,EAAYI,CAAc,CAAC,CAAC,EAAES,GAAa,GAAgBnC,EAAKzB,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBwD,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,4LAA4L,KAAK,iHAAiH,WAAW,gHAAgH,EAAE,SAAsB/B,EAAK3B,GAAgB,CAAC,eAAec,GAAU,4BAA4B,GAAK,0BAA0B,EAAE,yBAAyB,OAAO,yBAAyBD,GAAY,gBAAgB,GAAM,mBAAmB,GAAK,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB6C,EAAiB,SAAS,YAAY,MAAM,CAAC,WAAW,gMAAgM,KAAK,OAAO,WAAW,MAAM,EAAE,SAAS,CAAC,UAAU,CAAC,KAAK,iHAAiH,WAAW,gHAAgH,CAAC,EAAE,SAAsB/B,EAAKzB,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBwD,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,qBAAqB,uBAAuB,EAAE,wBAAwB,EAAE,oBAAoB,EAAE,qBAAqB,CAAC,EAAE,kBAAkB3C,EAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyD,GAAI,CAAC,kFAAkF,kFAAkF,2QAA2Q,+JAA+J,4KAA4K,qIAAqI,+LAA+L,6WAA6W,4MAA4M,sEAAsE,GAAeA,EAAG,EAQn7SC,GAAgBC,GAAQnC,GAAUiC,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,WAAW,EAAE,aAAa,CAAC,UAAU,UAAU,WAAW,UAAU,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,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,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRl+C,IAAMC,GAAYC,EAASC,EAAM,EAAQC,GAAUF,EAASG,EAAI,EAAQC,GAAWJ,EAASK,EAAK,EAAQC,GAAWN,EAASO,EAAK,EAAQC,GAAgBC,GAAOC,EAAO,GAAG,EAAQC,GAAYX,EAASY,EAAM,EAAQC,GAAYb,EAASc,EAAM,EAAQC,GAAef,EAASgB,CAAS,EAAQC,GAAgBR,GAAOS,CAAS,EAAQC,GAAoBV,GAAOC,EAAO,OAAO,EAAQU,GAAepB,EAASqB,CAAS,EAAQC,GAAiBtB,EAASuB,EAAW,EAAQC,GAAYxB,EAASyB,EAAM,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,qBAAqB,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,iBAAiB,EAAQC,GAAQ,CAAC,CAAC,SAAAC,EAAS,uBAAAC,EAAuB,QAAAC,EAAQ,EAAI,IAAI,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAgB,CAAC,uBAAAJ,CAAsB,CAAC,EAAE,OAAOD,EAAS,CAAC,KAAK,IAAII,EAAW,EAAK,EAAE,KAAK,IAAIA,EAAW,EAAI,EAAE,OAAO,IAAIA,EAAW,CAACD,CAAO,EAAE,QAAQD,GAASC,CAAO,CAAC,CAAE,EAAQG,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,CAAC,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWD,EAAY,EAAE,IAAI,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,GAAG,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWH,EAAY,EAAE,EAAE,EAAE,GAAG,EAAQI,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,WAAWL,EAAY,EAAE,EAAE,EAAE,CAAC,EAAQM,GAAa,CAACC,EAAKC,EAASC,IAAiB,CAAC,OAAOF,EAAK,MAAM,CAAC,IAAI,UAAU,IAAIG,EAAkB,OAAOA,EAAkBF,EAAS,WAAW,MAAME,IAAoB,OAAOA,EAAkBD,EAAe,IAAI,UAAU,IAAIE,EAAkB,OAAOA,EAAkBH,EAAS,WAAW,MAAMG,IAAoB,OAAOA,EAAkBF,EAAe,IAAI,QAAQ,IAAIG,EAAgB,OAAOA,EAAgBJ,EAAS,SAAS,MAAMI,IAAkB,OAAOA,EAAgBH,EAAe,IAAI,aAAa,IAAII,EAAqB,OAAOA,EAAqBL,EAAS,cAAc,MAAMK,IAAuB,OAAOA,EAAqBJ,CAAe,CAAC,EAAQK,GAASA,GAAiB,EAAQC,GAAwB,CAAC,gBAAgB,YAAY,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,EAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,GAAI,EAAE,CAAC,OAAUV,CAAY,CAAC,EAAQW,GAAmB,IAAI,CAAC,IAAMF,EAAUrB,GAAiB,OAAUY,CAAY,EAAqC,GAAnC,SAAS,MAAMS,EAAU,OAAO,GAAMA,EAAU,SAAS,CAAC,IAAIG,GAAyBA,EAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,IAA0B,QAAcA,EAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,EAAQJ,EAAU,cAAc,GAAGI,EAAQ,CAAC,IAAMC,EAAK,SAAS,KAAKA,EAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,EAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,EAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,GAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQ5C,GAAY,EAAK,EAAQyD,EAAe,OAAe,CAAC,sBAAAC,GAAsB,MAAAC,CAAK,EAAEC,GAAyB,MAAS,EAAQC,EAAgB,CAAC,CAAC,QAAAC,EAAQ,eAAAC,CAAc,IAAIL,GAAsB,SAASM,IAAO,CAACF,EAAQ,OAAO,CAAE,CAAC,EAAQG,EAAWC,EAAO,IAAI,EAAQC,GAAOC,GAAU,EAAQC,EAAUC,GAAkB,WAAW,EAAQC,EAAWL,EAAO,IAAI,EAAQM,EAAY,IAASvE,GAAU,EAAiBqD,IAAc,YAAtB,GAAmEmB,GAAWH,GAAkB,WAAW,EAAQI,GAAWR,EAAO,IAAI,EAAQS,GAAa,IAAQ,CAAC1E,GAAU,GAAiBqD,IAAc,YAA6CsB,EAAWN,GAAkB,WAAW,EAAQO,GAAWX,EAAO,IAAI,EAAQY,GAAWR,GAAkB,WAAW,EAAQS,GAAWb,EAAO,IAAI,EAAQc,GAAsBC,GAAM,EAAQC,EAAsB,CAAaxC,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAAyC,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlF,EAAiB,EAAE,SAAsBmF,EAAMC,GAAY,CAAC,GAAG5C,GAA4CqC,GAAgB,SAAS,CAAcM,EAAMtG,EAAO,IAAI,CAAC,GAAG6D,EAAU,UAAU2C,GAAGtF,GAAkB,GAAGgF,EAAsB,iBAAiBxC,CAAS,EAAE,IAAIL,GAA6B4B,EAAK,MAAM,CAAC,GAAGxB,CAAK,EAAE,SAAS,CAAc2C,EAAKhF,GAAQ,CAAC,SAAS0D,GAAsBsB,EAAKK,GAAU,CAAC,SAAsBL,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,qBAAqB,EAAE,EAAE,EAAE,UAAU,CAAC,MAAM,sBAAsB,EAAE,EAAE,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,SAAS,EAAE,GAAG,SAAsBL,EAAM9F,EAAU,CAAC,UAAU,2BAA2B,GAAG,UAAU,aAAa,GAAK,SAAS,CAAc4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB8B,EAAK7G,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUsF,EAAgB,CAAC,QAAAC,CAAO,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,EAAesB,EAAKQ,GAAgB,CAAC,SAAS9B,EAAQ,SAAsBsB,EAAKK,GAAU,CAAC,SAA+BI,GAA0BP,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAKpG,EAAO,IAAI,CAAC,QAAQ,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,GAAG,EAAE,IAAI,GAAG,EAAE,KAAK,OAAO,CAAC,EAAE,UAAU,iBAAiB,wBAAwB,UAAU,KAAK,CAAC,QAAQ,EAAE,WAAW,CAAC,MAAM,EAAE,SAAS,EAAE,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,EAAE,MAAM,IAAI8E,EAAQ,KAAK,CAAC,EAAE,WAAW,EAAesB,EAAKO,EAA0B,CAAC,OAAO,IAAI,MAAM,QAAQ,EAAE,EAAE,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,wBAAwB,UAAU,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB8B,EAAK3G,GAAK,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,EAAE,SAAS,cAAc,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6G,EAAM,OAAO,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcA,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcA,EAAMxG,GAAgB,CAAC,yBAAyB,GAAK,iBAAiB,EAAE,mCAAmC,GAAK,gBAAgB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcsG,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKzG,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAK,QAAQ,sEAAsE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,EAAE,eAAe,EAAE,OAAO,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,0BAA0B,SAAsB4F,EAAKvG,GAAM,CAAC,eAAe,IAAI,aAAa,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,IAAI,QAAQyC,EAA0B,kBAAkB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,kBAAkB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,KAAK,UAAU,SAAS,UAAU,SAAS,MAAM,OAAO,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeX,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKc,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4Bf,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,EAAE,kBAAkB,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6C,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBf,EAAKlG,GAAO,CAAC,UAAU,GAAM,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUiH,EAAc,CAAC,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,iBAAiB,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,EAAE,kBAAkB,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKlG,GAAO,CAAC,UAAU,GAAK,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gDAAgD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekG,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,8LAA8L,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gPAAgP,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQyC,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQD,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeX,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKhG,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,GAAG,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,EAAE,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcgG,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,IAAI,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,KAAK,oBAAoB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,eAAe,mBAAmB,oBAAoB,KAAK,oBAAoB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+CAA+C,qBAAqB,OAAO,sBAAsB,SAAS,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,yBAAyB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,sBAAmCF,EAAK,KAAK,CAAC,CAAC,EAAE,gBAA6BA,EAAK,KAAK,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAcF,EAAK,OAAO,CAAC,MAAM,CAAC,qBAAqB,MAAM,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,iBAA8BA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,sBAAmCF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,iBAA8BA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,sBAAmCF,EAAK,KAAK,CAAC,CAAC,EAAE,qBAAkCA,EAAK,KAAK,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,sBAAmCF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,qBAAkCA,EAAK,KAAK,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,sBAAmCF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,qBAAkCA,EAAK,KAAK,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,kBAAkB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+CAA+C,qBAAqB,OAAO,sBAAsB,SAAS,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,yBAAyB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,WAAwBF,EAAK,KAAK,CAAC,CAAC,EAAE,wBAAqCA,EAAK,KAAK,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,WAAwBF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,wBAAqCA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,WAAwBF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,wBAAqCA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,sBAAsB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,eAA4BF,EAAK,KAAK,CAAC,CAAC,EAAE,iBAA8BA,EAAK,KAAK,CAAC,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,eAA4BF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,iBAA8BA,EAAK,KAAK,CAAC,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,eAA4BF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,iBAA8BA,EAAK,KAAK,CAAC,CAAC,EAAE,wBAAwB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,mCAAmC,uBAAuB,+CAA+C,qBAAqB,OAAO,sBAAsB,SAAS,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,uCAAuC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,yBAAyB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,SAAsBA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBR,EAAM,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,CAAC,kBAA+BF,EAAK,KAAK,CAAC,CAAC,EAAE,gCAA6CA,EAAK,KAAK,CAAC,CAAC,EAAE,kBAAkB,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,OAAO,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,sCAAmDF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,sCAAmDA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,iCAAiC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBR,EAAM,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,8EAA8E,0BAA0B,WAAW,EAAE,SAAS,CAAC,sCAAmDF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,sCAAmDA,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAsBA,EAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAE,iCAAiC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,SAAS,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,GAAGjB,EAAU,KAAK,SAAS,IAAIE,EAAK,SAAS,CAAca,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,sBAAsB,KAAK,sBAAsB,SAAsBA,EAAKO,EAA0B,CAAC,SAAsBP,EAAK7F,GAAgB,CAAC,iBAAiB,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,IAAIgF,EAAK,OAAO,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,iBAAiB,qCAAqC,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,SAAsBa,EAAK9F,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qBAAqB,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,IAAI,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAM,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,EAAE,MAAM,CAAc8F,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKzG,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,IAAI,iBAAiB,IAAI,kBAAkB,IAAI,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,IAAI,eAAe,IAAI,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKzG,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,IAAI,iBAAiB,IAAI,kBAAkB,IAAI,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,IAAI,eAAe,IAAI,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,0BAA0B,SAAsB4F,EAAKzG,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,IAAI,iBAAiB,IAAI,kBAAkB,IAAI,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,IAAI,eAAe,IAAI,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKzG,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,IAAI,iBAAiB,IAAI,kBAAkB,IAAI,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,uEAAuE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,IAAI,eAAe,IAAI,OAAO,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyG,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKzG,GAAM,CAAC,gBAAgB,mBAAmB,aAAa,IAAI,iBAAiB,IAAI,kBAAkB,IAAI,SAAS,GAAM,OAAO,OAAO,GAAG,YAAY,oBAAoB,GAAM,SAAS,YAAY,KAAK,GAAK,MAAM,GAAK,UAAU,QAAQ,QAAQ,GAAK,cAAc,GAAM,QAAQ,qEAAqE,QAAQ,SAAS,OAAO,oHAAoH,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,cAAc,IAAI,eAAe,IAAI,OAAO,GAAG,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,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6F,EAAY,GAAgBY,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsByE,EAAM7F,GAAoB,CAAC,UAAU,gCAAgC,mBAAmB,UAAU,GAAGgF,GAAW,KAAK,UAAU,IAAIC,GAAK,SAAS,CAAcU,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,kBAAkB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,YAAY,GAAK,WAAW,EAAE,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,aAAa,GAAG,WAAW,GAAG,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,GAAG,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,EAAK,CAAC,EAAE,UAAU,CAAC,eAAe,CAAC,aAAa,GAAM,eAAe,EAAE,mBAAmB,IAAI,cAAc,EAAE,aAAa,EAAE,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,EAAE,SAAS,EAAK,EAAE,IAAI,IAAI,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,aAAa,EAAE,WAAW,CAAC,CAAC,EAAE,SAAsB8B,EAAK9F,EAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,2BAA2B,SAAS,GAAG,aAAa,GAAG,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,IAAI,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,IAAI,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,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,CAAc8F,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,QAAQ,UAAU,MAAM,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,KAAK,SAAsBZ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,OAAO,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,qEAAqE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,QAAQ,UAAU,MAAM,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,KAAK,SAAsBZ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,MAAM,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,oDAAoD,CAAC,CAAC,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,OAAO,sBAAsB,6EAA6E,EAAE,SAAsBA,EAAK,KAAK,CAAC,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,QAAQ,UAAU,MAAM,MAAM,QAAQ,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,KAAK,SAAsBZ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,SAAS,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,4DAA4D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,QAAQ,UAAU,MAAM,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,KAAK,SAAsBZ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,uDAAuD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,UAAU,QAAQ,UAAU,MAAM,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,KAAK,KAAK,SAAsBZ,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,SAAS,CAAC,EAAeA,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAsBA,EAAK,SAAS,CAAC,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,QAAQ,YAAY,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,iBAAiB,KAAK,iBAAiB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBE,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBuE,EAAMxG,GAAgB,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcsG,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oDAA+C,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,2BAA2B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,gQAAgQ,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0NAA0N,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,gPAAgP,CAAC,CAAC,CAAC,EAAE,UAAU,wBAAwB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,0BAA0B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,gBAAgB,EAAE,UAAU,CAAC,UAAU,gBAAgB,EAAE,UAAU,CAAC,UAAU,wNAAwN,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,kNAAkN,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,0KAA0K,CAAC,CAAC,CAAC,EAAE,UAAU,0BAA0B,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,0BAA0B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,iMAAiM,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,yNAAyN,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,0PAA0P,CAAC,CAAC,CAAC,EAAE,UAAU,wBAAwB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,2BAA2B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,mMAAmM,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,0MAA0M,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,mNAAmN,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,2BAA2B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,iOAAiO,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2OAA2O,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,sOAAsO,CAAC,CAAC,CAAC,EAAE,UAAU,wBAAwB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,0BAA0B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,oNAAoN,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,8NAA8N,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,oNAAoN,CAAC,CAAC,CAAC,EAAE,UAAU,qBAAqB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,kBAAkB,CAAC,WAAW1C,CAAW,EAAE,sBAAsB,GAAM,gBAAgBI,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,CAAC,CAAC,EAAE,SAAsBmE,EAAK7F,GAAgB,CAAC,UAAU,2BAA2B,SAAsB6F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,6PAA6P,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gTAAgT,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,2QAA2Q,CAAC,CAAC,CAAC,EAAE,UAAU,qBAAqB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,qBAAqB,EAAE,iBAAiB,EAAE,UAAU,CAAC,MAAM,+BAA+B,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,gCAAgC,EAAE,OAAO,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU,2NAA2N,CAAC,EAAE,SAAsB8B,EAAKzF,EAAU,CAAC,UAAU,YAAY,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,uNAAuN,UAAuByF,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,SAAS,2NAA2N,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKc,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6BhB,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,EAAE,OAAO,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,0BAA0B,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU8C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhB,EAAKlG,GAAO,CAAC,UAAU,GAAM,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUkH,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,iBAAiB,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,EAAE,OAAO,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,0BAA0B,SAAsB4F,EAAKlG,GAAO,CAAC,UAAU,GAAK,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,gDAAgD,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekG,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAsBA,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,QAAQ,KAAK,QAAQ,SAAsB4F,EAAKhG,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,GAAG,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,KAAK,QAAQ,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcgG,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,KAAK,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,aAAa,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,UAAU,SAAS,UAAU,SAAS,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,KAAK,KAAK,IAAI,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,cAAc,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,iBAAiB,mBAAmB,qBAAqB,KAAK,oBAAoB,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,KAAK,KAAK,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,KAAK,SAAS,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,QAAQ,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,KAAK,KAAK,CAAC,EAAeZ,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,WAAW,CAAC,CAAC,EAAE,MAAM,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAM,UAAU,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQyC,EAA0B,iBAAiB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQD,EAA0B,iBAAiB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeX,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQyC,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQyC,EAA0B,iBAAiB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQD,EAA0B,iBAAiB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeX,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQyC,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQyC,EAA0B,iBAAiB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,IAAI,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQA,EAA0B,MAAM,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,UAAU,QAAQD,EAA0B,iBAAiB,EAAE,UAAU,SAAS,UAAU,SAAS,MAAM,sBAAsB,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,EAAeX,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQyC,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,sBAAsB,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,IAAI,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,sBAAsB,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQA,EAA0B,MAAM,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,sBAAsB,IAAI,uEAAuE,OAAO,2EAA2E,CAAC,CAAC,EAAE,SAAsBX,EAAKY,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,QAAQD,EAA0B,iBAAiB,EAAE,YAAY,IAAI,WAAW,IAAI,MAAM,sBAAsB,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEpB,GAAa,GAAgBW,EAAM,UAAU,CAAC,UAAU,4DAA4D,mBAAmB,iBAAiB,GAAGV,EAAW,KAAK,iBAAiB,IAAIC,GAAK,SAAS,CAAcO,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAS,CAAcF,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKlG,GAAO,CAAC,UAAU,GAAM,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wCAAwC,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekG,EAAKc,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASG,GAA6BjB,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+C,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBjB,EAAKlG,GAAO,CAAC,UAAU,GAAM,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUmH,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAef,EAAM,UAAU,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,GAAGR,GAAW,KAAK,UAAU,IAAIC,GAAK,SAAS,CAAcK,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBA,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,wBAAwB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsB8B,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,+DAA+D,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,+DAA+D,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKkB,GAAc,CAAC,OAAO,oFAAoF,UAAU,iBAAiB,SAASC,GAAwBjB,EAAMG,GAAU,CAAC,SAAS,CAAcL,EAAK,QAAQ,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoB,GAAmB,CAAC,UAAU,gBAAgB,UAAU,OAAO,YAAY,OAAO,SAAS,GAAK,KAAK,MAAM,CAAC,CAAC,CAAC,EAAepB,EAAK,QAAQ,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoB,GAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,YAAY,QAAQ,SAAS,GAAK,KAAK,OAAO,CAAC,CAAC,CAAC,EAAepB,EAAK,QAAQ,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoB,GAAmB,CAAC,UAAU,iBAAiB,UAAU,UAAU,YAAY,UAAU,KAAK,MAAM,CAAC,CAAC,CAAC,EAAepB,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,IAAI,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,GAAG,MAAM,QAAQ,EAAE,kBAAkB,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKvF,GAAY,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQqB,GAAaqF,EAAU,CAAC,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mBAAmB,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,QAAQ,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,qBAAqB,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,WAAW,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,YAAY,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBb,EAAWU,EAAS,CAAC,SAAsBV,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKa,EAAS,CAAC,sBAAsB,GAAK,SAAsBX,EAAYQ,EAAS,CAAC,SAAS,CAAcV,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,eAAe,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,EAAeA,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,kBAAkB,CAAC,EAAE,SAAsB8B,EAAKO,EAA0B,CAAC,OAAO,KAAK,MAAM,QAAQ,EAAE,kBAAkB,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKM,EAAkB,CAAC,WAAWpC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsB8B,EAAKrF,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,EAAeqF,EAAKO,EAA0B,CAAC,SAAsBP,EAAK5F,EAAU,CAAC,UAAU,2BAA2B,SAAsB4F,EAAKvG,GAAM,CAAC,eAAe,IAAI,aAAa,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,IAAI,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuG,EAAK,MAAM,CAAC,UAAUI,GAAGtF,GAAkB,GAAGgF,CAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQuB,GAAI,CAAC,kFAAkF,IAAI/E,GAAS,oHAAoH,gFAAgF,uVAAuV,mMAAmM,kNAAkN,wIAAwI,+ZAA+Z,iSAAiS,kHAAkH,4IAA4I,6LAA6L,8VAA8V,4LAA4L,gRAAgR,sfAAsf,oSAAoS,oTAAoT,8RAA8R,yRAAyR,8SAA8S,8RAA8R,sRAAsR,8MAA8M,oJAAoJ,mfAAmf,+RAA+R,2UAA2U,kRAAkR,8QAA8Q,wVAAwV,4UAA4U,uVAAuV,+TAA+T,6RAA6R,qcAAqc,0TAA0T,wMAAwM,kQAAkQ,wRAAwR,qQAAqQ,kUAAkU,sQAAsQ,2SAA2S,gRAAgR,uRAAuR,yXAAyX,ibAAib,qQAAqQ,2GAA2G,mcAAmc,uGAAuG,mYAAmY,4WAA4W,0MAA0M,4LAA4L,2WAA2W,4SAA4S,oRAAoR,kRAAkR,ySAAyS,8RAA8R,wUAAwU,6vCAA6vC,yGAAyG,yRAAyR,qRAAqR,qHAAqH,yNAAyN,y5RAAy5R,iCAAiCA,GAAS,0/CAA0/C,wDAAwDA,GAAS,+lHAA+lH,gCAAgCA,GAAS,k/LAAk/L,GAAe+E,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAS/5vIC,GAAgBC,GAAQxE,GAAUsE,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,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,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,IAAI,0GAA0G,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGrI,GAAY,GAAGG,GAAU,GAAGE,GAAW,GAAGE,GAAW,GAAGK,GAAY,GAAGE,GAAY,GAAGE,GAAe,GAAGK,GAAe,GAAGE,GAAiB,GAAGE,GAAY,GAAGgH,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACliJ,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,uBAAyB,GAAG,sBAAwB,OAAO,oCAAsC,oMAA0O,yBAA2B,OAAO,qBAAuB,OAAO,yBAA2B,QAAQ,6BAA+B,OAAO,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "OPACITY_0", "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", "filteredSlots", "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", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "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", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerHhXN31SUw", "withCSS", "HhXN31SUw_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeaderFonts", "getFonts", "lAx3n195J_default", "MenuFonts", "xwU_tGGW2_default", "VideoFonts", "Video", "NoiseFonts", "Noise", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "nEDMPIJV1_default", "TickerFonts", "Ticker", "SlideshowFonts", "Slideshow", "ContainerWithFX", "Container", "MotionSectionWithFX", "AccordionFonts", "yrbCq6tCB_default", "ButtonFormsFonts", "HhXN31SUw_default", "FooterFonts", "RwxZLcIgs_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation", "transition1", "animation1", "animation2", "animation3", "animation4", "animation5", "formVariants", "form", "variants", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "qO4N_Q_Fiwelu7j", "overlay", "paginationInfo", "args", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "isDisplayed", "elementId1", "ref3", "isDisplayed1", "elementId2", "ref4", "elementId3", "ref5", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "l", "PropertyOverrides2", "ComponentViewportProvider", "AnimatePresence", "Ga", "x", "getLoadingLazyAtYPosition", "Image2", "RichText2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "FormContainer", "formState", "FormPlainTextInput2", "css", "Framerin25gp_8k", "withCSS", "in25gp_8k_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
