{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/SVY5zNNF71WH6MCD6Ijf/DjXqj6oOx7E8tRaLPqIa/d4XazrHnm.js", "ssg:https://framerusercontent.com/modules/zTLS6usSjzTkhQCCW9jT/SFxd8BR58iVcvp9Bu2fn/e76oj3pIN.js", "ssg:https://framerusercontent.com/modules/WY25rF6NCICuP9Z9wpdi/xzSEgAcpTZe7MLlbn6lA/hYT8tqX6x.js", "ssg:https://framerusercontent.com/modules/YdeheKd42WBHO5cofpDg/6lRYSb3CJlK55eiurHNz/J1btpeHJ6.js", "ssg:https://framerusercontent.com/modules/THnibA31UgALGopYLeQx/olZjoTkUQXGwRBQsHz8T/l1xu53iCf.js", "ssg:https://framerusercontent.com/modules/jjsADFWjZXPR7ghgKIKJ/ob6oV4FVvn2bzkJ6Gisx/nCj57jLeH.js", "ssg:https://framerusercontent.com/modules/I6c5TL2R5lhTUf7fHAyV/qxupfqKnTfOdgdReGFps/NG_fnJ79s.js", "ssg:https://framerusercontent.com/modules/dfy1xER0yuVCWD9JMFGu/QEkBfQ6ao2LvCvs76KLE/OW8CWjuDk.js", "ssg:https://framerusercontent.com/modules/V2Dnb6iqrYwBzQxwj2PB/0wXzDs6F0FejnGPcScGX/pQmPJJolI.js", "ssg:https://framerusercontent.com/modules/Da49BdkYJVOOocd1RraO/3H2Udd7Npvuaug0FGU1r/Z32YiZysO.js", "ssg:https://framerusercontent.com/modules/kKAwwZtgtRuZKxdc7Wik/7uFut0eA91yPC8WJ6TWR/zr9mLjRGW.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},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:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&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,opacity}})});}function Placeholder(){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};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\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ 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\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"bN5wmXGbB\",\"OmqB6lDlM\",\"xthknIlfD\"];const serializationHash=\"framer-e7dwf\";const variantClassNames={bN5wmXGbB:\"framer-v-wvsuvr\",OmqB6lDlM:\"framer-v-12ajzc8\",xthknIlfD:\"framer-v-i3p0ql\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"bN5wmXGbB\",\"Variant 2\":\"OmqB6lDlM\",\"Variant 3\":\"xthknIlfD\"};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:\"bN5wmXGbB\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bN5wmXGbB\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-wvsuvr\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bN5wmXGbB\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({OmqB6lDlM:{\"data-framer-name\":\"Variant 2\"},xthknIlfD:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i0ca23\",layoutDependency:layoutDependency,layoutId:\"lut_8z9tC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"DRY STONE\"})}),className:\"framer-17iu4by\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EXDOs_BRQ\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1axw2ff-container\",layoutDependency:layoutDependency,layoutId:\"YfWRHnhDf-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"YfWRHnhDf\",layoutId:\"YfWRHnhDf\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/a2gT6wVK076ugbsTHmagSCRtry0.jpeg\",srcSet:\"https://framerusercontent.com/images/a2gT6wVK076ugbsTHmagSCRtry0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/a2gT6wVK076ugbsTHmagSCRtry0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/a2gT6wVK076ugbsTHmagSCRtry0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/a2gT6wVK076ugbsTHmagSCRtry0.jpeg 2592w\"},className:\"framer-8sseyd\",layoutDependency:layoutDependency,layoutId:\"aU3zzcvcY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1529,pixelWidth:2730,sizes:\"467px\",src:\"https://framerusercontent.com/images/mKzo2u8CQ6OQEbmGHaGvdOIS8.jpeg\",srcSet:\"https://framerusercontent.com/images/mKzo2u8CQ6OQEbmGHaGvdOIS8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mKzo2u8CQ6OQEbmGHaGvdOIS8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mKzo2u8CQ6OQEbmGHaGvdOIS8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mKzo2u8CQ6OQEbmGHaGvdOIS8.jpeg 2730w\"},className:\"framer-t5kylx\",layoutDependency:layoutDependency,layoutId:\"pKHoKtTju\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3787,pixelWidth:3456,sizes:\"250px\",src:\"https://framerusercontent.com/images/qgHyy0r6NoLQUZXAWtmBQLU4bM.jpeg\",srcSet:\"https://framerusercontent.com/images/qgHyy0r6NoLQUZXAWtmBQLU4bM.jpeg?scale-down-to=1024 934w,https://framerusercontent.com/images/qgHyy0r6NoLQUZXAWtmBQLU4bM.jpeg?scale-down-to=2048 1868w,https://framerusercontent.com/images/qgHyy0r6NoLQUZXAWtmBQLU4bM.jpeg 3456w\"},className:\"framer-sg8zgw\",layoutDependency:layoutDependency,layoutId:\"uWhoYwTJP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/gFP9Cs4rYlButNu06YV0srB4Iag.jpeg\",srcSet:\"https://framerusercontent.com/images/gFP9Cs4rYlButNu06YV0srB4Iag.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gFP9Cs4rYlButNu06YV0srB4Iag.jpeg 1024w\"},className:\"framer-oh4buq\",layoutDependency:layoutDependency,layoutId:\"NULDGBbU1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/RqQMYr89HR7GrXhcwQjvafWQ.jpeg\",srcSet:\"https://framerusercontent.com/images/RqQMYr89HR7GrXhcwQjvafWQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RqQMYr89HR7GrXhcwQjvafWQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RqQMYr89HR7GrXhcwQjvafWQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RqQMYr89HR7GrXhcwQjvafWQ.jpeg 4032w\"},className:\"framer-uw333m\",layoutDependency:layoutDependency,layoutId:\"JTXqZgYv2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:682,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/Hd7OsWcU02WmaLkDyWDWmuwEts.jpeg\",srcSet:\"https://framerusercontent.com/images/Hd7OsWcU02WmaLkDyWDWmuwEts.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Hd7OsWcU02WmaLkDyWDWmuwEts.jpeg 1024w\"},className:\"framer-1a4i1vl\",layoutDependency:layoutDependency,layoutId:\"zrtSKDFqd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:662,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/6PGDQN0uuJy5Va4BwwczdQKDfaY.jpeg\",srcSet:\"https://framerusercontent.com/images/6PGDQN0uuJy5Va4BwwczdQKDfaY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/6PGDQN0uuJy5Va4BwwczdQKDfaY.jpeg 1024w\"},className:\"framer-t0q4v9\",layoutDependency:layoutDependency,layoutId:\"UUxi7zM4k\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/ycoIOjjgK1WOcvt73CFUU88.jpeg\",srcSet:\"https://framerusercontent.com/images/ycoIOjjgK1WOcvt73CFUU88.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ycoIOjjgK1WOcvt73CFUU88.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ycoIOjjgK1WOcvt73CFUU88.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ycoIOjjgK1WOcvt73CFUU88.jpeg 2592w\"},className:\"framer-pmbwlq\",layoutDependency:layoutDependency,layoutId:\"HusKwBgEO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/yLWA3FChIL742vrypkSsqEUez4.jpeg\",srcSet:\"https://framerusercontent.com/images/yLWA3FChIL742vrypkSsqEUez4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/yLWA3FChIL742vrypkSsqEUez4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yLWA3FChIL742vrypkSsqEUez4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/yLWA3FChIL742vrypkSsqEUez4.jpeg 4032w\"},className:\"framer-1gbnvfc\",layoutDependency:layoutDependency,layoutId:\"UqzwO8__4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/KQoc9cGkjCiLp089mgS0RUTJJ3M.jpeg\",srcSet:\"https://framerusercontent.com/images/KQoc9cGkjCiLp089mgS0RUTJJ3M.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KQoc9cGkjCiLp089mgS0RUTJJ3M.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KQoc9cGkjCiLp089mgS0RUTJJ3M.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KQoc9cGkjCiLp089mgS0RUTJJ3M.jpeg 2592w\"},className:\"framer-c2cx2d\",layoutDependency:layoutDependency,layoutId:\"bw_w7tSav\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:684,pixelWidth:1018,sizes:\"467px\",src:\"https://framerusercontent.com/images/dLOIFZ2ywQodomspvaM6EYVZB5I.jpeg\",srcSet:\"https://framerusercontent.com/images/dLOIFZ2ywQodomspvaM6EYVZB5I.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dLOIFZ2ywQodomspvaM6EYVZB5I.jpeg 1018w\"},className:\"framer-2on6xq\",layoutDependency:layoutDependency,layoutId:\"vHKJ4ZXcy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/2kMq1wibifVH0hFcJzjMU7Y5H8.jpeg\",srcSet:\"https://framerusercontent.com/images/2kMq1wibifVH0hFcJzjMU7Y5H8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2kMq1wibifVH0hFcJzjMU7Y5H8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2kMq1wibifVH0hFcJzjMU7Y5H8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2kMq1wibifVH0hFcJzjMU7Y5H8.jpeg 2592w\"},className:\"framer-q9ubmn\",layoutDependency:layoutDependency,layoutId:\"UHRd22QK_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/h6kHHTbRAayaykLOphIM6l60piA.jpeg\",srcSet:\"https://framerusercontent.com/images/h6kHHTbRAayaykLOphIM6l60piA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/h6kHHTbRAayaykLOphIM6l60piA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/h6kHHTbRAayaykLOphIM6l60piA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/h6kHHTbRAayaykLOphIM6l60piA.jpeg 2592w\"},className:\"framer-18ifx4w\",layoutDependency:layoutDependency,layoutId:\"vYv9u2073\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/IaW9T9gEsqsPVqNXVQInQ2CnLuI.jpeg\",srcSet:\"https://framerusercontent.com/images/IaW9T9gEsqsPVqNXVQInQ2CnLuI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/IaW9T9gEsqsPVqNXVQInQ2CnLuI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/IaW9T9gEsqsPVqNXVQInQ2CnLuI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/IaW9T9gEsqsPVqNXVQInQ2CnLuI.jpeg 2592w\"},className:\"framer-o3oinm\",layoutDependency:layoutDependency,layoutId:\"m7WJKaqJp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/2XL4tAL7mZvonWRr0uQzd0ODLs.jpeg\",srcSet:\"https://framerusercontent.com/images/2XL4tAL7mZvonWRr0uQzd0ODLs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2XL4tAL7mZvonWRr0uQzd0ODLs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2XL4tAL7mZvonWRr0uQzd0ODLs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2XL4tAL7mZvonWRr0uQzd0ODLs.jpeg 2592w\"},className:\"framer-6jqcf1\",layoutDependency:layoutDependency,layoutId:\"f0GVNpG9r\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/VQKEGDOLwGxOqnreIIZAqHc0hU.jpeg\",srcSet:\"https://framerusercontent.com/images/VQKEGDOLwGxOqnreIIZAqHc0hU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/VQKEGDOLwGxOqnreIIZAqHc0hU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VQKEGDOLwGxOqnreIIZAqHc0hU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VQKEGDOLwGxOqnreIIZAqHc0hU.jpeg 2592w\"},className:\"framer-154bopo\",layoutDependency:layoutDependency,layoutId:\"r0BmDZnhv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:\"467px\",src:\"https://framerusercontent.com/images/PJU7om5GJCiC2Fz6QJQ81jjmY.jpeg\",srcSet:\"https://framerusercontent.com/images/PJU7om5GJCiC2Fz6QJQ81jjmY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PJU7om5GJCiC2Fz6QJQ81jjmY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PJU7om5GJCiC2Fz6QJQ81jjmY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PJU7om5GJCiC2Fz6QJQ81jjmY.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/PJU7om5GJCiC2Fz6QJQ81jjmY.jpeg 6000w\"},className:\"framer-1a0c1bg\",layoutDependency:layoutDependency,layoutId:\"LAtEXKahV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4e3,pixelWidth:6e3,sizes:\"467px\",src:\"https://framerusercontent.com/images/8Z3WssCdR3dSr6OrOqkG4KXwE.jpeg\",srcSet:\"https://framerusercontent.com/images/8Z3WssCdR3dSr6OrOqkG4KXwE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8Z3WssCdR3dSr6OrOqkG4KXwE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8Z3WssCdR3dSr6OrOqkG4KXwE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8Z3WssCdR3dSr6OrOqkG4KXwE.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/8Z3WssCdR3dSr6OrOqkG4KXwE.jpeg 6000w\"},className:\"framer-1wttj9x\",layoutDependency:layoutDependency,layoutId:\"LTxortQ_V\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/MY3y2QB4G015z1KXMoNgIi7dkfI.jpeg\",srcSet:\"https://framerusercontent.com/images/MY3y2QB4G015z1KXMoNgIi7dkfI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MY3y2QB4G015z1KXMoNgIi7dkfI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MY3y2QB4G015z1KXMoNgIi7dkfI.jpeg 2048w\"},className:\"framer-1s5n5bn\",layoutDependency:layoutDependency,layoutId:\"GnnxJ0AMi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:3872,sizes:\"467px\",src:\"https://framerusercontent.com/images/fYuIZfpMTXNo0QaszvIV7ocev4.jpeg\",srcSet:\"https://framerusercontent.com/images/fYuIZfpMTXNo0QaszvIV7ocev4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fYuIZfpMTXNo0QaszvIV7ocev4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fYuIZfpMTXNo0QaszvIV7ocev4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fYuIZfpMTXNo0QaszvIV7ocev4.jpeg 3872w\"},className:\"framer-o8uche\",layoutDependency:layoutDependency,layoutId:\"avpXCU2TK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/Ej79P8ZcDtf5r0Rb40AOjIQk9AQ.jpeg\",srcSet:\"https://framerusercontent.com/images/Ej79P8ZcDtf5r0Rb40AOjIQk9AQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Ej79P8ZcDtf5r0Rb40AOjIQk9AQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ej79P8ZcDtf5r0Rb40AOjIQk9AQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ej79P8ZcDtf5r0Rb40AOjIQk9AQ.jpeg 4032w\"},className:\"framer-19l6cbl\",layoutDependency:layoutDependency,layoutId:\"N_a109MtJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/R2tUZRrsfSKDQbPM3YxgP15mHgw.jpeg\",srcSet:\"https://framerusercontent.com/images/R2tUZRrsfSKDQbPM3YxgP15mHgw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/R2tUZRrsfSKDQbPM3YxgP15mHgw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/R2tUZRrsfSKDQbPM3YxgP15mHgw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/R2tUZRrsfSKDQbPM3YxgP15mHgw.jpeg 4032w\"},className:\"framer-1fwnepz\",layoutDependency:layoutDependency,layoutId:\"Hj6EkF9OB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/LR2HaZCCw6J0sftLAOnIymVhqV8.jpeg\",srcSet:\"https://framerusercontent.com/images/LR2HaZCCw6J0sftLAOnIymVhqV8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/LR2HaZCCw6J0sftLAOnIymVhqV8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LR2HaZCCw6J0sftLAOnIymVhqV8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/LR2HaZCCw6J0sftLAOnIymVhqV8.jpeg 4032w\"},className:\"framer-78h61n\",layoutDependency:layoutDependency,layoutId:\"pqhqzY6Xz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/CURSolMQgEOt2hNeYOCjEGFjHA.jpeg\",srcSet:\"https://framerusercontent.com/images/CURSolMQgEOt2hNeYOCjEGFjHA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/CURSolMQgEOt2hNeYOCjEGFjHA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CURSolMQgEOt2hNeYOCjEGFjHA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CURSolMQgEOt2hNeYOCjEGFjHA.jpeg 4032w\"},className:\"framer-wx0mn2\",layoutDependency:layoutDependency,layoutId:\"Vpgtbq5Zu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/SZotviu9jROAz6sGsnLqDrqDwfE.jpeg\",srcSet:\"https://framerusercontent.com/images/SZotviu9jROAz6sGsnLqDrqDwfE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/SZotviu9jROAz6sGsnLqDrqDwfE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SZotviu9jROAz6sGsnLqDrqDwfE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/SZotviu9jROAz6sGsnLqDrqDwfE.jpeg 4032w\"},className:\"framer-1wpbiu5\",layoutDependency:layoutDependency,layoutId:\"FHtlcUrjO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/NZJ3u8Bvr8nhL8XKGgRR9NYJySI.jpeg\",srcSet:\"https://framerusercontent.com/images/NZJ3u8Bvr8nhL8XKGgRR9NYJySI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/NZJ3u8Bvr8nhL8XKGgRR9NYJySI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NZJ3u8Bvr8nhL8XKGgRR9NYJySI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/NZJ3u8Bvr8nhL8XKGgRR9NYJySI.jpeg 4032w\"},className:\"framer-18qul38\",layoutDependency:layoutDependency,layoutId:\"rBSquzXtq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/3BWeAG35TQ5PT9xIybxC2hVcLIs.jpeg\",srcSet:\"https://framerusercontent.com/images/3BWeAG35TQ5PT9xIybxC2hVcLIs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3BWeAG35TQ5PT9xIybxC2hVcLIs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3BWeAG35TQ5PT9xIybxC2hVcLIs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3BWeAG35TQ5PT9xIybxC2hVcLIs.jpeg 4032w\"},className:\"framer-1p77p6k\",layoutDependency:layoutDependency,layoutId:\"vAsgSFIwv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/qe1PyUOIRpmrGRjFbHjDVFE6dOk.jpeg\",srcSet:\"https://framerusercontent.com/images/qe1PyUOIRpmrGRjFbHjDVFE6dOk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/qe1PyUOIRpmrGRjFbHjDVFE6dOk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qe1PyUOIRpmrGRjFbHjDVFE6dOk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qe1PyUOIRpmrGRjFbHjDVFE6dOk.jpeg 4032w\"},className:\"framer-19jb4pu\",layoutDependency:layoutDependency,layoutId:\"udhKok6FA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1993,pixelWidth:2730,sizes:\"467px\",src:\"https://framerusercontent.com/images/vtGTgeKAY83ldLD9VpsIMQm4bE.jpeg\",srcSet:\"https://framerusercontent.com/images/vtGTgeKAY83ldLD9VpsIMQm4bE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vtGTgeKAY83ldLD9VpsIMQm4bE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vtGTgeKAY83ldLD9VpsIMQm4bE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vtGTgeKAY83ldLD9VpsIMQm4bE.jpeg 2730w\"},className:\"framer-a9kgxv\",layoutDependency:layoutDependency,layoutId:\"qpEO7aiYO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2404,pixelWidth:3811,sizes:\"467px\",src:\"https://framerusercontent.com/images/ofAUenGjqsl46YG6AX5TX8Rcg.jpeg\",srcSet:\"https://framerusercontent.com/images/ofAUenGjqsl46YG6AX5TX8Rcg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ofAUenGjqsl46YG6AX5TX8Rcg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ofAUenGjqsl46YG6AX5TX8Rcg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ofAUenGjqsl46YG6AX5TX8Rcg.jpeg 3811w\"},className:\"framer-dpch2v\",layoutDependency:layoutDependency,layoutId:\"QEHFWohpE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/J6FRObsxPvb9PAMkSFRV8yfLA.jpeg\",srcSet:\"https://framerusercontent.com/images/J6FRObsxPvb9PAMkSFRV8yfLA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/J6FRObsxPvb9PAMkSFRV8yfLA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/J6FRObsxPvb9PAMkSFRV8yfLA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/J6FRObsxPvb9PAMkSFRV8yfLA.jpeg 4032w\"},className:\"framer-16gelnc\",layoutDependency:layoutDependency,layoutId:\"cA3NTIr23\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1822,pixelWidth:2731,sizes:\"467px\",src:\"https://framerusercontent.com/images/dlAAZWJpU36pzdjuYfOEREEqZwc.jpeg\",srcSet:\"https://framerusercontent.com/images/dlAAZWJpU36pzdjuYfOEREEqZwc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dlAAZWJpU36pzdjuYfOEREEqZwc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dlAAZWJpU36pzdjuYfOEREEqZwc.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dlAAZWJpU36pzdjuYfOEREEqZwc.jpeg 2731w\"},className:\"framer-4jxg7i\",layoutDependency:layoutDependency,layoutId:\"UxbkFJkFJ\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e7dwf.framer-c5ubqr, .framer-e7dwf .framer-c5ubqr { display: block; }\",\".framer-e7dwf.framer-wvsuvr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-e7dwf .framer-i0ca23 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-e7dwf .framer-17iu4by { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-e7dwf .framer-1axw2ff-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-e7dwf .framer-8sseyd, .framer-e7dwf .framer-t5kylx, .framer-e7dwf .framer-oh4buq, .framer-e7dwf .framer-1a4i1vl, .framer-e7dwf .framer-t0q4v9, .framer-e7dwf .framer-pmbwlq, .framer-e7dwf .framer-1gbnvfc, .framer-e7dwf .framer-c2cx2d, .framer-e7dwf .framer-2on6xq, .framer-e7dwf .framer-q9ubmn, .framer-e7dwf .framer-18ifx4w, .framer-e7dwf .framer-o3oinm, .framer-e7dwf .framer-6jqcf1, .framer-e7dwf .framer-154bopo, .framer-e7dwf .framer-1a0c1bg, .framer-e7dwf .framer-1wttj9x, .framer-e7dwf .framer-1s5n5bn, .framer-e7dwf .framer-o8uche, .framer-e7dwf .framer-19l6cbl, .framer-e7dwf .framer-1fwnepz, .framer-e7dwf .framer-78h61n, .framer-e7dwf .framer-wx0mn2, .framer-e7dwf .framer-1wpbiu5, .framer-e7dwf .framer-18qul38, .framer-e7dwf .framer-1p77p6k, .framer-e7dwf .framer-19jb4pu, .framer-e7dwf .framer-a9kgxv, .framer-e7dwf .framer-dpch2v, .framer-e7dwf .framer-16gelnc, .framer-e7dwf .framer-4jxg7i { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-e7dwf .framer-sg8zgw, .framer-e7dwf .framer-uw333m { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-e7dwf.framer-wvsuvr, .framer-e7dwf .framer-i0ca23 { gap: 0px; } .framer-e7dwf.framer-wvsuvr > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-e7dwf.framer-wvsuvr > :first-child { margin-left: 0px; } .framer-e7dwf.framer-wvsuvr > :last-child { margin-right: 0px; } .framer-e7dwf .framer-i0ca23 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-e7dwf .framer-i0ca23 > :first-child { margin-top: 0px; } .framer-e7dwf .framer-i0ca23 > :last-child { margin-bottom: 0px; } }\",\".framer-e7dwf.framer-v-12ajzc8.framer-wvsuvr { width: 810px; }\",\".framer-e7dwf.framer-v-12ajzc8 .framer-i0ca23, .framer-e7dwf.framer-v-i3p0ql .framer-i0ca23 { flex: 1 0 0px; width: 1px; }\",\".framer-e7dwf.framer-v-i3p0ql.framer-wvsuvr { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OmqB6lDlM\":{\"layout\":[\"fixed\",\"auto\"]},\"xthknIlfD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerd4XazrHnm=withCSS(Component,css,\"framer-e7dwf\");export default Framerd4XazrHnm;Framerd4XazrHnm.displayName=\"Dry Stone Gallery\";Framerd4XazrHnm.defaultProps={height:417,width:1440};addPropertyControls(Framerd4XazrHnm,{variant:{options:[\"bN5wmXGbB\",\"OmqB6lDlM\",\"xthknIlfD\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerd4XazrHnm,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerd4XazrHnm\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OmqB6lDlM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xthknIlfD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"417\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./d4XazrHnm.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"e7YnIGqcm\",\"bJ1gLOrjJ\",\"TzmSfh1tb\"];const serializationHash=\"framer-KQl23\";const variantClassNames={bJ1gLOrjJ:\"framer-v-eq2bra\",e7YnIGqcm:\"framer-v-v4t3fh\",TzmSfh1tb:\"framer-v-6c0h71\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"e7YnIGqcm\",\"Variant 2\":\"bJ1gLOrjJ\",\"Variant 3\":\"TzmSfh1tb\"};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:\"e7YnIGqcm\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e7YnIGqcm\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-v4t3fh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"e7YnIGqcm\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bJ1gLOrjJ:{\"data-framer-name\":\"Variant 2\"},TzmSfh1tb:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dr7o46\",layoutDependency:layoutDependency,layoutId:\"UXPLSAZlY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"PATIOS, TERRACES & PATHWAYS\"})}),className:\"framer-exvbl8\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"n0Wedzkb4\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-93p3ga-container\",layoutDependency:layoutDependency,layoutId:\"bJQ4fZ43D-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"bJQ4fZ43D\",layoutId:\"bJQ4fZ43D\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg\",srcSet:\"https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg 4032w\"},className:\"framer-1c6dolu\",layoutDependency:layoutDependency,layoutId:\"USfhfki4J\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/JtPOT2cL068FwAvYAW627DA7w0.jpeg\",srcSet:\"https://framerusercontent.com/images/JtPOT2cL068FwAvYAW627DA7w0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/JtPOT2cL068FwAvYAW627DA7w0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JtPOT2cL068FwAvYAW627DA7w0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JtPOT2cL068FwAvYAW627DA7w0.jpeg 4032w\"},className:\"framer-upbis\",layoutDependency:layoutDependency,layoutId:\"dAIqZj5hF\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg\",srcSet:\"https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg 2592w\"},className:\"framer-uhyp0o\",layoutDependency:layoutDependency,layoutId:\"s9FhnBI0Q\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/JsGAyhirK7mQYSZFUJ3dwofVuU.jpeg\",srcSet:\"https://framerusercontent.com/images/JsGAyhirK7mQYSZFUJ3dwofVuU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/JsGAyhirK7mQYSZFUJ3dwofVuU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JsGAyhirK7mQYSZFUJ3dwofVuU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JsGAyhirK7mQYSZFUJ3dwofVuU.jpeg 4032w\"},className:\"framer-178lsce\",layoutDependency:layoutDependency,layoutId:\"wznaq5GoF\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/JKCCCqYd1nAEuefYzRRHOhCs20c.jpeg\",srcSet:\"https://framerusercontent.com/images/JKCCCqYd1nAEuefYzRRHOhCs20c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/JKCCCqYd1nAEuefYzRRHOhCs20c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JKCCCqYd1nAEuefYzRRHOhCs20c.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JKCCCqYd1nAEuefYzRRHOhCs20c.jpeg 2592w\"},className:\"framer-iu5t3l\",layoutDependency:layoutDependency,layoutId:\"h7okqcJ2n\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2482,pixelWidth:3565,sizes:\"467px\",src:\"https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg\",srcSet:\"https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg 3565w\"},className:\"framer-1h88xat\",layoutDependency:layoutDependency,layoutId:\"e26HYSNMg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1205,pixelWidth:1600,sizes:\"467px\",src:\"https://framerusercontent.com/images/LZAwxXPU7pMKLaCy5s201AU2iPc.jpeg\",srcSet:\"https://framerusercontent.com/images/LZAwxXPU7pMKLaCy5s201AU2iPc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/LZAwxXPU7pMKLaCy5s201AU2iPc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/LZAwxXPU7pMKLaCy5s201AU2iPc.jpeg 1600w\"},className:\"framer-1a2xh1a\",layoutDependency:layoutDependency,layoutId:\"MUHbjfdlB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/gYltR5ZfbdGWHQGKsNYWYbgrBNg.jpeg\",srcSet:\"https://framerusercontent.com/images/gYltR5ZfbdGWHQGKsNYWYbgrBNg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gYltR5ZfbdGWHQGKsNYWYbgrBNg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gYltR5ZfbdGWHQGKsNYWYbgrBNg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gYltR5ZfbdGWHQGKsNYWYbgrBNg.jpeg 2592w\"},className:\"framer-37duxw\",layoutDependency:layoutDependency,layoutId:\"uKWjelzvb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/m0v2gH3vTE16Oa2YmdxKkbcyDrA.jpeg\",srcSet:\"https://framerusercontent.com/images/m0v2gH3vTE16Oa2YmdxKkbcyDrA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/m0v2gH3vTE16Oa2YmdxKkbcyDrA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m0v2gH3vTE16Oa2YmdxKkbcyDrA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m0v2gH3vTE16Oa2YmdxKkbcyDrA.jpeg 2592w\"},className:\"framer-19cznai\",layoutDependency:layoutDependency,layoutId:\"Wup8kM3XZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2884,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/UuQdkBMijpLCBOC1bHcnXliXg.jpeg\",srcSet:\"https://framerusercontent.com/images/UuQdkBMijpLCBOC1bHcnXliXg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/UuQdkBMijpLCBOC1bHcnXliXg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UuQdkBMijpLCBOC1bHcnXliXg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UuQdkBMijpLCBOC1bHcnXliXg.jpeg 4032w\"},className:\"framer-43eubu\",layoutDependency:layoutDependency,layoutId:\"csiaKSZ6y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/3rkepl6LfqepNSrrhycZjJgCYo.jpeg\",srcSet:\"https://framerusercontent.com/images/3rkepl6LfqepNSrrhycZjJgCYo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3rkepl6LfqepNSrrhycZjJgCYo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3rkepl6LfqepNSrrhycZjJgCYo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3rkepl6LfqepNSrrhycZjJgCYo.jpeg 4032w\"},className:\"framer-1c7z7th\",layoutDependency:layoutDependency,layoutId:\"zoMABoTKv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg\",srcSet:\"https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FPlRPXZIK3ioOuxMnG2mUzmWUgs.jpeg 2592w\"},className:\"framer-15gm3wi\",layoutDependency:layoutDependency,layoutId:\"aIcVl78LV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/t5E0yyOY87sZhKXUg2nCHbLRq0.jpeg\",srcSet:\"https://framerusercontent.com/images/t5E0yyOY87sZhKXUg2nCHbLRq0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/t5E0yyOY87sZhKXUg2nCHbLRq0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t5E0yyOY87sZhKXUg2nCHbLRq0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t5E0yyOY87sZhKXUg2nCHbLRq0.jpeg 4032w\"},className:\"framer-d9qelp\",layoutDependency:layoutDependency,layoutId:\"BKYRhD0O5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/BXD8hwlqVUoM1AQBBOz5L4PMOLg.jpeg\",srcSet:\"https://framerusercontent.com/images/BXD8hwlqVUoM1AQBBOz5L4PMOLg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BXD8hwlqVUoM1AQBBOz5L4PMOLg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BXD8hwlqVUoM1AQBBOz5L4PMOLg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/BXD8hwlqVUoM1AQBBOz5L4PMOLg.jpeg 4032w\"},className:\"framer-erib3j\",layoutDependency:layoutDependency,layoutId:\"ye7S01GoD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg\",srcSet:\"https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg 4032w\"},className:\"framer-116l34m\",layoutDependency:layoutDependency,layoutId:\"O_Bs6hAXi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:2646,sizes:\"250px\",src:\"https://framerusercontent.com/images/0nkzSPCnmcPlTJ7YXpKC4aw3oLQ.jpeg\",srcSet:\"https://framerusercontent.com/images/0nkzSPCnmcPlTJ7YXpKC4aw3oLQ.jpeg?scale-down-to=1024 672w,https://framerusercontent.com/images/0nkzSPCnmcPlTJ7YXpKC4aw3oLQ.jpeg?scale-down-to=2048 1344w,https://framerusercontent.com/images/0nkzSPCnmcPlTJ7YXpKC4aw3oLQ.jpeg 2646w\"},className:\"framer-umbo1r\",layoutDependency:layoutDependency,layoutId:\"dHPIGYe3v\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:1205,sizes:\"250px\",src:\"https://framerusercontent.com/images/pH4tq9XGRXDoV2r21Kd1OLh8.jpeg\",srcSet:\"https://framerusercontent.com/images/pH4tq9XGRXDoV2r21Kd1OLh8.jpeg?scale-down-to=1024 771w,https://framerusercontent.com/images/pH4tq9XGRXDoV2r21Kd1OLh8.jpeg 1205w\"},className:\"framer-12tux9g\",layoutDependency:layoutDependency,layoutId:\"eVhed0tCH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/coIzn29BlUoODY0y8GYUmJif6ks.jpeg\",srcSet:\"https://framerusercontent.com/images/coIzn29BlUoODY0y8GYUmJif6ks.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/coIzn29BlUoODY0y8GYUmJif6ks.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/coIzn29BlUoODY0y8GYUmJif6ks.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/coIzn29BlUoODY0y8GYUmJif6ks.jpeg 2592w\"},className:\"framer-1kp968p\",layoutDependency:layoutDependency,layoutId:\"mrj3E1nOF\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:648,pixelWidth:968,sizes:\"467px\",src:\"https://framerusercontent.com/images/3yLVp2qDW0rOlnxWpvfxAolgJc.jpeg\",srcSet:\"https://framerusercontent.com/images/3yLVp2qDW0rOlnxWpvfxAolgJc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3yLVp2qDW0rOlnxWpvfxAolgJc.jpeg 968w\"},className:\"framer-sljk7a\",layoutDependency:layoutDependency,layoutId:\"gvXrPaVQ1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1944,sizes:\"250px\",src:\"https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg\",srcSet:\"https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg 1944w\"},className:\"framer-1im2jtl\",layoutDependency:layoutDependency,layoutId:\"UymoOVLew\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1172,pixelWidth:768,sizes:\"250px\",src:\"https://framerusercontent.com/images/o6r54PqP34cYbD0R6wn6A1QaN9g.jpeg\",srcSet:\"https://framerusercontent.com/images/o6r54PqP34cYbD0R6wn6A1QaN9g.jpeg?scale-down-to=1024 671w,https://framerusercontent.com/images/o6r54PqP34cYbD0R6wn6A1QaN9g.jpeg 768w\"},className:\"framer-ftkyut\",layoutDependency:layoutDependency,layoutId:\"HQRETtAYy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2303,pixelWidth:3071,sizes:\"467px\",src:\"https://framerusercontent.com/images/6rIZOguvmmaq9b9o4uDGB4v5RI.jpeg\",srcSet:\"https://framerusercontent.com/images/6rIZOguvmmaq9b9o4uDGB4v5RI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/6rIZOguvmmaq9b9o4uDGB4v5RI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/6rIZOguvmmaq9b9o4uDGB4v5RI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/6rIZOguvmmaq9b9o4uDGB4v5RI.jpeg 3071w\"},className:\"framer-1fojljn\",layoutDependency:layoutDependency,layoutId:\"i7WS1YmE0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4261,pixelWidth:3196,sizes:\"250px\",src:\"https://framerusercontent.com/images/S4M9G3QHYD33GlRRdwU0cIDWjc.jpeg\",srcSet:\"https://framerusercontent.com/images/S4M9G3QHYD33GlRRdwU0cIDWjc.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/S4M9G3QHYD33GlRRdwU0cIDWjc.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/S4M9G3QHYD33GlRRdwU0cIDWjc.jpeg?scale-down-to=4096 3072w,https://framerusercontent.com/images/S4M9G3QHYD33GlRRdwU0cIDWjc.jpeg 3196w\"},className:\"framer-1gbku7o\",layoutDependency:layoutDependency,layoutId:\"y79QUL327\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:1536,sizes:\"250px\",src:\"https://framerusercontent.com/images/M8xwaJ9Qej6OlcHPie15U3mvk.jpeg\",srcSet:\"https://framerusercontent.com/images/M8xwaJ9Qej6OlcHPie15U3mvk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/M8xwaJ9Qej6OlcHPie15U3mvk.jpeg 1536w\"},className:\"framer-4iyp3k\",layoutDependency:layoutDependency,layoutId:\"Mqs7uqxch\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:626,pixelWidth:1148,sizes:\"467px\",src:\"https://framerusercontent.com/images/hNpaQh8gjUIaGRi3Z84ilgSOHkY.jpeg\",srcSet:\"https://framerusercontent.com/images/hNpaQh8gjUIaGRi3Z84ilgSOHkY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/hNpaQh8gjUIaGRi3Z84ilgSOHkY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNpaQh8gjUIaGRi3Z84ilgSOHkY.jpeg 1148w\"},className:\"framer-10p4q8k\",layoutDependency:layoutDependency,layoutId:\"H6rTdwWSm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/bpTjqY8O2nZEl94lQTGHcX6q8.jpeg\",srcSet:\"https://framerusercontent.com/images/bpTjqY8O2nZEl94lQTGHcX6q8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/bpTjqY8O2nZEl94lQTGHcX6q8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/bpTjqY8O2nZEl94lQTGHcX6q8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/bpTjqY8O2nZEl94lQTGHcX6q8.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/bpTjqY8O2nZEl94lQTGHcX6q8.jpeg 4320w\"},className:\"framer-15f4che\",layoutDependency:layoutDependency,layoutId:\"m1Bw8mI6t\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:3872,sizes:\"467px\",src:\"https://framerusercontent.com/images/V7Wrpw0IE5362WCjJI7URcv0e8.jpeg\",srcSet:\"https://framerusercontent.com/images/V7Wrpw0IE5362WCjJI7URcv0e8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/V7Wrpw0IE5362WCjJI7URcv0e8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V7Wrpw0IE5362WCjJI7URcv0e8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V7Wrpw0IE5362WCjJI7URcv0e8.jpeg 3872w\"},className:\"framer-e8zzdn\",layoutDependency:layoutDependency,layoutId:\"yaz_c9mkE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1082,pixelWidth:1440,sizes:\"467px\",src:\"https://framerusercontent.com/images/unebY2HNv1tWcFo6kOtfxBZvrk.jpeg\",srcSet:\"https://framerusercontent.com/images/unebY2HNv1tWcFo6kOtfxBZvrk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/unebY2HNv1tWcFo6kOtfxBZvrk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/unebY2HNv1tWcFo6kOtfxBZvrk.jpeg 1440w\"},className:\"framer-1h8k79r\",layoutDependency:layoutDependency,layoutId:\"aWUZwfdaA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/HCMvLkRNqpC9Rc1YnUILp1HBX0.jpeg\",srcSet:\"https://framerusercontent.com/images/HCMvLkRNqpC9Rc1YnUILp1HBX0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/HCMvLkRNqpC9Rc1YnUILp1HBX0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/HCMvLkRNqpC9Rc1YnUILp1HBX0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/HCMvLkRNqpC9Rc1YnUILp1HBX0.jpeg 4032w\"},className:\"framer-mqxn4y\",layoutDependency:layoutDependency,layoutId:\"LttTXxMea\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/XWxD1U1fA123Nu8LkhVupePqSe0.jpeg\",srcSet:\"https://framerusercontent.com/images/XWxD1U1fA123Nu8LkhVupePqSe0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/XWxD1U1fA123Nu8LkhVupePqSe0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XWxD1U1fA123Nu8LkhVupePqSe0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XWxD1U1fA123Nu8LkhVupePqSe0.jpeg 4032w\"},className:\"framer-1w2vimy\",layoutDependency:layoutDependency,layoutId:\"poaEB0C25\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/mVMPPOtQcRd7hBZpLjMr45gtIEw.jpeg\",srcSet:\"https://framerusercontent.com/images/mVMPPOtQcRd7hBZpLjMr45gtIEw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mVMPPOtQcRd7hBZpLjMr45gtIEw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mVMPPOtQcRd7hBZpLjMr45gtIEw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mVMPPOtQcRd7hBZpLjMr45gtIEw.jpeg 2592w\"},className:\"framer-c408yv\",layoutDependency:layoutDependency,layoutId:\"RjVXxvbTI\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/s1P1VYEGeyTJMExukMRp24hvY.jpeg\",srcSet:\"https://framerusercontent.com/images/s1P1VYEGeyTJMExukMRp24hvY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/s1P1VYEGeyTJMExukMRp24hvY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/s1P1VYEGeyTJMExukMRp24hvY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/s1P1VYEGeyTJMExukMRp24hvY.jpeg 2592w\"},className:\"framer-1q9fng0\",layoutDependency:layoutDependency,layoutId:\"vBQyYBCQk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/chWjNjKAi4d9Q1Deu7bCpnrCPQ.jpeg\",srcSet:\"https://framerusercontent.com/images/chWjNjKAi4d9Q1Deu7bCpnrCPQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/chWjNjKAi4d9Q1Deu7bCpnrCPQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/chWjNjKAi4d9Q1Deu7bCpnrCPQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/chWjNjKAi4d9Q1Deu7bCpnrCPQ.jpeg 2592w\"},className:\"framer-1jcpwxk\",layoutDependency:layoutDependency,layoutId:\"Lqj0QYPsL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2124,pixelWidth:3024,sizes:\"467px\",src:\"https://framerusercontent.com/images/1zYn29YqwYRrK5RXVvQ9jpl4L0.jpeg\",srcSet:\"https://framerusercontent.com/images/1zYn29YqwYRrK5RXVvQ9jpl4L0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/1zYn29YqwYRrK5RXVvQ9jpl4L0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1zYn29YqwYRrK5RXVvQ9jpl4L0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1zYn29YqwYRrK5RXVvQ9jpl4L0.jpeg 3024w\"},className:\"framer-162oogl\",layoutDependency:layoutDependency,layoutId:\"HivscvDir\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/C4nvvR7psN5N2EaiHq5Tg12YR6Y.jpeg\",srcSet:\"https://framerusercontent.com/images/C4nvvR7psN5N2EaiHq5Tg12YR6Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/C4nvvR7psN5N2EaiHq5Tg12YR6Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/C4nvvR7psN5N2EaiHq5Tg12YR6Y.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/C4nvvR7psN5N2EaiHq5Tg12YR6Y.jpeg 2592w\"},className:\"framer-1yaecig\",layoutDependency:layoutDependency,layoutId:\"vrsyxHKFc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2428,pixelWidth:3627,sizes:\"467px\",src:\"https://framerusercontent.com/images/FLpal4dC5INTEK7Mwvvca4mv0.jpeg\",srcSet:\"https://framerusercontent.com/images/FLpal4dC5INTEK7Mwvvca4mv0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/FLpal4dC5INTEK7Mwvvca4mv0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FLpal4dC5INTEK7Mwvvca4mv0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FLpal4dC5INTEK7Mwvvca4mv0.jpeg 3627w\"},className:\"framer-1kywrfe\",layoutDependency:layoutDependency,layoutId:\"lWaM1bWzP\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KQl23.framer-h1onmd, .framer-KQl23 .framer-h1onmd { display: block; }\",\".framer-KQl23.framer-v4t3fh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-KQl23 .framer-1dr7o46 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-KQl23 .framer-exvbl8 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-KQl23 .framer-93p3ga-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-KQl23 .framer-1c6dolu, .framer-KQl23 .framer-upbis, .framer-KQl23 .framer-178lsce, .framer-KQl23 .framer-1h88xat, .framer-KQl23 .framer-1a2xh1a, .framer-KQl23 .framer-43eubu, .framer-KQl23 .framer-1c7z7th, .framer-KQl23 .framer-erib3j, .framer-KQl23 .framer-116l34m, .framer-KQl23 .framer-1kp968p, .framer-KQl23 .framer-sljk7a, .framer-KQl23 .framer-1fojljn, .framer-KQl23 .framer-10p4q8k, .framer-KQl23 .framer-15f4che, .framer-KQl23 .framer-e8zzdn, .framer-KQl23 .framer-1h8k79r, .framer-KQl23 .framer-mqxn4y, .framer-KQl23 .framer-1w2vimy, .framer-KQl23 .framer-c408yv, .framer-KQl23 .framer-1q9fng0, .framer-KQl23 .framer-1jcpwxk, .framer-KQl23 .framer-162oogl, .framer-KQl23 .framer-1yaecig, .framer-KQl23 .framer-1kywrfe { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-KQl23 .framer-uhyp0o, .framer-KQl23 .framer-iu5t3l, .framer-KQl23 .framer-37duxw, .framer-KQl23 .framer-19cznai, .framer-KQl23 .framer-15gm3wi, .framer-KQl23 .framer-d9qelp, .framer-KQl23 .framer-umbo1r, .framer-KQl23 .framer-12tux9g, .framer-KQl23 .framer-1im2jtl, .framer-KQl23 .framer-ftkyut, .framer-KQl23 .framer-1gbku7o, .framer-KQl23 .framer-4iyp3k { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KQl23.framer-v4t3fh, .framer-KQl23 .framer-1dr7o46 { gap: 0px; } .framer-KQl23.framer-v4t3fh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KQl23.framer-v4t3fh > :first-child { margin-left: 0px; } .framer-KQl23.framer-v4t3fh > :last-child { margin-right: 0px; } .framer-KQl23 .framer-1dr7o46 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-KQl23 .framer-1dr7o46 > :first-child { margin-top: 0px; } .framer-KQl23 .framer-1dr7o46 > :last-child { margin-bottom: 0px; } }\",\".framer-KQl23.framer-v-eq2bra.framer-v4t3fh { width: 810px; }\",\".framer-KQl23.framer-v-eq2bra .framer-1dr7o46, .framer-KQl23.framer-v-6c0h71 .framer-1dr7o46 { flex: 1 0 0px; width: 1px; }\",\".framer-KQl23.framer-v-6c0h71.framer-v4t3fh { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 477\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bJ1gLOrjJ\":{\"layout\":[\"fixed\",\"auto\"]},\"TzmSfh1tb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framere76oj3pIN=withCSS(Component,css,\"framer-KQl23\");export default Framere76oj3pIN;Framere76oj3pIN.displayName=\"Patios, Pathways & Terraces Image Gallery\";Framere76oj3pIN.defaultProps={height:477,width:1440};addPropertyControls(Framere76oj3pIN,{variant:{options:[\"e7YnIGqcm\",\"bJ1gLOrjJ\",\"TzmSfh1tb\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framere76oj3pIN,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framere76oj3pIN\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"477\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bJ1gLOrjJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TzmSfh1tb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./e76oj3pIN.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"PMmOVKuRC\",\"Lbg6QW1f1\",\"DM5R5S7Zp\"];const serializationHash=\"framer-O9vj5\";const variantClassNames={DM5R5S7Zp:\"framer-v-1i8rlda\",Lbg6QW1f1:\"framer-v-llkkzn\",PMmOVKuRC:\"framer-v-1hpqd3f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"PMmOVKuRC\",\"Variant 2\":\"Lbg6QW1f1\",\"Variant 3\":\"DM5R5S7Zp\"};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:\"PMmOVKuRC\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"PMmOVKuRC\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1hpqd3f\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"PMmOVKuRC\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DM5R5S7Zp:{\"data-framer-name\":\"Variant 3\"},Lbg6QW1f1:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-126h9ch\",layoutDependency:layoutDependency,layoutId:\"KKXfRPUnV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"STEPS\"})}),className:\"framer-2vjy9c\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NFJgbt9Gn\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-spqklq-container\",layoutDependency:layoutDependency,layoutId:\"c7QYLvfHk-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"c7QYLvfHk\",layoutId:\"c7QYLvfHk\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/N5mRimHp6MayDdH2FCLX2TXNRs.jpeg\",srcSet:\"https://framerusercontent.com/images/N5mRimHp6MayDdH2FCLX2TXNRs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/N5mRimHp6MayDdH2FCLX2TXNRs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/N5mRimHp6MayDdH2FCLX2TXNRs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/N5mRimHp6MayDdH2FCLX2TXNRs.jpeg 2592w\"},className:\"framer-pc0b1c\",layoutDependency:layoutDependency,layoutId:\"dVQwiNHM1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg\",srcSet:\"https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W5tmf9tpUSGtUjFLcYHgUE6Yzjk.jpeg 4032w\"},className:\"framer-c7evjp\",layoutDependency:layoutDependency,layoutId:\"er8RmrcJb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3650,pixelWidth:2478,sizes:\"250px\",src:\"https://framerusercontent.com/images/3ZRbEoZgcopqw1cr8OZ69XJ1Pw.jpeg\",srcSet:\"https://framerusercontent.com/images/3ZRbEoZgcopqw1cr8OZ69XJ1Pw.jpeg?scale-down-to=1024 695w,https://framerusercontent.com/images/3ZRbEoZgcopqw1cr8OZ69XJ1Pw.jpeg?scale-down-to=2048 1390w,https://framerusercontent.com/images/3ZRbEoZgcopqw1cr8OZ69XJ1Pw.jpeg 2478w\"},className:\"framer-qo6c2z\",layoutDependency:layoutDependency,layoutId:\"RMWzLC8hq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3919,pixelWidth:2939,sizes:\"250px\",src:\"https://framerusercontent.com/images/E12guayM0c6GJIRHvntgmKhxQI.jpeg\",srcSet:\"https://framerusercontent.com/images/E12guayM0c6GJIRHvntgmKhxQI.jpeg?scale-down-to=1024 767w,https://framerusercontent.com/images/E12guayM0c6GJIRHvntgmKhxQI.jpeg?scale-down-to=2048 1535w,https://framerusercontent.com/images/E12guayM0c6GJIRHvntgmKhxQI.jpeg 2939w\"},className:\"framer-hhmf0l\",layoutDependency:layoutDependency,layoutId:\"XvPYd6joV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:782,pixelWidth:653,sizes:\"250px\",src:\"https://framerusercontent.com/images/4LbnnxGxv7SEK8QPL2XvlTpAu4.jpeg\",srcSet:\"https://framerusercontent.com/images/4LbnnxGxv7SEK8QPL2XvlTpAu4.jpeg 653w\"},className:\"framer-1ccnvw6\",layoutDependency:layoutDependency,layoutId:\"vvRbrqE9j\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O9vj5.framer-puyo40, .framer-O9vj5 .framer-puyo40 { display: block; }\",\".framer-O9vj5.framer-1hpqd3f { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-O9vj5 .framer-126h9ch { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-O9vj5 .framer-2vjy9c { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-O9vj5 .framer-spqklq-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-O9vj5 .framer-pc0b1c, .framer-O9vj5 .framer-c7evjp { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-O9vj5 .framer-qo6c2z, .framer-O9vj5 .framer-hhmf0l, .framer-O9vj5 .framer-1ccnvw6 { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-O9vj5.framer-1hpqd3f, .framer-O9vj5 .framer-126h9ch { gap: 0px; } .framer-O9vj5.framer-1hpqd3f > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-O9vj5.framer-1hpqd3f > :first-child { margin-left: 0px; } .framer-O9vj5.framer-1hpqd3f > :last-child { margin-right: 0px; } .framer-O9vj5 .framer-126h9ch > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-O9vj5 .framer-126h9ch > :first-child { margin-top: 0px; } .framer-O9vj5 .framer-126h9ch > :last-child { margin-bottom: 0px; } }\",\".framer-O9vj5.framer-v-llkkzn.framer-1hpqd3f { width: 810px; }\",\".framer-O9vj5.framer-v-llkkzn .framer-126h9ch, .framer-O9vj5.framer-v-1i8rlda .framer-126h9ch { flex: 1 0 0px; width: 1px; }\",\".framer-O9vj5.framer-v-1i8rlda.framer-1hpqd3f { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Lbg6QW1f1\":{\"layout\":[\"fixed\",\"auto\"]},\"DM5R5S7Zp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhYT8tqX6x=withCSS(Component,css,\"framer-O9vj5\");export default FramerhYT8tqX6x;FramerhYT8tqX6x.displayName=\"Steps Gallery\";FramerhYT8tqX6x.defaultProps={height:417,width:1440};addPropertyControls(FramerhYT8tqX6x,{variant:{options:[\"PMmOVKuRC\",\"Lbg6QW1f1\",\"DM5R5S7Zp\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerhYT8tqX6x,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhYT8tqX6x\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Lbg6QW1f1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DM5R5S7Zp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"417\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hYT8tqX6x.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"X0KBAQqcs\",\"Q8lPglxsZ\",\"niEr9Bj0_\"];const serializationHash=\"framer-yoRV2\";const variantClassNames={niEr9Bj0_:\"framer-v-csgg4s\",Q8lPglxsZ:\"framer-v-x2pidc\",X0KBAQqcs:\"framer-v-160c2a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"X0KBAQqcs\",\"Variant 2\":\"Q8lPglxsZ\",\"Variant 3\":\"niEr9Bj0_\"};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:\"X0KBAQqcs\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"X0KBAQqcs\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-160c2a\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"X0KBAQqcs\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({niEr9Bj0_:{\"data-framer-name\":\"Variant 3\"},Q8lPglxsZ:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hemsxt\",layoutDependency:layoutDependency,layoutId:\"SHHh6OZfc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"SCULPTURES\"})}),className:\"framer-bh0y3v\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FJrWXpYAg\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mnkqod-container\",layoutDependency:layoutDependency,layoutId:\"AyObCSly1-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"AyObCSly1\",layoutId:\"AyObCSly1\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/iL31A6WeoacDNEhuzyLcwwl2lGk.jpg\",srcSet:\"https://framerusercontent.com/images/iL31A6WeoacDNEhuzyLcwwl2lGk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/iL31A6WeoacDNEhuzyLcwwl2lGk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iL31A6WeoacDNEhuzyLcwwl2lGk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iL31A6WeoacDNEhuzyLcwwl2lGk.jpg 4032w\"},className:\"framer-1lnct4u\",layoutDependency:layoutDependency,layoutId:\"QwReCkYcg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/sUJ1yu8UuogOOdJWBP4DDnMAI.jpg\",srcSet:\"https://framerusercontent.com/images/sUJ1yu8UuogOOdJWBP4DDnMAI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sUJ1yu8UuogOOdJWBP4DDnMAI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sUJ1yu8UuogOOdJWBP4DDnMAI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sUJ1yu8UuogOOdJWBP4DDnMAI.jpg 4032w\"},className:\"framer-dklcri\",layoutDependency:layoutDependency,layoutId:\"ejvnMBMJe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/I06SVyMLLYu4Avoo7x1Pdr3PmDU.jpg\",srcSet:\"https://framerusercontent.com/images/I06SVyMLLYu4Avoo7x1Pdr3PmDU.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/I06SVyMLLYu4Avoo7x1Pdr3PmDU.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/I06SVyMLLYu4Avoo7x1Pdr3PmDU.jpg 3024w\"},className:\"framer-1eylv1u\",layoutDependency:layoutDependency,layoutId:\"E4y_2ZqK6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/Dl1KWV8J6TykvMOz0yQfz4uIxM.jpg\",srcSet:\"https://framerusercontent.com/images/Dl1KWV8J6TykvMOz0yQfz4uIxM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Dl1KWV8J6TykvMOz0yQfz4uIxM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Dl1KWV8J6TykvMOz0yQfz4uIxM.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Dl1KWV8J6TykvMOz0yQfz4uIxM.jpg 4032w\"},className:\"framer-d9295n\",layoutDependency:layoutDependency,layoutId:\"I6s_a5iY5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/RnkriWSUzPsoF17lRLYm8mWXUnU.jpg\",srcSet:\"https://framerusercontent.com/images/RnkriWSUzPsoF17lRLYm8mWXUnU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RnkriWSUzPsoF17lRLYm8mWXUnU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RnkriWSUzPsoF17lRLYm8mWXUnU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RnkriWSUzPsoF17lRLYm8mWXUnU.jpg 4032w\"},className:\"framer-1utxxgj\",layoutDependency:layoutDependency,layoutId:\"xuvdkRBPb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1529,pixelWidth:2730,sizes:\"467px\",src:\"https://framerusercontent.com/images/MGtBDKBuUVOxZTrBWxBK9SKPHl4.jpg\",srcSet:\"https://framerusercontent.com/images/MGtBDKBuUVOxZTrBWxBK9SKPHl4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/MGtBDKBuUVOxZTrBWxBK9SKPHl4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MGtBDKBuUVOxZTrBWxBK9SKPHl4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MGtBDKBuUVOxZTrBWxBK9SKPHl4.jpg 2730w\"},className:\"framer-89og75\",layoutDependency:layoutDependency,layoutId:\"Kgae26a7T\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/E4jptti4Co0C61HAsrZcVMzPe4.jpeg\",srcSet:\"https://framerusercontent.com/images/E4jptti4Co0C61HAsrZcVMzPe4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/E4jptti4Co0C61HAsrZcVMzPe4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E4jptti4Co0C61HAsrZcVMzPe4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E4jptti4Co0C61HAsrZcVMzPe4.jpeg 4032w\"},className:\"framer-11aj3t7\",layoutDependency:layoutDependency,layoutId:\"aKTwjcWeM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/xWe3xYwImQcTTV5ciFwQ8ggfJU.jpg\",srcSet:\"https://framerusercontent.com/images/xWe3xYwImQcTTV5ciFwQ8ggfJU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xWe3xYwImQcTTV5ciFwQ8ggfJU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xWe3xYwImQcTTV5ciFwQ8ggfJU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xWe3xYwImQcTTV5ciFwQ8ggfJU.jpg 4032w\"},className:\"framer-u2eg2y\",layoutDependency:layoutDependency,layoutId:\"oTwn44xCt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/KPVqOrAVcOxcOTdDizP0DHISs.jpeg\",srcSet:\"https://framerusercontent.com/images/KPVqOrAVcOxcOTdDizP0DHISs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/KPVqOrAVcOxcOTdDizP0DHISs.jpeg 1024w\"},className:\"framer-186skvk\",layoutDependency:layoutDependency,layoutId:\"hZ5Ok9Lk3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2072,pixelWidth:1522,sizes:\"250px\",src:\"https://framerusercontent.com/images/K1dy0THbw9clZqOZPHyKmGC0kF8.jpg\",srcSet:\"https://framerusercontent.com/images/K1dy0THbw9clZqOZPHyKmGC0kF8.jpg?scale-down-to=1024 752w,https://framerusercontent.com/images/K1dy0THbw9clZqOZPHyKmGC0kF8.jpg?scale-down-to=2048 1504w,https://framerusercontent.com/images/K1dy0THbw9clZqOZPHyKmGC0kF8.jpg 1522w\"},className:\"framer-s5yk8k\",layoutDependency:layoutDependency,layoutId:\"owqLDkm0D\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1774,pixelWidth:1440,sizes:\"250px\",src:\"https://framerusercontent.com/images/BypvraS7pBBtCde1SnfvS4Rq6Kc.jpg\",srcSet:\"https://framerusercontent.com/images/BypvraS7pBBtCde1SnfvS4Rq6Kc.jpg?scale-down-to=1024 831w,https://framerusercontent.com/images/BypvraS7pBBtCde1SnfvS4Rq6Kc.jpg 1440w\"},className:\"framer-1mfnagj\",layoutDependency:layoutDependency,layoutId:\"sbMAUP9II\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:3024,sizes:\"467px\",src:\"https://framerusercontent.com/images/jEWwQ1WGyWfM6ozkFAQ0H24RWD4.jpg\",srcSet:\"https://framerusercontent.com/images/jEWwQ1WGyWfM6ozkFAQ0H24RWD4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jEWwQ1WGyWfM6ozkFAQ0H24RWD4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jEWwQ1WGyWfM6ozkFAQ0H24RWD4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jEWwQ1WGyWfM6ozkFAQ0H24RWD4.jpg 3024w\"},className:\"framer-1u90sh5\",layoutDependency:layoutDependency,layoutId:\"d_CwN4oZg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:767,pixelWidth:1169,sizes:\"467px\",src:\"https://framerusercontent.com/images/4g5dZEadEEchYFLwazKvVNwmMM.jpg\",srcSet:\"https://framerusercontent.com/images/4g5dZEadEEchYFLwazKvVNwmMM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/4g5dZEadEEchYFLwazKvVNwmMM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/4g5dZEadEEchYFLwazKvVNwmMM.jpg 1169w\"},className:\"framer-1h8fovo\",layoutDependency:layoutDependency,layoutId:\"I5wo2QUBY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/vQi2tbvPxs7meqvSmwUgpUyE.jpg\",srcSet:\"https://framerusercontent.com/images/vQi2tbvPxs7meqvSmwUgpUyE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/vQi2tbvPxs7meqvSmwUgpUyE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vQi2tbvPxs7meqvSmwUgpUyE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vQi2tbvPxs7meqvSmwUgpUyE.jpg 4032w\"},className:\"framer-csszbg\",layoutDependency:layoutDependency,layoutId:\"EwxoB0m_V\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:900,sizes:\"250px\",src:\"https://framerusercontent.com/images/EwAIUEtkYPXPOo8klibsWIo9cLs.jpg\",srcSet:\"https://framerusercontent.com/images/EwAIUEtkYPXPOo8klibsWIo9cLs.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/EwAIUEtkYPXPOo8klibsWIo9cLs.jpg 900w\"},className:\"framer-qpfs7f\",layoutDependency:layoutDependency,layoutId:\"EVRK6HCZd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/guyYmoGNolBYHK3o9YGEzNBlcpw.jpg\",srcSet:\"https://framerusercontent.com/images/guyYmoGNolBYHK3o9YGEzNBlcpw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/guyYmoGNolBYHK3o9YGEzNBlcpw.jpg 1024w\"},className:\"framer-3gah0h\",layoutDependency:layoutDependency,layoutId:\"Ad20UwVux\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/wzlMqZz2qnPFDvxAgU5kWZDVc.jpg\",srcSet:\"https://framerusercontent.com/images/wzlMqZz2qnPFDvxAgU5kWZDVc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wzlMqZz2qnPFDvxAgU5kWZDVc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wzlMqZz2qnPFDvxAgU5kWZDVc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wzlMqZz2qnPFDvxAgU5kWZDVc.jpg 4032w\"},className:\"framer-ilgvf0\",layoutDependency:layoutDependency,layoutId:\"NW0xlakST\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/I8nxt0XoMhvP0lcYp2B0nMSj8Hs.jpg\",srcSet:\"https://framerusercontent.com/images/I8nxt0XoMhvP0lcYp2B0nMSj8Hs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/I8nxt0XoMhvP0lcYp2B0nMSj8Hs.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I8nxt0XoMhvP0lcYp2B0nMSj8Hs.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/I8nxt0XoMhvP0lcYp2B0nMSj8Hs.jpg 2592w\"},className:\"framer-t516e8\",layoutDependency:layoutDependency,layoutId:\"KlDWN3Ra5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/KCQ1kCaMcFaZh8wtyYcP0eBRI98.jpg\",srcSet:\"https://framerusercontent.com/images/KCQ1kCaMcFaZh8wtyYcP0eBRI98.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KCQ1kCaMcFaZh8wtyYcP0eBRI98.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KCQ1kCaMcFaZh8wtyYcP0eBRI98.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KCQ1kCaMcFaZh8wtyYcP0eBRI98.jpg 2592w\"},className:\"framer-1r49jke\",layoutDependency:layoutDependency,layoutId:\"RjaLQMhNc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg\",srcSet:\"https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ad0XGW65aOzwfodTyKked6uVvqg.jpeg 4032w\"},className:\"framer-1yhmavw\",layoutDependency:layoutDependency,layoutId:\"SFeos4AOi\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yoRV2.framer-cccar9, .framer-yoRV2 .framer-cccar9 { display: block; }\",\".framer-yoRV2.framer-160c2a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-yoRV2 .framer-hemsxt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-yoRV2 .framer-bh0y3v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yoRV2 .framer-1mnkqod-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-yoRV2 .framer-1lnct4u, .framer-yoRV2 .framer-dklcri, .framer-yoRV2 .framer-1utxxgj, .framer-yoRV2 .framer-89og75, .framer-yoRV2 .framer-11aj3t7, .framer-yoRV2 .framer-186skvk, .framer-yoRV2 .framer-1u90sh5, .framer-yoRV2 .framer-1h8fovo, .framer-yoRV2 .framer-csszbg, .framer-yoRV2 .framer-3gah0h, .framer-yoRV2 .framer-ilgvf0, .framer-yoRV2 .framer-t516e8, .framer-yoRV2 .framer-1r49jke, .framer-yoRV2 .framer-1yhmavw { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-yoRV2 .framer-1eylv1u, .framer-yoRV2 .framer-d9295n, .framer-yoRV2 .framer-u2eg2y, .framer-yoRV2 .framer-s5yk8k, .framer-yoRV2 .framer-1mfnagj, .framer-yoRV2 .framer-qpfs7f { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yoRV2.framer-160c2a, .framer-yoRV2 .framer-hemsxt { gap: 0px; } .framer-yoRV2.framer-160c2a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yoRV2.framer-160c2a > :first-child { margin-left: 0px; } .framer-yoRV2.framer-160c2a > :last-child { margin-right: 0px; } .framer-yoRV2 .framer-hemsxt > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-yoRV2 .framer-hemsxt > :first-child { margin-top: 0px; } .framer-yoRV2 .framer-hemsxt > :last-child { margin-bottom: 0px; } }\",\".framer-yoRV2.framer-v-x2pidc.framer-160c2a { width: 810px; }\",\".framer-yoRV2.framer-v-x2pidc .framer-hemsxt, .framer-yoRV2.framer-v-csgg4s .framer-hemsxt { flex: 1 0 0px; width: 1px; }\",\".framer-yoRV2.framer-v-csgg4s.framer-160c2a { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Q8lPglxsZ\":{\"layout\":[\"fixed\",\"auto\"]},\"niEr9Bj0_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerJ1btpeHJ6=withCSS(Component,css,\"framer-yoRV2\");export default FramerJ1btpeHJ6;FramerJ1btpeHJ6.displayName=\"Sculptures Gallery\";FramerJ1btpeHJ6.defaultProps={height:417,width:1440};addPropertyControls(FramerJ1btpeHJ6,{variant:{options:[\"X0KBAQqcs\",\"Q8lPglxsZ\",\"niEr9Bj0_\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJ1btpeHJ6,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJ1btpeHJ6\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"417\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Q8lPglxsZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"niEr9Bj0_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./J1btpeHJ6.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"fB3Lg2Qc3\",\"RPF8uop3x\",\"at_tjw7em\"];const serializationHash=\"framer-8rtQ2\";const variantClassNames={at_tjw7em:\"framer-v-zafma\",fB3Lg2Qc3:\"framer-v-1kwxatj\",RPF8uop3x:\"framer-v-1y560d4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"fB3Lg2Qc3\",\"Variant 2\":\"RPF8uop3x\",\"Variant 3\":\"at_tjw7em\"};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:\"fB3Lg2Qc3\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fB3Lg2Qc3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1kwxatj\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fB3Lg2Qc3\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({at_tjw7em:{\"data-framer-name\":\"Variant 3\"},RPF8uop3x:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o0xspl\",layoutDependency:layoutDependency,layoutId:\"IgHrwrazw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"WATER FEATURES\"})}),className:\"framer-1fnc59y\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aGy3aYEup\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7w9i92-container\",layoutDependency:layoutDependency,layoutId:\"OXfTmpJFj-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"OXfTmpJFj\",layoutId:\"OXfTmpJFj\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/PY853JljajZ7UK2fjm7vQVVOhU.jpeg\",srcSet:\"https://framerusercontent.com/images/PY853JljajZ7UK2fjm7vQVVOhU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PY853JljajZ7UK2fjm7vQVVOhU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PY853JljajZ7UK2fjm7vQVVOhU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PY853JljajZ7UK2fjm7vQVVOhU.jpeg 4032w\"},className:\"framer-1m2plod\",layoutDependency:layoutDependency,layoutId:\"Qc9wWiwTc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/cdaRt1jiihIOdCE264QjmY8YM.jpeg\",srcSet:\"https://framerusercontent.com/images/cdaRt1jiihIOdCE264QjmY8YM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/cdaRt1jiihIOdCE264QjmY8YM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cdaRt1jiihIOdCE264QjmY8YM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cdaRt1jiihIOdCE264QjmY8YM.jpeg 4032w\"},className:\"framer-i4asfr\",layoutDependency:layoutDependency,layoutId:\"UkwMyP9Ly\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/UgKZhb7EvGiclADIpe99gp6nEhY.jpeg\",srcSet:\"https://framerusercontent.com/images/UgKZhb7EvGiclADIpe99gp6nEhY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/UgKZhb7EvGiclADIpe99gp6nEhY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UgKZhb7EvGiclADIpe99gp6nEhY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UgKZhb7EvGiclADIpe99gp6nEhY.jpeg 4032w\"},className:\"framer-1afo1gh\",layoutDependency:layoutDependency,layoutId:\"BPSKphzWO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2482,pixelWidth:3565,sizes:\"467px\",src:\"https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg\",srcSet:\"https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5dg3HReZGLLiK2NQf98cujOutY.jpeg 3565w\"},className:\"framer-1fjfu09\",layoutDependency:layoutDependency,layoutId:\"lVsH9SpBZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/ruq8bEkWiXDm5cZWjQhxQNNCxCw.jpeg\",srcSet:\"https://framerusercontent.com/images/ruq8bEkWiXDm5cZWjQhxQNNCxCw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ruq8bEkWiXDm5cZWjQhxQNNCxCw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ruq8bEkWiXDm5cZWjQhxQNNCxCw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ruq8bEkWiXDm5cZWjQhxQNNCxCw.jpeg 4032w\"},className:\"framer-ojx8uv\",layoutDependency:layoutDependency,layoutId:\"k8Ucs0SuJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:3547,sizes:\"467px\",src:\"https://framerusercontent.com/images/qx1jtWq3be6BHj6QuP6ip8Ms.jpeg\",srcSet:\"https://framerusercontent.com/images/qx1jtWq3be6BHj6QuP6ip8Ms.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/qx1jtWq3be6BHj6QuP6ip8Ms.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qx1jtWq3be6BHj6QuP6ip8Ms.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qx1jtWq3be6BHj6QuP6ip8Ms.jpeg 3547w\"},className:\"framer-1ps5kmy\",layoutDependency:layoutDependency,layoutId:\"x9YTufTYU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/xk4szpfW1DU5dcc0b6iiSH90Ny8.jpeg\",srcSet:\"https://framerusercontent.com/images/xk4szpfW1DU5dcc0b6iiSH90Ny8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/xk4szpfW1DU5dcc0b6iiSH90Ny8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xk4szpfW1DU5dcc0b6iiSH90Ny8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xk4szpfW1DU5dcc0b6iiSH90Ny8.jpeg 4032w\"},className:\"framer-1uno62a\",layoutDependency:layoutDependency,layoutId:\"V1hHRhnfv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/3NsORmypIvw8AJbsB61N1011co.jpeg\",srcSet:\"https://framerusercontent.com/images/3NsORmypIvw8AJbsB61N1011co.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3NsORmypIvw8AJbsB61N1011co.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3NsORmypIvw8AJbsB61N1011co.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3NsORmypIvw8AJbsB61N1011co.jpeg 2592w\"},className:\"framer-5wj0le\",layoutDependency:layoutDependency,layoutId:\"drTcfo7PN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/FjzDcnnhKuBexnECM7OukKr8xU.jpeg\",srcSet:\"https://framerusercontent.com/images/FjzDcnnhKuBexnECM7OukKr8xU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/FjzDcnnhKuBexnECM7OukKr8xU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjzDcnnhKuBexnECM7OukKr8xU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjzDcnnhKuBexnECM7OukKr8xU.jpeg 4032w\"},className:\"framer-65zj6o\",layoutDependency:layoutDependency,layoutId:\"nX3Bn9Omz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/zSVNf9WzRd8mqR7voJmqmQmPA.jpeg\",srcSet:\"https://framerusercontent.com/images/zSVNf9WzRd8mqR7voJmqmQmPA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/zSVNf9WzRd8mqR7voJmqmQmPA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zSVNf9WzRd8mqR7voJmqmQmPA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/zSVNf9WzRd8mqR7voJmqmQmPA.jpeg 4032w\"},className:\"framer-1yoyhfr\",layoutDependency:layoutDependency,layoutId:\"NTkMJkPso\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2138,pixelWidth:3231,sizes:\"467px\",src:\"https://framerusercontent.com/images/ckVfXfiGUHTxPa4S8riPQNZT09Y.jpeg\",srcSet:\"https://framerusercontent.com/images/ckVfXfiGUHTxPa4S8riPQNZT09Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ckVfXfiGUHTxPa4S8riPQNZT09Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ckVfXfiGUHTxPa4S8riPQNZT09Y.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ckVfXfiGUHTxPa4S8riPQNZT09Y.jpeg 3231w\"},className:\"framer-kvyhz7\",layoutDependency:layoutDependency,layoutId:\"T2qgwA9PT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/JyM9Li7QdcRMMoHAQe9yDr7zq0.jpeg\",srcSet:\"https://framerusercontent.com/images/JyM9Li7QdcRMMoHAQe9yDr7zq0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/JyM9Li7QdcRMMoHAQe9yDr7zq0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JyM9Li7QdcRMMoHAQe9yDr7zq0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/JyM9Li7QdcRMMoHAQe9yDr7zq0.jpeg 4032w\"},className:\"framer-g5ayh9\",layoutDependency:layoutDependency,layoutId:\"b2k_iRnJK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/arYnGIfTtNSQfXlUG3a83I93Uno.jpeg\",srcSet:\"https://framerusercontent.com/images/arYnGIfTtNSQfXlUG3a83I93Uno.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/arYnGIfTtNSQfXlUG3a83I93Uno.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/arYnGIfTtNSQfXlUG3a83I93Uno.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/arYnGIfTtNSQfXlUG3a83I93Uno.jpeg 4032w\"},className:\"framer-17scraa\",layoutDependency:layoutDependency,layoutId:\"xWSp6UZAg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:810,pixelWidth:1080,sizes:\"467px\",src:\"https://framerusercontent.com/images/37yCPEIgaDH9cPZHxn5w6dRQzo.jpeg\",srcSet:\"https://framerusercontent.com/images/37yCPEIgaDH9cPZHxn5w6dRQzo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/37yCPEIgaDH9cPZHxn5w6dRQzo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/37yCPEIgaDH9cPZHxn5w6dRQzo.jpeg 1080w\"},className:\"framer-qfcoag\",layoutDependency:layoutDependency,layoutId:\"HLqvOTzes\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/iRgXr4eFJ8I55bQjbz6KsKRKefE.jpeg\",srcSet:\"https://framerusercontent.com/images/iRgXr4eFJ8I55bQjbz6KsKRKefE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iRgXr4eFJ8I55bQjbz6KsKRKefE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iRgXr4eFJ8I55bQjbz6KsKRKefE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iRgXr4eFJ8I55bQjbz6KsKRKefE.jpeg 2592w\"},className:\"framer-10wn563\",layoutDependency:layoutDependency,layoutId:\"D4sBnHqmw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/YmN6XJe3EbHqoc2OtPcGlFtkZg.jpeg\",srcSet:\"https://framerusercontent.com/images/YmN6XJe3EbHqoc2OtPcGlFtkZg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YmN6XJe3EbHqoc2OtPcGlFtkZg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YmN6XJe3EbHqoc2OtPcGlFtkZg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YmN6XJe3EbHqoc2OtPcGlFtkZg.jpeg 4032w\"},className:\"framer-1doalzo\",layoutDependency:layoutDependency,layoutId:\"jS9XNe0Sb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg\",srcSet:\"https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg 4032w\"},className:\"framer-hym344\",layoutDependency:layoutDependency,layoutId:\"lR5xb1gST\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:690,pixelWidth:998,sizes:\"467px\",src:\"https://framerusercontent.com/images/ZLhD8V4Q1A1GDFxGIm9j6Evwz8.jpeg\",srcSet:\"https://framerusercontent.com/images/ZLhD8V4Q1A1GDFxGIm9j6Evwz8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZLhD8V4Q1A1GDFxGIm9j6Evwz8.jpeg 998w\"},className:\"framer-3lh85r\",layoutDependency:layoutDependency,layoutId:\"F7ohUHv5x\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg\",srcSet:\"https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg 2048w\"},className:\"framer-n4rfct\",layoutDependency:layoutDependency,layoutId:\"nWXn70e8C\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/gFP9Cs4rYlButNu06YV0srB4Iag.jpeg\",srcSet:\"https://framerusercontent.com/images/gFP9Cs4rYlButNu06YV0srB4Iag.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gFP9Cs4rYlButNu06YV0srB4Iag.jpeg 1024w\"},className:\"framer-cxyyt0\",layoutDependency:layoutDependency,layoutId:\"mTQiP6792\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/PfTEIZXR3eW1yxiu0AvxDGclp5c.jpeg\",srcSet:\"https://framerusercontent.com/images/PfTEIZXR3eW1yxiu0AvxDGclp5c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PfTEIZXR3eW1yxiu0AvxDGclp5c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PfTEIZXR3eW1yxiu0AvxDGclp5c.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PfTEIZXR3eW1yxiu0AvxDGclp5c.jpeg 4032w\"},className:\"framer-n0fhpu\",layoutDependency:layoutDependency,layoutId:\"Jgpk3AVD9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/ZW9M3yqquZSkNXBFBHabltCnlQM.jpeg\",srcSet:\"https://framerusercontent.com/images/ZW9M3yqquZSkNXBFBHabltCnlQM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZW9M3yqquZSkNXBFBHabltCnlQM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZW9M3yqquZSkNXBFBHabltCnlQM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZW9M3yqquZSkNXBFBHabltCnlQM.jpeg 4032w\"},className:\"framer-fxo0ey\",layoutDependency:layoutDependency,layoutId:\"DzO4KSW1i\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/SVAAkhf9RCCaD3XGLmvvUmVc1GY.jpeg\",srcSet:\"https://framerusercontent.com/images/SVAAkhf9RCCaD3XGLmvvUmVc1GY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/SVAAkhf9RCCaD3XGLmvvUmVc1GY.jpeg 1024w\"},className:\"framer-kno79p\",layoutDependency:layoutDependency,layoutId:\"X6ZZaofe5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/0orm2Ykcd8njtxiD3vcyNnUwU.jpeg\",srcSet:\"https://framerusercontent.com/images/0orm2Ykcd8njtxiD3vcyNnUwU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0orm2Ykcd8njtxiD3vcyNnUwU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0orm2Ykcd8njtxiD3vcyNnUwU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0orm2Ykcd8njtxiD3vcyNnUwU.jpeg 4032w\"},className:\"framer-xuf8kp\",layoutDependency:layoutDependency,layoutId:\"e2kovPkii\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8rtQ2.framer-17uthwt, .framer-8rtQ2 .framer-17uthwt { display: block; }\",\".framer-8rtQ2.framer-1kwxatj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-8rtQ2 .framer-o0xspl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-8rtQ2 .framer-1fnc59y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8rtQ2 .framer-7w9i92-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-8rtQ2 .framer-1m2plod, .framer-8rtQ2 .framer-i4asfr, .framer-8rtQ2 .framer-1fjfu09, .framer-8rtQ2 .framer-1ps5kmy, .framer-8rtQ2 .framer-1uno62a, .framer-8rtQ2 .framer-1yoyhfr, .framer-8rtQ2 .framer-kvyhz7, .framer-8rtQ2 .framer-qfcoag, .framer-8rtQ2 .framer-10wn563, .framer-8rtQ2 .framer-3lh85r, .framer-8rtQ2 .framer-n4rfct, .framer-8rtQ2 .framer-cxyyt0, .framer-8rtQ2 .framer-n0fhpu, .framer-8rtQ2 .framer-fxo0ey, .framer-8rtQ2 .framer-kno79p, .framer-8rtQ2 .framer-xuf8kp { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-8rtQ2 .framer-1afo1gh, .framer-8rtQ2 .framer-ojx8uv, .framer-8rtQ2 .framer-5wj0le, .framer-8rtQ2 .framer-65zj6o, .framer-8rtQ2 .framer-g5ayh9, .framer-8rtQ2 .framer-17scraa, .framer-8rtQ2 .framer-1doalzo, .framer-8rtQ2 .framer-hym344 { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8rtQ2.framer-1kwxatj, .framer-8rtQ2 .framer-o0xspl { gap: 0px; } .framer-8rtQ2.framer-1kwxatj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8rtQ2.framer-1kwxatj > :first-child { margin-left: 0px; } .framer-8rtQ2.framer-1kwxatj > :last-child { margin-right: 0px; } .framer-8rtQ2 .framer-o0xspl > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8rtQ2 .framer-o0xspl > :first-child { margin-top: 0px; } .framer-8rtQ2 .framer-o0xspl > :last-child { margin-bottom: 0px; } }\",\".framer-8rtQ2.framer-v-1y560d4.framer-1kwxatj { width: 810px; }\",\".framer-8rtQ2.framer-v-1y560d4 .framer-o0xspl, .framer-8rtQ2.framer-v-zafma .framer-o0xspl { flex: 1 0 0px; width: 1px; }\",\".framer-8rtQ2.framer-v-zafma.framer-1kwxatj { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"RPF8uop3x\":{\"layout\":[\"fixed\",\"auto\"]},\"at_tjw7em\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerl1xu53iCf=withCSS(Component,css,\"framer-8rtQ2\");export default Framerl1xu53iCf;Framerl1xu53iCf.displayName=\"Water Features gallery\";Framerl1xu53iCf.defaultProps={height:417,width:1440};addPropertyControls(Framerl1xu53iCf,{variant:{options:[\"fB3Lg2Qc3\",\"RPF8uop3x\",\"at_tjw7em\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerl1xu53iCf,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerl1xu53iCf\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"417\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RPF8uop3x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"at_tjw7em\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./l1xu53iCf.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"ij9sx3Oj5\",\"EqI_U5xOJ\",\"ZUmp4yDS8\"];const serializationHash=\"framer-xLt2z\";const variantClassNames={EqI_U5xOJ:\"framer-v-14yjy9g\",ij9sx3Oj5:\"framer-v-1vbqlle\",ZUmp4yDS8:\"framer-v-u3sxqi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"ij9sx3Oj5\",\"Variant 2\":\"EqI_U5xOJ\",\"Variant 3\":\"ZUmp4yDS8\"};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:\"ij9sx3Oj5\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ij9sx3Oj5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1vbqlle\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ij9sx3Oj5\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EqI_U5xOJ:{\"data-framer-name\":\"Variant 2\"},ZUmp4yDS8:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zd6ciu\",layoutDependency:layoutDependency,layoutId:\"hNRF26yKc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"LANDSCAPING\"})}),className:\"framer-19jdae6\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VcvlwOedD\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15cy37w-container\",layoutDependency:layoutDependency,layoutId:\"lExiIUyKY-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"lExiIUyKY\",layoutId:\"lExiIUyKY\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/I5uEQSJdPkqI9mdCbCcTcSKaWs0.jpeg\",srcSet:\"https://framerusercontent.com/images/I5uEQSJdPkqI9mdCbCcTcSKaWs0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/I5uEQSJdPkqI9mdCbCcTcSKaWs0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/I5uEQSJdPkqI9mdCbCcTcSKaWs0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/I5uEQSJdPkqI9mdCbCcTcSKaWs0.jpeg 4032w\"},className:\"framer-9to0xv\",layoutDependency:layoutDependency,layoutId:\"uGGxSViyi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/XmEKUrhsFfA1nvhBkbSLMEngA.jpeg\",srcSet:\"https://framerusercontent.com/images/XmEKUrhsFfA1nvhBkbSLMEngA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/XmEKUrhsFfA1nvhBkbSLMEngA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XmEKUrhsFfA1nvhBkbSLMEngA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XmEKUrhsFfA1nvhBkbSLMEngA.jpeg 4032w\"},className:\"framer-fqql7p\",layoutDependency:layoutDependency,layoutId:\"zsJjuAOBX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1333,pixelWidth:1e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/0JC07hu316etItACB2StzO2gelo.jpg\",srcSet:\"https://framerusercontent.com/images/0JC07hu316etItACB2StzO2gelo.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/0JC07hu316etItACB2StzO2gelo.jpg 1000w\"},className:\"framer-17ui2ys\",layoutDependency:layoutDependency,layoutId:\"mDocBU9TM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2303,pixelWidth:3071,sizes:\"467px\",src:\"https://framerusercontent.com/images/8hAOyLFAenNvVQX98IBbm0tLUig.jpeg\",srcSet:\"https://framerusercontent.com/images/8hAOyLFAenNvVQX98IBbm0tLUig.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8hAOyLFAenNvVQX98IBbm0tLUig.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8hAOyLFAenNvVQX98IBbm0tLUig.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8hAOyLFAenNvVQX98IBbm0tLUig.jpeg 3071w\"},className:\"framer-1wotbve\",layoutDependency:layoutDependency,layoutId:\"DdcMF0YES\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1333,pixelWidth:1e3,sizes:\"250px\",src:\"https://framerusercontent.com/images/5V3yRtlmAryKqdPOhv10Qdo2C0.jpg\",srcSet:\"https://framerusercontent.com/images/5V3yRtlmAryKqdPOhv10Qdo2C0.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/5V3yRtlmAryKqdPOhv10Qdo2C0.jpg 1000w\"},className:\"framer-1cmioyh\",layoutDependency:layoutDependency,layoutId:\"DHEOfcU1r\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:750,pixelWidth:1e3,sizes:\"467px\",src:\"https://framerusercontent.com/images/66hLt8uF60qadicGg8ksoE6vA.jpg\",srcSet:\"https://framerusercontent.com/images/66hLt8uF60qadicGg8ksoE6vA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/66hLt8uF60qadicGg8ksoE6vA.jpg 1000w\"},className:\"framer-1csw5kt\",layoutDependency:layoutDependency,layoutId:\"czIDuoKBp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:648,pixelWidth:968,sizes:\"467px\",src:\"https://framerusercontent.com/images/bqof1e6M1MSzCzdzNa8U8Sl02e8.jpg\",srcSet:\"https://framerusercontent.com/images/bqof1e6M1MSzCzdzNa8U8Sl02e8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/bqof1e6M1MSzCzdzNa8U8Sl02e8.jpg 968w\"},className:\"framer-1ys3ass\",layoutDependency:layoutDependency,layoutId:\"ZnZ5Bh543\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1944,sizes:\"250px\",src:\"https://framerusercontent.com/images/vTwN3gDGeXG72oxxxPwhzRbumI.jpeg\",srcSet:\"https://framerusercontent.com/images/vTwN3gDGeXG72oxxxPwhzRbumI.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/vTwN3gDGeXG72oxxxPwhzRbumI.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/vTwN3gDGeXG72oxxxPwhzRbumI.jpeg 1944w\"},className:\"framer-cs6wqr\",layoutDependency:layoutDependency,layoutId:\"bbFQN4vRP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/9GlXhLO0khXNDcMlLgsrd7fzY0.jpeg\",srcSet:\"https://framerusercontent.com/images/9GlXhLO0khXNDcMlLgsrd7fzY0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9GlXhLO0khXNDcMlLgsrd7fzY0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9GlXhLO0khXNDcMlLgsrd7fzY0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9GlXhLO0khXNDcMlLgsrd7fzY0.jpeg 4032w\"},className:\"framer-1ofqjhk\",layoutDependency:layoutDependency,layoutId:\"luGzVz9NN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:930,pixelWidth:1e3,sizes:\"467px\",src:\"https://framerusercontent.com/images/v9KUlWLoXMlnQxvyodcOfL0pGI.jpg\",srcSet:\"https://framerusercontent.com/images/v9KUlWLoXMlnQxvyodcOfL0pGI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/v9KUlWLoXMlnQxvyodcOfL0pGI.jpg 1000w\"},className:\"framer-s2j2j4\",layoutDependency:layoutDependency,layoutId:\"P8PkMclFK\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xLt2z.framer-md9qcc, .framer-xLt2z .framer-md9qcc { display: block; }\",\".framer-xLt2z.framer-1vbqlle { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-xLt2z .framer-zd6ciu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-xLt2z .framer-19jdae6 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xLt2z .framer-15cy37w-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-xLt2z .framer-9to0xv, .framer-xLt2z .framer-fqql7p, .framer-xLt2z .framer-1wotbve, .framer-xLt2z .framer-1csw5kt, .framer-xLt2z .framer-1ys3ass, .framer-xLt2z .framer-s2j2j4 { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-xLt2z .framer-17ui2ys, .framer-xLt2z .framer-1cmioyh, .framer-xLt2z .framer-cs6wqr, .framer-xLt2z .framer-1ofqjhk { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xLt2z.framer-1vbqlle, .framer-xLt2z .framer-zd6ciu { gap: 0px; } .framer-xLt2z.framer-1vbqlle > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-xLt2z.framer-1vbqlle > :first-child { margin-left: 0px; } .framer-xLt2z.framer-1vbqlle > :last-child { margin-right: 0px; } .framer-xLt2z .framer-zd6ciu > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-xLt2z .framer-zd6ciu > :first-child { margin-top: 0px; } .framer-xLt2z .framer-zd6ciu > :last-child { margin-bottom: 0px; } }\",\".framer-xLt2z.framer-v-14yjy9g.framer-1vbqlle { width: 810px; }\",\".framer-xLt2z.framer-v-14yjy9g .framer-zd6ciu, .framer-xLt2z.framer-v-u3sxqi .framer-zd6ciu { flex: 1 0 0px; width: 1px; }\",\".framer-xLt2z.framer-v-u3sxqi.framer-1vbqlle { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EqI_U5xOJ\":{\"layout\":[\"fixed\",\"auto\"]},\"ZUmp4yDS8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernCj57jLeH=withCSS(Component,css,\"framer-xLt2z\");export default FramernCj57jLeH;FramernCj57jLeH.displayName=\"Landscaping Gallery\";FramernCj57jLeH.defaultProps={height:417,width:1440};addPropertyControls(FramernCj57jLeH,{variant:{options:[\"ij9sx3Oj5\",\"EqI_U5xOJ\",\"ZUmp4yDS8\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramernCj57jLeH,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernCj57jLeH\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EqI_U5xOJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZUmp4yDS8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"417\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nCj57jLeH.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"Jn9WNCNRN\",\"iVI8fjDsV\",\"R_0Q1GXm1\"];const serializationHash=\"framer-oFc4Q\";const variantClassNames={iVI8fjDsV:\"framer-v-gfc6uz\",Jn9WNCNRN:\"framer-v-kwlu1p\",R_0Q1GXm1:\"framer-v-5g5gn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"Jn9WNCNRN\",\"Variant 2\":\"iVI8fjDsV\",\"Variant 3\":\"R_0Q1GXm1\"};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:\"Jn9WNCNRN\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Jn9WNCNRN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kwlu1p\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Jn9WNCNRN\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({iVI8fjDsV:{\"data-framer-name\":\"Variant 2\"},R_0Q1GXm1:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xnert1\",layoutDependency:layoutDependency,layoutId:\"IasUlS455\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"DRIVEWAYS\"})}),className:\"framer-vpezsm\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UMWzqgGm9\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x2uz9w-container\",layoutDependency:layoutDependency,layoutId:\"mO5wOpgHy-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"mO5wOpgHy\",layoutId:\"mO5wOpgHy\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:648,pixelWidth:968,sizes:\"467px\",src:\"https://framerusercontent.com/images/YCbgilzFoJZFYWqQMtnHAgULos.jpeg\",srcSet:\"https://framerusercontent.com/images/YCbgilzFoJZFYWqQMtnHAgULos.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/YCbgilzFoJZFYWqQMtnHAgULos.jpeg 968w\"},className:\"framer-duutfm\",layoutDependency:layoutDependency,layoutId:\"q191fzhuJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2448,pixelWidth:3264,sizes:\"467px\",src:\"https://framerusercontent.com/images/E6sktUj941MkhL3nqJb1zW3fEU.jpeg\",srcSet:\"https://framerusercontent.com/images/E6sktUj941MkhL3nqJb1zW3fEU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/E6sktUj941MkhL3nqJb1zW3fEU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/E6sktUj941MkhL3nqJb1zW3fEU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/E6sktUj941MkhL3nqJb1zW3fEU.jpeg 3264w\"},className:\"framer-3saiqq\",layoutDependency:layoutDependency,layoutId:\"RqvpJ83cK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2448,pixelWidth:3264,sizes:\"467px\",src:\"https://framerusercontent.com/images/VDVz785PfDbh8O4aqC33upRffo.jpeg\",srcSet:\"https://framerusercontent.com/images/VDVz785PfDbh8O4aqC33upRffo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/VDVz785PfDbh8O4aqC33upRffo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VDVz785PfDbh8O4aqC33upRffo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VDVz785PfDbh8O4aqC33upRffo.jpeg 3264w\"},className:\"framer-g1nz1a\",layoutDependency:layoutDependency,layoutId:\"Fy5aMMkfi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/V8ktU4hYTZ1tztO6d8Fe0Zvg4.jpeg\",srcSet:\"https://framerusercontent.com/images/V8ktU4hYTZ1tztO6d8Fe0Zvg4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/V8ktU4hYTZ1tztO6d8Fe0Zvg4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/V8ktU4hYTZ1tztO6d8Fe0Zvg4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/V8ktU4hYTZ1tztO6d8Fe0Zvg4.jpeg 2592w\"},className:\"framer-18ev2b6\",layoutDependency:layoutDependency,layoutId:\"NLpsyIYG6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/VQpdH9hK2Db9vDyy142zRWNJc.jpeg\",srcSet:\"https://framerusercontent.com/images/VQpdH9hK2Db9vDyy142zRWNJc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/VQpdH9hK2Db9vDyy142zRWNJc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VQpdH9hK2Db9vDyy142zRWNJc.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VQpdH9hK2Db9vDyy142zRWNJc.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/VQpdH9hK2Db9vDyy142zRWNJc.jpeg 4320w\"},className:\"framer-5pixf9\",layoutDependency:layoutDependency,layoutId:\"UWWgCxLr5\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2702,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/3fy3n9NeItZ1nyHKPoGJF8TKAc.jpeg\",srcSet:\"https://framerusercontent.com/images/3fy3n9NeItZ1nyHKPoGJF8TKAc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3fy3n9NeItZ1nyHKPoGJF8TKAc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3fy3n9NeItZ1nyHKPoGJF8TKAc.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3fy3n9NeItZ1nyHKPoGJF8TKAc.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/3fy3n9NeItZ1nyHKPoGJF8TKAc.jpeg 4320w\"},className:\"framer-1v9yz1m\",layoutDependency:layoutDependency,layoutId:\"ek4HEXdrV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/mmQ3aVfBsLXxsLJcdlqoGm7vGg.jpeg\",srcSet:\"https://framerusercontent.com/images/mmQ3aVfBsLXxsLJcdlqoGm7vGg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mmQ3aVfBsLXxsLJcdlqoGm7vGg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mmQ3aVfBsLXxsLJcdlqoGm7vGg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mmQ3aVfBsLXxsLJcdlqoGm7vGg.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mmQ3aVfBsLXxsLJcdlqoGm7vGg.jpeg 4320w\"},className:\"framer-huoir7\",layoutDependency:layoutDependency,layoutId:\"wHC47gcSE\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg\",srcSet:\"https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg 4320w\"},className:\"framer-ksimbe\",layoutDependency:layoutDependency,layoutId:\"q2jGnxV11\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/QOGtEYFNmHgPRXCpx0UfStXO4.jpeg\",srcSet:\"https://framerusercontent.com/images/QOGtEYFNmHgPRXCpx0UfStXO4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/QOGtEYFNmHgPRXCpx0UfStXO4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QOGtEYFNmHgPRXCpx0UfStXO4.jpeg 2048w\"},className:\"framer-1gcpibu\",layoutDependency:layoutDependency,layoutId:\"FSADS5PSf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:3872,sizes:\"467px\",src:\"https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg\",srcSet:\"https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg 3872w\"},className:\"framer-6qix\",layoutDependency:layoutDependency,layoutId:\"mxaXjfzje\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/UGwE2Lj9LQ69pEaUKL0a1KsyU0.jpeg\",srcSet:\"https://framerusercontent.com/images/UGwE2Lj9LQ69pEaUKL0a1KsyU0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/UGwE2Lj9LQ69pEaUKL0a1KsyU0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UGwE2Lj9LQ69pEaUKL0a1KsyU0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UGwE2Lj9LQ69pEaUKL0a1KsyU0.jpeg 2592w\"},className:\"framer-nz0e52\",layoutDependency:layoutDependency,layoutId:\"Lsws9CMAM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2418,pixelWidth:6284,sizes:\"467px\",src:\"https://framerusercontent.com/images/aydoIbsFcnJ81uFH6sISVp37Qco.jpeg\",srcSet:\"https://framerusercontent.com/images/aydoIbsFcnJ81uFH6sISVp37Qco.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/aydoIbsFcnJ81uFH6sISVp37Qco.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aydoIbsFcnJ81uFH6sISVp37Qco.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/aydoIbsFcnJ81uFH6sISVp37Qco.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/aydoIbsFcnJ81uFH6sISVp37Qco.jpeg 6284w\"},className:\"framer-94h4r3\",layoutDependency:layoutDependency,layoutId:\"hRiAVc0op\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg\",srcSet:\"https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg 2048w\"},className:\"framer-5es4bq\",layoutDependency:layoutDependency,layoutId:\"JMV4GkSgX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/t78ozsGR81MGIndJB83NVHDQIkQ.jpeg\",srcSet:\"https://framerusercontent.com/images/t78ozsGR81MGIndJB83NVHDQIkQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/t78ozsGR81MGIndJB83NVHDQIkQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/t78ozsGR81MGIndJB83NVHDQIkQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/t78ozsGR81MGIndJB83NVHDQIkQ.jpeg 2592w\"},className:\"framer-ktbl29\",layoutDependency:layoutDependency,layoutId:\"uS9cR3lk6\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:3872,sizes:\"467px\",src:\"https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg\",srcSet:\"https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/W1KVRVeqZsjNdRrKAYlakETvjE.jpeg 3872w\"},className:\"framer-1wr8ljf\",layoutDependency:layoutDependency,layoutId:\"hdOyWwt3u\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg\",srcSet:\"https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/gHYT3JTczIqNgdQQawgfSeuDHM.jpeg 4320w\"},className:\"framer-1t4ih0k\",layoutDependency:layoutDependency,layoutId:\"j3tR42Oy2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/7jps5UUiJF4VtkFxmzGvKdbb8zk.jpeg\",srcSet:\"https://framerusercontent.com/images/7jps5UUiJF4VtkFxmzGvKdbb8zk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/7jps5UUiJF4VtkFxmzGvKdbb8zk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jps5UUiJF4VtkFxmzGvKdbb8zk.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7jps5UUiJF4VtkFxmzGvKdbb8zk.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/7jps5UUiJF4VtkFxmzGvKdbb8zk.jpeg 4320w\"},className:\"framer-8k74cl\",layoutDependency:layoutDependency,layoutId:\"v2V_U99RH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/iJ8dYrNHZ1sOV3RersYoGbJVBXU.jpeg\",srcSet:\"https://framerusercontent.com/images/iJ8dYrNHZ1sOV3RersYoGbJVBXU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/iJ8dYrNHZ1sOV3RersYoGbJVBXU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/iJ8dYrNHZ1sOV3RersYoGbJVBXU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/iJ8dYrNHZ1sOV3RersYoGbJVBXU.jpeg 2592w\"},className:\"framer-1amblqh\",layoutDependency:layoutDependency,layoutId:\"f5CjRDzWH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:480,pixelWidth:640,sizes:\"467px\",src:\"https://framerusercontent.com/images/AjNA0VP5ctPcQBIkatMKGk6Hu7U.jpeg\",srcSet:\"https://framerusercontent.com/images/AjNA0VP5ctPcQBIkatMKGk6Hu7U.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/AjNA0VP5ctPcQBIkatMKGk6Hu7U.jpeg 640w\"},className:\"framer-1rzqhcw\",layoutDependency:layoutDependency,layoutId:\"oLZpFz0Y4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2772,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/U1Era8IgTd6VmOB67vwgFSYQKCM.jpeg\",srcSet:\"https://framerusercontent.com/images/U1Era8IgTd6VmOB67vwgFSYQKCM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/U1Era8IgTd6VmOB67vwgFSYQKCM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/U1Era8IgTd6VmOB67vwgFSYQKCM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/U1Era8IgTd6VmOB67vwgFSYQKCM.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/U1Era8IgTd6VmOB67vwgFSYQKCM.jpeg 4320w\"},className:\"framer-1liapsw\",layoutDependency:layoutDependency,layoutId:\"JEy2uKMZg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg\",srcSet:\"https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z2gsnJkHzuKNeH5iUW6g8iG3HA.jpeg 2048w\"},className:\"framer-1iwtu59\",layoutDependency:layoutDependency,layoutId:\"Z09aLmtG8\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-oFc4Q.framer-1ck18r0, .framer-oFc4Q .framer-1ck18r0 { display: block; }\",\".framer-oFc4Q.framer-kwlu1p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-oFc4Q .framer-1xnert1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-oFc4Q .framer-vpezsm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-oFc4Q .framer-1x2uz9w-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-oFc4Q .framer-duutfm, .framer-oFc4Q .framer-3saiqq, .framer-oFc4Q .framer-g1nz1a, .framer-oFc4Q .framer-18ev2b6, .framer-oFc4Q .framer-5pixf9, .framer-oFc4Q .framer-1v9yz1m, .framer-oFc4Q .framer-huoir7, .framer-oFc4Q .framer-ksimbe, .framer-oFc4Q .framer-1gcpibu, .framer-oFc4Q .framer-6qix, .framer-oFc4Q .framer-nz0e52, .framer-oFc4Q .framer-94h4r3, .framer-oFc4Q .framer-5es4bq, .framer-oFc4Q .framer-ktbl29, .framer-oFc4Q .framer-1wr8ljf, .framer-oFc4Q .framer-1t4ih0k, .framer-oFc4Q .framer-8k74cl, .framer-oFc4Q .framer-1amblqh, .framer-oFc4Q .framer-1rzqhcw, .framer-oFc4Q .framer-1liapsw, .framer-oFc4Q .framer-1iwtu59 { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-oFc4Q.framer-kwlu1p, .framer-oFc4Q .framer-1xnert1 { gap: 0px; } .framer-oFc4Q.framer-kwlu1p > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-oFc4Q.framer-kwlu1p > :first-child { margin-left: 0px; } .framer-oFc4Q.framer-kwlu1p > :last-child { margin-right: 0px; } .framer-oFc4Q .framer-1xnert1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-oFc4Q .framer-1xnert1 > :first-child { margin-top: 0px; } .framer-oFc4Q .framer-1xnert1 > :last-child { margin-bottom: 0px; } }\",\".framer-oFc4Q.framer-v-gfc6uz.framer-kwlu1p { width: 810px; }\",\".framer-oFc4Q.framer-v-gfc6uz .framer-1xnert1, .framer-oFc4Q.framer-v-5g5gn .framer-1xnert1 { flex: 1 0 0px; width: 1px; }\",\".framer-oFc4Q.framer-v-5g5gn.framer-kwlu1p { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iVI8fjDsV\":{\"layout\":[\"fixed\",\"auto\"]},\"R_0Q1GXm1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerNG_fnJ79s=withCSS(Component,css,\"framer-oFc4Q\");export default FramerNG_fnJ79s;FramerNG_fnJ79s.displayName=\"Driveway Gallery\";FramerNG_fnJ79s.defaultProps={height:417,width:1440};addPropertyControls(FramerNG_fnJ79s,{variant:{options:[\"Jn9WNCNRN\",\"iVI8fjDsV\",\"R_0Q1GXm1\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerNG_fnJ79s,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNG_fnJ79s\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iVI8fjDsV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"R_0Q1GXm1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"417\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NG_fnJ79s.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"LFvIn6Cjc\",\"COhhKAh2s\",\"gd7Ehlrnr\"];const serializationHash=\"framer-sIJru\";const variantClassNames={COhhKAh2s:\"framer-v-19evpa7\",gd7Ehlrnr:\"framer-v-ilihjy\",LFvIn6Cjc:\"framer-v-15uwh3w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"LFvIn6Cjc\",\"Variant 2\":\"COhhKAh2s\",\"Variant 3\":\"gd7Ehlrnr\"};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:\"LFvIn6Cjc\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LFvIn6Cjc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15uwh3w\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"LFvIn6Cjc\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({COhhKAh2s:{\"data-framer-name\":\"Variant 2\"},gd7Ehlrnr:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxu9oh\",layoutDependency:layoutDependency,layoutId:\"JBXaMQXe6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"TIMBER & CARPENTRY\"})}),className:\"framer-1dahfv5\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kif7BORen\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lozfay-container\",layoutDependency:layoutDependency,layoutId:\"Uymik2iit-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"Uymik2iit\",layoutId:\"Uymik2iit\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/PGWzCpPAOuNu7K1AxCR45XlGalo.jpeg\",srcSet:\"https://framerusercontent.com/images/PGWzCpPAOuNu7K1AxCR45XlGalo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PGWzCpPAOuNu7K1AxCR45XlGalo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PGWzCpPAOuNu7K1AxCR45XlGalo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/PGWzCpPAOuNu7K1AxCR45XlGalo.jpeg 4032w\"},className:\"framer-1git1mf\",layoutDependency:layoutDependency,layoutId:\"y8svyu4Aw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:777,pixelWidth:1600,sizes:\"467px\",src:\"https://framerusercontent.com/images/ChXRet1Z9n1pUpMKwSPrIZ021bo.jpeg\",srcSet:\"https://framerusercontent.com/images/ChXRet1Z9n1pUpMKwSPrIZ021bo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ChXRet1Z9n1pUpMKwSPrIZ021bo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ChXRet1Z9n1pUpMKwSPrIZ021bo.jpeg 1600w\"},className:\"framer-1yatlha\",layoutDependency:layoutDependency,layoutId:\"Evit7Dg5m\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3862,pixelWidth:2896,sizes:\"250px\",src:\"https://framerusercontent.com/images/QdaF7PDPdGup8Tb4lqesqfHodM.jpeg\",srcSet:\"https://framerusercontent.com/images/QdaF7PDPdGup8Tb4lqesqfHodM.jpeg?scale-down-to=1024 767w,https://framerusercontent.com/images/QdaF7PDPdGup8Tb4lqesqfHodM.jpeg?scale-down-to=2048 1535w,https://framerusercontent.com/images/QdaF7PDPdGup8Tb4lqesqfHodM.jpeg 2896w\"},className:\"framer-13lli73\",layoutDependency:layoutDependency,layoutId:\"fycu7WWqS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:648,pixelWidth:968,sizes:\"467px\",src:\"https://framerusercontent.com/images/3yLVp2qDW0rOlnxWpvfxAolgJc.jpeg\",srcSet:\"https://framerusercontent.com/images/3yLVp2qDW0rOlnxWpvfxAolgJc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3yLVp2qDW0rOlnxWpvfxAolgJc.jpeg 968w\"},className:\"framer-1e0xs8u\",layoutDependency:layoutDependency,layoutId:\"c11Sr9p76\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2544,pixelWidth:1908,sizes:\"250px\",src:\"https://framerusercontent.com/images/7qhpzdhaZbn61xZBR9otirawrwk.jpeg\",srcSet:\"https://framerusercontent.com/images/7qhpzdhaZbn61xZBR9otirawrwk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/7qhpzdhaZbn61xZBR9otirawrwk.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/7qhpzdhaZbn61xZBR9otirawrwk.jpeg 1908w\"},className:\"framer-1gb7tpk\",layoutDependency:layoutDependency,layoutId:\"OlJVnGNLJ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:576,sizes:\"250px\",src:\"https://framerusercontent.com/images/M4opytBUrbkbKM3tUhckfT7g.jpeg\",srcSet:\"https://framerusercontent.com/images/M4opytBUrbkbKM3tUhckfT7g.jpeg 576w\"},className:\"framer-1ryyisq\",layoutDependency:layoutDependency,layoutId:\"z5z2DoU1n\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sIJru.framer-yj1ekc, .framer-sIJru .framer-yj1ekc { display: block; }\",\".framer-sIJru.framer-15uwh3w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-sIJru .framer-yxu9oh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-sIJru .framer-1dahfv5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-sIJru .framer-1lozfay-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-sIJru .framer-1git1mf, .framer-sIJru .framer-1yatlha, .framer-sIJru .framer-1e0xs8u { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-sIJru .framer-13lli73, .framer-sIJru .framer-1gb7tpk, .framer-sIJru .framer-1ryyisq { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sIJru.framer-15uwh3w, .framer-sIJru .framer-yxu9oh { gap: 0px; } .framer-sIJru.framer-15uwh3w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sIJru.framer-15uwh3w > :first-child { margin-left: 0px; } .framer-sIJru.framer-15uwh3w > :last-child { margin-right: 0px; } .framer-sIJru .framer-yxu9oh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-sIJru .framer-yxu9oh > :first-child { margin-top: 0px; } .framer-sIJru .framer-yxu9oh > :last-child { margin-bottom: 0px; } }\",\".framer-sIJru.framer-v-19evpa7.framer-15uwh3w { width: 810px; }\",\".framer-sIJru.framer-v-19evpa7 .framer-yxu9oh, .framer-sIJru.framer-v-ilihjy .framer-yxu9oh { flex: 1 0 0px; width: 1px; }\",\".framer-sIJru.framer-v-ilihjy.framer-15uwh3w { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"COhhKAh2s\":{\"layout\":[\"fixed\",\"auto\"]},\"gd7Ehlrnr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOW8CWjuDk=withCSS(Component,css,\"framer-sIJru\");export default FramerOW8CWjuDk;FramerOW8CWjuDk.displayName=\"Timber & Carpentry Gallery\";FramerOW8CWjuDk.defaultProps={height:417,width:1440};addPropertyControls(FramerOW8CWjuDk,{variant:{options:[\"LFvIn6Cjc\",\"COhhKAh2s\",\"gd7Ehlrnr\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOW8CWjuDk,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOW8CWjuDk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"COhhKAh2s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gd7Ehlrnr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"417\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OW8CWjuDk.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"cXqH1MxDS\",\"ZrtDG70t1\",\"IEsA3WjVB\"];const serializationHash=\"framer-JegFr\";const variantClassNames={cXqH1MxDS:\"framer-v-n8a7io\",IEsA3WjVB:\"framer-v-1q0np2l\",ZrtDG70t1:\"framer-v-bw9zwq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"cXqH1MxDS\",\"Variant 2\":\"ZrtDG70t1\",\"Variant 3\":\"IEsA3WjVB\"};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:\"cXqH1MxDS\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"cXqH1MxDS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-n8a7io\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"cXqH1MxDS\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({IEsA3WjVB:{\"data-framer-name\":\"Variant 3\"},ZrtDG70t1:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jve7fh\",layoutDependency:layoutDependency,layoutId:\"p1j8g0FQ7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"LIME MORTAR\"})}),className:\"framer-14krwyr\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"v4XDp2veq\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11wd95k-container\",layoutDependency:layoutDependency,layoutId:\"PYMMUX5YD-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"PYMMUX5YD\",layoutId:\"PYMMUX5YD\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/xTrP04KjtHTpYIxNMOykFfSHnTI.jpeg\",srcSet:\"https://framerusercontent.com/images/xTrP04KjtHTpYIxNMOykFfSHnTI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/xTrP04KjtHTpYIxNMOykFfSHnTI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xTrP04KjtHTpYIxNMOykFfSHnTI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xTrP04KjtHTpYIxNMOykFfSHnTI.jpeg 2592w\"},className:\"framer-1czoafy\",layoutDependency:layoutDependency,layoutId:\"KVbUamNXA\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1331,pixelWidth:2530,sizes:\"467px\",src:\"https://framerusercontent.com/images/ANsIq2nsPbLgqRgtrBAUgU1mS8g.jpeg\",srcSet:\"https://framerusercontent.com/images/ANsIq2nsPbLgqRgtrBAUgU1mS8g.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ANsIq2nsPbLgqRgtrBAUgU1mS8g.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ANsIq2nsPbLgqRgtrBAUgU1mS8g.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ANsIq2nsPbLgqRgtrBAUgU1mS8g.jpeg 2530w\"},className:\"framer-46fcxf\",layoutDependency:layoutDependency,layoutId:\"Fs7EaHu0q\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4896,pixelWidth:3672,sizes:\"250px\",src:\"https://framerusercontent.com/images/jY9tP268x4rwxIaSKUb1Kj0hU.jpeg\",srcSet:\"https://framerusercontent.com/images/jY9tP268x4rwxIaSKUb1Kj0hU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jY9tP268x4rwxIaSKUb1Kj0hU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jY9tP268x4rwxIaSKUb1Kj0hU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jY9tP268x4rwxIaSKUb1Kj0hU.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/jY9tP268x4rwxIaSKUb1Kj0hU.jpeg 4896w\"},className:\"framer-29ae4y\",layoutDependency:layoutDependency,layoutId:\"UBMf19ggK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:3872,sizes:\"467px\",src:\"https://framerusercontent.com/images/gKKP11N6FrMDEBhG1j6TDqBOrW8.jpeg\",srcSet:\"https://framerusercontent.com/images/gKKP11N6FrMDEBhG1j6TDqBOrW8.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/gKKP11N6FrMDEBhG1j6TDqBOrW8.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gKKP11N6FrMDEBhG1j6TDqBOrW8.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/gKKP11N6FrMDEBhG1j6TDqBOrW8.jpeg 3872w\"},className:\"framer-1d56dh2\",layoutDependency:layoutDependency,layoutId:\"If68ARjvC\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1944,sizes:\"250px\",src:\"https://framerusercontent.com/images/SoaVe9uu7WUy3SrsOt28nmOqaQ.jpeg\",srcSet:\"https://framerusercontent.com/images/SoaVe9uu7WUy3SrsOt28nmOqaQ.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/SoaVe9uu7WUy3SrsOt28nmOqaQ.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/SoaVe9uu7WUy3SrsOt28nmOqaQ.jpeg 1944w\"},className:\"framer-1dp6fxf\",layoutDependency:layoutDependency,layoutId:\"Mkh_Il38g\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1885,pixelWidth:2320,sizes:\"467px\",src:\"https://framerusercontent.com/images/dPA4U3ZkQPxRPBJ81256w9dR7UQ.jpeg\",srcSet:\"https://framerusercontent.com/images/dPA4U3ZkQPxRPBJ81256w9dR7UQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/dPA4U3ZkQPxRPBJ81256w9dR7UQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dPA4U3ZkQPxRPBJ81256w9dR7UQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dPA4U3ZkQPxRPBJ81256w9dR7UQ.jpeg 2320w\"},className:\"framer-1d087nw\",layoutDependency:layoutDependency,layoutId:\"FbBPPU3IU\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:3872,sizes:\"467px\",src:\"https://framerusercontent.com/images/1cnM9kfofaPhbB0UTtekiRXTW0.jpeg\",srcSet:\"https://framerusercontent.com/images/1cnM9kfofaPhbB0UTtekiRXTW0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/1cnM9kfofaPhbB0UTtekiRXTW0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1cnM9kfofaPhbB0UTtekiRXTW0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/1cnM9kfofaPhbB0UTtekiRXTW0.jpeg 3872w\"},className:\"framer-8xgm6d\",layoutDependency:layoutDependency,layoutId:\"Ho9CkRZut\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1936,sizes:\"250px\",src:\"https://framerusercontent.com/images/69iGCWeCBgPs2LkIEDO8dKqoxEI.jpeg\",srcSet:\"https://framerusercontent.com/images/69iGCWeCBgPs2LkIEDO8dKqoxEI.jpeg?scale-down-to=1024 764w,https://framerusercontent.com/images/69iGCWeCBgPs2LkIEDO8dKqoxEI.jpeg?scale-down-to=2048 1529w,https://framerusercontent.com/images/69iGCWeCBgPs2LkIEDO8dKqoxEI.jpeg 1936w\"},className:\"framer-1s3t3zq\",layoutDependency:layoutDependency,layoutId:\"gVUnUdYBT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4320,pixelWidth:3240,sizes:\"250px\",src:\"https://framerusercontent.com/images/mHxiVGboElbsefid2Kq2W5oct8.jpeg\",srcSet:\"https://framerusercontent.com/images/mHxiVGboElbsefid2Kq2W5oct8.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/mHxiVGboElbsefid2Kq2W5oct8.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/mHxiVGboElbsefid2Kq2W5oct8.jpeg?scale-down-to=4096 3072w,https://framerusercontent.com/images/mHxiVGboElbsefid2Kq2W5oct8.jpeg 3240w\"},className:\"framer-j9xrmi\",layoutDependency:layoutDependency,layoutId:\"iHtNyXVsm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3240,pixelWidth:4320,sizes:\"467px\",src:\"https://framerusercontent.com/images/vxLtu2OHeBowUGyRsYxBkgmdZ0E.jpeg\",srcSet:\"https://framerusercontent.com/images/vxLtu2OHeBowUGyRsYxBkgmdZ0E.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vxLtu2OHeBowUGyRsYxBkgmdZ0E.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vxLtu2OHeBowUGyRsYxBkgmdZ0E.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vxLtu2OHeBowUGyRsYxBkgmdZ0E.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/vxLtu2OHeBowUGyRsYxBkgmdZ0E.jpeg 4320w\"},className:\"framer-1tudljk\",layoutDependency:layoutDependency,layoutId:\"NhtXT9gpo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2043,pixelWidth:2642,sizes:\"467px\",src:\"https://framerusercontent.com/images/QzGR0WvOkwAPUrr1ys4qwoiYqqc.jpeg\",srcSet:\"https://framerusercontent.com/images/QzGR0WvOkwAPUrr1ys4qwoiYqqc.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/QzGR0WvOkwAPUrr1ys4qwoiYqqc.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QzGR0WvOkwAPUrr1ys4qwoiYqqc.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QzGR0WvOkwAPUrr1ys4qwoiYqqc.jpeg 2642w\"},className:\"framer-vsdx2h\",layoutDependency:layoutDependency,layoutId:\"GfgFs0tPe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2552,pixelWidth:1914,sizes:\"250px\",src:\"https://framerusercontent.com/images/8D7h4ZgjJmW86hXZPL760H7M.jpeg\",srcSet:\"https://framerusercontent.com/images/8D7h4ZgjJmW86hXZPL760H7M.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/8D7h4ZgjJmW86hXZPL760H7M.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/8D7h4ZgjJmW86hXZPL760H7M.jpeg 1914w\"},className:\"framer-1ur7996\",layoutDependency:layoutDependency,layoutId:\"cHyQ2qDjn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2345,pixelWidth:1758,sizes:\"250px\",src:\"https://framerusercontent.com/images/71ScVTFJBVaWI1cPjq0ljdDp6Ts.jpeg\",srcSet:\"https://framerusercontent.com/images/71ScVTFJBVaWI1cPjq0ljdDp6Ts.jpeg?scale-down-to=1024 767w,https://framerusercontent.com/images/71ScVTFJBVaWI1cPjq0ljdDp6Ts.jpeg?scale-down-to=2048 1535w,https://framerusercontent.com/images/71ScVTFJBVaWI1cPjq0ljdDp6Ts.jpeg 1758w\"},className:\"framer-qnxr1v\",layoutDependency:layoutDependency,layoutId:\"uvzSwJYYO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2848,pixelWidth:3510,sizes:\"467px\",src:\"https://framerusercontent.com/images/jOCBjQIfOoLaJN6DgYv7J0qVDY0.jpeg\",srcSet:\"https://framerusercontent.com/images/jOCBjQIfOoLaJN6DgYv7J0qVDY0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jOCBjQIfOoLaJN6DgYv7J0qVDY0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jOCBjQIfOoLaJN6DgYv7J0qVDY0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jOCBjQIfOoLaJN6DgYv7J0qVDY0.jpeg 3510w\"},className:\"framer-d04su8\",layoutDependency:layoutDependency,layoutId:\"waKn82ijX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:3637,sizes:\"467px\",src:\"https://framerusercontent.com/images/mbNmVfddXEolrqK2g7xrviI6pE.jpeg\",srcSet:\"https://framerusercontent.com/images/mbNmVfddXEolrqK2g7xrviI6pE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mbNmVfddXEolrqK2g7xrviI6pE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mbNmVfddXEolrqK2g7xrviI6pE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mbNmVfddXEolrqK2g7xrviI6pE.jpeg 3637w\"},className:\"framer-1m43eoz\",layoutDependency:layoutDependency,layoutId:\"z01qkmsjj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/7NJW8WSWWoNx0Q4KPrkxOhIPAnU.jpeg\",srcSet:\"https://framerusercontent.com/images/7NJW8WSWWoNx0Q4KPrkxOhIPAnU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/7NJW8WSWWoNx0Q4KPrkxOhIPAnU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7NJW8WSWWoNx0Q4KPrkxOhIPAnU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7NJW8WSWWoNx0Q4KPrkxOhIPAnU.jpeg 4032w\"},className:\"framer-w8qu9s\",layoutDependency:layoutDependency,layoutId:\"hczeqQjrp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/byFYeklsJwiehIbWB051FU1IgY.jpeg\",srcSet:\"https://framerusercontent.com/images/byFYeklsJwiehIbWB051FU1IgY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/byFYeklsJwiehIbWB051FU1IgY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/byFYeklsJwiehIbWB051FU1IgY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/byFYeklsJwiehIbWB051FU1IgY.jpeg 4032w\"},className:\"framer-p6irzv\",layoutDependency:layoutDependency,layoutId:\"QpYx7mBPL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/XbeTTfwq1vPVuWq4Jkyau22unJM.jpeg\",srcSet:\"https://framerusercontent.com/images/XbeTTfwq1vPVuWq4Jkyau22unJM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/XbeTTfwq1vPVuWq4Jkyau22unJM.jpeg 1024w\"},className:\"framer-1yvy1fd\",layoutDependency:layoutDependency,layoutId:\"UwD3U0MmN\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1024,sizes:\"467px\",src:\"https://framerusercontent.com/images/cMslHuz1hE3xiVeF66n47oOdg.jpeg\",srcSet:\"https://framerusercontent.com/images/cMslHuz1hE3xiVeF66n47oOdg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/cMslHuz1hE3xiVeF66n47oOdg.jpeg 1024w\"},className:\"framer-1y82bie\",layoutDependency:layoutDependency,layoutId:\"hs0_hSj8v\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/fdvEKpLtiXzyF795exQYS7EKhXU.jpeg\",srcSet:\"https://framerusercontent.com/images/fdvEKpLtiXzyF795exQYS7EKhXU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/fdvEKpLtiXzyF795exQYS7EKhXU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fdvEKpLtiXzyF795exQYS7EKhXU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fdvEKpLtiXzyF795exQYS7EKhXU.jpeg 2592w\"},className:\"framer-bki8j3\",layoutDependency:layoutDependency,layoutId:\"TR8Jrr9FV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/sS1WNPvgipsmgtglCtMSluDKBeY.jpeg\",srcSet:\"https://framerusercontent.com/images/sS1WNPvgipsmgtglCtMSluDKBeY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/sS1WNPvgipsmgtglCtMSluDKBeY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sS1WNPvgipsmgtglCtMSluDKBeY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sS1WNPvgipsmgtglCtMSluDKBeY.jpeg 2592w\"},className:\"framer-dz520n\",layoutDependency:layoutDependency,layoutId:\"I_tcFtbKH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/3BRhTs2dpawsqJG56hkWVkcuv3M.jpeg\",srcSet:\"https://framerusercontent.com/images/3BRhTs2dpawsqJG56hkWVkcuv3M.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/3BRhTs2dpawsqJG56hkWVkcuv3M.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3BRhTs2dpawsqJG56hkWVkcuv3M.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3BRhTs2dpawsqJG56hkWVkcuv3M.jpeg 2592w\"},className:\"framer-ey7h3h\",layoutDependency:layoutDependency,layoutId:\"gRsLWoH0J\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/nigqdO9bcDDzOfaA9e1f22TUs.jpeg\",srcSet:\"https://framerusercontent.com/images/nigqdO9bcDDzOfaA9e1f22TUs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/nigqdO9bcDDzOfaA9e1f22TUs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nigqdO9bcDDzOfaA9e1f22TUs.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nigqdO9bcDDzOfaA9e1f22TUs.jpeg 2592w\"},className:\"framer-lvalcl\",layoutDependency:layoutDependency,layoutId:\"WKAP_4obV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/tcILAO3DkMzo0dyDZrFDFlSZTMQ.jpeg\",srcSet:\"https://framerusercontent.com/images/tcILAO3DkMzo0dyDZrFDFlSZTMQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/tcILAO3DkMzo0dyDZrFDFlSZTMQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/tcILAO3DkMzo0dyDZrFDFlSZTMQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/tcILAO3DkMzo0dyDZrFDFlSZTMQ.jpeg 2592w\"},className:\"framer-11as4kz\",layoutDependency:layoutDependency,layoutId:\"NpDjpz4k1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/VSDz6auF3Utcv0WgpPrP5fIF5DM.jpeg\",srcSet:\"https://framerusercontent.com/images/VSDz6auF3Utcv0WgpPrP5fIF5DM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/VSDz6auF3Utcv0WgpPrP5fIF5DM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VSDz6auF3Utcv0WgpPrP5fIF5DM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VSDz6auF3Utcv0WgpPrP5fIF5DM.jpeg 2592w\"},className:\"framer-w4mrso\",layoutDependency:layoutDependency,layoutId:\"xRoc0vZmn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:4e3,sizes:\"467px\",src:\"https://framerusercontent.com/images/2EGgEf4IiJw2lPkiiACxtaQw9A.jpeg\",srcSet:\"https://framerusercontent.com/images/2EGgEf4IiJw2lPkiiACxtaQw9A.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/2EGgEf4IiJw2lPkiiACxtaQw9A.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/2EGgEf4IiJw2lPkiiACxtaQw9A.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/2EGgEf4IiJw2lPkiiACxtaQw9A.jpeg 4000w\"},className:\"framer-lfmv5g\",layoutDependency:layoutDependency,layoutId:\"BvNoeZmuD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3e3,pixelWidth:4e3,sizes:\"467px\",src:\"https://framerusercontent.com/images/MJZqnVZKLZxNh4h5vlzwvk5M0c.jpeg\",srcSet:\"https://framerusercontent.com/images/MJZqnVZKLZxNh4h5vlzwvk5M0c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MJZqnVZKLZxNh4h5vlzwvk5M0c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MJZqnVZKLZxNh4h5vlzwvk5M0c.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MJZqnVZKLZxNh4h5vlzwvk5M0c.jpeg 4000w\"},className:\"framer-2xzaz7\",layoutDependency:layoutDependency,layoutId:\"g2zBmwF8Y\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/kEib78DUzl25TPSgEsSdSHH82tQ.jpeg\",srcSet:\"https://framerusercontent.com/images/kEib78DUzl25TPSgEsSdSHH82tQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/kEib78DUzl25TPSgEsSdSHH82tQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/kEib78DUzl25TPSgEsSdSHH82tQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/kEib78DUzl25TPSgEsSdSHH82tQ.jpeg 2592w\"},className:\"framer-8pljcm\",layoutDependency:layoutDependency,layoutId:\"l6vmYNsFR\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:648,pixelWidth:1006,sizes:\"467px\",src:\"https://framerusercontent.com/images/p7kNkDF04kmw66xseKzZO5PJ1w.jpeg\",srcSet:\"https://framerusercontent.com/images/p7kNkDF04kmw66xseKzZO5PJ1w.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/p7kNkDF04kmw66xseKzZO5PJ1w.jpeg 1006w\"},className:\"framer-1vcjg3w\",layoutDependency:layoutDependency,layoutId:\"GsJcJXhWy\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:648,pixelWidth:1158,sizes:\"467px\",src:\"https://framerusercontent.com/images/pvyj7uAWh7ZHaBppXojDjBRvuM.jpeg\",srcSet:\"https://framerusercontent.com/images/pvyj7uAWh7ZHaBppXojDjBRvuM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/pvyj7uAWh7ZHaBppXojDjBRvuM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pvyj7uAWh7ZHaBppXojDjBRvuM.jpeg 1158w\"},className:\"framer-1y7twoq\",layoutDependency:layoutDependency,layoutId:\"urbuuyKZw\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-JegFr.framer-1kfea6d, .framer-JegFr .framer-1kfea6d { display: block; }\",\".framer-JegFr.framer-n8a7io { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-JegFr .framer-1jve7fh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-JegFr .framer-14krwyr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-JegFr .framer-11wd95k-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-JegFr .framer-1czoafy, .framer-JegFr .framer-46fcxf, .framer-JegFr .framer-1d56dh2, .framer-JegFr .framer-1d087nw, .framer-JegFr .framer-8xgm6d, .framer-JegFr .framer-1tudljk, .framer-JegFr .framer-vsdx2h, .framer-JegFr .framer-d04su8, .framer-JegFr .framer-1m43eoz, .framer-JegFr .framer-w8qu9s, .framer-JegFr .framer-p6irzv, .framer-JegFr .framer-1yvy1fd, .framer-JegFr .framer-1y82bie, .framer-JegFr .framer-bki8j3, .framer-JegFr .framer-dz520n, .framer-JegFr .framer-ey7h3h, .framer-JegFr .framer-lvalcl, .framer-JegFr .framer-11as4kz, .framer-JegFr .framer-w4mrso, .framer-JegFr .framer-lfmv5g, .framer-JegFr .framer-2xzaz7, .framer-JegFr .framer-8pljcm, .framer-JegFr .framer-1vcjg3w, .framer-JegFr .framer-1y7twoq { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-JegFr .framer-29ae4y, .framer-JegFr .framer-1dp6fxf, .framer-JegFr .framer-1s3t3zq, .framer-JegFr .framer-j9xrmi, .framer-JegFr .framer-1ur7996, .framer-JegFr .framer-qnxr1v { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-JegFr.framer-n8a7io, .framer-JegFr .framer-1jve7fh { gap: 0px; } .framer-JegFr.framer-n8a7io > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-JegFr.framer-n8a7io > :first-child { margin-left: 0px; } .framer-JegFr.framer-n8a7io > :last-child { margin-right: 0px; } .framer-JegFr .framer-1jve7fh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-JegFr .framer-1jve7fh > :first-child { margin-top: 0px; } .framer-JegFr .framer-1jve7fh > :last-child { margin-bottom: 0px; } }\",\".framer-JegFr.framer-v-bw9zwq.framer-n8a7io { width: 810px; }\",\".framer-JegFr.framer-v-bw9zwq .framer-1jve7fh, .framer-JegFr.framer-v-1q0np2l .framer-1jve7fh { flex: 1 0 0px; width: 1px; }\",\".framer-JegFr.framer-v-1q0np2l.framer-n8a7io { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZrtDG70t1\":{\"layout\":[\"fixed\",\"auto\"]},\"IEsA3WjVB\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpQmPJJolI=withCSS(Component,css,\"framer-JegFr\");export default FramerpQmPJJolI;FramerpQmPJJolI.displayName=\"Lime Mortar Gallery\";FramerpQmPJJolI.defaultProps={height:417,width:1440};addPropertyControls(FramerpQmPJJolI,{variant:{options:[\"cXqH1MxDS\",\"ZrtDG70t1\",\"IEsA3WjVB\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerpQmPJJolI,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpQmPJJolI\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"417\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZrtDG70t1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IEsA3WjVB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pQmPJJolI.map", "// Generated by Framer (1cbc8a2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/nOHsSAKWORLXKrBmQy4f/OY7HUbLPKatepX3DYFYe/zaSiaGSH_.js\";const CarouselFonts=getFonts(Carousel);const cycleOrder=[\"KZzp0NVpM\",\"KR2VIWBDY\",\"yoxreoLyA\"];const serializationHash=\"framer-SX6Xf\";const variantClassNames={KR2VIWBDY:\"framer-v-f2dnmq\",KZzp0NVpM:\"framer-v-14be1bn\",yoxreoLyA:\"framer-v-f650yx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const 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={\"Variant 1\":\"KZzp0NVpM\",\"Variant 2\":\"KR2VIWBDY\",\"Variant 3\":\"yoxreoLyA\"};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:\"KZzp0NVpM\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KZzp0NVpM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);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__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-14be1bn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KZzp0NVpM\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({KR2VIWBDY:{\"data-framer-name\":\"Variant 2\"},yoxreoLyA:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rf67jq\",layoutDependency:layoutDependency,layoutId:\"Etfh6DO9e\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-im0ocp\",\"data-styles-preset\":\"zaSiaGSH_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54)))\"},children:\"PLANTING\"})}),className:\"framer-kosqrj\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wo1xMHYOs\",style:{\"--extracted-1of0zx5\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14v8f5g-container\",layoutDependency:layoutDependency,layoutId:\"HZeelRU2h-container\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},fadeWidth:5},gap:15,height:\"100%\",id:\"HZeelRU2h\",layoutId:\"HZeelRU2h\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:15,dotsInset:15,dotSize:6,dotsOpacity:.5,dotsPadding:15,dotsRadius:50,showProgressDots:true,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/cSpDVMphgaajvt8gYMPJjWSPY.jpeg\",srcSet:\"https://framerusercontent.com/images/cSpDVMphgaajvt8gYMPJjWSPY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/cSpDVMphgaajvt8gYMPJjWSPY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cSpDVMphgaajvt8gYMPJjWSPY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cSpDVMphgaajvt8gYMPJjWSPY.jpeg 4032w\"},className:\"framer-11tsup6\",layoutDependency:layoutDependency,layoutId:\"WX1mb8dfj\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/MqQetgOWzYADCV9woDsN55T7DUw.jpeg\",srcSet:\"https://framerusercontent.com/images/MqQetgOWzYADCV9woDsN55T7DUw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MqQetgOWzYADCV9woDsN55T7DUw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MqQetgOWzYADCV9woDsN55T7DUw.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/MqQetgOWzYADCV9woDsN55T7DUw.jpeg 4032w\"},className:\"framer-8yjwah\",layoutDependency:layoutDependency,layoutId:\"QzamoklSY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg\",srcSet:\"https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8m42mA60sG0KB34wJbAKRVAJGY.jpeg 4032w\"},className:\"framer-2vx29d\",layoutDependency:layoutDependency,layoutId:\"AD8JUfrUH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/Vt9txQllxgXeA1KXtOI3vf0q4.jpeg\",srcSet:\"https://framerusercontent.com/images/Vt9txQllxgXeA1KXtOI3vf0q4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Vt9txQllxgXeA1KXtOI3vf0q4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vt9txQllxgXeA1KXtOI3vf0q4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vt9txQllxgXeA1KXtOI3vf0q4.jpeg 4032w\"},className:\"framer-ncb8ef\",layoutDependency:layoutDependency,layoutId:\"vRP_mH5pg\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2592,pixelWidth:1944,sizes:\"250px\",src:\"https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg\",srcSet:\"https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg?scale-down-to=1024 768w,https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg?scale-down-to=2048 1536w,https://framerusercontent.com/images/8OFFhUpfDyepNwy5r82mdujfk.jpeg 1944w\"},className:\"framer-l2bpif\",layoutDependency:layoutDependency,layoutId:\"EZV2odEEM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/RyL6GFqSIbUELqo5UUdSXV7rW0.jpeg\",srcSet:\"https://framerusercontent.com/images/RyL6GFqSIbUELqo5UUdSXV7rW0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/RyL6GFqSIbUELqo5UUdSXV7rW0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RyL6GFqSIbUELqo5UUdSXV7rW0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RyL6GFqSIbUELqo5UUdSXV7rW0.jpeg 4032w\"},className:\"framer-15evcls\",layoutDependency:layoutDependency,layoutId:\"tqmgp8WnY\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/07tPtINvG7GLUaiAqMgkrF2f3OA.jpeg\",srcSet:\"https://framerusercontent.com/images/07tPtINvG7GLUaiAqMgkrF2f3OA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/07tPtINvG7GLUaiAqMgkrF2f3OA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/07tPtINvG7GLUaiAqMgkrF2f3OA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/07tPtINvG7GLUaiAqMgkrF2f3OA.jpeg 4032w\"},className:\"framer-uz5v9u\",layoutDependency:layoutDependency,layoutId:\"fAwjQxDTp\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/83SscWRmhfQJhq4pvwbil3dpPaM.jpeg\",srcSet:\"https://framerusercontent.com/images/83SscWRmhfQJhq4pvwbil3dpPaM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/83SscWRmhfQJhq4pvwbil3dpPaM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/83SscWRmhfQJhq4pvwbil3dpPaM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/83SscWRmhfQJhq4pvwbil3dpPaM.jpeg 4032w\"},className:\"framer-8atdfp\",layoutDependency:layoutDependency,layoutId:\"d6ZJaHyRi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/ZzvcFVSZAaQd10PRaA3EtxGdcQ.jpeg\",srcSet:\"https://framerusercontent.com/images/ZzvcFVSZAaQd10PRaA3EtxGdcQ.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZzvcFVSZAaQd10PRaA3EtxGdcQ.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZzvcFVSZAaQd10PRaA3EtxGdcQ.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZzvcFVSZAaQd10PRaA3EtxGdcQ.jpeg 4032w\"},className:\"framer-1wn9egv\",layoutDependency:layoutDependency,layoutId:\"yneDOwhml\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg\",srcSet:\"https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg 2592w\"},className:\"framer-akysiq\",layoutDependency:layoutDependency,layoutId:\"XdvyQT_C_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:722,pixelWidth:1123,sizes:\"467px\",src:\"https://framerusercontent.com/images/yjCDmrtEYR75kk7HkTiNgYvMdo.jpeg\",srcSet:\"https://framerusercontent.com/images/yjCDmrtEYR75kk7HkTiNgYvMdo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/yjCDmrtEYR75kk7HkTiNgYvMdo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yjCDmrtEYR75kk7HkTiNgYvMdo.jpeg 1123w\"},className:\"framer-1tyr8i2\",layoutDependency:layoutDependency,layoutId:\"bJiV0KNwK\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4032,pixelWidth:3024,sizes:\"250px\",src:\"https://framerusercontent.com/images/WV5uGGkRhgy4LqFj037xPYzOJo.jpeg\",srcSet:\"https://framerusercontent.com/images/WV5uGGkRhgy4LqFj037xPYzOJo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/WV5uGGkRhgy4LqFj037xPYzOJo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/WV5uGGkRhgy4LqFj037xPYzOJo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/WV5uGGkRhgy4LqFj037xPYzOJo.jpeg 4032w\"},className:\"framer-4cjzls\",layoutDependency:layoutDependency,layoutId:\"luxNisR7B\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1072,pixelWidth:688,sizes:\"250px\",src:\"https://framerusercontent.com/images/6f0i93jCzbhi4SEFeZzyLdHk6Y.jpeg\",srcSet:\"https://framerusercontent.com/images/6f0i93jCzbhi4SEFeZzyLdHk6Y.jpeg?scale-down-to=1024 657w,https://framerusercontent.com/images/6f0i93jCzbhi4SEFeZzyLdHk6Y.jpeg 688w\"},className:\"framer-1ccq2nm\",layoutDependency:layoutDependency,layoutId:\"mUU_vl5_E\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:763,pixelWidth:1073,sizes:\"467px\",src:\"https://framerusercontent.com/images/BIdZquVFaXULo2PcpTlCUMLGTs.jpeg\",srcSet:\"https://framerusercontent.com/images/BIdZquVFaXULo2PcpTlCUMLGTs.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/BIdZquVFaXULo2PcpTlCUMLGTs.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BIdZquVFaXULo2PcpTlCUMLGTs.jpeg 1073w\"},className:\"framer-yuzzu2\",layoutDependency:layoutDependency,layoutId:\"loBJJFMvM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:758,pixelWidth:1174,sizes:\"467px\",src:\"https://framerusercontent.com/images/P6ssFoL4AQTw1d6rlUQPK14ahPg.jpeg\",srcSet:\"https://framerusercontent.com/images/P6ssFoL4AQTw1d6rlUQPK14ahPg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/P6ssFoL4AQTw1d6rlUQPK14ahPg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/P6ssFoL4AQTw1d6rlUQPK14ahPg.jpeg 1174w\"},className:\"framer-1bbh3ap\",layoutDependency:layoutDependency,layoutId:\"mZ4LrqUau\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/MtK4z0GCmk8dM8km9Sk4ZvbTB3w.jpeg\",srcSet:\"https://framerusercontent.com/images/MtK4z0GCmk8dM8km9Sk4ZvbTB3w.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/MtK4z0GCmk8dM8km9Sk4ZvbTB3w.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/MtK4z0GCmk8dM8km9Sk4ZvbTB3w.jpeg 2048w\"},className:\"framer-8vqqf3\",layoutDependency:layoutDependency,layoutId:\"PEHp5hnXn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1944,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/jS92pHB4GeWN5CnSZzTAEU2DQj0.jpeg\",srcSet:\"https://framerusercontent.com/images/jS92pHB4GeWN5CnSZzTAEU2DQj0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/jS92pHB4GeWN5CnSZzTAEU2DQj0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jS92pHB4GeWN5CnSZzTAEU2DQj0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jS92pHB4GeWN5CnSZzTAEU2DQj0.jpeg 2592w\"},className:\"framer-r2qudf\",layoutDependency:layoutDependency,layoutId:\"ov6KQWj59\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg\",srcSet:\"https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mguGhXeRl9vON3hO1Hwo2w7rk.jpeg 2048w\"},className:\"framer-raza5r\",layoutDependency:layoutDependency,layoutId:\"VxV6QHBDB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/y4tjbEveHzeabkU6pUylzt6MTw.jpeg\",srcSet:\"https://framerusercontent.com/images/y4tjbEveHzeabkU6pUylzt6MTw.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/y4tjbEveHzeabkU6pUylzt6MTw.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/y4tjbEveHzeabkU6pUylzt6MTw.jpeg 2048w\"},className:\"framer-1ceu0ld\",layoutDependency:layoutDependency,layoutId:\"t4SUuS6BH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/SS2k1jPZ0dWUPjFxRxefEDfA2c.jpeg\",srcSet:\"https://framerusercontent.com/images/SS2k1jPZ0dWUPjFxRxefEDfA2c.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/SS2k1jPZ0dWUPjFxRxefEDfA2c.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/SS2k1jPZ0dWUPjFxRxefEDfA2c.jpeg 2048w\"},className:\"framer-1w23vz4\",layoutDependency:layoutDependency,layoutId:\"TEB8xvkYS\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:2048,sizes:\"467px\",src:\"https://framerusercontent.com/images/qdAUXztXmB5hFLXq007224OGPps.jpeg\",srcSet:\"https://framerusercontent.com/images/qdAUXztXmB5hFLXq007224OGPps.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/qdAUXztXmB5hFLXq007224OGPps.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qdAUXztXmB5hFLXq007224OGPps.jpeg 2048w\"},className:\"framer-gu8og0\",layoutDependency:layoutDependency,layoutId:\"I4IPpDW7j\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/nkhhWODT06sPwG8B9pgxzSGf90.jpeg\",srcSet:\"https://framerusercontent.com/images/nkhhWODT06sPwG8B9pgxzSGf90.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/nkhhWODT06sPwG8B9pgxzSGf90.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nkhhWODT06sPwG8B9pgxzSGf90.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nkhhWODT06sPwG8B9pgxzSGf90.jpeg 4032w\"},className:\"framer-yes5m3\",layoutDependency:layoutDependency,layoutId:\"HbRdeD4gD\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/pSgsadrWPqcSQDgWMgpZCN3WU.jpeg\",srcSet:\"https://framerusercontent.com/images/pSgsadrWPqcSQDgWMgpZCN3WU.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/pSgsadrWPqcSQDgWMgpZCN3WU.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/pSgsadrWPqcSQDgWMgpZCN3WU.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/pSgsadrWPqcSQDgWMgpZCN3WU.jpeg 4032w\"},className:\"framer-1l8afrh\",layoutDependency:layoutDependency,layoutId:\"STw4auWPr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg\",srcSet:\"https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg 4032w\"},className:\"framer-sr9qyq\",layoutDependency:layoutDependency,layoutId:\"eOCNkxhMl\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg\",srcSet:\"https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNmjHK5zDvxZ3MyYTkAHEgolpVg.jpeg 4032w\"},className:\"framer-dv1rgc\",layoutDependency:layoutDependency,layoutId:\"xEr3vljCe\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/9ZUyXfRX3awICW4CJhd06lVdN0.jpeg\",srcSet:\"https://framerusercontent.com/images/9ZUyXfRX3awICW4CJhd06lVdN0.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/9ZUyXfRX3awICW4CJhd06lVdN0.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/9ZUyXfRX3awICW4CJhd06lVdN0.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/9ZUyXfRX3awICW4CJhd06lVdN0.jpeg 4032w\"},className:\"framer-11egc1s\",layoutDependency:layoutDependency,layoutId:\"vyTyZbC42\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/ZY3ubiH7FakJIODBdbq5iaMArpI.jpeg\",srcSet:\"https://framerusercontent.com/images/ZY3ubiH7FakJIODBdbq5iaMArpI.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/ZY3ubiH7FakJIODBdbq5iaMArpI.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZY3ubiH7FakJIODBdbq5iaMArpI.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZY3ubiH7FakJIODBdbq5iaMArpI.jpeg 4032w\"},className:\"framer-l8xpmj\",layoutDependency:layoutDependency,layoutId:\"YxJcLa7eB\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/cvPDZki9EPcffP3i0msqUK0DvIE.jpeg\",srcSet:\"https://framerusercontent.com/images/cvPDZki9EPcffP3i0msqUK0DvIE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/cvPDZki9EPcffP3i0msqUK0DvIE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cvPDZki9EPcffP3i0msqUK0DvIE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/cvPDZki9EPcffP3i0msqUK0DvIE.jpeg 4032w\"},className:\"framer-1xw68vw\",layoutDependency:layoutDependency,layoutId:\"jBUvEDGvZ\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3024,pixelWidth:4032,sizes:\"467px\",src:\"https://framerusercontent.com/images/Sx1MYLgshxNhgyWuBZO2OVC0q4.jpeg\",srcSet:\"https://framerusercontent.com/images/Sx1MYLgshxNhgyWuBZO2OVC0q4.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/Sx1MYLgshxNhgyWuBZO2OVC0q4.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Sx1MYLgshxNhgyWuBZO2OVC0q4.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Sx1MYLgshxNhgyWuBZO2OVC0q4.jpeg 4032w\"},className:\"framer-16t6lfp\",layoutDependency:layoutDependency,layoutId:\"KgXHvVAgc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1936,pixelWidth:2592,sizes:\"467px\",src:\"https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg\",srcSet:\"https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0Se60CWJ4uZ1upa0BUdvxuz4Wo.jpeg 2592w\"},className:\"framer-8knclv\",layoutDependency:layoutDependency,layoutId:\"mJfUC4vmS\"})],snapObject:{fluid:true,snap:true,snapEdge:\"start\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SX6Xf.framer-1oxm0bn, .framer-SX6Xf .framer-1oxm0bn { display: block; }\",\".framer-SX6Xf.framer-14be1bn { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-SX6Xf .framer-rf67jq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1330px; }\",\".framer-SX6Xf .framer-kosqrj { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SX6Xf .framer-14v8f5g-container { flex: none; height: 327px; position: relative; width: 100%; }\",\".framer-SX6Xf .framer-11tsup6, .framer-SX6Xf .framer-8yjwah, .framer-SX6Xf .framer-ncb8ef, .framer-SX6Xf .framer-15evcls, .framer-SX6Xf .framer-uz5v9u, .framer-SX6Xf .framer-akysiq, .framer-SX6Xf .framer-1tyr8i2, .framer-SX6Xf .framer-yuzzu2, .framer-SX6Xf .framer-1bbh3ap, .framer-SX6Xf .framer-8vqqf3, .framer-SX6Xf .framer-r2qudf, .framer-SX6Xf .framer-raza5r, .framer-SX6Xf .framer-1ceu0ld, .framer-SX6Xf .framer-1w23vz4, .framer-SX6Xf .framer-gu8og0, .framer-SX6Xf .framer-yes5m3, .framer-SX6Xf .framer-1l8afrh, .framer-SX6Xf .framer-sr9qyq, .framer-SX6Xf .framer-dv1rgc, .framer-SX6Xf .framer-11egc1s, .framer-SX6Xf .framer-l8xpmj, .framer-SX6Xf .framer-1xw68vw, .framer-SX6Xf .framer-16t6lfp, .framer-SX6Xf .framer-8knclv { height: 327px; overflow: hidden; position: relative; width: 467px; }\",\".framer-SX6Xf .framer-2vx29d, .framer-SX6Xf .framer-l2bpif, .framer-SX6Xf .framer-8atdfp, .framer-SX6Xf .framer-1wn9egv, .framer-SX6Xf .framer-4cjzls, .framer-SX6Xf .framer-1ccq2nm { height: 327px; overflow: hidden; position: relative; width: 250px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SX6Xf.framer-14be1bn, .framer-SX6Xf .framer-rf67jq { gap: 0px; } .framer-SX6Xf.framer-14be1bn > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-SX6Xf.framer-14be1bn > :first-child { margin-left: 0px; } .framer-SX6Xf.framer-14be1bn > :last-child { margin-right: 0px; } .framer-SX6Xf .framer-rf67jq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-SX6Xf .framer-rf67jq > :first-child { margin-top: 0px; } .framer-SX6Xf .framer-rf67jq > :last-child { margin-bottom: 0px; } }\",\".framer-SX6Xf.framer-v-f2dnmq.framer-14be1bn { width: 810px; }\",\".framer-SX6Xf.framer-v-f2dnmq .framer-rf67jq, .framer-SX6Xf.framer-v-f650yx .framer-rf67jq { flex: 1 0 0px; width: 1px; }\",\".framer-SX6Xf.framer-v-f650yx.framer-14be1bn { width: 390px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 417\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"KR2VIWBDY\":{\"layout\":[\"fixed\",\"auto\"]},\"yoxreoLyA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ32YiZysO=withCSS(Component,css,\"framer-SX6Xf\");export default FramerZ32YiZysO;FramerZ32YiZysO.displayName=\"Planting Gallery\";FramerZ32YiZysO.defaultProps={height:417,width:1440};addPropertyControls(FramerZ32YiZysO,{variant:{options:[\"KZzp0NVpM\",\"KR2VIWBDY\",\"yoxreoLyA\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZ32YiZysO,[{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://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...CarouselFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ32YiZysO\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"417\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KR2VIWBDY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yoxreoLyA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z32YiZysO.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import Navigation from\"#framer/local/canvasComponent/CQLnwY2p4/CQLnwY2p4.js\";import DryStoneGallery from\"#framer/local/canvasComponent/d4XazrHnm/d4XazrHnm.js\";import PatiosPathwaysTerracesImageGallery from\"#framer/local/canvasComponent/e76oj3pIN/e76oj3pIN.js\";import StepsGallery from\"#framer/local/canvasComponent/hYT8tqX6x/hYT8tqX6x.js\";import Arrow from\"#framer/local/canvasComponent/HZAGF60xh/HZAGF60xh.js\";import SculpturesGallery from\"#framer/local/canvasComponent/J1btpeHJ6/J1btpeHJ6.js\";import WaterFeaturesGallery from\"#framer/local/canvasComponent/l1xu53iCf/l1xu53iCf.js\";import LandscapingGallery from\"#framer/local/canvasComponent/nCj57jLeH/nCj57jLeH.js\";import DrivewayGallery from\"#framer/local/canvasComponent/NG_fnJ79s/NG_fnJ79s.js\";import ButtonV1 from\"#framer/local/canvasComponent/ooKEMYCr9/ooKEMYCr9.js\";import TimberCarpentryGallery from\"#framer/local/canvasComponent/OW8CWjuDk/OW8CWjuDk.js\";import LimeMortarGallery from\"#framer/local/canvasComponent/pQmPJJolI/pQmPJJolI.js\";import MiniTopNav from\"#framer/local/canvasComponent/VbY4eCJz8/VbY4eCJz8.js\";import Footer from\"#framer/local/canvasComponent/XJ2AFy8gf/XJ2AFy8gf.js\";import PlantingGallery from\"#framer/local/canvasComponent/Z32YiZysO/Z32YiZysO.js\";import*as sharedStyle4 from\"#framer/local/css/CsYk8jSSa/CsYk8jSSa.js\";import*as sharedStyle from\"#framer/local/css/EH9cKwiPn/EH9cKwiPn.js\";import*as sharedStyle2 from\"#framer/local/css/fgILK6hCm/fgILK6hCm.js\";import*as sharedStyle1 from\"#framer/local/css/liV0H0oNV/liV0H0oNV.js\";import*as sharedStyle5 from\"#framer/local/css/ntjZxmtmi/ntjZxmtmi.js\";import*as sharedStyle3 from\"#framer/local/css/UyW2ieNZz/UyW2ieNZz.js\";import*as sharedStyle6 from\"#framer/local/css/Wq1Ax4f51/Wq1Ax4f51.js\";import metadataProvider from\"#framer/local/webPageMetadata/zr9mLjRGW/zr9mLjRGW.js\";const MiniTopNavFonts=getFonts(MiniTopNav);const NavigationFonts=getFonts(Navigation);const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const ButtonV1Fonts=getFonts(ButtonV1);const DryStoneGalleryFonts=getFonts(DryStoneGallery);const SculpturesGalleryFonts=getFonts(SculpturesGallery);const LandscapingGalleryFonts=getFonts(LandscapingGallery);const PatiosPathwaysTerracesImageGalleryFonts=getFonts(PatiosPathwaysTerracesImageGallery);const WaterFeaturesGalleryFonts=getFonts(WaterFeaturesGallery);const StepsGalleryFonts=getFonts(StepsGallery);const PlantingGalleryFonts=getFonts(PlantingGallery);const DrivewayGalleryFonts=getFonts(DrivewayGallery);const TimberCarpentryGalleryFonts=getFonts(TimberCarpentryGallery);const LimeMortarGalleryFonts=getFonts(LimeMortarGallery);const SlideshowFonts=getFonts(Slideshow);const ArrowFonts=getFonts(Arrow);const FooterFonts=getFonts(Footer);const cycleOrder=[\"wP8EVwX0S\",\"F4CRTVRCD\",\"woOAnARFl\"];const breakpoints={F4CRTVRCD:\"(min-width: 810px) and (max-width: 1439px)\",woOAnARFl:\"(max-width: 809px)\",wP8EVwX0S:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-granp\";const variantClassNames={F4CRTVRCD:\"framer-v-1zl8ji\",woOAnARFl:\"framer-v-1apyvn7\",wP8EVwX0S:\"framer-v-17vy030\"};const transition1={delay:0,duration:1.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"wP8EVwX0S\",Phone:\"woOAnARFl\",Tablet:\"F4CRTVRCD\"};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:\"wP8EVwX0S\"};};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-granp`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-granp`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const id=useRouteElementId(\"OoE8719gS\");const ref2=React.useRef(null);const id1=useRouteElementId(\"gTK2p13vw\");const ref3=React.useRef(null);const id2=useRouteElementId(\"kzHFaHMxH\");const ref4=React.useRef(null);const id3=useRouteElementId(\"Etn2Ajvtm\");const ref5=React.useRef(null);const id4=useRouteElementId(\"CSxFlmaE0\");const ref6=React.useRef(null);const id5=useRouteElementId(\"sUQYgwc9j\");const ref7=React.useRef(null);const id6=useRouteElementId(\"nfq5OGetc\");const ref8=React.useRef(null);const id7=useRouteElementId(\"wjerPqV1z\");const ref9=React.useRef(null);const id8=useRouteElementId(\"C6YtstPfv\");const ref10=React.useRef(null);const id9=useRouteElementId(\"OnYZ5q8wU\");const ref11=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wP8EVwX0S\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-17vy030\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16lgh59\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8pji05-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"ZMEH32nCf\"},woOAnARFl:{variant:\"L6LgQVA9G\"}},children:/*#__PURE__*/_jsx(MiniTopNav,{height:\"100%\",id:\"vqryr9iVg\",layoutId:\"vqryr9iVg\",style:{width:\"100%\"},variant:\"D7OiaK4X3\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{width:\"100vw\"},woOAnARFl:{width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"1300px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-nxf8di-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"HtxSb4DYt\"},woOAnARFl:{variant:\"CAsdRYrUa\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"jpIDBkuR8\",layoutId:\"jpIDBkuR8\",style:{width:\"100%\"},variant:\"ZgEPeMZ7t\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1170,intrinsicWidth:2160,pixelHeight:1651,pixelWidth:2592,sizes:\"100vw\",src:\"https://framerusercontent.com/images/YU9JI8zcag8SMMfflWyUXMUf1sE.jpg\",srcSet:\"https://framerusercontent.com/images/YU9JI8zcag8SMMfflWyUXMUf1sE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YU9JI8zcag8SMMfflWyUXMUf1sE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YU9JI8zcag8SMMfflWyUXMUf1sE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/YU9JI8zcag8SMMfflWyUXMUf1sE.jpg 2592w\"},className:\"framer-ipmx8b\",\"data-framer-appear-id\":\"ipmx8b\",\"data-framer-name\":\"Hero Section\",initial:animation1,name:\"Hero Section\",optimized:true,style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vb2m6f\",\"data-framer-name\":\"Service\",name:\"Service\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-25dypo\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34lit6\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4eddq\",\"data-framer-name\":\"Button\",name:\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(249, 250, 243)\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1o6drd7\",\"data-styles-preset\":\"EH9cKwiPn\",children:\"Home\"})})})}),className:\"framer-1jw4eeg\",\"data-framer-name\":\"Home\",fonts:[\"GF;DM Sans-regular\"],name:\"Home\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17suv1e\",\"data-framer-name\":\"Line\",name:\"Line\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"Gallery\"})}),className:\"framer-7u8sqi\",\"data-framer-name\":\"About\",fonts:[\"GF;DM Sans-regular\"],name:\"About\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-34a6h4\",\"data-styles-preset\":\"liV0H0oNV\",style:{\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"OUR GALLERY\"})}),className:\"framer-1maqufr\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],name:\"ABOUT US\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ziilzj\",\"data-styles-preset\":\"fgILK6hCm\",style:{\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"Select a service to browse gallery\"})}),className:\"framer-15hdx7u\",\"data-framer-name\":\"ABOUT US\",fonts:[\"Inter\"],name:\"ABOUT US\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3uzwb6\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":OoE8719gS\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":OoE8719gS\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":OoE8719gS\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-k2yg1s-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks[1]},woOAnARFl:{ztpZWwpew:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"xLRk4aD5F\",layoutId:\"xLRk4aD5F\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Dry Stone\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":gTK2p13vw\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":gTK2p13vw\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":gTK2p13vw\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18tl49p-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks1[1]},woOAnARFl:{ztpZWwpew:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"kePkq2Djt\",layoutId:\"kePkq2Djt\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Sculptures\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks1[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":kzHFaHMxH\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":kzHFaHMxH\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":kzHFaHMxH\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qxwkre-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks2[1]},woOAnARFl:{ztpZWwpew:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"n2IIpnm62\",layoutId:\"n2IIpnm62\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Landscaping\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks2[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":Etn2Ajvtm\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":Etn2Ajvtm\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":Etn2Ajvtm\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l9qtnm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks3[1]},woOAnARFl:{ztpZWwpew:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"ExA53a95x\",layoutId:\"ExA53a95x\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Patios, Terraces & Pathways\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks3[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":CSxFlmaE0\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":CSxFlmaE0\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":CSxFlmaE0\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18fhyel-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks4[1]},woOAnARFl:{ztpZWwpew:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"XY17oTin_\",layoutId:\"XY17oTin_\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Water Features\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks4[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":sUQYgwc9j\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":sUQYgwc9j\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":sUQYgwc9j\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tuxnw7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks5[1]},woOAnARFl:{ztpZWwpew:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"CG1jFV_TE\",layoutId:\"CG1jFV_TE\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Steps\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks5[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":nfq5OGetc\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":nfq5OGetc\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":nfq5OGetc\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fb24uj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks6[1]},woOAnARFl:{ztpZWwpew:resolvedLinks6[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"N6Y3WzvCZ\",layoutId:\"N6Y3WzvCZ\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Planting\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks6[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":wjerPqV1z\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":wjerPqV1z\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":wjerPqV1z\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y3kwl7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks7[1]},woOAnARFl:{ztpZWwpew:resolvedLinks7[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"AAGBZDj9b\",layoutId:\"AAGBZDj9b\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Driveways\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks7[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":C6YtstPfv\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":C6YtstPfv\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":C6YtstPfv\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ustsdn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks8[1]},woOAnARFl:{ztpZWwpew:resolvedLinks8[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"qnZqkpc1C\",layoutId:\"qnZqkpc1C\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"TImber & Carpentry\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks8[0]})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":OnYZ5q8wU\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":OnYZ5q8wU\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined},{href:{hash:\":OnYZ5q8wU\",webPageId:\"zr9mLjRGW\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-92c69r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{ztpZWwpew:resolvedLinks9[1]},woOAnARFl:{ztpZWwpew:resolvedLinks9[2]}},children:/*#__PURE__*/_jsx(ButtonV1,{cznPRBh5H:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",height:\"100%\",id:\"JBctAjSW_\",layoutId:\"JBctAjSW_\",Lhbu7fPAb:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",lxsE286fv:\"var(--token-0dbc90f2-59b7-4066-9162-91184e9cc572, rgb(225, 236, 227))\",mK6wiv2lr:\"Lime Mortar\",TWBwlMNHl:\"rgb(249, 250, 243)\",v5Q4jlC0u:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",variant:\"DHYvE3Vrt\",width:\"100%\",ZjQ7Sy3dg:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",ztpZWwpew:resolvedLinks9[0]})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-w2ufsk-container\",id:id,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"OmqB6lDlM\"},woOAnARFl:{variant:\"xthknIlfD\"}},children:/*#__PURE__*/_jsx(DryStoneGallery,{height:\"100%\",id:\"OoE8719gS\",layoutId:\"OoE8719gS\",style:{width:\"100%\"},variant:\"bN5wmXGbB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-tvu0ae-container\",id:id1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"Q8lPglxsZ\"},woOAnARFl:{variant:\"niEr9Bj0_\"}},children:/*#__PURE__*/_jsx(SculpturesGallery,{height:\"100%\",id:\"gTK2p13vw\",layoutId:\"gTK2p13vw\",style:{width:\"100%\"},variant:\"X0KBAQqcs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-2b3cdw-container\",id:id2,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"EqI_U5xOJ\"},woOAnARFl:{variant:\"ZUmp4yDS8\"}},children:/*#__PURE__*/_jsx(LandscapingGallery,{height:\"100%\",id:\"kzHFaHMxH\",layoutId:\"kzHFaHMxH\",style:{width:\"100%\"},variant:\"ij9sx3Oj5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-yfdq7k-container\",id:id3,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"bJ1gLOrjJ\"},woOAnARFl:{variant:\"TzmSfh1tb\"}},children:/*#__PURE__*/_jsx(PatiosPathwaysTerracesImageGallery,{height:\"100%\",id:\"Etn2Ajvtm\",layoutId:\"Etn2Ajvtm\",style:{width:\"100%\"},variant:\"e7YnIGqcm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y4ekq9-container\",id:id4,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"RPF8uop3x\"},woOAnARFl:{variant:\"at_tjw7em\"}},children:/*#__PURE__*/_jsx(WaterFeaturesGallery,{height:\"100%\",id:\"CSxFlmaE0\",layoutId:\"CSxFlmaE0\",style:{width:\"100%\"},variant:\"fB3Lg2Qc3\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-sifmrd-container\",id:id5,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"Lbg6QW1f1\"},woOAnARFl:{variant:\"DM5R5S7Zp\"}},children:/*#__PURE__*/_jsx(StepsGallery,{height:\"100%\",id:\"sUQYgwc9j\",layoutId:\"sUQYgwc9j\",style:{width:\"100%\"},variant:\"PMmOVKuRC\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zxrpv-container\",id:id6,ref:ref8,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"KR2VIWBDY\"},woOAnARFl:{variant:\"yoxreoLyA\"}},children:/*#__PURE__*/_jsx(PlantingGallery,{height:\"100%\",id:\"nfq5OGetc\",layoutId:\"nfq5OGetc\",style:{width:\"100%\"},variant:\"KZzp0NVpM\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19nhpo8-container\",id:id7,ref:ref9,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"iVI8fjDsV\"},woOAnARFl:{variant:\"R_0Q1GXm1\"}},children:/*#__PURE__*/_jsx(DrivewayGallery,{height:\"100%\",id:\"wjerPqV1z\",layoutId:\"wjerPqV1z\",style:{width:\"100%\"},variant:\"Jn9WNCNRN\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tqibdp-container\",id:id8,ref:ref10,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"COhhKAh2s\"},woOAnARFl:{variant:\"gd7Ehlrnr\"}},children:/*#__PURE__*/_jsx(TimberCarpentryGallery,{height:\"100%\",id:\"C6YtstPfv\",layoutId:\"C6YtstPfv\",style:{width:\"100%\"},variant:\"LFvIn6Cjc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{width:\"calc(min(100vw, 1920px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"calc(min(max(100vw, 1px), 1920px) - 60px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-12uimvf-container\",id:id9,ref:ref11,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"ZrtDG70t1\"},woOAnARFl:{variant:\"IEsA3WjVB\"}},children:/*#__PURE__*/_jsx(LimeMortarGallery,{height:\"100%\",id:\"OnYZ5q8wU\",layoutId:\"OnYZ5q8wU\",style:{width:\"100%\"},variant:\"cXqH1MxDS\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1097e76\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ygv8r1\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1skkp5c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{woOAnARFl:{arrowOptions:{arrowFill:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-mid\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,showMouseControls:true}}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\",arrowGap:10,arrowPadding:0,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"eiSPhHsuw\",intervalControl:1.5,itemAmount:1,layoutId:\"eiSPhHsuw\",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(motion.div,{className:\"framer-1it95f3\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8r8box\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"[    TESTIMONIAL    ]\"})}),className:\"framer-1hvu38x\",\"data-framer-name\":\"[ TESTIMONIAL ]\",fonts:[\"Inter\"],name:\"[ TESTIMONIAL ]\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ldtu8a\",\"data-framer-name\":\"Review + Name\",name:\"Review + Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:'\"Can\u2019t say thank you enough for the incredible effort you all put in in the days, weeks, months and hours before the wedding. I hope all of you are suitably proud, not only of the stunning result but also finishing on time with all the bells and whistles and a smile.\"'})}),className:\"framer-12df2an\",\"data-framer-name\":\"LeafLife's dedication to bringing our vision to life was exceptional. They turned our backyard into a haven of tranquility. Their attention to detail and sustainable practices on their design impressed us.\",fonts:[\"Inter\"],name:\"LeafLife's dedication to bringing our vision to life was exceptional. They turned our backyard into a haven of tranquility. Their attention to detail and sustainable practices on their design impressed us.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b7xdrb\",\"data-framer-name\":\"Name\",name:\"Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"Jon, London\"})}),className:\"framer-ynqysg\",\"data-framer-name\":\"STEVE EVANS\",fonts:[\"Inter\"],name:\"STEVE EVANS\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ramy8\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lsvui8\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"[    TESTIMONIAL    ]\"})}),className:\"framer-iq73wd\",\"data-framer-name\":\"[ TESTIMONIAL ]\",fonts:[\"Inter\"],name:\"[ TESTIMONIAL ]\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19dcl4i\",\"data-framer-name\":\"Review + Name\",name:\"Review + Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:'\"Many many thanks for all your hard work and that of your team! A great bunch! We\u2019ve greatly appreciated all that you\u2019ve done and hope that you\u2019ll visit us periodically to see the progress, maybe also giving us a hand when we\u2019re off on our travels.\"'})}),className:\"framer-1iddude\",\"data-framer-name\":\"LeafLife's dedication to bringing our vision to life was exceptional. They turned our backyard into a haven of tranquility. Their attention to detail and sustainable practices on their design impressed us.\",fonts:[\"Inter\"],name:\"LeafLife's dedication to bringing our vision to life was exceptional. They turned our backyard into a haven of tranquility. Their attention to detail and sustainable practices on their design impressed us.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-irdpvq\",\"data-framer-name\":\"Name\",name:\"Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"R and A Thomas, Wiltshire\"})}),className:\"framer-s0hdm7\",\"data-framer-name\":\"STEVE EVANS\",fonts:[\"Inter\"],name:\"STEVE EVANS\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yt4r7g\",\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-khdmo0\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1fzdb0c\",\"data-styles-preset\":\"UyW2ieNZz\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"[    TESTIMONIAL    ]\"})}),className:\"framer-1r8x1sz\",\"data-framer-name\":\"[ TESTIMONIAL ]\",fonts:[\"Inter\"],name:\"[ TESTIMONIAL ]\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-71xd4n\",\"data-framer-name\":\"Review + Name\",name:\"Review + Name\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:'\"Thank you so much to you and your team for the amazing hard work that you all put in to getting the terrace and gardens ready for the big day. Everything looked beautiful and you even managed to organise the sunshine. Looking forward to seeing you when we are next back. Many thanks\"'})}),className:\"framer-p6bqrz\",\"data-framer-name\":\"LeafLife's dedication to bringing our vision to life was exceptional. They turned our backyard into a haven of tranquility. Their attention to detail and sustainable practices on their design impressed us.\",fonts:[\"Inter\"],name:\"LeafLife's dedication to bringing our vision to life was exceptional. They turned our backyard into a haven of tranquility. Their attention to detail and sustainable practices on their design impressed us.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s3jgz8\",\"data-framer-name\":\"Name\",name:\"Name\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-wdqdm4\",\"data-styles-preset\":\"ntjZxmtmi\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:\"Tor, Wiltshire\"})}),className:\"framer-1jlhd6h\",\"data-framer-name\":\"STEVE EVANS\",fonts:[\"Inter\"],name:\"STEVE EVANS\",verticalAlignment:\"top\",withExternalLayout:true})})]})]})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12c48bl\",\"data-framer-name\":\"CTA + Footer\",name:\"CTA + Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gsx9s2\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nvqlkg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{className:\"framer-styles-preset-1lg6czc\",\"data-styles-preset\":\"Wq1Ax4f51\",style:{\"--framer-text-color\":\"var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, rgb(55, 72, 54))\"},children:[\"AREAS WE \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-e1803149-d8de-4456-9922-9330e1218518, rgb(127, 143, 128))\"},children:\"COVER\"})]})}),className:\"framer-1fr5wf3\",\"data-framer-name\":\"WE ARE DIFFERENT IN EVERY WAYS\",fonts:[\"Inter\"],name:\"WE ARE DIFFERENT IN EVERY WAYS\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-ziilzj\",\"data-styles-preset\":\"fgILK6hCm\",children:\"Predominantly we work in the south of England and London, however we have had many projects further afield, in the north, especially Yorkshire and further south in the Channel islands. Please contact us as you may be surprised as to where we travel to.\"})}),className:\"framer-68kwc2\",\"data-framer-name\":\"At LeafLife, we are passionate about transforming outdoor spaces into breathtaking gardens that tell a unique story. Our journey began over a decade ago, driven by a shared love for nature\",fonts:[\"Inter\"],name:\"At LeafLife, we are passionate about transforming outdoor spaces into breathtaking gardens that tell a unique story. Our journey began over a decade ago, driven by a shared love for nature\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pfo7x8\",\"data-framer-name\":\"Services Grid\",name:\"Services Grid\",children:[/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-rjb4g5\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16b3fd4\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eddf5o\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"BATH\"})}),className:\"framer-1304xaa\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s12t4w-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"N1YElIRdk\",layoutId:\"N1YElIRdk\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-gux35\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ej7a7k\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tedism\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"BOURNEMOUTH\"})}),className:\"framer-1q28zb0\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vp87z4-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"XfxK5sKaC\",layoutId:\"XfxK5sKaC\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-rsocby\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pbgmxd\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hk4p2e\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"DEVON\"})}),className:\"framer-1io7n20\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ka1wbu-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"WY4nOgTO_\",layoutId:\"WY4nOgTO_\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-1a4smos\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-4gvqol\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pkbpey\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"DORSET\"})}),className:\"framer-1yui0f2\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9z5mop-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"iGa1MngRW\",layoutId:\"iGa1MngRW\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-h0u97o\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10yu3wo\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3c4gjx\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"HAMPSHIRE\"})}),className:\"framer-18jjtcy\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i5mfe1-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"RHRWzC8Y3\",layoutId:\"RHRWzC8Y3\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-6smimz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1skvuyw\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l8i9f7\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"SHERBORNE\"})}),className:\"framer-cj5ylr\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-us5dxx-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"GRVufq7c4\",layoutId:\"GRVufq7c4\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-10f6fho\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfuy3t\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vm8ji8\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"SOMERSET\"})}),className:\"framer-1qvjaz9\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hus5ye-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"O8IE0up8H\",layoutId:\"O8IE0up8H\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsx(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1480,intrinsicWidth:996},className:\"framer-t4t6av\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-13r4pib\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17k6814\",\"data-framer-name\":\"Title + Text\",name:\"Title + Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-18z04ku\",\"data-styles-preset\":\"CsYk8jSSa\",style:{\"--framer-text-color\":\"var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243))\"},children:\"WILTSHIRE\"})}),className:\"framer-188wgmk\",\"data-framer-name\":\"HOME GARDEN\",fonts:[\"Inter\"],name:\"HOME GARDEN\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jcf367-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"w58CGiXxK\",layoutId:\"w58CGiXxK\",style:{height:\"100%\",width:\"100%\"},variant:\"LKeEdYYXv\",width:\"100%\"})})})]})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kdpcey\",\"data-framer-name\":\"Green\",name:\"Green\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nuptni\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-ix0dgo-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{F4CRTVRCD:{variant:\"ZtDKfIVfp\"},woOAnARFl:{variant:\"glTZqpauz\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"TykMr1XCL\",layoutId:\"TykMr1XCL\",style:{width:\"100%\"},variant:\"aTHdSfHDG\",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-granp { background: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)) /* {\"name\":\"White\"} */; }`,\".framer-granp.framer-9jpg7m, .framer-granp .framer-9jpg7m { display: block; }\",\".framer-granp.framer-17vy030 { align-content: center; align-items: center; background-color: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, #f9fbf3); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-granp .framer-16lgh59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-granp .framer-8pji05-container, .framer-granp .framer-ix0dgo-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-granp .framer-nxf8di-container { flex: none; height: auto; position: relative; width: 1300px; }\",\".framer-granp .framer-ipmx8b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-1vb2m6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-25dypo { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 30px; position: relative; width: 1px; }\",\".framer-granp .framer-34lit6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-granp .framer-1t4eddq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-1jw4eeg, .framer-granp .framer-7u8sqi { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre; width: auto; }\",\".framer-granp .framer-17suv1e { align-content: center; align-items: center; background-color: var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, #374836); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-granp .framer-1maqufr, .framer-granp .framer-15hdx7u, .framer-granp .framer-1hvu38x, .framer-granp .framer-ynqysg, .framer-granp .framer-iq73wd, .framer-granp .framer-s0hdm7, .framer-granp .framer-1r8x1sz, .framer-granp .framer-1jlhd6h { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-granp .framer-3uzwb6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-k2yg1s-container, .framer-granp .framer-18tl49p-container, .framer-granp .framer-1qxwkre-container, .framer-granp .framer-l9qtnm-container, .framer-granp .framer-18fhyel-container, .framer-granp .framer-tuxnw7-container, .framer-granp .framer-fb24uj-container, .framer-granp .framer-y3kwl7-container, .framer-granp .framer-ustsdn-container, .framer-granp .framer-92c69r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-granp .framer-w2ufsk-container, .framer-granp .framer-tvu0ae-container, .framer-granp .framer-2b3cdw-container, .framer-granp .framer-yfdq7k-container, .framer-granp .framer-1y4ekq9-container, .framer-granp .framer-sifmrd-container, .framer-granp .framer-11zxrpv-container, .framer-granp .framer-19nhpo8-container, .framer-granp .framer-1tqibdp-container, .framer-granp .framer-12uimvf-container { flex: none; height: auto; position: relative; scroll-margin-top: 20px; width: 100%; }\",\".framer-granp .framer-1097e76 { align-content: center; align-items: center; background-color: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, #f9fbf3); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-granp .framer-1ygv8r1 { 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: center; max-width: 1920px; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 1px; }\",\".framer-granp .framer-1skkp5c-container { flex: none; height: 434px; position: relative; width: 1300px; }\",\".framer-granp .framer-1it95f3, .framer-granp .framer-15ramy8, .framer-granp .framer-yt4r7g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-granp .framer-8r8box, .framer-granp .framer-lsvui8, .framer-granp .framer-khdmo0 { align-content: center; align-items: center; background-color: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, #f9fbf3); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 50px 100px 50px; position: relative; width: 1px; }\",\".framer-granp .framer-1ldtu8a, .framer-granp .framer-19dcl4i, .framer-granp .framer-71xd4n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-12df2an, .framer-granp .framer-1iddude, .framer-granp .framer-p6bqrz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-granp .framer-b7xdrb, .framer-granp .framer-irdpvq, .framer-granp .framer-1s3jgz8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-12c48bl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-gsx9s2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1920px; overflow: visible; padding: 80px 80px 50px 80px; position: relative; width: 100%; z-index: 1; }\",\".framer-granp .framer-1nvqlkg { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1300px; }\",\".framer-granp .framer-1fr5wf3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 80%; word-break: break-word; word-wrap: break-word; }\",\".framer-granp .framer-68kwc2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-granp .framer-pfo7x8 { display: grid; flex: none; gap: 24px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1300px; }\",\".framer-granp .framer-rjb4g5, .framer-granp .framer-gux35, .framer-granp .framer-rsocby, .framer-granp .framer-1a4smos, .framer-granp .framer-h0u97o, .framer-granp .framer-6smimz, .framer-granp .framer-10f6fho, .framer-granp .framer-t4t6av { align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-granp .framer-16b3fd4, .framer-granp .framer-ej7a7k, .framer-granp .framer-1pbgmxd, .framer-granp .framer-4gvqol, .framer-granp .framer-10yu3wo, .framer-granp .framer-1skvuyw, .framer-granp .framer-xfuy3t, .framer-granp .framer-13r4pib { align-content: flex-start; align-items: flex-start; background-color: var(--token-e1803149-d8de-4456-9922-9330e1218518, #7f8f80); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 32px 24px 32px 24px; position: relative; width: 1px; }\",\".framer-granp .framer-eddf5o, .framer-granp .framer-1tedism, .framer-granp .framer-hk4p2e, .framer-granp .framer-1pkbpey, .framer-granp .framer-3c4gjx, .framer-granp .framer-l8i9f7, .framer-granp .framer-vm8ji8, .framer-granp .framer-17k6814 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-granp .framer-1304xaa, .framer-granp .framer-1q28zb0, .framer-granp .framer-1io7n20, .framer-granp .framer-1yui0f2, .framer-granp .framer-18jjtcy, .framer-granp .framer-cj5ylr, .framer-granp .framer-1qvjaz9, .framer-granp .framer-188wgmk { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-granp .framer-s12t4w-container, .framer-granp .framer-1vp87z4-container, .framer-granp .framer-1ka1wbu-container, .framer-granp .framer-9z5mop-container, .framer-granp .framer-i5mfe1-container, .framer-granp .framer-us5dxx-container, .framer-granp .framer-1hus5ye-container, .framer-granp .framer-1jcf367-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-granp .framer-kdpcey { align-content: center; align-items: center; background-color: var(--token-40b101e4-4bd7-49ca-8b91-7207c1239740, #374836); bottom: -8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 266px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: 0px; z-index: 0; }\",\".framer-granp .framer-1nuptni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-granp.framer-17vy030, .framer-granp .framer-16lgh59, .framer-granp .framer-ipmx8b, .framer-granp .framer-1vb2m6f, .framer-granp .framer-25dypo, .framer-granp .framer-34lit6, .framer-granp .framer-1t4eddq, .framer-granp .framer-17suv1e, .framer-granp .framer-3uzwb6, .framer-granp .framer-1097e76, .framer-granp .framer-1ygv8r1, .framer-granp .framer-1it95f3, .framer-granp .framer-8r8box, .framer-granp .framer-1ldtu8a, .framer-granp .framer-b7xdrb, .framer-granp .framer-15ramy8, .framer-granp .framer-lsvui8, .framer-granp .framer-19dcl4i, .framer-granp .framer-irdpvq, .framer-granp .framer-yt4r7g, .framer-granp .framer-khdmo0, .framer-granp .framer-71xd4n, .framer-granp .framer-1s3jgz8, .framer-granp .framer-12c48bl, .framer-granp .framer-gsx9s2, .framer-granp .framer-1nvqlkg, .framer-granp .framer-rjb4g5, .framer-granp .framer-16b3fd4, .framer-granp .framer-eddf5o, .framer-granp .framer-gux35, .framer-granp .framer-ej7a7k, .framer-granp .framer-1tedism, .framer-granp .framer-rsocby, .framer-granp .framer-1pbgmxd, .framer-granp .framer-hk4p2e, .framer-granp .framer-1a4smos, .framer-granp .framer-4gvqol, .framer-granp .framer-1pkbpey, .framer-granp .framer-h0u97o, .framer-granp .framer-10yu3wo, .framer-granp .framer-3c4gjx, .framer-granp .framer-6smimz, .framer-granp .framer-1skvuyw, .framer-granp .framer-l8i9f7, .framer-granp .framer-10f6fho, .framer-granp .framer-xfuy3t, .framer-granp .framer-vm8ji8, .framer-granp .framer-t4t6av, .framer-granp .framer-13r4pib, .framer-granp .framer-17k6814, .framer-granp .framer-kdpcey, .framer-granp .framer-1nuptni { gap: 0px; } .framer-granp.framer-17vy030 > *, .framer-granp .framer-12c48bl > *, .framer-granp .framer-16b3fd4 > *, .framer-granp .framer-ej7a7k > *, .framer-granp .framer-1pbgmxd > *, .framer-granp .framer-4gvqol > *, .framer-granp .framer-10yu3wo > *, .framer-granp .framer-1skvuyw > *, .framer-granp .framer-xfuy3t > *, .framer-granp .framer-13r4pib > *, .framer-granp .framer-1nuptni > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-granp.framer-17vy030 > :first-child, .framer-granp .framer-16lgh59 > :first-child, .framer-granp .framer-25dypo > :first-child, .framer-granp .framer-34lit6 > :first-child, .framer-granp .framer-8r8box > :first-child, .framer-granp .framer-1ldtu8a > :first-child, .framer-granp .framer-b7xdrb > :first-child, .framer-granp .framer-lsvui8 > :first-child, .framer-granp .framer-19dcl4i > :first-child, .framer-granp .framer-irdpvq > :first-child, .framer-granp .framer-khdmo0 > :first-child, .framer-granp .framer-71xd4n > :first-child, .framer-granp .framer-1s3jgz8 > :first-child, .framer-granp .framer-12c48bl > :first-child, .framer-granp .framer-gsx9s2 > :first-child, .framer-granp .framer-1nvqlkg > :first-child, .framer-granp .framer-16b3fd4 > :first-child, .framer-granp .framer-ej7a7k > :first-child, .framer-granp .framer-1pbgmxd > :first-child, .framer-granp .framer-4gvqol > :first-child, .framer-granp .framer-10yu3wo > :first-child, .framer-granp .framer-1skvuyw > :first-child, .framer-granp .framer-xfuy3t > :first-child, .framer-granp .framer-13r4pib > :first-child, .framer-granp .framer-kdpcey > :first-child, .framer-granp .framer-1nuptni > :first-child { margin-top: 0px; } .framer-granp.framer-17vy030 > :last-child, .framer-granp .framer-16lgh59 > :last-child, .framer-granp .framer-25dypo > :last-child, .framer-granp .framer-34lit6 > :last-child, .framer-granp .framer-8r8box > :last-child, .framer-granp .framer-1ldtu8a > :last-child, .framer-granp .framer-b7xdrb > :last-child, .framer-granp .framer-lsvui8 > :last-child, .framer-granp .framer-19dcl4i > :last-child, .framer-granp .framer-irdpvq > :last-child, .framer-granp .framer-khdmo0 > :last-child, .framer-granp .framer-71xd4n > :last-child, .framer-granp .framer-1s3jgz8 > :last-child, .framer-granp .framer-12c48bl > :last-child, .framer-granp .framer-gsx9s2 > :last-child, .framer-granp .framer-1nvqlkg > :last-child, .framer-granp .framer-16b3fd4 > :last-child, .framer-granp .framer-ej7a7k > :last-child, .framer-granp .framer-1pbgmxd > :last-child, .framer-granp .framer-4gvqol > :last-child, .framer-granp .framer-10yu3wo > :last-child, .framer-granp .framer-1skvuyw > :last-child, .framer-granp .framer-xfuy3t > :last-child, .framer-granp .framer-13r4pib > :last-child, .framer-granp .framer-kdpcey > :last-child, .framer-granp .framer-1nuptni > :last-child { margin-bottom: 0px; } .framer-granp .framer-16lgh59 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-granp .framer-ipmx8b > *, .framer-granp .framer-1vb2m6f > *, .framer-granp .framer-17suv1e > *, .framer-granp .framer-3uzwb6 > *, .framer-granp .framer-1097e76 > *, .framer-granp .framer-1ygv8r1 > *, .framer-granp .framer-1it95f3 > *, .framer-granp .framer-15ramy8 > *, .framer-granp .framer-yt4r7g > *, .framer-granp .framer-rjb4g5 > *, .framer-granp .framer-gux35 > *, .framer-granp .framer-rsocby > *, .framer-granp .framer-1a4smos > *, .framer-granp .framer-h0u97o > *, .framer-granp .framer-6smimz > *, .framer-granp .framer-10f6fho > *, .framer-granp .framer-t4t6av > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-granp .framer-ipmx8b > :first-child, .framer-granp .framer-1vb2m6f > :first-child, .framer-granp .framer-1t4eddq > :first-child, .framer-granp .framer-17suv1e > :first-child, .framer-granp .framer-3uzwb6 > :first-child, .framer-granp .framer-1097e76 > :first-child, .framer-granp .framer-1ygv8r1 > :first-child, .framer-granp .framer-1it95f3 > :first-child, .framer-granp .framer-15ramy8 > :first-child, .framer-granp .framer-yt4r7g > :first-child, .framer-granp .framer-rjb4g5 > :first-child, .framer-granp .framer-eddf5o > :first-child, .framer-granp .framer-gux35 > :first-child, .framer-granp .framer-1tedism > :first-child, .framer-granp .framer-rsocby > :first-child, .framer-granp .framer-hk4p2e > :first-child, .framer-granp .framer-1a4smos > :first-child, .framer-granp .framer-1pkbpey > :first-child, .framer-granp .framer-h0u97o > :first-child, .framer-granp .framer-3c4gjx > :first-child, .framer-granp .framer-6smimz > :first-child, .framer-granp .framer-l8i9f7 > :first-child, .framer-granp .framer-10f6fho > :first-child, .framer-granp .framer-vm8ji8 > :first-child, .framer-granp .framer-t4t6av > :first-child, .framer-granp .framer-17k6814 > :first-child { margin-left: 0px; } .framer-granp .framer-ipmx8b > :last-child, .framer-granp .framer-1vb2m6f > :last-child, .framer-granp .framer-1t4eddq > :last-child, .framer-granp .framer-17suv1e > :last-child, .framer-granp .framer-3uzwb6 > :last-child, .framer-granp .framer-1097e76 > :last-child, .framer-granp .framer-1ygv8r1 > :last-child, .framer-granp .framer-1it95f3 > :last-child, .framer-granp .framer-15ramy8 > :last-child, .framer-granp .framer-yt4r7g > :last-child, .framer-granp .framer-rjb4g5 > :last-child, .framer-granp .framer-eddf5o > :last-child, .framer-granp .framer-gux35 > :last-child, .framer-granp .framer-1tedism > :last-child, .framer-granp .framer-rsocby > :last-child, .framer-granp .framer-hk4p2e > :last-child, .framer-granp .framer-1a4smos > :last-child, .framer-granp .framer-1pkbpey > :last-child, .framer-granp .framer-h0u97o > :last-child, .framer-granp .framer-3c4gjx > :last-child, .framer-granp .framer-6smimz > :last-child, .framer-granp .framer-l8i9f7 > :last-child, .framer-granp .framer-10f6fho > :last-child, .framer-granp .framer-vm8ji8 > :last-child, .framer-granp .framer-t4t6av > :last-child, .framer-granp .framer-17k6814 > :last-child { margin-right: 0px; } .framer-granp .framer-25dypo > * { margin: 0px; margin-bottom: calc(70px / 2); margin-top: calc(70px / 2); } .framer-granp .framer-34lit6 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-granp .framer-1t4eddq > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-granp .framer-8r8box > *, .framer-granp .framer-lsvui8 > *, .framer-granp .framer-khdmo0 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-granp .framer-1ldtu8a > *, .framer-granp .framer-19dcl4i > *, .framer-granp .framer-71xd4n > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-granp .framer-b7xdrb > *, .framer-granp .framer-irdpvq > *, .framer-granp .framer-1s3jgz8 > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-granp .framer-gsx9s2 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-granp .framer-1nvqlkg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-granp .framer-eddf5o > *, .framer-granp .framer-1tedism > *, .framer-granp .framer-hk4p2e > *, .framer-granp .framer-1pkbpey > *, .framer-granp .framer-3c4gjx > *, .framer-granp .framer-l8i9f7 > *, .framer-granp .framer-vm8ji8 > *, .framer-granp .framer-17k6814 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-granp .framer-kdpcey > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 1440px) { .framer-granp .hidden-17vy030 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1439px) { .framer-granp .hidden-1zl8ji { display: none !important; } .${metadata.bodyClassName}-framer-granp { background: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)) /* {\"name\":\"White\"} */; } .framer-granp.framer-17vy030 { width: 810px; } .framer-granp .framer-nxf8di-container { cursor: pointer; width: 100%; } .framer-granp .framer-34lit6, .framer-granp .framer-1nvqlkg, .framer-granp .framer-1fr5wf3 { width: 100%; } .framer-granp .framer-1ygv8r1 { padding: 0px 50px 0px 50px; } .framer-granp .framer-1skkp5c-container { flex: 1 0 0px; height: 470px; width: 1px; } .framer-granp .framer-gsx9s2 { padding: 80px 30px 30px 30px; } .framer-granp .framer-pfo7x8 { grid-template-columns: repeat(2, minmax(200px, 1fr)); width: 100%; }}`,`@media (max-width: 809px) { .framer-granp .hidden-1apyvn7 { display: none !important; } .${metadata.bodyClassName}-framer-granp { background: var(--token-2cea0ecc-9836-4375-a80c-26247641252f, rgb(249, 251, 243)) /* {\"name\":\"White\"} */; } .framer-granp.framer-17vy030 { width: 390px; } .framer-granp .framer-nxf8di-container { cursor: pointer; width: 100%; } .framer-granp .framer-ipmx8b, .framer-granp .framer-1vb2m6f, .framer-granp .framer-1097e76 { flex-direction: column; } .framer-granp .framer-25dypo { flex: none; padding: 30px 20px 30px 20px; width: 100%; } .framer-granp .framer-34lit6, .framer-granp .framer-1nvqlkg, .framer-granp .framer-1fr5wf3 { width: 100%; } .framer-granp .framer-1ygv8r1 { flex: none; padding: 0px 20px 80px 20px; width: 100%; } .framer-granp .framer-1skkp5c-container { flex: 1 0 0px; height: 510px; width: 1px; } .framer-granp .framer-gsx9s2 { padding: 50px 20px 50px 20px; } .framer-granp .framer-pfo7x8 { grid-template-columns: repeat(1, minmax(200px, 1fr)); width: 100%; } .framer-granp .framer-kdpcey { height: 327px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-granp .framer-ipmx8b, .framer-granp .framer-1vb2m6f, .framer-granp .framer-1097e76 { gap: 0px; } .framer-granp .framer-ipmx8b > *, .framer-granp .framer-1vb2m6f > *, .framer-granp .framer-1097e76 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-granp .framer-ipmx8b > :first-child, .framer-granp .framer-1vb2m6f > :first-child, .framer-granp .framer-1097e76 > :first-child { margin-top: 0px; } .framer-granp .framer-ipmx8b > :last-child, .framer-granp .framer-1vb2m6f > :last-child, .framer-granp .framer-1097e76 > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7106\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"F4CRTVRCD\":{\"layout\":[\"fixed\",\"auto\"]},\"woOAnARFl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerzr9mLjRGW=withCSS(Component,css,\"framer-granp\");export default Framerzr9mLjRGW;Framerzr9mLjRGW.displayName=\"Page\";Framerzr9mLjRGW.defaultProps={height:7106,width:1440};addFonts(Framerzr9mLjRGW,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.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/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\"}]},...MiniTopNavFonts,...NavigationFonts,...ButtonV1Fonts,...DryStoneGalleryFonts,...SculpturesGalleryFonts,...LandscapingGalleryFonts,...PatiosPathwaysTerracesImageGalleryFonts,...WaterFeaturesGalleryFonts,...StepsGalleryFonts,...PlantingGalleryFonts,...DrivewayGalleryFonts,...TimberCarpentryGalleryFonts,...LimeMortarGalleryFonts,...SlideshowFonts,...ArrowFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzr9mLjRGW\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"7106\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F4CRTVRCD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"woOAnARFl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "skCAA2H,IAAMA,GAAM,CAACC,EAAEC,EAAEC,IAAI,KAAK,IAAI,KAAK,IAAIA,EAAEF,CAAC,EAAEC,CAAC,EAAwhB,IAAME,GAAS,CAACC,EAAEC,EAAEC,IAAID,EAAED,IAAI,EAAE,GAAGE,EAAEF,IAAIC,EAAED,GCIvuB,SAASG,GAAc,CAACC,EAAMC,CAAK,EAAE,CAAC,OAAOD,GAAO,IAAIA,IAAQC,EAAM,KAAK,EAAG,CAG9E,SAASC,IAAY,CAAC,GAAK,CAACC,EAAcC,CAAgB,EAAEC,GAAS,EAAK,EAAE,OAAAC,GAAgB,IAAI,CAACF,EAAiBG,EAAO,WAAW,gBAAgB,EAAE,OAAO,CAAE,EAAE,CAAC,CAAC,EAASJ,CAAc,CAK1L,SAASK,GAAWC,EAASC,EAAO,CAAC,YAAAC,EAAY,UAAAC,EAAU,UAAAC,CAAS,EAAEC,EAAW,CAAIF,EAAU,SAASH,IAAWC,GAAQE,EAAU,QAAQ,GAAMG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,aAAa,WAAW,EAAE,GAAW,CAACD,EAAU,SAASH,IAAWC,IAAQE,EAAU,QAAQ,GAAKG,GAAQJ,EAAY,EAAEG,CAAU,EAAED,EAAU,QAAQ,gBAAgB,UAAU,EAAG,CAAC,SAASG,GAAOC,EAAiBC,EAAa,CAAC,IAAMN,EAAUO,EAAOF,CAAgB,EAAQN,EAAYS,GAAeR,EAAU,QAAQ,EAAE,CAAC,EAAQS,EAAYC,GAAaX,EAAY,CAAC,EAAE,CAAC,EAAE,CAACO,GAAc,EAAE,CAAC,CAAC,EAAQK,EAAcD,GAAaX,EAAY,GAAG,EAAE,CAAC,EAAQE,EAAUM,EAAO,IAAI,EAKxpBK,EAAcF,GAAaC,EAAc,GAAG,EAAE,GAAG,OAAO,MAAM,EAG9DE,EAAOH,GAAaE,EAAc,GAAG,IAAI,OAAO,UAAU,SAAS,EAAQE,EAAY,CAAC,GAAGC,GAAiB,QAAQJ,EAAc,cAAAC,EAAc,OAAAC,CAAM,EAAE,MAAM,CAAC,UAAAb,EAAU,YAAAS,EAAY,YAAAV,EAAY,YAAAe,EAAY,UAAAb,CAAS,CAAE,CAAC,SAASe,GAAe,CAAC,QAAAC,CAAO,EAAE,CAACA,EAAQ,aAAa,cAAc,EAAK,CAAE,CAAC,SAASC,GAAgBC,EAAUC,EAAKC,EAAWC,EAAoBC,EAAaC,EAAYC,EAAa,CAACC,GAAU,IAAI,CAAC,GAAG,CAACP,EAAU,QAAQ,OAIlT,IAAMQ,EAAWC,GAJ+TC,GAAM,CAACR,EAAW,QAAQQ,EAAKT,CAAI,EAItfS,EAAKT,CAAI,EAAE,UAAUG,EAAa,UAASA,EAAa,QAAQ,QAAWD,EAAoBO,EAAKT,CAAI,EAAE,OAAO,EAAEI,EAAY,CAAE,EAA2C,CAAC,UAAUL,EAAU,QAAQ,KAAAC,CAAI,CAAC,EAAQU,EAAWC,GAAOZ,EAAU,QAAQ,IAAI,CAACM,EAAa,EAAED,EAAY,CAAE,CAAC,EAAE,MAAM,IAAI,CAACG,EAAW,EAAEG,EAAW,CAAE,CAAE,EAAE,CAACN,EAAYC,CAAY,CAAC,CAAE,CASpW,SAARO,EAA0B,CAAC,MAAAC,EAAM,IAAAC,EAAI,KAAAd,EAAK,MAAAe,EAAM,aAAAC,EAAa,WAAAC,EAAW,YAAAC,EAAY,WAAAC,EAAW,eAAAC,EAAe,UAAAC,EAAU,aAAAC,EAAa,cAAAC,EAAc,GAAGC,CAAK,EAAE,CAAC,IAAMC,EAASC,GAAS,MAAMb,CAAK,EAAQc,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAAaC,EAAQC,GAAWN,CAAK,EAAQO,EAAU/B,EAAK,IAAI,IAAS,CAAC,YAAAgC,EAAY,UAAAC,EAAU,UAAAC,EAAU,eAAAC,GAAe,UAAAC,EAAS,EAAEnB,EAAgB,CAAC,KAAAoB,GAAK,SAAAC,GAAS,MAAAC,EAAK,EAAEpB,EAAgB,CAAC,UAAAqB,GAAU,WAAAC,GAAW,aAAAC,GAAa,WAAAC,GAAW,YAAAC,GAAY,WAAAC,EAAU,EAAE7B,EAAkB,CAAC,cAAA8B,GAAc,iBAAAC,GAAiB,QAAAC,GAAQ,UAAAC,GAAU,WAAAC,GAAW,YAAAC,EAAY,QAAAC,GAAQ,SAAAC,GAAS,eAAAC,GAAe,kBAAAC,GAAkB,YAAAC,GAAY,SAAAC,EAAQ,EAAErC,EAAoB,CAAC,kBAAAsC,GAAkB,UAAAC,GAAU,YAAAC,GAAY,UAAAC,GAAU,UAAAC,GAAU,WAAAC,GAAW,aAAAC,EAAY,EAAE9C,EAElwBjB,GAAWd,EAAO,MAAS,EAG3BgB,GAAahB,EAAO,MAAS,EAI7B8E,GAAc7E,GAAe,CAAC,EAAQc,GAAoBgE,GAAW,CAACD,GAAc,IAAI9D,GAAa,UAAU,OAAUA,GAAa,QAAQ+D,CAAS,CAAE,EAGzJ/F,GAAcD,GAAW,EAEzBiG,GAAMnF,GAAO,GAAMoD,EAAS,EAAQgC,GAAIpF,GAAO,GAAKoD,EAAS,EAAQiC,GAAejF,GAAe8C,EAAU,EAAE,EAAQoC,GAAahF,GAAa+E,GAAeE,GAAG,IAAIA,CAAC,EAAQC,GAAUpF,GAAe6C,CAAS,EAAQwC,GAAenF,GAAa,CAAC+E,GAAeG,EAAS,EAAEzG,EAAa,EAAQ2G,GAAapF,GAAamF,GAAeF,GAAG,IAAIA,CAAC,EAAQI,GAAUvF,GAAeY,EAAK,QAAQ,QAAQ,EAAQ4E,GAAKtF,GAAa,CAACqF,GAAUR,GAAM,YAAYE,GAAeI,GAAeL,GAAI,YAAYE,GAAaI,EAAa,EAAEG,GAAe,sBAAsBA,EAAO,CAAC,mBAAmBA,EAAO,CAAC,MAAMA,EAAO,CAAC,uBAAuBA,EAAO,CAAC,wBAAwBA,EAAO,CAAC,oBAAoBA,EAAO,CAAC,MAAMA,EAAO,CAAC,KAAO,EAAQC,GAAY3F,EAAO,IAAI,EAEpvB,CAAC4F,GAASC,EAAW,EAAE3G,GAASsD,EAAS,EAAE,CAAC,EAE3CsD,GAAU,CAAC,gBAAgB3C,GAAS,WAAW,CAAC,EAAQ4C,GAAW,CAAC,EAAKnE,IAAQ,YAAcf,GAAMkF,GAAW,OAAO,OAAOD,GAAU,OAAO,SAAaC,GAAW,MAAM,OAAOD,GAAU,MAAM,SAAa1C,KAAO0C,GAAU,eAAe,UAAazC,KAAY,WAAWyC,GAAU,MAAM,eAAexC,IAAY,OAAOyC,GAAW,MAAM,QAAgB1C,KAAY,YAAWyC,GAAU,MAAM,QAAQ,IAAIvC,SAAmB5B,SAAWA,EAAI4B,QAAkBwC,GAAW,MAAM,QAAWvC,KAAa,WAAWsC,GAAU,OAAO,eAAerC,IAAa,OAAOsC,GAAW,OAAO,QAAgBvC,KAAa,SAAQsC,GAAU,OAAO,QAAQ,IAAIpC,SAAiB/B,SAAWA,EAAI+B,QAAgBqC,GAAW,OAAO,QAAQ,IAAMC,GAAexD,EAAS,SAAS,OAAayD,GAAe,CAAC,GAAGC,GAAmB,QAAAxD,CAAO,EAAQyD,GAAc,CAAC,GAAGC,GAAkB,IAAAzE,EAAI,WAAWC,EAAM,cAAcf,EAAK,MAAM,SAAS,UAAUA,EAAKmF,GAAe,SAAS,UAAUnF,EAAK,SAASmF,GAAe,eAAe9C,GAAK,GAAGN,cAAsB,OAAU,wBAAwB,QAAQ,gBAAgBC,EAAY4C,GAAK,OAAU,aAAa5C,EAAY4C,GAAK,OAAU,UAAU5C,EAAY4C,GAAK,OAAU,aAAAtD,CAAY,EAAQkE,GAAa,CAAC,CAAC,sBAAsB,EAAE,UAAU,EAAKnE,IAAWmE,GAAa,YAAY,EAAEnE,GAAW,IAAMoE,GAAS,CAAC,EAAgG,GAA3F1E,IAAQ,YAAW0E,GAAS,WAAW,EAAE,QAAQA,GAAS,sBAAsB,EAAE,SAAY,CAAC9D,EAAS,CAAC,IAAM+D,EAAUvG,EAAO,CAAC,CAAC,EAAEW,GAAgBgF,GAAY/C,EAAU9B,GAAWC,GAAoBC,GAAawF,GAAY,IAAI,CAAC,GAAG,CAAC1F,GAAW,QAAQ,OAAO,GAAK,CAAC,aAAA2F,EAAa,gBAAAC,GAAgB,aAAAC,EAAY,EAAE7F,GAAW,QAAc8F,GAAQ9B,GAAc,IAAI,EAAE,GAAG,CAAC2B,GAAc,CAACC,GAAgB,OAAO,GAAGD,EAAaC,GAAgB,CAACrH,GAAWuH,GAAQ,EAAE5B,GAAMhC,EAAc,EAAE3D,GAAWuH,GAAQD,GAAa1B,GAAIjC,EAAc,EAAE,QAAQ6D,GAAE,EAAEA,GAAEN,EAAU,QAAQ,OAAOM,KAAI,CAAC,GAAK,CAAC,QAAAnG,GAAQ,MAAMoG,GAAO,IAAIC,EAAI,EAAER,EAAU,QAAQM,EAAC,EAAKE,GAAKH,IAASE,GAAOF,GAAQF,GAAiBhG,GAAQ,aAAa,cAAc,EAAI,EAAQA,GAAQ,aAAa,cAAc,EAAK,QAAUrB,GAAW,EAAE,EAAE2F,GAAMhC,EAAc,EAAE3D,GAAW,EAAE,EAAE4F,GAAIjC,EAAc,EAAEuD,EAAU,QAAQ,QAAQ9F,EAAc,EAO7rE,IAAIuG,GAAY,KAAK,KAAKP,EAAaC,EAAe,EAAM,MAAMM,EAAW,IAC9FA,GAAY1E,EAAS,MAAI0E,GAAY1E,GAAY0E,KAAcpB,IAASC,GAAYmB,EAAW,EAAG,EAAE,CAACpB,EAAQ,CAAC,EAAEY,GAAY,IAAI,CAAKb,GAAY,UAAeY,EAAU,QAAQ,MAAM,KAAKZ,GAAY,QAAQ,QAAQ,EAAE,IAAIjF,GAAiBG,EAAK,CAAC,QAAAH,EAAQ,MAAMA,EAAQ,WAAW,IAAIA,EAAQ,WAAWA,EAAQ,WAAW,EAAE,CAAC,QAAAA,EAAQ,MAAMA,EAAQ,UAAU,IAAIA,EAAQ,UAAUA,EAAQ,YAAY,CAAG,EAAE,EAAE,CAAC,CAAC,CAAC,EAIhZ8B,IAAUrB,GAAU,IAAI,CAACkE,GAAU,IAAIvC,CAAS,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE3B,GAAU,IAAI,CAAC+D,GAAe,IAAInC,EAAU,EAAE,CAAE,EAAE,CAACA,CAAS,CAAC,EAAE5B,GAAU,IAAI,CAACqE,GAAU,IAAI3E,EAAK,QAAQ,QAAQ,CAAE,EAAE,CAACA,CAAI,CAAC,GAAG,IAAMoG,GAAa,CAACC,EAAM3H,IAAS,CAAC,GAAG,CAACuB,GAAW,QAAQ,OAAO,GAAK,CAAC,QAAA8F,EAAO,EAAE9F,GAAW,QAAa,CAAC,SAAAqG,EAAQ,EAAExB,GAAY,QAAYyB,GAAiBP,GAAEK,IAAQ,EAAE,EAAEC,GAAS,OAAO,EAAE,KAAMC,KAAe,QAAU,CAAC,IAAMC,GAAKF,GAASN,EAAC,EAAQ7B,GAAMnE,EAAKwG,GAAK,WAAWA,GAAK,UAAgBC,GAAOzG,EAAKwG,GAAK,YAAYA,GAAK,aAAmBpC,GAAID,GAAMsC,GAAaC,GAAU,IAAOL,IAAQ,EAAoB5H,GAAS0F,GAAMC,GAAI1F,CAAM,EAAgB,EAAEgI,GAAWH,GAAapC,GAAe6B,KAAIM,GAAS,OAAO,IAAGC,GAAanC,IAAciC,IAAQ,KAAsB5H,GAAS0F,GAAMC,GAAI1F,CAAM,EAAiBgI,GAAWH,GAAanC,GAAa4B,KAAI,IAAGO,GAAapC,KAAQ6B,IAAGK,EAAO,OAAOE,EAAa,EAAQI,GAAgBC,GAAiB,EAAQC,GAAKC,GAAU,CAAC3G,GAAa,QAAQ2G,EAAS,IAAMC,EAAQ/G,EAAK,CAAC,KAAK8G,CAAQ,EAAE,CAAC,IAAIA,CAAQ,EAAEhC,GAAY,QAAQ,SAAS,CAAC,GAAGiC,EAAQ,SAASJ,GAAgB,OAAO,QAAQ,CAAC,CAAE,EAAQK,GAASC,GAAM,CAAC,GAAG,CAAChH,GAAW,QAAQ,OAAO,GAAK,CAAC,aAAA6F,CAAY,EAAE7F,GAAW,QAAQ4G,GAAKI,GAAMnB,GAAcf,GAAS,GAAG,CAAE,EAAQmC,GAAUb,GAAO,IAAI,CAAC,GAAG,CAACpG,GAAW,QAAQ,OAAO,GAAK,CAAC,gBAAA4F,EAAgB,aAAAC,EAAY,EAAE7F,GAAW,QAAc8F,GAAQ9B,GAAc,IAAI,EAAQkD,GAAWrB,GAAaf,GAAeqC,GAAYC,GAAM,EAAEtC,GAAS,EAAE,KAAK,MAAMgB,GAAQoB,EAAU,CAAC,EAAEH,GAASI,GAAYf,CAAK,CAAE,EAEthD,GAAG5E,IAAW,EAAG,OAAqB6F,EAAKC,GAAY,CAAC,CAAC,EAAG,IAAMC,GAAK,CAAC,EAAQC,GAAc,CAAC,EAAE,GAAG1C,GAAS,GAAGhC,IAAkB,CAACD,GAAc,CAAC,QAAQkD,EAAE,EAAEA,EAAEjB,GAASiB,IAAI,CAAC,IAAM0B,EAAW/F,GAAU,CAACqE,GAAG,GAAMwB,GAAK,KAAmBF,EAAKK,GAAI,CAAC,SAAS,CAAC,GAAGC,GAAS,MAAM5E,GAAQ,OAAOA,GAAQ,gBAAgBK,EAAQ,EAAE,YAAY1D,GAAiB,WAAW+H,EAAW,gBAAgBnE,GAAkB,QAAQC,GAAY,QAAQ,IAAIwD,GAAShB,CAAC,EAAE,cAAc/B,GAAc,WAAWhE,GAAW,MAAM8E,GAAS,MAAMiB,EAAE,IAAI5C,GAAQ,QAAQD,EAAY,KAAKnD,CAAI,CAAC,CAAC,EAAMyD,KAAUgE,GAAc,eAAeA,GAAc,qBAAqBA,GAAc,kBAAkB,QAAQhE,SAAgB,OAAqBoE,EAAM,UAAU,CAAC,MAAMzC,GAAe,GAAGI,GAAa,SAAS,CAAe8B,EAAKQ,EAAO,GAAG,CAAC,IAAIhD,GAAY,MAAMQ,GAAc,UAAU,mBAAmB,sBAAsBxC,GAAc,cAAc,QAAQ,YAAY,SAAS,QAAQ,IAAI3C,GAAa,QAAQ,OAAU,SAASuB,GAAS,IAAIb,EAAM,CAACkH,EAAMC,IAAQ,CAAC,IAAIC,GAAkB,OAAOX,EAAK,KAAK,CAAC,MAAMrC,GAAU,GAAGQ,GAAS,aAAa,GAAGuC,EAAM,QAAQvG,IAAW,SAAuByG,GAAaH,EAAM,CAAC,GAAGA,EAAM,MAAM,MAAM,CAAC,IAAIE,GAAIF,EAAM,SAAS,MAAME,KAAM,OAAO,OAAOA,GAAI,MAAM,GAAG/C,EAAU,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,CAAC,EAAgB2C,EAAM,WAAW,CAAC,MAAM,CAAC,GAAGM,GAAe,QAAQnE,GAAa,QAAQ,OAAO,cAAchE,EAAK,MAAM,QAAQ,EAAE,aAAa,+BAA+B,UAAU,4BAA4B,2BAA2B0D,GAAkB,SAAS,CAAe4D,EAAKQ,EAAO,OAAO,CAAC,IAAI3D,GAAM,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAM,YAAY,gBAAgBN,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ5D,EAAQ,EAAH,GAAK,QAAQ0D,GAAkB,QAAQ,MAAM,EAAE,QAAQwD,GAAU,EAAE,EAAE,aAAa,WAAW,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuBI,EAAK,MAAM,CAAC,IAAI,GAAG,MAAM3D,GAAU,OAAOA,GAAU,IAAIG,IAAW,qEAAqE,CAAC,CAAC,CAAC,EAAgBwD,EAAKQ,EAAO,OAAO,CAAC,IAAI1D,GAAI,UAAU,KAAK,SAAS,MAAM,CAAC,GAAGA,GAAI,YAAY,gBAAgBP,GAAU,MAAMF,GAAU,OAAOA,GAAU,aAAaC,GAAY,OAAQ5D,EAAQ,EAAH,GAAK,QAAQ0D,GAAkB,QAAQ,MAAM,EAAE,QAAQwD,GAAU,CAAC,EAAE,aAAa,OAAO,SAAS,CAAC,MAAM,EAAE,EAAE,WAAW,CAAC,SAAS,GAAG,EAAE,SAAuBI,EAAK,MAAM,CAAC,IAAI,GAAG,MAAM3D,GAAU,OAAOA,GAAU,IAAII,IAAY,qEAAqE,CAAC,CAAC,CAAC,EAAEyD,GAAK,OAAO,EAAgBF,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGc,GAAmB,KAAKpI,EAAK,MAAMiD,GAAU,IAAKjD,EAAW,QAAN,MAAc,UAAUA,EAAK,mBAAmB,mBAAmB,cAAcA,EAAK,MAAM,SAAS,OAAOA,EAAKiD,GAAU,QAAQ,aAAaC,GAAW,gBAAgBI,GAAe,GAAGmE,EAAa,EAAE,SAASD,EAAI,CAAC,EAAE,IAAI,CAAC,CAAC,EAAgBF,EAAKe,GAAY,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAA2BzH,EAAS,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,eAAe,CAAC,cAAc,GAAM,iBAAiB,EAAK,EAAE,aAAa,CAAC,UAAU,OAAO,YAAY,EAAE,aAAa,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,CAAC,EAAE,aAAa,CAAC,EAA0B0H,EAAoB1H,EAAS,CAAC,MAAM,CAAC,KAAK2H,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,KAAK,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,GAAK,EAAK,EAAE,YAAY,CAAC,uBAAuB,oBAAoB,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,KAAK,CAAC,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,MAAM,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,GAAGC,GAAe,aAAa,CAAC,KAAKD,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,CAAC,OAAO,UAAU,SAAS,EAAE,aAAa,MAAM,EAAE,WAAW,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO/G,GAAOA,EAAM,YAAY,SAAS,EAAE,aAAa,CAAC,KAAK+G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO/G,GAAOA,EAAM,YAAY,SAAS,EAAE,WAAW,CAAC,KAAK+G,EAAY,KAAK,MAAM,SAAS,QAAQ,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,CAAC,OAAO,UAAU,MAAM,EAAE,aAAa,MAAM,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,EAAE,OAAO/G,GAAOA,EAAM,aAAa,SAAS,EAAE,WAAW,CAAC,KAAK+G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,eAAe,GAAK,OAAO/G,GAAOA,EAAM,aAAa,MAAM,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK+G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,KAAK,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,EAAE,SAAS,CAAC,KAAKA,EAAY,KAAK,MAAM,OAAO,QAAQ,CAAC,QAAQ,SAAS,KAAK,EAAE,aAAa,CAAC,OAAO,SAAS,OAAO,EAAE,aAAa,SAAS,OAAO/G,GAAO,CAACA,EAAM,IAAI,EAAE,MAAM,CAAC,KAAK+G,EAAY,QAAQ,MAAM,QAAQ,aAAa,GAAM,OAAO/G,GAAO,CAACA,EAAM,IAAI,CAAC,CAAC,EAAE,WAAW,CAAC,KAAK+G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,EAAK,EAAE,UAAU,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO/G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK+G,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAO/G,GAAO,CAACA,EAAM,WAAW,EAAE,UAAU,CAAC,KAAK+G,EAAY,OAAO,MAAM,UAAU,OAAO/G,GAAO,CAACA,EAAM,YAAY,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,CAAC,EAAE,eAAe,CAAC,KAAK+G,EAAY,WAAW,MAAM,aAAa,OAAO/G,GAAO,CAACA,EAAM,WAAW,CAAC,CAAC,EAAE,eAAe,CAAC,KAAK+G,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,cAAc,CAAC,KAAKA,EAAY,QAAQ,MAAM,aAAa,aAAa,EAAK,EAAE,iBAAiB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,GAAM,OAAO/G,GAAOA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK+G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,UAAU,CAAC,KAAK+G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,QAAQ,CAAC,KAAK+G,EAAY,OAAO,MAAM,MAAM,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK+G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK+G,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,eAAe,CAAC,KAAK+G,EAAY,MAAM,MAAM,WAAW,aAAa,kBAAkB,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,WAAW,CAAC,KAAK+G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,YAAY,CAAC,KAAK+G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,GAAG,KAAK,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,kBAAkB,CAAC,KAAK+G,EAAY,OAAO,MAAM,UAAU,IAAI,EAAE,IAAI,EAAE,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,EAAE,SAAS,CAAC,KAAK+G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,GAAG,aAAa,EAAE,KAAK,EAAE,OAAO/G,GAAO,CAACA,EAAM,kBAAkBA,EAAM,aAAa,CAAC,CAAC,EAAE,YAAY,CAAC,KAAK+G,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,kBAAkB,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,kBAAkB,OAAO/G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK+G,EAAY,MAAM,MAAM,WAAW,OAAO/G,GAAO,CAACA,EAAM,iBAAiB,EAAE,WAAW,CAAC,KAAK+G,EAAY,MAAM,MAAM,OAAO,OAAO/G,GAAO,CAACA,EAAM,iBAAiB,EAAE,UAAU,CAAC,KAAK+G,EAAY,OAAO,MAAM,OAAO,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,GAAG,OAAO/G,GAAO,CAACA,EAAM,iBAAiB,EAAE,YAAY,CAAC,KAAK+G,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,OAAO/G,GAAO,CAACA,EAAM,iBAAiB,EAAE,aAAa,CAAC,KAAK+G,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,GAAG,eAAe,GAAK,OAAO/G,GAAO,CAACA,EAAM,iBAAiB,CAAC,CAAC,EAAE,UAAU,CAAC,KAAK+G,EAAY,OAAO,MAAM,aAAa,YAAY,WAAW,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,IAAI,EAAE,IAAI,IAAI,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,SAASZ,GAAI,CAAC,cAAA1D,EAAc,WAAAhE,EAAW,WAAAyH,EAAW,gBAAAe,EAAgB,QAAQC,EAAkB,MAAAC,EAAM,MAAAX,EAAM,SAAAJ,EAAS,YAAAlI,EAAY,IAAAoB,EAAI,QAAAe,EAAQ,KAAA7B,EAAK,GAAGwB,CAAK,EAAE,CAAC,IAAMoH,EAAQtJ,GAAa2E,EAAcM,GAAG,CAAC,IAAI0D,GAAIY,GAAK,GAAG,EAAG,GAAAZ,GAAIhI,EAAW,WAAW,MAAMgI,KAAM,SAAcA,GAAI,cAAe,OAAOD,IAAQ,EAAES,EAAgBC,EAAmB,IAAMvB,KAAa0B,GAAK5I,EAAW,WAAW,MAAM4I,KAAO,OAAO,OAAOA,GAAK,cAAcF,EAAYG,GAAU3B,GAAWa,EAAYe,GAAUD,GAAU3B,GAAsF,OAA1D5C,GAAGuE,KAAYd,EAAMW,EAAM,EAAEpE,EAAEwE,GAAUf,IAAQW,EAAM,GAAqBF,EAAgBC,CAAkB,CAAC,EAAQM,EAAclI,EAAI,EAAMmI,EAAI,CAACjJ,GAAMgI,EAAM,EAAEgB,EAAcnH,EAAYqH,EAAO,CAAClJ,GAAMgI,IAAQW,EAAM,EAAEK,EAAcnH,EAAYsH,EAAMnJ,GAAMgI,IAAQW,EAAM,EAAEK,EAAcnH,EAAYuH,EAAKpJ,GAAMgI,EAAM,EAAEgB,EAAcnH,EAAQ,OAAqByF,EAAK,SAAS,CAAC,aAAa,kBAAkBU,EAAM,IAAI,KAAK,SAAS,GAAGxG,EAAM,MAAM,CAAC,GAAG9B,EAAY,QAAQ,GAAGuJ,OAASE,OAAWD,OAAYE,KAAQ,EAAE,SAAuB9B,EAAKQ,EAAO,IAAI,CAAC,MAAM,CAAC,GAAGF,EAAS,QAAAgB,CAAO,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASrB,IAAa,CAAC,OAAqBM,EAAM,UAAU,CAAC,MAAMwB,GAAkB,SAAS,CAAe/B,EAAK,MAAM,CAAC,MAAMgC,GAAY,SAAS,QAAG,CAAC,EAAgBhC,EAAK,IAAI,CAAC,MAAMiC,GAAY,SAAS,oBAAoB,CAAC,EAAgBjC,EAAK,IAAI,CAAC,MAAMkC,GAAe,SAAS,4CAA4C,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,SAASnB,IAAa,CAAC,OAAqBf,EAAK,MAAM,CAAC,wBAAwB,CAAC,OAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,sBAgB5vT,CAAC,CAAC,CAAE,CAAc,IAAM+B,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,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,EAE9e,IAAMC,GAAmB,CAAC,QAAQ,OAAO,SAAS,SAAS,MAAM,OAAO,OAAO,OAAO,SAAS,UAAU,EAAQC,GAAkB,CAAC,QAAQ,EAAE,OAAO,EAAE,UAAU,OAAO,SAAS,WAAW,QAAQ,OAAO,KAAK,WAAW,MAAM,OAAO,OAAO,MAAM,EAAQC,GAAiB,CAAC,OAAO,OAAO,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,WAAW,cAAc,OAAO,UAAU,OAAO,EAAE,QAAQ,CAAC,EAAQC,GAAe,CAAC,QAAQ,OAAO,eAAe,gBAAgB,WAAW,SAAS,SAAS,WAAW,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,OAAO,EAAE,cAAc,OAAO,OAAO,EAAE,QAAQ,EAAE,OAAO,CAAC,EAE1lBC,GAAmB,CAAC,QAAQ,OAAO,aAAa,SAAS,WAAW,SAAS,SAAS,SAAS,SAAS,WAAW,cAAc,MAAM,EAAQC,GAAS,CAAC,aAAa,MAAM,WAAW,QAAQ,OAAO,UAAU,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,QAAQ,CAAC,ECpF4S,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,0PAA0P,kRAAkR,qKAAqK,0GAA0G,09BAA09B,oIAAoI,0nBAA0nB,iEAAiE,6HAA6H,gEAAgE,GAAeA,CAAG,EAQpn2BC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,oBAAoBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR39C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,eAAe,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0QAA0Q,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,qKAAqK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,0PAA0P,mRAAmR,oKAAoK,yGAAyG,wyBAAwyB,qbAAqb,8nBAA8nB,gEAAgE,8HAA8H,gEAAgE,GAAeA,CAAG,EAQp36BC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,4CAA4CA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRn/C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,2EAA2E,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,2PAA2P,mRAAmR,oKAAoK,yGAAyG,oIAAoI,mKAAmK,koBAAkoB,iEAAiE,+HAA+H,kEAAkE,GAAeA,CAAG,EAQhmUC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRv9C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,oEAAoE,OAAO,wVAAwV,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,0PAA0P,kRAAkR,oKAAoK,0GAA0G,ofAAof,8PAA8P,0nBAA0nB,gEAAgE,4HAA4H,gEAAgE,GAAeA,CAAG,EAQ5lmBC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR59C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,2PAA2P,kRAAkR,qKAAqK,yGAAyG,8iBAA8iB,2TAA2T,8nBAA8nB,kEAAkE,4HAA4H,gEAAgE,GAAeA,CAAG,EAQ1/rBC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,yBAAyBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRh+C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,oKAAoK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,2PAA2P,kRAAkR,qKAAqK,0GAA0G,+PAA+P,mMAAmM,8nBAA8nB,kEAAkE,6HAA6H,iEAAiE,GAAeA,CAAG,EAQhvZC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR79C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,gBAAgB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,cAAc,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,ucAAuc,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,kcAAkc,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,ucAAuc,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yKAAyK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,ucAAuc,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,0PAA0P,mRAAmR,oKAAoK,0GAA0G,qsBAAqsB,8nBAA8nB,gEAAgE,6HAA6H,+DAA+D,GAAeA,CAAG,EAQr0pBC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR19C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uKAAuK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0QAA0Q,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,qEAAqE,OAAO,yEAAyE,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,gFAAgF,2PAA2P,kRAAkR,qKAAqK,0GAA0G,qKAAqK,qKAAqK,8nBAA8nB,kEAAkE,6HAA6H,iEAAiE,GAAeA,CAAG,EAQx+UC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,6BAA6BA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECRp+C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,gBAAgBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,uQAAuQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0QAA0Q,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,qWAAqW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,ucAAuc,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,qEAAqE,OAAO,iQAAiQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0QAA0Q,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,0KAA0K,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,sKAAsK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,0PAA0P,mRAAmR,qKAAqK,0GAA0G,kyBAAkyB,+PAA+P,8nBAA8nB,gEAAgE,+HAA+H,iEAAiE,GAAeA,CAAG,EAQ7yzBC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,sBAAsBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR79C,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,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,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,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,EAAMtB,IAAWA,EAAS,KAAK,GAAG,EAAEsB,EAAM,iBAAuBI,GAA6BC,EAAW,SAASL,EAAMM,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAhC,EAAQ,GAAGiC,CAAS,EAAEjB,GAASI,CAAK,EAAO,CAAC,YAAAc,EAAY,WAAAC,EAAW,eAAAC,EAAe,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxC,CAAQ,EAAEyC,EAAgB,CAAC,WAAA9C,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ6C,EAAiBjB,GAAuBH,EAAMtB,CAAQ,EAAQ2C,EAAWC,EAAO,IAAI,EAAQC,EAAsBC,EAAM,EAAQC,EAAsB,CAAad,CAAS,EAAQe,EAAkBC,EAAqB,EAAE,OAAoBpC,EAAKqC,EAAY,CAAC,GAAGhB,GAA4CW,EAAgB,SAAsBhC,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAGoB,EAAU,UAAUgB,EAAGvD,GAAkB,GAAGmD,EAAsB,iBAAiBd,EAAUI,CAAU,EAAE,mBAAmB,YAAY,iBAAiBK,EAAiB,SAAS,YAAY,WAAW,IAAIH,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,aAAa,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,MAAM,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,YAAY,IAAIA,EAAgB,CAAC,UAAU,EAAK,CAAC,EAAE,WAAW,IAAIA,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAE,IAAIX,GAA6Be,EAAK,MAAM,CAAC,GAAGX,CAAK,EAAE,GAAGlC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,WAAW,CAAC,EAAEsC,EAAYE,CAAc,EAAE,SAAsBc,EAAMrC,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB2B,EAAiB,SAAS,YAAY,SAAS,CAAc7B,EAAKwC,EAAS,CAAC,sBAAsB,GAAK,SAAsBxC,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,8FAA8F,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,iBAAiB2B,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,6BAA6B,KAAK,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe7B,EAAKyC,EAA0B,CAAC,SAAsBzC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB2B,EAAiB,SAAS,sBAAsB,SAAsB7B,EAAKnB,EAAS,CAAC,MAAM,SAAS,UAAU,GAAG,YAAY,CAAC,UAAU,qBAAqB,aAAa,GAAG,YAAY,GAAG,UAAU,GAAG,kBAAkB,EAAI,EAAE,KAAK,GAAK,aAAa,EAAE,WAAW,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,eAAe,CAAC,QAAQ,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,UAAU,CAAC,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,QAAQ,GAAG,cAAc,GAAG,YAAY,GAAG,eAAe,GAAM,aAAa,GAAG,WAAW,GAAG,eAAe,CAAC,kBAAkB,EAAE,eAAe,qBAAqB,SAAS,EAAE,SAAS,qBAAqB,QAAQ,GAAG,UAAU,GAAG,QAAQ,EAAE,YAAY,GAAG,YAAY,GAAG,WAAW,GAAG,iBAAiB,GAAK,cAAc,EAAK,EAAE,aAAa,CAAC,YAAY,EAAE,WAAW,EAAE,WAAW,OAAO,aAAa,EAAE,WAAW,EAAE,UAAU,MAAM,EAAE,MAAM,CAAcmB,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,oQAAoQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,IAAI,MAAM,QAAQ,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,yQAAyQ,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,wEAAwE,OAAO,wWAAwW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,EAAe7B,EAAK0C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,iBAAiBb,EAAiB,SAAS,WAAW,CAAC,CAAC,EAAE,WAAW,CAAC,MAAM,GAAK,KAAK,GAAK,SAAS,OAAO,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQc,GAAI,CAAC,kFAAkF,kFAAkF,2PAA2P,kRAAkR,oKAAoK,0GAA0G,kyBAAkyB,8PAA8P,8nBAA8nB,iEAAiE,4HAA4H,iEAAiE,GAAeA,CAAG,EAQzkzBC,GAAgBC,EAAQhC,GAAU8B,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,mBAAmBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,YAAY,YAAY,WAAW,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,CAAC,CAAC,EAAEC,EAASL,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,qEAAqE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,kEAAkE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,uEAAuE,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGjE,GAAc,GAAGuE,EAAoCC,CAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECR4Q,IAAMC,GAAgBC,EAASC,EAAU,EAAQC,GAAgBF,EAASG,EAAU,EAAQC,GAA+BC,GAA0BC,CAAK,EAAQC,GAAcP,EAASQ,EAAQ,EAAQC,GAAqBT,EAASU,EAAe,EAAQC,GAAuBX,EAASY,EAAiB,EAAQC,GAAwBb,EAASc,EAAkB,EAAQC,GAAwCf,EAASgB,EAAkC,EAAQC,GAA0BjB,EAASkB,EAAoB,EAAQC,GAAkBnB,EAASoB,EAAY,EAAQC,GAAqBrB,EAASsB,EAAe,EAAQC,GAAqBvB,EAASwB,EAAe,EAAQC,GAA4BzB,EAAS0B,EAAsB,EAAQC,GAAuB3B,EAAS4B,EAAiB,EAAQC,GAAe7B,EAAS8B,EAAS,EAAQC,GAAW/B,EAASgC,EAAK,EAAQC,GAAYjC,EAASkC,EAAM,EAAyD,IAAMC,GAAY,CAAC,UAAU,6CAA6C,UAAU,qBAAqB,UAAU,qBAAqB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,KAAK,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,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,EAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,EAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,GAAGC,CAAS,EAAEjB,GAASI,CAAK,EAAQc,GAAU,IAAI,CAAC,IAAMC,EAAUrB,GAAiB,OAAUY,CAAY,EAAE,GAAGS,EAAU,OAAO,CAAC,IAAIC,GAAU,SAAS,cAAc,qBAAqB,EAAKA,GAAWA,GAAU,aAAa,UAAUD,EAAU,MAAM,GAAQC,GAAU,SAAS,cAAc,MAAM,EAAEA,GAAU,aAAa,OAAO,QAAQ,EAAEA,GAAU,aAAa,UAAUD,EAAU,MAAM,EAAE,SAAS,KAAK,YAAYC,EAAS,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,IAAyBA,GAAwB,SAAS,cAAc,uBAAuB,KAAK,MAAMA,KAA0B,QAAcA,GAAwB,aAAa,UAAUH,EAAU,QAAQ,EAAG,IAAMI,GAAQJ,EAAU,cAAc,GAAGI,GAAQ,CAAC,IAAMC,GAAK,SAAS,KAAKA,GAAK,UAAU,QAAQC,IAAGA,GAAE,WAAW,cAAc,GAAGD,GAAK,UAAU,OAAOC,EAAC,CAAC,EAAED,GAAK,UAAU,IAAI,GAAGL,EAAU,4BAA4B,EAAG,MAAM,IAAI,CAAII,IAAQ,SAAS,KAAK,UAAU,OAAO,GAAGJ,EAAU,4BAA4B,CAAE,CAAE,EAAE,CAAC,OAAUT,CAAY,CAAC,EAAE,GAAK,CAACgB,EAAYC,CAAmB,EAAEC,GAA8BZ,EAAQa,GAAY,EAAK,EAAQC,EAAe,OAAgBC,EAAWC,EAAO,IAAI,EAAQC,EAAOC,GAAU,EAAQhC,EAAGiC,GAAkB,WAAW,EAAQC,EAAWJ,EAAO,IAAI,EAAQK,EAAIF,GAAkB,WAAW,EAAQG,EAAWN,EAAO,IAAI,EAAQO,EAAIJ,GAAkB,WAAW,EAAQK,EAAWR,EAAO,IAAI,EAAQS,GAAIN,GAAkB,WAAW,EAAQO,GAAWV,EAAO,IAAI,EAAQW,GAAIR,GAAkB,WAAW,EAAQS,GAAWZ,EAAO,IAAI,EAAQa,GAAIV,GAAkB,WAAW,EAAQW,GAAWd,EAAO,IAAI,EAAQe,GAAIZ,GAAkB,WAAW,EAAQa,GAAWhB,EAAO,IAAI,EAAQiB,GAAId,GAAkB,WAAW,EAAQe,GAAWlB,EAAO,IAAI,EAAQmB,GAAIhB,GAAkB,WAAW,EAAQiB,GAAYpB,EAAO,IAAI,EAAQqB,GAAIlB,GAAkB,WAAW,EAAQmB,GAAYtB,EAAO,IAAI,EAAQuB,GAAsBC,EAAM,EAAQC,GAAsB,CAAa3C,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,EAAE,OAAA4C,GAAiB,CAAC,CAAC,EAAsBC,EAAKC,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAAlE,EAAiB,EAAE,SAAsBmE,EAAMC,EAAY,CAAC,GAAG/C,GAA4CwC,GAAgB,SAAS,CAAcM,EAAME,EAAO,IAAI,CAAC,GAAG9C,EAAU,UAAU+C,EAAGvE,GAAkB,GAAGgE,GAAsB,iBAAiB3C,CAAS,EAAE,IAAIL,GAA6BsB,EAAK,MAAM,CAAC,GAAGlB,CAAK,EAAE,SAAS,CAAcgD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKM,EAA0B,CAAC,MAAM,QAAQ,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKS,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeT,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAO,EAAE,UAAU,CAAC,MAAM,OAAO,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,SAAS,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKU,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeV,EAAKW,GAA+B,CAAC,QAAQ1E,GAAU,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,wBAAwB,SAAS,mBAAmB,eAAe,QAAQC,GAAW,KAAK,eAAe,UAAU,GAAK,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAe8D,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,KAAK,UAAU,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,QAAQ,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,OAAO,sBAAsB,oBAAoB,EAAE,SAAsBA,EAAKc,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,aAAa,GAAM,aAAa,GAAM,SAAsBd,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,MAAM,CAAC,oBAAoB,EAAE,KAAK,OAAO,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,MAAM,CAAC,EAAeA,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,OAAO,sBAAsB,oEAAoE,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,QAAQ,MAAM,CAAC,oBAAoB,EAAE,KAAK,QAAQ,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,KAAK,WAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,WAAW,MAAM,CAAC,OAAO,EAAE,KAAK,WAAW,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcF,EAAKe,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,CAAC,EAAE,SAASC,GAA4BhB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiD,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsBhB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,YAAY,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUD,EAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKe,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,CAAC,EAAE,SAASG,GAA6BlB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUmD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBlB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,aAAa,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUC,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelB,EAAKe,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,CAAC,EAAE,SAASI,GAA6BnB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUoD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,cAAc,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUE,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKe,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,CAAC,EAAE,SAASK,GAA6BpB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUqD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBpB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,8BAA8B,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUG,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepB,EAAKe,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,CAAC,EAAE,SAASM,GAA6BrB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUsD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBrB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,iBAAiB,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUI,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerB,EAAKe,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,CAAC,EAAE,SAASO,GAA6BtB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBtB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,QAAQ,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUK,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetB,EAAKe,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,CAAC,EAAE,SAASQ,GAA6BvB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBvB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,WAAW,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUM,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevB,EAAKe,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,CAAC,EAAE,SAASS,GAA6BxB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUyD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBxB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,YAAY,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUO,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAexB,EAAKe,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,CAAC,EAAE,SAASU,GAA6BzB,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0D,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBzB,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,qBAAqB,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUQ,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAezB,EAAKe,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,CAAC,EAAE,SAASW,GAA6B1B,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2D,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB1B,EAAKiB,GAAS,CAAC,UAAU,qEAAqE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,wEAAwE,UAAU,wEAAwE,UAAU,cAAc,UAAU,qBAAqB,UAAU,qEAAqE,QAAQ,YAAY,MAAM,OAAO,UAAU,qEAAqE,UAAUS,EAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe1B,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,GAAGhE,EAAG,IAAIkC,EAAK,SAAsBuB,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAK2B,GAAgB,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,EAAe3B,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,GAAG7B,EAAI,IAAIC,EAAK,SAAsBqB,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAK4B,GAAkB,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,EAAe5B,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,GAAG3B,EAAI,IAAIC,EAAK,SAAsBmB,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAK6B,GAAmB,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,EAAe7B,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,GAAGzB,GAAI,IAAIC,GAAK,SAAsBiB,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAK8B,GAAmC,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,EAAe9B,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,GAAGvB,GAAI,IAAIC,GAAK,SAAsBe,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAK+B,GAAqB,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,EAAe/B,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,GAAGrB,GAAI,IAAIC,GAAK,SAAsBa,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKgC,GAAa,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,EAAehC,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,GAAGnB,GAAI,IAAIC,GAAK,SAAsBW,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKiC,GAAgB,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,EAAejC,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,GAAGjB,GAAI,IAAIC,GAAK,SAAsBS,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKkC,GAAgB,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,EAAelC,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,GAAGf,GAAI,IAAIC,GAAM,SAAsBO,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKmC,GAAuB,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,EAAenC,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,iCAAiC,CAAC,EAAE,SAAsBiC,EAAKM,EAA0B,CAAC,MAAM,4CAA4C,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,GAAGb,GAAI,IAAIC,GAAM,SAAsBK,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKoC,GAAkB,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepC,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,aAAa,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAM,UAAU,GAAG,kBAAkB,EAAI,CAAC,CAAC,EAAE,SAAsBiC,EAAKqC,GAAU,CAAC,UAAU,SAAS,aAAa,CAAC,UAAU,qEAAqE,SAAS,GAAG,aAAa,EAAE,mBAAmB,EAAE,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,OAAO,YAAY,GAAG,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAM,aAAa,EAAE,UAAU,OAAO,YAAY,GAAM,eAAe,CAAC,aAAa,GAAK,eAAe,EAAE,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,GAAG,YAAY,gBAAgB,IAAI,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,CAAcrC,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,KAAK,kBAAkB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,mRAA8Q,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gNAAgN,MAAM,CAAC,OAAO,EAAE,KAAK,gNAAgN,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,KAAK,cAAc,SAAsBF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,KAAK,kBAAkB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAME,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,+QAA2P,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,gNAAgN,MAAM,CAAC,OAAO,EAAE,KAAK,gNAAgN,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,KAAK,OAAO,SAAsBJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,KAAK,cAAc,SAAsBF,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,kBAAkB,MAAM,CAAC,OAAO,EAAE,KAAK,kBAAkB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeE,EAAME,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,8RAA8R,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,gNAAgN,MAAM,CAAC,OAAO,EAAE,KAAK,gNAAgN,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKI,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,KAAK,OAAO,SAAsBJ,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBX,EAAM,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,SAAS,CAAC,YAAyBF,EAAK,OAAO,CAAC,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iCAAiC,MAAM,CAAC,OAAO,EAAE,KAAK,iCAAiC,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,8PAA8P,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,+LAA+L,MAAM,CAAC,OAAO,EAAE,KAAK,+LAA+L,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,gBAAgB,KAAK,gBAAgB,SAAS,CAAcF,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,eAAe,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,GAAG,EAAE,UAAU,gBAAgB,SAAsBA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,KAAK,YAAY,SAAsBE,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,KAAK,eAAe,SAAS,CAAcF,EAAKY,EAAS,CAAC,sBAAsB,GAAK,SAAsBZ,EAAWa,EAAS,CAAC,SAAsBb,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,cAAc,MAAM,CAAC,OAAO,EAAE,KAAK,cAAc,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKM,EAA0B,CAAC,SAAsBN,EAAKO,EAAU,CAAC,UAAU,2BAA2B,SAAsBP,EAAKsC,GAAM,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAetC,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,QAAQ,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,KAAK,SAAS,SAAsBA,EAAKM,EAA0B,CAAC,MAAM,QAAQ,SAAsBN,EAAKO,EAAU,CAAC,UAAU,0BAA0B,SAAsBP,EAAKQ,EAAkB,CAAC,WAAWzC,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBiC,EAAKuC,GAAO,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevC,EAAK,MAAM,CAAC,UAAUK,EAAGvE,GAAkB,GAAGgE,EAAqB,EAAE,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0C,GAAI,CAAC,kFAAkF,IAAIrG,GAAS,2IAA2I,gFAAgF,sVAAsV,6RAA6R,gJAAgJ,0GAA0G,sQAAsQ,8QAA8Q,0SAA0S,8RAA8R,iRAAiR,+LAA+L,mVAAmV,4ZAA4Z,8QAA8Q,mdAAmd,8eAA8e,yWAAyW,gTAAgT,4GAA4G,gUAAgU,kbAAkb,kVAAkV,kQAAkQ,gVAAgV,+QAA+Q,mUAAmU,0RAA0R,qMAAqM,oNAAoN,gUAAgU,msBAAmsB,8sBAA8sB,seAAse,gaAAga,oYAAoY,2XAA2X,2RAA2R,u+RAAu+R,6FAA6F,mHAAmHA,GAAS,uqBAAuqB,4FAA4FA,GAAS,6lDAA6lD,GAAeqG,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,EAAG,EAS1y0EC,GAAgBC,EAAQ9F,GAAU4F,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,KAAK,MAAM,IAAI,EAAEG,EAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,8GAA8G,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,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,CAAC,CAAC,EAAE,GAAGI,GAAgB,GAAGC,GAAgB,GAAGC,GAAc,GAAGC,GAAqB,GAAGC,GAAuB,GAAGC,GAAwB,GAAGC,GAAwC,GAAGC,GAA0B,GAAGC,GAAkB,GAAGC,GAAqB,GAAGC,GAAqB,GAAGC,GAA4B,GAAGC,GAAuB,GAAGC,GAAe,GAAGC,GAAW,GAAGC,GAAY,GAAGC,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EAC7pF,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,yBAA2B,OAAO,uBAAyB,GAAG,6BAA+B,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,sBAAwB,OAAO,oCAAsC,4JAA0L,qBAAuB,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["clamp", "t", "e", "n", "progress", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "v", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "Framerd4XazrHnm", "withCSS", "d4XazrHnm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "Framere76oj3pIN", "withCSS", "e76oj3pIN_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerhYT8tqX6x", "withCSS", "hYT8tqX6x_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerJ1btpeHJ6", "withCSS", "J1btpeHJ6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "Framerl1xu53iCf", "withCSS", "l1xu53iCf_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramernCj57jLeH", "withCSS", "nCj57jLeH_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerNG_fnJ79s", "withCSS", "NG_fnJ79s_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerOW8CWjuDk", "withCSS", "OW8CWjuDk_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerpQmPJJolI", "withCSS", "pQmPJJolI_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "CarouselFonts", "getFonts", "Carousel", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "ComponentViewportProvider", "Image2", "css", "FramerZ32YiZysO", "withCSS", "Z32YiZysO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MiniTopNavFonts", "getFonts", "VbY4eCJz8_default", "NavigationFonts", "CQLnwY2p4_default", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "ButtonV1Fonts", "ooKEMYCr9_default", "DryStoneGalleryFonts", "d4XazrHnm_default", "SculpturesGalleryFonts", "J1btpeHJ6_default", "LandscapingGalleryFonts", "nCj57jLeH_default", "PatiosPathwaysTerracesImageGalleryFonts", "e76oj3pIN_default", "WaterFeaturesGalleryFonts", "l1xu53iCf_default", "StepsGalleryFonts", "hYT8tqX6x_default", "PlantingGalleryFonts", "Z32YiZysO_default", "DrivewayGalleryFonts", "NG_fnJ79s_default", "TimberCarpentryGalleryFonts", "OW8CWjuDk_default", "LimeMortarGalleryFonts", "pQmPJJolI_default", "SlideshowFonts", "Slideshow", "ArrowFonts", "HZAGF60xh_default", "FooterFonts", "XJ2AFy8gf_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "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", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "useRouteElementId", "ref2", "id1", "ref3", "id2", "ref4", "id3", "ref5", "id4", "ref6", "id5", "ref7", "id6", "ref8", "id7", "ref9", "id8", "ref10", "id9", "ref11", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "VbY4eCJz8_default", "CQLnwY2p4_default", "ImageWithOptimizedAppearEffect", "RichText2", "x", "Link", "ResolveLinks", "resolvedLinks", "ooKEMYCr9_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "d4XazrHnm_default", "J1btpeHJ6_default", "nCj57jLeH_default", "e76oj3pIN_default", "l1xu53iCf_default", "hYT8tqX6x_default", "Z32YiZysO_default", "NG_fnJ79s_default", "OW8CWjuDk_default", "pQmPJJolI_default", "Slideshow", "HZAGF60xh_default", "XJ2AFy8gf_default", "css", "Framerzr9mLjRGW", "withCSS", "zr9mLjRGW_default", "addFonts", "MiniTopNavFonts", "NavigationFonts", "ButtonV1Fonts", "DryStoneGalleryFonts", "SculpturesGalleryFonts", "LandscapingGalleryFonts", "PatiosPathwaysTerracesImageGalleryFonts", "WaterFeaturesGalleryFonts", "StepsGalleryFonts", "PlantingGalleryFonts", "DrivewayGalleryFonts", "TimberCarpentryGalleryFonts", "LimeMortarGalleryFonts", "SlideshowFonts", "ArrowFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
