{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js", "ssg:https://framerusercontent.com/modules/Bo5J5yJafF5kohg0JIUX/Uxj78Cvm0MHvFUw0tDXd/augiA20Il.js", "ssg:https://framerusercontent.com/modules/wzqzjOlRYX6TntXBgUou/spJ9BwfsioI0fRonFdR0/augiA20Il.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,style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,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\";}}});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,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},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(()=>{var _ref_current;const iframeWindow=(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_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===null||iframeWindow===void 0?void 0:iframeWindow.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                min-height: 100vh;\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\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (4c3178a)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={lq9uO3WES:new LazyValue(()=>import(\"./augiA20Il-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4c3178a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Arc from\"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/XOOqlsrUApK7c1r3bqGB/Arc.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/Xr8CO3Ul8Gb7lVfgMKTh/Embed.js\";import CustomCursorYellow from\"#framer/local/canvasComponent/BEGfyM5sE/BEGfyM5sE.js\";import CaseThumbnail from\"#framer/local/canvasComponent/GMaomOE3U/GMaomOE3U.js\";import Footer from\"#framer/local/canvasComponent/Q_IxGDt_w/Q_IxGDt_w.js\";import Navigation from\"#framer/local/canvasComponent/RMTIifO8H/RMTIifO8H.js\";import ButtonIcon from\"#framer/local/canvasComponent/uZI6j5QZr/uZI6j5QZr.js\";import ItemWImageCopy from\"#framer/local/canvasComponent/yR1zzHJyd/yR1zzHJyd.js\";import Work from\"#framer/local/collection/qcOEbDaZ_/qcOEbDaZ_.js\";import*as sharedStyle3 from\"#framer/local/css/bmgtGAtvT/bmgtGAtvT.js\";import*as sharedStyle4 from\"#framer/local/css/eOnlskoQw/eOnlskoQw.js\";import*as sharedStyle1 from\"#framer/local/css/irIquxyD6/irIquxyD6.js\";import*as sharedStyle from\"#framer/local/css/OGkaZcHcM/OGkaZcHcM.js\";import*as sharedStyle2 from\"#framer/local/css/rVaIBWTV0/rVaIBWTV0.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/augiA20Il/augiA20Il.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const RichTextWithFX=withFX(RichText);const ButtonIconFonts=getFonts(ButtonIcon);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const EmbedFonts=getFonts(Embed);const ArcFonts=getFonts(Arc);const MotionDivWithFX=withFX(motion.div);const ItemWImageCopyFonts=getFonts(ItemWImageCopy);const CaseThumbnailFonts=getFonts(CaseThumbnail);const ImageWithFX=withFX(Image);const FooterFonts=getFonts(Footer);const CustomCursorYellowFonts=getFonts(CustomCursorYellow);const breakpoints={aD0ytcUh4:\"(max-width: 767px)\",FGJ0Q_0oo:\"(min-width: 768px) and (max-width: 1137px)\",WQLkyLRf1:\"(min-width: 1410px)\",XM6Il6fmT:\"(min-width: 1138px) and (max-width: 1409px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-SbdC8\";const variantClassNames={aD0ytcUh4:\"framer-v-10jird5\",FGJ0Q_0oo:\"framer-v-lxxoli\",WQLkyLRf1:\"framer-v-72rtr7\",XM6Il6fmT:\"framer-v-1gwsvhh\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:30,y:0};const transition1={delay:.2,duration:1.5,ease:[.35,0,0,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:30,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:40,y:0};const transition2={delay:.3,duration:1.5,ease:[.35,0,0,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:40,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition3={delay:0,duration:1.5,ease:[.35,0,0,1],type:\"tween\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:30,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-50,y:0};const transition4={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:80};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"aD0ytcUh4\",Tablet:\"XM6Il6fmT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:CustomCursorYellow,variant:\"dmOE7TVc5\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,MSZWmOUa4BpnXe2wHi,usvkqQZmRBpnXe2wHi,KM6vLSrChBpnXe2wHi,HO_Dxy3FbBpnXe2wHi,idBpnXe2wHi,bohRFuhqjuZI6j5QZr,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);usePreloadLocalizedValues(activeLocale);const router=useRouter();const elementId=useRouteElementId(\"N05Sqk3wG\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"aD0ytcUh4\",\"XM6Il6fmT\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"aD0ytcUh4\",\"XM6Il6fmT\"].includes(baseVariant))return true;return false;};useCustomCursors({\"1o6t20n\":cursor,\"1x279oj\":{...cursor,variant:\"zsYToRZlr\"}});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-e16847f2-b192-48e1-a890-7bbcce11cc6e, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1o6t20n\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:94,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d8ljtf-container\",layoutScroll:true,nodeId:\"m0DwtXSWb\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{variant:\"dKaOon5M9\"},FGJ0Q_0oo:{variant:\"dKaOon5M9\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"m0DwtXSWb\",layoutId:\"m0DwtXSWb\",style:{width:\"100%\"},v7Nh7r8us:true,variant:\"nplNkO1zi\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nwve3s\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m6sp60\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lssu9m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:\"Eugeniuses, your Canadian digital agency.\"})}),fonts:[\"GF;Manrope-500\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1kg8xe7\",\"data-styles-preset\":\"OGkaZcHcM\",children:\"Eugeniuses, your Canadian digital agency.\"})}),className:\"framer-l5382l\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"Digital solutions that drive sales\"})}),className:\"framer-exy7i1\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NLZWFwF7P\"},implicitPathVariables:undefined},{href:{webPageId:\"NLZWFwF7P\"},implicitPathVariables:undefined},{href:{webPageId:\"NLZWFwF7P\"},implicitPathVariables:undefined},{href:{webPageId:\"NLZWFwF7P\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+0+0+326.8+80+202.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+0+0+320.4+80+215.2,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qn66lz-container\",nodeId:\"ak1_umG1X\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{bohRFuhqj:resolvedLinks[2]},FGJ0Q_0oo:{bohRFuhqj:resolvedLinks[1]},XM6Il6fmT:{bohRFuhqj:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:resolvedLinks[0],height:\"100%\",i7oFluX4k:getLocalizedValue(\"v3\",activeLocale)??\"Get a custom proposal now\",id:\"ak1_umG1X\",layoutId:\"ak1_umG1X\",variant:\"cmQsGoNxI\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18di4cb\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1osamin-container\",isModuleExternal:true,nodeId:\"xh5mVR36m\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{gap:60}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:130,height:\"100%\",hoverFactor:1,id:\"xh5mVR36m\",layoutId:\"xh5mVR36m\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Ford logo\",fit:\"fill\",intrinsicHeight:74.5,intrinsicWidth:196.5,pixelHeight:149,pixelWidth:393,src:\"https://framerusercontent.com/images/PPR3EVh3N12GmPP4ddGXccVA.png\"},className:\"framer-1d61tuy\",\"data-framer-name\":\"Group\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Olofusion logo\",fit:\"fill\",intrinsicHeight:162.5,intrinsicWidth:162,pixelHeight:325,pixelWidth:324,src:\"https://framerusercontent.com/images/92GBsgl4QQn5JEuyqtSRunwavA0.png\"},className:\"framer-niqufp\",\"data-framer-name\":\"Group_950\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Salesforce logo\",fit:\"fill\",intrinsicHeight:124.5,intrinsicWidth:178,pixelHeight:249,pixelWidth:356,src:\"https://framerusercontent.com/images/yfwemcGbF0Q1czgtLq3qogUE74.png\"},className:\"framer-fujl2q\",\"data-framer-name\":\"Group_194\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"ixmedia logo\",fit:\"fill\",intrinsicHeight:41,intrinsicWidth:199,pixelHeight:82,pixelWidth:398,src:\"https://framerusercontent.com/images/jrRTI80ZTI9ifckElQo3CRuBNaY.png\"},className:\"framer-s9vbd6\",\"data-framer-name\":\"Group_951\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"nevvo logo\",fit:\"fill\",intrinsicHeight:49,intrinsicWidth:227.5,pixelHeight:98,pixelWidth:455,src:\"https://framerusercontent.com/images/igCOtSzCzNewfbD4jXZMxRzvoWQ.png\"},className:\"framer-v5ydnr\",\"data-framer-name\":\"Group_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Feynman logo\",fit:\"fill\",intrinsicHeight:47.5,intrinsicWidth:255,pixelHeight:95,pixelWidth:510,src:\"https://framerusercontent.com/images/HkECUPbUf1QnWPD7kEPKtTmns.png\"},className:\"framer-v8ffyl\",\"data-framer-name\":\"feynman_light\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Orgill logo\",fit:\"fill\",intrinsicHeight:356,intrinsicWidth:1250,pixelHeight:712,pixelWidth:2500,sizes:\"115.8708px\",src:\"https://framerusercontent.com/images/nu1KahPqkriwAul5sLG2EKOzFKU.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nu1KahPqkriwAul5sLG2EKOzFKU.png?scale-down-to=512 512w,https://framerusercontent.com/images/nu1KahPqkriwAul5sLG2EKOzFKU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nu1KahPqkriwAul5sLG2EKOzFKU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nu1KahPqkriwAul5sLG2EKOzFKU.png 2500w\"},className:\"framer-1usizn\",\"data-framer-name\":\"Orgill_1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Friday Night at the ER logo\",fit:\"fill\",intrinsicHeight:669,intrinsicWidth:1502.5,pixelHeight:1338,pixelWidth:3005,sizes:\"124px\",src:\"https://framerusercontent.com/images/ofpI40pJ7vo3xFZ2VrVBi3NU4S8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/ofpI40pJ7vo3xFZ2VrVBi3NU4S8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ofpI40pJ7vo3xFZ2VrVBi3NU4S8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ofpI40pJ7vo3xFZ2VrVBi3NU4S8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ofpI40pJ7vo3xFZ2VrVBi3NU4S8.png 3005w\"},className:\"framer-udqj0o\",\"data-framer-name\":\"Frame_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Scandina logo\",fit:\"fill\",intrinsicHeight:118,intrinsicWidth:538,pixelHeight:236,pixelWidth:1076,sizes:\"150.4576px\",src:\"https://framerusercontent.com/images/mZ325PUxBeRdvtr5XaY5KqcGzk.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mZ325PUxBeRdvtr5XaY5KqcGzk.png?scale-down-to=512 512w,https://framerusercontent.com/images/mZ325PUxBeRdvtr5XaY5KqcGzk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mZ325PUxBeRdvtr5XaY5KqcGzk.png 1076w\"},className:\"framer-1u2yos9\",\"data-framer-name\":\"SCANDINA_logo_horizontal_c_2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Succ\\xe8s Scolaire logo\",fit:\"fill\",intrinsicHeight:84.5,intrinsicWidth:247,pixelHeight:169,pixelWidth:494,src:\"https://framerusercontent.com/images/oDSbsQ2woPsPhmAqtqxfq1b47k.png\"},className:\"framer-6re6jw\",\"data-framer-name\":\"Group_622\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-rog4j\",\"data-framer-name\":\"3D element\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-y2lo1q-container\",\"data-framer-name\":\"test\",isModuleExternal:true,name:\"test\",nodeId:\"TxGV1ZFVK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<script type=\"module\" src=\"https://unpkg.com/@splinetool/viewer@1.9.73/build/spline-viewer.js\"></script>\\n<spline-viewer url=\"https://prod.spline.design/A1Za1ce87umRBl6t/scene.splinecode\"></spline-viewer>',id:\"TxGV1ZFVK\",layoutId:\"TxGV1ZFVK\",name:\"test\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:'<script type=\"module\" src=\"https://unpkg.com/@splinetool/viewer@1.9.73/build/spline-viewer.js\"></script> <spline-viewer url=\"https://prod.spline.design/A1Za1ce87umRBl6t/scene.splinecode\"></spline-viewer>',width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t6tijf\",\"data-framer-name\":\"Text 3 Columns\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hef24l\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:-150,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScroll\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1116ci2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"aPl44uPsQ\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",animate:false,animateDuration:5,animateEnd:150,animateStart:-51.1,color:\"var(--token-e16847f2-b192-48e1-a890-7bbcce11cc6e, rgb(255, 255, 255))\",cylinderHeight:0,flip:false,font:{fontFamily:'\"Alexandria\", \"Alexandria Placeholder\", sans-serif',fontSize:\"11px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"10.2px\",lineHeight:\"1em\"},height:\"100%\",id:\"aPl44uPsQ\",layoutId:\"aPl44uPsQ\",rotate:true,rotateSpeed:7,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"\u2726 NO DULL PROJECTS\",type:\"circle\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g2omui\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1risx7o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",style:{\"--framer-text-color\":\"var(--token-e16847f2-b192-48e1-a890-7bbcce11cc6e, rgb(255, 255, 255))\"},children:\"A fast-growing agency specialized in delivering unique experiences.\"})}),className:\"framer-1m480we\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19zkxbw\",\"data-styles-preset\":\"rVaIBWTV0\",style:{\"--framer-text-color\":\"var(--token-0e272a57-d630-4ae6-a209-51c62dec2a5a, rgb(102, 102, 102))\"},children:\"We have proven our work by partnering with businesses of all sizes. Over 40 passionate creators, our team offers services that convey your vision.\"})}),className:\"framer-ys0sgy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dd4xkfVUE\"},implicitPathVariables:undefined},{href:{webPageId:\"dd4xkfVUE\"},implicitPathVariables:undefined},{href:{webPageId:\"dd4xkfVUE\"},implicitPathVariables:undefined},{href:{webPageId:\"dd4xkfVUE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+1150+60+0+0+124+0+128.4},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1170+110+0+191+0+128.4},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1170+110+0+191+0+128.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+1155+110+0+0+128.4,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-csqvot-container\",nodeId:\"FUU1SucdB\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{bohRFuhqj:resolvedLinks1[2]},FGJ0Q_0oo:{bohRFuhqj:resolvedLinks1[1]},XM6Il6fmT:{bohRFuhqj:resolvedLinks1[3]}},children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:resolvedLinks1[0],height:\"100%\",i7oFluX4k:getLocalizedValue(\"v6\",activeLocale)??\"Meet the team\",id:\"FUU1SucdB\",layoutId:\"FUU1SucdB\",variant:\"v4byuEePM\",width:\"100%\"})})})})})})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17u7hyh\",\"data-framer-name\":\"Text 3 Columns\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kp25im\",\"data-framer-name\":\"Text 3 Columns\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tirvbu\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ld56ax\",\"data-framer-name\":\"Intro Text\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1xo5nk6\",\"data-styles-preset\":\"bmgtGAtvT\",style:{\"--framer-text-color\":\"var(--token-904c14a9-7582-43d7-a43c-85f49d580145, rgb(150, 150, 150))\"},children:\"Eugeniuses \u2014 Services\"})}),className:\"framer-122v932\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v4ltir\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rdgv41\",\"data-framer-name\":\"List\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dRHfPHVuh\"},motionChild:true,nodeId:\"k6Gnepb9h\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1diw6np framer-lux5qc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dRHfPHVuh\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1666.4+60+0+0+60.6+0+0+0+0+0+0},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+0+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1647.4+120+0+0+60.6+0+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19iamvn-container\",\"data-framer-cursor\":\"1x279oj\",nodeId:\"Re1fdt69I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{crmGU5JBp:resolvedLinks2[0],variant:\"Pcak11bNg\"}},children:/*#__PURE__*/_jsx(ItemWImageCopy,{height:\"100%\",id:\"Re1fdt69I\",layoutId:\"Re1fdt69I\",mLS8rQeBa:getLocalizedValue(\"v9\",activeLocale)??\"We develop stunning and functional applications designed to run beautifully on the device of your choice, using the latest technology available in the market.\",rFQ6HCuiQ:addImageAlt({pixelHeight:2522,pixelWidth:3618,src:\"https://framerusercontent.com/images/MlR1g6J9dkdHAaUzDF1XhDnjM.png\",srcSet:\"https://framerusercontent.com/images/MlR1g6J9dkdHAaUzDF1XhDnjM.png?scale-down-to=512 512w,https://framerusercontent.com/images/MlR1g6J9dkdHAaUzDF1XhDnjM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/MlR1g6J9dkdHAaUzDF1XhDnjM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/MlR1g6J9dkdHAaUzDF1XhDnjM.png 3618w\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"X5zxoWtZ9\",width:\"100%\",wiXcxw4O1:getLocalizedValue(\"v8\",activeLocale)??\"Mobile and Desktop Apps\",Z1pD210YP:getLocalizedValue(\"v10\",activeLocale)??\"Angular \u2022 iOS \u2022 Android \u2022 Web Apps \u2022 Vue.js \u2022 Flutter\"})})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"CoT3M7f_A\"},motionChild:true,nodeId:\"Fr_vSznLk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12aqvjh framer-lux5qc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CoT3M7f_A\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1666.4+60+0+0+60.6+0+0+0+133+0+0},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+133+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+133+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1647.4+120+0+0+60.6+0+0+0+133+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shrcue-container\",\"data-framer-cursor\":\"1x279oj\",nodeId:\"rPwDbAdHy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{crmGU5JBp:resolvedLinks3[0],variant:\"Pcak11bNg\"}},children:/*#__PURE__*/_jsx(ItemWImageCopy,{height:\"100%\",id:\"rPwDbAdHy\",layoutId:\"rPwDbAdHy\",mLS8rQeBa:getLocalizedValue(\"v12\",activeLocale)??\"From design to deployment, our website service provides visually appealing, responsive, and SEO-optimized websites following rigorous in-house protocol criteria.\",rFQ6HCuiQ:addImageAlt({pixelHeight:1436,pixelWidth:2060,src:\"https://framerusercontent.com/images/eUdHdHibeBhKm222TwIR8cOP4yQ.png\",srcSet:\"https://framerusercontent.com/images/eUdHdHibeBhKm222TwIR8cOP4yQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/eUdHdHibeBhKm222TwIR8cOP4yQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eUdHdHibeBhKm222TwIR8cOP4yQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eUdHdHibeBhKm222TwIR8cOP4yQ.png 2060w\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"X5zxoWtZ9\",width:\"100%\",wiXcxw4O1:getLocalizedValue(\"v11\",activeLocale)??\"Websites\",Z1pD210YP:getLocalizedValue(\"v13\",activeLocale)??\"Figma \u2022 HTML \u2022 CSS \u2022 Mobile \u2022 JS \u2022 CMS\"})})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l21gi5bR8\"},motionChild:true,nodeId:\"BDnMb2776\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-ztpssl framer-lux5qc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"l21gi5bR8\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1666.4+60+0+0+60.6+0+0+0+266+0+0},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+266+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+266+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1647.4+120+0+0+60.6+0+0+0+266+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-m2fxpe-container\",\"data-framer-cursor\":\"1x279oj\",nodeId:\"lhU3dlrUF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{crmGU5JBp:resolvedLinks4[0],variant:\"Pcak11bNg\"}},children:/*#__PURE__*/_jsx(ItemWImageCopy,{height:\"100%\",id:\"lhU3dlrUF\",layoutId:\"lhU3dlrUF\",mLS8rQeBa:getLocalizedValue(\"v15\",activeLocale)??\"Online stores are meticulously crafted to maximize sales conversion rates and integrate comprehensive features, all supported by personalized management systems.\",rFQ6HCuiQ:addImageAlt({pixelHeight:359,pixelWidth:515,src:\"https://framerusercontent.com/images/3pfoigYzshWIfdpkhthXdglJQs.png\",srcSet:\"https://framerusercontent.com/images/3pfoigYzshWIfdpkhthXdglJQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/3pfoigYzshWIfdpkhthXdglJQs.png 515w\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"X5zxoWtZ9\",width:\"100%\",wiXcxw4O1:getLocalizedValue(\"v14\",activeLocale)??\"E-Commerce\",Z1pD210YP:getLocalizedValue(\"v16\",activeLocale)??\"Shopify \u2022 Magento \u2022 Paypal \u2022 React Native \u2022 WooCommerce \u2022 BigCommerce\"})})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"KJNvwvCYf\"},motionChild:true,nodeId:\"jhQR45oU2\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1fxfx94 framer-lux5qc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KJNvwvCYf\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1666.4+60+0+0+60.6+0+0+0+399+0+0},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+399+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+399+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1647.4+120+0+0+60.6+0+0+0+399+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18e83v8-container\",\"data-framer-cursor\":\"1x279oj\",id:\"18e83v8\",nodeId:\"ANGvrMHHU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{crmGU5JBp:resolvedLinks5[0],variant:\"Pcak11bNg\"}},children:/*#__PURE__*/_jsx(ItemWImageCopy,{height:\"100%\",id:\"ANGvrMHHU\",layoutId:\"ANGvrMHHU\",mLS8rQeBa:getLocalizedValue(\"v18\",activeLocale)??\"Data automation and processing empowers the work, and the fusion of technology and human endeavor, bolstered by robust safety measures, is where we truly excel.\",rFQ6HCuiQ:addImageAlt({pixelHeight:1436,pixelWidth:2060,src:\"https://framerusercontent.com/images/eIuDu1L80icTd2WB4j9nC6EJ5M.png\",srcSet:\"https://framerusercontent.com/images/eIuDu1L80icTd2WB4j9nC6EJ5M.png?scale-down-to=512 512w,https://framerusercontent.com/images/eIuDu1L80icTd2WB4j9nC6EJ5M.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eIuDu1L80icTd2WB4j9nC6EJ5M.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eIuDu1L80icTd2WB4j9nC6EJ5M.png 2060w\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"X5zxoWtZ9\",width:\"100%\",wiXcxw4O1:getLocalizedValue(\"v17\",activeLocale)??\"Artificial Intelligence\",Z1pD210YP:getLocalizedValue(\"v19\",activeLocale)??\"NLP \u2022 Vector Database \u2022 Machine learning \u2022 Image recognition \u2022 LLM \u2022 OpenCV\"})})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DWR0nMor1\"},motionChild:true,nodeId:\"SivXX8Qca\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rb3f6p framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1666.4+60+0+0+60.6+0+0+0+532+0+0},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+532+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+532+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1647.4+120+0+0+60.6+0+0+0+532+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k1ismi-container\",\"data-framer-cursor\":\"1x279oj\",nodeId:\"iN3u9cL4X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{variant:\"Pcak11bNg\"}},children:/*#__PURE__*/_jsx(ItemWImageCopy,{height:\"100%\",id:\"iN3u9cL4X\",layoutId:\"iN3u9cL4X\",mLS8rQeBa:getLocalizedValue(\"v21\",activeLocale)??\"Quit manually moving data between platforms, missing steps, and wasting hours now. Our automation service connects your most needed tools into a seamless, error-free system.\",rFQ6HCuiQ:addImageAlt({pixelHeight:768,pixelWidth:1344,src:\"https://framerusercontent.com/images/PYSRFmgLf8M0524OWOwAHhSrCk.jpeg\",srcSet:\"https://framerusercontent.com/images/PYSRFmgLf8M0524OWOwAHhSrCk.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/PYSRFmgLf8M0524OWOwAHhSrCk.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/PYSRFmgLf8M0524OWOwAHhSrCk.jpeg 1344w\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"X5zxoWtZ9\",width:\"100%\",wiXcxw4O1:getLocalizedValue(\"v20\",activeLocale)??\"Automation\",Z1pD210YP:getLocalizedValue(\"v22\",activeLocale)??\"Zapier \u2022 n8n \u2022 Make\"})})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMsAwMbCA\"},motionChild:true,nodeId:\"Y0nQtawDE\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-y6moiy framer-lux5qc\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TMsAwMbCA\"},implicitPathVariables:undefined},{href:{webPageId:\"TMsAwMbCA\"},implicitPathVariables:undefined},{href:{webPageId:\"TMsAwMbCA\"},implicitPathVariables:undefined},{href:{webPageId:\"TMsAwMbCA\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1666.4+60+0+0+60.6+0+0+0+665+0+0},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+665+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+1853.4+80+0+0+60.6+0+0+0+665+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1300px)`,y:(componentViewport?.y||0)+0+0+0+1647.4+120+0+0+60.6+0+0+0+665+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qp1ulm-container\",\"data-framer-cursor\":\"1x279oj\",id:\"1qp1ulm\",nodeId:\"jq0Gepu52\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{crmGU5JBp:resolvedLinks6[2],variant:\"Pcak11bNg\"},FGJ0Q_0oo:{crmGU5JBp:resolvedLinks6[1]},XM6Il6fmT:{crmGU5JBp:resolvedLinks6[3]}},children:/*#__PURE__*/_jsx(ItemWImageCopy,{crmGU5JBp:resolvedLinks6[0],height:\"100%\",id:\"jq0Gepu52\",layoutId:\"jq0Gepu52\",mLS8rQeBa:getLocalizedValue(\"v24\",activeLocale)??\"A curated selection of digital products that fit within your budget through our exclusive plans. Simple, efficient, and direct, we pave the way for your business success.\",rFQ6HCuiQ:addImageAlt({pixelHeight:2522,pixelWidth:3618,src:\"https://framerusercontent.com/images/ZncStk6UlDdrG1xfMoSUtRUMY.png\",srcSet:\"https://framerusercontent.com/images/ZncStk6UlDdrG1xfMoSUtRUMY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZncStk6UlDdrG1xfMoSUtRUMY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZncStk6UlDdrG1xfMoSUtRUMY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZncStk6UlDdrG1xfMoSUtRUMY.png 3618w\"},\"\"),style:{maxWidth:\"100%\",width:\"100%\"},variant:\"X5zxoWtZ9\",width:\"100%\",wiXcxw4O1:getLocalizedValue(\"v23\",activeLocale)??\"Productized Services\",Z1pD210YP:getLocalizedValue(\"v25\",activeLocale)??\"Hosting Services \u2022 SaaS \u2022 Whitelabel Services\"})})})})})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-po57qo\",\"data-framer-name\":\"Projects\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mf3aba\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-115abil\",\"data-framer-name\":\"Intro Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-pxr6kf\",\"data-styles-preset\":\"eOnlskoQw\",style:{\"--framer-text-color\":\"var(--token-805b2cc7-f5f2-45e1-8fa3-1b76bb2f7659, rgb(204, 204, 204))\"},children:\"Our work\"})}),className:\"framer-1yq01cp\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-82lk3\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"Recent projects\"})}),className:\"framer-rreou5\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GTaEJ7SyH\"},implicitPathVariables:undefined},{href:{webPageId:\"GTaEJ7SyH\"},implicitPathVariables:undefined},{href:{webPageId:\"GTaEJ7SyH\"},implicitPathVariables:undefined},{href:{webPageId:\"GTaEJ7SyH\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+2645+80+0+0+0+0+170+0+74.8},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+2872+80+0+0+0+0+162+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+2872+80+0+0+0+0+162+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+2746+80+0+0+0+0+162+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4sjlkx-container\",nodeId:\"EDdqc4_pE\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{bohRFuhqj:resolvedLinks7[2],variant:\"NOegPwiSf\"},FGJ0Q_0oo:{bohRFuhqj:resolvedLinks7[1],variant:\"NOegPwiSf\"},XM6Il6fmT:{bohRFuhqj:resolvedLinks7[3]}},children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:resolvedLinks7[0],height:\"100%\",i7oFluX4k:getLocalizedValue(\"v28\",activeLocale)??\"See all projects\",id:\"EDdqc4_pE\",layoutId:\"EDdqc4_pE\",variant:\"kIxMDZ9h9\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9mzqmw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"BpnXe2wHi\",data:Work,type:\"Collection\"},limit:{type:\"LiteralValue\",value:4},select:[{collection:\"BpnXe2wHi\",name:\"MSZWmOUa4\",type:\"Identifier\"},{collection:\"BpnXe2wHi\",name:\"usvkqQZmR\",type:\"Identifier\"},{collection:\"BpnXe2wHi\",name:\"KM6vLSrCh\",type:\"Identifier\"},{collection:\"BpnXe2wHi\",name:\"HO_Dxy3Fb\",type:\"Identifier\"},{collection:\"BpnXe2wHi\",name:\"id\",type:\"Identifier\"}],where:{collection:\"BpnXe2wHi\",name:\"ioDejPs0s\",type:\"Identifier\"}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({HO_Dxy3Fb:HO_Dxy3FbBpnXe2wHi,id:idBpnXe2wHi,KM6vLSrCh:KM6vLSrChBpnXe2wHi,MSZWmOUa4:MSZWmOUa4BpnXe2wHi,usvkqQZmR:usvkqQZmRBpnXe2wHi},index)=>{MSZWmOUa4BpnXe2wHi??=\"\";usvkqQZmRBpnXe2wHi??=\"\";HO_Dxy3FbBpnXe2wHi??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`BpnXe2wHi-${idBpnXe2wHi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{HO_Dxy3Fb:HO_Dxy3FbBpnXe2wHi},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{HO_Dxy3Fb:HO_Dxy3FbBpnXe2wHi},webPageId:\"Yg0gGoq22\"},implicitPathVariables:undefined},{href:{pathVariables:{HO_Dxy3Fb:HO_Dxy3FbBpnXe2wHi},webPageId:\"Yg0gGoq22\"},implicitPathVariables:undefined},{href:{pathVariables:{HO_Dxy3Fb:HO_Dxy3FbBpnXe2wHi},webPageId:\"Yg0gGoq22\"},implicitPathVariables:undefined},{href:{pathVariables:{HO_Dxy3Fb:HO_Dxy3FbBpnXe2wHi},webPageId:\"Yg0gGoq22\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{height:474,width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1300px), 200px)`,y:(componentViewport?.y||0)+0+0+0+2645+80+0+0+368.8+0+0},FGJ0Q_0oo:{height:474,y:(componentViewport?.y||0)+0+0+0+2872+80+0+0+286+0+0},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+2872+80+0+0+286+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:480,width:`max((min(${componentViewport?.width||\"100vw\"} - 160px, 1300px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+0+0+2746+80+0+0+286+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ixuoxg-container\",\"data-framer-name\":\"Project Card\",name:\"Project Card\",nodeId:\"jVEc0hfj7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{jk7hR1PkU:resolvedLinks8[2],style:{width:\"100%\"},variant:\"u7t4xt4bR\"},FGJ0Q_0oo:{jk7hR1PkU:resolvedLinks8[1],style:{width:\"100%\"},variant:\"u7t4xt4bR\"},XM6Il6fmT:{jk7hR1PkU:resolvedLinks8[3]}},children:/*#__PURE__*/_jsx(CaseThumbnail,{belbEkdrE:toResponsiveImage(KM6vLSrChBpnXe2wHi),bHtugLMfW:usvkqQZmRBpnXe2wHi,height:\"100%\",id:\"jVEc0hfj7\",jk7hR1PkU:resolvedLinks8[0],layoutId:\"jVEc0hfj7\",name:\"Project Card\",style:{height:\"100%\",width:\"100%\"},Ty82T0JvZ:MSZWmOUa4BpnXe2wHi,variant:\"slBZ3hiPp\",width:\"100%\"})})})})})})})},idBpnXe2wHi);})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-twj4lo\",\"data-framer-name\":\"Feature\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tuew4q\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yr9qqo\",\"data-framer-name\":\"Intro Text\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1xo5nk6\",\"data-styles-preset\":\"bmgtGAtvT\",children:\"Our work\"})}),className:\"framer-1yzr9i1\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jwo2xc\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"In-house products\"})}),className:\"framer-lxawgd\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pdta0g\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzjzpg\",\"data-framer-name\":\"Feature Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+0+0+0),pixelHeight:3163,pixelWidth:4091,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png\",srcSet:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png 4091w\"}},FGJ0Q_0oo:{background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+0+0+0),pixelHeight:3163,pixelWidth:4091,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png\",srcSet:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png 4091w\"}},XM6Il6fmT:{background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+0+50.4),pixelHeight:3163,pixelWidth:4091,positionX:\"center\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 2, 1px)`,src:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png\",srcSet:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png 4091w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+0+0),pixelHeight:3163,pixelWidth:4091,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png\",srcSet:\"https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=512 512w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qvJJ7l2IuzNbIu3wu52SMdBjcfo.png 4091w\"},className:\"framer-1v2ln8v\",\"data-framer-name\":\"Img\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2f95pj\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-keqscc\",\"data-framer-name\":\"Heading\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"SaaS\"})}),className:\"framer-1rudcll\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19zkxbw\",\"data-styles-preset\":\"rVaIBWTV0\",style:{\"--framer-text-color\":\"var(--token-904c14a9-7582-43d7-a43c-85f49d580145, rgb(150, 150, 150))\"},children:\"InfoSnap\"})}),className:\"framer-1qnw6f1\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f39y6n\",\"data-framer-name\":\"Item Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A media organization platform designed for on-site operational settings, accessible from any location. Teams can easily coordinate their efforts, share photographs, and update forms.\"})}),className:\"framer-6a467x\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2j79pa\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1xo5nk6\",\"data-styles-preset\":\"bmgtGAtvT\",children:\"Target sectors\"})}),className:\"framer-1qumj9v\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nl2f9\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"p0Z6TbnUX\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1iksvp0 framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Construction\"})}),className:\"framer-gw7gzq\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"i2_ShPWCx\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tj7jm9 framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Renovation\"})}),className:\"framer-1w8831y\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"HubdCQwf6\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vc6xvw hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})}),className:\"framer-14f0jif\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"osnidatB9\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-38b7wo hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})}),className:\"framer-32h15a\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lzfygt hidden-72rtr7 hidden-lxxoli\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"hcF1JkNxQ\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vtwda9 framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})}),className:\"framer-159241l\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"ajK7Zpq5U\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-nh9ldy framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})}),className:\"framer-1g264u2\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+0+0+380+0+117.4+0+369.4},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+0+0+490+0+117.4+0+303},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+0+0+0+117.4+0+369.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+0+0+0+117.4+0+303,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yrlr8a-container\",nodeId:\"vlEaX7DH8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:\"https://www.getinfosnap.com\",height:\"100%\",i7oFluX4k:getLocalizedValue(\"v38\",activeLocale)??\"Check it out\",id:\"vlEaX7DH8\",layoutId:\"vlEaX7DH8\",variant:\"f13UjNnNs\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-paem6k\",\"data-framer-name\":\"Feature Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1amer8v\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a3jx2l\",\"data-framer-name\":\"Heading\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"B2B solution\"})}),className:\"framer-1r05j7r\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19zkxbw\",\"data-styles-preset\":\"rVaIBWTV0\",style:{\"--framer-text-color\":\"var(--token-904c14a9-7582-43d7-a43c-85f49d580145, rgb(150, 150, 150))\"},children:\"Just Read\"})}),className:\"framer-zakxim\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nty9kf\",\"data-framer-name\":\"Item Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A customizable branded product that transforms WordPress websites into native mobile applications, eliminating the headaches and expenses associated with building an application from scratch.\"})})},FGJ0Q_0oo:{children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A customizable branded product that transforms WordPress websites into native mobile applications, eliminating the headaches and expenses associated with building an application from scratch.\"})})},XM6Il6fmT:{children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A customizable branded product that transforms WordPress websites into native mobile applications, eliminating the headaches and expenses associated with building an application from scratch.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"A customizable branded product that transforms WordPress websites into native mobile applications, eliminating the headaches and expenses associated with building an application from scratch.\"})}),className:\"framer-322n4\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4sygn3\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1xo5nk6\",\"data-styles-preset\":\"bmgtGAtvT\",children:\"Target sectors\"})}),className:\"framer-13x56oc\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h0g7f7\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"gORHlzRk5\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1kjsnr7 framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Magazines\"})}),className:\"framer-cx7abb\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"R5H5ANxac\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bnbikx framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Digital Newspapers\"})}),className:\"framer-1y1gdjx\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"JXCXPcFil\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xpf9ft hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Blogs\"})}),className:\"framer-xvsfet\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"ZhzKpycns\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-7rs2gc hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Venues\"})}),className:\"framer-19ktahc\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g8z77n hidden-72rtr7 hidden-lxxoli\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"qGOqXJu68\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10zf6dm framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Blogs\"})})},XM6Il6fmT:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Blogs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})}),className:\"framer-14it6i3\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"kDzQOFz4T\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1nkg2co framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Venues\"})})},XM6Il6fmT:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Venues\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})}),className:\"framer-h37nki\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+1000.8+0+380+0+117.4+0+369.4},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+1064.4+0+490+0+117.4+0+303},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+640.8+0+0+117.4+0+369.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+594.4+0+0+117.4+0+303,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m2zkj9-container\",nodeId:\"al1SNDhYu\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:\"https://www.getjustread.com/\",height:\"100%\",i7oFluX4k:getLocalizedValue(\"v38\",activeLocale)??\"Check it out\",id:\"al1SNDhYu\",layoutId:\"al1SNDhYu\",variant:\"f13UjNnNs\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+1000.8+0+0),pixelHeight:2373,pixelWidth:3069,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg\",srcSet:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg 3069w\"}},FGJ0Q_0oo:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+1064.4+0+0),pixelHeight:2373,pixelWidth:3069,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg\",srcSet:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg 3069w\"}},XM6Il6fmT:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+640.8+50.4),pixelHeight:2373,pixelWidth:3069,positionX:\"center\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 2, 1px)`,src:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg\",srcSet:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg 3069w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+594.4+0),pixelHeight:2373,pixelWidth:3069,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg\",srcSet:\"https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jvcJqB0dHZGd60cUC1nj8qdaY.jpg 3069w\"},className:\"framer-jhn1yb\",\"data-framer-name\":\"Img\",style:{transformPerspective:1200}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s6i3o6\",\"data-framer-name\":\"Feature Top\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+2001.6+0+0),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png\",srcSet:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png 1096w\"}},FGJ0Q_0oo:{background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+2128.8+0+0),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png\",srcSet:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png 1096w\"}},XM6Il6fmT:{background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+1281.6+50.4),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 2, 1px)`,src:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png\",srcSet:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png 1096w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v31\",activeLocale)??\"Digital Solutions\",fit:\"fill\",intrinsicHeight:3163,intrinsicWidth:4091,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+1188.8+0),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png\",srcSet:\"https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=512 512w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/i4U75XKdnMXK5O5DUpLIj72NEkc.png 1096w\"},className:\"framer-5wgonl\",\"data-framer-name\":\"Img\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18d3d57\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ho2s2x\",\"data-framer-name\":\"Heading\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"Artificial Intelligence\"})}),className:\"framer-17bb7us\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19zkxbw\",\"data-styles-preset\":\"rVaIBWTV0\",style:{\"--framer-text-color\":\"var(--token-904c14a9-7582-43d7-a43c-85f49d580145, rgb(150, 150, 150))\"},children:\"RFP\"})}),className:\"framer-12ju43a\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d1bea0\",\"data-framer-name\":\"Item Wrap\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"CreateYourRFP is an AI-driven platform that simplifies the creation of Requests for Proposals (RFPs). By answering a few project-specific questions, users can generate customized RFP documents in minutes\"})}),className:\"framer-1950yej\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ua89og\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1xo5nk6\",\"data-styles-preset\":\"bmgtGAtvT\",children:\"Target sectors\"})}),className:\"framer-gyeefa\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j7qsje\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"YS4a9nKEs\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1t1xqqo framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"E-commerce\"})}),className:\"framer-157h0o3\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"rMeQLBRCc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m9w5o9 framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Healthcare\"})}),className:\"framer-1hllcmw\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"DHq7qHWvR\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fcm4fl hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Education\"})}),className:\"framer-1xpd6ow\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"vYEa97QQR\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1scleo1 hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Technology\"})}),className:\"framer-oraj6m\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r36jpb hidden-72rtr7 hidden-lxxoli\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"q8ahL7W2N\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1wd219f framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})}),className:\"framer-36kmzz\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"CG45dhuDE\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-81q98k framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})}),className:\"framer-1j6nvef\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+2001.6+0+380+0+117.4+0+369.4},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+2128.8+0+490+0+117.4+0+303},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+1281.6+0+0+117.4+0+369.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+1188.8+0+0+117.4+0+303,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tuzi4d-container\",nodeId:\"HVEGoCAdS\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:\"https://www.createyourrfp.com\",height:\"100%\",i7oFluX4k:getLocalizedValue(\"v38\",activeLocale)??\"Check it out\",id:\"HVEGoCAdS\",layoutId:\"HVEGoCAdS\",variant:\"f13UjNnNs\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106wd65\",\"data-framer-name\":\"Feature Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13crhgn\",\"data-framer-name\":\"Content Wrap\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1odzlz9\",\"data-framer-name\":\"Heading\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-199mp42\",\"data-styles-preset\":\"irIquxyD6\",children:\"Tools Suite\"})}),className:\"framer-10m00k4\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-19zkxbw\",\"data-styles-preset\":\"rVaIBWTV0\",style:{\"--framer-text-color\":\"var(--token-904c14a9-7582-43d7-a43c-85f49d580145, rgb(150, 150, 150))\"},children:\"OpDeck\"})}),className:\"framer-5w9oek\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jpv51j\",\"data-framer-name\":\"Item Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"OpDeck is a comprehensive platform offering a suite of tools designed to enhance website performance, security, and search engine optimization (SEO). It provides performance analysis, enabling users to monitor and improve aspects of their websites\"})})},FGJ0Q_0oo:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"OpDeck is a comprehensive platform offering a suite of tools designed to enhance website performance, security, and search engine optimization (SEO). It provides performance analysis, enabling users to monitor and improve aspects of their websites\"})})},XM6Il6fmT:{children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"OpDeck is a comprehensive platform offering a suite of tools designed to enhance website performance, security, and search engine optimization (SEO). It provides performance analysis, enabling users to monitor and improve aspects of their websites\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"OpDeck is a comprehensive platform offering a suite of tools designed to enhance website performance, security, and search engine optimization (SEO). It provides performance analysis, enabling users to monitor and improve aspects of their websites\"})}),className:\"framer-ql06h\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvdmkh\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1xo5nk6\",\"data-styles-preset\":\"bmgtGAtvT\",children:\"Target sectors\"})}),className:\"framer-pj9no0\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hm8tp1\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"DljJ_ktDy\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-fmg1qs framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Web Development\"})}),className:\"framer-17mv8do\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"gdTXAymO1\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1jz8nmv framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"IT Security\"})}),className:\"framer-16y0lsm\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"lsOetLAoc\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-v8cwkd hidden-10jird5 hidden-1gwsvhh framer-lux5qc\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v62\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Digital Marketing\"})}),className:\"framer-1eoecvl\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xfsi3b hidden-72rtr7 hidden-lxxoli\",children:[/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"acVSQsnBN\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vw8f0i framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Blogs\"})})},XM6Il6fmT:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Blogs\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Landscape\"})}),className:\"framer-1o57j9\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:bohRFuhqjuZI6j5QZr,motionChild:true,nodeId:\"ZB9460Krp\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1eujzjk framer-lux5qc\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Venues\"})})},XM6Il6fmT:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Venues\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-be079bad-eabd-4234-8a56-5579c7057187, rgb(0, 0, 0))\"},children:\"Mechanical\"})}),className:\"framer-14rcafb\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+3002.4+0+380+0+117.4+0+369.4},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+3193.2+0+490+0+117.4+0+303},XM6Il6fmT:{y:(componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+1922.4+0+0+117.4+0+369.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,y:(componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+1783.2+0+0+117.4+0+303,children:/*#__PURE__*/_jsx(Container,{className:\"framer-20ay9s-container\",nodeId:\"Ck3Xfs8cj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonIcon,{bohRFuhqj:\"https://opdeck.co\",height:\"100%\",i7oFluX4k:getLocalizedValue(\"v38\",activeLocale)??\"Check it out\",id:\"Ck3Xfs8cj\",layoutId:\"Ck3Xfs8cj\",variant:\"f13UjNnNs\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3667.8+50+0+0+105.4+0+3002.4+0+0),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png\",srcSet:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png 1096w\"}},FGJ0Q_0oo:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3832+40+0+0+125.4+0+3193.2+0+0),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 160px)`,src:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png\",srcSet:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png 1096w\"}},XM6Il6fmT:{background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4318+40+0+0+115.4+0+1922.4+50.4),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 200px) / 2, 1px)`,src:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png\",srcSet:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png 1096w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:getLocalizedValue(\"v47\",activeLocale)??\"Digital Products\",fit:\"fill\",intrinsicHeight:2373,intrinsicWidth:3069,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4192+70+0+0+125.4+0+1783.2+0),pixelHeight:1096,pixelWidth:1096,positionX:\"center\",positionY:\"top\",sizes:\"570px\",src:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png\",srcSet:\"https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=512 512w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mkphEnSqJTAM48I6ionS2PtvntM.png 1096w\"},className:\"framer-nr467o\",\"data-framer-name\":\"Img\",style:{transformPerspective:1200}})})]})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{y:(componentViewport?.y||0)+0+7806.4},FGJ0Q_0oo:{y:(componentViewport?.y||0)+0+8215},XM6Il6fmT:{y:(componentViewport?.y||0)+0+6996.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1187,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6725,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17j58gd-container\",nodeId:\"zzmPK7YZ0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aD0ytcUh4:{variant:\"RSos2oHJP\"},FGJ0Q_0oo:{variant:\"jbbcbpulJ\"}},children:/*#__PURE__*/_jsx(Footer,{Dc3dmWDiQ:true,height:\"100%\",id:\"zzmPK7YZ0\",layoutId:\"zzmPK7YZ0\",qkLLc4CKq:true,style:{width:\"100%\"},variant:\"gsKKaJUDB\",width:\"100%\",YG0MEbAsu:true})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SbdC8.framer-lux5qc, .framer-SbdC8 .framer-lux5qc { display: block; }\",\".framer-SbdC8.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-e16847f2-b192-48e1-a890-7bbcce11cc6e, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1410px; }\",\".framer-SbdC8 .framer-1d8ljtf-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-SbdC8 .framer-nwve3s { align-content: center; align-items: center; background-color: var(--token-e16847f2-b192-48e1-a890-7bbcce11cc6e, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-SbdC8 .framer-m6sp60 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100vh; justify-content: center; overflow: visible; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1lssu9m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-l5382l, .framer-SbdC8 .framer-exy7i1 { flex: none; height: auto; max-width: 60%; position: relative; white-space: pre-wrap; width: 701px; word-break: break-word; word-wrap: break-word; }\",\".framer-SbdC8 .framer-qn66lz-container, .framer-SbdC8 .framer-csqvot-container, .framer-SbdC8 .framer-4sjlkx-container, .framer-SbdC8 .framer-yrlr8a-container, .framer-SbdC8 .framer-1m2zkj9-container, .framer-SbdC8 .framer-1tuzi4d-container, .framer-SbdC8 .framer-20ay9s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-SbdC8 .framer-18di4cb { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1osamin-container { flex: none; height: 155px; position: relative; width: 100%; z-index: 4; }\",\".framer-SbdC8 .framer-1d61tuy { aspect-ratio: 2.6375838926174495 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 117px; }\",\".framer-SbdC8 .framer-niqufp { aspect-ratio: 0.9969230769230769 / 1; height: var(--framer-aspect-ratio-supported, 94px); overflow: visible; position: relative; width: 93px; }\",\".framer-SbdC8 .framer-fujl2q { aspect-ratio: 1.429718875502008 / 1; height: var(--framer-aspect-ratio-supported, 71px); overflow: visible; position: relative; width: 101px; }\",\".framer-SbdC8 .framer-s9vbd6 { aspect-ratio: 4.853658536585366 / 1; height: var(--framer-aspect-ratio-supported, 28px); overflow: visible; position: relative; width: 134px; }\",\".framer-SbdC8 .framer-v5ydnr { aspect-ratio: 4.642857142857143 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 153px; }\",\".framer-SbdC8 .framer-v8ffyl { aspect-ratio: 5.368421052631579 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 171px; }\",\".framer-SbdC8 .framer-1usizn { aspect-ratio: 3.5112359550561796 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 116px; }\",\".framer-SbdC8 .framer-udqj0o { aspect-ratio: 2.2458893871449925 / 1; height: var(--framer-aspect-ratio-supported, 55px); overflow: visible; position: relative; width: 124px; }\",\".framer-SbdC8 .framer-1u2yos9 { aspect-ratio: 4.559322033898305 / 1; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 150px; }\",\".framer-SbdC8 .framer-6re6jw { aspect-ratio: 2.923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 46px); overflow: visible; position: relative; width: 134px; }\",\".framer-SbdC8 .framer-rog4j { flex: none; height: 100vh; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 80px; z-index: -1; }\",\".framer-SbdC8 .framer-y2lo1q-container { bottom: -120px; flex: none; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-SbdC8 .framer-1t6tijf { align-content: center; align-items: center; background-color: var(--token-be079bad-eabd-4234-8a56-5579c7057187, #000000); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 110px 80px 110px 80px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-hef24l { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: flex-start; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SbdC8 .framer-1116ci2-container { flex: none; height: 151px; position: relative; width: 151px; z-index: 1; }\",\".framer-SbdC8 .framer-g2omui { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-SbdC8 .framer-1risx7o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1m480we, .framer-SbdC8 .framer-ys0sgy, .framer-SbdC8 .framer-1yq01cp, .framer-SbdC8 .framer-1yzr9i1, .framer-SbdC8 .framer-1rudcll, .framer-SbdC8 .framer-1qnw6f1, .framer-SbdC8 .framer-1qumj9v, .framer-SbdC8 .framer-1r05j7r, .framer-SbdC8 .framer-zakxim, .framer-SbdC8 .framer-13x56oc, .framer-SbdC8 .framer-17bb7us, .framer-SbdC8 .framer-12ju43a, .framer-SbdC8 .framer-gyeefa, .framer-SbdC8 .framer-10m00k4, .framer-SbdC8 .framer-5w9oek, .framer-SbdC8 .framer-pj9no0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SbdC8 .framer-17u7hyh { align-content: center; align-items: center; background-color: var(--token-7f27a389-b761-40a4-a5f5-959a98a47c34, #f5de0b); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 80px; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-kp25im { align-content: center; align-items: center; background-color: var(--token-2c7d0c40-26e8-40d8-9000-c8a4ae165651, #f0f0f0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 120px 80px 120px 80px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1tirvbu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-ld56ax { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-122v932 { flex: none; height: auto; max-width: 1300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-SbdC8 .framer-v4ltir { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1rdgv41 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1diw6np, .framer-SbdC8 .framer-12aqvjh, .framer-SbdC8 .framer-ztpssl, .framer-SbdC8 .framer-1fxfx94, .framer-SbdC8 .framer-1rb3f6p, .framer-SbdC8 .framer-y6moiy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-SbdC8 .framer-19iamvn-container, .framer-SbdC8 .framer-1shrcue-container, .framer-SbdC8 .framer-m2fxpe-container, .framer-SbdC8 .framer-18e83v8-container, .framer-SbdC8 .framer-1k1ismi-container, .framer-SbdC8 .framer-1qp1ulm-container { flex: none; height: auto; max-width: 1300px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-po57qo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 80px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1mf3aba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-115abil, .framer-SbdC8 .framer-yr9qqo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-82lk3, .framer-SbdC8 .framer-1jwo2xc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-rreou5, .framer-SbdC8 .framer-lxawgd { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-SbdC8 .framer-9mzqmw { display: grid; flex: none; gap: 40px; grid-auto-rows: 480px; grid-template-columns: repeat(2, minmax(200px, 1fr)); height: min-content; justify-content: start; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-ixuoxg-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-twj4lo { align-content: center; align-items: center; background-color: #f0f0f0; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 70px 0px 70px 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-tuew4q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-SbdC8 .framer-1pdta0g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 110px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1yzjzpg, .framer-SbdC8 .framer-paem6k, .framer-SbdC8 .framer-1s6i3o6, .framer-SbdC8 .framer-106wd65 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1v2ln8v, .framer-SbdC8 .framer-nr467o { aspect-ratio: 1.0687022900763359 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 533px); position: relative; width: 1px; }\",\".framer-SbdC8 .framer-2f95pj, .framer-SbdC8 .framer-1amer8v, .framer-SbdC8 .framer-18d3d57, .framer-SbdC8 .framer-13crhgn { 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; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-SbdC8 .framer-keqscc, .framer-SbdC8 .framer-1a3jx2l, .framer-SbdC8 .framer-ho2s2x, .framer-SbdC8 .framer-1odzlz9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 9px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-f39y6n, .framer-SbdC8 .framer-nty9kf, .framer-SbdC8 .framer-1d1bea0, .framer-SbdC8 .framer-1jpv51j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-6a467x, .framer-SbdC8 .framer-322n4, .framer-SbdC8 .framer-1950yej, .framer-SbdC8 .framer-ql06h { --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-SbdC8 .framer-2j79pa, .framer-SbdC8 .framer-4sygn3, .framer-SbdC8 .framer-ua89og, .framer-SbdC8 .framer-lvdmkh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1nl2f9, .framer-SbdC8 .framer-h0g7f7, .framer-SbdC8 .framer-1j7qsje, .framer-SbdC8 .framer-1hm8tp1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-SbdC8 .framer-1iksvp0, .framer-SbdC8 .framer-tj7jm9, .framer-SbdC8 .framer-vc6xvw, .framer-SbdC8 .framer-38b7wo, .framer-SbdC8 .framer-vtwda9, .framer-SbdC8 .framer-nh9ldy, .framer-SbdC8 .framer-1kjsnr7, .framer-SbdC8 .framer-bnbikx, .framer-SbdC8 .framer-1xpf9ft, .framer-SbdC8 .framer-7rs2gc, .framer-SbdC8 .framer-10zf6dm, .framer-SbdC8 .framer-1nkg2co, .framer-SbdC8 .framer-1t1xqqo, .framer-SbdC8 .framer-1m9w5o9, .framer-SbdC8 .framer-fcm4fl, .framer-SbdC8 .framer-1scleo1, .framer-SbdC8 .framer-1wd219f, .framer-SbdC8 .framer-81q98k, .framer-SbdC8 .framer-fmg1qs, .framer-SbdC8 .framer-1jz8nmv, .framer-SbdC8 .framer-v8cwkd, .framer-SbdC8 .framer-vw8f0i, .framer-SbdC8 .framer-1eujzjk { align-content: center; align-items: center; background-color: var(--token-14951491-9898-44b6-8e48-90b200ecb226, #e3e3e3); border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; border-top-left-radius: 64px; border-top-right-radius: 64px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-SbdC8 .framer-gw7gzq, .framer-SbdC8 .framer-1w8831y, .framer-SbdC8 .framer-14f0jif, .framer-SbdC8 .framer-32h15a, .framer-SbdC8 .framer-159241l, .framer-SbdC8 .framer-1g264u2, .framer-SbdC8 .framer-cx7abb, .framer-SbdC8 .framer-1y1gdjx, .framer-SbdC8 .framer-xvsfet, .framer-SbdC8 .framer-19ktahc, .framer-SbdC8 .framer-14it6i3, .framer-SbdC8 .framer-h37nki, .framer-SbdC8 .framer-157h0o3, .framer-SbdC8 .framer-1hllcmw, .framer-SbdC8 .framer-1xpd6ow, .framer-SbdC8 .framer-oraj6m, .framer-SbdC8 .framer-36kmzz, .framer-SbdC8 .framer-1j6nvef, .framer-SbdC8 .framer-17mv8do, .framer-SbdC8 .framer-16y0lsm, .framer-SbdC8 .framer-1eoecvl, .framer-SbdC8 .framer-1o57j9, .framer-SbdC8 .framer-14rcafb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-SbdC8 .framer-1lzfygt, .framer-SbdC8 .framer-g8z77n, .framer-SbdC8 .framer-r36jpb, .framer-SbdC8 .framer-xfsi3b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 512px; }\",\".framer-SbdC8 .framer-jhn1yb, .framer-SbdC8 .framer-5wgonl { aspect-ratio: 1.0687022900763359 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 534px); position: relative; width: 1px; }\",\".framer-SbdC8 .framer-17j58gd-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 768px) and (max-width: 1137px) { .framer-SbdC8.framer-72rtr7 { width: 768px; } .framer-SbdC8 .framer-m6sp60 { order: 0; padding: 0px 60px 0px 60px; } .framer-SbdC8 .framer-l5382l, .framer-SbdC8 .framer-exy7i1 { max-width: 66%; } .framer-SbdC8 .framer-18di4cb { height: 170px; order: 1; } .framer-SbdC8 .framer-1osamin-container { height: 200px; } .framer-SbdC8 .framer-rog4j { order: 2; } .framer-SbdC8 .framer-y2lo1q-container { right: 0px; width: unset; } .framer-SbdC8 .framer-1t6tijf { order: 3; } .framer-SbdC8 .framer-hef24l { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; justify-content: center; } .framer-SbdC8 .framer-1116ci2-container { order: 0; } .framer-SbdC8 .framer-g2omui, .framer-SbdC8 .framer-1amer8v, .framer-SbdC8 .framer-13crhgn { flex: none; order: 1; width: 100%; } .framer-SbdC8 .framer-17u7hyh { order: 4; } .framer-SbdC8 .framer-kp25im { order: 5; padding: 80px; } .framer-SbdC8 .framer-po57qo { order: 6; } .framer-SbdC8 .framer-9mzqmw { grid-auto-rows: min-content; } .framer-SbdC8 .framer-ixuoxg-container { height: auto; } .framer-SbdC8 .framer-twj4lo { order: 7; padding: 40px 80px 50px 80px; } .framer-SbdC8 .framer-tuew4q { width: 100%; } .framer-SbdC8 .framer-1pdta0g { align-content: flex-start; align-items: flex-start; gap: 90px; } .framer-SbdC8 .framer-1yzjzpg, .framer-SbdC8 .framer-paem6k, .framer-SbdC8 .framer-1s6i3o6, .framer-SbdC8 .framer-106wd65 { flex-direction: column; gap: 40px; } .framer-SbdC8 .framer-1v2ln8v, .framer-SbdC8 .framer-5wgonl { aspect-ratio: unset; flex: none; height: 450px; width: 100%; } .framer-SbdC8 .framer-2f95pj, .framer-SbdC8 .framer-18d3d57 { flex: none; width: 100%; } .framer-SbdC8 .framer-jhn1yb, .framer-SbdC8 .framer-nr467o { aspect-ratio: unset; flex: none; height: 450px; order: 0; width: 100%; }}\",\"@media (max-width: 767px) { .framer-SbdC8.framer-72rtr7 { width: 390px; } .framer-SbdC8 .framer-m6sp60 { padding: 0px 10px 0px 10px; } .framer-SbdC8 .framer-l5382l, .framer-SbdC8 .framer-exy7i1 { max-width: 90%; } .framer-SbdC8 .framer-18di4cb { height: 150px; } .framer-SbdC8 .framer-1osamin-container { height: 200px; } .framer-SbdC8 .framer-1t6tijf, .framer-SbdC8 .framer-17u7hyh { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; justify-content: flex-start; padding: 60px 20px 60px 20px; } .framer-SbdC8 .framer-hef24l { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 40px; justify-content: center; width: 100%; } .framer-SbdC8 .framer-1116ci2-container { height: 84px; order: 0; width: 84px; } .framer-SbdC8 .framer-g2omui, .framer-SbdC8 .framer-1amer8v, .framer-SbdC8 .framer-13crhgn { flex: none; order: 1; width: 100%; } .framer-SbdC8 .framer-kp25im { align-content: flex-start; align-items: flex-start; gap: 20px; justify-content: flex-start; padding: 60px 20px 60px 20px; } .framer-SbdC8 .framer-po57qo { padding: 80px 20px 60px 20px; } .framer-SbdC8 .framer-115abil { gap: 8px; } .framer-SbdC8 .framer-82lk3 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 30px; } .framer-SbdC8 .framer-rreou5, .framer-SbdC8 .framer-2f95pj, .framer-SbdC8 .framer-18d3d57 { flex: none; width: 100%; } .framer-SbdC8 .framer-9mzqmw { grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-SbdC8 .framer-ixuoxg-container { height: auto; } .framer-SbdC8 .framer-twj4lo { padding: 50px 20px 50px 20px; } .framer-SbdC8 .framer-tuew4q { gap: 30px; width: 100%; } .framer-SbdC8 .framer-1pdta0g { align-content: flex-start; align-items: flex-start; gap: 70px; } .framer-SbdC8 .framer-1yzjzpg, .framer-SbdC8 .framer-paem6k, .framer-SbdC8 .framer-1s6i3o6, .framer-SbdC8 .framer-106wd65 { flex-direction: column; gap: 20px; } .framer-SbdC8 .framer-1v2ln8v, .framer-SbdC8 .framer-5wgonl { aspect-ratio: unset; flex: none; height: 360px; width: 100%; } .framer-SbdC8 .framer-jhn1yb, .framer-SbdC8 .framer-nr467o { aspect-ratio: unset; flex: none; height: 360px; order: 0; width: 100%; }}\",\"@media (min-width: 1138px) and (max-width: 1409px) { .framer-SbdC8.framer-72rtr7 { width: 1138px; } .framer-SbdC8 .framer-l5382l, .framer-SbdC8 .framer-exy7i1 { max-width: 66%; } .framer-SbdC8 .framer-18di4cb { height: 170px; } .framer-SbdC8 .framer-1osamin-container { height: 200px; } .framer-SbdC8 .framer-hef24l { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; justify-content: center; } .framer-SbdC8 .framer-1116ci2-container, .framer-SbdC8 .framer-1amer8v, .framer-SbdC8 .framer-13crhgn { order: 0; } .framer-SbdC8 .framer-g2omui { flex: none; order: 1; width: 100%; } .framer-SbdC8 .framer-kp25im { padding: 80px; } .framer-SbdC8 .framer-twj4lo { padding: 40px 80px 50px 80px; } .framer-SbdC8 .framer-tuew4q { gap: 40px; width: 100%; } .framer-SbdC8 .framer-1pdta0g { align-content: flex-start; align-items: flex-start; gap: 90px; } .framer-SbdC8 .framer-1yzjzpg, .framer-SbdC8 .framer-paem6k, .framer-SbdC8 .framer-1s6i3o6, .framer-SbdC8 .framer-106wd65 { gap: 40px; } .framer-SbdC8 .framer-1v2ln8v, .framer-SbdC8 .framer-5wgonl { aspect-ratio: unset; height: 450px; } .framer-SbdC8 .framer-1nl2f9, .framer-SbdC8 .framer-h0g7f7, .framer-SbdC8 .framer-1j7qsje, .framer-SbdC8 .framer-1hm8tp1 { align-content: flex-start; align-items: flex-start; width: 512px; } .framer-SbdC8 .framer-jhn1yb, .framer-SbdC8 .framer-nr467o { aspect-ratio: unset; height: 450px; order: 1; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8032.5\n * @framerIntrinsicWidth 1410\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"FGJ0Q_0oo\":{\"layout\":[\"fixed\",\"auto\"]},\"aD0ytcUh4\":{\"layout\":[\"fixed\",\"auto\"]},\"XM6Il6fmT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"N05Sqk3wG\":{\"pattern\":\":N05Sqk3wG\",\"name\":\"feature\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-SbdC8\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8032.5,width:1410};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v19/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Alexandria\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/alexandria/v5/UMBCrPdDqW66y0Y2usFeQCH18mulUxBvI9qlTqbCHJ8BRq0b.woff2\",weight:\"300\"}]},...NavigationFonts,...ButtonIconFonts,...TickerFonts,...EmbedFonts,...ArcFonts,...ItemWImageCopyFonts,...CaseThumbnailFonts,...FooterFonts,...CustomCursorYellowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8032.5\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1410\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FGJ0Q_0oo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aD0ytcUh4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XM6Il6fmT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"N05Sqk3wG\\\":{\\\"pattern\\\":\\\":N05Sqk3wG\\\",\\\"name\\\":\\\"feature\\\"}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "mrCAQkB,SAARA,EAAuB,CAAC,KAAAC,EAAK,IAAAC,EAAI,KAAAC,EAAK,MAAAC,EAAM,CAAC,CAAC,EAAE,CAAC,OAAGH,IAAO,OAAOC,EAAyBG,EAAKC,GAAS,CAAC,IAAIJ,EAAI,MAAME,CAAK,CAAC,EAAMH,IAAO,QAAQE,EAA0BE,EAAKE,GAAU,CAAC,KAAKJ,EAAK,MAAMC,CAAK,CAAC,EAAuBC,EAAKG,GAAa,CAAC,MAAMJ,CAAK,CAAC,CAAE,CAACK,GAAoBT,EAAM,CAAC,KAAK,CAAC,KAAKU,EAAY,KAAK,aAAa,MAAM,wBAAwB,GAAK,QAAQ,CAAC,MAAM,MAAM,EAAE,aAAa,CAAC,MAAM,MAAM,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,YAAY,8CAAyC,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,KAAM,CAAC,EAAE,KAAK,CAAC,MAAM,OAAO,KAAKD,EAAY,OAAO,gBAAgB,GAAK,OAAOC,EAAM,CAAC,OAAOA,EAAM,OAAO,MAAO,CAAC,CAAC,CAAC,EAAE,SAASH,GAAa,CAAC,MAAAJ,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGS,GAAgB,SAAS,SAAS,GAAGT,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,kEAAkE,CAAC,CAAC,CAAC,CAAE,CAAC,SAASR,GAAS,CAAC,IAAAJ,EAAI,MAAAE,CAAK,EAAE,CAAC,IAAMW,EAAc,CAACX,EAAM,OAC1/B,cAAc,KAAKF,CAAG,IAAGA,EAAI,WAAWA,GAAK,IAAMc,EAASC,GAAc,EAEzE,CAACC,EAAMC,CAAQ,EAAEC,GAASJ,EAAS,OAAU,EAAK,EAG0c,GAHxcK,EAAU,IAAI,CAEvE,GAAG,CAACL,EAAS,OACb,IAAIM,EAAa,GAAKH,EAAS,MAAS,EAAE,eAAeI,GAAM,CAAC,IAAMC,EAAS,MAAM,MAAM,yDAAyD,mBAAmBtB,CAAG,CAAC,EAAE,GAAGsB,EAAS,QAAQ,IAAI,CAAC,GAAK,CAAC,UAAAC,CAAS,EAAE,MAAMD,EAAS,KAAK,EAAKF,GAAcH,EAASM,CAAS,CAAG,KAAK,CAAC,IAAMC,EAAQ,MAAMF,EAAS,KAAK,EAAE,QAAQ,MAAME,CAAO,EAAE,IAAMC,EAAM,IAAI,MAAM,kCAA6B,EAAER,EAASQ,CAAK,CAAE,CAAC,CAAC,OAAAJ,EAAK,EAAE,MAAMI,GAAO,CAAC,QAAQ,MAAMA,CAAK,EAAER,EAASQ,CAAK,CAAE,CAAC,EAAQ,IAAI,CAACL,EAAa,EAAM,CAAE,EAAE,CAACpB,CAAG,CAAC,EAAKc,GAAUD,EAAe,OAAoBV,EAAKuB,EAAa,CAAC,QAAQ,yCAAyC,MAAMxB,CAAK,CAAC,EAAG,GAAG,CAACF,EAAI,WAAW,UAAU,EAAG,OAAoBG,EAAKuB,EAAa,CAAC,QAAQ,wBAAwB,MAAMxB,CAAK,CAAC,EAAG,GAAGc,IAAQ,OAAW,OAAoBb,EAAKwB,GAAiB,CAAC,CAAC,EAAG,GAAGX,aAAiB,MAAO,OAAoBb,EAAKuB,EAAa,CAAC,QAAQV,EAAM,QAAQ,MAAMd,CAAK,CAAC,EAAG,GAAGc,IAAQ,GAAK,CAAC,IAAMQ,EAAQ,oBAAexB,CAAG,uCAAuC,OAAoBG,EAAKuB,EAAa,CAAC,QAAQF,EAAQ,MAAMtB,CAAK,CAAC,CAAE,CAAC,OAAoBC,EAAK,SAAS,CAAC,IAAIH,EAAI,MAAM,CAAC,GAAG4B,GAAY,GAAG1B,CAAK,EAAE,QAAQ,OACvpC,cAAcY,EAAS,MAAM,OAAO,eAAe,cAAc,QAAQe,GAAWf,CAAQ,CAAC,CAAC,CAAE,CAAC,IAAMc,GAAY,CAAC,MAAM,OAAO,OAAO,OAAO,OAAO,MAAM,EAAE,SAASC,GAAWf,EAAS,CAAC,IAAMgB,EAAO,CAAC,oBAAoB,eAAe,EAAE,OAAIhB,GAAUgB,EAAO,KAAK,kBAAkB,cAAc,eAAe,yBAAyB,qBAAqB,eAAe,iCAAiC,qBAAqB,0CAA0C,yCAAyC,EAAUA,EAAO,KAAK,GAAG,CAAE,CAAC,SAASzB,GAAU,CAAC,KAAAJ,EAAK,GAAGQ,CAAK,EAAE,CAA4C,GAA3BR,EAAK,SAAS,YAAW,EAAe,CAAC,IAAM8B,EAAgB9B,EAAK,SAAS,kBAAkB,EAAQ+B,EAAW/B,EAAK,SAAS,8BAA8B,EAAE,OAAG8B,GAAiBC,EAAgC7B,EAAK8B,GAAqB,CAAC,KAAKhC,EAAK,GAAGQ,CAAK,CAAC,EAAuBN,EAAK+B,GAAsB,CAAC,KAAKjC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,OAAoBN,EAAKgC,GAAwB,CAAC,KAAKlC,EAAK,GAAGQ,CAAK,CAAC,CAAE,CAAC,SAASyB,GAAsB,CAAC,KAAAjC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAO,CAACC,EAAaC,CAAe,EAAErB,GAAS,CAAC,EAC/kCC,EAAU,IAAI,CAAC,IAAIqB,EAAa,IAAMC,GAAcD,EAAaJ,EAAI,WAAW,MAAMI,IAAe,OAAO,OAAOA,EAAa,cAAc,SAASE,EAAcC,EAAM,CAAC,GAAGA,EAAM,SAASF,EAAa,OAAO,IAAMG,EAAKD,EAAM,KAAK,GAAG,OAAOC,GAAO,UAAUA,IAAO,KAAK,OAAO,IAAMC,GAAOD,EAAK,YAAe,OAAOC,IAAS,UAAgBN,EAAgBM,EAAM,CAAE,CAAC,OAAAC,EAAO,iBAAiB,UAAUJ,CAAa,EAE7WD,GAAa,YAAY,iBAAiB,GAAG,EAAQ,IAAI,CAACK,EAAO,oBAAoB,UAAUJ,CAAa,CAAE,CAAE,EAAE,CAAC,CAAC,EAGtK,IAAMK,EAAO;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,UAqCH9C,CAAI;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EA6BN+C,EAAa,CAAC,GAAGpB,GAAY,GAAG1B,CAAK,EAAoC,MAAd,CAACA,EAAM,SAAyB8C,EAAa,OAAOV,EAAa,MAA0BnC,EAAK,SAAS,CAAC,IAAIiC,EAAI,MAAMY,EAAa,OAAOD,CAAM,CAAC,CAAE,CAAC,SAASd,GAAqB,CAAC,KAAAhC,EAAK,MAAAC,CAAK,EAAE,CAAC,IAAMkC,EAAIC,EAAO,EAAE,OAAAlB,EAAU,IAAI,CAAC,IAAM8B,EAAIb,EAAI,QAAQ,GAAIa,EAAW,OAAAA,EAAI,UAAUhD,EAAKiD,GAAeD,CAAG,EAAQ,IAAI,CAACA,EAAI,UAAU,EAAG,CAAE,EAAE,CAAChD,CAAI,CAAC,EAAsBE,EAAK,MAAM,CAAC,IAAIiC,EAAI,MAAM,CAAC,GAAGe,GAAU,GAAGjD,CAAK,CAAC,CAAC,CAAE,CAAC,SAASiC,GAAwB,CAAC,KAAAlC,EAAK,MAAAC,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,MAAM,CAAC,GAAGgD,GAAU,GAAGjD,CAAK,EAAE,wBAAwB,CAAC,OAAOD,CAAI,CAAC,CAAC,CAAE,CAAC,IAAMkD,GAAU,CAAC,MAAM,OAAO,OAAO,OAAO,QAAQ,OAAO,cAAc,SAAS,eAAe,SAAS,WAAW,QAAQ,EAEvvB,SAASD,GAAeE,EAAK,CAAC,GAAGA,aAAgB,SAASA,EAAK,UAAU,SAAS,CAAC,IAAMC,EAAO,SAAS,cAAc,QAAQ,EAAEA,EAAO,KAAKD,EAAK,UAAU,OAAS,CAAC,KAAAE,EAAK,MAAAC,CAAK,IAAIH,EAAK,WAAYC,EAAO,aAAaC,EAAKC,CAAK,EAAGH,EAAK,cAAc,aAAaC,EAAOD,CAAI,CAAE,KAAM,SAAUI,KAASJ,EAAK,WAAYF,GAAeM,CAAK,CAAI,CACrV,SAAS7B,IAAkB,CAAC,OAAoBxB,EAAK,MAAM,CAAC,UAAU,wCAAwC,MAAM,CAAC,GAAGsD,GAAgB,SAAS,QAAQ,EAAE,SAAsBtD,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAAS,eAAU,CAAC,CAAC,CAAC,CAAE,CAAC,SAASc,EAAa,CAAC,QAAAF,EAAQ,MAAAtB,CAAK,EAAE,CAAC,OAAoBC,EAAK,MAAM,CAAC,UAAU,oCAAoC,MAAM,CAAC,UAAUO,GAAaR,CAAK,EAAE,GAAGuD,GAAgB,SAAS,SAAS,GAAGvD,CAAK,EAAE,SAAsBC,EAAK,MAAM,CAAC,MAAMS,GAAgB,SAASY,CAAO,CAAC,CAAC,CAAC,CAAE,CAAC,IAAMZ,GAAgB,CAAC,UAAU,SAAS,SAAS,GAAG,EACzjB,SAASF,GAAaR,EAAM,CAAmC,GAAd,CAACA,EAAM,OAAwB,MAAO,IAAI,CC1F7D,IAAMwD,GAAiB,CAAC,UAAU,IAAIC,GAAU,IAAI,OAAO,4BAAkB,CAAC,CAAC,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAO,KAAK,EAAEF,CAAG,EAAE,GAAGG,EAAM,OAAOA,CAAM,CAACF,EAAOA,EAAO,QAAS,CAAC,CAAC,SAASG,GAAQH,EAAO,CAAC,IAAMI,EAAS,CAAC,EAAE,KAAMJ,GAAO,CAAC,IAAMC,EAAOL,GAAiBI,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMI,EAAQJ,EAAO,QAAQ,EAAKI,GAAQD,EAAS,KAAKC,CAAO,CAAE,CAACL,EAAOA,EAAO,QAAS,CAAC,GAAGI,EAAS,OAAO,EAAE,OAAO,QAAQ,IAAIA,CAAQ,CAAE,CAAQ,SAASE,GAA0BN,EAAO,CAAC,IAAMO,EAAeJ,GAAQH,CAAM,EAAE,GAAGO,EAAe,MAAMA,CAAe,CCA4xC,IAAMC,GAAgBC,EAASC,EAAU,EAAQC,EAAeC,EAAOC,CAAQ,EAAQC,GAAgBL,EAASM,CAAU,EAAQC,GAAgBJ,EAAOK,CAAS,EAAQC,GAAYT,EAASU,EAAM,EAAQC,GAAWX,EAASY,CAAK,EAAQC,GAASb,EAASc,EAAG,EAAQC,EAAgBZ,EAAOa,EAAO,GAAG,EAAQC,GAAoBjB,EAASkB,CAAc,EAAQC,GAAmBnB,EAASoB,EAAa,EAAQC,EAAYlB,EAAOmB,CAAK,EAAQC,GAAYvB,EAASwB,EAAM,EAAQC,GAAwBzB,EAAS0B,EAAkB,EAAQC,GAAY,CAAC,UAAU,qBAAqB,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,6CAA6C,EAAQC,GAAU,IAAI,OAAO,SAAW,IAAkBC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,EAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,EAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,EAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,GAAG,EAAE,CAAC,EAAQC,GAAY,CAAC,MAAM,GAAG,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWN,EAAY,EAAE,EAAE,EAAE,CAAC,EAAQO,EAAY,CAAC,MAAM,EAAE,SAAS,IAAI,KAAK,CAAC,IAAI,EAAE,EAAE,CAAC,EAAE,KAAK,OAAO,EAAQC,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,EAAY,EAAE,GAAG,EAAE,CAAC,EAAQE,EAAY,CAACC,EAAMC,IAAM,CAAC,GAAG,GAACD,GAAO,OAAOA,GAAQ,UAAkB,MAAM,CAAC,GAAGA,EAAM,IAAAC,CAAG,CAAE,EAAQC,GAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,CAAC,MAAAC,EAAM,SAAAC,EAAS,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAKC,GAAaJ,CAAK,EAAE,OAAOE,EAASC,CAAI,CAAE,EAAQE,EAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,IAAI,EAAE,CAAC,EAAQC,EAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAU,CAAC,CAAC,MAAAV,CAAK,IAAoBW,GAAoB,EAAqB,KAAyBC,EAAK,QAAQ,CAAC,wBAAwB,CAAC,OAAOZ,CAAK,EAAE,yBAAyB,EAAE,CAAC,EAAUa,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,QAAQL,GAAwBK,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAO,CAAC,UAAUtC,GAAmB,QAAQ,WAAW,EAAQuC,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,mBAAAC,EAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,mBAAAC,GAAmB,YAAAC,GAAY,mBAAAC,EAAmB,GAAGC,EAAS,EAAE7B,GAASI,CAAK,EAAQ0B,GAAeC,GAAQ,IAAID,GAAiB,OAAUhB,CAAY,EAAE,CAAC,OAAUA,CAAY,CAAC,EAAEkB,GAAYF,EAAQ,EAAE,GAAK,CAACG,EAAYC,EAAmB,EAAEC,GAA8Bb,EAAQtD,GAAY,EAAK,EAAQoE,GAAe,OAAgKC,GAAkBC,GAAGpE,GAAkB,GAAjK,CAAakD,GAAuBA,GAAuBA,GAAuBA,GAAuBA,EAAS,CAAuE,EAAEmB,GAA0BzB,CAAY,EAAE,IAAM0B,GAAOC,GAAU,EAAQC,GAAUC,GAAkB,WAAW,EAAQC,GAAWlC,EAAO,IAAI,EAAQmC,EAAY,IAAS5E,GAAU,EAAiB,EAAC,YAAY,WAAW,EAAE,SAASgE,CAAW,EAAtD,GAAyFa,EAAa,IAAQ,IAAC7E,GAAU,GAAiB,CAAC,YAAY,WAAW,EAAE,SAASgE,CAAW,GAA6B,OAAAc,GAAiB,CAAC,UAAU1C,GAAO,UAAU,CAAC,GAAGA,GAAO,QAAQ,WAAW,CAAC,CAAC,EAAsBP,EAAKkD,GAA0B,SAAS,CAAC,MAAM,CAAC,iBAAiB,YAAY,kBAAA7E,EAAiB,EAAE,SAAsB8E,EAAMC,GAAY,CAAC,GAAG7B,GAAUT,EAAgB,SAAS,CAAcd,EAAKF,GAAU,CAAC,MAAM,kGAAkG,CAAC,EAAeqD,EAAM5F,EAAO,IAAI,CAAC,GAAGwE,GAAU,UAAUS,GAAGD,GAAkB,gBAAgBjB,CAAS,EAAE,qBAAqB,UAAU,IAAIT,EAAW,MAAM,CAAC,GAAGQ,CAAK,EAAE,SAAS,CAAcrB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,MAAMlC,GAAmB,OAAO,QAAQ,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,aAAa,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKxD,GAAW,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,MAAM,CAAC,MAAM,MAAM,EAAE,UAAU,GAAK,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe2G,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,SAAS,CAAcnD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,SAAsBmD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcnD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,KAAKvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,MAAM,EAAE,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,gBAAgB,CAAC,CAAC,EAAE,SAAsBA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAW8B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAS+E,EAAkB,KAAKvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,2CAA2C,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAW8B,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAS+E,EAAkB,KAAKvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,oCAAoC,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B1D,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,KAAK,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,EAAE,EAAE,MAAM,GAAG,MAAM,SAAsBnB,EAAKlD,GAAgB,CAAC,kBAAkB,CAAC,WAAW4B,EAAW,EAAE,sBAAsB,GAAK,gBAAgBD,GAAW,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBqB,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUuB,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAc,CAAC,CAAC,CAAC,EAAE,SAAsB1D,EAAKnD,EAAW,CAAC,UAAU6G,EAAc,CAAC,EAAE,OAAO,OAAO,UAAUH,EAAkB,KAAKvC,CAAY,GAAG,4BAA4B,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,IAAI,EAAE,CAAC,EAAE,SAAsBnC,EAAK/C,GAAO,CAAC,UAAU,SAAS,UAAU,OAAO,YAAY,CAAC,UAAU,EAAE,YAAY,GAAM,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,IAAI,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAc+C,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,YAAY,IAAI,OAAO,gBAAgB,KAAK,eAAe,MAAM,YAAY,IAAI,WAAW,IAAI,IAAI,mEAAmE,EAAE,UAAU,iBAAiB,mBAAmB,OAAO,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,iBAAiB,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,kBAAkB,IAAI,OAAO,gBAAgB,MAAM,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,GAAG,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,aAAa,IAAI,OAAO,gBAAgB,GAAG,eAAe,MAAM,YAAY,GAAG,WAAW,IAAI,IAAI,sEAAsE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,eAAe,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,GAAG,WAAW,IAAI,IAAI,oEAAoE,EAAE,UAAU,gBAAgB,mBAAmB,eAAe,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,cAAc,IAAI,OAAO,gBAAgB,IAAI,eAAe,KAAK,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,8BAA8B,IAAI,OAAO,gBAAgB,IAAI,eAAe,OAAO,YAAY,KAAK,WAAW,KAAK,MAAM,QAAQ,IAAI,0FAA0F,OAAO,oWAAoW,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,gBAAgB,IAAI,OAAO,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,yFAAyF,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,CAAC,EAAemC,EAAKnC,EAAM,CAAC,WAAW,CAAC,IAAI,0BAA0B,IAAI,OAAO,gBAAgB,KAAK,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,WAAW,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAK,MAAM,CAAC,UAAU,eAAe,mBAAmB,aAAa,SAAsBA,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKjD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,OAAO,iBAAiB,GAAK,KAAK,OAAO,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAK7C,EAAM,CAAC,OAAO,OAAO,KAAK;AAAA,oGAA+M,GAAG,YAAY,SAAS,YAAY,KAAK,OAAO,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,OAAO,IAAI,+MAA8M,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe6C,EAAK1C,EAAgB,CAAC,kBAAkB,CAAC,WAAWiB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBK,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBsE,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAKqD,EAA0B,CAAC,SAAsBrD,EAAKlD,GAAgB,CAAC,sCAAsC,GAAK,2BAA2B,CAAC,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,KAAK,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,CAAC,OAAO,CAAC,QAAQ,EAAE,OAAO,IAAI,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,2BAA2B,WAAW,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiB,GAAK,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBkD,EAAK3C,GAAI,CAAC,kBAAkB,SAAS,QAAQ,GAAM,gBAAgB,EAAE,WAAW,IAAI,aAAa,MAAM,MAAM,wEAAwE,eAAe,EAAE,KAAK,GAAM,KAAK,CAAC,WAAW,qDAAqD,SAAS,OAAO,UAAU,SAAS,WAAW,IAAI,cAAc,SAAS,WAAW,KAAK,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,OAAO,GAAK,YAAY,EAAE,MAAM,CAAC,EAAE,YAAY,EAAE,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,KAAK,0BAAqB,KAAK,SAAS,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe8F,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcnD,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,KAAKvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,qEAAqE,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,KAAKvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,oJAAoJ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASE,GAA6B3D,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,IAAI,EAAE,KAAK,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,IAAI,EAAE,EAAE,MAAM,SAAsBnB,EAAKlD,GAAgB,CAAC,kBAAkB,CAAC,WAAWyB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAU,eAAeE,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,0BAA0B,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBwB,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwB,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3D,EAAKnD,EAAW,CAAC,UAAU8G,EAAe,CAAC,EAAE,OAAO,OAAO,UAAUJ,EAAkB,KAAKvC,CAAY,GAAG,gBAAgB,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK1C,EAAgB,CAAC,kBAAkB,CAAC,WAAWiB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBK,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,EAAemB,EAAK1C,EAAgB,CAAC,kBAAkB,CAAC,WAAWiB,CAAW,EAAE,sBAAsB,GAAK,gBAAgBK,GAAW,eAAeC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,iBAAiB,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAsBsE,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcnD,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAsBA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,KAAKvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,4BAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBmD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5D,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B7D,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU0B,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB7D,EAAKvC,EAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8F,EAAkB,KAAKvC,CAAY,GAAG,iKAAiK,UAAUhC,EAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,EAAE,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAkB,KAAKvC,CAAY,GAAG,0BAA0B,UAAUuC,EAAkB,MAAMvC,CAAY,GAAG,gFAAuD,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK4D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5D,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B9D,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU2B,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB9D,EAAKvC,EAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8F,EAAkB,MAAMvC,CAAY,GAAG,oKAAoK,UAAUhC,EAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,EAAE,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAkB,MAAMvC,CAAY,GAAG,WAAW,UAAUuC,EAAkB,MAAMvC,CAAY,GAAG,iEAAwC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK4D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,QAAQ,YAAY,SAAsB5D,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B/D,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,0BAA0B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU4B,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsB/D,EAAKvC,EAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8F,EAAkB,MAAMvC,CAAY,GAAG,oKAAoK,UAAUhC,EAAY,CAAC,YAAY,IAAI,WAAW,IAAI,IAAI,sEAAsE,OAAO,qKAAqK,EAAE,EAAE,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAkB,MAAMvC,CAAY,GAAG,aAAa,UAAUuC,EAAkB,MAAMvC,CAAY,GAAG,gGAAuE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK4D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsB5D,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASO,GAA6BhE,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,GAAG,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU6B,EAAe,CAAC,EAAE,QAAQ,WAAW,CAAC,EAAE,SAAsBhE,EAAKvC,EAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8F,EAAkB,MAAMvC,CAAY,GAAG,mKAAmK,UAAUhC,EAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,sEAAsE,OAAO,gWAAgW,EAAE,EAAE,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAkB,MAAMvC,CAAY,GAAG,0BAA0B,UAAUuC,EAAkB,MAAMvC,CAAY,GAAG,sGAA6E,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK4D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsB5D,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKvC,EAAe,CAAC,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU8F,EAAkB,MAAMvC,CAAY,GAAG,gLAAgL,UAAUhC,EAAY,CAAC,YAAY,IAAI,WAAW,KAAK,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,EAAE,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAkB,MAAMvC,CAAY,GAAG,aAAa,UAAUuC,EAAkB,MAAMvC,CAAY,GAAG,+BAAqB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK4D,EAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,SAAsB5D,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASQ,GAA6BjE,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,MAAM,OAAOhB,GAAmB,OAAO,OAAO,mBAAmB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,OAAOlC,GAAmB,OAAO,OAAO,oBAAoB,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,IAAI,EAAE,EAAE,KAAK,EAAE,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,qBAAqB,UAAU,GAAG,UAAU,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU8B,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBjE,EAAKvC,EAAe,CAAC,UAAUwG,EAAe,CAAC,EAAE,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAUV,EAAkB,MAAMvC,CAAY,GAAG,6KAA6K,UAAUhC,EAAY,CAAC,YAAY,KAAK,WAAW,KAAK,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,EAAE,EAAE,MAAM,CAAC,SAAS,OAAO,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAUuE,EAAkB,MAAMvC,CAAY,GAAG,uBAAuB,UAAUuC,EAAkB,MAAMvC,CAAY,GAAG,yDAA+C,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,SAAsBmD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,eAAe,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASS,GAA6BlE,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,EAAE,EAAE,IAAI,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAU+B,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsBlE,EAAKnD,EAAW,CAAC,UAAUqH,EAAe,CAAC,EAAE,OAAO,OAAO,UAAUX,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAK,MAAM,CAAC,UAAU,gBAAgB,SAAsBA,EAAKmE,GAAmB,CAAC,SAAsBnE,EAAKX,GAAU,CAAC,MAAM,CAAC,KAAK,CAAC,MAAM,YAAY,KAAK+E,GAAK,KAAK,YAAY,EAAE,MAAM,CAAC,KAAK,eAAe,MAAM,CAAC,EAAE,OAAO,CAAC,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,KAAK,KAAK,YAAY,CAAC,EAAE,MAAM,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,CAAC,EAAE,SAAS,CAACC,EAAWC,GAAeC,KAAwBvE,EAAKwE,GAAU,CAAC,SAASH,GAAY,IAAI,CAAC,CAAC,UAAUzC,EAAmB,GAAGC,GAAY,UAAUF,GAAmB,UAAUF,GAAmB,UAAUC,EAAkB,EAAE+C,MAAShD,KAAqB,GAAGC,KAAqB,GAAGE,IAAqB,GAAuB5B,EAAKoD,GAAY,CAAC,GAAG,aAAavB,EAAW,GAAG,SAAsB7B,EAAK0E,GAAqB,SAAS,CAAC,MAAM,CAAC,UAAU9C,CAAkB,EAAE,SAAsB5B,EAAKyD,EAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,UAAU7B,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,cAAc,CAAC,UAAUA,CAAkB,EAAE,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAAS+C,GAA6B3E,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,OAAO,IAAI,MAAM,WAAWhB,GAAmB,OAAO,OAAO,2BAA2B,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,CAAC,EAAE,UAAU,CAAC,OAAO,IAAI,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,CAAC,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,IAAI,MAAM,YAAYlC,GAAmB,OAAO,OAAO,wCAAwC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,IAAI,EAAE,EAAE,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,0BAA0B,mBAAmB,eAAe,KAAK,eAAe,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,UAAUwC,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,EAAE,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,WAAW,EAAE,UAAU,CAAC,UAAUA,EAAe,CAAC,CAAC,CAAC,EAAE,SAAsB3E,EAAKrC,GAAc,CAAC,UAAUwB,GAAkBwC,EAAkB,EAAE,UAAUD,GAAmB,OAAO,OAAO,GAAG,YAAY,UAAUiD,EAAe,CAAC,EAAE,SAAS,YAAY,KAAK,eAAe,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,UAAUlD,GAAmB,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEI,EAAW,EAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe7B,EAAK,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,GAAG4C,GAAU,IAAIE,GAAK,SAAsBK,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAK,MAAM,CAAC,UAAU,iBAAiB,SAAsBA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcnD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIoB,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,sBAAsB,IAAI,uEAAuE,OAAO,oWAAoW,CAAC,CAAC,EAAE,SAAsBnB,EAAKpC,EAAY,CAAC,kBAAkB,CAAC,WAAWgC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI4D,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQ,IAAI,uEAAuE,OAAO,oWAAoW,EAAE,UAAU,iBAAiB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,eAAe,SAAS,CAAcA,EAAM7F,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcG,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAAsBiB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,MAAM,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcnD,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,wLAAwL,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,4DAA4D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,4DAA4D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgD,EAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,6CAA6C,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,MAAM,EAAE,IAAI,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKnD,EAAW,CAAC,UAAU,8BAA8B,OAAO,OAAO,UAAU0G,EAAkB,MAAMvC,CAAY,GAAG,eAAe,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcA,EAAM7F,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcG,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,cAAc,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,SAAS,CAAcnD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,iMAAiM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,iMAAiM,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,iMAAiM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,iMAAiM,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,oBAAoB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,6DAA6D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,4DAA4D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgD,EAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,4CAA4C,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,EAAE,EAAE,MAAM,EAAE,IAAI,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKnD,EAAW,CAAC,UAAU,+BAA+B,OAAO,OAAO,UAAU0G,EAAkB,MAAMvC,CAAY,GAAG,eAAe,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIoB,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,sBAAsB,IAAI,qEAAqE,OAAO,4VAA4V,CAAC,CAAC,EAAE,SAAsBnB,EAAKpC,EAAY,CAAC,kBAAkB,CAAC,WAAWgC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI4D,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,MAAM,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQ,IAAI,qEAAqE,OAAO,4VAA4V,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcnD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIoB,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,sBAAsB,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBnB,EAAKpC,EAAY,CAAC,kBAAkB,CAAC,WAAWgC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI4D,EAAkB,MAAMvC,CAAY,GAAG,oBAAoB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,EAAegC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcA,EAAM7F,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcG,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,yBAAyB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcnD,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,6MAA6M,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,4DAA4D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,6DAA6D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgD,EAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,4CAA4C,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,IAAI,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKnD,EAAW,CAAC,UAAU,gCAAgC,OAAO,OAAO,UAAU0G,EAAkB,MAAMvC,CAAY,GAAG,eAAe,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAemC,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,SAAS,CAAcA,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,eAAe,SAAS,CAAcA,EAAM7F,EAAgB,CAAC,kBAAkB,CAAC,WAAWsC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBC,GAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,UAAU,iBAAiB,mBAAmB,UAAU,MAAM,CAAC,qBAAqB,IAAI,EAAE,SAAS,CAAcG,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAeA,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,MAAM,CAAC,sBAAsB,uEAAuE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,SAAS,CAAcnD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,yPAAyP,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,yPAAyP,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,yPAAyP,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,iBAAiB,EAAE,SAAS,yPAAyP,CAAC,CAAC,CAAC,EAAE,UAAU,eAAe,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,gBAAgB,SAAS,CAAcnD,EAAKvD,EAAe,CAAC,kBAAkB,CAAC,WAAWqC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBR,EAAU,eAAeS,EAAW,mCAAmC,GAAK,oBAAoB,GAAG,sBAAsB,GAAK,gBAAgB,GAAM,gBAAgB,EAAE,SAASwE,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,KAAK,CAAC,UAAU,+BAA+B,qBAAqB,YAAY,SAAS,gBAAgB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,OAAO,EAAE,MAAM,CAAC,qBAAqB,IAAI,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAemD,EAAM,MAAM,CAAC,UAAU,iBAAiB,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,iBAAiB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE+C,EAAY,GAAgB/C,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,4DAA4D,SAAsByC,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAS4G,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEgD,EAAa,GAAgBG,EAAM,MAAM,CAAC,UAAU,4CAA4C,SAAS,CAAcnD,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,8BAA8B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAK4D,EAAK,CAAC,KAAK9B,EAAmB,YAAY,GAAK,OAAO,YAAY,aAAa,GAAM,QAAQ,YAAY,aAAa,GAAM,SAAsB9B,EAAKzC,EAAO,EAAE,CAAC,UAAU,+BAA+B,SAAsByC,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,SAASoB,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAASuD,EAAkB,MAAMvC,CAAY,GAAgBhB,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,SAAsBA,EAAKrD,EAAS,CAAC,sBAAsB,GAAK,SAAsBqD,EAAWwD,EAAS,CAAC,SAAsBxD,EAAK,IAAI,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,uBAAuB,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,iEAAiE,EAAE,SAAS,YAAY,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,gBAAgB,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeA,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,IAAI,EAAE,MAAM,EAAE,GAAG,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,KAAK,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,GAAG,GAAGlC,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,EAAE,MAAM,EAAE,IAAI,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,0BAA0B,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKnD,EAAW,CAAC,UAAU,oBAAoB,OAAO,OAAO,UAAU0G,EAAkB,MAAMvC,CAAY,GAAG,eAAe,GAAG,YAAY,SAAS,YAAY,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAehB,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,WAAW,CAAC,IAAIoB,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,OAAO,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,WAAW,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,EAAE,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,YAAY,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAIoC,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,IAAI,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQA,GAAmB,OAAO,OAAO,sBAAsB,IAAI,uEAAuE,OAAO,sQAAsQ,CAAC,CAAC,EAAE,SAAsBnB,EAAKpC,EAAY,CAAC,kBAAkB,CAAC,WAAWgC,CAAW,EAAE,sBAAsB,GAAK,gBAAgBD,EAAW,mCAAmC,GAAK,oBAAoB,EAAE,gBAAgB,GAAM,gBAAgB,EAAE,WAAW,CAAC,IAAI4D,EAAkB,MAAMvC,CAAY,GAAG,mBAAmB,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,QAAQ4D,GAA2BzD,GAAmB,GAAG,GAAG,EAAE,EAAE,EAAE,KAAK,GAAG,EAAE,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,YAAY,KAAK,WAAW,KAAK,UAAU,SAAS,UAAU,MAAM,MAAM,QAAQ,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,gBAAgB,mBAAmB,MAAM,MAAM,CAAC,qBAAqB,IAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAenB,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,GAAGhB,GAAmB,GAAG,GAAG,EAAE,MAAM,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,IAAI,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,EAAE,MAAM,CAAC,EAAE,SAAsBnB,EAAKqD,EAA0B,CAAC,OAAO,KAAK,MAAMlC,GAAmB,OAAO,QAAQ,GAAGA,GAAmB,GAAG,GAAG,EAAE,KAAK,SAAsBnB,EAAKjD,EAAU,CAAC,UAAU,2BAA2B,OAAO,YAAY,QAAQ,YAAY,SAAsBiD,EAAKsD,EAAkB,CAAC,WAAWnB,EAAY,UAAU,CAAC,UAAU,CAAC,QAAQ,WAAW,EAAE,UAAU,CAAC,QAAQ,WAAW,CAAC,EAAE,SAAsBnC,EAAKjC,GAAO,CAAC,UAAU,GAAK,OAAO,OAAO,GAAG,YAAY,SAAS,YAAY,UAAU,GAAK,MAAM,CAAC,MAAM,MAAM,EAAE,QAAQ,YAAY,MAAM,OAAO,UAAU,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeiC,EAAK,MAAM,CAAC,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6E,GAAI,CAAC,kFAAkF,gFAAgF,kVAAkV,uIAAuI,6WAA6W,wRAAwR,wTAAwT,mNAAmN,0VAA0V,2SAA2S,sHAAsH,mLAAmL,iLAAiL,iLAAiL,iLAAiL,iLAAiL,iLAAiL,kLAAkL,kLAAkL,kLAAkL,iLAAiL,kJAAkJ,+HAA+H,8WAA8W,sSAAsS,uHAAuH,yRAAyR,gRAAgR,inBAAinB,mWAAmW,gXAAgX,gRAAgR,2SAA2S,wLAAwL,kSAAkS,2SAA2S,4cAA4c,wUAAwU,iRAAiR,mSAAmS,sTAAsT,8SAA8S,oMAAoM,kPAAkP,gJAAgJ,yTAAyT,8RAA8R,iRAAiR,8WAA8W,4UAA4U,2XAA2X,+XAA+X,wXAAwX,0UAA0U,qXAAqX,4WAA4W,kuCAAkuC,mxBAAmxB,oXAAoX,2UAA2U,qHAAqH,GAAeA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,GAAgBA,GAAI,kzDAAkzD,mrEAAmrE,44CAA44C,EAa5w6HC,GAAgBC,GAAQvE,GAAUqE,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,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,SAAS,MAAM,SAAS,IAAI,6FAA6F,OAAO,KAAK,EAAE,CAAC,OAAO,aAAa,OAAO,SAAS,MAAM,SAAS,IAAI,mGAAmG,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGxI,GAAgB,GAAGM,GAAgB,GAAGI,GAAY,GAAGE,GAAW,GAAGE,GAAS,GAAGI,GAAoB,GAAGE,GAAmB,GAAGI,GAAY,GAAGE,GAAwB,GAAGkH,EAAoCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,EAAE,GAAGD,EAAqCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACtgF,IAAMC,GAAqB,CAAC,QAAU,CAAC,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,sBAAwB,SAAS,yBAA2B,QAAQ,sBAAwB,IAAI,uBAAyB,GAAG,qBAAuB,OAAO,yBAA2B,OAAO,6BAA+B,OAAO,oCAAsC,oMAA0O,qBAAuB,OAAO,4BAA8B,OAAO,qBAAuB,0DAAoE,kBAAoB,MAAM,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC",
  "names": ["Embed", "type", "url", "html", "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", "_ref_current", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "NavigationFonts", "getFonts", "RMTIifO8H_default", "RichTextWithFX", "withFX", "RichText", "ButtonIconFonts", "uZI6j5QZr_default", "ContainerWithFX", "Container", "TickerFonts", "Ticker", "EmbedFonts", "Embed", "ArcFonts", "Arc_default", "MotionDivWithFX", "motion", "ItemWImageCopyFonts", "yR1zzHJyd_default", "CaseThumbnailFonts", "GMaomOE3U_default", "ImageWithFX", "Image2", "FooterFonts", "Q_IxGDt_w_default", "CustomCursorYellowFonts", "BEGfyM5sE_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "animation2", "transition2", "animation3", "animation4", "animation5", "transition3", "animation6", "addImageAlt", "image", "alt", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "animation7", "transition4", "animation8", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "MSZWmOUa4BpnXe2wHi", "usvkqQZmRBpnXe2wHi", "KM6vLSrChBpnXe2wHi", "HO_Dxy3FbBpnXe2wHi", "idBpnXe2wHi", "bohRFuhqjuZI6j5QZr", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "usePreloadLocalizedValues", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "getLocalizedValue", "x", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "ChildrenCanSuspend", "qcOEbDaZ_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks8", "getLoadingLazyAtYPosition", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
