{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js", "ssg:https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js", "ssg:https://framerusercontent.com/modules/XScagAoTKbpOm4yN6c4H/ZqYxzkitEycOm2tUvMj2/UncodeGallery.js", "ssg:https://framerusercontent.com/modules/qpdeFt21EYHvCw63u0ri/EtcLAqMcKPaiPuEBS3Bu/cuiXPP7bz.js", "ssg:https://framerusercontent.com/modules/RHveOZn89tpqTD5E3Vox/e3E7SRd1zcopTmtmt5sT/nincqMXpZ.js", "ssg:https://framerusercontent.com/modules/XePbufpPrR4WJY0hnS2c/JRTdBxLe9JtRbqPS8NJA/hHxEeWfRZ.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom,radius,border,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Border,optional:true,hidden(props){return props.type!==\"url\";}},radius:{type:ControlType.BorderRadius,title:\"Radius\",hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,...border,zoom:zoom,borderRadius:radius,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerIntrinsicWidth\":\"600\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";/* -------------------------------------------------------------------------\n   Fun\u00E7\u00E3o para extrair imagens <img> e background-image de um container DOM\n--------------------------------------------------------------------------- */function extractImagesFromContainer(containerDOM){let sources=[];const imgElements=containerDOM.querySelectorAll(\"img\");imgElements.forEach(img=>{if(img.src)sources.push(img.src);});const bgElements=containerDOM.querySelectorAll(\"[style*='background-image']\");bgElements.forEach(el=>{const styles=window.getComputedStyle(el);const bg=styles.getPropertyValue(\"background-image\");const match=bg.match(/url\\([\"']?(.*?)[\"']?\\)/);if(match&&match[1]){sources.push(match[1]);}});return sources;}const OPACITY_0=.001;/**\n * @framerDisableUnlink\n */export default function UncodeGallery(props){/* -------------------------------------------------------------------------\n       Recebendo as props\n    -------------------------------------------------------------------------- */const{container,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,infinity,codeBy,style,// PROPRIEDADE NOVA\nimageBorderRadius}=props;// Extraindo op\u00E7\u00F5es espec\u00EDficas\nconst{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBorderRadius,dotsBlur}=progressOptions;// Verificando se estamos no Canvas do Framer\nconst isCanvas=RenderTarget.current()===RenderTarget.canvas;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/* -------------------------------------------------------------------------\n       Armazenando as imagens extra\u00EDdas APENAS UMA VEZ (useRef)\n    -------------------------------------------------------------------------- */const imagesRef=useRef([]);/* -------------------------------------------------------------------------\n       Refer\u00EAncia ao container DOM escondido (para extrair imagens)\n    -------------------------------------------------------------------------- */const localContainerRef=useRef(null);// Extrai as imagens apenas na montagem\nuseEffect(()=>{// Se estiver no Canvas, n\u00E3o extrai (ou pode extrair se preferir)\nif(RenderTarget.current()===RenderTarget.canvas)return;if(!container){console.warn(\"Container n\\xe3o definido ou n\\xe3o conectado.\");return;}// Se j\u00E1 tivermos imagens no ref, n\u00E3o extrair de novo\nif(imagesRef.current.length>0)return;const containerDOM=localContainerRef.current;if(!containerDOM){console.warn(\"Container DOM n\\xe3o encontrado.\");return;}const sources=extractImagesFromContainer(containerDOM);if(sources.length>0){imagesRef.current=sources;}else{console.warn(\"Nenhuma imagem encontrada no container.\");}},[])// <-- Sem depend\u00EAncias: executa s\u00F3 1x ao montar\n;/* -------------------------------------------------------------------------\n       Verifica se temos imagens no ref\n    -------------------------------------------------------------------------- */const hasImages=imagesRef.current.length>0;/* -------------------------------------------------------------------------\n       Placeholder para o modo Canvas, caso n\u00E3o tenha imagens\n    -------------------------------------------------------------------------- */if(isCanvas&&!hasImages){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\uD83D\uDDBC\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect a Gallery\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Connect this component to a container with the CMS's new Gallery feature // Conecte este componente a um container com o novo recurso de Gallery do CMS.\"})]});}/* -------------------------------------------------------------------------\n       Cria refs para cada slide\n    -------------------------------------------------------------------------- */const childrenRef=useMemo(()=>{return imagesRef.current.map(()=>/*#__PURE__*/createRef());},[imagesRef.current]);/* -------------------------------------------------------------------------\n       States e Refs auxiliares\n    -------------------------------------------------------------------------- */const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);const[isMouseDown,setIsMouseDown]=useState(false);const[isResizing,setIsResizing]=useState(false);// Padding unificado ou por lado\nconst paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* -------------------------------------------------------------------------\n       Medi\u00E7\u00E3o de tamanhos (parent e slides)\n    -------------------------------------------------------------------------- */const parentRef=useRef(null);const measure=useCallback(()=>{if(!hasImages||!parentRef.current)return;const total=imagesRef.current.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});},[childrenRef,gap,hasImages,imagesRef,isHorizontal]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);useLayoutEffect(()=>{if(hasImages){scheduleMeasure();}},[hasImages,itemAmount,scheduleMeasure]);// Observa resize\nlet initialResize=useRef(true);useEffect(()=>{if(!parentRef.current)return;return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[scheduleMeasure]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/* -------------------------------------------------------------------------\n       L\u00F3gica do slideshow\n    -------------------------------------------------------------------------- */const totalItems=imagesRef.current.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const[currentItem,setCurrentItem]=useState(startFrom);const[isDragging,setIsDragging]=useState(false);const visibilityRef=useRef(null);const inView=useInView(visibilityRef);const isVisible=usePageVisibility()&&inView;// Definindo valores de dire\u00E7\u00E3o\nconst factor=isInverted?1:-1;// MotionValues\nconst xOrY=useMotionValue(childrenSize);const wrappedValue=!isCanvas?useTransform(xOrY,value=>{if(infinity){const totalSize=childrenSize*4;const wrapped=(value%totalSize+totalSize)%totalSize;return isNaN(wrapped)?0:wrapped;}else{return value;}}):0;const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);// Posi\u00E7\u00E3o destino\nconst newPosition=()=>factor*currentItem*itemWithGap;// Index usado para dots\nconst wrappedIndex=infinity?wrap(0,totalItems,currentItem):currentItem;const wrappedIndexInverted=infinity?wrap(0,-totalItems,currentItem):-currentItem;// Ajusta xOrY ao redimensionar\nuseLayoutEffect(()=>{if(size?.children===null)return;if(initialResize.current||isResizing){xOrY.set(newPosition());}},[size,factor,itemWithGap,currentItem,childrenSize,isResizing,xOrY]);// Fun\u00E7\u00E3o para rodar autoplay\nconst switchPages=()=>{if(isCanvas||!hasImages||!size.parent||isDragging)return;animate(xOrY,newPosition(),transitionControl);if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{if(infinity){setCurrentItem(prev=>prev+1);}else{if(!isInverted){// Left/Top\nif(currentItem<totalItems-1){setCurrentItem(currentItem+1);}else{setCurrentItem(0);}}else{// Right/Bottom\nif(currentItem>0){setCurrentItem(currentItem-1);}else{setCurrentItem(totalItems-1);}}}switchPages();},intervalControl*1e3);}};const setDelta=delta=>{if(infinity){if(!isInverted){setCurrentItem(prev=>prev+delta);}else{setCurrentItem(prev=>prev-delta);}}else{// Finito\nlet newCurrentItem;if(!isInverted){newCurrentItem=currentItem+delta;}else{newCurrentItem=currentItem-delta;}// clamp\nnewCurrentItem=clamp(newCurrentItem,0,totalItems-1);setCurrentItem(newCurrentItem);}};// Navegar para um \u00EDndice espec\u00EDfico (dots)\nconst setPage=index=>{if(infinity){const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(prev=>prev+goto);}else{setCurrentItem(prev=>prev-gotoInverted);}}else{setCurrentItem(clamp(index,0,totalItems-1));}};// Drag start/end\nconst handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityXorY=isHorizontal?velocity.x:velocity.y;const velocityThreshold=200;const itemDimension=size.item+gap;const isHalfOfNext=offsetXorY<-itemDimension/2;const isHalfOfPrev=offsetXorY>itemDimension/2;const normalizedOffset=Math.abs(offsetXorY);// Quantos itens passamos pelo arrasto\nconst itemDelta=Math.round(normalizedOffset/itemDimension);const itemDeltaFromOne=itemDelta===0?1:itemDelta;if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{if(isHalfOfNext){setDelta(itemDelta);}else if(isHalfOfPrev){setDelta(-itemDelta);}else{// Snap de volta se n\u00E3o passou do meio\nanimate(xOrY,newPosition(),transitionControl);}}};// Efeito principal: autoplay e resize\nuseEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[isVisible,isResizing,switchPages]);/* -------------------------------------------------------------------------\n       Duplica\u00E7\u00E3o de slides (para modo infinito)\n    -------------------------------------------------------------------------- */const dupedSlides=[];let duplicateBy=infinity?4:1;if(isCanvas){duplicateBy=1;}// C\u00E1lculo do tamanho (em % ou fixo) dos slides\nlet columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;let slideCounter=0;for(let index=0;index<duplicateBy;index++){dupedSlides.push(...imagesRef.current.map((src,childIndex)=>{return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:`${index}-${childIndex}`,source:src,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,infinity:infinity,sizeObj:size,childCounter:slideCounter++,wrappedValue:wrappedValue,// -------------- Adicionamos o prop aqui --------------\nimageBorderRadius:imageBorderRadius},`${index}-${childIndex}`);}));}/* -------------------------------------------------------------------------\n       Fade nas bordas (opcional)\n    -------------------------------------------------------------------------- */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* -------------------------------------------------------------------------\n       Dots de progresso\n    -------------------------------------------------------------------------- */const dots=[];const dotStyle={borderRadius:`${dotsBorderRadius}%`,background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};const dotsBlurStyle={};if(showProgressDots&&totalItems>1){for(let i=0;i<totalItems;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}/* -------------------------------------------------------------------------\n       Configurando Drag (caso habilitado)\n    -------------------------------------------------------------------------- */const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};/* -------------------------------------------------------------------------\n       Layout e posicionamento das setas\n    -------------------------------------------------------------------------- */const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";/* -------------------------------------------------------------------------\n       Render do componente\n    -------------------------------------------------------------------------- */return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{event.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{ref:localContainerRef,style:{display:\"none\"},children:container}),/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedSlides})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Gallery pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Previous arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next arrow\"})})]}),showProgressDots&&dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* -------------------------------------------------------------------------\n   Default props\n-------------------------------------------------------------------------- */UncodeGallery.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:false,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true,dotsBorderRadius:50},// Propriedade nova\nimageBorderRadius:0,codeBy:\"Code by @omatusaelhorch\"};/* -------------------------------------------------------------------------\n   Property Controls\n-------------------------------------------------------------------------- */addPropertyControls(UncodeGallery,{container:{type:ControlType.ComponentInstance,title:\"Container\",description:\"Conecte um container que possua imagens / Connect a container that has <img> or background-image children.\"},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\"],optionIcons:[\"direction-left\"],optionTitles:[\"Left\"],displaySegmentedControl:true,defaultValue:UncodeGallery.defaultProps.direction,description:\"Dire\\xe7\\xe3o do slideshow / Slideshow direction.\"},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:UncodeGallery.defaultProps.autoPlayControl,description:\"Avan\\xe7a automaticamente / Auto-advance the slideshow.\"},intervalControl:{type:ControlType.Number,title:\"Interval (s)\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl,description:\"Tempo entre slides / Autoplay interval in seconds.\"},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:UncodeGallery.defaultProps.dragControl,description:\"Permite arrastar / Enable drag on the slideshow.\"},startFrom:{type:ControlType.Number,title:\"Start From\",min:0,max:10,displayStepper:true,defaultValue:UncodeGallery.defaultProps.startFrom,description:\"\\xcdndice inicial / 0-based start index.\"},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:UncodeGallery.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true,description:\"Opacidade / Opacity of items.\"},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:UncodeGallery.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true,description:\"Escala / Scale of items.\"},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:UncodeGallery.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1,description:\"Perspectiva 3D / 3D perspective for items.\"},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:UncodeGallery.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1,description:\"Rota\\xe7\\xe3o / Rotate items in 3D.\"},effectsHover:{type:ControlType.Boolean,title:\"Hover Action\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:UncodeGallery.defaultProps.effectsOptions.effectsHover,description:\"Pausar ou reproduzir no hover / Pause or play on hover.\"}}},alignment:{type:ControlType.Enum,title:\"Alignment\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],defaultValue:\"center\",displaySegmentedControl:true,description:\"Alinhamento dos slides / Align slideshow items (flex).\"},itemAmount:{type:ControlType.Number,title:\"Items Visible\",min:1,max:10,displayStepper:true,defaultValue:UncodeGallery.defaultProps.itemAmount,description:\"Quantidade de itens vis\\xedveis / Items visible at once.\"},gap:{type:ControlType.Number,title:\"Gap\",min:0,defaultValue:UncodeGallery.defaultProps.gap,description:\"Espa\\xe7amento entre itens / Gap between items.\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Uniform\",\"Per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0,description:\"Espa\\xe7amento interno / Container padding.\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0,description:\"Arredondar cantos / Border radius of container.\"},transitionControl:{type:ControlType.Transition,defaultValue:UncodeGallery.defaultProps.transitionControl,title:\"Transition\",description:\"Transi\\xe7\\xe3o entre itens / Slide transition.\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false,description:\"Desvanecer bordas / Fade edges of the slideshow.\"},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;},description:\"Mostrar ou ocultar overflow / Show or hide overflow.\"},fadeWidth:{type:ControlType.Number,title:\"Fade Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;},description:\"Largura do fade / Width of the fade effect.\"},fadeInset:{type:ControlType.Number,title:\"Fade Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;},description:\"Margem interna do fade / Fade inset margin.\"},fadeAlpha:{type:ControlType.Number,title:\"Fade Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;},description:\"Opacidade inicial/final / Fade start/end opacity.\"}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:UncodeGallery.defaultProps.arrowOptions.showMouseControls,description:\"Mostrar setas de navega\\xe7\\xe3o / Show navigation arrows.\"},arrowFill:{type:ControlType.Color,title:\"Color\",hidden:props=>!props.showMouseControls,defaultValue:UncodeGallery.defaultProps.arrowOptions.arrowFill,description:\"Cor de fundo / Background color for arrows.\"},leftArrow:{type:ControlType.Image,title:\"Left Arrow\",hidden:props=>!props.showMouseControls,description:\"\\xcdcone custom para seta esquerda / custom arrow.\"},rightArrow:{type:ControlType.Image,title:\"Right Arrow\",hidden:props=>!props.showMouseControls,description:\"\\xcdcone custom para seta direita / custom arrow.\"},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:UncodeGallery.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls,description:\"Tamanho das setas / Arrow buttons size.\"},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls,description:\"Arredondar setas / Border radius of arrow buttons.\"},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls,description:\"Fade ao hover / Fade in arrows on hover.\"},arrowShouldSpace:{type:ControlType.Boolean,title:\"Position\",enabledTitle:\"Corners\",disabledTitle:\"Grouped\",defaultValue:UncodeGallery.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls,description:\"Espalhar nas pontas ou agrupar / Corner or grouped arrows.\"},arrowPosition:{type:ControlType.Enum,title:\"Grouped Pos.\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace,description:\"Posi\\xe7\\xe3o das setas agrupadas / Position for grouped arrows.\"},arrowPadding:{type:ControlType.Number,title:\"Corner Dist.\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace,description:\"Margem em corners / Padding for cornered arrows.\"},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\",description:\"Dist\\xe2ncia do topo em grouped / Top offset for grouped arrows.\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\",description:\"Dist\\xe2ncia da base / Bottom offset for grouped arrows.\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\",description:\"Dist\\xe2ncia da direita / Right offset for grouped arrows.\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\",description:\"Dist\\xe2ncia da esquerda / Left offset for grouped arrows.\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:1e3,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace,description:\"Espa\\xe7amento entre setas / Gap between grouped arrows.\"}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false,description:\"Exibir pontos de progresso / Show progress dots.\"},dotsBorderRadius:{type:ControlType.Number,title:\"Dot Radius\",min:0,max:100,defaultValue:50,hidden:props=>!props.showProgressDots,description:\"Raio do ponto / Dot border radius.\"},dotSize:{type:ControlType.Number,title:\"Dot Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots,description:\"Tamanho do ponto / Dot size.\"},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots,description:\"Offset de posicionamento / Inset from edges.\"},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:1e3,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots,description:\"Espa\\xe7o entre pontos / Gap between dots.\"},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots,description:\"Padding interno do ponto / Dot's padding container.\"},dotsFill:{type:ControlType.Color,title:\"Dot Color\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots,description:\"Cor dos pontos / Dot fill color.\"},dotsBackground:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots,description:\"Cor de fundo dos pontos / Container background.\"},dotsRadius:{type:ControlType.Number,title:\"Bg Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots,description:\"Raio do container de dots / Dots container radius.\"},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots,description:\"Opacidade do ponto inativo / Inactive dot opacity.\"},dotsActiveOpacity:{type:ControlType.Number,title:\"Active Opacity\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots,description:\"Opacidade do ponto ativo / Active dot opacity.\"},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots,description:\"Desfoque do container / Blur behind the dots.\"}}},// NOVA PROP\nimageBorderRadius:{type:ControlType.Number,title:\"Img Radius\",defaultValue:UncodeGallery.defaultProps.imageBorderRadius,min:0,max:300,step:1,description:\"Arredondar imagens / Border radius of images.\"},codeBy:{type:ControlType.String,title:\" \",placeholder:\"Author:\",readOnly:true,description:\"Este componente foi criado por / This component was created by @omatusaelhorch\"}});/* -------------------------------------------------------------------------\n   Slide - item da galeria (forwardRef)\n-------------------------------------------------------------------------- */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,source,width,height,gap,wrappedValue,childCounter,isCanvas,effectsOpacity,effectsScale,effectsRotate,isHorizontal,sizeObj,imageBorderRadius}=props;const size=sizeObj;if(!size)return null;// Calcula offset para interpolar rota\u00E7\u00E3o/escala/opacidade\nconst childOffset=(size.item+gap)*childCounter;const scrollRange=[-size.item,0,size.parent-size.item+gap,size.parent].map(val=>val-childOffset);const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const visibility=!isCanvas&&useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(motion.img,{ref:ref,src:source,alt:\"\",decoding:\"async\",style:{flexShrink:0,userSelect:\"none\",width:width,height:height,objectFit:\"cover\",opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility,// Aqui definimos o novo borderRadius da imagem\nborderRadius:imageBorderRadius}},slideKey+\"_img\")})});});/* -------------------------------------------------------------------------\n   Componente Dot - bolinha de pagina\u00E7\u00E3o\n-------------------------------------------------------------------------- */function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){// Determina se este dot est\u00E1 selecionado\nlet isSelected=wrappedIndex===index;if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}// Espa\u00E7amento para cada dot\nconst inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Go to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* -------------------------------------------------------------------------\n   clamp: limita um valor entre min e max\n-------------------------------------------------------------------------- */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* -------------------------------------------------------------------------\n   Estilos para o container principal\n-------------------------------------------------------------------------- */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* -------------------------------------------------------------------------\n   Placeholder exibido no Canvas quando n\u00E3o h\u00E1 imagens\n-------------------------------------------------------------------------- */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#8855ff\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:13,overflow:\"hidden\",padding:\"20px\",textAlign:\"center\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5};/* -------------------------------------------------------------------------\n   Bot\u00F5es de base (setas e dots)\n-------------------------------------------------------------------------- */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};/* -------------------------------------------------------------------------\n   Container para setas e dots\n-------------------------------------------------------------------------- */const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\",borderRadius:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"UncodeGallery\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UncodeGallery.map", "// Generated by Framer (f57d8b5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const serializationHash=\"framer-ZMZcT\";const variantClassNames={IUJewR5ocCARXWewQJ:\"framer-v-1r8sdgh\"};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={bounce:.2,delay:0,duration:.4,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.create(React.Fragment);const getProps=({height,id,textContent,width,...props})=>{var _ref;return{...props,gG0bP87xN:(_ref=textContent!==null&&textContent!==void 0?textContent:props.gG0bP87xN)!==null&&_ref!==void 0?_ref:\"Pool\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gG0bP87xN,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"IUJewR5ocCARXWewQJ\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1r8sdgh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"IUJewR5ocCARXWewQJ\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-86rxfl-container\",layoutDependency:layoutDependency,layoutId:\"IUJewR5ocoIKoNaqpF-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"IUJewR5ocoIKoNaqpF\",layoutId:\"IUJewR5ocoIKoNaqpF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35)))\"},children:\"Pool\"})}),className:\"framer-18ki9ks\",fonts:[\"GF;Montserrat-500\"],layoutDependency:layoutDependency,layoutId:\"IUJewR5ocdKn9Dj657\",style:{\"--extracted-r6o4lv\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},text:gG0bP87xN,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZMZcT.framer-i3wxol, .framer-ZMZcT .framer-i3wxol { display: block; }\",\".framer-ZMZcT.framer-1r8sdgh { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 25px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 269px; }\",\".framer-ZMZcT .framer-86rxfl-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-ZMZcT .framer-18ki9ks { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZMZcT.framer-1r8sdgh { gap: 0px; } .framer-ZMZcT.framer-1r8sdgh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-ZMZcT.framer-1r8sdgh > :first-child { margin-left: 0px; } .framer-ZMZcT.framer-1r8sdgh > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 25\n * @framerIntrinsicWidth 269\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gG0bP87xN\":\"textContent\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercuiXPP7bz=withCSS(Component,css,\"framer-ZMZcT\");export default FramercuiXPP7bz;FramercuiXPP7bz.displayName=\"Amenity\";FramercuiXPP7bz.defaultProps={height:25,width:269};addPropertyControls(FramercuiXPP7bz,{gG0bP87xN:{defaultValue:\"Pool\",title:\"Text Content\",type:ControlType.String}});addFonts(FramercuiXPP7bz,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercuiXPP7bz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"25\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gG0bP87xN\\\":\\\"textContent\\\"}\",\"framerIntrinsicWidth\":\"269\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cuiXPP7bz.map", "// Generated by Framer (1f5f6d9)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-medium\",\"FS;Montserrat-bold\",\"FS;Montserrat-bold italic\",\"FS;Montserrat-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/G3U4AIP7I5YYMBY4PZ5BNYEWWVH7G7QB/WED2HATCWTE6B4XVIFFTI3EALCE4D6PD/GDZ4LVIJF6WODYKVZK6E2737DCDQPEMZ.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WPZYV4DKXXGBZ3ZQTWYRVOQPYBIT2AN7/QRQ5OKEEZRQ525K55RLKSI4H3LRN5OP7/YJ3ABP6H4VTWOW6FDQ3W5ZIIGLTU346F.woff2\",weight:\"500\"}]}];export const css=['.framer-CekA3 .framer-styles-preset-15avmev:not(.rich-text-wrapper), .framer-CekA3 .framer-styles-preset-15avmev.rich-text-wrapper p { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, #232323); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 0px) { .framer-CekA3 .framer-styles-preset-15avmev:not(.rich-text-wrapper), .framer-CekA3 .framer-styles-preset-15avmev.rich-text-wrapper p { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.6em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, #232323); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-CekA3\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,useRouter,useSiteRefs,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/s801VqobGI0Gkh3K9b41/Embed.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import UncodeGallery from\"https://framerusercontent.com/modules/XScagAoTKbpOm4yN6c4H/ZqYxzkitEycOm2tUvMj2/UncodeGallery.js\";import Amenity from\"#framer/local/canvasComponent/cuiXPP7bz/cuiXPP7bz.js\";import ButtonArrowUnderline from\"#framer/local/canvasComponent/iil6mY0dN/iil6mY0dN.js\";import Button from\"#framer/local/canvasComponent/tiM_Tj3GS/tiM_Tj3GS.js\";import Properties,{enumToDisplayNameFunctions}from\"#framer/local/collection/JR_wYFoQE/JR_wYFoQE.js\";import Locations from\"#framer/local/collection/XSmBVVjCk/XSmBVVjCk.js\";import*as sharedStyle5 from\"#framer/local/css/e_EweGo6j/e_EweGo6j.js\";import*as sharedStyle3 from\"#framer/local/css/G2ca77p10/G2ca77p10.js\";import*as sharedStyle7 from\"#framer/local/css/L0OEYH4jY/L0OEYH4jY.js\";import*as sharedStyle4 from\"#framer/local/css/lSUBuzjMI/lSUBuzjMI.js\";import*as sharedStyle6 from\"#framer/local/css/MduLVAqm_/MduLVAqm_.js\";import*as sharedStyle1 from\"#framer/local/css/nincqMXpZ/nincqMXpZ.js\";import*as sharedStyle2 from\"#framer/local/css/OJC6k36jl/OJC6k36jl.js\";import*as sharedStyle8 from\"#framer/local/css/saNw2HOcb/saNw2HOcb.js\";import*as sharedStyle from\"#framer/local/css/Y3kOgrFaz/Y3kOgrFaz.js\";import metadataProvider from\"#framer/local/webPageMetadata/hHxEeWfRZ/hHxEeWfRZ.js\";const UncodeGalleryFonts=getFonts(UncodeGallery);const PhosphorFonts=getFonts(Phosphor);const Phosphor1Fonts=getFonts(Phosphor1);const ButtonArrowUnderlineFonts=getFonts(ButtonArrowUnderline);const AmenityFonts=getFonts(Amenity);const EmbedFonts=getFonts(Embed);const ButtonFonts=getFonts(Button);const MotionAWithFX=withFX(motion.a);const breakpoints={STmm076Kr:\"(min-width: 1200px)\",TKJUAFYq5:\"(min-width: 810px) and (max-width: 1199px)\",ZYWA1ekzZ:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-RXffZ\";const variantClassNames={STmm076Kr:\"framer-v-1ekxozw\",TKJUAFYq5:\"framer-v-y91bn4\",ZYWA1ekzZ:\"framer-v-167emnx\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const greaterThan=(a,b)=>{return typeof a===\"number\"&&typeof b===\"number\"?a>b:false;};const negate=value=>{return!value;};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const enumToDisplayName=value=>value;const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.5,skewX:0,skewY:0,x:0,y:50};const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={backgroundColor:\"var(--token-d63d033e-c984-4b66-b8a4-c26f192de2c1, rgb(102, 172, 242))\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,y:-2};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"STmm076Kr\",Phone:\"ZYWA1ekzZ\",Tablet:\"TKJUAFYq5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"STmm076Kr\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{constraint:{left:{collection:\"hHxEeWfRZ\",name:\"ppRweg8wY\",type:\"Identifier\"},operator:\"==\",right:{collection:\"ppRweg8wY\",name:\"id\",type:\"Identifier\"},type:\"BinaryOperation\"},left:{alias:\"hHxEeWfRZ\",data:Properties,type:\"Collection\"},right:{alias:\"ppRweg8wY\",data:Locations,type:\"Collection\"},type:\"LeftJoin\"},select:[{collection:\"hHxEeWfRZ\",name:\"ru3pngNrl\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"dKfO0t9wq\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"KnK4SH0ew\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"CxOY80mCj\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"EIvoANxtz\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"eUPhj8Ctr\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"Q8NaozmH0\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"LzXLNDpL4\",type:\"Identifier\"},{alias:\"ppRweg8wY.hvJvNsh8s\",collection:\"ppRweg8wY\",name:\"hvJvNsh8s\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"dw0xO9eul\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"a3y5a40dH\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"G5BWwdIxA\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"dGYJT_i9K\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"GPJ6Rk9Mg\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"FHq4URhPs\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"Ss0dV6m9t\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"yHTR7Jmr2\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"FNrTvsjZi\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"xmv3Naut2\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"I4L_fkAMg\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"dvSqLdcVR\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"kSH_QmC9A\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"IsKsgKL5t\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"ES6yd0zRv\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"g7YTC69h1\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"Wu2K1eIZo\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"qErCry7py\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"GUqgjX0f1\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"SgY1GAqaS\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"uEggj1PUt\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"kQK6XAHUv\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"KL819DAoW\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"QTcMU_UVQ\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"X4a2ZtpSg\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"cDua3_083\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"IWBsJYUAz\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"Ro5XOw7FY\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"Fo8CXqSDB\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"tELAkj7t_\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"ZRROqoMFI\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"H7xyySGjg\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"zPVNGZHP9\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"Iv38QBm7N\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"RmbrG2iLi\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"L7PDSzFij\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"xT9Ga1XuD\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"xYNpN7fKe\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"hMgQRVHHi\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"y1S_oy4Hr\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"IGiKdTbaR\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"YwH0Gc6P0\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"lDEZRGYrQ\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"wMpF7grdW\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"QXYK_zWt2\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"BNyx8NUEJ\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"QDwzH45ks\",type:\"Identifier\"},{collection:\"hHxEeWfRZ\",name:\"xswneMNvZ\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"hHxEeWfRZ\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,WNwfciT5ajm6jBSkNt,LzXLNDpL4=getFromCurrentRouteData(\"LzXLNDpL4\")??[],ppRweg8wY_hvJvNsh8s=getFromCurrentRouteData(\"ppRweg8wY.hvJvNsh8s\")??\"\",ru3pngNrl=getFromCurrentRouteData(\"ru3pngNrl\")??\"\",GPJ6Rk9Mg=getFromCurrentRouteData(\"GPJ6Rk9Mg\")??0,a3y5a40dH=getFromCurrentRouteData(\"a3y5a40dH\")??0,G5BWwdIxA=getFromCurrentRouteData(\"G5BWwdIxA\")??0,dGYJT_i9K=getFromCurrentRouteData(\"dGYJT_i9K\")??0,dKfO0t9wq=getFromCurrentRouteData(\"dKfO0t9wq\")??\"\",Ss0dV6m9t=getFromCurrentRouteData(\"Ss0dV6m9t\")??\"\",FNrTvsjZi=getFromCurrentRouteData(\"FNrTvsjZi\"),xmv3Naut2=getFromCurrentRouteData(\"xmv3Naut2\"),I4L_fkAMg=getFromCurrentRouteData(\"I4L_fkAMg\"),CxOY80mCj=getFromCurrentRouteData(\"CxOY80mCj\"),EIvoANxtz=getFromCurrentRouteData(\"EIvoANxtz\"),eUPhj8Ctr=getFromCurrentRouteData(\"eUPhj8Ctr\"),Q8NaozmH0=getFromCurrentRouteData(\"Q8NaozmH0\"),ES6yd0zRv=getFromCurrentRouteData(\"ES6yd0zRv\")??true,g7YTC69h1=getFromCurrentRouteData(\"g7YTC69h1\")??true,Wu2K1eIZo=getFromCurrentRouteData(\"Wu2K1eIZo\")??true,qErCry7py=getFromCurrentRouteData(\"qErCry7py\")??true,GUqgjX0f1=getFromCurrentRouteData(\"GUqgjX0f1\")??true,SgY1GAqaS=getFromCurrentRouteData(\"SgY1GAqaS\")??true,uEggj1PUt=getFromCurrentRouteData(\"uEggj1PUt\")??true,kQK6XAHUv=getFromCurrentRouteData(\"kQK6XAHUv\")??true,KL819DAoW=getFromCurrentRouteData(\"KL819DAoW\")??true,QTcMU_UVQ=getFromCurrentRouteData(\"QTcMU_UVQ\")??true,X4a2ZtpSg=getFromCurrentRouteData(\"X4a2ZtpSg\")??true,cDua3_083=getFromCurrentRouteData(\"cDua3_083\")??true,IWBsJYUAz=getFromCurrentRouteData(\"IWBsJYUAz\")??true,Ro5XOw7FY=getFromCurrentRouteData(\"Ro5XOw7FY\")??true,Fo8CXqSDB=getFromCurrentRouteData(\"Fo8CXqSDB\")??true,tELAkj7t_=getFromCurrentRouteData(\"tELAkj7t_\")??true,ZRROqoMFI=getFromCurrentRouteData(\"ZRROqoMFI\")??true,H7xyySGjg=getFromCurrentRouteData(\"H7xyySGjg\")??true,zPVNGZHP9=getFromCurrentRouteData(\"zPVNGZHP9\")??true,Iv38QBm7N=getFromCurrentRouteData(\"Iv38QBm7N\")??true,RmbrG2iLi=getFromCurrentRouteData(\"RmbrG2iLi\")??true,L7PDSzFij=getFromCurrentRouteData(\"L7PDSzFij\")??true,yHTR7Jmr2=getFromCurrentRouteData(\"yHTR7Jmr2\")??\"\",dvSqLdcVR=getFromCurrentRouteData(\"dvSqLdcVR\"),quJ3weCOJ,kSH_QmC9A=getFromCurrentRouteData(\"kSH_QmC9A\")??\"\",IsKsgKL5t=getFromCurrentRouteData(\"IsKsgKL5t\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"M8DW7B9nf\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"IUJewR5ocapo59fvaS\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ZYWA1ekzZ\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ZYWA1ekzZ\")return true;return false;};const visible=negate(greaterThan(GPJ6Rk9Mg,0));const visible1=greaterThan(GPJ6Rk9Mg,0);const activeLocaleCode=useLocaleCode();const textContent=suffix(prefix(numberToString(GPJ6Rk9Mg,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\"From: \"),\"\u20AC / night\");const textContent1=suffix(numberToString(a3y5a40dH,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" Guests\");const textContent2=suffix(numberToString(G5BWwdIxA,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" Bedrooms\");const textContent3=suffix(numberToString(dGYJT_i9K,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode),\" Bathrooms\");const isDisplayed2=()=>{if(!isBrowser())return true;if([\"TKJUAFYq5\",\"ZYWA1ekzZ\"].includes(baseVariant))return false;return true;};const router=useRouter();const elementId2=useRouteElementId(\"IUJewR5ocpVZxkKRbB\");const dynamicRef=useSiteRefs();const textContent4=enumToDisplayNameFunctions[\"FNrTvsjZi\"]?.(FNrTvsjZi,activeLocale);const textContent5=enumToDisplayNameFunctions[\"xmv3Naut2\"]?.(xmv3Naut2,activeLocale);const textContent6=enumToDisplayNameFunctions[\"I4L_fkAMg\"]?.(I4L_fkAMg,activeLocale);const visible2=isSet(yHTR7Jmr2);const textContent7=enumToDisplayName(quJ3weCOJ,activeLocale);const elementId3=useRouteElementId(\"IUBxh6_KX\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"STmm076Kr\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1ekxozw\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tajjoq-container\",id:elementId,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"M8DW7B9nf\",ref:ref1,scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(UncodeGallery,{alignment:\"flex-start\",arrowOptions:{arrowFill:\"rgba(35, 35, 35, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:-60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:253,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:66,codeBy:\"\",container:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ai4dcv\",children:LzXLNDpL4?.map(({id,WNwfciT5a:WNwfciT5ajm6jBSkNt},index)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`jm6jBSkNt-${id??index}`,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"1920px\",...toResponsiveImage(WNwfciT5ajm6jBSkNt)},className:\"framer-tc112v\",\"data-framer-name\":\"Image\"})},id??index);})})],direction:\"left\",dragControl:true,effectsOptions:{effectsHover:false,effectsOpacity:.6,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:0,height:\"100%\",id:\"M8DW7B9nf\",imageBorderRadius:0,intervalControl:2,itemAmount:1,layoutId:\"M8DW7B9nf\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"var(--token-da960178-e53a-432a-be83-8b061a8c23d0, rgb(10, 53, 59))\",dotsBlur:0,dotsBorderRadius:100,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:-44,dotSize:10,dotsOpacity:.5,dotsPadding:7,dotsRadius:58,showProgressDots:false},startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkmpaa\",\"data-border\":true,id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q2ihir\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8br2vf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5wh8ti\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14dytd1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-be2xel-container\",isModuleExternal:true,nodeId:\"ym18LwvdB\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-d63d033e-c984-4b66-b8a4-c26f192de2c1, rgb(102, 172, 242))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"MapPin\",id:\"ym18LwvdB\",layoutId:\"ym18LwvdB\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-d63d033e-c984-4b66-b8a4-c26f192de2c1, rgb(102, 172, 242))\",\"--framer-text-transform\":\"uppercase\"},children:\"Chrisi Akti\"})}),className:\"framer-tiigrp\",\"data-framer-name\":\"Location\",fonts:[\"GF;Montserrat-600\"],text:ppRweg8wY_hvJvNsh8s,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1esimwo\",\"data-styles-preset\":\"Y3kOgrFaz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Villa Afros\"})}),className:\"framer-18a186v\",\"data-framer-name\":\"Villa Name\",fonts:[\"Inter\"],text:ru3pngNrl,verticalAlignment:\"top\",withExternalLayout:true})]})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-tbqcvx hidden-167emnx\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-cordfa hidden-1ekxozw hidden-y91bn4\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zfooe7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122nm4y\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g0lnn2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ri66zlgo3\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Money\",id:\"Ri66zlgo3\",layoutId:\"Ri66zlgo3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l0vbym\",children:[visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15avmev\",\"data-styles-preset\":\"nincqMXpZ\",children:\"Price Upon Request\"})}),className:\"framer-1gx3mas\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),visible1&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15avmev\",\"data-styles-preset\":\"nincqMXpZ\",children:\"From: 720\u20AC / night\"})}),className:\"framer-18mhfm4\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b7f09t\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ke498p\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-n5g5ta-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IUJewR5ocZl7WJD7ND\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Users\",id:\"IUJewR5ocZl7WJD7ND\",layoutId:\"IUJewR5ocZl7WJD7ND\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15avmev\",\"data-styles-preset\":\"nincqMXpZ\",children:\"4 Guests\"})}),className:\"framer-f2mton\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hq3z28\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c31ubk\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x56a39-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IUJewR5ocZLyP_v9_t\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Bed\",id:\"IUJewR5ocZLyP_v9_t\",layoutId:\"IUJewR5ocZLyP_v9_t\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15avmev\",\"data-styles-preset\":\"nincqMXpZ\",children:\"2 Bedrooms\"})}),className:\"framer-z6cgrq\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lqdir\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jfwgts\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1so7tn7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IUJewR5ocn1SBdiUmN\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Bathtub\",id:\"IUJewR5ocn1SBdiUmN\",layoutId:\"IUJewR5ocn1SBdiUmN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-15avmev\",\"data-styles-preset\":\"nincqMXpZ\",children:\"2 Bathrooms\"})}),className:\"framer-dws9s6\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tc7s6u hidden-y91bn4 hidden-167emnx\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ew4qrs-container\",nodeId:\"IUJewR5ocupeylWO0A\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(ButtonArrowUnderline,{DayZHH3uq:resolvedLinks[0],height:\"100%\",id:\"IUJewR5ocupeylWO0A\",layoutId:\"IUJewR5ocupeylWO0A\",NHSEYnt7P:\"rgba(102, 172, 242, 0.5)\",Q15_yhJ5u:\"Inquire\",variant:\"PkC9K5kTL\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-puoeiy\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:Ss0dV6m9t,className:\"framer-j9zdqp\",\"data-framer-name\":\"Short Description\",fonts:[\"Inter\"],id:elementId2,ref:dynamicRef(elementId2),stylesPresetsClassNames:{a:\"framer-styles-preset-x564v7\",h1:\"framer-styles-preset-1esimwo\",h2:\"framer-styles-preset-ik4pvx\",h3:\"framer-styles-preset-1uyq0yt\",h4:\"framer-styles-preset-tyno4q\",h5:\"framer-styles-preset-w2bsvs\",p:\"framer-styles-preset-1j0apya\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ypf3cf\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined},{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined},{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lwpp27-container\",nodeId:\"RMJzFn4Iu\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TKJUAFYq5:{DayZHH3uq:resolvedLinks1[1]},ZYWA1ekzZ:{DayZHH3uq:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(ButtonArrowUnderline,{DayZHH3uq:resolvedLinks1[0],height:\"100%\",id:\"RMJzFn4Iu\",layoutId:\"RMJzFn4Iu\",NHSEYnt7P:\"rgba(102, 172, 242, 0.5)\",Q15_yhJ5u:\"Check Availability\",variant:\"PkC9K5kTL\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{\"data-border\":true}},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-um73qm\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-haesfq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ediruy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1movyyz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"jKqxNhchb\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"jKqxNhchb\",layoutId:\"jKqxNhchb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},children:\"Beachfront\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},children:\"Beachfront\"})}),className:\"framer-17yuso5\",fonts:[\"GF;Montserrat-500\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bttww0\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1igq9zl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p2kytn-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"llFNH1Sey\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"llFNH1Sey\",layoutId:\"llFNH1Sey\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},children:\"Exterior Pool\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},children:\"Unique Location\"})}),className:\"framer-mr06j6\",fonts:[\"GF;Montserrat-500\"],text:textContent5,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vc7jro\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hiwxf9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xf9ys9-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sNsEuepag\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, rgb(234, 206, 106))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CheckCircle\",id:\"sNsEuepag\",layoutId:\"sNsEuepag\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},children:\"Eco-Friendly Design\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, rgb(35, 35, 35))\"},children:\"Infinity Pool\"})}),className:\"framer-1yfnsaq\",fonts:[\"GF;Montserrat-500\"],text:textContent6,verticalAlignment:\"top\",withExternalLayout:true})})]})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xt49jp\",\"data-framer-name\":\"Gallery\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lt6ajd\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uyq0yt\",\"data-styles-preset\":\"G2ca77p10\",children:\"Gallery\"})}),className:\"framer-eqe94v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11hhbk2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9s4u7o\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px)`,...toResponsiveImage(CxOY80mCj)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 75px) * 0.6, 1px)`,...toResponsiveImage(CxOY80mCj)},className:\"framer-ojpvl0\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px)`,...toResponsiveImage(EIvoANxtz)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 75px) / 2.5, 1px)`,...toResponsiveImage(EIvoANxtz)},className:\"framer-1tluok3\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w3mm31\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px)`,...toResponsiveImage(eUPhj8Ctr)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 75px) / 2.5, 1px)`,...toResponsiveImage(eUPhj8Ctr)},className:\"framer-u8rrwb\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{background:{alt:\"\",fit:\"fill\",sizes:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 30px)`,...toResponsiveImage(Q8NaozmH0)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 75px) * 0.6, 1px)`,...toResponsiveImage(Q8NaozmH0)},className:\"framer-bc4hjh\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uxme1n\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined},{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined},{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ov979x-container\",nodeId:\"KyeGvpm1d\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TKJUAFYq5:{DayZHH3uq:resolvedLinks2[1]},ZYWA1ekzZ:{DayZHH3uq:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(ButtonArrowUnderline,{DayZHH3uq:resolvedLinks2[0],height:\"100%\",id:\"KyeGvpm1d\",layoutId:\"KyeGvpm1d\",NHSEYnt7P:\"rgba(102, 172, 242, 0.5)\",Q15_yhJ5u:\"Inquire\",variant:\"PkC9K5kTL\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-skld90\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uyq0yt\",\"data-styles-preset\":\"G2ca77p10\",children:\"Amenities\"})}),className:\"framer-1nmp5yy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-146tcyn\",children:[ES6yd0zRv&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-94gp1j-container\",\"data-framer-name\":\"Pool\",name:\"Pool\",nodeId:\"dRIbXHf45\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Breakfast Preparation\",height:\"100%\",id:\"dRIbXHf45\",layoutId:\"dRIbXHf45\",name:\"Pool\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),g7YTC69h1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i0mlxo-container\",\"data-framer-name\":\"Pool\",name:\"Pool\",nodeId:\"gb1ATtd_Y\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Pool\",height:\"100%\",id:\"gb1ATtd_Y\",layoutId:\"gb1ATtd_Y\",name:\"Pool\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),Wu2K1eIZo&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mvpq8u-container\",\"data-framer-name\":\"Private Safe\",name:\"Private Safe\",nodeId:\"fWshFlyaA\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Private Safe\",height:\"100%\",id:\"fWshFlyaA\",layoutId:\"fWshFlyaA\",name:\"Private Safe\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),qErCry7py&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-kxyx9o-container\",\"data-framer-name\":\"Air Conditioning\",name:\"Air Conditioning\",nodeId:\"xocaKAJQi\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Air Conditioning\",height:\"100%\",id:\"xocaKAJQi\",layoutId:\"xocaKAJQi\",name:\"Air Conditioning\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),GUqgjX0f1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l5r3tl-container\",\"data-framer-name\":\"Private Parking\",name:\"Private Parking\",nodeId:\"T9x7iget1\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Private Parking\",height:\"100%\",id:\"T9x7iget1\",layoutId:\"T9x7iget1\",name:\"Private Parking\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),SgY1GAqaS&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g33dtl-container\",\"data-framer-name\":\"WiFi\",name:\"WiFi\",nodeId:\"Nhzuy_C_h\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"WiFi\",height:\"100%\",id:\"Nhzuy_C_h\",layoutId:\"Nhzuy_C_h\",name:\"WiFi\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),uEggj1PUt&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lbhsij-container\",\"data-framer-name\":\"Fully Equiped Kitchen\",name:\"Fully Equiped Kitchen\",nodeId:\"PSDjl3Auh\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Fully Equiped Kitchen\",height:\"100%\",id:\"PSDjl3Auh\",layoutId:\"PSDjl3Auh\",name:\"Fully Equiped Kitchen\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),kQK6XAHUv&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i9c9mq-container\",\"data-framer-name\":\"Washing Machine\",name:\"Washing Machine\",nodeId:\"tclILe_GN\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Washing Machine\",height:\"100%\",id:\"tclILe_GN\",layoutId:\"tclILe_GN\",name:\"Washing Machine\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),KL819DAoW&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1kpmfai-container\",\"data-framer-name\":\"Elevator\",name:\"Elevator\",nodeId:\"eJ4NweVsw\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Elevator\",height:\"100%\",id:\"eJ4NweVsw\",layoutId:\"eJ4NweVsw\",name:\"Elevator\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),QTcMU_UVQ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a52dmf-container\",\"data-framer-name\":\"Fully Equiped BBQ\",name:\"Fully Equiped BBQ\",nodeId:\"SZL15wmv4\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Fully Equiped BBQ\",height:\"100%\",id:\"SZL15wmv4\",layoutId:\"SZL15wmv4\",name:\"Fully Equiped BBQ\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),X4a2ZtpSg&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ahkiw0-container\",\"data-framer-name\":\"Walk-in Closet\",name:\"Walk-in Closet\",nodeId:\"Vj3s6W9cI\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Walk-in Closet\",height:\"100%\",id:\"Vj3s6W9cI\",layoutId:\"Vj3s6W9cI\",name:\"Walk-in Closet\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),cDua3_083&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-tedcnv-container\",\"data-framer-name\":\"Outdoor Dining\",name:\"Outdoor Dining\",nodeId:\"Bwkost83M\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Outdoor Dining\",height:\"100%\",id:\"Bwkost83M\",layoutId:\"Bwkost83M\",name:\"Outdoor Dining\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),IWBsJYUAz&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jo6w7w-container\",\"data-framer-name\":\"Outdoor Lounge Area\",name:\"Outdoor Lounge Area\",nodeId:\"leXxOuSde\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Outdoor Lounge Area\",height:\"100%\",id:\"leXxOuSde\",layoutId:\"leXxOuSde\",name:\"Outdoor Lounge Area\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),Ro5XOw7FY&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-o17vx7-container\",\"data-framer-name\":\"Pool Sunbeds\",name:\"Pool Sunbeds\",nodeId:\"NNj1dsbue\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Pool Sunbeds\",height:\"100%\",id:\"NNj1dsbue\",layoutId:\"NNj1dsbue\",name:\"Pool Sunbeds\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),Fo8CXqSDB&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cs86yr-container\",\"data-framer-name\":\"Indoor Jacuzzi\",name:\"Indoor Jacuzzi\",nodeId:\"jf_lRUqdl\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Indoor Jacuzzi\",height:\"100%\",id:\"jf_lRUqdl\",layoutId:\"jf_lRUqdl\",name:\"Indoor Jacuzzi\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),tELAkj7t_&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-177oi8e-container\",\"data-framer-name\":\"Outdoor Jacuzzi\",name:\"Outdoor Jacuzzi\",nodeId:\"XvAe1XsFB\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Outdoor Jacuzzi\",height:\"100%\",id:\"XvAe1XsFB\",layoutId:\"XvAe1XsFB\",name:\"Outdoor Jacuzzi\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),ZRROqoMFI&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-116227n-container\",\"data-framer-name\":\"Rooftop Terrace\",name:\"Rooftop Terrace\",nodeId:\"QpLuhVtCw\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Rooftop Terrace\",height:\"100%\",id:\"QpLuhVtCw\",layoutId:\"QpLuhVtCw\",name:\"Rooftop Terrace\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),H7xyySGjg&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f6mpn6-container\",\"data-framer-name\":\"Private Gym\",name:\"Private Gym\",nodeId:\"B4Byoz25y\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Private Gym\",height:\"100%\",id:\"B4Byoz25y\",layoutId:\"B4Byoz25y\",name:\"Private Gym\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),zPVNGZHP9&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-en1l8f-container\",\"data-framer-name\":\"Hot Tub\",name:\"Hot Tub\",nodeId:\"EOqRRnoa6\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Hot Tub\",height:\"100%\",id:\"EOqRRnoa6\",layoutId:\"EOqRRnoa6\",name:\"Hot Tub\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),Iv38QBm7N&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgio8y-container\",\"data-framer-name\":\"Sauna\",name:\"Sauna\",nodeId:\"LOQHgH1t_\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Sauna\",height:\"100%\",id:\"LOQHgH1t_\",layoutId:\"LOQHgH1t_\",name:\"Sauna\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),RmbrG2iLi&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17w520g-container\",\"data-framer-name\":\"Private Dock\",name:\"Private Dock\",nodeId:\"btfBnXnDN\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Private Dock\",height:\"100%\",id:\"btfBnXnDN\",layoutId:\"btfBnXnDN\",name:\"Private Dock\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),L7PDSzFij&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14uaoi1-container\",\"data-framer-name\":\"Private Dock\",name:\"Private Dock\",nodeId:\"YESHOIUxg\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Amenity,{gG0bP87xN:\"Tennis Court\",height:\"100%\",id:\"YESHOIUxg\",layoutId:\"YESHOIUxg\",name:\"Private Dock\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined},{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined},{href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13ebwfx-container\",nodeId:\"IUJewR5ocMplQRQXTL\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TKJUAFYq5:{DayZHH3uq:resolvedLinks3[1]},ZYWA1ekzZ:{DayZHH3uq:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(ButtonArrowUnderline,{DayZHH3uq:resolvedLinks3[0],height:\"100%\",id:\"IUJewR5ocMplQRQXTL\",layoutId:\"IUJewR5ocMplQRQXTL\",NHSEYnt7P:\"rgba(102, 172, 242, 0.5)\",Q15_yhJ5u:\"Check Availability\",variant:\"PkC9K5kTL\",width:\"100%\"})})})})})]}),visible2&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpztpm\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-186afcj-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IUJewR5ocThE7yGylC\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:\"\",id:\"IUJewR5ocThE7yGylC\",layoutId:\"IUJewR5ocThE7yGylC\",radius:\"0px\",style:{height:\"100%\",width:\"100%\"},type:\"url\",url:\"https://livetour.istaging.com/4e604531-d8fc-4328-886a-bd08c2d3ad7d\",width:\"100%\",zoom:1})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xmotge\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5yejtn\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uyq0yt\",\"data-styles-preset\":\"G2ca77p10\",children:\"Location\"})}),className:\"framer-1hbu32v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 50px, 465px)`,...toResponsiveImage(dvSqLdcVR),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1ds6c3n\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-134ubmx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"rgba(35, 35, 35, 0.4)\",\"--framer-text-transform\":\"uppercase\"},children:\"Content\"})}),className:\"framer-7bweh8\",fonts:[\"GF;Montserrat-500\"],text:textContent7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ktz9zp\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rtms4f\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1uyq0yt\",\"data-styles-preset\":\"G2ca77p10\",children:\"Paros, the island of the sun, the sea and ultimate serenity. Enjoy the shimmering Aegean sea, discover the island\u2019s magnificent villages and taste the simple yet extraordinary Greek dishes.\"})}),className:\"framer-t5huyg\",fonts:[\"Inter\"],text:kSH_QmC9A,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bbf8lg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:IsKsgKL5t,className:\"framer-fh08y5\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-x564v7\",h1:\"framer-styles-preset-1esimwo\",h2:\"framer-styles-preset-ik4pvx\",h3:\"framer-styles-preset-1uyq0yt\",h4:\"framer-styles-preset-tyno4q\",h5:\"framer-styles-preset-w2bsvs\",p:\"framer-styles-preset-1j0apya\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f15302\"})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bati8s\",id:elementId3,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-1uyq0yt\",\"data-styles-preset\":\"G2ca77p10\",style:{\"--framer-text-alignment\":\"center\"},children:\"Check Availability\"})}),className:\"framer-1drdj6w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w943dx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-l4522h\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",style:{\"--framer-text-alignment\":\"center\"},children:\"Learn more about the prices and availability of this villa by filling out the form below.\"})}),className:\"framer-1n2ptpi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11e3yhp\",children:/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/465f4945-02bc-44a0-bad3-9995cc895d5a/submit\",className:\"framer-rgfgts\",nodeId:\"ULEWJ5NR7\",redirectUrl:{webPageId:\"t3LG0HcTC\"},submitTrackingId:\"check-availability-message\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3ye98\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169uud4\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-qj4cqi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Check In\"})}),className:\"framer-hinzyu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1u78zqe\",inputName:\"Check In\",placeholder:\"jane@framer.com\",required:true,type:\"date\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-13il9cg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Check Out\"})}),className:\"framer-1pw6mzc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-32qb6m\",inputName:\"Check Out\",placeholder:\"jane@framer.com\",required:true,type:\"date\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1pxo1y3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Guests\"})}),className:\"framer-1ob1z67\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-cjqpk3\",inputName:\"Guests\",placeholder:\"Number of Guests\",required:true,type:\"number\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u03rtw\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-bynlug\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Name\"})}),className:\"framer-kurp5s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-xyix7p\",inputName:\"Name\",placeholder:\"Jane Smith\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-fhwo9c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Phone\"})}),className:\"framer-iw6oil\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1ua60v6\",inputName:\"Phone\",placeholder:\"+1 (555) 555 5555\",required:true,type:\"tel\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1dg4183\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Email\"})}),className:\"framer-1lb42oy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1fv5bf4\",inputName:\"Email\",placeholder:\"jane@framer.com\",required:true,type:\"email\"})]})]}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1n3pyle\",defaultValue:ru3pngNrl,inputName:\"Property\",type:\"hidden\"}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-1lsoqmx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1j0apya\",\"data-styles-preset\":\"MduLVAqm_\",children:\"Message\"})}),className:\"framer-1x967ny\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-b6x55c\",inputName:\"Message\",placeholder:\"We well be a family of 6 and would like to know which properties are available!\",type:\"textarea\"})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZYWA1ekzZ:{width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 970px) - 30px, 970px) - 50px, 1px), 970px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(max(min(min(${componentViewport?.width||\"100vw\"}, 970px) - 50px, 970px) - 50px, 1px), 970px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pjozbv-container\",nodeId:\"tEffq6xQg\",scopeId:\"hHxEeWfRZ\",children:/*#__PURE__*/_jsx(Button,{dB7Wa7yAw:\"Send Message\",height:\"100%\",id:\"tEffq6xQg\",layoutId:\"tEffq6xQg\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"RauDYZqt1\",success:\"Vdhjz732i\"},\"eH8WRgBTv\"),width:\"100%\"})})})})]})})})]})]}),/*#__PURE__*/_jsx(Link,{clickTrackingId:\"book-now-property\",href:{hash:\":IUBxh6_KX\",pathVariables:{dKfO0t9wq},webPageId:\"hHxEeWfRZ\"},motionChild:true,nodeId:\"MNXtqAz4e\",openInNewTab:false,scopeId:\"hHxEeWfRZ\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:dynamicRef(elementId2),target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-sfn8oj framer-zjloco\",\"data-framer-name\":\"Book Now Floating\",whileHover:animation1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1slrwvf\",\"data-styles-preset\":\"saNw2HOcb\",style:{\"--framer-text-color\":\"var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, rgb(255, 255, 255))\"},children:\"Book Now\"})}),className:\"framer-1xdt4hu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RXffZ.framer-zjloco, .framer-RXffZ .framer-zjloco { display: block; }\",\".framer-RXffZ.framer-1ekxozw { align-content: center; align-items: center; background-color: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-RXffZ .framer-1tajjoq-container { aspect-ratio: 1.935483870967742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 620px); position: relative; width: 100%; }\",\".framer-RXffZ .framer-ai4dcv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-RXffZ .framer-tc112v { aspect-ratio: 1.8285714285714285 / 1; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: var(--framer-aspect-ratio-supported, 1050px); position: relative; width: 1920px; }\",\".framer-RXffZ .framer-1vkmpaa { --border-bottom-width: 1px; --border-color: var(--token-ce736e35-5be9-4f90-a810-079bb007acd5, #e9e0ce); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-1q2ihir { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-8br2vf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-5wh8ti, .framer-RXffZ .framer-1rtms4f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-14dytd1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-be2xel-container { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-RXffZ .framer-tiigrp { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-RXffZ .framer-18a186v, .framer-RXffZ .framer-j9zdqp, .framer-RXffZ .framer-7bweh8, .framer-RXffZ .framer-t5huyg, .framer-RXffZ .framer-1drdj6w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RXffZ .framer-tbqcvx, .framer-RXffZ .framer-1bttww0, .framer-RXffZ .framer-1vc7jro { align-self: stretch; background-color: var(--token-ce736e35-5be9-4f90-a810-079bb007acd5, #e9e0ce); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-RXffZ .framer-cordfa { background-color: var(--token-ce736e35-5be9-4f90-a810-079bb007acd5, #e9e0ce); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 1px; }\",\".framer-RXffZ .framer-zfooe7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.75 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-122nm4y, .framer-RXffZ .framer-1ke498p, .framer-RXffZ .framer-c31ubk, .framer-RXffZ .framer-1jfwgts { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-1g0lnn2-container, .framer-RXffZ .framer-n5g5ta-container, .framer-RXffZ .framer-1x56a39-container, .framer-RXffZ .framer-1so7tn7-container, .framer-RXffZ .framer-1movyyz-container, .framer-RXffZ .framer-p2kytn-container, .framer-RXffZ .framer-1xf9ys9-container { flex: none; height: 25px; position: relative; width: 25px; }\",\".framer-RXffZ .framer-l0vbym { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RXffZ .framer-1gx3mas, .framer-RXffZ .framer-18mhfm4, .framer-RXffZ .framer-eqe94v, .framer-RXffZ .framer-1nmp5yy, .framer-RXffZ .framer-1hbu32v, .framer-RXffZ .framer-1xdt4hu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RXffZ .framer-b7f09t, .framer-RXffZ .framer-1hq3z28, .framer-RXffZ .framer-lqdir { background-color: var(--token-ce736e35-5be9-4f90-a810-079bb007acd5, #e9e0ce); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-RXffZ .framer-f2mton, .framer-RXffZ .framer-z6cgrq, .framer-RXffZ .framer-dws9s6, .framer-RXffZ .framer-17yuso5, .framer-RXffZ .framer-mr06j6, .framer-RXffZ .framer-1yfnsaq, .framer-RXffZ .framer-hinzyu, .framer-RXffZ .framer-1pw6mzc, .framer-RXffZ .framer-1ob1z67, .framer-RXffZ .framer-kurp5s, .framer-RXffZ .framer-iw6oil, .framer-RXffZ .framer-1lb42oy, .framer-RXffZ .framer-1x967ny { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RXffZ .framer-1tc7s6u { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 0.5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-ew4qrs-container, .framer-RXffZ .framer-lwpp27-container, .framer-RXffZ .framer-ov979x-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-RXffZ .framer-puoeiy, .framer-RXffZ .framer-um73qm, .framer-RXffZ .framer-wpztpm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-ypf3cf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-haesfq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 0px 10px 0px; position: relative; width: 75%; }\",\".framer-RXffZ .framer-ediruy, .framer-RXffZ .framer-1igq9zl, .framer-RXffZ .framer-1hiwxf9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: min-content; }\",\".framer-RXffZ .framer-xt49jp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-lt6ajd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-11hhbk2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-9s4u7o, .framer-RXffZ .framer-1w3mm31 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: 350px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-ojpvl0 { cursor: pointer; flex: 1.5 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-RXffZ .framer-1tluok3 { cursor: pointer; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-RXffZ .framer-u8rrwb { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-RXffZ .framer-bc4hjh { flex: 1.5 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-RXffZ .framer-uxme1n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-skld90 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 50px 25px 50px 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-146tcyn { display: grid; flex: none; gap: 25px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-94gp1j-container, .framer-RXffZ .framer-i0mlxo-container, .framer-RXffZ .framer-mvpq8u-container, .framer-RXffZ .framer-kxyx9o-container, .framer-RXffZ .framer-l5r3tl-container, .framer-RXffZ .framer-g33dtl-container, .framer-RXffZ .framer-lbhsij-container, .framer-RXffZ .framer-1i9c9mq-container, .framer-RXffZ .framer-1kpmfai-container, .framer-RXffZ .framer-a52dmf-container, .framer-RXffZ .framer-ahkiw0-container, .framer-RXffZ .framer-tedcnv-container, .framer-RXffZ .framer-jo6w7w-container, .framer-RXffZ .framer-o17vx7-container, .framer-RXffZ .framer-1cs86yr-container, .framer-RXffZ .framer-177oi8e-container, .framer-RXffZ .framer-116227n-container, .framer-RXffZ .framer-f6mpn6-container, .framer-RXffZ .framer-en1l8f-container, .framer-RXffZ .framer-fgio8y-container, .framer-RXffZ .framer-17w520g-container, .framer-RXffZ .framer-14uaoi1-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-RXffZ .framer-13ebwfx-container { flex: none; height: auto; position: relative; width: auto; z-index: 0; }\",\".framer-RXffZ .framer-186afcj-container { aspect-ratio: 2.3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 87px); position: relative; width: 100%; }\",\".framer-RXffZ .framer-1xmotge { align-content: center; align-items: center; background-color: var(--token-3d462f1e-a5d9-4891-a496-e06f1391ee38, #e5e5e5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 75px 25px 75px 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-5yejtn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 25px; position: absolute; top: 25px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-RXffZ .framer-1ds6c3n { aspect-ratio: 1.1764705882352942 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 395px); max-width: 465px; overflow: hidden; position: relative; width: 100%; }\",\".framer-RXffZ .framer-134ubmx { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px 25px 50px 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-1ktz9zp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-1bbf8lg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-fh08y5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-RXffZ .framer-f15302 { background-color: var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, #eace6a); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-RXffZ .framer-1bati8s { align-content: flex-start; align-items: flex-start; background-color: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 970px; overflow: visible; padding: 50px 25px 50px 25px; position: relative; scroll-margin-top: 120px; width: 100%; }\",\".framer-RXffZ .framer-w943dx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-l4522h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-1n2ptpi { --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-RXffZ .framer-11e3yhp { align-content: center; align-items: center; background-color: rgba(100, 171, 242, 0.2); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 970px; overflow: hidden; padding: 25px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-rgfgts { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 970px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-1j3ye98 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-169uud4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-qj4cqi, .framer-RXffZ .framer-13il9cg { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 170px; padding: 0px; position: relative; width: 1px; }\",'.framer-RXffZ .framer-1u78zqe, .framer-RXffZ .framer-32qb6m, .framer-RXffZ .framer-cjqpk3, .framer-RXffZ .framer-xyix7p, .framer-RXffZ .framer-1ua60v6, .framer-RXffZ .framer-1fv5bf4 { --framer-input-background: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, #ffffff); --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, #232323); --framer-input-font-family: \"Montserrat\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: rgba(35, 35, 35, 0.3); flex: none; height: 50px; position: relative; width: 100%; }',\".framer-RXffZ .framer-1pxo1y3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 180px; padding: 0px; position: relative; width: 1px; }\",\".framer-RXffZ .framer-u03rtw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-bynlug, .framer-RXffZ .framer-fhwo9c, .framer-RXffZ .framer-1dg4183 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 230px; padding: 0px; position: relative; width: 1px; }\",'.framer-RXffZ .framer-1n3pyle { --framer-input-background: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, #ffffff); --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-3d462f1e-a5d9-4891-a496-e06f1391ee38, #e5e5e5); --framer-input-font-family: \"Montserrat\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-RXffZ .framer-1lsoqmx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-width: 300px; padding: 0px; position: relative; width: 100%; }\",'.framer-RXffZ .framer-b6x55c { --framer-input-background: var(--token-eb7a268a-60f6-47f2-93c7-764c12f0f60a, #ffffff); --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-dd8da3f7-770f-4dc0-a587-2ec2cd18c9e8, #232323); --framer-input-font-family: \"Montserrat\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: rgba(35, 35, 35, 0.3); --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-RXffZ .framer-1pjozbv-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-RXffZ .framer-sfn8oj { align-content: center; align-items: center; background-color: var(--token-d63d033e-c984-4b66-b8a4-c26f192de2c1, #66acf2); border-bottom-left-radius: 150px; border-bottom-right-radius: 150px; border-top-left-radius: 150px; border-top-right-radius: 150px; bottom: 25px; box-shadow: 0px 1px 16px 0px rgba(33, 33, 33, 0.3); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 25px; overflow: visible; padding: 10px 20px 10px 20px; position: fixed; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 7; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,'.framer-RXffZ[data-border=\"true\"]::after, .framer-RXffZ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-RXffZ.framer-1ekxozw { overflow: visible; width: 810px; } .framer-RXffZ .framer-1tajjoq-container { height: var(--framer-aspect-ratio-supported, 419px); } .framer-RXffZ .framer-1vkmpaa { gap: 10px; } .framer-RXffZ .framer-1q2ihir { align-content: flex-start; align-items: flex-start; } .framer-RXffZ .framer-zfooe7 { flex: 0.7 0 0px; } .framer-RXffZ .framer-1ds6c3n { height: var(--framer-aspect-ratio-supported, 396px); }}\",\"@media (max-width: 809px) { .framer-RXffZ.framer-1ekxozw { overflow: visible; width: 390px; } .framer-RXffZ .framer-1tajjoq-container { aspect-ratio: 1.56 / 1; height: var(--framer-aspect-ratio-supported, 250px); } .framer-RXffZ .framer-1vkmpaa { flex-direction: column; padding: 0px; } .framer-RXffZ .framer-1q2ihir { align-content: flex-start; align-items: flex-start; flex: none; width: 100%; } .framer-RXffZ .framer-5wh8ti { padding: 0px 15px 0px 15px; } .framer-RXffZ .framer-cordfa, .framer-RXffZ .framer-1rtms4f, .framer-RXffZ .framer-1bbf8lg { flex: none; width: 100%; } .framer-RXffZ .framer-zfooe7 { flex: none; padding: 10px 15px 10px 15px; width: 100%; } .framer-RXffZ .framer-122nm4y { order: 0; } .framer-RXffZ .framer-b7f09t { order: 1; } .framer-RXffZ .framer-1ke498p { order: 2; } .framer-RXffZ .framer-1hq3z28 { order: 3; } .framer-RXffZ .framer-c31ubk { order: 4; } .framer-RXffZ .framer-lqdir { order: 5; } .framer-RXffZ .framer-1jfwgts { order: 6; } .framer-RXffZ .framer-puoeiy, .framer-RXffZ .framer-xt49jp, .framer-RXffZ .framer-skld90, .framer-RXffZ .framer-134ubmx, .framer-RXffZ .framer-1bati8s { padding: 25px 15px 25px 15px; } .framer-RXffZ .framer-ypf3cf { flex-direction: column; padding: 25px 15px 25px 15px; } .framer-RXffZ .framer-um73qm { --border-bottom-width: 1px; --border-color: var(--token-3fd5c1a3-4250-4375-a144-6ebbbfed1ad0, #eace6a); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; padding: 25px 15px 25px 15px; } .framer-RXffZ .framer-haesfq { align-content: center; align-items: center; flex-direction: column; gap: 15px; } .framer-RXffZ .framer-1movyyz-container, .framer-RXffZ .framer-p2kytn-container, .framer-RXffZ .framer-1xf9ys9-container { height: 22px; width: 22px; } .framer-RXffZ .framer-1bttww0, .framer-RXffZ .framer-1vc7jro { align-self: unset; height: 40px; } .framer-RXffZ .framer-11hhbk2 { gap: 15px; } .framer-RXffZ .framer-9s4u7o, .framer-RXffZ .framer-1w3mm31 { flex-direction: column; gap: 15px; height: 420px; } .framer-RXffZ .framer-ojpvl0, .framer-RXffZ .framer-bc4hjh { flex: 1 0 0px; height: 1px; width: 100%; } .framer-RXffZ .framer-1tluok3, .framer-RXffZ .framer-u8rrwb { height: 1px; width: 100%; } .framer-RXffZ .framer-146tcyn { gap: 15px; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); } .framer-RXffZ .framer-5yejtn { padding: 15px; top: 15px; } .framer-RXffZ .framer-1ds6c3n { height: var(--framer-aspect-ratio-supported, 289px); } .framer-RXffZ .framer-1ktz9zp { flex-direction: column; gap: 25px; } .framer-RXffZ .framer-w943dx { gap: 25px; } .framer-RXffZ .framer-sfn8oj { bottom: 15px; left: 15px; width: 132px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5140.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TKJUAFYq5\":{\"layout\":[\"fixed\",\"auto\"]},\"ZYWA1ekzZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerTrackingIds [{\"id\":\"check-availability-message\",\"nodeId\":\"ULEWJ5NR7\",\"type\":\"form_submit\"},{\"id\":\"book-now-property\",\"nodeId\":\"MNXtqAz4e\",\"type\":\"click\"}]\n * @framerScrollSections {\"M8DW7B9nf\":{\"pattern\":\":M8DW7B9nf\",\"name\":\"hero\"},\"IUJewR5ocapo59fvaS\":{\"pattern\":\":IUJewR5ocapo59fvaS\",\"name\":\"1\"},\"IUJewR5ocpVZxkKRbB\":{\"pattern\":\":IUJewR5ocpVZxkKRbB\",\"name\":\"description\"},\"IUBxh6_KX\":{\"pattern\":\":IUBxh6_KX\",\"name\":\"inquire\"}}\n * @framerResponsiveScreen\n */const FramerhHxEeWfRZ=withCSS(Component,css,\"framer-RXffZ\");export default FramerhHxEeWfRZ;FramerhHxEeWfRZ.displayName=\"Page\";FramerhHxEeWfRZ.defaultProps={height:5140.5,width:1200};addFonts(FramerhHxEeWfRZ,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v30/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...UncodeGalleryFonts,...PhosphorFonts,...Phosphor1Fonts,...ButtonArrowUnderlineFonts,...AmenityFonts,...EmbedFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhHxEeWfRZ\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"5140.5\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TKJUAFYq5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZYWA1ekzZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerTrackingIds\":\"[{\\\"id\\\":\\\"check-availability-message\\\",\\\"nodeId\\\":\\\"ULEWJ5NR7\\\",\\\"type\\\":\\\"form_submit\\\"},{\\\"id\\\":\\\"book-now-property\\\",\\\"nodeId\\\":\\\"MNXtqAz4e\\\",\\\"type\\\":\\\"click\\\"}]\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"{\\\"M8DW7B9nf\\\":{\\\"pattern\\\":\\\":M8DW7B9nf\\\",\\\"name\\\":\\\"hero\\\"},\\\"IUJewR5ocapo59fvaS\\\":{\\\"pattern\\\":\\\":IUJewR5ocapo59fvaS\\\",\\\"name\\\":\\\"1\\\"},\\\"IUJewR5ocpVZxkKRbB\\\":{\\\"pattern\\\":\\\":IUJewR5ocpVZxkKRbB\\\",\\\"name\\\":\\\"description\\\"},\\\"IUBxh6_KX\\\":{\\\"pattern\\\":\\\":IUBxh6_KX\\\",\\\"name\\\":\\\"inquire\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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C,MAAM,sBAAsB,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,MAAMC,GAAoCN,EAAqB,WAAW,CAAC,CAAC,EAAQO,EAAwBC,GAAK,CAAC,GAAG,CAACN,EAAiB,MAAM,IAAIO,GAAc,mCAAmC,KAAK,UAAUT,CAAoB,CAAC,EAAE,EAAE,OAAOE,EAAiBM,CAAG,CAAE,EAAO,CAAC,MAAAnD,EAAM,UAAAqD,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,UAAAC,EAAUP,EAAwB,WAAW,GAAG,CAAC,EAAE,oBAAAQ,EAAoBR,EAAwB,qBAAqB,GAAG,GAAG,UAAAS,EAAUT,EAAwB,WAAW,GAAG,GAAG,UAAAU,EAAUV,EAAwB,WAAW,GAAG,EAAE,UAAAW,GAAUX,EAAwB,WAAW,GAAG,EAAE,UAAAY,GAAUZ,EAAwB,WAAW,GAAG,EAAE,UAAAa,EAAUb,EAAwB,WAAW,GAAG,EAAE,UAAAc,EAAUd,EAAwB,WAAW,GAAG,GAAG,UAAAe,GAAUf,EAAwB,WAAW,GAAG,GAAG,UAAAgB,GAAUhB,EAAwB,WAAW,EAAE,UAAAiB,GAAUjB,EAAwB,WAAW,EAAE,UAAAkB,GAAUlB,EAAwB,WAAW,EAAE,UAAAmB,GAAUnB,EAAwB,WAAW,EAAE,UAAAoB,GAAUpB,EAAwB,WAAW,EAAE,UAAAqB,GAAUrB,EAAwB,WAAW,EAAE,UAAAsB,GAAUtB,EAAwB,WAAW,EAAE,UAAAuB,GAAUvB,EAAwB,WAAW,GAAG,GAAK,UAAAwB,GAAUxB,EAAwB,WAAW,GAAG,GAAK,UAAAyB,GAAUzB,EAAwB,WAAW,GAAG,GAAK,UAAA0B,GAAU1B,EAAwB,WAAW,GAAG,GAAK,UAAA2B,GAAU3B,EAAwB,WAAW,GAAG,GAAK,UAAA4B,EAAU5B,EAAwB,WAAW,GAAG,GAAK,UAAA6B,GAAU7B,EAAwB,WAAW,GAAG,GAAK,UAAA8B,GAAU9B,EAAwB,WAAW,GAAG,GAAK,UAAA+B,GAAU/B,EAAwB,WAAW,GAAG,GAAK,UAAAgC,GAAUhC,EAAwB,WAAW,GAAG,GAAK,UAAAiC,GAAUjC,EAAwB,WAAW,GAAG,GAAK,UAAAkC,GAAUlC,EAAwB,WAAW,GAAG,GAAK,UAAAmC,EAAUnC,EAAwB,WAAW,GAAG,GAAK,UAAAoC,GAAUpC,EAAwB,WAAW,GAAG,GAAK,UAAAqC,GAAUrC,EAAwB,WAAW,GAAG,GAAK,UAAAsC,GAAUtC,EAAwB,WAAW,GAAG,GAAK,UAAAuC,GAAUvC,EAAwB,WAAW,GAAG,GAAK,UAAAwC,GAAUxC,EAAwB,WAAW,GAAG,GAAK,UAAAyC,GAAUzC,EAAwB,WAAW,GAAG,GAAK,UAAA0C,GAAU1C,EAAwB,WAAW,GAAG,GAAK,UAAA2C,GAAU3C,EAAwB,WAAW,GAAG,GAAK,UAAA4C,GAAU5C,EAAwB,WAAW,GAAG,GAAK,UAAA6C,GAAU7C,EAAwB,WAAW,GAAG,GAAG,UAAA8C,GAAU9C,EAAwB,WAAW,EAAE,UAAA+C,GAAU,UAAAC,GAAUhD,EAAwB,WAAW,GAAG,GAAG,UAAAiD,GAAUjD,EAAwB,WAAW,GAAG,GAAG,GAAGkD,EAAS,EAAE1E,GAASI,CAAK,EAAQuE,EAAU,IAAI,CAAC,IAAMC,EAASA,GAAiBzD,EAAiBnD,CAAY,EAAE,GAAG4G,EAAS,OAAO,CAAC,IAAIC,EAAU,SAAS,cAAc,qBAAqB,EAAKA,EAAWA,EAAU,aAAa,UAAUD,EAAS,MAAM,GAAQC,EAAU,SAAS,cAAc,MAAM,EAAEA,EAAU,aAAa,OAAO,QAAQ,EAAEA,EAAU,aAAa,UAAUD,EAAS,MAAM,EAAE,SAAS,KAAK,YAAYC,CAAS,EAAG,CAAC,EAAE,CAAC1D,EAAiBnD,CAAY,CAAC,EAAQ8G,GAAmB,IAAI,CAAC,IAAMF,EAASA,GAAiBzD,EAAiBnD,CAAY,EAAE,SAAS,MAAM4G,EAAS,OAAO,GAAMA,EAAS,UAAU,SAAS,cAAc,uBAAuB,GAAG,aAAa,UAAUA,EAAS,QAAQ,CAAG,EAAE,CAACzD,EAAiBnD,CAAY,CAAC,EAAE,GAAK,CAAC+G,EAAYC,EAAmB,EAAEC,GAA8BpD,EAAQzE,GAAY,EAAK,EAAQ8H,GAAe,OAA4PC,EAAkBC,GAAG9H,GAAkB,GAA7P,CAAaqE,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAQ0D,GAAUC,GAAkB,WAAW,EAAQC,EAAW9E,EAAO,IAAI,EAAQ+E,GAAWF,GAAkB,oBAAoB,EAAQG,GAAWhF,EAAO,IAAI,EAAQiF,EAAY,IAASrI,GAAU,EAAiB0H,IAAc,YAAtB,GAAmEY,GAAa,IAAQ,CAACtI,GAAU,GAAiB0H,IAAc,YAA6Ca,EAAQ/H,GAAOH,GAAYwE,EAAU,CAAC,CAAC,EAAQ2D,GAASnI,GAAYwE,EAAU,CAAC,EAAQ4D,GAAiBC,GAAc,EAAQC,GAAY/G,GAAOD,GAAOlB,GAAeoE,EAAU,CAAC,OAAO,GAAG,SAAS,WAAW,MAAM,SAAS,EAAE4D,EAAgB,EAAE,QAAQ,EAAE,gBAAW,EAAQG,GAAahH,GAAOnB,GAAeqE,GAAU,CAAC,OAAO,GAAG,SAAS,WAAW,MAAM,SAAS,EAAE2D,EAAgB,EAAE,SAAS,EAAQI,GAAajH,GAAOnB,GAAesE,GAAU,CAAC,OAAO,GAAG,SAAS,WAAW,MAAM,SAAS,EAAE0D,EAAgB,EAAE,WAAW,EAAQK,GAAalH,GAAOnB,GAAeuE,EAAU,CAAC,OAAO,GAAG,SAAS,WAAW,MAAM,SAAS,EAAEyD,EAAgB,EAAE,YAAY,EAAQM,GAAa,IAAS/I,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAAS0H,CAAW,EAAtD,GAAyFsB,GAAOC,GAAU,EAAQC,GAAWjB,GAAkB,oBAAoB,EAAQkB,GAAWC,GAAY,EAAQC,EAAaC,GAA2B,YAAenE,GAAUxE,CAAY,EAAQ4I,GAAaD,GAA2B,YAAelE,GAAUzE,CAAY,EAAQ6I,GAAaF,GAA2B,YAAejE,GAAU1E,CAAY,EAAQ8I,GAAS5H,GAAMmF,EAAS,EAAQ0C,EAAa5H,GAAkBoF,GAAUvG,CAAY,EAAQgJ,GAAW1B,GAAkB,WAAW,EAAQ2B,GAAWxG,EAAO,IAAI,EAAE,OAAAyG,GAAiB,CAAC,CAAC,EAAsBpH,EAAKqH,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA5J,EAAiB,EAAE,SAAsB6J,EAAMC,GAAY,CAAC,GAAGzF,GAAUjB,EAAgB,SAAS,CAAcb,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAewH,EAAMjK,EAAO,IAAI,CAAC,GAAGuH,GAAU,UAAUU,GAAGD,EAAkB,iBAAiBxD,CAAS,EAAE,IAAIjB,EAAW,MAAM,CAAC,GAAGpC,CAAK,EAAE,SAAS,CAAcwB,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,GAAGlC,GAAU,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,IAAIE,EAAK,QAAQ,YAAY,SAAsBzF,EAAKzD,EAAc,CAAC,UAAU,aAAa,aAAa,CAAC,UAAU,wBAAwB,SAAS,GAAG,aAAa,GAAG,mBAAmB,IAAI,iBAAiB,EAAE,kBAAkB,EAAE,gBAAgB,EAAE,cAAc,eAAe,YAAY,IAAI,kBAAkB,GAAM,iBAAiB,GAAK,UAAU,GAAG,kBAAkB,EAAI,EAAE,gBAAgB,GAAK,aAAa,GAAG,OAAO,GAAG,UAAU,CAAcyD,EAAK3C,EAAO,IAAI,CAAC,UAAU,gBAAgB,SAAS4E,GAAW,IAAI,CAAC,CAAC,GAAA7B,EAAG,UAAU4B,CAAkB,EAAE0F,KAA6B1H,EAAKuH,GAAY,CAAC,GAAG,aAAanH,GAAIsH,EAAK,GAAG,SAAsB1H,EAAK2H,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,SAAS,GAAGjK,GAAkBsE,CAAkB,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,OAAO,CAAC,CAAC,EAAE5B,GAAIsH,EAAK,CAAG,CAAC,CAAC,CAAC,EAAE,UAAU,OAAO,YAAY,GAAK,eAAe,CAAC,aAAa,GAAM,eAAe,GAAG,mBAAmB,KAAK,cAAc,EAAE,aAAa,CAAC,EAAE,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAI,EAAE,IAAI,EAAE,OAAO,OAAO,GAAG,YAAY,kBAAkB,EAAE,gBAAgB,EAAE,WAAW,EAAE,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,gBAAgB,CAAC,kBAAkB,EAAE,eAAe,qEAAqE,SAAS,EAAE,iBAAiB,IAAI,SAAS,qBAAqB,QAAQ,GAAG,UAAU,IAAI,QAAQ,GAAG,YAAY,GAAG,YAAY,EAAE,WAAW,GAAG,iBAAiB,EAAK,EAAE,UAAU,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,kBAAkB,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeJ,EAAM,MAAM,CAAC,UAAU,iBAAiB,cAAc,GAAK,GAAG5B,GAAW,IAAIC,GAAK,SAAS,CAAc3F,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBsH,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKvD,GAAS,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,MAAM,0BAA0B,OAAO,sBAAsB,wEAAwE,0BAA0B,WAAW,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,MAAM,CAAC,mBAAmB,EAAE,KAAKkC,EAAoB,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAelC,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,MAAM,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,MAAM,CAAC,OAAO,EAAE,KAAKmC,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyD,EAAY,GAAgB5F,EAAK,MAAM,CAAC,UAAU,8BAA8B,CAAC,EAAE6F,GAAa,GAAgB7F,EAAK,MAAM,CAAC,UAAU,4CAA4C,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,QAAQ,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6K,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAACxB,GAAsB9F,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAE+F,IAAuB/F,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,KAAKkG,GAAY,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAelG,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,qBAAqB,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,QAAQ,GAAG,qBAAqB,SAAS,qBAAqB,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKmG,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAenG,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,qBAAqB,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,MAAM,GAAG,qBAAqB,SAAS,qBAAqB,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKoG,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAepG,EAAK,MAAM,CAAC,UAAU,cAAc,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,qBAAqB,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,UAAU,GAAG,qBAAqB,SAAS,qBAAqB,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAKqG,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEC,GAAa,GAAgBtG,EAAK,MAAM,CAAC,UAAU,8CAA8C,SAAsBA,EAAK8H,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAtF,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASuF,GAA4B/H,EAAKwH,EAA0B,CAAC,OAAO,GAAG,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,OAAO,qBAAqB,QAAQ,YAAY,SAAsBzH,EAAKpD,GAAqB,CAAC,UAAUmL,EAAc,CAAC,EAAE,OAAO,OAAO,GAAG,qBAAqB,SAAS,qBAAqB,UAAU,2BAA2B,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe/H,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASnF,GAAU,UAAU,gBAAgB,mBAAmB,oBAAoB,MAAM,CAAC,OAAO,EAAE,GAAGgE,GAAW,IAAIC,GAAWD,EAAU,EAAE,wBAAwB,CAAC,EAAE,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAezG,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK8H,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAtF,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAA,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAA,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASwF,GAA6BhI,EAAKwH,EAA0B,CAAC,OAAO,GAAG,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+C,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBhI,EAAKpD,GAAqB,CAAC,UAAUoL,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2BAA2B,UAAU,qBAAqB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehI,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,cAAc,EAAI,CAAC,EAAE,SAAsBjF,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBsH,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBjF,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,KAAK4G,EAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe5G,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBjF,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,KAAK8G,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9G,EAAK,MAAM,CAAC,UAAU,gBAAgB,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKvD,EAAU,CAAC,MAAM,wEAAwE,OAAO,OAAO,WAAW,QAAQ,cAAc,cAAc,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeuD,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,SAAsBjF,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,uBAAuB,MAAM,0BAA0B,SAAS,sBAAsB,oEAAoE,EAAE,SAAS,eAAe,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,KAAK+G,GAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeO,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAActH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAYhE,GAAmB,OAAO,OAAO,oBAAoB,GAAGvD,GAAkBmF,EAAS,CAAC,CAAC,CAAC,EAAE,SAAsB7C,EAAK2H,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAY1G,GAAmB,OAAO,OAAO,gCAAgC,GAAGvD,GAAkBmF,EAAS,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe7C,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAYhE,GAAmB,OAAO,OAAO,oBAAoB,GAAGvD,GAAkBoF,EAAS,CAAC,CAAC,CAAC,EAAE,SAAsB9C,EAAK2H,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAY1G,GAAmB,OAAO,OAAO,gCAAgC,GAAGvD,GAAkBoF,EAAS,CAAC,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAewE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAYhE,GAAmB,OAAO,OAAO,oBAAoB,GAAGvD,GAAkBqF,EAAS,CAAC,CAAC,CAAC,EAAE,SAAsB/C,EAAK2H,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAY1G,GAAmB,OAAO,OAAO,gCAAgC,GAAGvD,GAAkBqF,EAAS,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,EAAe/C,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAYhE,GAAmB,OAAO,OAAO,oBAAoB,GAAGvD,GAAkBsF,EAAS,CAAC,CAAC,CAAC,EAAE,SAAsBhD,EAAK2H,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,MAAM,YAAY1G,GAAmB,OAAO,OAAO,gCAAgC,GAAGvD,GAAkBsF,EAAS,CAAC,EAAE,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehD,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK8H,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAtF,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAA,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAA,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS0F,GAA6BlI,EAAKwH,EAA0B,CAAC,OAAO,GAAG,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUiD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBlI,EAAKpD,GAAqB,CAAC,UAAUsL,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,2BAA2B,UAAU,UAAU,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeZ,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAACrE,IAAwBjD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,KAAK,OAAO,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoG,IAAwBlD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,KAAK,OAAO,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,OAAO,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqG,IAAwBnD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,eAAe,KAAK,eAAe,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsG,IAAwBpD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,mBAAmB,KAAK,mBAAmB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,mBAAmB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,mBAAmB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuG,IAAwBrD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,kBAAkB,KAAK,kBAAkB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwG,GAAwBtD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,KAAK,OAAO,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,OAAO,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEyG,IAAwBvD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,wBAAwB,KAAK,wBAAwB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,wBAAwB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,wBAAwB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0G,IAAwBxD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,kBAAkB,KAAK,kBAAkB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE2G,IAAwBzD,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,WAAW,KAAK,WAAW,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,WAAW,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,WAAW,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE4G,IAAwB1D,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,oBAAoB,KAAK,oBAAoB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,oBAAoB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,oBAAoB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6G,IAAwB3D,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,iBAAiB,KAAK,iBAAiB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE8G,IAAwB5D,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,iBAAiB,KAAK,iBAAiB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+G,GAAwB7D,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,sBAAsB,KAAK,sBAAsB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,sBAAsB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,sBAAsB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgH,IAAwB9D,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,eAAe,KAAK,eAAe,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEiH,IAAwB/D,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,iBAAiB,KAAK,iBAAiB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,iBAAiB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,iBAAiB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEkH,IAAwBhE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,kBAAkB,KAAK,kBAAkB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEmH,IAAwBjE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,kBAAkB,KAAK,kBAAkB,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,kBAAkB,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,kBAAkB,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEoH,IAAwBlE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,cAAc,KAAK,cAAc,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,cAAc,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,cAAc,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEqH,IAAwBnE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,UAAU,KAAK,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,UAAU,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,UAAU,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsH,IAAwBpE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,QAAQ,KAAK,QAAQ,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,QAAQ,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,QAAQ,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEuH,IAAwBrE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,eAAe,KAAK,eAAe,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEwH,IAAwBtE,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,mBAAmB,eAAe,KAAK,eAAe,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAKlD,EAAQ,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAekD,EAAK8H,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAtF,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAA,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAA,CAAS,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS2F,GAA6BnI,EAAKwH,EAA0B,CAAC,OAAO,GAAG,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,OAAO,qBAAqB,QAAQ,YAAY,SAAsBzH,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUkD,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBnI,EAAKpD,GAAqB,CAAC,UAAUuL,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,qBAAqB,SAAS,qBAAqB,UAAU,2BAA2B,UAAU,qBAAqB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEnB,IAAuBhH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKwH,EAA0B,CAAC,SAAsBxH,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,qBAAqB,QAAQ,YAAY,SAAsBzH,EAAKhD,GAAM,CAAC,OAAO,OAAO,KAAK,GAAG,GAAG,qBAAqB,SAAS,qBAAqB,OAAO,MAAM,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,MAAM,IAAI,qEAAqE,MAAM,OAAO,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesK,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK2H,GAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,MAAM,WAAW1G,GAAmB,OAAO,OAAO,2BAA2B,GAAGvD,GAAkB8G,EAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,gBAAgB,CAAC,CAAC,CAAC,CAAC,EAAe8C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,qDAAqD,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,wBAAwB,0BAA0B,WAAW,EAAE,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,KAAKiH,EAAa,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeK,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oMAA+L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,KAAK0E,GAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAe4C,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAASjD,GAAU,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,wBAAwB,CAAC,EAAE,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,+BAA+B,GAAG,8BAA8B,GAAG,8BAA8B,EAAE,8BAA8B,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe3E,EAAK,MAAM,CAAC,UAAU,eAAe,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,iBAAiB,GAAGJ,GAAW,IAAIC,GAAK,SAAS,CAAcnH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAesH,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,0BAA0B,QAAQ,EAAE,SAAS,2FAA2F,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKoI,GAAc,CAAC,OAAO,oFAAoF,UAAU,gBAAgB,OAAO,YAAY,YAAY,CAAC,UAAU,WAAW,EAAE,iBAAiB,6BAA6B,SAASC,GAAwBf,EAAMgB,GAAU,CAAC,SAAS,CAAchB,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,QAAQ,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,iBAAiB,UAAU,WAAW,YAAY,kBAAkB,SAAS,GAAK,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,QAAQ,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,gBAAgB,UAAU,YAAY,YAAY,kBAAkB,SAAS,GAAK,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,QAAQ,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,gBAAgB,UAAU,SAAS,YAAY,mBAAmB,SAAS,GAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,QAAQ,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,gBAAgB,UAAU,OAAO,YAAY,aAAa,SAAS,GAAK,KAAK,MAAM,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,QAAQ,CAAC,UAAU,gBAAgB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,YAAY,oBAAoB,SAAS,GAAK,KAAK,KAAK,CAAC,CAAC,CAAC,CAAC,EAAejB,EAAM,QAAQ,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,iBAAiB,UAAU,QAAQ,YAAY,kBAAkB,SAAS,GAAK,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevI,EAAKuI,GAAmB,CAAC,UAAU,iBAAiB,aAAapG,EAAU,UAAU,WAAW,KAAK,QAAQ,CAAC,EAAemF,EAAM,QAAQ,CAAC,UAAU,iBAAiB,SAAS,CAActH,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,IAAI,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,SAAS,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKuI,GAAmB,CAAC,UAAU,gBAAgB,UAAU,UAAU,YAAY,kFAAkF,KAAK,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAevI,EAAKiI,EAAkB,CAAC,WAAWhD,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,mBAAmBhE,GAAmB,OAAO,OAAO,8CAA8C,CAAC,EAAE,SAAsBjB,EAAKwH,EAA0B,CAAC,OAAO,GAAG,MAAM,mBAAmBvG,GAAmB,OAAO,OAAO,+CAA+C,SAAsBjB,EAAKyH,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBzH,EAAK9C,GAAO,CAAC,UAAU,eAAe,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,SAAS,QAAQoC,GAAa+I,EAAU,CAAC,QAAQ,YAAY,QAAQ,WAAW,EAAE,WAAW,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAerI,EAAKwI,GAAK,CAAC,gBAAgB,oBAAoB,KAAK,CAAC,KAAK,aAAa,cAAc,CAAC,UAAAhG,CAAS,EAAE,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAK,SAAsBxC,EAAK7C,GAAc,CAAC,kBAAkB,CAAC,WAAWwC,EAAW,EAAE,sBAAsB,GAAM,gBAAgBD,GAAU,mCAAmC,GAAK,kBAAkB,CAAC,CAAC,IAAIgH,GAAWD,EAAU,EAAE,OAAO,SAAS,CAAC,EAAE,oBAAoB,GAAG,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,8BAA8B,mBAAmB,oBAAoB,WAAW5G,GAAW,SAAsBG,EAAK4H,EAAS,CAAC,sBAAsB,GAAK,SAAsB5H,EAAW6H,EAAS,CAAC,SAAsB7H,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyI,GAAI,CAAC,kFAAkF,gFAAgF,sVAAsV,qLAAqL,qPAAqP,8SAA8S,0fAA0f,gSAAgS,4QAA4Q,oTAAoT,gRAAgR,wGAAwG,sKAAsK,8RAA8R,gRAAgR,+LAA+L,0SAA0S,uWAAuW,6VAA6V,sRAAsR,wVAAwV,yPAAyP,8dAA8d,+RAA+R,wLAAwL,mWAAmW,oSAAoS,iSAAiS,+UAA+U,+SAA+S,wQAAwQ,gRAAgR,qSAAqS,qIAAqI,oIAAoI,kHAAkH,oHAAoH,4RAA4R,8TAA8T,oSAAoS,+9BAA+9B,qHAAqH,sKAAsK,qYAAqY,uVAAuV,gNAAgN,yYAAyY,qRAAqR,8RAA8R,iPAAiP,6LAA6L,maAAma,+QAA+Q,mRAAmR,qIAAqI,4UAA4U,+SAA+S,8QAA8Q,2QAA2Q,4TAA4T,g2BAAg2B,8RAA8R,8QAA8Q,0VAA0V,kvBAAkvB,4RAA4R,myBAAmyB,yGAAyG,0qBAA0qB,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,gcAAgc,seAAse,2mFAA2mF,EAc939EC,GAAgBC,GAAQpI,GAAUkI,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,OAAOA,GAAgB,aAAa,CAAC,OAAO,OAAO,MAAM,IAAI,EAAEG,GAASH,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,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,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,oGAAoG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGrM,GAAmB,GAAGG,GAAc,GAAGE,GAAe,GAAGC,GAA0B,GAAGE,GAAa,GAAGE,GAAW,GAAGE,GAAY,GAAG6L,GAAoCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,EAAE,GAAGD,GAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACp1F,IAAMC,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,yBAA2B,OAAO,sBAAwB,IAAI,yBAA2B,QAAQ,uBAAyB,GAAG,qBAAuB,OAAO,sBAAwB,SAAS,oCAAsC,4JAA0L,6BAA+B,OAAO,kBAAoB,iJAAyK,qBAAuB,OAAO,qBAAuB,2PAAmS,4BAA8B,OAAO,kBAAoB,MAAM,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "isBrowser", "getBrowserVisibilityProp", "getBrowserDocumentHiddenProp", "getIsDocumentHidden", "usePageVisibility", "isVisible", "setIsVisible", "ye", "onVisibilityChange", "ue", "visibilityChange", "extractImagesFromContainer", "containerDOM", "sources", "img", "el", "match", "window", "OPACITY_0", "UncodeGallery", "props", "container", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "infinity", "codeBy", "style", "imageBorderRadius", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBorderRadius", "dotsBlur", "isCanvas", "RenderTarget", "isHorizontal", "isInverted", "imagesRef", "pe", "localContainerRef", "ue", "hasImages", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "childrenRef", "se", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "paddingValue", "parentRef", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "scheduleMeasure", "sync", "fe", "initialResize", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "inView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "wrappedValue", "useTransform", "value", "totalSize", "wrapped", "canvasPosition", "newPosition", "wrappedIndex", "wrap", "wrappedIndexInverted", "switchPages", "animate", "prev", "setDelta", "delta", "newCurrentItem", "clamp", "setPage", "index", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityXorY", "velocityThreshold", "itemDimension", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "dupedSlides", "duplicateBy", "columnOrRowValue", "slideCounter", "src", "childIndex", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "fadeInsetEnd", "fadeMask", "dots", "dotStyle", "dotsBlurStyle", "i", "Dot", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "Y", "ref", "slideKey", "source", "width", "height", "childCounter", "sizeObj", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "visibility", "mix", "LayoutGroup", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "num", "min", "max", "PhosphorFonts", "getFonts", "Icon", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "textContent", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "gG0bP87xN", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "ComponentViewportProvider", "Icon", "RichText", "css", "FramercuiXPP7bz", "withCSS", "cuiXPP7bz_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "fontStore", "fonts", "css", "className", "UncodeGalleryFonts", "getFonts", "UncodeGallery", "PhosphorFonts", "Icon", "Phosphor1Fonts", "ButtonArrowUnderlineFonts", "iil6mY0dN_default", "AmenityFonts", "cuiXPP7bz_default", "EmbedFonts", "Embed", "ButtonFonts", "tiM_Tj3GS_default", "MotionAWithFX", "withFX", "motion", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "greaterThan", "a", "b", "negate", "numberToString", "options", "activeLocale", "fallbackLocale", "locale", "useGrouping", "notation", "compactDisplay", "style", "currency", "currencyDisplay", "unit", "unitDisplay", "minimumFractionDigits", "maximumFractionDigits", "minimumIntegerDigits", "formatOptions", "number", "prefix", "suffix", "isSet", "enumToDisplayName", "formVariants", "form", "variants", "currentVariant", "animation", "transition1", "transition2", "animation1", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "JR_wYFoQE_default", "XSmBVVjCk_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "className", "layoutId", "variant", "WNwfciT5ajm6jBSkNt", "LzXLNDpL4", "ppRweg8wY_hvJvNsh8s", "ru3pngNrl", "GPJ6Rk9Mg", "a3y5a40dH", "G5BWwdIxA", "dGYJT_i9K", "dKfO0t9wq", "Ss0dV6m9t", "FNrTvsjZi", "xmv3Naut2", "I4L_fkAMg", "CxOY80mCj", "EIvoANxtz", "eUPhj8Ctr", "Q8NaozmH0", "ES6yd0zRv", "g7YTC69h1", "Wu2K1eIZo", "qErCry7py", "GUqgjX0f1", "SgY1GAqaS", "uEggj1PUt", "kQK6XAHUv", "KL819DAoW", "QTcMU_UVQ", "X4a2ZtpSg", "cDua3_083", "IWBsJYUAz", "Ro5XOw7FY", "Fo8CXqSDB", "tELAkj7t_", "ZRROqoMFI", "H7xyySGjg", "zPVNGZHP9", "Iv38QBm7N", "RmbrG2iLi", "L7PDSzFij", "yHTR7Jmr2", "dvSqLdcVR", "quJ3weCOJ", "kSH_QmC9A", "IsKsgKL5t", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "visible", "visible1", "activeLocaleCode", "useLocaleCode", "textContent", "textContent1", "textContent2", "textContent3", "isDisplayed2", "router", "useRouter", "elementId2", "dynamicRef", "useSiteRefs", "textContent4", "enumToDisplayNameFunctions", "textContent5", "textContent6", "visible2", "textContent7", "elementId3", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "index", "Image2", "RichText", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "PropertyOverrides2", "resolvedLinks2", "resolvedLinks3", "FormContainer", "formState", "l", "FormPlainTextInput2", "Link", "css", "FramerhHxEeWfRZ", "withCSS", "hHxEeWfRZ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
