{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/WFjGohsANcsCcMaC1PIL/hiEr669yJX0tvSKGZ9oD/Examples.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/phosphor-icons/House.js@0.0.57", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js", "ssg:https://framerusercontent.com/modules/fBqUPVcikpDb4d3WBcd8/Tjds7Dhv4astqyIoj6hL/hbAInN3r1-0.js", "ssg:https://framerusercontent.com/modules/fBqUPVcikpDb4d3WBcd8/Tjds7Dhv4astqyIoj6hL/hbAInN3r1-1.js", "ssg:https://framerusercontent.com/modules/fBqUPVcikpDb4d3WBcd8/Tjds7Dhv4astqyIoj6hL/hbAInN3r1.js", "ssg:https://framerusercontent.com/modules/nOmLe41iQYO3FoXx4QzF/5UwOKXYlWNlWH2xBc5n6/PndNwLyvA-0.js", "ssg:https://framerusercontent.com/modules/nOmLe41iQYO3FoXx4QzF/5UwOKXYlWNlWH2xBc5n6/PndNwLyvA-1.js", "ssg:https://framerusercontent.com/modules/nOmLe41iQYO3FoXx4QzF/5UwOKXYlWNlWH2xBc5n6/PndNwLyvA.js", "ssg:https://framerusercontent.com/modules/BbiReGWoWQpruG6yZxfU/Chaqd4pCPf8oGzspEY0V/uj8VuhKhr.js", "ssg:https://framerusercontent.com/modules/BbiReGWoWQpruG6yZxfU/Chaqd4pCPf8oGzspEY0V/uj8VuhKhr-0.js", "ssg:https://framerusercontent.com/modules/BbiReGWoWQpruG6yZxfU/Chaqd4pCPf8oGzspEY0V/uj8VuhKhr-1.js", "ssg:https://framerusercontent.com/modules/Wrh5BjsPnZkunn6NDsfq/tnXr1l7BizHn8OptiYfW/hbAInN3r1.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import{useEffect,useState}from\"react\";// Learn more: https://www.framer.com/docs/guides/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{scale:1.05}});};}export function withGoApp(Component){return props=>{const[session,setSession]=useState(\"\");useEffect(()=>{const session=getCookie(\"session\");if(session){setSession(session);}},[]);const getCookie=cookieName=>{try{let arr;const cookieValue=document.cookie;const reg=new RegExp(\"(^| )\".concat(cookieName,\"=([^;]*)(;|$)\"));if(arr=cookieValue.match(reg)){return unescape(arr[2]);}return\"\";}catch(error){console.log(\"error:::\",error);}};return /*#__PURE__*/_jsx(Component,{...props,onClick:()=>{var _window_navigator_language_split,_window_navigator_language;const localStr=((_window_navigator_language=window.navigator.language)===null||_window_navigator_language===void 0?void 0:(_window_navigator_language_split=_window_navigator_language.split(\"-\"))===null||_window_navigator_language_split===void 0?void 0:_window_navigator_language_split[0])||\"en\";const search=location.search;if(session){window.location.href=`https://app.moyonote.com/${localStr}/chat/${search}`;}else{window.location.href=`https://app.moyonote.com/${localStr}/register/${search}`;}}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withGoApp\":{\"type\":\"reactHoc\",\"name\":\"withGoApp\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map", "export const v0=\"\u4FA1\u683C\";export const v1=\"\u304A\u554F\u3044\u5408\u308F\u305B\";export const v2=\"\u4FA1\u683C\";export const v3=\"\u4FA1\u683C\";export const v4=\"\u5BB6\";export const v5=\"\u59CB\u3081\u308B\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Pre\\xe7os\";export const v1=\"Entre em contato conosco\";export const v2=\"Solo\";export const v3=\"Solo\";export const v4=\"Casa\";\nexport const __FramerMetadata__ = {\"exports\":{\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport*as localizedValues from\"./hbAInN3r1-0.js\";import*as localizedValues1 from\"./hbAInN3r1-1.js\";const valuesByLocaleId={hOCm4QoYp:localizedValues1,Z6ENg7Mom:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"\u5BB6\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Casa\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5ec741e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as localizedValues from\"./PndNwLyvA-0.js\";import*as localizedValues1 from\"./PndNwLyvA-1.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={bhvtGagRp:{hover:true}};const cycleOrder=[\"yIW3kvvOv\",\"HApHxUSxS\",\"bhvtGagRp\"];const serializationHash=\"framer-pQdUO\";const variantClassNames={bhvtGagRp:\"framer-v-1dwnyfj\",HApHxUSxS:\"framer-v-1ramxfx\",yIW3kvvOv:\"framer-v-12j7akj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hOCm4QoYp:localizedValues1,Z6ENg7Mom:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"HApHxUSxS\",Open:\"yIW3kvvOv\",Simple:\"bhvtGagRp\"};const getProps=({height,hover,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,kcKdHX2wm:(_ref=title!==null&&title!==void 0?title:props.kcKdHX2wm)!==null&&_ref!==void 0?_ref:\"Features\",NKudH2mEX:link!==null&&link!==void 0?link:props.NKudH2mEX,qe8e_sxRy:hover!==null&&hover!==void 0?hover:props.qe8e_sxRy,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"yIW3kvvOv\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,kcKdHX2wm,qe8e_sxRy,NKudH2mEX,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yIW3kvvOv\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter7j7d8i=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(qe8e_sxRy){const res=await qe8e_sxRy(...args);if(res===false)return false;}});const onClick1jfbi8x=activeVariantCallback(async(...args)=>{setVariant(\"vZNkcdFXx\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"bhvtGagRp-hover\")return false;if(baseVariant===\"bhvtGagRp\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:NKudH2mEX,...addPropertyOverrides({bhvtGagRp:{openInNewTab:false,smoothScroll:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-12j7akj\",className,classNames)} framer-5pxmqp`,\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"yIW3kvvOv\",onMouseEnter:onMouseEnter7j7d8i,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"bhvtGagRp-hover\":{\"data-framer-name\":undefined,\"data-highlight\":undefined,onMouseEnter:undefined},bhvtGagRp:{\"data-framer-name\":\"Simple\",\"data-highlight\":undefined,onMouseEnter:undefined},HApHxUSxS:{\"data-framer-name\":\"Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Features\"})}),className:\"framer-58hs9n\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"cgAbk6uuw\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.6},text:kcKdHX2wm,variants:{\"bhvtGagRp-hover\":{opacity:1},HApHxUSxS:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-sd18w\",layoutDependency:layoutDependency,layoutId:\"MHNxeoiRx\",style:{rotate:0},variants:{HApHxUSxS:{rotate:-180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lyydkf-container\",layoutDependency:layoutDependency,layoutId:\"w3dRlSZtt-container\",style:{opacity:.6},variants:{HApHxUSxS:{opacity:1}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"House\",iconSelection:\"CaretDown\",id:\"w3dRlSZtt\",layoutId:\"w3dRlSZtt\",mirrored:false,onClick:onClick1jfbi8x,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pQdUO.framer-5pxmqp, .framer-pQdUO .framer-5pxmqp { display: block; }\",\".framer-pQdUO.framer-12j7akj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pQdUO .framer-58hs9n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pQdUO .framer-sd18w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 12px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 12px; }\",\".framer-pQdUO .framer-1lyydkf-container { flex: none; height: 12px; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-pQdUO.framer-12j7akj, .framer-pQdUO .framer-sd18w { gap: 0px; } .framer-pQdUO.framer-12j7akj > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-pQdUO.framer-12j7akj > :first-child, .framer-pQdUO .framer-sd18w > :first-child { margin-left: 0px; } .framer-pQdUO.framer-12j7akj > :last-child, .framer-pQdUO .framer-sd18w > :last-child { margin-right: 0px; } .framer-pQdUO .framer-sd18w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-pQdUO.framer-v-1dwnyfj.framer-12j7akj { cursor: pointer; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 77\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"HApHxUSxS\":{\"layout\":[\"auto\",\"auto\"]},\"bhvtGagRp\":{\"layout\":[\"auto\",\"auto\"]},\"Cpw_5Rusn\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"kcKdHX2wm\":\"title\",\"qe8e_sxRy\":\"hover\",\"NKudH2mEX\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPndNwLyvA=withCSS(Component,css,\"framer-pQdUO\");export default FramerPndNwLyvA;FramerPndNwLyvA.displayName=\"Nav/Menu\";FramerPndNwLyvA.defaultProps={height:24,width:77};addPropertyControls(FramerPndNwLyvA,{variant:{options:[\"yIW3kvvOv\",\"HApHxUSxS\",\"bhvtGagRp\"],optionTitles:[\"Open\",\"Closed\",\"Simple\"],title:\"Variant\",type:ControlType.Enum},kcKdHX2wm:{defaultValue:\"Features\",displayTextArea:false,title:\"Title\",type:ControlType.String},qe8e_sxRy:{title:\"Hover\",type:ControlType.EventHandler},NKudH2mEX:{title:\"Link\",type:ControlType.Link}});addFonts(FramerPndNwLyvA,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPndNwLyvA\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"77\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"kcKdHX2wm\\\":\\\"title\\\",\\\"qe8e_sxRy\\\":\\\"hover\\\",\\\"NKudH2mEX\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"24\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HApHxUSxS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bhvtGagRp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Cpw_5Rusn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PndNwLyvA.map", "// Generated by Framer (5ec741e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as localizedValues from\"./uj8VuhKhr-0.js\";import*as localizedValues1 from\"./uj8VuhKhr-1.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={cmNZua6IA:{hover:true},DnCWJJPGn:{hover:true},fQ7rf7W2D:{hover:true},gBDMUPJQa:{hover:true},HzoMS3wWs:{hover:true},KtjB8CnTP:{hover:true},nR46ZvFKN:{hover:true},rftp6ZWEO:{hover:true},TM5DGOEL0:{hover:true},vgTaZfdSn:{hover:true},XVJ5g71ob:{hover:true},ZjBMcao0z:{hover:true}};const cycleOrder=[\"HzoMS3wWs\",\"rftp6ZWEO\",\"TM5DGOEL0\",\"gBDMUPJQa\",\"XVJ5g71ob\",\"fQ7rf7W2D\",\"ZjBMcao0z\",\"KtjB8CnTP\",\"nR46ZvFKN\",\"vgTaZfdSn\",\"cmNZua6IA\",\"DnCWJJPGn\"];const serializationHash=\"framer-s58Uy\";const variantClassNames={cmNZua6IA:\"framer-v-1uhmku5\",DnCWJJPGn:\"framer-v-1sytbj4\",fQ7rf7W2D:\"framer-v-1sctnnh\",gBDMUPJQa:\"framer-v-1duoi85\",HzoMS3wWs:\"framer-v-qqp4er\",KtjB8CnTP:\"framer-v-1locwab\",nR46ZvFKN:\"framer-v-18ql8v6\",rftp6ZWEO:\"framer-v-my84j2\",TM5DGOEL0:\"framer-v-6n9lz7\",vgTaZfdSn:\"framer-v-3d41hw\",XVJ5g71ob:\"framer-v-1t17cr9\",ZjBMcao0z:\"framer-v-dlcrjl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const valuesByLocaleId={hOCm4QoYp:localizedValues1,Z6ENg7Mom:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"\u2B1B\uFE0F L Button Fill\":\"HzoMS3wWs\",\"\u2B1B\uFE0F L Icon Fill\":\"rftp6ZWEO\",\"\u2B1B\uFE0F M Button Fill\":\"TM5DGOEL0\",\"\u2B1B\uFE0F M Icon FIll\":\"gBDMUPJQa\",\"\u2B1B\uFE0F S Button Fill\":\"XVJ5g71ob\",\"\u2B1B\uFE0F S Icon Fill \":\"fQ7rf7W2D\",\"\uD83D\uDD32 L Button Border\":\"ZjBMcao0z\",\"\uD83D\uDD32 L Icon Border\":\"KtjB8CnTP\",\"\uD83D\uDD32 M Button Border\":\"nR46ZvFKN\",\"\uD83D\uDD32 M Icon Border\":\"vgTaZfdSn\",\"\uD83D\uDD32 S Button Border\":\"cmNZua6IA\",\"\uD83D\uDD32 S Icon Border\":\"DnCWJJPGn\"};const getProps=({background,click,height,icon,icon1,id,link,newTab,radius,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,eszixBaDA:(_ref=radius!==null&&radius!==void 0?radius:props.eszixBaDA)!==null&&_ref!==void 0?_ref:10,ik9I5qIGz:(_ref1=icon!==null&&icon!==void 0?icon:props.ik9I5qIGz)!==null&&_ref1!==void 0?_ref1:true,J0LC2FGV8:newTab!==null&&newTab!==void 0?newTab:props.J0LC2FGV8,KJK1sV1GB:(_ref2=title!==null&&title!==void 0?title:props.KJK1sV1GB)!==null&&_ref2!==void 0?_ref2:\"Get started\",RmkZjgJwi:(_ref3=icon1!==null&&icon1!==void 0?icon1:props.RmkZjgJwi)!==null&&_ref3!==void 0?_ref3:\"ArrowRight\",sjCyix4Io:click!==null&&click!==void 0?click:props.sjCyix4Io,UsLusPFRg:(_ref4=background!==null&&background!==void 0?background:props.UsLusPFRg)!==null&&_ref4!==void 0?_ref4:\"rgb(0, 0, 0)\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"HzoMS3wWs\",yTZZaFOb3:link!==null&&link!==void 0?link:props.yTZZaFOb3};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,eszixBaDA,KJK1sV1GB,UsLusPFRg,ik9I5qIGz,RmkZjgJwi,yTZZaFOb3,J0LC2FGV8,sjCyix4Io,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HzoMS3wWs\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap2f838p=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(sjCyix4Io){const res=await sjCyix4Io(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"rftp6ZWEO-hover\",\"gBDMUPJQa-hover\",\"fQ7rf7W2D-hover\",\"KtjB8CnTP-hover\",\"vgTaZfdSn-hover\",\"DnCWJJPGn-hover\"].includes(gestureVariant))return false;if([\"rftp6ZWEO\",\"gBDMUPJQa\",\"fQ7rf7W2D\",\"KtjB8CnTP\",\"vgTaZfdSn\",\"DnCWJJPGn\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:yTZZaFOb3,openInNewTab:false,smoothScroll:true,...addPropertyOverrides({cmNZua6IA:{openInNewTab:J0LC2FGV8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-qqp4er\",className,classNames)} framer-1kghj5m`,\"data-border\":true,\"data-framer-name\":\"\u2B1B\uFE0F L Button Fill\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HzoMS3wWs\",onTap:onTap2f838p,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-58a904ff-197a-49b3-8356-adaa464e1642, rgba(255, 255, 255, 0.12))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:UsLusPFRg,borderBottomLeftRadius:radiusForCorner(eszixBaDA,3),borderBottomRightRadius:radiusForCorner(eszixBaDA,2),borderTopLeftRadius:radiusForCorner(eszixBaDA,0),borderTopRightRadius:radiusForCorner(eszixBaDA,1),boxShadow:\"0px 0.6021873017743928px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.07199), 0px 2.288533303243457px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.06356), 0px 10px 30px -3.75px rgba(0, 0, 0, 0.025)\",filter:\"brightness(1)\",WebkitFilter:\"brightness(1)\",...style},variants:{\"cmNZua6IA-hover\":{filter:\"brightness(0.9)\",WebkitFilter:\"brightness(0.9)\"},\"DnCWJJPGn-hover\":{filter:\"brightness(0.9)\",WebkitFilter:\"brightness(0.9)\"},\"fQ7rf7W2D-hover\":{filter:\"brightness(0.8)\",WebkitFilter:\"brightness(0.8)\"},\"gBDMUPJQa-hover\":{filter:\"brightness(0.8)\",WebkitFilter:\"brightness(0.8)\"},\"HzoMS3wWs-hover\":{filter:\"brightness(0.8)\",WebkitFilter:\"brightness(0.8)\"},\"KtjB8CnTP-hover\":{filter:\"brightness(0.9)\",WebkitFilter:\"brightness(0.9)\"},\"nR46ZvFKN-hover\":{filter:\"brightness(0.9)\",WebkitFilter:\"brightness(0.9)\"},\"rftp6ZWEO-hover\":{filter:\"brightness(0.8)\",WebkitFilter:\"brightness(0.8)\"},\"TM5DGOEL0-hover\":{filter:\"brightness(0.8)\",WebkitFilter:\"brightness(0.8)\"},\"vgTaZfdSn-hover\":{filter:\"brightness(0.9)\",WebkitFilter:\"brightness(0.9)\"},\"XVJ5g71ob-hover\":{filter:\"brightness(0.8)\",WebkitFilter:\"brightness(0.8)\"},\"ZjBMcao0z-hover\":{filter:\"brightness(0.9)\",WebkitFilter:\"brightness(0.9)\"},cmNZua6IA:{\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",backgroundColor:\"rgb(255, 255, 255)\"},DnCWJJPGn:{\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",backgroundColor:\"rgb(255, 255, 255)\"},KtjB8CnTP:{\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",backgroundColor:\"rgb(255, 255, 255)\"},nR46ZvFKN:{\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",backgroundColor:\"rgb(255, 255, 255)\"},vgTaZfdSn:{\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",backgroundColor:\"rgb(255, 255, 255)\"},ZjBMcao0z:{\"--border-color\":\"var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1))\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"cmNZua6IA-hover\":{\"data-framer-name\":undefined},\"DnCWJJPGn-hover\":{\"data-framer-name\":undefined},\"fQ7rf7W2D-hover\":{\"data-framer-name\":undefined},\"gBDMUPJQa-hover\":{\"data-framer-name\":undefined},\"HzoMS3wWs-hover\":{\"data-framer-name\":undefined},\"KtjB8CnTP-hover\":{\"data-framer-name\":undefined},\"nR46ZvFKN-hover\":{\"data-framer-name\":undefined},\"rftp6ZWEO-hover\":{\"data-framer-name\":undefined},\"TM5DGOEL0-hover\":{\"data-framer-name\":undefined},\"vgTaZfdSn-hover\":{\"data-framer-name\":undefined},\"XVJ5g71ob-hover\":{\"data-framer-name\":undefined},\"ZjBMcao0z-hover\":{\"data-framer-name\":undefined},cmNZua6IA:{\"data-framer-name\":\"\uD83D\uDD32 S Button Border\"},DnCWJJPGn:{\"data-framer-name\":\"\uD83D\uDD32 S Icon Border\"},fQ7rf7W2D:{\"data-framer-name\":\"\u2B1B\uFE0F S Icon Fill \"},gBDMUPJQa:{\"data-framer-name\":\"\u2B1B\uFE0F M Icon FIll\"},KtjB8CnTP:{\"data-framer-name\":\"\uD83D\uDD32 L Icon Border\"},nR46ZvFKN:{\"data-framer-name\":\"\uD83D\uDD32 M Button Border\"},rftp6ZWEO:{\"data-framer-name\":\"\u2B1B\uFE0F L Icon Fill\"},TM5DGOEL0:{\"data-framer-name\":\"\u2B1B\uFE0F M Button Fill\"},vgTaZfdSn:{\"data-framer-name\":\"\uD83D\uDD32 M Icon Border\"},XVJ5g71ob:{\"data-framer-name\":\"\u2B1B\uFE0F S Button Fill\"},ZjBMcao0z:{\"data-framer-name\":\"\uD83D\uDD32 L Button Border\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})}),className:\"framer-tu9sjr\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"fsgsceX04\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:KJK1sV1GB,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({cmNZua6IA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\"},children:\"Get started\"})})},nR46ZvFKN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\"},children:\"Get started\"})})},TM5DGOEL0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})})},XVJ5g71ob:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.3px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Get started\"})})},ZjBMcao0z:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.6px\",\"--framer-text-alignment\":\"center\"},children:\"Get started\"})})}},baseVariant,gestureVariant)}),ik9I5qIGz&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p7mc6v\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"AiCYPLr_U\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-im3sdd-container\",layoutDependency:layoutDependency,layoutId:\"BpHV6haLi-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"House\",iconSelection:RmkZjgJwi,id:\"BpHV6haLi\",layoutId:\"BpHV6haLi\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({cmNZua6IA:{color:\"rgb(0, 0, 0)\"},DnCWJJPGn:{color:\"rgb(0, 0, 0)\"},KtjB8CnTP:{color:\"rgb(0, 0, 0)\"},nR46ZvFKN:{color:\"rgb(0, 0, 0)\"},vgTaZfdSn:{color:\"rgb(0, 0, 0)\"},ZjBMcao0z:{color:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-s58Uy.framer-1kghj5m, .framer-s58Uy .framer-1kghj5m { display: block; }\",\".framer-s58Uy.framer-qqp4er { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-s58Uy .framer-tu9sjr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-s58Uy .framer-1p7mc6v { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-s58Uy .framer-im3sdd-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-qqp4er > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-s58Uy.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-my84j2.framer-qqp4er, .framer-s58Uy.framer-v-1locwab.framer-qqp4er { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 54px); padding: 20px; width: 54px; }\",\".framer-s58Uy.framer-v-6n9lz7.framer-qqp4er, .framer-s58Uy.framer-v-18ql8v6.framer-qqp4er { gap: 4px; padding: 10px 15px 10px 15px; }\",\".framer-s58Uy.framer-v-6n9lz7 .framer-im3sdd-container { bottom: 1px; height: 16px; left: calc(50.00000000000002% - 16px / 2); right: unset; top: unset; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-v-6n9lz7.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-v-6n9lz7.framer-qqp4er > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-s58Uy.framer-v-6n9lz7.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-v-6n9lz7.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-1duoi85.framer-qqp4er, .framer-s58Uy.framer-v-3d41hw.framer-qqp4er { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); padding: 10px; width: 40px; }\",\".framer-s58Uy.framer-v-1duoi85 .framer-im3sdd-container, .framer-s58Uy.framer-v-3d41hw .framer-im3sdd-container { bottom: unset; height: 16px; left: calc(50.00000000000002% - 16px / 2); right: unset; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-s58Uy.framer-v-1t17cr9.framer-qqp4er, .framer-s58Uy.framer-v-1uhmku5.framer-qqp4er { gap: 0px; padding: 5px 10px 5px 10px; }\",\".framer-s58Uy.framer-v-1t17cr9 .framer-im3sdd-container { bottom: 2px; height: 14px; left: calc(50.00000000000002% - 14px / 2); right: unset; top: unset; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-v-1t17cr9.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-v-1t17cr9.framer-qqp4er > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s58Uy.framer-v-1t17cr9.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-v-1t17cr9.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-1sctnnh.framer-qqp4er { aspect-ratio: 1 / 1; gap: 4px; height: var(--framer-aspect-ratio-supported, 30px); padding: 10px 15px 10px 15px; width: 30px; }\",\".framer-s58Uy.framer-v-1sctnnh .framer-im3sdd-container, .framer-s58Uy.framer-v-1sytbj4 .framer-im3sdd-container { bottom: unset; height: 14px; left: calc(50.00000000000002% - 14px / 2); right: unset; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-v-1sctnnh.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-v-1sctnnh.framer-qqp4er > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-s58Uy.framer-v-1sctnnh.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-v-1sctnnh.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-18ql8v6 .framer-im3sdd-container { bottom: 1px; height: 16px; right: unset; top: unset; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-v-18ql8v6.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-v-18ql8v6.framer-qqp4er > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-s58Uy.framer-v-18ql8v6.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-v-18ql8v6.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-1uhmku5 .framer-im3sdd-container { bottom: 3px; height: 14px; left: calc(50.00000000000002% - 14px / 2); right: unset; top: unset; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-v-1uhmku5.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-v-1uhmku5.framer-qqp4er > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-s58Uy.framer-v-1uhmku5.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-v-1uhmku5.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-1sytbj4.framer-qqp4er { aspect-ratio: 1 / 1; gap: 2px; height: var(--framer-aspect-ratio-supported, 30px); padding: 10px 15px 10px 15px; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-s58Uy.framer-v-1sytbj4.framer-qqp4er { gap: 0px; } .framer-s58Uy.framer-v-1sytbj4.framer-qqp4er > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-s58Uy.framer-v-1sytbj4.framer-qqp4er > :first-child { margin-left: 0px; } .framer-s58Uy.framer-v-1sytbj4.framer-qqp4er > :last-child { margin-right: 0px; } }\",\".framer-s58Uy.framer-v-6n9lz7.hover .framer-im3sdd-container { left: unset; right: -1px; top: unset; }\",\".framer-s58Uy.framer-v-1duoi85.hover .framer-im3sdd-container, .framer-s58Uy.framer-v-1sctnnh.hover .framer-im3sdd-container, .framer-s58Uy.framer-v-3d41hw.hover .framer-im3sdd-container, .framer-s58Uy.framer-v-1sytbj4.hover .framer-im3sdd-container { bottom: unset; right: unset; }\",\".framer-s58Uy.framer-v-1t17cr9.hover .framer-im3sdd-container, .framer-s58Uy.framer-v-18ql8v6.hover .framer-im3sdd-container, .framer-s58Uy.framer-v-1uhmku5.hover .framer-im3sdd-container { left: unset; right: 1px; top: unset; }\",\".framer-s58Uy.framer-v-dlcrjl.hover .framer-im3sdd-container { left: unset; right: -3px; width: 20px; }\",'.framer-s58Uy[data-border=\"true\"]::after, .framer-s58Uy [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 54\n * @framerIntrinsicWidth 162\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"rftp6ZWEO\":{\"layout\":[\"fixed\",\"fixed\"]},\"TM5DGOEL0\":{\"layout\":[\"auto\",\"auto\"]},\"gBDMUPJQa\":{\"layout\":[\"fixed\",\"fixed\"]},\"XVJ5g71ob\":{\"layout\":[\"auto\",\"auto\"]},\"fQ7rf7W2D\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZjBMcao0z\":{\"layout\":[\"auto\",\"auto\"]},\"KtjB8CnTP\":{\"layout\":[\"fixed\",\"fixed\"]},\"nR46ZvFKN\":{\"layout\":[\"auto\",\"auto\"]},\"vgTaZfdSn\":{\"layout\":[\"fixed\",\"fixed\"]},\"cmNZua6IA\":{\"layout\":[\"auto\",\"auto\"]},\"DnCWJJPGn\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZxVyXCYIG\":{\"layout\":[\"auto\",\"auto\"]},\"ZFzfCKNv0\":{\"layout\":[\"fixed\",\"fixed\"]},\"qNMMYn4zV\":{\"layout\":[\"auto\",\"auto\"]},\"GPOHf9SZg\":{\"layout\":[\"fixed\",\"fixed\"]},\"ameNmzIHm\":{\"layout\":[\"auto\",\"auto\"]},\"yHD58rNPi\":{\"layout\":[\"fixed\",\"fixed\"]},\"RMciRhPpI\":{\"layout\":[\"auto\",\"auto\"]},\"zRRdhMVUb\":{\"layout\":[\"fixed\",\"fixed\"]},\"IcRHbC0qE\":{\"layout\":[\"auto\",\"auto\"]},\"SQxnVOgMR\":{\"layout\":[\"fixed\",\"fixed\"]},\"LE41YCuHc\":{\"layout\":[\"auto\",\"auto\"]},\"nhTgrez8b\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"eszixBaDA\":\"radius\",\"KJK1sV1GB\":\"title\",\"UsLusPFRg\":\"background\",\"ik9I5qIGz\":\"icon\",\"RmkZjgJwi\":\"icon1\",\"yTZZaFOb3\":\"link\",\"J0LC2FGV8\":\"newTab\",\"sjCyix4Io\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameruj8VuhKhr=withCSS(Component,css,\"framer-s58Uy\");export default Frameruj8VuhKhr;Frameruj8VuhKhr.displayName=\"Button\";Frameruj8VuhKhr.defaultProps={height:54,width:162};addPropertyControls(Frameruj8VuhKhr,{variant:{options:[\"HzoMS3wWs\",\"rftp6ZWEO\",\"TM5DGOEL0\",\"gBDMUPJQa\",\"XVJ5g71ob\",\"fQ7rf7W2D\",\"ZjBMcao0z\",\"KtjB8CnTP\",\"nR46ZvFKN\",\"vgTaZfdSn\",\"cmNZua6IA\",\"DnCWJJPGn\"],optionTitles:[\"\u2B1B\uFE0F L Button Fill\",\"\u2B1B\uFE0F L Icon Fill\",\"\u2B1B\uFE0F M Button Fill\",\"\u2B1B\uFE0F M Icon FIll\",\"\u2B1B\uFE0F S Button Fill\",\"\u2B1B\uFE0F S Icon Fill \",\"\uD83D\uDD32 L Button Border\",\"\uD83D\uDD32 L Icon Border\",\"\uD83D\uDD32 M Button Border\",\"\uD83D\uDD32 M Icon Border\",\"\uD83D\uDD32 S Button Border\",\"\uD83D\uDD32 S Icon Border\"],title:\"Variant\",type:ControlType.Enum},eszixBaDA:{defaultValue:10,title:\"Radius\",type:ControlType.Number},KJK1sV1GB:{defaultValue:\"Get started\",displayTextArea:false,title:\"Title\",type:ControlType.String},UsLusPFRg:{defaultValue:\"rgb(0, 0, 0)\",description:\"Available for \u201DFill\u201D variants.\",title:\"Background\",type:ControlType.Color},ik9I5qIGz:{defaultValue:true,title:\"Icon\",type:ControlType.Boolean},RmkZjgJwi:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowRight\",description:undefined,hidden:undefined,title:\"Icon\"},yTZZaFOb3:{title:\"Link\",type:ControlType.Link},J0LC2FGV8:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},sjCyix4Io:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Frameruj8VuhKhr,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameruj8VuhKhr\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"162\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rftp6ZWEO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TM5DGOEL0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gBDMUPJQa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XVJ5g71ob\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"fQ7rf7W2D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZjBMcao0z\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KtjB8CnTP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nR46ZvFKN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vgTaZfdSn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cmNZua6IA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DnCWJJPGn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZxVyXCYIG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ZFzfCKNv0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qNMMYn4zV\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GPOHf9SZg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ameNmzIHm\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yHD58rNPi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RMciRhPpI\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zRRdhMVUb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IcRHbC0qE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SQxnVOgMR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LE41YCuHc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nhTgrez8b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"eszixBaDA\\\":\\\"radius\\\",\\\"KJK1sV1GB\\\":\\\"title\\\",\\\"UsLusPFRg\\\":\\\"background\\\",\\\"ik9I5qIGz\\\":\\\"icon\\\",\\\"RmkZjgJwi\\\":\\\"icon1\\\",\\\"yTZZaFOb3\\\":\\\"link\\\",\\\"J0LC2FGV8\\\":\\\"newTab\\\",\\\"sjCyix4Io\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"54\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uj8VuhKhr.map", "export const v0=\"\u5BB6\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Casa\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,ResolveLinks,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withMappedReactProps}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import{withGoApp}from\"https://framerusercontent.com/modules/WFjGohsANcsCcMaC1PIL/hiEr669yJX0tvSKGZ9oD/Examples.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/fBqUPVcikpDb4d3WBcd8/Tjds7Dhv4astqyIoj6hL/hbAInN3r1.js\";import NavMenu from\"https://framerusercontent.com/modules/nOmLe41iQYO3FoXx4QzF/5UwOKXYlWNlWH2xBc5n6/PndNwLyvA.js\";import Button,*as ButtonInfo from\"https://framerusercontent.com/modules/BbiReGWoWQpruG6yZxfU/Chaqd4pCPf8oGzspEY0V/uj8VuhKhr.js\";const NavMenuFonts=getFonts(NavMenu);const PhosphorFonts=getFonts(Phosphor);const ButtonFonts=getFonts(Button);const ButtonWithGoAppWithMappedReactProps1v1ipky=withMappedReactProps(withGoApp(Button),ButtonInfo);const cycleOrder=[\"b8qkNL2kK\",\"onpetFyn_\",\"Aqip1WVNL\"];const serializationHash=\"framer-EmNxU\";const variantClassNames={Aqip1WVNL:\"framer-v-c38452\",b8qkNL2kK:\"framer-v-mt4ri7\",onpetFyn_:\"framer-v-1fyjeqj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"Aqip1WVNL\",Desktop:\"b8qkNL2kK\",Phone:\"onpetFyn_\"};const getProps=({backgroundBlur,height,id,text,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,LylWg8UG8:backgroundBlur!==null&&backgroundBlur!==void 0?backgroundBlur:props.LylWg8UG8,Tyvh_HtHO:(_ref=text!==null&&text!==void 0?text:props.Tyvh_HtHO)!==null&&_ref!==void 0?_ref:\"rgb(255, 255, 255)\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"b8qkNL2kK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,Tyvh_HtHO,JU5116W8C,LylWg8UG8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"b8qkNL2kK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClick1jfbi8x=activeVariantCallback(async(...args)=>{setVariant(\"vZNkcdFXx\");});const onClick1avyur6=activeVariantCallback(async(...args)=>{setVariant(\"Aqip1WVNL\");});const onClickqttkt0=activeVariantCallback(async(...args)=>{setVariant(\"onpetFyn_\");});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"onpetFyn_\")return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"onpetFyn_\",\"Aqip1WVNL\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Aqip1WVNL\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mt4ri7\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"b8qkNL2kK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backdropFilter:`blur(${LylWg8UG8}px)`,...style},...addPropertyOverrides({Aqip1WVNL:{\"data-framer-name\":\"Phone Open\"},onpetFyn_:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-73v5rz\",layoutDependency:layoutDependency,layoutId:\"TY9Zaqviz\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"rgmXpCQEj\"},nodeId:\"sK6rv5yVF\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1nhbmct framer-1fzotco\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"sK6rv5yVF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ptso1i\",\"data-framer-name\":\"Union\",fill:\"black\",intrinsicHeight:19,intrinsicWidth:108,layoutDependency:layoutDependency,layoutId:\"e9CYYeHmA\",svg:'<svg width=\"108\" height=\"19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M72.366 13.45H69.09l-5.48-8.296v8.297h-3.277V0h3.277l5.48 8.335V0h3.276v13.45Zm8.2.154c-1.047 0-1.992-.223-2.835-.67a4.992 4.992 0 0 1-1.974-1.916c-.473-.83-.709-1.802-.709-2.913 0-1.099.243-2.063.728-2.893a4.923 4.923 0 0 1 1.993-1.935c.843-.448 1.788-.671 2.836-.671 1.047 0 1.992.223 2.835.67a4.923 4.923 0 0 1 1.993 1.936c.486.83.728 1.794.728 2.893 0 1.099-.249 2.07-.747 2.912a4.928 4.928 0 0 1-2.012 1.917c-.843.447-1.788.67-2.836.67Zm0-2.836c.626 0 1.156-.23 1.59-.69.448-.46.671-1.117.671-1.973 0-.856-.217-1.514-.651-1.974a2.045 2.045 0 0 0-1.571-.69c-.639 0-1.17.23-1.59.69-.422.448-.633 1.105-.633 1.974 0 .856.204 1.514.613 1.974.422.46.945.69 1.571.69Zm14.25 2.683v-2.778h-1.168c-.358 0-.613-.07-.767-.211-.153-.14-.23-.37-.23-.69V5.48h2.147V2.76H92.65V.152h-3.276V2.76h-1.303v2.72h1.303v4.254c0 1.315.332 2.267.996 2.855.665.575 1.59.862 2.779.862h1.667Zm12.862-5.518c0 .306-.019.626-.057.958h-7.415c.051.664.262 1.175.632 1.533.383.344.849.517 1.399.517.817 0 1.386-.345 1.705-1.035h3.487a4.721 4.721 0 0 1-.977 1.897 4.756 4.756 0 0 1-1.744 1.322c-.702.32-1.488.48-2.356.48-1.048 0-1.98-.224-2.798-.671a4.77 4.77 0 0 1-1.916-1.916c-.46-.83-.69-1.802-.69-2.913 0-1.111.224-2.082.67-2.912a4.77 4.77 0 0 1 1.917-1.916c.818-.448 1.756-.671 2.817-.671 1.034 0 1.954.217 2.759.651a4.62 4.62 0 0 1 1.878 1.859c.459.805.689 1.744.689 2.817Zm-3.353-.863c0-.562-.191-1.009-.575-1.34-.383-.333-.862-.5-1.437-.5-.549 0-1.015.16-1.398.48-.371.32-.601.773-.69 1.36h4.1ZM13.455 3c1.31 0 2.35.397 3.119 1.19.781.794 1.171 1.897 1.171 3.308v6.16h-3.212V7.933c0-.68-.183-1.203-.548-1.568-.353-.378-.844-.567-1.474-.567s-1.128.189-1.493.567c-.353.365-.53.888-.53 1.568v5.727H7.277V7.932c0-.68-.183-1.203-.548-1.568-.353-.378-.844-.567-1.474-.567s-1.128.189-1.493.567c-.353.365-.53.888-.53 1.568v5.727H0V3.113h3.232v1.323a3.377 3.377 0 0 1 1.285-1.04C5.046 3.133 5.644 3 6.312 3c.794 0 1.5.17 2.117.51.63.34 1.121.825 1.474 1.455a4.248 4.248 0 0 1 1.493-1.417A4.034 4.034 0 0 1 13.456 3Zm9.805 10.186c.832.441 1.764.662 2.797.662 1.033 0 1.966-.22 2.797-.662a4.86 4.86 0 0 0 1.985-1.89c.49-.831.737-1.789.737-2.872 0-1.084-.24-2.035-.719-2.854a4.856 4.856 0 0 0-1.965-1.909C28.06 3.221 27.128 3 26.095 3c-1.033 0-1.965.22-2.797.661a4.856 4.856 0 0 0-1.965 1.91c-.48.818-.718 1.77-.718 2.853 0 1.096.233 2.053.699 2.872a4.924 4.924 0 0 0 1.946 1.89Zm4.366-2.816c-.429.454-.952.68-1.569.68a2.017 2.017 0 0 1-1.55-.68c-.403-.453-.604-1.102-.604-1.946 0-.857.208-1.506.623-1.947.416-.453.939-.68 1.569-.68a2.02 2.02 0 0 1 1.55.68c.428.454.642 1.103.642 1.947 0 .844-.22 1.493-.661 1.946Zm23.856 3.478c-1.033 0-1.966-.22-2.797-.662a4.924 4.924 0 0 1-1.947-1.89c-.466-.819-.699-1.776-.699-2.872 0-1.084.24-2.035.718-2.854a4.856 4.856 0 0 1 1.965-1.909C49.554 3.221 50.486 3 51.52 3s1.966.22 2.797.661a4.856 4.856 0 0 1 1.966 1.91c.479.818.718 1.77.718 2.853 0 1.083-.246 2.04-.737 2.872a4.86 4.86 0 0 1-1.984 1.89c-.832.441-1.764.662-2.797.662Zm0-2.797c.617 0 1.14-.227 1.568-.68.441-.454.662-1.103.662-1.947 0-.844-.215-1.493-.643-1.947a2.017 2.017 0 0 0-1.55-.68c-.63 0-1.152.227-1.568.68-.416.441-.624 1.09-.624 1.947 0 .844.202 1.493.605 1.946.416.454.932.68 1.55.68Zm-13.15 7.502L44.945 3H41.45l-2.42 6.596L36.594 3h-3.61l4.29 10.186-2.419 5.367h3.477Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1skl2fz\",layoutDependency:layoutDependency,layoutId:\"RjwtZZSV3\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tzjvfd\",layoutDependency:layoutDependency,layoutId:\"kqamb6Jqv\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":LeTUL7nCA\",webPageId:\"rgmXpCQEj\"},implicitPathVariables:undefined},{href:{hash:\":LeTUL7nCA\",webPageId:\"rgmXpCQEj\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+35+0,...addPropertyOverrides({Aqip1WVNL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+93+20+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fu128-container\",layoutDependency:layoutDependency,layoutId:\"x3XxuDUHL-container\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"x3XxuDUHL\",kcKdHX2wm:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Pricing\",layoutId:\"x3XxuDUHL\",NKudH2mEX:resolvedLinks[0],variant:\"bhvtGagRp\",width:\"100%\",...addPropertyOverrides({Aqip1WVNL:{NKudH2mEX:resolvedLinks[1]}},baseVariant,gestureVariant)})})});}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+35+0,...addPropertyOverrides({Aqip1WVNL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+93+20+0+44}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ywg4qj-container\",layoutDependency:layoutDependency,layoutId:\"RzNPDuUVr-container\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"RzNPDuUVr\",kcKdHX2wm:(_getLocalizedValue=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Contact us\",layoutId:\"RzNPDuUVr\",NKudH2mEX:\"https://docs.google.com/forms/d/e/1FAIpQLSdP4RtwLWqUU1VcXvcBrlEq6nDoO48UkhsRifbH2p6eXF0Zpw/viewform\",variant:\"bhvtGagRp\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"B4FU3PwSm\"},implicitPathVariables:undefined},{href:{webPageId:\"B4FU3PwSm\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+35+0,...addPropertyOverrides({Aqip1WVNL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+93+20+0+88}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-us323t-container\",layoutDependency:layoutDependency,layoutId:\"DW9H4LSOu-container\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"DW9H4LSOu\",kcKdHX2wm:(_getLocalizedValue=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Blog\",layoutId:\"DW9H4LSOu\",NKudH2mEX:resolvedLinks1[0],variant:\"bhvtGagRp\",width:\"100%\",...addPropertyOverrides({Aqip1WVNL:{NKudH2mEX:resolvedLinks1[1]}},baseVariant,gestureVariant)})})});}}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"If1zFRjRJ\"},implicitPathVariables:undefined},{href:{webPageId:\"If1zFRjRJ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+35+0,...addPropertyOverrides({Aqip1WVNL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+93+20+0+132}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18lovz4-container\",layoutDependency:layoutDependency,layoutId:\"nHGUnP2ss-container\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"nHGUnP2ss\",kcKdHX2wm:(_getLocalizedValue=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Ground\",layoutId:\"nHGUnP2ss\",NKudH2mEX:resolvedLinks2[0],variant:\"bhvtGagRp\",width:\"100%\",...addPropertyOverrides({Aqip1WVNL:{NKudH2mEX:resolvedLinks2[1]}},baseVariant,gestureVariant)})})});}}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":LeTUL7nCA\",webPageId:\"rgmXpCQEj\"},implicitPathVariables:undefined},{href:{hash:\":LeTUL7nCA\",webPageId:\"rgmXpCQEj\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/{var _getLocalizedValue;return _jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+35+0,...addPropertyOverrides({Aqip1WVNL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+93+20+0+176}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c9ok6l-container\",layoutDependency:layoutDependency,layoutId:\"GINGFzIqk-container\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"GINGFzIqk\",kcKdHX2wm:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Pricing\",layoutId:\"GINGFzIqk\",NKudH2mEX:resolvedLinks3[0],variant:\"bhvtGagRp\",width:\"100%\",...addPropertyOverrides({Aqip1WVNL:{NKudH2mEX:resolvedLinks3[1]}},baseVariant,gestureVariant)})})});}}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+35+0,...addPropertyOverrides({Aqip1WVNL:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+93+20+0+220}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-priy78-container\",layoutDependency:layoutDependency,layoutId:\"Ek6evyNge-container\",children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"Ek6evyNge\",kcKdHX2wm:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Contact us\",layoutId:\"Ek6evyNge\",NKudH2mEX:\"https://docs.google.com/forms/d/e/1FAIpQLSdP4RtwLWqUU1VcXvcBrlEq6nDoO48UkhsRifbH2p6eXF0Zpw/viewform\",variant:\"bhvtGagRp\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1588e0r-container\",\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"fHJy_YAz7-container\",name:\"Menu\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:(_getLocalizedValue2=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"House\",iconSelection:\"List\",id:\"fHJy_YAz7\",layoutId:\"fHJy_YAz7\",mirrored:false,name:\"Menu\",onClick:onClick1jfbi8x,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({Aqip1WVNL:{color:Tyvh_HtHO,iconSelection:\"X\",onClick:onClickqttkt0},onpetFyn_:{color:Tyvh_HtHO,onClick:onClick1avyur6}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-b3hc3a\",layoutDependency:layoutDependency,layoutId:\"dWnhvE9MD\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||89)-0-94)/2)+20+0,...addPropertyOverrides({onpetFyn_:{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||76)-0-76)/2)+20+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10g15fp-container\",layoutDependency:layoutDependency,layoutId:\"f06XtOmcY-container\",children:/*#__PURE__*/_jsx(ButtonWithGoAppWithMappedReactProps1v1ipky,{eszixBaDA:10,height:\"100%\",id:\"f06XtOmcY\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:(_getLocalizedValue3=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Get started\",layoutId:\"f06XtOmcY\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgba(255, 255, 255, 0.05)\",variant:JU5116W8C,width:\"100%\",...addPropertyOverrides({onpetFyn_:{eszixBaDA:6,RmkZjgJwi:\"ArrowFatLinesUp\",style:{height:\"100%\"},variant:\"HzoMS3wWs\"}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-EmNxU.framer-1fzotco, .framer-EmNxU .framer-1fzotco { display: block; }\",\".framer-EmNxU.framer-mt4ri7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1120px; }\",\".framer-EmNxU .framer-73v5rz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; overflow: visible; padding: 20px; position: relative; width: 1px; z-index: 0; }\",\".framer-EmNxU .framer-1nhbmct { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-EmNxU .framer-1ptso1i { aspect-ratio: 5.684210526315789 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); position: relative; width: 131px; }\",\".framer-EmNxU .framer-1skl2fz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 1px; }\",\".framer-EmNxU .framer-1tzjvfd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-EmNxU .framer-1fu128-container, .framer-EmNxU .framer-ywg4qj-container, .framer-EmNxU .framer-us323t-container, .framer-EmNxU .framer-18lovz4-container, .framer-EmNxU .framer-1c9ok6l-container, .framer-EmNxU .framer-priy78-container, .framer-EmNxU .framer-10g15fp-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-EmNxU .framer-1588e0r-container { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-EmNxU .framer-b3hc3a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EmNxU.framer-mt4ri7, .framer-EmNxU .framer-1nhbmct, .framer-EmNxU .framer-1skl2fz, .framer-EmNxU .framer-1tzjvfd, .framer-EmNxU .framer-b3hc3a { gap: 0px; } .framer-EmNxU.framer-mt4ri7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-EmNxU.framer-mt4ri7 > :first-child, .framer-EmNxU .framer-1nhbmct > :first-child, .framer-EmNxU .framer-1skl2fz > :first-child, .framer-EmNxU .framer-1tzjvfd > :first-child, .framer-EmNxU .framer-b3hc3a > :first-child { margin-left: 0px; } .framer-EmNxU.framer-mt4ri7 > :last-child, .framer-EmNxU .framer-1nhbmct > :last-child, .framer-EmNxU .framer-1skl2fz > :last-child, .framer-EmNxU .framer-1tzjvfd > :last-child, .framer-EmNxU .framer-b3hc3a > :last-child { margin-right: 0px; } .framer-EmNxU .framer-1nhbmct > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-EmNxU .framer-1skl2fz > *, .framer-EmNxU .framer-1tzjvfd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-EmNxU .framer-b3hc3a > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } }\",\".framer-EmNxU.framer-v-1fyjeqj.framer-mt4ri7 { width: 390px; }\",\".framer-EmNxU.framer-v-1fyjeqj .framer-1nhbmct { padding: 0px; }\",\".framer-EmNxU.framer-v-1fyjeqj .framer-1ptso1i { height: var(--framer-aspect-ratio-supported, 18px); width: 100px; }\",\".framer-EmNxU.framer-v-1fyjeqj .framer-1tzjvfd { order: 1; }\",\".framer-EmNxU.framer-v-1fyjeqj .framer-b3hc3a { order: 0; }\",\".framer-EmNxU.framer-v-1fyjeqj .framer-10g15fp-container { height: 36px; }\",\".framer-EmNxU.framer-v-c38452.framer-mt4ri7 { flex-direction: column; justify-content: flex-start; min-height: calc(var(--framer-viewport-height, 100vh) * 1); width: 390px; }\",\".framer-EmNxU.framer-v-c38452 .framer-73v5rz { flex: none; order: 0; width: 100%; }\",\".framer-EmNxU.framer-v-c38452 .framer-1skl2fz { flex: none; order: 1; width: 100%; }\",\".framer-EmNxU.framer-v-c38452 .framer-1tzjvfd { flex-direction: column; }\",\".framer-EmNxU.framer-v-c38452 .framer-b3hc3a { min-height: 28px; min-width: 198px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-EmNxU.framer-v-c38452.framer-mt4ri7, .framer-EmNxU.framer-v-c38452 .framer-1tzjvfd { gap: 0px; } .framer-EmNxU.framer-v-c38452.framer-mt4ri7 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-EmNxU.framer-v-c38452.framer-mt4ri7 > :first-child, .framer-EmNxU.framer-v-c38452 .framer-1tzjvfd > :first-child { margin-top: 0px; } .framer-EmNxU.framer-v-c38452.framer-mt4ri7 > :last-child, .framer-EmNxU.framer-v-c38452 .framer-1tzjvfd > :last-child { margin-bottom: 0px; } .framer-EmNxU.framer-v-c38452 .framer-1tzjvfd > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 89\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"onpetFyn_\":{\"layout\":[\"fixed\",\"auto\"]},\"Aqip1WVNL\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",null]}}}\n * @framerVariables {\"Tyvh_HtHO\":\"text\",\"LylWg8UG8\":\"backgroundBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhbAInN3r1=withCSS(Component,css,\"framer-EmNxU\");export default FramerhbAInN3r1;FramerhbAInN3r1.displayName=\"Nav Simple\";FramerhbAInN3r1.defaultProps={height:89,width:1120};addPropertyControls(FramerhbAInN3r1,{variant:{options:[\"b8qkNL2kK\",\"onpetFyn_\",\"Aqip1WVNL\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},Tyvh_HtHO:{defaultValue:\"rgb(255, 255, 255)\",title:\"Text\",type:ControlType.Color},LylWg8UG8:{defaultValue:0,max:7,title:\"Background Blur\",type:ControlType.Number}});addFonts(FramerhbAInN3r1,[{explicitInter:true,fonts:[]},...NavMenuFonts,...PhosphorFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhbAInN3r1\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"89\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"onpetFyn_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Aqip1WVNL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",null]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Tyvh_HtHO\\\":\\\"text\\\",\\\"LylWg8UG8\\\":\\\"backgroundBlur\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "uaAAqF,SAASA,GAAYC,EAAO,CACjH,IAAMC,EAAUC,GAAK,CAAC,MAAM,OAAO,OAAO,CAAC,GAAGF,CAAM,CAAC,CAAC,CAAC,EACjDG,EAAaC,GAAU,CAC1B,OAAOA,GAAW,aAAYA,EAASA,EAASH,EAAU,KAAK,GAAGA,EAAU,MAAM,OAAO,OAAO,CAAC,GAAGA,EAAU,MAAM,GAAGG,CAAQ,CAAC,CAAE,EACjIC,EAAW,OAAOL,GAAS,SAAS,OAAO,OAAO,CAAC,GAAGA,CAAM,CAAC,EAAEA,EAC7DM,EAAa,IAAI,IACjBC,EAAcH,GAAU,CAC3B,OAAOA,GAAW,aAAYA,EAASA,EAASC,CAAU,GAAGA,EAAW,OAAOD,GAAW,SAAS,OAAO,OAAO,CAAC,GAAGC,EAAW,GAAGD,CAAQ,CAAC,EAAEA,EACjJE,EAAa,QAAQE,GAAQA,EAAOH,CAAU,CAAC,CAAE,EACjD,SAASI,GAAU,CACnB,GAAK,CAACC,EAAMC,CAAQ,EAAEC,GAASP,CAAU,EAIzC,OAFAQ,GAAU,KACVP,EAAa,IAAIK,CAAQ,EAAQ,IAAIL,EAAa,OAAOK,CAAQ,GAAI,CAAC,CAAC,EACpEG,GAAe,IAAI,IAAMA,GAAe,EAAQ,CAACb,EAAU,MAAME,CAAY,GAC1E,CAACO,EAAMH,CAAa,CAAG,CAAC,OAAOE,CAAS,CCfvC,IAAMM,GAAgB,CACzB,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASO,IAAMC,GAAyB,CAClC,GAAGC,GACH,SAAU,QACd,ECfA,IAAMC,GAASC,GAAY,CAAC,WAAW,SAAS,CAAC,EAA0R,SAASC,GAAUC,EAAU,CAAC,OAAOC,GAAO,CAAC,GAAK,CAACC,EAAQC,CAAU,EAAEC,GAAS,EAAE,EAAEC,GAAU,IAAI,CAAC,IAAMH,EAAQI,EAAU,SAAS,EAAKJ,GAASC,EAAWD,CAAO,CAAG,EAAE,CAAC,CAAC,EAAE,IAAMI,EAAUC,GAAY,CAAC,GAAG,CAAC,IAAIC,EAAUC,EAAY,SAAS,OAAaC,EAAI,IAAI,OAAO,QAAQ,OAAOH,EAAW,eAAe,CAAC,EAAE,OAAGC,EAAIC,EAAY,MAAMC,CAAG,GAAU,SAASF,EAAI,CAAC,CAAC,EAAS,EAAG,OAAOG,EAAN,CAAa,QAAQ,IAAI,WAAWA,CAAK,CAAE,CAAC,EAAE,OAAoBC,EAAKZ,EAAU,CAAC,GAAGC,EAAM,QAAQ,IAAI,CAAC,IAAIY,EAAiCC,EAA2B,IAAMC,IAAWD,EAA2BE,EAAO,UAAU,YAAY,MAAMF,IAA6B,SAAeD,EAAiCC,EAA2B,MAAM,GAAG,KAAK,MAAMD,IAAmC,OAA3H,OAAyIA,EAAiC,CAAC,IAAI,KAAWI,EAAO,SAAS,OAAUf,EAASc,EAAO,SAAS,KAAK,4BAA4BD,UAAiBE,IAAeD,EAAO,SAAS,KAAK,4BAA4BD,cAAqBE,GAAU,CAAC,CAAC,CAAE,CAAE,CCC91C,IAAMC,GAAkB,CAC3B,MAAO,OACP,OAAQ,OACR,QAAS,OACT,eAAgB,SAChB,WAAY,QAChB,EASA,IAAMC,GAAkB,CACpB,GAAGC,GACH,aAAc,EACd,WAAY,2BACZ,OAAQ,uCACR,MAAO,UACP,cAAe,QACnB,EACaC,GAAgCC,EAAW,CAACC,EAAGC,IACnCC,EAAK,MAAO,CAC7B,MAAON,GACP,IAAKK,CACT,CAAC,CACJ,EC9BD,IAAIE,GACAC,GACAC,GAAQC,IACLH,KACHA,GAA4B,IAAI,IAAI,CAClC,CACE,OACgBG,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,6RAA8R,CAAC,CAAC,CAC7Y,EACA,CACE,UACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAC9E,OACA,CACE,EAAG,yGACH,QAAS,KACX,CACF,EAAmBA,EAAM,cAAc,OAAQ,CAAE,EAAG,kQAAmQ,CAAC,CAAC,CAC3T,EACA,CACE,OACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,mMAAoM,CAAC,CAAC,CACnT,EACA,CACE,QACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,mTAAoT,CAAC,CAAC,CACna,EACA,CACE,UACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,kQAAmQ,CAAC,CAAC,CAClX,EACA,CACE,OACgBA,EAAM,cAAcA,EAAM,SAAU,KAAsBA,EAAM,cAAc,OAAQ,CAAE,EAAG,0SAA2S,CAAC,CAAC,CAC1Z,CACF,CAAC,EACDF,GAAYE,EAAM,WAAW,CAACC,EAAOC,IAAwBF,EAAM,cAAc,IAAK,CAAE,IAAAE,EAAK,GAAGD,CAAM,EAAGJ,GAAU,IAAII,EAAM,MAAM,CAAC,CAAC,GAEhIH,IAYT,IAAIK,GAAgBC,GC9C4G,IAAMC,GAAc,CAAC,QAAQ,CAAC,KAAKC,EAAY,YAAY,EAAE,YAAY,CAAC,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,EAAE,aAAa,CAAC,KAAKA,EAAY,YAAY,CAAC,EAAQC,GAAY,CAACC,EAAIC,IAASD,EAAI,KAAKE,GAAGA,EAAE,YAAY,EAAE,SAASD,CAAM,CAAC,EAG7P,SAASE,GAAiBC,EAASC,EAAaC,EAAW,GAAGC,EAAcC,EAAsB,CAC/R,IAAMC,EAAiBC,EAAQ,IAAI,CAAC,GAAGJ,GAAY,MAAqDA,GAAW,SAAU,EAAE,OAAO,KAAK,IAAMK,EAAeL,EAAW,YAAY,EAAE,QAAQ,QAAQ,EAAE,EAAE,IAAIM,EAChD,OAA7IA,EAAgBJ,EAAsBG,CAAc,KAAK,MAAMC,IAAkB,OAAOA,EAAgBC,GAAYT,EAASO,CAAc,CAAsB,EAAE,CAACJ,EAAcD,CAAU,CAAC,EAAyD,OAA5CD,EAAaE,EAAcE,CAA6B,CCT+N,IAAMK,GAAS,CAAC,QAAQ,cAAc,kBAAkB,oBAAoB,WAAW,mBAAmB,kBAAkB,kBAAkB,kBAAkB,eAAe,UAAU,QAAQ,QAAQ,cAAc,oBAAoB,sBAAsB,YAAY,kBAAkB,aAAa,mBAAmB,WAAW,iBAAiB,aAAa,YAAY,SAAS,eAAe,cAAc,QAAQ,cAAc,WAAW,eAAe,YAAY,YAAY,oBAAoB,oBAAoB,UAAU,aAAa,cAAc,WAAW,eAAe,gBAAgB,oBAAoB,qBAAqB,oBAAoB,kBAAkB,qBAAqB,mBAAmB,kBAAkB,mBAAmB,kBAAkB,sBAAsB,uBAAuB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,qBAAqB,iBAAiB,YAAY,gBAAgB,iBAAiB,qBAAqB,sBAAsB,iBAAiB,qBAAqB,mBAAmB,kBAAkB,sBAAsB,oBAAoB,mBAAmB,oBAAoB,eAAe,eAAe,mBAAmB,mBAAmB,oBAAoB,iBAAiB,oBAAoB,oBAAoB,qBAAqB,kBAAkB,gBAAgB,aAAa,YAAY,gBAAgB,oBAAoB,qBAAqB,gBAAgB,iBAAiB,cAAc,kBAAkB,mBAAmB,aAAa,kBAAkB,sBAAsB,uBAAuB,gBAAgB,kBAAkB,iBAAiB,mBAAmB,gBAAgB,oBAAoB,qBAAqB,iBAAiB,kBAAkB,iBAAiB,eAAe,kBAAkB,gBAAgB,eAAe,gBAAgB,UAAU,cAAc,eAAe,kBAAkB,eAAe,mBAAmB,WAAW,mBAAmB,uBAAuB,iBAAiB,kBAAkB,cAAc,YAAY,oBAAoB,kBAAkB,cAAc,iBAAiB,UAAU,gBAAgB,iBAAiB,YAAY,WAAW,iBAAiB,KAAK,OAAO,UAAU,MAAM,OAAO,eAAe,WAAW,YAAY,MAAM,YAAY,UAAU,WAAW,OAAO,UAAU,UAAU,OAAO,YAAY,WAAW,cAAc,iBAAiB,SAAS,aAAa,UAAU,kBAAkB,eAAe,cAAc,cAAc,aAAa,gBAAgB,cAAc,sBAAsB,uBAAuB,sBAAsB,sBAAsB,qBAAqB,iBAAiB,YAAY,SAAS,MAAM,aAAa,YAAY,cAAc,OAAO,cAAc,aAAa,oBAAoB,kBAAkB,cAAc,YAAY,QAAQ,OAAO,cAAc,UAAU,SAAS,aAAa,YAAY,OAAO,YAAY,YAAY,qBAAqB,iBAAiB,aAAa,OAAO,OAAO,OAAO,OAAO,eAAe,WAAW,eAAe,eAAe,WAAW,WAAW,iBAAiB,YAAY,kBAAkB,QAAQ,OAAO,SAAS,cAAc,WAAW,YAAY,cAAc,eAAe,aAAa,cAAc,gBAAgB,gBAAgB,gBAAgB,iBAAiB,QAAQ,SAAS,QAAQ,SAAS,YAAY,iBAAiB,YAAY,QAAQ,UAAU,WAAW,MAAM,YAAY,WAAW,WAAW,oBAAoB,iBAAiB,YAAY,YAAY,MAAM,YAAY,WAAW,SAAS,OAAO,aAAa,WAAW,gBAAgB,gBAAgB,cAAc,eAAe,gBAAgB,gBAAgB,eAAe,gBAAgB,eAAe,YAAY,WAAW,SAAS,aAAa,eAAe,cAAc,WAAW,MAAM,aAAa,aAAa,YAAY,aAAa,QAAQ,aAAa,sBAAsB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,oBAAoB,kBAAkB,kBAAkB,mBAAmB,gBAAgB,YAAY,YAAY,gBAAgB,gBAAgB,iBAAiB,cAAc,aAAa,UAAU,cAAc,SAAS,eAAe,eAAe,eAAe,MAAM,iBAAiB,iBAAiB,gBAAgB,mBAAmB,iBAAiB,kBAAkB,cAAc,YAAY,cAAc,QAAQ,aAAa,mBAAmB,oBAAoB,YAAY,kBAAkB,WAAW,qBAAqB,aAAa,YAAY,gBAAgB,cAAc,WAAW,gBAAgB,aAAa,eAAe,OAAO,eAAe,mBAAmB,oBAAoB,mBAAmB,aAAa,iBAAiB,kBAAkB,iBAAiB,WAAW,YAAY,eAAe,mBAAmB,oBAAoB,mBAAmB,WAAW,QAAQ,cAAc,gBAAgB,QAAQ,cAAc,WAAW,cAAc,oBAAoB,eAAe,SAAS,SAAS,SAAS,UAAU,WAAW,SAAS,YAAY,iBAAiB,SAAS,eAAe,aAAa,iBAAiB,cAAc,cAAc,eAAe,mBAAmB,YAAY,OAAO,YAAY,gBAAgB,QAAQ,iBAAiB,iBAAiB,iBAAiB,YAAY,mBAAmB,QAAQ,iBAAiB,eAAe,aAAa,WAAW,iBAAiB,YAAY,YAAY,aAAa,YAAY,WAAW,eAAe,SAAS,SAAS,OAAO,aAAa,WAAW,OAAO,YAAY,aAAa,cAAc,kBAAkB,SAAS,aAAa,OAAO,eAAe,QAAQ,UAAU,kBAAkB,mBAAmB,UAAU,UAAU,cAAc,cAAc,gBAAgB,WAAW,qBAAqB,UAAU,SAAS,aAAa,OAAO,aAAa,WAAW,YAAY,YAAY,aAAa,QAAQ,kBAAkB,MAAM,YAAY,MAAM,QAAQ,aAAa,aAAa,UAAU,OAAO,QAAQ,YAAY,kBAAkB,QAAQ,aAAa,cAAc,OAAO,YAAY,kBAAkB,cAAc,uBAAuB,cAAc,iBAAiB,uBAAuB,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,cAAc,SAAS,cAAc,aAAa,WAAW,WAAW,OAAO,UAAU,eAAe,YAAY,YAAY,eAAe,qBAAqB,oBAAoB,sBAAsB,eAAe,eAAe,qBAAqB,sBAAsB,UAAU,UAAU,eAAe,WAAW,WAAW,UAAU,UAAU,YAAY,UAAU,OAAO,YAAY,cAAc,SAAS,MAAM,MAAM,OAAO,WAAW,MAAM,aAAa,WAAW,UAAU,kBAAkB,YAAY,kBAAkB,mBAAmB,oBAAoB,WAAW,iBAAiB,QAAQ,UAAU,eAAe,QAAQ,OAAO,WAAW,iBAAiB,aAAa,YAAY,cAAc,MAAM,WAAW,MAAM,WAAW,QAAQ,cAAc,WAAW,QAAQ,SAAS,WAAW,eAAe,iBAAiB,qBAAqB,YAAY,SAAS,SAAS,gBAAgB,cAAc,OAAO,kBAAkB,UAAU,gBAAgB,SAAS,MAAM,YAAY,WAAW,aAAa,mBAAmB,aAAa,OAAO,WAAW,eAAe,UAAU,SAAS,mBAAmB,iBAAiB,MAAM,OAAO,cAAc,oBAAoB,UAAU,gBAAgB,YAAY,OAAO,cAAc,gBAAgB,cAAc,YAAY,QAAQ,YAAY,WAAW,UAAU,UAAU,UAAU,aAAa,UAAU,WAAW,YAAY,UAAU,UAAU,SAAS,UAAU,WAAW,sBAAsB,SAAS,YAAY,UAAU,WAAW,UAAU,UAAU,SAAS,SAAS,UAAU,UAAU,WAAW,SAAS,UAAU,UAAU,YAAY,UAAU,QAAQ,UAAU,UAAU,QAAQ,WAAW,aAAa,YAAY,YAAY,cAAc,oBAAoB,eAAe,OAAO,mBAAmB,aAAa,YAAY,WAAW,cAAc,OAAO,aAAa,OAAO,aAAa,iBAAiB,gBAAgB,cAAc,QAAQ,aAAa,QAAQ,iBAAiB,eAAe,aAAa,iBAAiB,YAAY,SAAS,cAAc,cAAc,eAAe,SAAS,eAAe,aAAa,cAAc,cAAc,mBAAmB,kBAAkB,kBAAkB,aAAa,aAAa,eAAe,qBAAqB,mBAAmB,oBAAoB,mBAAmB,mBAAmB,mBAAmB,aAAa,aAAa,UAAU,WAAW,iBAAiB,aAAa,YAAY,QAAQ,eAAe,aAAa,WAAW,SAAS,eAAe,gBAAgB,UAAU,iBAAiB,SAAS,SAAS,UAAU,QAAQ,QAAQ,OAAO,WAAW,UAAU,eAAe,iBAAiB,aAAa,eAAe,kBAAkB,oBAAoB,QAAQ,MAAM,OAAO,YAAY,YAAY,UAAU,UAAU,WAAW,iBAAiB,aAAa,aAAa,mBAAmB,QAAQ,sBAAsB,sBAAsB,cAAc,eAAe,aAAa,SAAS,UAAU,OAAO,gBAAgB,sBAAsB,mBAAmB,kBAAkB,aAAa,mBAAmB,iBAAiB,qBAAqB,MAAM,SAAS,WAAW,WAAW,gBAAgB,SAAS,cAAc,QAAQ,eAAe,cAAc,qBAAqB,WAAW,WAAW,SAAS,YAAY,YAAY,SAAS,OAAO,gBAAgB,cAAc,YAAY,cAAc,UAAU,WAAW,eAAe,YAAY,WAAW,YAAY,eAAe,WAAW,gBAAgB,iBAAiB,UAAU,aAAa,eAAe,UAAU,gBAAgB,gBAAgB,eAAe,YAAY,YAAY,aAAa,UAAU,OAAO,eAAe,cAAc,aAAa,aAAa,UAAU,QAAQ,aAAa,YAAY,gBAAgB,qBAAqB,YAAY,UAAU,iBAAiB,WAAW,cAAc,oBAAoB,SAAS,SAAS,QAAQ,WAAW,YAAY,gBAAgB,eAAe,kBAAkB,kBAAkB,sBAAsB,qBAAqB,QAAQ,YAAY,cAAc,YAAY,WAAW,sBAAsB,qBAAqB,QAAQ,cAAc,cAAc,SAAS,eAAe,WAAW,OAAO,gBAAgB,YAAY,kBAAkB,iBAAiB,eAAe,UAAU,SAAS,MAAM,WAAW,OAAO,WAAW,SAAS,MAAM,YAAY,WAAW,UAAU,QAAQ,SAAS,eAAe,OAAO,cAAc,SAAS,QAAQ,aAAa,SAAS,OAAO,UAAU,OAAO,aAAa,WAAW,kBAAkB,gBAAgB,gBAAgB,gBAAgB,WAAW,YAAY,oBAAoB,aAAa,YAAY,aAAa,iBAAiB,cAAc,eAAe,eAAe,OAAO,YAAY,aAAa,kBAAkB,uBAAuB,eAAe,eAAe,YAAY,OAAO,cAAc,aAAa,aAAa,YAAY,sBAAsB,cAAc,WAAW,WAAW,OAAO,UAAU,cAAc,gBAAgB,oBAAoB,WAAW,aAAa,iBAAiB,UAAU,MAAM,YAAY,SAAS,iBAAiB,kBAAkB,uBAAuB,sBAAsB,UAAU,SAAS,aAAa,aAAa,aAAa,eAAe,mBAAmB,mBAAmB,aAAa,eAAe,eAAe,UAAU,YAAY,UAAU,eAAe,iBAAiB,aAAa,QAAQ,gBAAgB,aAAa,YAAY,kBAAkB,WAAW,SAAS,gBAAgB,WAAW,SAAS,YAAY,aAAa,kBAAkB,kBAAkB,aAAa,qBAAqB,uBAAuB,qBAAqB,oBAAoB,QAAQ,cAAc,cAAc,QAAQ,YAAY,UAAU,iBAAiB,cAAc,OAAO,YAAY,QAAQ,aAAa,SAAS,aAAa,YAAY,QAAQ,iBAAiB,mBAAmB,kBAAkB,cAAc,cAAc,YAAY,kBAAkB,aAAa,kBAAkB,iBAAiB,mBAAmB,kBAAkB,SAAS,UAAU,eAAe,WAAW,YAAY,oBAAoB,YAAY,cAAc,cAAc,gBAAgB,UAAU,OAAO,YAAY,aAAa,WAAW,UAAU,eAAe,aAAa,eAAe,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,oBAAoB,kBAAkB,oBAAoB,kBAAkB,mBAAmB,cAAc,aAAa,aAAa,aAAa,YAAY,cAAc,YAAY,oBAAoB,mBAAmB,mBAAmB,mBAAmB,kBAAkB,oBAAoB,kBAAkB,oBAAoB,kBAAkB,mBAAmB,cAAc,YAAY,aAAa,SAAS,MAAM,cAAc,UAAU,cAAc,UAAU,aAAa,SAAS,SAAS,cAAc,OAAO,UAAU,aAAa,kBAAkB,sBAAsB,cAAc,cAAc,UAAU,WAAW,QAAQ,aAAa,kBAAkB,iBAAiB,YAAY,sBAAsB,YAAY,YAAY,gBAAgB,OAAO,WAAW,OAAO,cAAc,QAAQ,cAAc,WAAW,aAAa,QAAQ,MAAM,SAAS,iBAAiB,SAAS,eAAe,aAAa,cAAc,eAAe,mBAAmB,oBAAoB,cAAc,WAAW,YAAY,SAAS,UAAU,SAAS,mBAAmB,eAAe,mBAAmB,qBAAqB,mBAAmB,kBAAkB,kBAAkB,mBAAmB,qBAAqB,oBAAoB,mBAAmB,cAAc,QAAQ,YAAY,kBAAkB,gBAAgB,YAAY,gBAAgB,aAAa,YAAY,aAAa,gBAAgB,SAAS,eAAe,KAAK,YAAY,cAAc,mBAAmB,YAAY,OAAO,WAAW,YAAY,gBAAgB,WAAW,OAAO,aAAa,UAAU,QAAQ,cAAc,SAAS,QAAQ,OAAO,aAAa,YAAY,WAAW,OAAO,eAAe,QAAQ,iBAAiB,OAAO,aAAa,YAAY,aAAa,YAAY,YAAY,UAAU,UAAU,WAAW,cAAc,QAAQ,eAAe,eAAe,oBAAoB,UAAU,WAAW,gBAAgB,kBAAkB,uBAAuB,QAAQ,UAAU,gBAAgB,qBAAqB,eAAe,cAAc,SAAS,WAAW,eAAe,QAAQ,SAAS,SAAS,UAAU,UAAU,QAAQ,cAAc,cAAc,UAAU,eAAe,UAAU,aAAa,UAAU,WAAW,SAAS,YAAY,kBAAkB,UAAU,aAAa,SAAS,aAAa,aAAa,SAAS,SAAS,eAAe,cAAc,QAAQ,SAAS,eAAe,OAAO,iBAAiB,cAAc,MAAM,YAAY,MAAM,QAAQ,WAAW,SAAS,OAAO,aAAa,WAAW,UAAU,aAAa,cAAc,WAAW,eAAe,SAAS,OAAO,YAAY,cAAc,eAAe,cAAc,OAAO,WAAW,iBAAiB,YAAY,eAAe,sBAAsB,sBAAsB,mBAAmB,gBAAgB,iBAAiB,SAAS,QAAQ,WAAW,eAAe,SAAS,cAAc,kBAAkB,gBAAgB,aAAa,cAAc,aAAa,gBAAgB,oBAAoB,cAAc,eAAe,cAAc,kBAAkB,eAAe,qBAAqB,SAAS,SAAS,SAAS,UAAU,iBAAiB,gBAAgB,UAAU,gBAAgB,QAAQ,SAAS,UAAU,YAAY,WAAW,UAAU,QAAQ,aAAa,WAAW,iBAAiB,cAAc,oBAAoB,QAAQ,YAAY,YAAY,UAAU,oBAAoB,YAAY,SAAS,cAAc,cAAc,YAAY,gBAAgB,gBAAgB,YAAY,gBAAgB,aAAa,cAAc,eAAe,UAAU,cAAc,YAAY,aAAa,OAAO,aAAa,YAAY,gBAAgB,iBAAiB,iBAAiB,QAAQ,UAAU,cAAc,cAAc,aAAa,cAAc,oBAAoB,mBAAmB,oBAAoB,qBAAqB,iBAAiB,eAAe,WAAW,cAAc,SAAS,UAAU,cAAc,aAAa,SAAS,kBAAkB,gBAAgB,cAAc,cAAc,SAAS,aAAa,mBAAmB,aAAa,sBAAsB,cAAc,QAAQ,aAAa,oBAAoB,YAAY,cAAc,SAAS,QAAQ,qBAAqB,OAAO,kBAAkB,WAAW,WAAW,cAAc,YAAY,gBAAgB,QAAQ,cAAc,UAAU,QAAQ,OAAO,aAAa,aAAa,WAAW,aAAa,UAAU,WAAW,iBAAiB,YAAY,iBAAiB,WAAW,iBAAiB,SAAS,WAAW,kBAAkB,iBAAiB,MAAM,SAAS,aAAa,aAAa,aAAa,mBAAmB,OAAO,WAAW,eAAe,QAAQ,YAAY,UAAU,SAAS,QAAQ,OAAO,MAAM,aAAa,YAAY,SAAS,OAAO,SAAS,eAAe,aAAa,mBAAmB,aAAa,OAAO,WAAW,iBAAiB,WAAW,iBAAiB,SAAS,kBAAkB,mBAAmB,gBAAgB,iBAAiB,QAAQ,cAAc,QAAQ,YAAY,YAAY,WAAW,WAAW,aAAa,WAAW,aAAa,aAAa,cAAc,oBAAoB,gBAAgB,kBAAkB,QAAQ,aAAa,gBAAgB,UAAU,cAAc,kBAAkB,iBAAiB,oBAAoB,cAAc,SAAS,aAAa,WAAW,SAAS,YAAY,aAAa,QAAQ,QAAQ,SAAS,OAAO,OAAO,aAAa,cAAc,SAAS,cAAc,UAAU,QAAQ,UAAU,OAAO,aAAa,QAAQ,UAAU,YAAY,sBAAsB,cAAc,cAAc,gBAAgB,QAAQ,gBAAgB,cAAc,OAAO,YAAY,QAAQ,cAAc,OAAO,gBAAgB,cAAc,gBAAgB,OAAO,gBAAgB,WAAW,gBAAgB,WAAW,YAAY,UAAU,WAAW,iBAAiB,UAAU,kBAAkB,SAAS,QAAQ,eAAe,aAAa,aAAa,cAAc,WAAW,iBAAiB,QAAQ,QAAQ,cAAc,SAAS,eAAe,MAAM,OAAO,YAAY,aAAa,kBAAkB,mBAAmB,iBAAiB,kBAAkB,iBAAiB,YAAY,WAAW,WAAW,YAAY,WAAW,gBAAgB,YAAY,aAAa,aAAa,QAAQ,YAAY,aAAa,MAAM,QAAQ,cAAc,YAAY,UAAU,QAAQ,cAAc,mBAAmB,kBAAkB,WAAW,cAAc,iBAAiB,QAAQ,QAAQ,YAAY,aAAa,OAAO,SAAS,YAAY,UAAU,gBAAgB,iBAAiB,iBAAiB,iBAAiB,QAAQ,eAAe,WAAW,aAAa,eAAe,WAAW,gBAAgB,QAAQ,SAAS,cAAc,eAAe,aAAa,eAAe,aAAa,mBAAmB,WAAW,UAAU,aAAa,WAAW,YAAY,QAAQ,OAAO,WAAW,cAAc,OAAO,SAAS,IAAI,UAAU,QAAQ,UAAU,OAAO,UAAU,aAAa,EAAQC,GAAc,uCAA6CC,GAAc,CAAC,OAAO,QAAQ,UAAU,OAAO,OAAO,SAAS,EAAQC,GAAsBH,GAAS,OAAO,CAACI,EAAIC,KAAOD,EAAIC,EAAI,YAAY,CAAC,EAAEA,EAAWD,GAAM,CAAC,CAAC,EAQ/goB,SAASE,EAAKC,EAAM,CAAC,GAAK,CAAC,MAAAC,EAAM,aAAAC,EAAa,WAAAC,EAAW,cAAAC,EAAc,QAAAC,EAAQ,YAAAC,EAAY,UAAAC,EAAU,aAAAC,EAAa,aAAAC,EAAa,OAAAC,EAAO,SAAAC,CAAQ,EAAEX,EAAYY,EAAUC,EAAO,EAAK,EAAQC,EAAQC,GAAiBtB,GAASS,EAAaC,EAAWC,EAAcR,EAAqB,EAAO,CAACoB,EAAaC,CAAe,EAAEC,GAASJ,IAAU,OAAOK,GAAaC,CAAK,EAAE,IAAI,EAAE,eAAeC,GAAc,CACxZ,GAAG,CAAuF,IAAMC,EAAO,MAAM,OAA9D,GAAG5B,KAAgBoB,eAA6FF,EAAU,SAAQK,EAAgBK,EAAO,QAAQF,CAAK,CAAC,CAAE,MAAC,CAAcR,EAAU,SAAQK,EAAgB,IAAI,CAAE,CAAC,CAACM,GAAU,KAAKX,EAAU,QAAQ,GAAKS,EAAa,EAAQ,IAAI,CAACT,EAAU,QAAQ,EAAM,GAAI,CAACE,CAAO,CAAC,EAAgE,IAAMU,EAAnDC,GAAa,QAAQ,IAAIA,GAAa,OAAgDC,EAAKC,GAAU,CAAC,CAAC,EAAE,KAAK,OAAoBD,EAAKE,EAAO,IAAI,CAAC,MAAM,CAAC,QAAQ,UAAU,EAAE,QAAAvB,EAAQ,aAAAG,EAAa,aAAAC,EAAa,YAAAH,EAAY,UAAAC,EAAU,SAASS,EAA0BU,EAAK,MAAM,CAAC,MAAM,6BAA6B,QAAQ,cAAc,MAAM,CAAC,WAAW,OAAO,MAAM,OAAO,OAAO,OAAO,QAAQ,eAAe,KAAKzB,EAAM,MAAAA,EAAM,WAAW,EAAE,UAAUU,EAAS,eAAe,MAAS,EAAE,UAAU,QAAQ,MAAMV,EAAM,SAAsByB,EAAKV,EAAa,CAAC,MAAMf,EAAM,OAAOS,CAAM,CAAC,CAAC,CAAC,EAAEc,CAAU,CAAC,CAAE,CAACzB,EAAK,YAAY,WAAWA,EAAK,aAAa,CAAC,MAAM,GAAG,OAAO,GAAG,cAAc,QAAQ,WAAW,QAAQ,MAAM,OAAO,aAAa,GAAK,OAAO,UAAU,SAAS,EAAK,EAAE8B,EAAoB9B,EAAK,CAAC,aAAa,CAAC,KAAK+B,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,SAAS,aAAa/B,EAAK,aAAa,YAAY,EAAE,cAAc,CAAC,KAAK+B,EAAY,KAAK,QAAQrC,GAAS,aAAaM,EAAK,aAAa,cAAc,MAAM,OAAO,OAAO,CAAC,CAAC,aAAAG,CAAY,IAAI,CAACA,EAAa,YAAY,yEAAyE,EAAE,WAAW,CAAC,KAAK4B,EAAY,OAAO,MAAM,OAAO,YAAY,wBAAmB,OAAO,CAAC,CAAC,aAAA5B,CAAY,IAAIA,CAAY,EAAE,MAAM,CAAC,KAAK4B,EAAY,MAAM,MAAM,QAAQ,aAAa/B,EAAK,aAAa,KAAK,EAAE,OAAO,CAAC,KAAK+B,EAAY,KAAK,MAAM,SAAS,aAAanC,GAAc,IAAIoC,GAAOA,EAAM,OAAO,CAAC,EAAE,YAAY,EAAEA,EAAM,MAAM,CAAC,CAAC,EAAE,QAAQpC,GAAc,aAAaI,EAAK,aAAa,MAAM,EAAE,SAAS,CAAC,KAAK+B,EAAY,QAAQ,aAAa,MAAM,cAAc,KAAK,aAAa/B,EAAK,aAAa,QAAQ,EAAE,GAAGiC,EAAa,CAAC,ECT3iE,IAAAC,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAO,IAAMC,GAAG,eAAkBC,GAAG,uCAAsBC,GAAG,eAAkBC,GAAG,eAAkBC,GAAG,SAAiBC,GAAG,qBAC/GC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECDrf,IAAAC,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,GAAA,OAAAC,KAAO,IAAMC,GAAG,YAAyBC,GAAG,2BAAwCC,GAAG,OAAoBC,GAAG,OAAoBC,GAAG,OACxHC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECA7U,IAAMC,GAAiB,CAAC,UAAUC,GAAiB,UAAUC,EAAe,EAAiB,SAARC,EAAmCC,EAAIC,EAAO,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAON,GAAiBK,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAM,OAAOA,EAAOF,EAAOA,EAAO,SAAU,CCDhX,IAAAG,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,OAAAC,KAAO,IAAMC,GAAG,SACHC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECD5J,IAAAC,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,OAAAC,KAAO,IAAMC,GAAG,OACHC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECA6Z,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAiB,CAAC,UAAUC,GAAiB,UAAUC,EAAe,EAAQC,GAAkB,CAACC,EAAIC,IAAS,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAON,GAAiBK,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAO,OAAOA,EAAQF,EAAOA,EAAO,SAAU,EAAQG,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAF,EAAM,SAAAG,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWP,GAAmCI,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,OAAO,YAAY,KAAK,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,MAAAC,EAAM,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,WAAWC,EAAKH,GAAmCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,WAAW,UAAUJ,GAAgCG,EAAM,UAAU,UAAUL,GAAmCK,EAAM,UAAU,SAASG,GAAOD,EAAuCV,GAAwBQ,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMhC,IAAegC,EAAM,iBAAwBhC,EAAS,KAAK,GAAG,EAAEgC,EAAM,iBAAwBhC,EAAS,KAAK,GAAG,EAAUqC,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3C,EAAQ,UAAA4C,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAExB,GAASO,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAzD,CAAQ,EAAE0D,GAAgB,CAAC,WAAA/D,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ8D,EAAiBvB,GAAuBJ,EAAMhC,CAAQ,EAAO,CAAC,sBAAA4D,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAmBH,EAAsB,SAASI,IAAO,CAAmC,GAAlCR,EAAgB,CAAC,UAAU,EAAI,CAAC,EAAKT,GAAqB,MAAMA,EAAU,GAAGiB,CAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,EAAeL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAWC,EAAO,IAAI,EAAQC,GAAY,IAAQ,EAAAd,IAAiB,mBAAkCJ,IAAc,aAA6CmB,EAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,GAAkBC,GAAqB,EAAE,IAAIC,EAAmB,OAAoBtD,EAAKuD,GAAY,CAAC,GAAG9B,GAA4CwB,EAAgB,SAAsBjD,EAAKC,GAAS,CAAC,QAAQrB,EAAS,QAAQ,GAAM,SAAsBoB,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAKwD,GAAK,CAAC,KAAK5B,EAAU,GAAGlD,GAAqB,CAAC,UAAU,CAAC,aAAa,GAAM,aAAa,EAAI,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAsBuB,EAAMvD,EAAO,EAAE,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAU,GAAGyB,GAAGlF,GAAkB,GAAG2E,GAAsB,iBAAiB3B,EAAUO,CAAU,kBAAkB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,aAAaI,GAAmB,IAAIxB,GAA6B2B,EAAK,MAAM,CAAC,GAAGvB,CAAK,EAAE,GAAG7C,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,OAAU,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,SAAS,iBAAiB,OAAU,aAAa,MAAS,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAEoD,EAAYI,CAAc,EAAE,SAAS,CAAclC,EAAK2D,GAAS,CAAC,sBAAsB,GAAK,SAAsB3D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,MAAM,uBAAuB,QAAQ,0BAA0B,OAAO,sBAAsB,6CAA6C,EAAE,SAAS,UAAU,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,QAAQ,EAAE,EAAE,KAAKb,EAAU,SAAS,CAAC,kBAAkB,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAEsB,GAAY,GAAgBhD,EAAKE,EAAO,IAAI,CAAC,UAAU,eAAe,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,OAAO,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,OAAO,IAAI,CAAC,EAAE,SAAsBvC,EAAK4D,EAA0B,CAAC,SAAsB5D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBqC,EAAiB,SAAS,sBAAsB,MAAM,CAAC,QAAQ,EAAE,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,SAAsBvC,EAAK3B,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,YAAYiF,EAAmBpE,GAAkB,KAAKkC,CAAY,KAAK,MAAMkC,IAAqB,OAAOA,EAAmB,QAAQ,cAAc,YAAY,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,QAAQT,EAAe,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQgB,GAAI,CAAC,kFAAkF,gFAAgF,8RAA8R,gHAAgH,qQAAqQ,yGAAyG,6kBAA6kB,oEAAoE,EAS51PC,GAAgBC,GAAQ9C,GAAU4C,GAAI,cAAc,EAASG,EAAQF,GAAgBA,GAAgB,YAAY,WAAWA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,EAAE,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,OAAO,SAAS,QAAQ,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,WAAW,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,EAAE,UAAU,CAAC,MAAM,OAAO,KAAKA,EAAY,IAAI,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG3F,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECVt4B,IAAAiG,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,YAAAC,KCAA,IAAAC,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,OAAAC,KAAO,IAAMC,GAAG,SACHC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,ECD5J,IAAAC,GAAA,GAAAC,EAAAD,GAAA,wBAAAE,GAAA,OAAAC,KAAO,IAAMC,GAAG,OACHC,GAAqB,CAAC,QAAU,CAAC,GAAK,CAAC,KAAO,WAAW,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,EFAib,IAAMC,GAAcC,EAASC,CAAQ,EAAQC,GAAiBC,GAAoBF,CAAQ,EAAQG,GAAgB,CAAC,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,EAAE,UAAU,CAAC,MAAM,EAAI,CAAC,EAAQC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,iBAAiB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAiB,CAAC,UAAUC,GAAiB,UAAUC,EAAe,EAAQC,GAAkB,CAACC,EAAIC,IAAS,CAAC,KAAMA,GAAO,CAAC,IAAMC,EAAON,GAAiBK,EAAO,EAAE,EAAE,GAAGC,EAAO,CAAC,IAAMC,EAAMD,EAAOF,CAAG,EAAE,GAAGG,EAAO,OAAOA,EAAQF,EAAOA,EAAO,SAAU,EAAQG,GAAgB,CAACD,EAAME,IAAc,CAAC,GAAG,OAAOF,GAAQ,UAAU,OAAO,SAASA,CAAK,EAAE,OAAO,KAAK,IAAI,EAAEA,CAAK,EAAE,KAAK,GAAG,OAAOA,GAAQ,UAAU,OAAOE,GAAc,SAAS,OAAiB,IAAMC,EAASH,EAAM,MAAM,GAAG,EAAE,OAAOG,EAASD,CAAW,GAAGC,EAASD,EAAY,CAAC,GAAGC,EAAS,CAAC,CAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAL,EAAM,SAAAM,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWV,GAAmCO,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,6BAAmB,YAAY,2BAAiB,YAAY,6BAAmB,YAAY,2BAAiB,YAAY,6BAAmB,YAAY,4BAAkB,YAAY,4BAAqB,YAAY,0BAAmB,YAAY,4BAAqB,YAAY,0BAAmB,YAAY,4BAAqB,YAAY,0BAAmB,WAAW,EAAQC,GAAS,CAAC,CAAC,WAAAC,EAAW,MAAAC,EAAM,OAAAC,EAAO,KAAAC,EAAK,MAAAC,EAAM,GAAAC,EAAG,KAAAC,EAAK,OAAAC,EAAO,OAAAC,EAAO,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,EAAM,MAAM,CAAC,GAAGP,EAAM,WAAWC,EAAKJ,GAAsCG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,GAAG,WAAWC,EAAMV,GAAgCQ,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,GAAK,UAAUN,GAAsCI,EAAM,UAAU,WAAWG,EAAML,GAAmCE,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,cAAc,WAAWC,EAAMX,GAAmCO,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,aAAa,UAAUd,GAAmCU,EAAM,UAAU,WAAWK,EAAMhB,GAAkDW,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,eAAe,SAASE,GAAOD,EAAuCnB,GAAwBa,EAAM,OAAO,KAAK,MAAMM,IAAyC,OAAOA,EAAuCN,EAAM,WAAW,MAAMO,IAAQ,OAAOA,EAAM,YAAY,UAAUZ,GAAgCK,EAAM,SAAS,CAAE,EAAQQ,GAAuB,CAACR,EAAMxC,IAAewC,EAAM,iBAAwBxC,EAAS,KAAK,GAAG,EAAEwC,EAAM,iBAAwBxC,EAAS,KAAK,GAAG,EAAUiD,GAA6BC,EAAW,SAASV,EAAMW,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAvD,EAAQ,UAAAwD,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEtC,GAASY,CAAK,EAAO,CAAC,YAAA2B,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,GAAW,SAAA1E,CAAQ,EAAE2E,GAAgB,CAAC,WAAAhF,GAAW,eAAe,YAAY,gBAAAD,GAAgB,QAAAQ,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ+E,EAAiB5B,GAAuBR,EAAMxC,CAAQ,EAAO,CAAC,sBAAA6E,GAAsB,MAAAC,CAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAYH,GAAsB,SAASI,KAAO,CAAoC,GAAnCR,GAAgB,CAAC,UAAU,EAAK,CAAC,EAAKR,GAAqB,MAAMA,EAAU,GAAGgB,EAAI,IAAW,GAAM,MAAO,EAAO,CAAC,EAAQC,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQ,GAAC,kBAAkB,kBAAkB,kBAAkB,kBAAkB,kBAAkB,iBAAiB,EAAE,SAASb,CAAc,GAAkB,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAASJ,CAAW,GAAmCkB,EAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,IAAIC,EAAmB,OAAoBnE,EAAKoE,GAAY,CAAC,GAAGlC,GAA4C4B,EAAgB,SAAsB9D,EAAKC,GAAS,CAAC,QAAQxB,EAAS,QAAQ,GAAM,SAAsBuB,EAAKR,GAAW,CAAC,MAAMD,GAAY,SAAsBS,EAAKqE,GAAK,CAAC,KAAK7B,EAAU,aAAa,GAAM,aAAa,GAAK,GAAGjE,GAAqB,CAAC,UAAU,CAAC,aAAakE,CAAS,CAAC,EAAEG,EAAYI,CAAc,EAAE,SAAsBsB,EAAMpE,EAAO,EAAE,CAAC,GAAGyC,EAAU,GAAGI,EAAgB,UAAU,GAAGwB,GAAGlG,GAAkB,GAAG2F,GAAsB,gBAAgB/B,EAAUY,CAAU,mBAAmB,cAAc,GAAK,mBAAmB,6BAAmB,iBAAiB,GAAK,iBAAiBQ,EAAiB,SAAS,YAAY,MAAMI,GAAY,IAAI7B,GAA6B+B,GAAK,MAAM,CAAC,wBAAwB,MAAM,iBAAiB,+EAA+E,sBAAsB,MAAM,uBAAuB,MAAM,iBAAiB,QAAQ,qBAAqB,MAAM,gBAAgBtB,EAAU,uBAAuBjD,GAAgB+C,EAAU,CAAC,EAAE,wBAAwB/C,GAAgB+C,EAAU,CAAC,EAAE,oBAAoB/C,GAAgB+C,EAAU,CAAC,EAAE,qBAAqB/C,GAAgB+C,EAAU,CAAC,EAAE,UAAU,uMAAuM,OAAO,gBAAgB,aAAa,gBAAgB,GAAGH,CAAK,EAAE,SAAS,CAAC,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,kBAAkB,CAAC,OAAO,kBAAkB,aAAa,iBAAiB,EAAE,UAAU,CAAC,iBAAiB,2EAA2E,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,2EAA2E,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,2EAA2E,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,2EAA2E,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,2EAA2E,gBAAgB,oBAAoB,EAAE,UAAU,CAAC,iBAAiB,2EAA2E,gBAAgB,oBAAoB,CAAC,EAAE,GAAGzD,GAAqB,CAAC,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,kBAAkB,CAAC,mBAAmB,MAAS,EAAE,UAAU,CAAC,mBAAmB,2BAAoB,EAAE,UAAU,CAAC,mBAAmB,yBAAkB,EAAE,UAAU,CAAC,mBAAmB,2BAAiB,EAAE,UAAU,CAAC,mBAAmB,0BAAgB,EAAE,UAAU,CAAC,mBAAmB,yBAAkB,EAAE,UAAU,CAAC,mBAAmB,2BAAoB,EAAE,UAAU,CAAC,mBAAmB,0BAAgB,EAAE,UAAU,CAAC,mBAAmB,4BAAkB,EAAE,UAAU,CAAC,mBAAmB,yBAAkB,EAAE,UAAU,CAAC,mBAAmB,4BAAkB,EAAE,UAAU,CAAC,mBAAmB,2BAAoB,CAAC,EAAEqE,EAAYI,CAAc,EAAE,SAAS,CAACa,EAAY,GAAgB7D,EAAKwE,GAAS,CAAC,sBAAsB,GAAK,SAAsBxE,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBmD,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qBAAqB,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAG7D,GAAqB,CAAC,UAAU,CAAC,SAAsByB,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,SAAS,sBAAsB,6CAA6C,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBF,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,SAAS,0BAA0B,QAAQ,EAAE,SAAS,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE0C,EAAYI,CAAc,CAAC,CAAC,EAAEV,GAAwBtC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiBmD,EAAiB,SAAS,YAAY,SAAsBrD,EAAKyE,EAA0B,CAAC,SAAsBzE,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBmD,EAAiB,SAAS,sBAAsB,SAAsBrD,EAAKhC,EAAS,CAAC,MAAM,qBAAqB,OAAO,OAAO,YAAYmG,EAAmBpF,GAAkB,KAAK8C,CAAY,KAAK,MAAMsC,IAAqB,OAAOA,EAAmB,QAAQ,cAAc5B,EAAU,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,OAAO,MAAM,OAAO,GAAGhE,GAAqB,CAAC,UAAU,CAAC,MAAM,cAAc,EAAE,UAAU,CAAC,MAAM,cAAc,EAAE,UAAU,CAAC,MAAM,cAAc,EAAE,UAAU,CAAC,MAAM,cAAc,EAAE,UAAU,CAAC,MAAM,cAAc,EAAE,UAAU,CAAC,MAAM,cAAc,CAAC,EAAEqE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ0B,GAAI,CAAC,kFAAkF,kFAAkF,yXAAyX,gHAAgH,kHAAkH,2HAA2H,yWAAyW,qMAAqM,wIAAwI,0KAA0K,yaAAya,qMAAqM,mQAAmQ,uIAAuI,2KAA2K,6aAA6a,iLAAiL,oQAAoQ,6aAA6a,gIAAgI,6aAA6a,2KAA2K,6aAA6a,iLAAiL,6aAA6a,yGAAyG,6RAA6R,uOAAuO,0GAA0G,+bAA+b,EAStrpBC,GAAgBC,GAAQlD,GAAUgD,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,SAASA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,GAAG,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,6BAAmB,2BAAiB,6BAAmB,2BAAiB,6BAAmB,4BAAkB,4BAAqB,0BAAmB,4BAAqB,0BAAmB,4BAAqB,yBAAkB,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAG,MAAM,SAAS,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,eAAe,YAAY,2CAAiC,MAAM,aAAa,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,OAAO,KAAKA,EAAY,OAAO,EAAE,UAAqE9G,IAAiB,eAAmB,CAAC,GAAGA,GAAiB,cAAiB,aAAa,aAAa,YAAY,OAAU,OAAO,OAAU,MAAM,MAAM,EAAE,UAAU,CAAC,MAAM,OAAO,KAAK8G,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,GAAM,MAAM,UAAU,KAAKA,EAAY,OAAO,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,YAAY,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAG7G,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,EACruD,IAAMmH,GAAqB,CAAC,QAAU,CAAC,QAAU,CAAC,KAAO,iBAAiB,KAAO,kBAAkB,MAAQ,CAAC,EAAE,YAAc,CAAC,qBAAuB,MAAM,yBAA2B,OAAO,oCAAsC,o+BAA0qC,gBAAkB,yKAAyM,yBAA2B,QAAQ,sBAAwB,KAAK,6BAA+B,OAAO,sBAAwB,GAAG,CAAC,EAAE,MAAQ,CAAC,KAAO,SAAS,YAAc,CAAC,sBAAwB,GAAG,CAAC,EAAE,mBAAqB,CAAC,KAAO,UAAU,CAAC,CAAC,EGVn4B,IAAMC,GAAaC,EAASC,CAAO,EAAQC,GAAcF,EAASG,CAAQ,EAAQC,GAAYJ,EAASK,EAAM,EAAQC,GAA2CC,GAAqBC,GAAUH,EAAM,EAAEI,EAAU,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,EAAWC,CAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,EAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,CAAQ,EAAQC,GAAwB,CAAC,aAAa,YAAY,QAAQ,YAAY,MAAM,WAAW,EAAQC,GAAS,CAAC,CAAC,eAAAC,EAAe,OAAAC,EAAO,GAAAC,EAAG,KAAAC,EAAK,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAuCC,EAAM,MAAM,CAAC,GAAGH,EAAM,UAAUL,GAA8DK,EAAM,UAAU,WAAWC,EAAKH,GAAgCE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,qBAAqB,SAASE,GAAOD,EAAuCT,GAAwBO,EAAM,OAAO,KAAK,MAAME,IAAyC,OAAOA,EAAuCF,EAAM,WAAW,MAAMG,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACJ,EAAMxB,IAAewB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAEwB,EAAM,iBAAwBxB,EAAS,KAAK,GAAG,EAAU6B,GAA6BC,EAAW,SAASN,EAAMO,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAnC,EAAQ,UAAAoC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEvB,GAASM,CAAK,EAAO,CAAC,YAAAkB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAjD,CAAQ,EAAEkD,GAAgB,CAAC,WAAAvD,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQsD,EAAiBvB,GAAuBJ,EAAMxB,CAAQ,EAAO,CAAC,sBAAAoD,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAeH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,EAAeL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,EAAcN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAWC,EAAO,IAAI,EAAQC,EAAY,IAAQnB,IAAc,YAA6CoB,GAAOC,GAAU,EAAQC,GAAa,IAAQ,GAAC,YAAY,WAAW,EAAE,SAAStB,CAAW,EAAmCuB,EAAa,IAAQvB,IAAc,YAA6CwB,EAAsBC,GAAM,EAAQC,GAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,IAAIC,EAAmBC,GAAoBC,GAAoBC,GAAoB,OAAoB7D,EAAK8D,GAAY,CAAC,GAAGtC,GAA4C6B,EAAgB,SAAsBrD,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsByE,EAAM7D,EAAO,IAAI,CAAC,GAAG0B,EAAU,GAAGI,EAAgB,UAAUgC,GAAGjF,GAAkB,GAAGwE,GAAsB,gBAAgBhC,EAAUO,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIpB,GAA6B4B,GAAK,MAAM,CAAC,eAAe,QAAQnB,OAAe,GAAGL,CAAK,EAAE,GAAGrC,EAAqB,CAAC,UAAU,CAAC,mBAAmB,YAAY,EAAE,UAAU,CAAC,mBAAmB,OAAO,CAAC,EAAE4C,EAAYI,CAAc,EAAE,SAAS,CAAcjC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBtC,EAAKiE,GAAK,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,OAAO,YAAY,aAAa,GAAM,SAAsBjE,EAAKE,EAAO,EAAE,CAAC,UAAU,gCAAgC,mBAAmB,MAAM,iBAAiBoC,EAAiB,SAAS,YAAY,SAAsBtC,EAAKkE,GAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiB5B,EAAiB,SAAS,YAAY,IAAI,q0GAAq0G,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAM7D,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAAcyB,EAAM7D,EAAO,IAAI,CAAC,UAAU,iBAAiB,iBAAiBoC,EAAiB,SAAS,YAAY,SAAS,CAACU,EAAY,GAAgBhD,EAAKmE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASC,GAA4B,CAAC,IAAIV,EAAmB,OAAO1D,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,EAAE,GAAG,GAAG,EAAE,CAAC,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,WAAWqF,EAAmBY,EAAkB,KAAKnD,CAAY,KAAK,MAAMuC,IAAqB,OAAOA,EAAmB,UAAU,SAAS,YAAY,UAAUU,EAAc,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGnF,EAAqB,CAAC,UAAU,CAAC,UAAUmF,EAAc,CAAC,CAAC,CAAC,EAAEvC,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAEe,EAAY,GAAgBhD,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,WAAWqF,EAAmBY,EAAkB,KAAKnD,CAAY,KAAK,MAAMuC,IAAqB,OAAOA,EAAmB,aAAa,SAAS,YAAY,UAAU,sGAAsG,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEV,EAAY,GAAgBhD,EAAKmE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASI,GAA6B,CAAC,IAAIb,EAAmB,OAAO1D,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,EAAE,GAAG,GAAG,EAAE,EAAE,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,WAAWqF,EAAmBY,EAAkB,KAAKnD,CAAY,KAAK,MAAMuC,IAAqB,OAAOA,EAAmB,OAAO,SAAS,YAAY,UAAUa,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGtF,EAAqB,CAAC,UAAU,CAAC,UAAUsF,EAAe,CAAC,CAAC,CAAC,EAAE1C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAEe,EAAY,GAAgBhD,EAAKmE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASK,GAA6B,CAAC,IAAId,EAAmB,OAAO1D,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,EAAE,GAAG,GAAG,EAAE,GAAG,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,WAAWqF,EAAmBY,EAAkB,KAAKnD,CAAY,KAAK,MAAMuC,IAAqB,OAAOA,EAAmB,SAAS,SAAS,YAAY,UAAUc,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGvF,EAAqB,CAAC,UAAU,CAAC,UAAUuF,EAAe,CAAC,CAAC,CAAC,EAAE3C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAEe,EAAY,GAAgBhD,EAAKmE,GAAa,CAAC,MAAM,CAAC,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,EAAE,CAAC,KAAK,CAAC,KAAK,aAAa,UAAU,WAAW,EAAE,sBAAsB,MAAS,CAAC,EAAE,SAASM,GAA6B,CAAC,IAAIf,EAAmB,OAAO1D,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,EAAE,GAAG,GAAG,EAAE,GAAG,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,WAAWqF,EAAmBY,EAAkB,KAAKnD,CAAY,KAAK,MAAMuC,IAAqB,OAAOA,EAAmB,UAAU,SAAS,YAAY,UAAUe,EAAe,CAAC,EAAE,QAAQ,YAAY,MAAM,OAAO,GAAGxF,EAAqB,CAAC,UAAU,CAAC,UAAUwF,EAAe,CAAC,CAAC,CAAC,EAAE5C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAC,EAAEe,EAAY,GAAgBhD,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,GAAgEuE,GAAkB,GAAI,GAAG,EAAE,GAAG,GAAG,EAAE,GAAG,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAK3B,EAAQ,CAAC,OAAO,OAAO,GAAG,YAAY,WAAWsF,GAAoBW,EAAkB,KAAKnD,CAAY,KAAK,MAAMwC,KAAsB,OAAOA,GAAoB,aAAa,SAAS,YAAY,UAAU,sGAAsG,QAAQ,YAAY,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAER,GAAa,GAAgBnD,EAAKqE,EAA0B,CAAC,SAAsBrE,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,mBAAmB,OAAO,iBAAiBoC,EAAiB,SAAS,sBAAsB,KAAK,OAAO,SAAsBtC,EAAKzB,EAAS,CAAC,MAAM,eAAe,OAAO,OAAO,YAAYqF,GAAoBU,EAAkB,KAAKnD,CAAY,KAAK,MAAMyC,KAAsB,OAAOA,GAAoB,QAAQ,cAAc,OAAO,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,KAAK,OAAO,QAAQlB,GAAe,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,OAAO,UAAU,MAAM,OAAO,GAAGzD,EAAqB,CAAC,UAAU,CAAC,MAAMwC,EAAU,cAAc,IAAI,QAAQoB,CAAa,EAAE,UAAU,CAAC,MAAMpB,EAAU,QAAQmB,CAAc,CAAC,EAAEf,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAejC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiBoC,EAAiB,SAAS,YAAY,SAASc,EAAa,GAAgBpD,EAAKqE,EAA0B,CAAC,OAAO,GAAG,GAAgEb,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,EAAE,GAAGvE,EAAqB,CAAC,UAAU,CAAC,OAAO,GAAG,GAAgEuE,GAAkB,GAAI,IAAI,IAAiEA,GAAkB,QAAS,IAAI,EAAE,IAAI,GAAG,GAAG,CAAC,CAAC,EAAE3B,EAAYI,CAAc,EAAE,SAAsBjC,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiBoC,EAAiB,SAAS,sBAAsB,SAAsBtC,EAAKtB,GAA2C,CAAC,UAAU,GAAG,OAAO,OAAO,GAAG,YAAY,UAAU,GAAM,UAAU,GAAM,WAAWmF,GAAoBS,EAAkB,KAAKnD,CAAY,KAAK,MAAM0C,KAAsB,OAAOA,GAAoB,cAAc,SAAS,YAAY,UAAU,aAAa,UAAU,4BAA4B,QAAQnC,EAAU,MAAM,OAAO,GAAGzC,EAAqB,CAAC,UAAU,CAAC,UAAU,EAAE,UAAU,kBAAkB,MAAM,CAAC,OAAO,MAAM,EAAE,QAAQ,WAAW,CAAC,EAAE4C,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQyC,GAAI,CAAC,kFAAkF,kFAAkF,kQAAkQ,2SAA2S,0TAA0T,2KAA2K,iRAAiR,6RAA6R,2VAA2V,yGAAyG,+RAA+R,0rCAA0rC,iEAAiE,mEAAmE,uHAAuH,+DAA+D,8DAA8D,6EAA6E,iLAAiL,sFAAsF,uFAAuF,4EAA4E,uFAAuF,ktBAAktB,EASn+tBC,GAAgBC,GAAQ5D,GAAU0D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,aAAaA,GAAgB,aAAa,CAAC,OAAO,GAAG,MAAM,IAAI,EAAEG,EAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,QAAQ,YAAY,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,qBAAqB,MAAM,OAAO,KAAKA,EAAY,KAAK,EAAE,UAAU,CAAC,aAAa,EAAE,IAAI,EAAE,MAAM,kBAAkB,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,EAAE,GAAGxG,GAAa,GAAGG,GAAc,GAAGE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "withGoApp", "Component", "props", "session", "setSession", "ye", "ue", "getCookie", "cookieName", "arr", "cookieValue", "reg", "error", "p", "_window_navigator_language_split", "_window_navigator_language", "localStr", "window", "search", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "Component", "IconInner", "Icon", "React", "props", "ref", "House_default", "Icon", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "weightOptions", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "weight", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "House_default", "npm_react_18_2_exports", "importModule", "module", "ue", "emptyState", "RenderTarget", "p", "NullState", "motion", "addPropertyControls", "ControlType", "piece", "defaultEvents", "hbAInN3r1_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v0", "v1", "v2", "v3", "v4", "v5", "__FramerMetadata__", "hbAInN3r1_1_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v0", "v1", "v2", "v3", "v4", "__FramerMetadata__", "valuesByLocaleId", "hbAInN3r1_1_exports", "hbAInN3r1_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "PndNwLyvA_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "PndNwLyvA_1_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "PndNwLyvA_1_exports", "PndNwLyvA_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hover", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "kcKdHX2wm", "qe8e_sxRy", "NKudH2mEX", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter7j7d8i", "args", "onClick1jfbi8x", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerPndNwLyvA", "withCSS", "PndNwLyvA_default", "addPropertyControls", "ControlType", "addFonts", "uj8VuhKhr_exports", "__export", "__FramerMetadata__", "uj8VuhKhr_default", "uj8VuhKhr_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "uj8VuhKhr_1_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "uj8VuhKhr_1_exports", "uj8VuhKhr_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "radiusForCorner", "cornerIndex", "segments", "transition1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "click", "height", "icon", "icon1", "id", "link", "newTab", "radius", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eszixBaDA", "KJK1sV1GB", "UsLusPFRg", "ik9I5qIGz", "RmkZjgJwi", "yTZZaFOb3", "J0LC2FGV8", "sjCyix4Io", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap2f838p", "args", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Frameruj8VuhKhr", "withCSS", "uj8VuhKhr_default", "addPropertyControls", "ControlType", "addFonts", "__FramerMetadata__", "NavMenuFonts", "getFonts", "PndNwLyvA_default", "PhosphorFonts", "Icon", "ButtonFonts", "uj8VuhKhr_default", "ButtonWithGoAppWithMappedReactProps1v1ipky", "withMappedReactProps", "withGoApp", "uj8VuhKhr_exports", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "backgroundBlur", "height", "id", "text", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Tyvh_HtHO", "JU5116W8C", "LylWg8UG8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onClick1jfbi8x", "args", "onClick1avyur6", "onClickqttkt0", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "LayoutGroup", "u", "cx", "Link", "SVG", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "getLocalizedValue", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FramerhbAInN3r1", "withCSS", "hbAInN3r1_default", "addPropertyControls", "ControlType", "addFonts"]
}
